Skip to content

Commit fb8b505

Browse files
committed
docs warnings fixed
1 parent 2e09a51 commit fb8b505

File tree

4 files changed

+37
-11
lines changed

4 files changed

+37
-11
lines changed

src/agile/models/index.ts

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,8 @@ export * from './featureResponse';
2929
export * from './featureToggleRequest';
3030
export * from './fieldEdit';
3131
export * from './fieldMeta';
32+
export * from './fields';
33+
export * from './fixVersion';
3234
export * from './getAllBoards';
3335
export * from './getAllQuickFilters';
3436
export * from './getBoard';
@@ -51,18 +53,22 @@ export * from './issue';
5153
export * from './issueAssignRequest';
5254
export * from './issueRankRequest';
5355
export * from './issueTransition';
56+
export * from './issueType';
5457
export * from './jsonType';
5558
export * from './linkedSecurityWorkspaceIds';
5659
export * from './linkedWorkspace';
5760
export * from './linkGroup';
5861
export * from './location';
5962
export * from './moveIssuesToBoard';
63+
export * from './operations';
6064
export * from './opsbar';
6165
export * from './page';
6266
export * from './pageBoard';
6367
export * from './pageBoardFilter';
6468
export * from './pageQuickFilter';
6569
export * from './partialSuccess';
70+
export * from './progress';
71+
export * from './project';
6672
export * from './projects';
6773
export * from './quickFilter';
6874
export * from './rankingConfig';
@@ -74,6 +80,8 @@ export * from './simpleLink';
7480
export * from './sprint';
7581
export * from './sprintCreate';
7682
export * from './sprintSwap';
83+
export * from './status';
84+
export * from './statusCategory';
7785
export * from './statusCategoryJson';
7886
export * from './statusJson';
7987
export * from './storeDevelopmentInformation';
@@ -84,7 +92,7 @@ export * from './submitRemoteLinks';
8492
export * from './submittedVulnerabilitiesResult';
8593
export * from './subquery';
8694
export * from './toggleFeatures';
87-
export * from './userAvatarUrls';
8895
export * from './user';
96+
export * from './userAvatarUrls';
8997
export * from './version';
9098
export * from './vulnerability';

src/agile/models/statusCategory.ts

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,12 @@
11
export interface StatusCategory {
2+
/** The URL of the status category. */
23
self: string;
4+
/** The ID of the status category. */
35
id: number;
6+
/** The key of the status category. */
47
key: string;
8+
/** The name of the color used to represent the status category. */
59
colorName: string;
10+
/** The name of the status category. */
611
name: string;
712
}

src/version2/models/index.ts

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -79,6 +79,7 @@ export * from './createWorkflowTransitionDetails';
7979
export * from './createWorkflowTransitionRule';
8080
export * from './createWorkflowTransitionRulesDetails';
8181
export * from './createWorkflowTransitionScreenDetails';
82+
export * from './customContextVariable';
8283
export * from './customFieldConfigurations';
8384
export * from './customFieldContext';
8485
export * from './customFieldContextDefaultValue';
@@ -236,6 +237,8 @@ export * from './jiraExpressionsComplexity';
236237
export * from './jiraExpressionsComplexityValue';
237238
export * from './jiraExpressionValidationError';
238239
export * from './jiraStatus';
240+
export * from './jqlFunctionPrecomputation';
241+
export * from './jqlFunctionPrecomputationUpdate';
239242
export * from './jqlFunctionPrecomputationUpdateRequest';
240243
export * from './jQLPersonalDataMigrationRequest';
241244
export * from './jqlQueriesToParse';
@@ -276,9 +279,13 @@ export * from './notificationEvent';
276279
export * from './notificationRecipients';
277280
export * from './notificationRecipientsRestrictions';
278281
export * from './notificationScheme';
282+
export * from './notificationSchemeAndProjectMapping';
279283
export * from './notificationSchemeAndProjectMappingPage';
280284
export * from './notificationSchemeEvent';
285+
export * from './notificationSchemeEventDetails';
286+
export * from './notificationSchemeEventTypeId';
281287
export * from './notificationSchemeId';
288+
export * from './notificationSchemeNotificationDetails';
282289
export * from './operationMessage';
283290
export * from './operations';
284291
export * from './orderOfCustomFieldOptions';

src/version3/models/index.ts

