@forge/cli-shared 3.26.1-next.0 → 3.26.1-next.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +14 -0
- package/out/graphql/graphql-types.d.ts +267 -49
- package/out/graphql/graphql-types.d.ts.map +1 -1
- package/out/graphql/graphql-types.js +15 -6
- package/out/shared/error-handling.d.ts +1 -1
- package/out/shared/error-handling.d.ts.map +1 -1
- package/out/shared/error-handling.js +16 -17
- package/out/ui/text.d.ts +0 -1
- package/out/ui/text.d.ts.map +1 -1
- package/out/ui/text.js +0 -1
- package/package.json +3 -3
|
@@ -436,7 +436,7 @@ export declare type ActivityObject = {
|
|
|
436
436
|
subProduct?: Maybe<Scalars['String']['output']>;
|
|
437
437
|
type: Scalars['String']['output'];
|
|
438
438
|
};
|
|
439
|
-
export declare type ActivityObjectData = ConfluenceBlogPost | ConfluenceFooterComment | ConfluenceInlineComment | ConfluencePage | ConfluenceWhiteboard | DevOpsDocument | DevOpsPullRequestDetails | JiraIssue | JiraPlatformComment | JiraServiceManagementComment | TownsquareComment | TownsquareGoal | TownsquareProject | TrelloBoard | TrelloCard;
|
|
439
|
+
export declare type ActivityObjectData = ConfluenceBlogPost | ConfluenceFooterComment | ConfluenceInlineComment | ConfluencePage | ConfluenceWhiteboard | DevOpsDesign | DevOpsDocument | DevOpsPullRequestDetails | JiraIssue | JiraPlatformComment | JiraServiceManagementComment | TownsquareComment | TownsquareGoal | TownsquareProject | TrelloBoard | TrelloCard;
|
|
440
440
|
export declare enum ActivityObjectType {
|
|
441
441
|
Blogpost = "BLOGPOST",
|
|
442
442
|
Comment = "COMMENT",
|
|
@@ -1664,7 +1664,9 @@ export declare type AquaOutgoingEmailLogItem = {
|
|
|
1664
1664
|
__typename?: 'AquaOutgoingEmailLogItem';
|
|
1665
1665
|
actionTimestamp: Scalars['DateTime']['output'];
|
|
1666
1666
|
author?: Maybe<User>;
|
|
1667
|
+
deliveryType?: Maybe<Scalars['String']['output']>;
|
|
1667
1668
|
issueContext?: Maybe<AquaIssueContext>;
|
|
1669
|
+
notificationActionSubType?: Maybe<Scalars['String']['output']>;
|
|
1668
1670
|
notificationActionType?: Maybe<Scalars['String']['output']>;
|
|
1669
1671
|
notificationDetails?: Maybe<AquaNotificationDetails>;
|
|
1670
1672
|
notificationType?: Maybe<Scalars['String']['output']>;
|
|
@@ -1685,6 +1687,7 @@ export declare type AquaOutgoingEmailLogsQueryApiGetNotificationLogsArgs = {
|
|
|
1685
1687
|
notificationActionType?: InputMaybe<Scalars['String']['input']>;
|
|
1686
1688
|
notificationType?: InputMaybe<Scalars['String']['input']>;
|
|
1687
1689
|
projectId?: InputMaybe<Scalars['Long']['input']>;
|
|
1690
|
+
recipientId?: InputMaybe<Scalars['String']['input']>;
|
|
1688
1691
|
toTimestamp?: InputMaybe<Scalars['DateTime']['input']>;
|
|
1689
1692
|
};
|
|
1690
1693
|
export declare type AquaOutgoingEmailLogsQueryResult = AquaOutgoingEmailLog | QueryError;
|
|
@@ -3528,17 +3531,20 @@ export declare type CompassCatalogQueryApi = {
|
|
|
3528
3531
|
applicationManagedComponents?: Maybe<CompassApplicationManagedComponentsResult>;
|
|
3529
3532
|
assistantAnswer?: Maybe<CompassAssistantAnswer>;
|
|
3530
3533
|
attentionItems?: Maybe<CompassAttentionItemQueryResult>;
|
|
3534
|
+
attentionItemsConnection?: Maybe<CompassAttentionItemConnection>;
|
|
3531
3535
|
component?: Maybe<CompassComponentResult>;
|
|
3532
3536
|
componentByExternalAlias?: Maybe<CompassComponentResult>;
|
|
3533
3537
|
componentScorecardRelationship?: Maybe<CompassComponentScorecardRelationshipResult>;
|
|
3534
3538
|
componentType?: Maybe<CompassComponentTypeResult>;
|
|
3535
3539
|
componentTypes?: Maybe<CompassComponentTypesQueryResult>;
|
|
3540
|
+
components?: Maybe<Array<CompassComponent>>;
|
|
3536
3541
|
customFieldDefinition?: Maybe<CompassCustomFieldDefinitionResult>;
|
|
3537
3542
|
customFieldDefinitions?: Maybe<CompassCustomFieldDefinitionsResult>;
|
|
3538
3543
|
documentationCategories?: Maybe<CompassDocumentationCategoriesConnection>;
|
|
3539
3544
|
documents?: Maybe<CompassDocumentConnection>;
|
|
3540
3545
|
eventSource?: Maybe<CompassEventSourceResult>;
|
|
3541
3546
|
fieldDefinitionsByComponentType?: Maybe<CompassFieldDefinitionsResult>;
|
|
3547
|
+
filteredComponentsCount?: Maybe<CompassFilteredComponentsCountResult>;
|
|
3542
3548
|
incomingWebhooks?: Maybe<CompassIncomingWebhooksConnection>;
|
|
3543
3549
|
metricDefinition?: Maybe<CompassMetricDefinitionResult>;
|
|
3544
3550
|
metricDefinitions?: Maybe<CompassMetricDefinitionsQueryResult>;
|
|
@@ -3563,6 +3569,11 @@ export declare type CompassCatalogQueryApiAssistantAnswerArgs = {
|
|
|
3563
3569
|
export declare type CompassCatalogQueryApiAttentionItemsArgs = {
|
|
3564
3570
|
query: CompassAttentionItemQuery;
|
|
3565
3571
|
};
|
|
3572
|
+
export declare type CompassCatalogQueryApiAttentionItemsConnectionArgs = {
|
|
3573
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
3574
|
+
cloudId: Scalars['ID']['input'];
|
|
3575
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
3576
|
+
};
|
|
3566
3577
|
export declare type CompassCatalogQueryApiComponentArgs = {
|
|
3567
3578
|
id: Scalars['ID']['input'];
|
|
3568
3579
|
};
|
|
@@ -3584,6 +3595,9 @@ export declare type CompassCatalogQueryApiComponentTypesArgs = {
|
|
|
3584
3595
|
cloudId: Scalars['ID']['input'];
|
|
3585
3596
|
query?: InputMaybe<CompassComponentTypeQueryInput>;
|
|
3586
3597
|
};
|
|
3598
|
+
export declare type CompassCatalogQueryApiComponentsArgs = {
|
|
3599
|
+
ids: Array<Scalars['ID']['input']>;
|
|
3600
|
+
};
|
|
3587
3601
|
export declare type CompassCatalogQueryApiCustomFieldDefinitionArgs = {
|
|
3588
3602
|
query: CompassCustomFieldDefinitionQuery;
|
|
3589
3603
|
};
|
|
@@ -3609,6 +3623,10 @@ export declare type CompassCatalogQueryApiFieldDefinitionsByComponentTypeArgs =
|
|
|
3609
3623
|
cloudId: Scalars['ID']['input'];
|
|
3610
3624
|
input: CompassComponentType;
|
|
3611
3625
|
};
|
|
3626
|
+
export declare type CompassCatalogQueryApiFilteredComponentsCountArgs = {
|
|
3627
|
+
cloudId: Scalars['ID']['input'];
|
|
3628
|
+
query: CompassFilteredComponentsCountQuery;
|
|
3629
|
+
};
|
|
3612
3630
|
export declare type CompassCatalogQueryApiIncomingWebhooksArgs = {
|
|
3613
3631
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
3614
3632
|
cloudId: Scalars['ID']['input'];
|
|
@@ -4608,6 +4626,16 @@ export declare enum CompassFieldType {
|
|
|
4608
4626
|
export declare type CompassFieldValueInput = {
|
|
4609
4627
|
enum?: InputMaybe<CompassEnumFieldValueInput>;
|
|
4610
4628
|
};
|
|
4629
|
+
export declare type CompassFilteredComponentsCount = {
|
|
4630
|
+
__typename?: 'CompassFilteredComponentsCount';
|
|
4631
|
+
count: Scalars['Int']['output'];
|
|
4632
|
+
};
|
|
4633
|
+
export declare type CompassFilteredComponentsCountQuery = {
|
|
4634
|
+
fields?: InputMaybe<Array<CompassScorecardAppliedToComponentsFieldFilter>>;
|
|
4635
|
+
labels?: InputMaybe<CompassScorecardAppliedToComponentsLabelsFilter>;
|
|
4636
|
+
types?: InputMaybe<CompassScorecardAppliedToComponentsTypesFilter>;
|
|
4637
|
+
};
|
|
4638
|
+
export declare type CompassFilteredComponentsCountResult = CompassFilteredComponentsCount | QueryError;
|
|
4611
4639
|
export declare type CompassFlagEvent = CompassEvent & {
|
|
4612
4640
|
__typename?: 'CompassFlagEvent';
|
|
4613
4641
|
description?: Maybe<Scalars['String']['output']>;
|
|
@@ -5183,6 +5211,9 @@ export declare type CompassScorecardAppliedToComponentsFieldFilter = {
|
|
|
5183
5211
|
definition: Scalars['ID']['input'];
|
|
5184
5212
|
in: Array<CompassFieldValueInput>;
|
|
5185
5213
|
};
|
|
5214
|
+
export declare type CompassScorecardAppliedToComponentsLabelsFilter = {
|
|
5215
|
+
in: Array<Scalars['String']['input']>;
|
|
5216
|
+
};
|
|
5186
5217
|
export declare type CompassScorecardAppliedToComponentsOwnerFilter = {
|
|
5187
5218
|
in: Array<Scalars['ID']['input']>;
|
|
5188
5219
|
};
|
|
@@ -11569,12 +11600,6 @@ export declare type FeatureReleaseTimeRangeInput = {
|
|
|
11569
11600
|
endEpoch?: InputMaybe<Scalars['Int']['input']>;
|
|
11570
11601
|
startEpoch?: InputMaybe<Scalars['Int']['input']>;
|
|
11571
11602
|
};
|
|
11572
|
-
export declare type FieldValidationMutationErrorExtension = MutationErrorExtension & {
|
|
11573
|
-
__typename?: 'FieldValidationMutationErrorExtension';
|
|
11574
|
-
errorType?: Maybe<Scalars['String']['output']>;
|
|
11575
|
-
fieldId?: Maybe<Scalars['String']['output']>;
|
|
11576
|
-
statusCode?: Maybe<Scalars['Int']['output']>;
|
|
11577
|
-
};
|
|
11578
11603
|
export declare type FilterQuery = {
|
|
11579
11604
|
__typename?: 'FilterQuery';
|
|
11580
11605
|
errors?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
|
|
@@ -26367,17 +26392,26 @@ export declare type HelpLayoutAnnouncementElementData = {
|
|
|
26367
26392
|
header?: Maybe<Scalars['String']['output']>;
|
|
26368
26393
|
message?: Maybe<Scalars['String']['output']>;
|
|
26369
26394
|
};
|
|
26370
|
-
export declare type
|
|
26395
|
+
export declare type HelpLayoutAnnouncementInput = {
|
|
26396
|
+
visualConfig?: InputMaybe<HelpLayoutVisualConfigInput>;
|
|
26397
|
+
};
|
|
26398
|
+
export declare type HelpLayoutAtomicElement = HelpLayoutAnnouncementElement | HelpLayoutHeadingAtomicElement | HelpLayoutHeroElement | HelpLayoutImageAtomicElement | HelpLayoutParagraphAtomicElement | HelpLayoutPortalsListElement | HelpLayoutSearchAtomicElement | HelpLayoutSuggestedRequestFormsListElement | HelpLayoutTopicsListElement;
|
|
26371
26399
|
export declare type HelpLayoutAtomicElementInput = {
|
|
26400
|
+
announcementInput?: InputMaybe<HelpLayoutAnnouncementInput>;
|
|
26372
26401
|
elementTypeKey: HelpLayoutAtomicElementKey;
|
|
26373
26402
|
headingConfigInput?: InputMaybe<HelpLayoutHeadingConfigInput>;
|
|
26403
|
+
heroElementInput?: InputMaybe<HelpLayoutHeroElementInput>;
|
|
26374
26404
|
imageConfigInput?: InputMaybe<HelpLayoutImageConfigInput>;
|
|
26375
26405
|
paragraphConfigInput?: InputMaybe<HelpLayoutParagraphConfigInput>;
|
|
26406
|
+
portalsListInput?: InputMaybe<HelpLayoutPortalsListInput>;
|
|
26376
26407
|
searchConfigInput?: InputMaybe<HelpLayoutSearchConfigInput>;
|
|
26408
|
+
suggestedRequestFormsListInput?: InputMaybe<HelpLayoutSuggestedRequestFormsListInput>;
|
|
26409
|
+
topicListInput?: InputMaybe<HelpLayoutTopicsListInput>;
|
|
26377
26410
|
};
|
|
26378
26411
|
export declare enum HelpLayoutAtomicElementKey {
|
|
26379
26412
|
Announcement = "ANNOUNCEMENT",
|
|
26380
26413
|
Heading = "HEADING",
|
|
26414
|
+
Hero = "HERO",
|
|
26381
26415
|
Image = "IMAGE",
|
|
26382
26416
|
Paragraph = "PARAGRAPH",
|
|
26383
26417
|
PortalsList = "PORTALS_LIST",
|
|
@@ -26412,7 +26446,6 @@ export declare type HelpLayoutCompositeElement = {
|
|
|
26412
26446
|
visualConfig?: Maybe<HelpLayoutVisualConfig>;
|
|
26413
26447
|
};
|
|
26414
26448
|
export declare enum HelpLayoutCompositeElementKey {
|
|
26415
|
-
Hero = "HERO",
|
|
26416
26449
|
LinkCard = "LINK_CARD"
|
|
26417
26450
|
}
|
|
26418
26451
|
export declare type HelpLayoutCompositeElementType = HelpLayoutElementType & {
|
|
@@ -26439,12 +26472,17 @@ export declare enum HelpLayoutElementCategory {
|
|
|
26439
26472
|
Navigation = "NAVIGATION"
|
|
26440
26473
|
}
|
|
26441
26474
|
export declare type HelpLayoutElementInput = {
|
|
26475
|
+
announcementInput?: InputMaybe<HelpLayoutAnnouncementInput>;
|
|
26442
26476
|
elementTypeKey: HelpLayoutElementKey;
|
|
26443
26477
|
headingConfigInput?: InputMaybe<HelpLayoutHeadingConfigInput>;
|
|
26478
|
+
heroElementInput?: InputMaybe<HelpLayoutHeroElementInput>;
|
|
26444
26479
|
imageConfigInput?: InputMaybe<HelpLayoutImageConfigInput>;
|
|
26445
26480
|
linkCardInput?: InputMaybe<HelpLayoutLinkCardInput>;
|
|
26446
26481
|
paragraphConfigInput?: InputMaybe<HelpLayoutParagraphConfigInput>;
|
|
26482
|
+
portalsListInput?: InputMaybe<HelpLayoutPortalsListInput>;
|
|
26447
26483
|
searchConfigInput?: InputMaybe<HelpLayoutSearchConfigInput>;
|
|
26484
|
+
suggestedRequestFormsListInput?: InputMaybe<HelpLayoutSuggestedRequestFormsListInput>;
|
|
26485
|
+
topicListInput?: InputMaybe<HelpLayoutTopicsListInput>;
|
|
26448
26486
|
};
|
|
26449
26487
|
export declare enum HelpLayoutElementKey {
|
|
26450
26488
|
Announcement = "ANNOUNCEMENT",
|
|
@@ -26488,13 +26526,21 @@ export declare enum HelpLayoutHeadingType {
|
|
|
26488
26526
|
H5 = "h5",
|
|
26489
26527
|
H6 = "h6"
|
|
26490
26528
|
}
|
|
26491
|
-
export declare type HelpLayoutHeroElement =
|
|
26529
|
+
export declare type HelpLayoutHeroElement = HelpLayoutVisualEntity & Node & {
|
|
26492
26530
|
__typename?: 'HelpLayoutHeroElement';
|
|
26493
|
-
|
|
26494
|
-
elementType?: Maybe<
|
|
26531
|
+
data?: Maybe<HelpLayoutHeroElementData>;
|
|
26532
|
+
elementType?: Maybe<HelpLayoutAtomicElementType>;
|
|
26495
26533
|
id: Scalars['ID']['output'];
|
|
26496
26534
|
visualConfig?: Maybe<HelpLayoutVisualConfig>;
|
|
26497
26535
|
};
|
|
26536
|
+
export declare type HelpLayoutHeroElementData = {
|
|
26537
|
+
__typename?: 'HelpLayoutHeroElementData';
|
|
26538
|
+
homePageTitle?: Maybe<Scalars['String']['output']>;
|
|
26539
|
+
useDefaultBanner?: Maybe<Scalars['Boolean']['output']>;
|
|
26540
|
+
};
|
|
26541
|
+
export declare type HelpLayoutHeroElementInput = {
|
|
26542
|
+
visualConfig?: InputMaybe<HelpLayoutVisualConfigInput>;
|
|
26543
|
+
};
|
|
26498
26544
|
export declare enum HelpLayoutHorizontalAlignment {
|
|
26499
26545
|
Center = "CENTER",
|
|
26500
26546
|
Left = "LEFT",
|
|
@@ -26607,6 +26653,9 @@ export declare type HelpLayoutPortalsListElement = HelpLayoutVisualEntity & Node
|
|
|
26607
26653
|
id: Scalars['ID']['output'];
|
|
26608
26654
|
visualConfig?: Maybe<HelpLayoutVisualConfig>;
|
|
26609
26655
|
};
|
|
26656
|
+
export declare type HelpLayoutPortalsListInput = {
|
|
26657
|
+
visualConfig?: InputMaybe<HelpLayoutVisualConfigInput>;
|
|
26658
|
+
};
|
|
26610
26659
|
export declare type HelpLayoutQueryApi = {
|
|
26611
26660
|
__typename?: 'HelpLayoutQueryApi';
|
|
26612
26661
|
elementTypes?: Maybe<Array<HelpLayoutElementType>>;
|
|
@@ -26700,6 +26749,9 @@ export declare type HelpLayoutSuggestedRequestFormsListElementData = {
|
|
|
26700
26749
|
__typename?: 'HelpLayoutSuggestedRequestFormsListElementData';
|
|
26701
26750
|
suggestedRequestTypes?: Maybe<Array<HelpLayoutRequestForm>>;
|
|
26702
26751
|
};
|
|
26752
|
+
export declare type HelpLayoutSuggestedRequestFormsListInput = {
|
|
26753
|
+
visualConfig?: InputMaybe<HelpLayoutVisualConfigInput>;
|
|
26754
|
+
};
|
|
26703
26755
|
export declare type HelpLayoutTopic = {
|
|
26704
26756
|
__typename?: 'HelpLayoutTopic';
|
|
26705
26757
|
hidden?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -26724,6 +26776,9 @@ export declare type HelpLayoutTopicsListElementData = {
|
|
|
26724
26776
|
__typename?: 'HelpLayoutTopicsListElementData';
|
|
26725
26777
|
topics?: Maybe<Array<HelpLayoutTopic>>;
|
|
26726
26778
|
};
|
|
26779
|
+
export declare type HelpLayoutTopicsListInput = {
|
|
26780
|
+
visualConfig?: InputMaybe<HelpLayoutVisualConfigInput>;
|
|
26781
|
+
};
|
|
26727
26782
|
export declare type HelpLayoutUpdateInput = {
|
|
26728
26783
|
layoutId: Scalars['ID']['input'];
|
|
26729
26784
|
sections: Array<HelpLayoutSectionInput>;
|
|
@@ -27014,7 +27069,7 @@ export declare type HelpObjectStoreSearchInput = {
|
|
|
27014
27069
|
};
|
|
27015
27070
|
export declare type HelpObjectStoreSearchMetaData = {
|
|
27016
27071
|
__typename?: 'HelpObjectStoreSearchMetaData';
|
|
27017
|
-
searchScore: Scalars['
|
|
27072
|
+
searchScore: Scalars['Float']['output'];
|
|
27018
27073
|
};
|
|
27019
27074
|
export declare type HelpObjectStoreSearchResult = Node & {
|
|
27020
27075
|
__typename?: 'HelpObjectStoreSearchResult';
|
|
@@ -28256,7 +28311,16 @@ export declare type JiraAppConfigStateEdge = {
|
|
|
28256
28311
|
cursor: Scalars['String']['output'];
|
|
28257
28312
|
node?: Maybe<JiraAppConfigState>;
|
|
28258
28313
|
};
|
|
28259
|
-
export declare type
|
|
28314
|
+
export declare type JiraAppNavigationConfig = {
|
|
28315
|
+
iconUrl?: Maybe<Scalars['String']['output']>;
|
|
28316
|
+
label?: Maybe<Scalars['String']['output']>;
|
|
28317
|
+
links?: Maybe<Array<Maybe<JiraAppNavigationConfig>>>;
|
|
28318
|
+
section?: Maybe<Scalars['Boolean']['output']>;
|
|
28319
|
+
separator?: Maybe<Scalars['Boolean']['output']>;
|
|
28320
|
+
styleClass?: Maybe<Scalars['String']['output']>;
|
|
28321
|
+
url?: Maybe<Scalars['String']['output']>;
|
|
28322
|
+
};
|
|
28323
|
+
export declare type JiraAppNavigationItem = JiraAppNavigationConfig & JiraNavigationItem & Node & {
|
|
28260
28324
|
__typename?: 'JiraAppNavigationItem';
|
|
28261
28325
|
canRemove?: Maybe<Scalars['Boolean']['output']>;
|
|
28262
28326
|
canSetAsDefault?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -28264,12 +28328,23 @@ export declare type JiraAppNavigationItem = JiraNavigationItem & Node & {
|
|
|
28264
28328
|
id: Scalars['ID']['output'];
|
|
28265
28329
|
isDefault?: Maybe<Scalars['Boolean']['output']>;
|
|
28266
28330
|
label?: Maybe<Scalars['String']['output']>;
|
|
28331
|
+
links?: Maybe<Array<Maybe<JiraAppNavigationItemNestedLink>>>;
|
|
28267
28332
|
section?: Maybe<Scalars['Boolean']['output']>;
|
|
28268
28333
|
separator?: Maybe<Scalars['Boolean']['output']>;
|
|
28269
28334
|
styleClass?: Maybe<Scalars['String']['output']>;
|
|
28270
28335
|
typeKey?: Maybe<JiraNavigationItemTypeKey>;
|
|
28271
28336
|
url?: Maybe<Scalars['String']['output']>;
|
|
28272
28337
|
};
|
|
28338
|
+
export declare type JiraAppNavigationItemNestedLink = JiraAppNavigationConfig & {
|
|
28339
|
+
__typename?: 'JiraAppNavigationItemNestedLink';
|
|
28340
|
+
iconUrl?: Maybe<Scalars['String']['output']>;
|
|
28341
|
+
label?: Maybe<Scalars['String']['output']>;
|
|
28342
|
+
links?: Maybe<Array<Maybe<JiraAppNavigationItemNestedLink>>>;
|
|
28343
|
+
section?: Maybe<Scalars['Boolean']['output']>;
|
|
28344
|
+
separator?: Maybe<Scalars['Boolean']['output']>;
|
|
28345
|
+
styleClass?: Maybe<Scalars['String']['output']>;
|
|
28346
|
+
url?: Maybe<Scalars['String']['output']>;
|
|
28347
|
+
};
|
|
28273
28348
|
export declare type JiraAppUiModifications = {
|
|
28274
28349
|
__typename?: 'JiraAppUiModifications';
|
|
28275
28350
|
appEnvId: Scalars['String']['output'];
|
|
@@ -28710,6 +28785,17 @@ export declare type JiraBooleanField = JiraIssueField & JiraIssueFieldConfigurat
|
|
|
28710
28785
|
userFieldConfig?: Maybe<JiraUserFieldConfig>;
|
|
28711
28786
|
value?: Maybe<Scalars['Boolean']['output']>;
|
|
28712
28787
|
};
|
|
28788
|
+
export declare type JiraBulkCreateIssueLinksInput = {
|
|
28789
|
+
issueLinkTypeId: Scalars['ID']['input'];
|
|
28790
|
+
sourceIssueId: Scalars['ID']['input'];
|
|
28791
|
+
targetIssueIds: Array<Scalars['ID']['input']>;
|
|
28792
|
+
};
|
|
28793
|
+
export declare type JiraBulkCreateIssueLinksPayload = Payload & {
|
|
28794
|
+
__typename?: 'JiraBulkCreateIssueLinksPayload';
|
|
28795
|
+
errors?: Maybe<Array<MutationError>>;
|
|
28796
|
+
issueLinkEdges?: Maybe<Array<JiraIssueLinkEdge>>;
|
|
28797
|
+
success: Scalars['Boolean']['output'];
|
|
28798
|
+
};
|
|
28713
28799
|
export declare type JiraBulkEditField = Node & {
|
|
28714
28800
|
__typename?: 'JiraBulkEditField';
|
|
28715
28801
|
bulkEditMultiSelectFieldOptions?: Maybe<Array<Maybe<JiraBulkEditMultiSelectFieldOptions>>>;
|
|
@@ -30151,6 +30237,7 @@ export declare type JiraDevOpsMutation = {
|
|
|
30151
30237
|
optoutOfDevOpsIssuePanelNotConnectedState?: Maybe<JiraOptoutDevOpsIssuePanelNotConnectedPayload>;
|
|
30152
30238
|
regenerateAutodevPlan?: Maybe<JiraAutodevBasicPayload>;
|
|
30153
30239
|
removeJiraBitbucketWorkspaceConnection?: Maybe<JiraRemoveJiraBitbucketWorkspaceConnectionPayload>;
|
|
30240
|
+
resumeAutodevJob?: Maybe<JiraAutodevBasicPayload>;
|
|
30154
30241
|
retryAutodevJob?: Maybe<JiraAutodevBasicPayload>;
|
|
30155
30242
|
saveAutodevPlan?: Maybe<JiraAutodevBasicPayload>;
|
|
30156
30243
|
setProjectSelectedDeploymentAppsProperty?: Maybe<JiraSetProjectSelectedDeploymentAppsPropertyPayload>;
|
|
@@ -30197,6 +30284,10 @@ export declare type JiraDevOpsMutationRemoveJiraBitbucketWorkspaceConnectionArgs
|
|
|
30197
30284
|
cloudId: Scalars['ID']['input'];
|
|
30198
30285
|
input: JiraRemoveJiraBitbucketWorkspaceConnectionInput;
|
|
30199
30286
|
};
|
|
30287
|
+
export declare type JiraDevOpsMutationResumeAutodevJobArgs = {
|
|
30288
|
+
issueAri: Scalars['ID']['input'];
|
|
30289
|
+
jobId: Scalars['ID']['input'];
|
|
30290
|
+
};
|
|
30200
30291
|
export declare type JiraDevOpsMutationRetryAutodevJobArgs = {
|
|
30201
30292
|
issueAri: Scalars['ID']['input'];
|
|
30202
30293
|
jobId: Scalars['ID']['input'];
|
|
@@ -30333,6 +30424,19 @@ export declare type JiraDismissInContextConfigPromptPayload = Payload & {
|
|
|
30333
30424
|
errors?: Maybe<Array<MutationError>>;
|
|
30334
30425
|
success: Scalars['Boolean']['output'];
|
|
30335
30426
|
};
|
|
30427
|
+
export declare type JiraDurationField = JiraIssueField & JiraIssueFieldConfiguration & JiraUserIssueFieldConfiguration & Node & {
|
|
30428
|
+
__typename?: 'JiraDurationField';
|
|
30429
|
+
aliasFieldId?: Maybe<Scalars['ID']['output']>;
|
|
30430
|
+
description?: Maybe<Scalars['String']['output']>;
|
|
30431
|
+
durationInSeconds?: Maybe<Scalars['Long']['output']>;
|
|
30432
|
+
fieldConfig?: Maybe<JiraFieldConfig>;
|
|
30433
|
+
fieldId: Scalars['String']['output'];
|
|
30434
|
+
id: Scalars['ID']['output'];
|
|
30435
|
+
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
30436
|
+
name: Scalars['String']['output'];
|
|
30437
|
+
type: Scalars['String']['output'];
|
|
30438
|
+
userFieldConfig?: Maybe<JiraUserFieldConfig>;
|
|
30439
|
+
};
|
|
30336
30440
|
export declare type JiraDurationFieldInput = {
|
|
30337
30441
|
originalEstimateField?: InputMaybe<Scalars['String']['input']>;
|
|
30338
30442
|
};
|
|
@@ -30526,6 +30630,12 @@ export declare type JiraFieldType = {
|
|
|
30526
30630
|
displayName?: Maybe<Scalars['String']['output']>;
|
|
30527
30631
|
name: Scalars['String']['output'];
|
|
30528
30632
|
};
|
|
30633
|
+
export declare type JiraFieldValidationMutationErrorExtension = MutationErrorExtension & {
|
|
30634
|
+
__typename?: 'JiraFieldValidationMutationErrorExtension';
|
|
30635
|
+
errorType?: Maybe<Scalars['String']['output']>;
|
|
30636
|
+
fieldId?: Maybe<Scalars['String']['output']>;
|
|
30637
|
+
statusCode?: Maybe<Scalars['Int']['output']>;
|
|
30638
|
+
};
|
|
30529
30639
|
export declare type JiraFilter = {
|
|
30530
30640
|
filterId: Scalars['String']['output'];
|
|
30531
30641
|
filterUrl?: Maybe<Scalars['URL']['output']>;
|
|
@@ -31082,6 +31192,7 @@ export declare type JiraIssue = Node & {
|
|
|
31082
31192
|
commandPaletteFields?: Maybe<JiraIssueFieldConnection>;
|
|
31083
31193
|
comments?: Maybe<JiraCommentConnection>;
|
|
31084
31194
|
deploymentsSummary?: Maybe<DevOpsSummarisedDeployments>;
|
|
31195
|
+
descriptionField?: Maybe<JiraRichTextField>;
|
|
31085
31196
|
designs?: Maybe<GraphStoreSimplifiedIssueAssociatedDesignConnection>;
|
|
31086
31197
|
devInfoDetails?: Maybe<JiraIssueDevInfoDetails>;
|
|
31087
31198
|
devOpsSummarisedEntities?: Maybe<DevOpsSummarisedEntities>;
|
|
@@ -31107,6 +31218,7 @@ export declare type JiraIssue = Node & {
|
|
|
31107
31218
|
issueId: Scalars['String']['output'];
|
|
31108
31219
|
issueLinks?: Maybe<JiraIssueLinkConnection>;
|
|
31109
31220
|
issuePropertyByKey?: Maybe<Scalars['JSON']['output']>;
|
|
31221
|
+
issueTypeField?: Maybe<JiraIssueTypeField>;
|
|
31110
31222
|
issueTypesForHierarchyAbove?: Maybe<JiraIssueTypeConnection>;
|
|
31111
31223
|
issueTypesForHierarchyBelow?: Maybe<JiraIssueTypeConnection>;
|
|
31112
31224
|
issueTypesForHierarchySame?: Maybe<JiraIssueTypeConnection>;
|
|
@@ -31114,14 +31226,18 @@ export declare type JiraIssue = Node & {
|
|
|
31114
31226
|
lifecycleState?: Maybe<JiraIssueLifecycleState>;
|
|
31115
31227
|
linkedDesigns?: Maybe<GraphJiraDesignConnection>;
|
|
31116
31228
|
postIncidentReviewLinks?: Maybe<GraphIncidentAssociatedPostIncidentReviewLinkRelationshipConnection>;
|
|
31229
|
+
priorityField?: Maybe<JiraPriorityField>;
|
|
31117
31230
|
projectRoleCommentVisibilities?: Maybe<JiraRoleConnection>;
|
|
31231
|
+
resolutionField?: Maybe<JiraResolutionField>;
|
|
31118
31232
|
screenId?: Maybe<Scalars['Long']['output']>;
|
|
31119
31233
|
shadowFieldSetsForIssueSearchView?: Maybe<JiraIssueFieldSetConnection>;
|
|
31120
31234
|
smartSummary?: Maybe<JiraAdf>;
|
|
31121
31235
|
startDateField?: Maybe<JiraDatePickerField>;
|
|
31236
|
+
statusField?: Maybe<JiraStatusField>;
|
|
31122
31237
|
storyPointEstimateField?: Maybe<JiraNumberField>;
|
|
31123
31238
|
storyPointsField?: Maybe<JiraNumberField>;
|
|
31124
31239
|
suggestFieldValues?: Maybe<JiraSuggestedIssueFieldValuesResult>;
|
|
31240
|
+
summaryField?: Maybe<JiraSingleLineTextField>;
|
|
31125
31241
|
webUrl?: Maybe<Scalars['URL']['output']>;
|
|
31126
31242
|
worklogs?: Maybe<JiraWorkLogConnection>;
|
|
31127
31243
|
};
|
|
@@ -31770,7 +31886,7 @@ export declare type JiraIssueLinkFieldIssuesArgs = {
|
|
|
31770
31886
|
showSubTasks?: InputMaybe<Scalars['Boolean']['input']>;
|
|
31771
31887
|
};
|
|
31772
31888
|
export declare type JiraIssueLinkFieldOperationInputForIssueTransitions = {
|
|
31773
|
-
|
|
31889
|
+
linkIssues?: InputMaybe<JiraLinkedIssuesInput>;
|
|
31774
31890
|
linkType: Scalars['ID']['input'];
|
|
31775
31891
|
operation: JiraAddValueFieldOperations;
|
|
31776
31892
|
};
|
|
@@ -32093,6 +32209,7 @@ export declare type JiraIssueTransitionFieldLevelInput = {
|
|
|
32093
32209
|
JiraRadioSelectField?: InputMaybe<Array<JiraUpdateRadioSelectFieldInput>>;
|
|
32094
32210
|
JiraResolutionField?: InputMaybe<Array<JiraUpdateResolutionFieldInput>>;
|
|
32095
32211
|
JiraRichTextField?: InputMaybe<Array<JiraUpdateRichTextFieldInput>>;
|
|
32212
|
+
JiraSecurityLevelField?: InputMaybe<Array<JiraUpdateSecurityLevelFieldInput>>;
|
|
32096
32213
|
JiraSingleGroupPickerField?: InputMaybe<Array<JiraUpdateSingleGroupPickerFieldInput>>;
|
|
32097
32214
|
JiraSingleLineTextField?: InputMaybe<Array<JiraUpdateSingleLineTextFieldInput>>;
|
|
32098
32215
|
JiraSingleSelectField?: InputMaybe<Array<JiraUpdateSingleSelectFieldInput>>;
|
|
@@ -32914,6 +33031,10 @@ export declare type JiraLinkIssuesToIncidentMutationPayload = Payload & {
|
|
|
32914
33031
|
errors?: Maybe<Array<MutationError>>;
|
|
32915
33032
|
success: Scalars['Boolean']['output'];
|
|
32916
33033
|
};
|
|
33034
|
+
export declare type JiraLinkedIssuesInput = {
|
|
33035
|
+
inwardIssues?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
33036
|
+
outwardIssues?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
33037
|
+
};
|
|
32917
33038
|
export declare type JiraLongRunningTaskProgress = {
|
|
32918
33039
|
__typename?: 'JiraLongRunningTaskProgress';
|
|
32919
33040
|
description?: Maybe<Scalars['String']['output']>;
|
|
@@ -33004,6 +33125,7 @@ export declare type JiraMultipleGroupPickerField = JiraIssueField & JiraIssueFie
|
|
|
33004
33125
|
export declare type JiraMultipleGroupPickerFieldGroupsArgs = {
|
|
33005
33126
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
33006
33127
|
before?: InputMaybe<Scalars['String']['input']>;
|
|
33128
|
+
filterById?: InputMaybe<JiraFieldOptionIdsFilterInput>;
|
|
33007
33129
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
33008
33130
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
33009
33131
|
searchBy?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -33019,7 +33141,7 @@ export declare type JiraMultipleGroupPickerFieldInput = {
|
|
|
33019
33141
|
groups: Array<JiraGroupInput>;
|
|
33020
33142
|
};
|
|
33021
33143
|
export declare type JiraMultipleGroupPickerFieldOperationInput = {
|
|
33022
|
-
|
|
33144
|
+
ids?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
33023
33145
|
operation: JiraMultiValueFieldOperations;
|
|
33024
33146
|
};
|
|
33025
33147
|
export declare type JiraMultipleGroupPickerFieldPayload = Payload & {
|
|
@@ -33213,6 +33335,7 @@ export declare type JiraMutation = {
|
|
|
33213
33335
|
createAgileReleaseTrain?: Maybe<JiraCreateAgileReleaseTrainPayload>;
|
|
33214
33336
|
createAndAssociateWorkflowFromJsmTemplate?: Maybe<JiraServiceManagementCreateAndAssociateWorkflowFromTemplatePayload>;
|
|
33215
33337
|
createApproverListField?: Maybe<JiraCreateApproverListFieldPayload>;
|
|
33338
|
+
createIssueLinks?: Maybe<JiraBulkCreateIssueLinksPayload>;
|
|
33216
33339
|
createJiraVersion?: Maybe<JiraUpdateVersionPayload>;
|
|
33217
33340
|
createJwmFilter?: Maybe<JiraWorkManagementCreateFilterPayload>;
|
|
33218
33341
|
createJwmIssue?: Maybe<JiraWorkManagementCreateIssuePayload>;
|
|
@@ -33306,6 +33429,7 @@ export declare type JiraMutation = {
|
|
|
33306
33429
|
updateReleaseNotesConfiguration?: Maybe<JiraUpdateReleaseNotesConfigurationPayload>;
|
|
33307
33430
|
updateResolutionField?: Maybe<JiraResolutionFieldPayload>;
|
|
33308
33431
|
updateRichTextField?: Maybe<JiraRichTextFieldPayload>;
|
|
33432
|
+
updateSecurityLevelField?: Maybe<JiraSecurityLevelFieldPayload>;
|
|
33309
33433
|
updateSingleGroupPickerField?: Maybe<JiraSingleGroupPickerFieldPayload>;
|
|
33310
33434
|
updateSingleLineTextField?: Maybe<JiraSingleLineTextFieldPayload>;
|
|
33311
33435
|
updateSingleSelectField?: Maybe<JiraSingleSelectFieldPayload>;
|
|
@@ -33365,6 +33489,10 @@ export declare type JiraMutationCreateApproverListFieldArgs = {
|
|
|
33365
33489
|
cloudId: Scalars['ID']['input'];
|
|
33366
33490
|
input: JiraCreateApproverListFieldInput;
|
|
33367
33491
|
};
|
|
33492
|
+
export declare type JiraMutationCreateIssueLinksArgs = {
|
|
33493
|
+
cloudId: Scalars['ID']['input'];
|
|
33494
|
+
input: JiraBulkCreateIssueLinksInput;
|
|
33495
|
+
};
|
|
33368
33496
|
export declare type JiraMutationCreateJiraVersionArgs = {
|
|
33369
33497
|
input: JiraVersionCreateMutationInput;
|
|
33370
33498
|
};
|
|
@@ -33652,6 +33780,9 @@ export declare type JiraMutationUpdateResolutionFieldArgs = {
|
|
|
33652
33780
|
export declare type JiraMutationUpdateRichTextFieldArgs = {
|
|
33653
33781
|
input: JiraUpdateRichTextFieldInput;
|
|
33654
33782
|
};
|
|
33783
|
+
export declare type JiraMutationUpdateSecurityLevelFieldArgs = {
|
|
33784
|
+
input: JiraUpdateSecurityLevelFieldInput;
|
|
33785
|
+
};
|
|
33655
33786
|
export declare type JiraMutationUpdateSingleGroupPickerFieldArgs = {
|
|
33656
33787
|
input: JiraUpdateSingleGroupPickerFieldInput;
|
|
33657
33788
|
};
|
|
@@ -33789,6 +33920,14 @@ export declare type JiraNavigationUiStateUserPropertyRightPanelsArgs = {
|
|
|
33789
33920
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
33790
33921
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
33791
33922
|
};
|
|
33923
|
+
export declare enum JiraNotificationCategoryType {
|
|
33924
|
+
CommentChanges = "COMMENT_CHANGES",
|
|
33925
|
+
IssueAssigned = "ISSUE_ASSIGNED",
|
|
33926
|
+
IssueChanges = "ISSUE_CHANGES",
|
|
33927
|
+
IssueMentioned = "ISSUE_MENTIONED",
|
|
33928
|
+
IssueMiscellaneous = "ISSUE_MISCELLANEOUS",
|
|
33929
|
+
IssueWorklogChanges = "ISSUE_WORKLOG_CHANGES"
|
|
33930
|
+
}
|
|
33792
33931
|
export declare type JiraNotificationChannel = {
|
|
33793
33932
|
__typename?: 'JiraNotificationChannel';
|
|
33794
33933
|
channel?: Maybe<JiraNotificationChannelType>;
|
|
@@ -33815,6 +33954,7 @@ export declare type JiraNotificationOptions = {
|
|
|
33815
33954
|
};
|
|
33816
33955
|
export declare type JiraNotificationPreference = {
|
|
33817
33956
|
__typename?: 'JiraNotificationPreference';
|
|
33957
|
+
category?: Maybe<JiraNotificationCategoryType>;
|
|
33818
33958
|
emailChannel?: Maybe<JiraNotificationChannel>;
|
|
33819
33959
|
id: Scalars['ID']['output'];
|
|
33820
33960
|
inProductChannel?: Maybe<JiraNotificationChannel>;
|
|
@@ -36691,6 +36831,16 @@ export declare type JiraSecurityLevelFieldSecurityLevelsArgs = {
|
|
|
36691
36831
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
36692
36832
|
searchBy?: InputMaybe<Scalars['String']['input']>;
|
|
36693
36833
|
};
|
|
36834
|
+
export declare type JiraSecurityLevelFieldOperationInput = {
|
|
36835
|
+
id?: InputMaybe<Scalars['ID']['input']>;
|
|
36836
|
+
operation: JiraSingleValueFieldOperations;
|
|
36837
|
+
};
|
|
36838
|
+
export declare type JiraSecurityLevelFieldPayload = Payload & {
|
|
36839
|
+
__typename?: 'JiraSecurityLevelFieldPayload';
|
|
36840
|
+
errors?: Maybe<Array<MutationError>>;
|
|
36841
|
+
field?: Maybe<JiraSecurityLevelField>;
|
|
36842
|
+
success: Scalars['Boolean']['output'];
|
|
36843
|
+
};
|
|
36694
36844
|
export declare type JiraSecurityLevelInput = {
|
|
36695
36845
|
securityLevelId: Scalars['ID']['input'];
|
|
36696
36846
|
};
|
|
@@ -36880,8 +37030,10 @@ export declare type JiraServiceManagementComment = JiraComment & Node & {
|
|
|
36880
37030
|
authorCanSeeRequest?: Maybe<Scalars['Boolean']['output']>;
|
|
36881
37031
|
commentId: Scalars['ID']['output'];
|
|
36882
37032
|
created: Scalars['DateTime']['output'];
|
|
37033
|
+
eventOccurredAt?: Maybe<Scalars['DateTime']['output']>;
|
|
36883
37034
|
id: Scalars['ID']['output'];
|
|
36884
37035
|
issue?: Maybe<JiraIssue>;
|
|
37036
|
+
jsdIncidentActivityViewHidden?: Maybe<Scalars['Boolean']['output']>;
|
|
36885
37037
|
permissionLevel?: Maybe<JiraPermissionLevel>;
|
|
36886
37038
|
richText?: Maybe<JiraRichText>;
|
|
36887
37039
|
updateAuthor?: Maybe<User>;
|
|
@@ -37752,7 +37904,7 @@ export declare type JiraSingleGroupPickerFieldInput = {
|
|
|
37752
37904
|
group: JiraGroupInput;
|
|
37753
37905
|
};
|
|
37754
37906
|
export declare type JiraSingleGroupPickerFieldOperationInput = {
|
|
37755
|
-
|
|
37907
|
+
id?: InputMaybe<Scalars['ID']['input']>;
|
|
37756
37908
|
operation: JiraSingleValueFieldOperations;
|
|
37757
37909
|
};
|
|
37758
37910
|
export declare type JiraSingleGroupPickerFieldPayload = Payload & {
|
|
@@ -38713,6 +38865,10 @@ export declare type JiraUpdateRichTextFieldInput = {
|
|
|
38713
38865
|
id: Scalars['ID']['input'];
|
|
38714
38866
|
operation: JiraRichTextFieldOperationInput;
|
|
38715
38867
|
};
|
|
38868
|
+
export declare type JiraUpdateSecurityLevelFieldInput = {
|
|
38869
|
+
id: Scalars['ID']['input'];
|
|
38870
|
+
operation: JiraSecurityLevelFieldOperationInput;
|
|
38871
|
+
};
|
|
38716
38872
|
export declare type JiraUpdateShortcutInput = {
|
|
38717
38873
|
projectId: Scalars['ID']['input'];
|
|
38718
38874
|
shortcutData: JiraShortcutDataInput;
|
|
@@ -40100,6 +40256,74 @@ export declare type JiraWorklogFieldOperationInputForIssueTransitions = {
|
|
|
40100
40256
|
startedTime?: InputMaybe<Scalars['DateTime']['input']>;
|
|
40101
40257
|
timeSpentInMinutes?: InputMaybe<Scalars['Long']['input']>;
|
|
40102
40258
|
};
|
|
40259
|
+
export declare type JsmChatChannelRequestTypeMapping = {
|
|
40260
|
+
__typename?: 'JsmChatChannelRequestTypeMapping';
|
|
40261
|
+
channelId: Scalars['ID']['output'];
|
|
40262
|
+
channelName?: Maybe<Scalars['String']['output']>;
|
|
40263
|
+
channelType?: Maybe<Scalars['String']['output']>;
|
|
40264
|
+
projectId?: Maybe<Scalars['String']['output']>;
|
|
40265
|
+
requestTypeId?: Maybe<Scalars['String']['output']>;
|
|
40266
|
+
requestTypeName?: Maybe<Scalars['String']['output']>;
|
|
40267
|
+
settings?: Maybe<JsmChatChannelSettings>;
|
|
40268
|
+
};
|
|
40269
|
+
export declare type JsmChatChannelSettings = {
|
|
40270
|
+
__typename?: 'JsmChatChannelSettings';
|
|
40271
|
+
isDeflectionChannel?: Maybe<Scalars['Boolean']['output']>;
|
|
40272
|
+
isVirtualAgentChannel?: Maybe<Scalars['Boolean']['output']>;
|
|
40273
|
+
isVirtualAgentTestChannel?: Maybe<Scalars['Boolean']['output']>;
|
|
40274
|
+
};
|
|
40275
|
+
export declare type JsmChatGetSlackChatConfigInput = {
|
|
40276
|
+
activationId: Scalars['ID']['input'];
|
|
40277
|
+
projectId: Scalars['ID']['input'];
|
|
40278
|
+
siteId: Scalars['ID']['input'];
|
|
40279
|
+
};
|
|
40280
|
+
export declare type JsmChatInitializeConfigRequest = {
|
|
40281
|
+
activationId: Scalars['ID']['input'];
|
|
40282
|
+
projectId: Scalars['ID']['input'];
|
|
40283
|
+
siteId: Scalars['ID']['input'];
|
|
40284
|
+
};
|
|
40285
|
+
export declare type JsmChatInitializeConfigResponse = {
|
|
40286
|
+
__typename?: 'JsmChatInitializeConfigResponse';
|
|
40287
|
+
nativeConfigEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
40288
|
+
};
|
|
40289
|
+
export declare type JsmChatProjectSettings = {
|
|
40290
|
+
__typename?: 'JsmChatProjectSettings';
|
|
40291
|
+
agentAssignedMessageDisabled?: Maybe<Scalars['Boolean']['output']>;
|
|
40292
|
+
agentIssueClosedMessageDisabled?: Maybe<Scalars['Boolean']['output']>;
|
|
40293
|
+
agentThreadMessageDisabled?: Maybe<Scalars['Boolean']['output']>;
|
|
40294
|
+
areRequesterThreadRepliesPrivate?: Maybe<Scalars['Boolean']['output']>;
|
|
40295
|
+
hideQueueDuringTicketCreation?: Maybe<Scalars['Boolean']['output']>;
|
|
40296
|
+
jsmApproversEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
40297
|
+
requesterIssueClosedMessageDisabled?: Maybe<Scalars['Boolean']['output']>;
|
|
40298
|
+
requesterThreadMessageDisabled?: Maybe<Scalars['Boolean']['output']>;
|
|
40299
|
+
};
|
|
40300
|
+
export declare type JsmChatProjectSettingsSlack = {
|
|
40301
|
+
__typename?: 'JsmChatProjectSettingsSlack';
|
|
40302
|
+
activationId?: Maybe<Scalars['String']['output']>;
|
|
40303
|
+
projectId: Scalars['ID']['output'];
|
|
40304
|
+
settings?: Maybe<JsmChatProjectSettings>;
|
|
40305
|
+
siteId?: Maybe<Scalars['String']['output']>;
|
|
40306
|
+
};
|
|
40307
|
+
export declare type JsmChatQuery = {
|
|
40308
|
+
__typename?: 'JsmChatQuery';
|
|
40309
|
+
getSlackChatConfig?: Maybe<JsmChatSlackConfig>;
|
|
40310
|
+
initializeConfig: JsmChatInitializeConfigResponse;
|
|
40311
|
+
};
|
|
40312
|
+
export declare type JsmChatQueryGetSlackChatConfigArgs = {
|
|
40313
|
+
input: JsmChatGetSlackChatConfigInput;
|
|
40314
|
+
};
|
|
40315
|
+
export declare type JsmChatQueryInitializeConfigArgs = {
|
|
40316
|
+
input: JsmChatInitializeConfigRequest;
|
|
40317
|
+
};
|
|
40318
|
+
export declare type JsmChatSlackConfig = {
|
|
40319
|
+
__typename?: 'JsmChatSlackConfig';
|
|
40320
|
+
botUserId?: Maybe<Scalars['String']['output']>;
|
|
40321
|
+
channelRequestTypeMapping: Array<JsmChatChannelRequestTypeMapping>;
|
|
40322
|
+
projectSettings?: Maybe<JsmChatProjectSettingsSlack>;
|
|
40323
|
+
siteId: Scalars['ID']['output'];
|
|
40324
|
+
slackTeamId?: Maybe<Scalars['String']['output']>;
|
|
40325
|
+
uninstalled?: Maybe<Scalars['Boolean']['output']>;
|
|
40326
|
+
};
|
|
40103
40327
|
export declare type JswMutation = {
|
|
40104
40328
|
__typename?: 'JswMutation';
|
|
40105
40329
|
deleteCard?: Maybe<DeleteCardOutput>;
|
|
@@ -40114,10 +40338,12 @@ export declare type JswQuery = {
|
|
|
40114
40338
|
export declare type JswQueryBoardScopeArgs = {
|
|
40115
40339
|
boardId: Scalars['ID']['input'];
|
|
40116
40340
|
};
|
|
40341
|
+
export declare type KnowledgeDiscoveryConfluenceEntity = ConfluenceBlogPost | ConfluencePage;
|
|
40117
40342
|
export declare type KnowledgeDiscoveryCreateDefinitionInput = {
|
|
40118
40343
|
definition: Scalars['String']['input'];
|
|
40119
40344
|
keyPhrase: Scalars['String']['input'];
|
|
40120
|
-
|
|
40345
|
+
referenceContentId?: InputMaybe<Scalars['String']['input']>;
|
|
40346
|
+
referenceUrl?: InputMaybe<Scalars['String']['input']>;
|
|
40121
40347
|
workspaceId: Scalars['String']['input'];
|
|
40122
40348
|
};
|
|
40123
40349
|
export declare type KnowledgeDiscoveryCreateDefinitionPayload = Payload & {
|
|
@@ -40129,10 +40355,12 @@ export declare type KnowledgeDiscoveryCreateDefinitionPayload = Payload & {
|
|
|
40129
40355
|
export declare type KnowledgeDiscoveryDefinition = {
|
|
40130
40356
|
__typename?: 'KnowledgeDiscoveryDefinition';
|
|
40131
40357
|
accountId: Scalars['String']['output'];
|
|
40358
|
+
confluenceEntity?: Maybe<KnowledgeDiscoveryConfluenceEntity>;
|
|
40132
40359
|
createdAt: Scalars['String']['output'];
|
|
40133
40360
|
definition: Scalars['String']['output'];
|
|
40361
|
+
editor?: Maybe<User>;
|
|
40134
40362
|
keyPhrase: Scalars['String']['output'];
|
|
40135
|
-
|
|
40363
|
+
referenceUrl?: Maybe<Scalars['String']['output']>;
|
|
40136
40364
|
};
|
|
40137
40365
|
export declare type KnowledgeDiscoveryDefinitionHistoryResult = KnowledgeDiscoveryDefinitionList | QueryError;
|
|
40138
40366
|
export declare type KnowledgeDiscoveryDefinitionList = {
|
|
@@ -43700,7 +43928,6 @@ export declare type Query = {
|
|
|
43700
43928
|
appStoredEntity?: Maybe<AppStoredEntity>;
|
|
43701
43929
|
apps?: Maybe<AppConnection>;
|
|
43702
43930
|
aquaOutgoingEmailLogs?: Maybe<AquaOutgoingEmailLogsQueryApi>;
|
|
43703
|
-
atlas?: Maybe<TownsquareQueryApi>;
|
|
43704
43931
|
bitbucket?: Maybe<BitbucketQuery>;
|
|
43705
43932
|
bitbucketRepositoriesAvailableToLinkWithNewDevOpsService?: Maybe<BitbucketRepositoryIdConnection>;
|
|
43706
43933
|
boardScope?: Maybe<BoardScope>;
|
|
@@ -43764,6 +43991,7 @@ export declare type Query = {
|
|
|
43764
43991
|
jiraProjectRelationshipsForRepository?: Maybe<JiraProjectAndRepositoryRelationshipConnection>;
|
|
43765
43992
|
jiraProjectRelationshipsForService?: Maybe<DevOpsServiceAndJiraProjectRelationshipConnection>;
|
|
43766
43993
|
jiraReleases?: Maybe<JiraReleases>;
|
|
43994
|
+
jsmChat?: Maybe<JsmChatQuery>;
|
|
43767
43995
|
jsw?: Maybe<JswQuery>;
|
|
43768
43996
|
knowledgeDiscovery?: Maybe<KnowledgeDiscoveryQueryApi>;
|
|
43769
43997
|
marketplaceApp?: Maybe<MarketplaceApp>;
|
|
@@ -45740,6 +45968,7 @@ export declare type SearchQueryApiSearchArgs = {
|
|
|
45740
45968
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
45741
45969
|
analytics?: InputMaybe<SearchAnalyticsInput>;
|
|
45742
45970
|
before?: InputMaybe<Scalars['String']['input']>;
|
|
45971
|
+
enableHighlighting?: InputMaybe<Scalars['Boolean']['input']>;
|
|
45743
45972
|
experience: Scalars['String']['input'];
|
|
45744
45973
|
filters: SearchFilterInput;
|
|
45745
45974
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
@@ -45868,6 +46097,14 @@ export declare type SearchResultJiraIssueStatus = {
|
|
|
45868
46097
|
__typename?: 'SearchResultJiraIssueStatus';
|
|
45869
46098
|
id: Scalars['ID']['output'];
|
|
45870
46099
|
name: Scalars['String']['output'];
|
|
46100
|
+
statusCategory?: Maybe<SearchResultJiraIssueStatusCategory>;
|
|
46101
|
+
};
|
|
46102
|
+
export declare type SearchResultJiraIssueStatusCategory = {
|
|
46103
|
+
__typename?: 'SearchResultJiraIssueStatusCategory';
|
|
46104
|
+
colorName?: Maybe<Scalars['String']['output']>;
|
|
46105
|
+
id: Scalars['ID']['output'];
|
|
46106
|
+
key: Scalars['String']['output'];
|
|
46107
|
+
name: Scalars['String']['output'];
|
|
45871
46108
|
};
|
|
45872
46109
|
export declare type SearchResultJiraProject = SearchResult & {
|
|
45873
46110
|
__typename?: 'SearchResultJiraProject';
|
|
@@ -47225,6 +47462,9 @@ export declare type SignupSubscriptionApi = {
|
|
|
47225
47462
|
__typename?: 'SignupSubscriptionApi';
|
|
47226
47463
|
signupProvisioningStatus?: Maybe<SignupProvisioningStatus>;
|
|
47227
47464
|
};
|
|
47465
|
+
export declare type SignupSubscriptionApiSignupProvisioningStatusArgs = {
|
|
47466
|
+
orchestrationId: Scalars['String']['input'];
|
|
47467
|
+
};
|
|
47228
47468
|
export declare type SmartsContext = {
|
|
47229
47469
|
additionalContextList?: InputMaybe<Array<SmartsKeyValue>>;
|
|
47230
47470
|
containerId?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -47534,7 +47774,7 @@ export declare type Subscription = {
|
|
|
47534
47774
|
ecosystem?: Maybe<EcosystemSubscription>;
|
|
47535
47775
|
jira?: Maybe<JiraSubscription>;
|
|
47536
47776
|
sandbox: SandboxSubscription;
|
|
47537
|
-
signup
|
|
47777
|
+
signup: SignupSubscriptionApi;
|
|
47538
47778
|
testing?: Maybe<TestingSubscription>;
|
|
47539
47779
|
trello: TrelloSubscriptionApi;
|
|
47540
47780
|
};
|
|
@@ -48612,12 +48852,18 @@ export declare type TownsquareGoal = Node & {
|
|
|
48612
48852
|
key: Scalars['String']['output'];
|
|
48613
48853
|
name: Scalars['String']['output'];
|
|
48614
48854
|
owner?: Maybe<User>;
|
|
48855
|
+
parentGoal?: Maybe<TownsquareGoal>;
|
|
48615
48856
|
state?: Maybe<TownsquareGoalState>;
|
|
48616
48857
|
status?: Maybe<TownsquareStatus>;
|
|
48858
|
+
subGoals?: Maybe<TownsquareGoalConnection>;
|
|
48617
48859
|
targetDate?: Maybe<TownsquareTargetDate>;
|
|
48618
48860
|
url?: Maybe<Scalars['String']['output']>;
|
|
48619
48861
|
uuid: Scalars['String']['output'];
|
|
48620
48862
|
};
|
|
48863
|
+
export declare type TownsquareGoalSubGoalsArgs = {
|
|
48864
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
48865
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
48866
|
+
};
|
|
48621
48867
|
export declare type TownsquareGoalConnection = {
|
|
48622
48868
|
__typename?: 'TownsquareGoalConnection';
|
|
48623
48869
|
edges?: Maybe<Array<Maybe<TownsquareGoalEdge>>>;
|
|
@@ -50765,7 +51011,6 @@ export declare type VirtualAgentConfiguration = Node & {
|
|
|
50765
51011
|
intentRuleProjections?: Maybe<VirtualAgentIntentRuleProjectionsConnection>;
|
|
50766
51012
|
isAiResponsesEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
50767
51013
|
isEnabledOnJsmPortal?: Maybe<Scalars['Boolean']['output']>;
|
|
50768
|
-
properties?: Maybe<VirtualAgentProperties>;
|
|
50769
51014
|
respondToQueries: Scalars['Boolean']['output'];
|
|
50770
51015
|
standardFlowEditors?: Maybe<VirtualAgentFlowEditorsConnection>;
|
|
50771
51016
|
virtualAgentChannelConfig?: Maybe<VirtualAgentChannelConfig>;
|
|
@@ -50888,7 +51133,6 @@ export declare type VirtualAgentFeatures = {
|
|
|
50888
51133
|
isAiEnabledInAdminHub?: Maybe<Scalars['Boolean']['output']>;
|
|
50889
51134
|
isVirtualAgentAvailable?: Maybe<Scalars['Boolean']['output']>;
|
|
50890
51135
|
};
|
|
50891
|
-
export declare type VirtualAgentFeaturesResult = VirtualAgentFeatures | VirtualAgentQueryError;
|
|
50892
51136
|
export declare type VirtualAgentFlowEditor = Node & {
|
|
50893
51137
|
__typename?: 'VirtualAgentFlowEditor';
|
|
50894
51138
|
group?: Maybe<Scalars['String']['output']>;
|
|
@@ -51101,44 +51345,18 @@ export declare type VirtualAgentMutationApiUpdateVirtualAgentConfigurationArgs =
|
|
|
51101
51345
|
input: VirtualAgentUpdateConfigurationInput;
|
|
51102
51346
|
virtualAgentConfigurationId: Scalars['ID']['input'];
|
|
51103
51347
|
};
|
|
51104
|
-
export declare type VirtualAgentProperties = {
|
|
51105
|
-
__typename?: 'VirtualAgentProperties';
|
|
51106
|
-
defaultJiraRequestTypeId?: Maybe<Scalars['String']['output']>;
|
|
51107
|
-
isAiResponsesEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
51108
|
-
};
|
|
51109
|
-
export declare type VirtualAgentPropertiesInput = {};
|
|
51110
51348
|
export declare type VirtualAgentQueryApi = {
|
|
51111
51349
|
__typename?: 'VirtualAgentQueryApi';
|
|
51112
|
-
intentRuleProjections?: Maybe<VirtualAgentIntentRuleProjectionsConnection>;
|
|
51113
|
-
intentTemplatesByProjectId?: Maybe<VirtualAgentIntentTemplatesConnection>;
|
|
51114
51350
|
validateRequestType?: Maybe<VirtualAgentRequestTypeConnectionStatus>;
|
|
51115
|
-
virtualAgentConfigurationByProjectId?: Maybe<VirtualAgentConfigurationResult>;
|
|
51116
51351
|
virtualAgentEntitlements?: Maybe<VirtualAgentFeatures>;
|
|
51117
|
-
virtualAgentFeatures?: Maybe<VirtualAgentFeaturesResult>;
|
|
51118
|
-
};
|
|
51119
|
-
export declare type VirtualAgentQueryApiIntentRuleProjectionsArgs = {
|
|
51120
|
-
after?: InputMaybe<Scalars['String']['input']>;
|
|
51121
|
-
filter: VirtualAgentIntentRuleProjectionsFilter;
|
|
51122
|
-
first?: InputMaybe<Scalars['Int']['input']>;
|
|
51123
|
-
};
|
|
51124
|
-
export declare type VirtualAgentQueryApiIntentTemplatesByProjectIdArgs = {
|
|
51125
|
-
after?: InputMaybe<Scalars['String']['input']>;
|
|
51126
|
-
first?: InputMaybe<Scalars['Int']['input']>;
|
|
51127
|
-
jiraProjectId: Scalars['ID']['input'];
|
|
51128
51352
|
};
|
|
51129
51353
|
export declare type VirtualAgentQueryApiValidateRequestTypeArgs = {
|
|
51130
51354
|
jiraProjectId: Scalars['ID']['input'];
|
|
51131
51355
|
requestTypeId: Scalars['String']['input'];
|
|
51132
51356
|
};
|
|
51133
|
-
export declare type VirtualAgentQueryApiVirtualAgentConfigurationByProjectIdArgs = {
|
|
51134
|
-
jiraProjectId: Scalars['ID']['input'];
|
|
51135
|
-
};
|
|
51136
51357
|
export declare type VirtualAgentQueryApiVirtualAgentEntitlementsArgs = {
|
|
51137
51358
|
cloudId: Scalars['ID']['input'];
|
|
51138
51359
|
};
|
|
51139
|
-
export declare type VirtualAgentQueryApiVirtualAgentFeaturesArgs = {
|
|
51140
|
-
cloudId: Scalars['ID']['input'];
|
|
51141
|
-
};
|
|
51142
51360
|
export declare type VirtualAgentQueryError = {
|
|
51143
51361
|
__typename?: 'VirtualAgentQueryError';
|
|
51144
51362
|
extensions?: Maybe<Array<QueryErrorExtension>>;
|