Lines changed: 16 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@ export * from './actorInput';
22
export * from './actorsMap';
33
export * from './addField';
44
export * from './addGroup';
5+
export * from './addNotificationsDetails';
56
export * from './announcementBannerConfiguration';
67
export * from './announcementBannerConfigurationUpdate';
78
export * from './application';
@@ -11,17 +12,7 @@ export * from './associatedItem';
1112
export * from './associateFieldConfigurationsWithIssueTypesRequest';
1213
export * from './attachment';
1314
export * from './attachmentArchive';
14-
export * from './containerForProjectFeatures';
15-
export * from './projectComponent';
16-
export * from './licenseMetric';
17-
export * from './jqlFunctionPrecomputationUpdateRequest';
18-
export * from './jqlFunctionPrecomputationPage';
1915
export * from './attachmentArchiveEntry';
20-
export * from './notificationSchemeId';
21-
export * from './createNotificationSchemeDetails';
22-
export * from './notificationSchemeAndProjectMappingPage';
23-
export * from './updateNotificationSchemeDetails';
24-
export * from './addNotificationsDetails';
2516
export * from './attachmentArchiveImpl';
2617
export * from './attachmentArchiveItemReadable';
2718
export * from './attachmentArchiveMetadataReadable';
@@ -63,6 +54,7 @@ export * from './connectCustomFieldValues';
6354
export * from './connectModule';
6455
export * from './connectModules';
6556
export * from './connectWorkflowTransitionRule';
57+
export * from './containerForProjectFeatures';
6658
export * from './containerForRegisteredWebhooks';
6759
export * from './containerForWebhookIDs';
6860
export * from './containerOfWorkflowSchemeAssociations';
@@ -75,6 +67,7 @@ export * from './createCustomFieldContext';
7567
export * from './createdIssue';
7668
export * from './createdIssues';
7769
export * from './createIssueAdjustmentDetails';
70+
export * from './createNotificationSchemeDetails';
7871
export * from './createPriorityDetails';
7972
export * from './createProjectDetails';
8073
export * from './createResolutionDetails';
@@ -247,6 +240,10 @@ export * from './jiraExpressionsComplexity';
247240
export * from './jiraExpressionsComplexityValue';
248241
export * from './jiraExpressionValidationError';
249242
export * from './jiraStatus';
243+
export * from './jqlFunctionPrecomputation';
244+
export * from './jqlFunctionPrecomputationPage';
245+
export * from './jqlFunctionPrecomputationUpdate';
246+
export * from './jqlFunctionPrecomputationUpdateRequest';
250247
export * from './jQLPersonalDataMigrationRequest';
251248
export * from './jqlQueriesToParse';
252249
export * from './jqlQueriesToSanitize';
@@ -267,6 +264,7 @@ export * from './jsonType';
267264
export * from './keywordOperand';
268265
export * from './license';
269266
export * from './licensedApplication';
267+
export * from './licenseMetric';
270268
export * from './linkedIssue';
271269
export * from './linkGroup';
272270
export * from './linkIssueRequestJson';
@@ -286,7 +284,13 @@ export * from './notificationEvent';
286284
export * from './notificationRecipients';
287285
export * from './notificationRecipientsRestrictions';
288286
export * from './notificationScheme';
287+
export * from './notificationSchemeAndProjectMapping';
288+
export * from './notificationSchemeAndProjectMappingPage';
289289
export * from './notificationSchemeEvent';
290+
export * from './notificationSchemeEventDetails';
291+
export * from './notificationSchemeEventTypeId';
292+
export * from './notificationSchemeId';
293+
export * from './notificationSchemeNotificationDetails';
290294
export * from './operationMessage';
291295
export * from './operations';
292296
export * from './orderOfCustomFieldOptions';
@@ -362,6 +366,7 @@ export * from './priorityId';
362366
export * from './project';
363367
export * from './projectAvatars';
364368
export * from './projectCategory';
369+
export * from './projectComponent';
365370
export * from './projectDetails';
366371
export * from './projectEmailAddress';
367372
export * from './projectFeature';
@@ -470,6 +475,7 @@ export * from './updateDefaultScreenScheme';
470475
export * from './updatedProjectCategory';
471476
export * from './updateFieldConfigurationSchemeDetails';
472477
export * from './updateIssueAdjustmentDetails';
478+
export * from './updateNotificationSchemeDetails';
473479
export * from './updatePriorityDetails';
474480
export * from './updateProjectDetails';
475481
export * from './updateResolutionDetails';

0 commit comments

Comments
 (0)