@forge/cli-shared 3.25.2 → 3.26.0-experimental-1c920ad
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 +37 -0
- package/out/apps/create-an-app.js +1 -1
- package/out/apps/register-app.d.ts +1 -1
- package/out/apps/register-app.d.ts.map +1 -1
- package/out/apps/register-app.js +3 -5
- package/out/graphql/graphql-types.d.ts +918 -48
- package/out/graphql/graphql-types.d.ts.map +1 -1
- package/out/graphql/graphql-types.js +117 -12
- package/out/index.d.ts +1 -0
- package/out/index.d.ts.map +1 -1
- package/out/index.js +1 -0
- package/out/tunnel/index.d.ts +2 -0
- package/out/tunnel/index.d.ts.map +1 -0
- package/out/tunnel/index.js +4 -0
- package/out/tunnel/tunnel-options.d.ts +13 -0
- package/out/tunnel/tunnel-options.d.ts.map +1 -0
- package/out/tunnel/tunnel-options.js +9 -0
- package/out/ui/text.d.ts +4 -1
- package/out/ui/text.d.ts.map +1 -1
- package/out/ui/text.js +4 -1
- package/package.json +2 -2
|
@@ -48,6 +48,10 @@ export declare type Scalars = {
|
|
|
48
48
|
input: any;
|
|
49
49
|
output: any;
|
|
50
50
|
};
|
|
51
|
+
BigDecimal: {
|
|
52
|
+
input: any;
|
|
53
|
+
output: any;
|
|
54
|
+
};
|
|
51
55
|
CardPaletteColor: {
|
|
52
56
|
input: any;
|
|
53
57
|
output: any;
|
|
@@ -128,9 +132,7 @@ export declare type ActionsAction = {
|
|
|
128
132
|
};
|
|
129
133
|
export declare type ActionsActionType = {
|
|
130
134
|
__typename?: 'ActionsActionType';
|
|
131
|
-
|
|
132
|
-
aiPromptAdditional?: Maybe<Scalars['String']['output']>;
|
|
133
|
-
description?: Maybe<Scalars['String']['output']>;
|
|
135
|
+
description?: Maybe<ActionsDescription>;
|
|
134
136
|
displayName: Scalars['String']['output'];
|
|
135
137
|
entityType?: Maybe<Scalars['String']['output']>;
|
|
136
138
|
inputs?: Maybe<Array<ActionsActionTypeInputTuple>>;
|
|
@@ -139,10 +141,8 @@ export declare type ActionsActionType = {
|
|
|
139
141
|
};
|
|
140
142
|
export declare type ActionsActionTypeInput = {
|
|
141
143
|
__typename?: 'ActionsActionTypeInput';
|
|
142
|
-
aiPrompt?: Maybe<Scalars['String']['output']>;
|
|
143
|
-
aiPromptAdditional?: Maybe<Scalars['String']['output']>;
|
|
144
144
|
default?: Maybe<Scalars['JSON']['output']>;
|
|
145
|
-
description
|
|
145
|
+
description?: Maybe<ActionsDescription>;
|
|
146
146
|
pattern?: Maybe<Scalars['String']['output']>;
|
|
147
147
|
required: Scalars['Boolean']['output'];
|
|
148
148
|
type: Scalars['String']['output'];
|
|
@@ -154,7 +154,7 @@ export declare type ActionsActionTypeInputTuple = {
|
|
|
154
154
|
};
|
|
155
155
|
export declare type ActionsActionTypeOutput = {
|
|
156
156
|
__typename?: 'ActionsActionTypeOutput';
|
|
157
|
-
description
|
|
157
|
+
description?: Maybe<Scalars['String']['output']>;
|
|
158
158
|
nullable: Scalars['Boolean']['output'];
|
|
159
159
|
type: Scalars['String']['output'];
|
|
160
160
|
};
|
|
@@ -167,10 +167,10 @@ export declare type ActionsActionableApp = {
|
|
|
167
167
|
__typename?: 'ActionsActionableApp';
|
|
168
168
|
actions?: Maybe<Array<Maybe<ActionsAction>>>;
|
|
169
169
|
appDefinitionId?: Maybe<Scalars['String']['output']>;
|
|
170
|
-
appId
|
|
170
|
+
appId?: Maybe<Scalars['String']['output']>;
|
|
171
171
|
integrationKey?: Maybe<Scalars['String']['output']>;
|
|
172
172
|
name: Scalars['String']['output'];
|
|
173
|
-
oauthClientId
|
|
173
|
+
oauthClientId?: Maybe<Scalars['String']['output']>;
|
|
174
174
|
};
|
|
175
175
|
export declare type ActionsActionableAppConnection = {
|
|
176
176
|
__typename?: 'ActionsActionableAppConnection';
|
|
@@ -192,6 +192,11 @@ export declare enum ActionsAuthType {
|
|
|
192
192
|
ThreeLegged = "THREE_LEGGED",
|
|
193
193
|
TwoLegged = "TWO_LEGGED"
|
|
194
194
|
}
|
|
195
|
+
export declare type ActionsDescription = {
|
|
196
|
+
__typename?: 'ActionsDescription';
|
|
197
|
+
ai?: Maybe<Scalars['String']['output']>;
|
|
198
|
+
default: Scalars['String']['output'];
|
|
199
|
+
};
|
|
195
200
|
export declare type ActionsExecuteActionFilter = {
|
|
196
201
|
integrationKey?: InputMaybe<Scalars['String']['input']>;
|
|
197
202
|
oauthClientId?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -199,7 +204,6 @@ export declare type ActionsExecuteActionFilter = {
|
|
|
199
204
|
};
|
|
200
205
|
export declare type ActionsExecuteActionInput = {
|
|
201
206
|
inputs?: InputMaybe<Scalars['JSON']['input']>;
|
|
202
|
-
targetUrl?: InputMaybe<Scalars['String']['input']>;
|
|
203
207
|
};
|
|
204
208
|
export declare type ActionsExecuteResponse = {
|
|
205
209
|
__typename?: 'ActionsExecuteResponse';
|
|
@@ -432,7 +436,7 @@ export declare type ActivityObject = {
|
|
|
432
436
|
subProduct?: Maybe<Scalars['String']['output']>;
|
|
433
437
|
type: Scalars['String']['output'];
|
|
434
438
|
};
|
|
435
|
-
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;
|
|
436
440
|
export declare enum ActivityObjectType {
|
|
437
441
|
Blogpost = "BLOGPOST",
|
|
438
442
|
Comment = "COMMENT",
|
|
@@ -449,8 +453,10 @@ export declare enum ActivityObjectType {
|
|
|
449
453
|
}
|
|
450
454
|
export declare type ActivityPageInfo = {
|
|
451
455
|
__typename?: 'ActivityPageInfo';
|
|
456
|
+
endCursor?: Maybe<Scalars['String']['output']>;
|
|
452
457
|
hasNextPage: Scalars['Boolean']['output'];
|
|
453
458
|
hasPreviousPage: Scalars['Boolean']['output'];
|
|
459
|
+
startCursor?: Maybe<Scalars['String']['output']>;
|
|
454
460
|
};
|
|
455
461
|
export declare enum ActivityProduct {
|
|
456
462
|
Confluence = "CONFLUENCE",
|
|
@@ -770,6 +776,19 @@ export declare type AdminWorkspacesMeta = {
|
|
|
770
776
|
startIndex?: Maybe<Scalars['Int']['output']>;
|
|
771
777
|
total?: Maybe<Scalars['Int']['output']>;
|
|
772
778
|
};
|
|
779
|
+
export declare enum AlertEventStatus {
|
|
780
|
+
Acknowledged = "ACKNOWLEDGED",
|
|
781
|
+
Closed = "CLOSED",
|
|
782
|
+
Opened = "OPENED",
|
|
783
|
+
Snoozed = "SNOOZED"
|
|
784
|
+
}
|
|
785
|
+
export declare enum AlertPriority {
|
|
786
|
+
P1 = "P1",
|
|
787
|
+
P2 = "P2",
|
|
788
|
+
P3 = "P3",
|
|
789
|
+
P4 = "P4",
|
|
790
|
+
P5 = "P5"
|
|
791
|
+
}
|
|
773
792
|
export declare enum ApiContext {
|
|
774
793
|
Devops = "DEVOPS"
|
|
775
794
|
}
|
|
@@ -796,6 +815,7 @@ export declare enum ApiGroup {
|
|
|
796
815
|
Forge = "FORGE",
|
|
797
816
|
Help = "HELP",
|
|
798
817
|
Identity = "IDENTITY",
|
|
818
|
+
InsightsXperienceService = "INSIGHTS_XPERIENCE_SERVICE",
|
|
799
819
|
Jira = "JIRA",
|
|
800
820
|
Papi = "PAPI",
|
|
801
821
|
Polaris = "POLARIS",
|
|
@@ -1644,7 +1664,9 @@ export declare type AquaOutgoingEmailLogItem = {
|
|
|
1644
1664
|
__typename?: 'AquaOutgoingEmailLogItem';
|
|
1645
1665
|
actionTimestamp: Scalars['DateTime']['output'];
|
|
1646
1666
|
author?: Maybe<User>;
|
|
1667
|
+
deliveryType?: Maybe<Scalars['String']['output']>;
|
|
1647
1668
|
issueContext?: Maybe<AquaIssueContext>;
|
|
1669
|
+
notificationActionSubType?: Maybe<Scalars['String']['output']>;
|
|
1648
1670
|
notificationActionType?: Maybe<Scalars['String']['output']>;
|
|
1649
1671
|
notificationDetails?: Maybe<AquaNotificationDetails>;
|
|
1650
1672
|
notificationType?: Maybe<Scalars['String']['output']>;
|
|
@@ -1665,6 +1687,7 @@ export declare type AquaOutgoingEmailLogsQueryApiGetNotificationLogsArgs = {
|
|
|
1665
1687
|
notificationActionType?: InputMaybe<Scalars['String']['input']>;
|
|
1666
1688
|
notificationType?: InputMaybe<Scalars['String']['input']>;
|
|
1667
1689
|
projectId?: InputMaybe<Scalars['Long']['input']>;
|
|
1690
|
+
recipientId?: InputMaybe<Scalars['String']['input']>;
|
|
1668
1691
|
toTimestamp?: InputMaybe<Scalars['DateTime']['input']>;
|
|
1669
1692
|
};
|
|
1670
1693
|
export declare type AquaOutgoingEmailLogsQueryResult = AquaOutgoingEmailLog | QueryError;
|
|
@@ -3119,10 +3142,22 @@ export declare type CompassAlertEvent = CompassEvent & {
|
|
|
3119
3142
|
};
|
|
3120
3143
|
export declare type CompassAlertEventProperties = {
|
|
3121
3144
|
__typename?: 'CompassAlertEventProperties';
|
|
3145
|
+
acknowledgedAt?: Maybe<Scalars['DateTime']['output']>;
|
|
3146
|
+
closedAt?: Maybe<Scalars['DateTime']['output']>;
|
|
3147
|
+
createdAt?: Maybe<Scalars['DateTime']['output']>;
|
|
3122
3148
|
id: Scalars['ID']['output'];
|
|
3149
|
+
priority?: Maybe<Scalars['String']['output']>;
|
|
3150
|
+
snoozedAt?: Maybe<Scalars['DateTime']['output']>;
|
|
3151
|
+
status?: Maybe<Scalars['String']['output']>;
|
|
3123
3152
|
};
|
|
3124
3153
|
export declare type CompassAlertEventPropertiesInput = {
|
|
3154
|
+
acknowledgedAt?: InputMaybe<Scalars['DateTime']['input']>;
|
|
3155
|
+
closedAt?: InputMaybe<Scalars['DateTime']['input']>;
|
|
3156
|
+
createdAt?: InputMaybe<Scalars['DateTime']['input']>;
|
|
3125
3157
|
id: Scalars['ID']['input'];
|
|
3158
|
+
priority?: InputMaybe<AlertPriority>;
|
|
3159
|
+
snoozedAt?: InputMaybe<Scalars['DateTime']['input']>;
|
|
3160
|
+
status?: InputMaybe<AlertEventStatus>;
|
|
3126
3161
|
};
|
|
3127
3162
|
export declare type CompassAnnouncement = {
|
|
3128
3163
|
__typename?: 'CompassAnnouncement';
|
|
@@ -3290,6 +3325,7 @@ export declare type CompassCatalogMutationApi = {
|
|
|
3290
3325
|
updateComponentScorecardJiraIssue?: Maybe<CompassUpdateComponentScorecardJiraIssuePayload>;
|
|
3291
3326
|
updateComponentType?: Maybe<UpdateCompassComponentTypePayload>;
|
|
3292
3327
|
updateCustomFieldDefinition?: Maybe<CompassUpdateCustomFieldDefinitionPayload>;
|
|
3328
|
+
updateDocument?: Maybe<CompassUpdateDocumentPayload>;
|
|
3293
3329
|
updateMetricDefinition?: Maybe<CompassUpdateMetricDefinitionPayload>;
|
|
3294
3330
|
updateScorecard?: Maybe<UpdateCompassScorecardPayload>;
|
|
3295
3331
|
updateTeamCheckin?: Maybe<CompassUpdateTeamCheckinPayload>;
|
|
@@ -3474,6 +3510,9 @@ export declare type CompassCatalogMutationApiUpdateComponentTypeArgs = {
|
|
|
3474
3510
|
export declare type CompassCatalogMutationApiUpdateCustomFieldDefinitionArgs = {
|
|
3475
3511
|
input: CompassUpdateCustomFieldDefinitionInput;
|
|
3476
3512
|
};
|
|
3513
|
+
export declare type CompassCatalogMutationApiUpdateDocumentArgs = {
|
|
3514
|
+
input: CompassUpdateDocumentInput;
|
|
3515
|
+
};
|
|
3477
3516
|
export declare type CompassCatalogMutationApiUpdateMetricDefinitionArgs = {
|
|
3478
3517
|
input: CompassUpdateMetricDefinitionInput;
|
|
3479
3518
|
};
|
|
@@ -3492,17 +3531,20 @@ export declare type CompassCatalogQueryApi = {
|
|
|
3492
3531
|
applicationManagedComponents?: Maybe<CompassApplicationManagedComponentsResult>;
|
|
3493
3532
|
assistantAnswer?: Maybe<CompassAssistantAnswer>;
|
|
3494
3533
|
attentionItems?: Maybe<CompassAttentionItemQueryResult>;
|
|
3534
|
+
attentionItemsConnection?: Maybe<CompassAttentionItemConnection>;
|
|
3495
3535
|
component?: Maybe<CompassComponentResult>;
|
|
3496
3536
|
componentByExternalAlias?: Maybe<CompassComponentResult>;
|
|
3497
3537
|
componentScorecardRelationship?: Maybe<CompassComponentScorecardRelationshipResult>;
|
|
3498
3538
|
componentType?: Maybe<CompassComponentTypeResult>;
|
|
3499
3539
|
componentTypes?: Maybe<CompassComponentTypesQueryResult>;
|
|
3540
|
+
components?: Maybe<Array<CompassComponent>>;
|
|
3500
3541
|
customFieldDefinition?: Maybe<CompassCustomFieldDefinitionResult>;
|
|
3501
3542
|
customFieldDefinitions?: Maybe<CompassCustomFieldDefinitionsResult>;
|
|
3502
3543
|
documentationCategories?: Maybe<CompassDocumentationCategoriesConnection>;
|
|
3544
|
+
documents?: Maybe<CompassDocumentConnection>;
|
|
3503
3545
|
eventSource?: Maybe<CompassEventSourceResult>;
|
|
3504
3546
|
fieldDefinitionsByComponentType?: Maybe<CompassFieldDefinitionsResult>;
|
|
3505
|
-
|
|
3547
|
+
filteredComponentsCount?: Maybe<CompassFilteredComponentsCountResult>;
|
|
3506
3548
|
incomingWebhooks?: Maybe<CompassIncomingWebhooksConnection>;
|
|
3507
3549
|
metricDefinition?: Maybe<CompassMetricDefinitionResult>;
|
|
3508
3550
|
metricDefinitions?: Maybe<CompassMetricDefinitionsQueryResult>;
|
|
@@ -3527,6 +3569,11 @@ export declare type CompassCatalogQueryApiAssistantAnswerArgs = {
|
|
|
3527
3569
|
export declare type CompassCatalogQueryApiAttentionItemsArgs = {
|
|
3528
3570
|
query: CompassAttentionItemQuery;
|
|
3529
3571
|
};
|
|
3572
|
+
export declare type CompassCatalogQueryApiAttentionItemsConnectionArgs = {
|
|
3573
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
3574
|
+
cloudId: Scalars['ID']['input'];
|
|
3575
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
3576
|
+
};
|
|
3530
3577
|
export declare type CompassCatalogQueryApiComponentArgs = {
|
|
3531
3578
|
id: Scalars['ID']['input'];
|
|
3532
3579
|
};
|
|
@@ -3548,6 +3595,9 @@ export declare type CompassCatalogQueryApiComponentTypesArgs = {
|
|
|
3548
3595
|
cloudId: Scalars['ID']['input'];
|
|
3549
3596
|
query?: InputMaybe<CompassComponentTypeQueryInput>;
|
|
3550
3597
|
};
|
|
3598
|
+
export declare type CompassCatalogQueryApiComponentsArgs = {
|
|
3599
|
+
ids: Array<Scalars['ID']['input']>;
|
|
3600
|
+
};
|
|
3551
3601
|
export declare type CompassCatalogQueryApiCustomFieldDefinitionArgs = {
|
|
3552
3602
|
query: CompassCustomFieldDefinitionQuery;
|
|
3553
3603
|
};
|
|
@@ -3559,6 +3609,11 @@ export declare type CompassCatalogQueryApiDocumentationCategoriesArgs = {
|
|
|
3559
3609
|
cloudId: Scalars['ID']['input'];
|
|
3560
3610
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
3561
3611
|
};
|
|
3612
|
+
export declare type CompassCatalogQueryApiDocumentsArgs = {
|
|
3613
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
3614
|
+
componentId: Scalars['ID']['input'];
|
|
3615
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
3616
|
+
};
|
|
3562
3617
|
export declare type CompassCatalogQueryApiEventSourceArgs = {
|
|
3563
3618
|
cloudId: Scalars['ID']['input'];
|
|
3564
3619
|
eventType: CompassEventType;
|
|
@@ -3568,10 +3623,9 @@ export declare type CompassCatalogQueryApiFieldDefinitionsByComponentTypeArgs =
|
|
|
3568
3623
|
cloudId: Scalars['ID']['input'];
|
|
3569
3624
|
input: CompassComponentType;
|
|
3570
3625
|
};
|
|
3571
|
-
export declare type
|
|
3572
|
-
|
|
3573
|
-
|
|
3574
|
-
first?: InputMaybe<Scalars['Int']['input']>;
|
|
3626
|
+
export declare type CompassCatalogQueryApiFilteredComponentsCountArgs = {
|
|
3627
|
+
cloudId: Scalars['ID']['input'];
|
|
3628
|
+
query: CompassFilteredComponentsCountQuery;
|
|
3575
3629
|
};
|
|
3576
3630
|
export declare type CompassCatalogQueryApiIncomingWebhooksArgs = {
|
|
3577
3631
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -4024,7 +4078,6 @@ export declare type CompassCreateMetricSourcePayload = Payload & {
|
|
|
4024
4078
|
success: Scalars['Boolean']['output'];
|
|
4025
4079
|
};
|
|
4026
4080
|
export declare type CompassCreatePullRequestEventInput = {
|
|
4027
|
-
cloudId?: InputMaybe<Scalars['String']['input']>;
|
|
4028
4081
|
lastUpdated: Scalars['DateTime']['input'];
|
|
4029
4082
|
pullRequestProperties: CompassPullRequestInputProperties;
|
|
4030
4083
|
};
|
|
@@ -4573,6 +4626,16 @@ export declare enum CompassFieldType {
|
|
|
4573
4626
|
export declare type CompassFieldValueInput = {
|
|
4574
4627
|
enum?: InputMaybe<CompassEnumFieldValueInput>;
|
|
4575
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;
|
|
4576
4639
|
export declare type CompassFlagEvent = CompassEvent & {
|
|
4577
4640
|
__typename?: 'CompassFlagEvent';
|
|
4578
4641
|
description?: Maybe<Scalars['String']['output']>;
|
|
@@ -5148,6 +5211,9 @@ export declare type CompassScorecardAppliedToComponentsFieldFilter = {
|
|
|
5148
5211
|
definition: Scalars['ID']['input'];
|
|
5149
5212
|
in: Array<CompassFieldValueInput>;
|
|
5150
5213
|
};
|
|
5214
|
+
export declare type CompassScorecardAppliedToComponentsLabelsFilter = {
|
|
5215
|
+
in: Array<Scalars['String']['input']>;
|
|
5216
|
+
};
|
|
5151
5217
|
export declare type CompassScorecardAppliedToComponentsOwnerFilter = {
|
|
5152
5218
|
in: Array<Scalars['ID']['input']>;
|
|
5153
5219
|
};
|
|
@@ -5721,6 +5787,18 @@ export declare type CompassUpdateCustomUserFieldDefinitionInput = {
|
|
|
5721
5787
|
id: Scalars['ID']['input'];
|
|
5722
5788
|
name?: InputMaybe<Scalars['String']['input']>;
|
|
5723
5789
|
};
|
|
5790
|
+
export declare type CompassUpdateDocumentInput = {
|
|
5791
|
+
documentCategoryId?: InputMaybe<Scalars['ID']['input']>;
|
|
5792
|
+
id: Scalars['ID']['input'];
|
|
5793
|
+
title?: InputMaybe<Scalars['String']['input']>;
|
|
5794
|
+
url?: InputMaybe<Scalars['URL']['input']>;
|
|
5795
|
+
};
|
|
5796
|
+
export declare type CompassUpdateDocumentPayload = Payload & {
|
|
5797
|
+
__typename?: 'CompassUpdateDocumentPayload';
|
|
5798
|
+
documentDetails?: Maybe<CompassDocument>;
|
|
5799
|
+
errors?: Maybe<Array<MutationError>>;
|
|
5800
|
+
success: Scalars['Boolean']['output'];
|
|
5801
|
+
};
|
|
5724
5802
|
export declare type CompassUpdateHasCustomBooleanFieldScorecardCriteriaInput = {
|
|
5725
5803
|
booleanComparator?: InputMaybe<CompassCriteriaBooleanComparatorOptions>;
|
|
5726
5804
|
booleanComparatorValue?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -6500,6 +6578,11 @@ export declare type ConfluencePageViewerSummary = {
|
|
|
6500
6578
|
lastContribution?: Maybe<ConfluenceContribution>;
|
|
6501
6579
|
lastSeenAt?: Maybe<Scalars['DateTime']['output']>;
|
|
6502
6580
|
};
|
|
6581
|
+
export declare type ConfluencePublicLinkPage = {
|
|
6582
|
+
__typename?: 'ConfluencePublicLinkPage';
|
|
6583
|
+
body?: Maybe<ConfluenceBodies>;
|
|
6584
|
+
type?: Maybe<ConfluenceContentType>;
|
|
6585
|
+
};
|
|
6503
6586
|
export declare type ConfluencePublishBlogPostInput = {
|
|
6504
6587
|
id: Scalars['ID']['input'];
|
|
6505
6588
|
publishTitle?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -6549,6 +6632,7 @@ export declare type ConfluenceQueryApi = {
|
|
|
6549
6632
|
longTask?: Maybe<ConfluenceLongTask>;
|
|
6550
6633
|
page?: Maybe<ConfluencePage>;
|
|
6551
6634
|
pages?: Maybe<Array<Maybe<ConfluencePage>>>;
|
|
6635
|
+
publicLink?: Maybe<ConfluencePublicLinkPage>;
|
|
6552
6636
|
space?: Maybe<ConfluenceSpace>;
|
|
6553
6637
|
spaces?: Maybe<Array<Maybe<ConfluenceSpace>>>;
|
|
6554
6638
|
validateSpaceKey?: Maybe<ConfluenceValidateSpaceKeyResponse>;
|
|
@@ -6591,6 +6675,9 @@ export declare type ConfluenceQueryApiPageArgs = {
|
|
|
6591
6675
|
export declare type ConfluenceQueryApiPagesArgs = {
|
|
6592
6676
|
ids: Array<InputMaybe<Scalars['ID']['input']>>;
|
|
6593
6677
|
};
|
|
6678
|
+
export declare type ConfluenceQueryApiPublicLinkArgs = {
|
|
6679
|
+
id: Scalars['ID']['input'];
|
|
6680
|
+
};
|
|
6594
6681
|
export declare type ConfluenceQueryApiSpaceArgs = {
|
|
6595
6682
|
id: Scalars['ID']['input'];
|
|
6596
6683
|
};
|
|
@@ -8563,6 +8650,11 @@ export declare type CustomerServiceCustomDetailValue = Node & {
|
|
|
8563
8650
|
value?: Maybe<Scalars['String']['output']>;
|
|
8564
8651
|
values?: Maybe<Array<Scalars['String']['output']>>;
|
|
8565
8652
|
};
|
|
8653
|
+
export declare type CustomerServiceCustomDetailValues = {
|
|
8654
|
+
__typename?: 'CustomerServiceCustomDetailValues';
|
|
8655
|
+
results: Array<CustomerServiceCustomDetailValue>;
|
|
8656
|
+
};
|
|
8657
|
+
export declare type CustomerServiceCustomDetailValuesQueryResult = CustomerServiceCustomDetailValues | QueryError;
|
|
8566
8658
|
export declare type CustomerServiceCustomDetails = {
|
|
8567
8659
|
__typename?: 'CustomerServiceCustomDetails';
|
|
8568
8660
|
customDetails: Array<CustomerServiceCustomDetail>;
|
|
@@ -8578,6 +8670,7 @@ export declare type CustomerServiceEntitledEntity = CustomerServiceIndividual |
|
|
|
8578
8670
|
export declare type CustomerServiceEntitlement = Node & {
|
|
8579
8671
|
__typename?: 'CustomerServiceEntitlement';
|
|
8580
8672
|
customDetails: Array<CustomerServiceCustomDetailValue>;
|
|
8673
|
+
details: CustomerServiceCustomDetailValuesQueryResult;
|
|
8581
8674
|
entity: CustomerServiceEntitledEntity;
|
|
8582
8675
|
id: Scalars['ID']['output'];
|
|
8583
8676
|
product: CustomerServiceProduct;
|
|
@@ -8624,6 +8717,7 @@ export declare type CustomerServiceFilterInput = {
|
|
|
8624
8717
|
export declare type CustomerServiceIndividual = Node & {
|
|
8625
8718
|
__typename?: 'CustomerServiceIndividual';
|
|
8626
8719
|
attributes: Array<CustomerServiceAttributeValue>;
|
|
8720
|
+
details: CustomerServiceCustomDetailValuesQueryResult;
|
|
8627
8721
|
entitlementList: Array<CustomerServiceEntitlement>;
|
|
8628
8722
|
entitlements?: Maybe<CustomerServiceEntitlementConnection>;
|
|
8629
8723
|
id: Scalars['ID']['output'];
|
|
@@ -8900,6 +8994,7 @@ export declare type CustomerServiceNotesQueryResult = CustomerServiceNotes | Que
|
|
|
8900
8994
|
export declare type CustomerServiceOrganization = Node & {
|
|
8901
8995
|
__typename?: 'CustomerServiceOrganization';
|
|
8902
8996
|
attributes: Array<CustomerServiceAttributeValue>;
|
|
8997
|
+
details: CustomerServiceCustomDetailValuesQueryResult;
|
|
8903
8998
|
entitlementList: Array<CustomerServiceEntitlement>;
|
|
8904
8999
|
entitlements?: Maybe<CustomerServiceEntitlementConnection>;
|
|
8905
9000
|
id: Scalars['ID']['output'];
|
|
@@ -9677,7 +9772,6 @@ export declare type DevOpsDesignProvider = DevOpsDataProvider & {
|
|
|
9677
9772
|
appInstallationId?: Maybe<Scalars['ID']['output']>;
|
|
9678
9773
|
configState?: Maybe<JiraAppConfigState>;
|
|
9679
9774
|
documentationUrl?: Maybe<Scalars['URL']['output']>;
|
|
9680
|
-
grant3LOUrl?: Maybe<Scalars['String']['output']>;
|
|
9681
9775
|
handledDomainName?: Maybe<Scalars['String']['output']>;
|
|
9682
9776
|
homeUrl?: Maybe<Scalars['URL']['output']>;
|
|
9683
9777
|
id: Scalars['ID']['output'];
|
|
@@ -9771,7 +9865,6 @@ export declare type DevOpsDocumentationProvider = DevOpsDataProvider & {
|
|
|
9771
9865
|
appInstallationId?: Maybe<Scalars['ID']['output']>;
|
|
9772
9866
|
configState?: Maybe<JiraAppConfigState>;
|
|
9773
9867
|
documentationUrl?: Maybe<Scalars['URL']['output']>;
|
|
9774
|
-
grant3LOUrl?: Maybe<Scalars['String']['output']>;
|
|
9775
9868
|
homeUrl?: Maybe<Scalars['URL']['output']>;
|
|
9776
9869
|
id: Scalars['ID']['output'];
|
|
9777
9870
|
linkedContainers?: Maybe<AriGraphRelationshipConnection>;
|
|
@@ -10083,7 +10176,6 @@ export declare type DevOpsOperationsComponentDetails = {
|
|
|
10083
10176
|
id: Scalars['ID']['output'];
|
|
10084
10177
|
lastUpdated?: Maybe<Scalars['DateTime']['output']>;
|
|
10085
10178
|
name?: Maybe<Scalars['String']['output']>;
|
|
10086
|
-
providerAri?: Maybe<Scalars['String']['output']>;
|
|
10087
10179
|
providerComponentId?: Maybe<Scalars['String']['output']>;
|
|
10088
10180
|
providerId?: Maybe<Scalars['String']['output']>;
|
|
10089
10181
|
tier?: Maybe<DevOpsComponentTier>;
|
|
@@ -10660,10 +10752,8 @@ export declare type DevOpsSummarisedFeatureFlags = {
|
|
|
10660
10752
|
export declare type DevOpsSupportedActions = {
|
|
10661
10753
|
__typename?: 'DevOpsSupportedActions';
|
|
10662
10754
|
associate?: Maybe<Scalars['Boolean']['output']>;
|
|
10663
|
-
check3LO?: Maybe<Scalars['Boolean']['output']>;
|
|
10664
10755
|
checkAuth?: Maybe<Scalars['Boolean']['output']>;
|
|
10665
10756
|
disassociate?: Maybe<Scalars['Boolean']['output']>;
|
|
10666
|
-
grant3LO?: Maybe<Scalars['Boolean']['output']>;
|
|
10667
10757
|
listContainers?: Maybe<Scalars['Boolean']['output']>;
|
|
10668
10758
|
searchConnectedWorkspaces?: Maybe<Scalars['Boolean']['output']>;
|
|
10669
10759
|
searchContainers?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -16080,6 +16170,8 @@ export declare type GraphStore = {
|
|
|
16080
16170
|
projectHasIssueInverse?: Maybe<GraphStoreSimplifiedProjectHasIssueInverseConnection>;
|
|
16081
16171
|
projectHasIssueInverseRelationship?: Maybe<GraphStoreFullProjectHasIssueConnection>;
|
|
16082
16172
|
projectHasIssueRelationship?: Maybe<GraphStoreFullProjectHasIssueConnection>;
|
|
16173
|
+
projectHasRelatedWorkWithProject?: Maybe<GraphStoreSimplifiedProjectHasRelatedWorkWithProjectConnection>;
|
|
16174
|
+
projectHasRelatedWorkWithProjectInverse?: Maybe<GraphStoreSimplifiedProjectHasRelatedWorkWithProjectInverseConnection>;
|
|
16083
16175
|
projectHasSharedVersionWith?: Maybe<GraphStoreSimplifiedProjectHasSharedVersionWithConnection>;
|
|
16084
16176
|
projectHasSharedVersionWithInverse?: Maybe<GraphStoreSimplifiedProjectHasSharedVersionWithInverseConnection>;
|
|
16085
16177
|
projectHasSharedVersionWithInverseRelationship?: Maybe<GraphStoreFullProjectHasSharedVersionWithConnection>;
|
|
@@ -17392,6 +17484,16 @@ export declare type GraphStoreProjectHasIssueRelationshipArgs = {
|
|
|
17392
17484
|
id: Scalars['ID']['input'];
|
|
17393
17485
|
sort?: InputMaybe<GraphStoreProjectHasIssueSortInput>;
|
|
17394
17486
|
};
|
|
17487
|
+
export declare type GraphStoreProjectHasRelatedWorkWithProjectArgs = {
|
|
17488
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
17489
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
17490
|
+
id: Scalars['ID']['input'];
|
|
17491
|
+
};
|
|
17492
|
+
export declare type GraphStoreProjectHasRelatedWorkWithProjectInverseArgs = {
|
|
17493
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
17494
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
17495
|
+
id: Scalars['ID']['input'];
|
|
17496
|
+
};
|
|
17395
17497
|
export declare type GraphStoreProjectHasSharedVersionWithArgs = {
|
|
17396
17498
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
17397
17499
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
@@ -18364,6 +18466,46 @@ export declare type GraphStoreBatchTestPerfhammerRelationshipStartUnion = JiraIs
|
|
|
18364
18466
|
export declare type GraphStoreBooleanFilterInput = {
|
|
18365
18467
|
is?: InputMaybe<Scalars['Boolean']['input']>;
|
|
18366
18468
|
};
|
|
18469
|
+
export declare type GraphStoreCreateComponentImpactedByIncidentInput = {
|
|
18470
|
+
relationships: Array<GraphStoreCreateComponentImpactedByIncidentRelationshipInput>;
|
|
18471
|
+
};
|
|
18472
|
+
export declare enum GraphStoreCreateComponentImpactedByIncidentJiraIncidentPriorityInput {
|
|
18473
|
+
NotSet = "NOT_SET",
|
|
18474
|
+
P1 = "P1",
|
|
18475
|
+
P2 = "P2",
|
|
18476
|
+
P3 = "P3",
|
|
18477
|
+
P4 = "P4",
|
|
18478
|
+
P5 = "P5",
|
|
18479
|
+
Pending = "PENDING",
|
|
18480
|
+
Unknown = "UNKNOWN"
|
|
18481
|
+
}
|
|
18482
|
+
export declare enum GraphStoreCreateComponentImpactedByIncidentJiraIncidentStatusInput {
|
|
18483
|
+
Done = "DONE",
|
|
18484
|
+
Indeterminate = "INDETERMINATE",
|
|
18485
|
+
New = "NEW",
|
|
18486
|
+
NotSet = "NOT_SET",
|
|
18487
|
+
Undefined = "UNDEFINED"
|
|
18488
|
+
}
|
|
18489
|
+
export declare type GraphStoreCreateComponentImpactedByIncidentPayload = Payload & {
|
|
18490
|
+
__typename?: 'GraphStoreCreateComponentImpactedByIncidentPayload';
|
|
18491
|
+
errors?: Maybe<Array<MutationError>>;
|
|
18492
|
+
success: Scalars['Boolean']['output'];
|
|
18493
|
+
};
|
|
18494
|
+
export declare type GraphStoreCreateComponentImpactedByIncidentRelationshipInput = {
|
|
18495
|
+
from: Scalars['ID']['input'];
|
|
18496
|
+
objectMetadata?: InputMaybe<GraphStoreCreateComponentImpactedByIncidentRelationshipObjectMetadataInput>;
|
|
18497
|
+
sequenceNumber?: InputMaybe<Scalars['Long']['input']>;
|
|
18498
|
+
to: Scalars['ID']['input'];
|
|
18499
|
+
updatedAt?: InputMaybe<Scalars['DateTime']['input']>;
|
|
18500
|
+
};
|
|
18501
|
+
export declare type GraphStoreCreateComponentImpactedByIncidentRelationshipObjectMetadataInput = {
|
|
18502
|
+
affectedServiceAris?: InputMaybe<Scalars['String']['input']>;
|
|
18503
|
+
assigneeAri?: InputMaybe<Scalars['String']['input']>;
|
|
18504
|
+
majorIncident?: InputMaybe<Scalars['Boolean']['input']>;
|
|
18505
|
+
priority?: InputMaybe<GraphStoreCreateComponentImpactedByIncidentJiraIncidentPriorityInput>;
|
|
18506
|
+
reporterAri?: InputMaybe<Scalars['String']['input']>;
|
|
18507
|
+
status?: InputMaybe<GraphStoreCreateComponentImpactedByIncidentJiraIncidentStatusInput>;
|
|
18508
|
+
};
|
|
18367
18509
|
export declare type GraphStoreCreateIncidentAssociatedPostIncidentReviewLinkInput = {
|
|
18368
18510
|
relationships: Array<GraphStoreCreateIncidentAssociatedPostIncidentReviewLinkRelationshipInput>;
|
|
18369
18511
|
};
|
|
@@ -18518,6 +18660,20 @@ export declare type GraphStoreCreateProjectDocumentationSpaceRelationshipInput =
|
|
|
18518
18660
|
to: Scalars['ID']['input'];
|
|
18519
18661
|
updatedAt?: InputMaybe<Scalars['DateTime']['input']>;
|
|
18520
18662
|
};
|
|
18663
|
+
export declare type GraphStoreCreateProjectHasRelatedWorkWithProjectInput = {
|
|
18664
|
+
relationships: Array<GraphStoreCreateProjectHasRelatedWorkWithProjectRelationshipInput>;
|
|
18665
|
+
};
|
|
18666
|
+
export declare type GraphStoreCreateProjectHasRelatedWorkWithProjectPayload = Payload & {
|
|
18667
|
+
__typename?: 'GraphStoreCreateProjectHasRelatedWorkWithProjectPayload';
|
|
18668
|
+
errors?: Maybe<Array<MutationError>>;
|
|
18669
|
+
success: Scalars['Boolean']['output'];
|
|
18670
|
+
};
|
|
18671
|
+
export declare type GraphStoreCreateProjectHasRelatedWorkWithProjectRelationshipInput = {
|
|
18672
|
+
from: Scalars['ID']['input'];
|
|
18673
|
+
sequenceNumber?: InputMaybe<Scalars['Long']['input']>;
|
|
18674
|
+
to: Scalars['ID']['input'];
|
|
18675
|
+
updatedAt?: InputMaybe<Scalars['DateTime']['input']>;
|
|
18676
|
+
};
|
|
18521
18677
|
export declare type GraphStoreCreateProjectHasSharedVersionWithInput = {
|
|
18522
18678
|
relationships: Array<GraphStoreCreateProjectHasSharedVersionWithRelationshipInput>;
|
|
18523
18679
|
};
|
|
@@ -18658,6 +18814,18 @@ export declare type GraphStoreDateFilterInput = {
|
|
|
18658
18814
|
after?: InputMaybe<Scalars['DateTime']['input']>;
|
|
18659
18815
|
before?: InputMaybe<Scalars['DateTime']['input']>;
|
|
18660
18816
|
};
|
|
18817
|
+
export declare type GraphStoreDeleteComponentImpactedByIncidentInput = {
|
|
18818
|
+
relationships: Array<GraphStoreDeleteComponentImpactedByIncidentRelationshipInput>;
|
|
18819
|
+
};
|
|
18820
|
+
export declare type GraphStoreDeleteComponentImpactedByIncidentPayload = Payload & {
|
|
18821
|
+
__typename?: 'GraphStoreDeleteComponentImpactedByIncidentPayload';
|
|
18822
|
+
errors?: Maybe<Array<MutationError>>;
|
|
18823
|
+
success: Scalars['Boolean']['output'];
|
|
18824
|
+
};
|
|
18825
|
+
export declare type GraphStoreDeleteComponentImpactedByIncidentRelationshipInput = {
|
|
18826
|
+
from: Scalars['ID']['input'];
|
|
18827
|
+
to: Scalars['ID']['input'];
|
|
18828
|
+
};
|
|
18661
18829
|
export declare type GraphStoreDeleteIncidentAssociatedPostIncidentReviewLinkInput = {
|
|
18662
18830
|
relationships: Array<GraphStoreDeleteIncidentAssociatedPostIncidentReviewLinkRelationshipInput>;
|
|
18663
18831
|
};
|
|
@@ -18790,6 +18958,18 @@ export declare type GraphStoreDeleteProjectDocumentationSpaceRelationshipInput =
|
|
|
18790
18958
|
from: Scalars['ID']['input'];
|
|
18791
18959
|
to: Scalars['ID']['input'];
|
|
18792
18960
|
};
|
|
18961
|
+
export declare type GraphStoreDeleteProjectHasRelatedWorkWithProjectInput = {
|
|
18962
|
+
relationships: Array<GraphStoreDeleteProjectHasRelatedWorkWithProjectRelationshipInput>;
|
|
18963
|
+
};
|
|
18964
|
+
export declare type GraphStoreDeleteProjectHasRelatedWorkWithProjectPayload = Payload & {
|
|
18965
|
+
__typename?: 'GraphStoreDeleteProjectHasRelatedWorkWithProjectPayload';
|
|
18966
|
+
errors?: Maybe<Array<MutationError>>;
|
|
18967
|
+
success: Scalars['Boolean']['output'];
|
|
18968
|
+
};
|
|
18969
|
+
export declare type GraphStoreDeleteProjectHasRelatedWorkWithProjectRelationshipInput = {
|
|
18970
|
+
from: Scalars['ID']['input'];
|
|
18971
|
+
to: Scalars['ID']['input'];
|
|
18972
|
+
};
|
|
18793
18973
|
export declare type GraphStoreDeleteProjectHasSharedVersionWithInput = {
|
|
18794
18974
|
relationships: Array<GraphStoreDeleteProjectHasSharedVersionWithRelationshipInput>;
|
|
18795
18975
|
};
|
|
@@ -22361,6 +22541,7 @@ export declare type GraphStoreLongFilterInput = {
|
|
|
22361
22541
|
};
|
|
22362
22542
|
export declare type GraphStoreMutation = {
|
|
22363
22543
|
__typename?: 'GraphStoreMutation';
|
|
22544
|
+
createComponentImpactedByIncident?: Maybe<GraphStoreCreateComponentImpactedByIncidentPayload>;
|
|
22364
22545
|
createIncidentAssociatedPostIncidentReviewLink?: Maybe<GraphStoreCreateIncidentAssociatedPostIncidentReviewLinkPayload>;
|
|
22365
22546
|
createIncidentHasActionItem?: Maybe<GraphStoreCreateIncidentHasActionItemPayload>;
|
|
22366
22547
|
createIncidentLinkedJswIssue?: Maybe<GraphStoreCreateIncidentLinkedJswIssuePayload>;
|
|
@@ -22372,6 +22553,7 @@ export declare type GraphStoreMutation = {
|
|
|
22372
22553
|
createProjectDocumentationEntity?: Maybe<GraphStoreCreateProjectDocumentationEntityPayload>;
|
|
22373
22554
|
createProjectDocumentationPage?: Maybe<GraphStoreCreateProjectDocumentationPagePayload>;
|
|
22374
22555
|
createProjectDocumentationSpace?: Maybe<GraphStoreCreateProjectDocumentationSpacePayload>;
|
|
22556
|
+
createProjectHasRelatedWorkWithProject?: Maybe<GraphStoreCreateProjectHasRelatedWorkWithProjectPayload>;
|
|
22375
22557
|
createProjectHasSharedVersionWith?: Maybe<GraphStoreCreateProjectHasSharedVersionWithPayload>;
|
|
22376
22558
|
createProjectHasVersion?: Maybe<GraphStoreCreateProjectHasVersionPayload>;
|
|
22377
22559
|
createSprintRetrospectivePage?: Maybe<GraphStoreCreateSprintRetrospectivePagePayload>;
|
|
@@ -22379,6 +22561,7 @@ export declare type GraphStoreMutation = {
|
|
|
22379
22561
|
createTestPerfhammerRelationship?: Maybe<GraphStoreCreateTestPerfhammerRelationshipPayload>;
|
|
22380
22562
|
createVersionUserAssociatedFeatureFlag?: Maybe<GraphStoreCreateVersionUserAssociatedFeatureFlagPayload>;
|
|
22381
22563
|
createVulnerabilityAssociatedIssue?: Maybe<GraphStoreCreateVulnerabilityAssociatedIssuePayload>;
|
|
22564
|
+
deleteComponentImpactedByIncident?: Maybe<GraphStoreDeleteComponentImpactedByIncidentPayload>;
|
|
22382
22565
|
deleteIncidentAssociatedPostIncidentReviewLink?: Maybe<GraphStoreDeleteIncidentAssociatedPostIncidentReviewLinkPayload>;
|
|
22383
22566
|
deleteIncidentHasActionItem?: Maybe<GraphStoreDeleteIncidentHasActionItemPayload>;
|
|
22384
22567
|
deleteIncidentLinkedJswIssue?: Maybe<GraphStoreDeleteIncidentLinkedJswIssuePayload>;
|
|
@@ -22390,6 +22573,7 @@ export declare type GraphStoreMutation = {
|
|
|
22390
22573
|
deleteProjectDocumentationEntity?: Maybe<GraphStoreDeleteProjectDocumentationEntityPayload>;
|
|
22391
22574
|
deleteProjectDocumentationPage?: Maybe<GraphStoreDeleteProjectDocumentationPagePayload>;
|
|
22392
22575
|
deleteProjectDocumentationSpace?: Maybe<GraphStoreDeleteProjectDocumentationSpacePayload>;
|
|
22576
|
+
deleteProjectHasRelatedWorkWithProject?: Maybe<GraphStoreDeleteProjectHasRelatedWorkWithProjectPayload>;
|
|
22393
22577
|
deleteProjectHasSharedVersionWith?: Maybe<GraphStoreDeleteProjectHasSharedVersionWithPayload>;
|
|
22394
22578
|
deleteProjectHasVersion?: Maybe<GraphStoreDeleteProjectHasVersionPayload>;
|
|
22395
22579
|
deleteSprintRetrospectivePage?: Maybe<GraphStoreDeleteSprintRetrospectivePagePayload>;
|
|
@@ -22398,6 +22582,9 @@ export declare type GraphStoreMutation = {
|
|
|
22398
22582
|
deleteVersionUserAssociatedFeatureFlag?: Maybe<GraphStoreDeleteVersionUserAssociatedFeatureFlagPayload>;
|
|
22399
22583
|
deleteVulnerabilityAssociatedIssue?: Maybe<GraphStoreDeleteVulnerabilityAssociatedIssuePayload>;
|
|
22400
22584
|
};
|
|
22585
|
+
export declare type GraphStoreMutationCreateComponentImpactedByIncidentArgs = {
|
|
22586
|
+
input?: InputMaybe<GraphStoreCreateComponentImpactedByIncidentInput>;
|
|
22587
|
+
};
|
|
22401
22588
|
export declare type GraphStoreMutationCreateIncidentAssociatedPostIncidentReviewLinkArgs = {
|
|
22402
22589
|
input?: InputMaybe<GraphStoreCreateIncidentAssociatedPostIncidentReviewLinkInput>;
|
|
22403
22590
|
};
|
|
@@ -22431,6 +22618,9 @@ export declare type GraphStoreMutationCreateProjectDocumentationPageArgs = {
|
|
|
22431
22618
|
export declare type GraphStoreMutationCreateProjectDocumentationSpaceArgs = {
|
|
22432
22619
|
input?: InputMaybe<GraphStoreCreateProjectDocumentationSpaceInput>;
|
|
22433
22620
|
};
|
|
22621
|
+
export declare type GraphStoreMutationCreateProjectHasRelatedWorkWithProjectArgs = {
|
|
22622
|
+
input?: InputMaybe<GraphStoreCreateProjectHasRelatedWorkWithProjectInput>;
|
|
22623
|
+
};
|
|
22434
22624
|
export declare type GraphStoreMutationCreateProjectHasSharedVersionWithArgs = {
|
|
22435
22625
|
input?: InputMaybe<GraphStoreCreateProjectHasSharedVersionWithInput>;
|
|
22436
22626
|
};
|
|
@@ -22452,6 +22642,9 @@ export declare type GraphStoreMutationCreateVersionUserAssociatedFeatureFlagArgs
|
|
|
22452
22642
|
export declare type GraphStoreMutationCreateVulnerabilityAssociatedIssueArgs = {
|
|
22453
22643
|
input?: InputMaybe<GraphStoreCreateVulnerabilityAssociatedIssueInput>;
|
|
22454
22644
|
};
|
|
22645
|
+
export declare type GraphStoreMutationDeleteComponentImpactedByIncidentArgs = {
|
|
22646
|
+
input?: InputMaybe<GraphStoreDeleteComponentImpactedByIncidentInput>;
|
|
22647
|
+
};
|
|
22455
22648
|
export declare type GraphStoreMutationDeleteIncidentAssociatedPostIncidentReviewLinkArgs = {
|
|
22456
22649
|
input?: InputMaybe<GraphStoreDeleteIncidentAssociatedPostIncidentReviewLinkInput>;
|
|
22457
22650
|
};
|
|
@@ -22485,6 +22678,9 @@ export declare type GraphStoreMutationDeleteProjectDocumentationPageArgs = {
|
|
|
22485
22678
|
export declare type GraphStoreMutationDeleteProjectDocumentationSpaceArgs = {
|
|
22486
22679
|
input?: InputMaybe<GraphStoreDeleteProjectDocumentationSpaceInput>;
|
|
22487
22680
|
};
|
|
22681
|
+
export declare type GraphStoreMutationDeleteProjectHasRelatedWorkWithProjectArgs = {
|
|
22682
|
+
input?: InputMaybe<GraphStoreDeleteProjectHasRelatedWorkWithProjectInput>;
|
|
22683
|
+
};
|
|
22488
22684
|
export declare type GraphStoreMutationDeleteProjectHasSharedVersionWithArgs = {
|
|
22489
22685
|
input?: InputMaybe<GraphStoreDeleteProjectHasSharedVersionWithInput>;
|
|
22490
22686
|
};
|
|
@@ -24328,6 +24524,36 @@ export declare type GraphStoreSimplifiedProjectHasIssueInverseEdge = {
|
|
|
24328
24524
|
};
|
|
24329
24525
|
export declare type GraphStoreSimplifiedProjectHasIssueInverseUnion = JiraProject;
|
|
24330
24526
|
export declare type GraphStoreSimplifiedProjectHasIssueUnion = JiraIssue;
|
|
24527
|
+
export declare type GraphStoreSimplifiedProjectHasRelatedWorkWithProjectConnection = HasPageInfo & HasTotal & {
|
|
24528
|
+
__typename?: 'GraphStoreSimplifiedProjectHasRelatedWorkWithProjectConnection';
|
|
24529
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedProjectHasRelatedWorkWithProjectEdge>>>;
|
|
24530
|
+
isExactCount?: Maybe<Scalars['Boolean']['output']>;
|
|
24531
|
+
pageInfo: PageInfo;
|
|
24532
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
24533
|
+
};
|
|
24534
|
+
export declare type GraphStoreSimplifiedProjectHasRelatedWorkWithProjectEdge = {
|
|
24535
|
+
__typename?: 'GraphStoreSimplifiedProjectHasRelatedWorkWithProjectEdge';
|
|
24536
|
+
createdAt: Scalars['DateTime']['output'];
|
|
24537
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
24538
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
24539
|
+
node?: Maybe<GraphStoreSimplifiedProjectHasRelatedWorkWithProjectUnion>;
|
|
24540
|
+
};
|
|
24541
|
+
export declare type GraphStoreSimplifiedProjectHasRelatedWorkWithProjectInverseConnection = HasPageInfo & HasTotal & {
|
|
24542
|
+
__typename?: 'GraphStoreSimplifiedProjectHasRelatedWorkWithProjectInverseConnection';
|
|
24543
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedProjectHasRelatedWorkWithProjectInverseEdge>>>;
|
|
24544
|
+
isExactCount?: Maybe<Scalars['Boolean']['output']>;
|
|
24545
|
+
pageInfo: PageInfo;
|
|
24546
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
24547
|
+
};
|
|
24548
|
+
export declare type GraphStoreSimplifiedProjectHasRelatedWorkWithProjectInverseEdge = {
|
|
24549
|
+
__typename?: 'GraphStoreSimplifiedProjectHasRelatedWorkWithProjectInverseEdge';
|
|
24550
|
+
createdAt: Scalars['DateTime']['output'];
|
|
24551
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
24552
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
24553
|
+
node?: Maybe<GraphStoreSimplifiedProjectHasRelatedWorkWithProjectInverseUnion>;
|
|
24554
|
+
};
|
|
24555
|
+
export declare type GraphStoreSimplifiedProjectHasRelatedWorkWithProjectInverseUnion = JiraProject;
|
|
24556
|
+
export declare type GraphStoreSimplifiedProjectHasRelatedWorkWithProjectUnion = JiraProject;
|
|
24331
24557
|
export declare type GraphStoreSimplifiedProjectHasSharedVersionWithConnection = HasPageInfo & HasTotal & {
|
|
24332
24558
|
__typename?: 'GraphStoreSimplifiedProjectHasSharedVersionWithConnection';
|
|
24333
24559
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedProjectHasSharedVersionWithEdge>>>;
|
|
@@ -26166,13 +26392,18 @@ export declare type HelpLayoutAnnouncementElementData = {
|
|
|
26166
26392
|
header?: Maybe<Scalars['String']['output']>;
|
|
26167
26393
|
message?: Maybe<Scalars['String']['output']>;
|
|
26168
26394
|
};
|
|
26395
|
+
export declare type HelpLayoutAnnouncementInput = {
|
|
26396
|
+
visualConfig?: InputMaybe<HelpLayoutVisualConfigInput>;
|
|
26397
|
+
};
|
|
26169
26398
|
export declare type HelpLayoutAtomicElement = HelpLayoutAnnouncementElement | HelpLayoutHeadingAtomicElement | HelpLayoutImageAtomicElement | HelpLayoutParagraphAtomicElement | HelpLayoutPortalsListElement | HelpLayoutSearchAtomicElement | HelpLayoutSuggestedRequestFormsListElement | HelpLayoutTopicsListElement;
|
|
26170
26399
|
export declare type HelpLayoutAtomicElementInput = {
|
|
26400
|
+
announcementInput?: InputMaybe<HelpLayoutAnnouncementInput>;
|
|
26171
26401
|
elementTypeKey: HelpLayoutAtomicElementKey;
|
|
26172
26402
|
headingConfigInput?: InputMaybe<HelpLayoutHeadingConfigInput>;
|
|
26173
26403
|
imageConfigInput?: InputMaybe<HelpLayoutImageConfigInput>;
|
|
26174
26404
|
paragraphConfigInput?: InputMaybe<HelpLayoutParagraphConfigInput>;
|
|
26175
26405
|
searchConfigInput?: InputMaybe<HelpLayoutSearchConfigInput>;
|
|
26406
|
+
topicListInput?: InputMaybe<HelpLayoutTopicsListInput>;
|
|
26176
26407
|
};
|
|
26177
26408
|
export declare enum HelpLayoutAtomicElementKey {
|
|
26178
26409
|
Announcement = "ANNOUNCEMENT",
|
|
@@ -26238,12 +26469,14 @@ export declare enum HelpLayoutElementCategory {
|
|
|
26238
26469
|
Navigation = "NAVIGATION"
|
|
26239
26470
|
}
|
|
26240
26471
|
export declare type HelpLayoutElementInput = {
|
|
26472
|
+
announcementInput?: InputMaybe<HelpLayoutAnnouncementInput>;
|
|
26241
26473
|
elementTypeKey: HelpLayoutElementKey;
|
|
26242
26474
|
headingConfigInput?: InputMaybe<HelpLayoutHeadingConfigInput>;
|
|
26243
26475
|
imageConfigInput?: InputMaybe<HelpLayoutImageConfigInput>;
|
|
26244
26476
|
linkCardInput?: InputMaybe<HelpLayoutLinkCardInput>;
|
|
26245
26477
|
paragraphConfigInput?: InputMaybe<HelpLayoutParagraphConfigInput>;
|
|
26246
26478
|
searchConfigInput?: InputMaybe<HelpLayoutSearchConfigInput>;
|
|
26479
|
+
topicListInput?: InputMaybe<HelpLayoutTopicsListInput>;
|
|
26247
26480
|
};
|
|
26248
26481
|
export declare enum HelpLayoutElementKey {
|
|
26249
26482
|
Announcement = "ANNOUNCEMENT",
|
|
@@ -26523,6 +26756,9 @@ export declare type HelpLayoutTopicsListElementData = {
|
|
|
26523
26756
|
__typename?: 'HelpLayoutTopicsListElementData';
|
|
26524
26757
|
topics?: Maybe<Array<HelpLayoutTopic>>;
|
|
26525
26758
|
};
|
|
26759
|
+
export declare type HelpLayoutTopicsListInput = {
|
|
26760
|
+
visualConfig?: InputMaybe<HelpLayoutVisualConfigInput>;
|
|
26761
|
+
};
|
|
26526
26762
|
export declare type HelpLayoutUpdateInput = {
|
|
26527
26763
|
layoutId: Scalars['ID']['input'];
|
|
26528
26764
|
sections: Array<HelpLayoutSectionInput>;
|
|
@@ -26813,7 +27049,7 @@ export declare type HelpObjectStoreSearchInput = {
|
|
|
26813
27049
|
};
|
|
26814
27050
|
export declare type HelpObjectStoreSearchMetaData = {
|
|
26815
27051
|
__typename?: 'HelpObjectStoreSearchMetaData';
|
|
26816
|
-
searchScore: Scalars['
|
|
27052
|
+
searchScore: Scalars['Float']['output'];
|
|
26817
27053
|
};
|
|
26818
27054
|
export declare type HelpObjectStoreSearchResult = Node & {
|
|
26819
27055
|
__typename?: 'HelpObjectStoreSearchResult';
|
|
@@ -27217,6 +27453,7 @@ export declare type InsightsGithubOnboardingDetails = {
|
|
|
27217
27453
|
};
|
|
27218
27454
|
export declare type InsightsMutation = {
|
|
27219
27455
|
__typename?: 'InsightsMutation';
|
|
27456
|
+
completeOnboarding?: Maybe<InsightsGithubOnboardingActionResponse>;
|
|
27220
27457
|
purgeOnboarding?: Maybe<InsightsGithubOnboardingActionResponse>;
|
|
27221
27458
|
purgeUserActionStateForCurrentUser?: Maybe<InsightsActionNextBestTaskPayload>;
|
|
27222
27459
|
removeOnboarding?: Maybe<InsightsGithubOnboardingActionResponse>;
|
|
@@ -27224,6 +27461,9 @@ export declare type InsightsMutation = {
|
|
|
27224
27461
|
snoozeOnboarding?: Maybe<InsightsGithubOnboardingActionResponse>;
|
|
27225
27462
|
snoozeTask?: Maybe<InsightsActionNextBestTaskPayload>;
|
|
27226
27463
|
};
|
|
27464
|
+
export declare type InsightsMutationCompleteOnboardingArgs = {
|
|
27465
|
+
input: InsightsGithubOnboardingActionInput;
|
|
27466
|
+
};
|
|
27227
27467
|
export declare type InsightsMutationPurgeOnboardingArgs = {
|
|
27228
27468
|
input: InsightsGithubOnboardingActionInput;
|
|
27229
27469
|
};
|
|
@@ -28051,12 +28291,38 @@ export declare type JiraAppConfigStateEdge = {
|
|
|
28051
28291
|
cursor: Scalars['String']['output'];
|
|
28052
28292
|
node?: Maybe<JiraAppConfigState>;
|
|
28053
28293
|
};
|
|
28054
|
-
export declare type
|
|
28294
|
+
export declare type JiraAppNavigationConfig = {
|
|
28295
|
+
iconUrl?: Maybe<Scalars['String']['output']>;
|
|
28296
|
+
label?: Maybe<Scalars['String']['output']>;
|
|
28297
|
+
links?: Maybe<Array<Maybe<JiraAppNavigationConfig>>>;
|
|
28298
|
+
section?: Maybe<Scalars['Boolean']['output']>;
|
|
28299
|
+
separator?: Maybe<Scalars['Boolean']['output']>;
|
|
28300
|
+
styleClass?: Maybe<Scalars['String']['output']>;
|
|
28301
|
+
url?: Maybe<Scalars['String']['output']>;
|
|
28302
|
+
};
|
|
28303
|
+
export declare type JiraAppNavigationItem = JiraAppNavigationConfig & JiraNavigationItem & Node & {
|
|
28055
28304
|
__typename?: 'JiraAppNavigationItem';
|
|
28305
|
+
canRemove?: Maybe<Scalars['Boolean']['output']>;
|
|
28306
|
+
canSetAsDefault?: Maybe<Scalars['Boolean']['output']>;
|
|
28056
28307
|
iconUrl?: Maybe<Scalars['String']['output']>;
|
|
28057
28308
|
id: Scalars['ID']['output'];
|
|
28058
28309
|
isDefault?: Maybe<Scalars['Boolean']['output']>;
|
|
28059
28310
|
label?: Maybe<Scalars['String']['output']>;
|
|
28311
|
+
links?: Maybe<Array<Maybe<JiraAppNavigationItemNestedLink>>>;
|
|
28312
|
+
section?: Maybe<Scalars['Boolean']['output']>;
|
|
28313
|
+
separator?: Maybe<Scalars['Boolean']['output']>;
|
|
28314
|
+
styleClass?: Maybe<Scalars['String']['output']>;
|
|
28315
|
+
typeKey?: Maybe<JiraNavigationItemTypeKey>;
|
|
28316
|
+
url?: Maybe<Scalars['String']['output']>;
|
|
28317
|
+
};
|
|
28318
|
+
export declare type JiraAppNavigationItemNestedLink = JiraAppNavigationConfig & {
|
|
28319
|
+
__typename?: 'JiraAppNavigationItemNestedLink';
|
|
28320
|
+
iconUrl?: Maybe<Scalars['String']['output']>;
|
|
28321
|
+
label?: Maybe<Scalars['String']['output']>;
|
|
28322
|
+
links?: Maybe<Array<Maybe<JiraAppNavigationItemNestedLink>>>;
|
|
28323
|
+
section?: Maybe<Scalars['Boolean']['output']>;
|
|
28324
|
+
separator?: Maybe<Scalars['Boolean']['output']>;
|
|
28325
|
+
styleClass?: Maybe<Scalars['String']['output']>;
|
|
28060
28326
|
url?: Maybe<Scalars['String']['output']>;
|
|
28061
28327
|
};
|
|
28062
28328
|
export declare type JiraAppUiModifications = {
|
|
@@ -28499,6 +28765,17 @@ export declare type JiraBooleanField = JiraIssueField & JiraIssueFieldConfigurat
|
|
|
28499
28765
|
userFieldConfig?: Maybe<JiraUserFieldConfig>;
|
|
28500
28766
|
value?: Maybe<Scalars['Boolean']['output']>;
|
|
28501
28767
|
};
|
|
28768
|
+
export declare type JiraBulkCreateIssueLinksInput = {
|
|
28769
|
+
issueLinkTypeId: Scalars['ID']['input'];
|
|
28770
|
+
sourceIssueId: Scalars['ID']['input'];
|
|
28771
|
+
targetIssueIds: Array<Scalars['ID']['input']>;
|
|
28772
|
+
};
|
|
28773
|
+
export declare type JiraBulkCreateIssueLinksPayload = Payload & {
|
|
28774
|
+
__typename?: 'JiraBulkCreateIssueLinksPayload';
|
|
28775
|
+
errors?: Maybe<Array<MutationError>>;
|
|
28776
|
+
issueLinkEdges?: Maybe<Array<JiraIssueLinkEdge>>;
|
|
28777
|
+
success: Scalars['Boolean']['output'];
|
|
28778
|
+
};
|
|
28502
28779
|
export declare type JiraBulkEditField = Node & {
|
|
28503
28780
|
__typename?: 'JiraBulkEditField';
|
|
28504
28781
|
bulkEditMultiSelectFieldOptions?: Maybe<Array<Maybe<JiraBulkEditMultiSelectFieldOptions>>>;
|
|
@@ -29384,6 +29661,13 @@ export declare type JiraConfigurableNavigationItemInput = {
|
|
|
29384
29661
|
isVisible: Scalars['Boolean']['input'];
|
|
29385
29662
|
menuId: Scalars['String']['input'];
|
|
29386
29663
|
};
|
|
29664
|
+
export declare type JiraConfiguratorIssueTypeScheme = {
|
|
29665
|
+
__typename?: 'JiraConfiguratorIssueTypeScheme';
|
|
29666
|
+
description?: Maybe<Scalars['String']['output']>;
|
|
29667
|
+
id: Scalars['ID']['output'];
|
|
29668
|
+
issueTypes?: Maybe<Array<JiraIssueType>>;
|
|
29669
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
29670
|
+
};
|
|
29387
29671
|
export declare type JiraConfluenceRemoteIssueLink = {
|
|
29388
29672
|
__typename?: 'JiraConfluenceRemoteIssueLink';
|
|
29389
29673
|
href?: Maybe<Scalars['String']['output']>;
|
|
@@ -29519,7 +29803,7 @@ export declare enum JiraContactOrgAdminToEnableAtlassianIntelligenceState {
|
|
|
29519
29803
|
}
|
|
29520
29804
|
export declare type JiraCreateAgileReleaseTrainInput = {
|
|
29521
29805
|
cloudId: Scalars['ID']['input'];
|
|
29522
|
-
configurationId
|
|
29806
|
+
configurationId?: InputMaybe<Scalars['ID']['input']>;
|
|
29523
29807
|
largeSolutionProjectId?: InputMaybe<Scalars['ID']['input']>;
|
|
29524
29808
|
projectDetails: JiraCreateScaledConfiguratorProjectInput;
|
|
29525
29809
|
teamIds?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
@@ -29558,7 +29842,7 @@ export declare type JiraCreateCustomFilterPayload = Payload & {
|
|
|
29558
29842
|
};
|
|
29559
29843
|
export declare type JiraCreateLargeSolutionInput = {
|
|
29560
29844
|
cloudId: Scalars['ID']['input'];
|
|
29561
|
-
configurationId
|
|
29845
|
+
configurationId?: InputMaybe<Scalars['ID']['input']>;
|
|
29562
29846
|
projectDetails: JiraCreateScaledConfiguratorProjectInput;
|
|
29563
29847
|
};
|
|
29564
29848
|
export declare type JiraCreateLargeSolutionPayload = Payload & {
|
|
@@ -30308,6 +30592,12 @@ export declare type JiraFieldType = {
|
|
|
30308
30592
|
displayName?: Maybe<Scalars['String']['output']>;
|
|
30309
30593
|
name: Scalars['String']['output'];
|
|
30310
30594
|
};
|
|
30595
|
+
export declare type JiraFieldValidationMutationErrorExtension = MutationErrorExtension & {
|
|
30596
|
+
__typename?: 'JiraFieldValidationMutationErrorExtension';
|
|
30597
|
+
errorType?: Maybe<Scalars['String']['output']>;
|
|
30598
|
+
fieldId?: Maybe<Scalars['String']['output']>;
|
|
30599
|
+
statusCode?: Maybe<Scalars['Int']['output']>;
|
|
30600
|
+
};
|
|
30311
30601
|
export declare type JiraFilter = {
|
|
30312
30602
|
filterId: Scalars['String']['output'];
|
|
30313
30603
|
filterUrl?: Maybe<Scalars['URL']['output']>;
|
|
@@ -30666,6 +30956,55 @@ export declare type JiraGlobalTimeTrackingSettings = {
|
|
|
30666
30956
|
hoursPerDay: Scalars['Float']['output'];
|
|
30667
30957
|
isTimeTrackingEnabled: Scalars['Boolean']['output'];
|
|
30668
30958
|
};
|
|
30959
|
+
export declare type JiraGoal = Node & {
|
|
30960
|
+
__typename?: 'JiraGoal';
|
|
30961
|
+
id: Scalars['ID']['output'];
|
|
30962
|
+
key?: Maybe<Scalars['String']['output']>;
|
|
30963
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
30964
|
+
score?: Maybe<Scalars['Float']['output']>;
|
|
30965
|
+
status?: Maybe<JiraGoalStatus>;
|
|
30966
|
+
targetDate?: Maybe<Scalars['Date']['output']>;
|
|
30967
|
+
};
|
|
30968
|
+
export declare type JiraGoalConnection = {
|
|
30969
|
+
__typename?: 'JiraGoalConnection';
|
|
30970
|
+
edges?: Maybe<Array<Maybe<JiraGoalEdge>>>;
|
|
30971
|
+
errors?: Maybe<Array<QueryError>>;
|
|
30972
|
+
pageInfo: PageInfo;
|
|
30973
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
30974
|
+
};
|
|
30975
|
+
export declare type JiraGoalEdge = {
|
|
30976
|
+
__typename?: 'JiraGoalEdge';
|
|
30977
|
+
cursor: Scalars['String']['output'];
|
|
30978
|
+
node?: Maybe<JiraGoal>;
|
|
30979
|
+
};
|
|
30980
|
+
export declare enum JiraGoalStatus {
|
|
30981
|
+
AtRisk = "AT_RISK",
|
|
30982
|
+
Cancelled = "CANCELLED",
|
|
30983
|
+
Completed = "COMPLETED",
|
|
30984
|
+
OffTrack = "OFF_TRACK",
|
|
30985
|
+
OnTrack = "ON_TRACK",
|
|
30986
|
+
Paused = "PAUSED",
|
|
30987
|
+
Pending = "PENDING"
|
|
30988
|
+
}
|
|
30989
|
+
export declare type JiraGoalsField = JiraIssueField & JiraIssueFieldConfiguration & JiraUserIssueFieldConfiguration & Node & {
|
|
30990
|
+
__typename?: 'JiraGoalsField';
|
|
30991
|
+
aliasFieldId?: Maybe<Scalars['ID']['output']>;
|
|
30992
|
+
description?: Maybe<Scalars['String']['output']>;
|
|
30993
|
+
fieldConfig?: Maybe<JiraFieldConfig>;
|
|
30994
|
+
fieldId: Scalars['String']['output'];
|
|
30995
|
+
id: Scalars['ID']['output'];
|
|
30996
|
+
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
30997
|
+
name: Scalars['String']['output'];
|
|
30998
|
+
selectedGoals?: Maybe<JiraGoalConnection>;
|
|
30999
|
+
type: Scalars['String']['output'];
|
|
31000
|
+
userFieldConfig?: Maybe<JiraUserFieldConfig>;
|
|
31001
|
+
};
|
|
31002
|
+
export declare type JiraGoalsFieldSelectedGoalsArgs = {
|
|
31003
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
31004
|
+
before?: InputMaybe<Scalars['String']['input']>;
|
|
31005
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
31006
|
+
last?: InputMaybe<Scalars['Int']['input']>;
|
|
31007
|
+
};
|
|
30669
31008
|
export declare type JiraGrantTypeKey = {
|
|
30670
31009
|
__typename?: 'JiraGrantTypeKey';
|
|
30671
31010
|
key: JiraGrantTypeKeyEnum;
|
|
@@ -30807,17 +31146,20 @@ export declare type JiraInvalidSyntaxError = {
|
|
|
30807
31146
|
};
|
|
30808
31147
|
export declare type JiraIssue = Node & {
|
|
30809
31148
|
__typename?: 'JiraIssue';
|
|
30810
|
-
|
|
31149
|
+
assigneeField?: Maybe<JiraSingleSelectUserPickerField>;
|
|
30811
31150
|
attachments?: Maybe<JiraAttachmentConnection>;
|
|
30812
31151
|
canBeExported?: Maybe<Scalars['Boolean']['output']>;
|
|
30813
31152
|
childIssues?: Maybe<JiraChildIssues>;
|
|
31153
|
+
commandPaletteActions?: Maybe<JiraIssueCommandPaletteActionConnection>;
|
|
30814
31154
|
commandPaletteFields?: Maybe<JiraIssueFieldConnection>;
|
|
30815
31155
|
comments?: Maybe<JiraCommentConnection>;
|
|
30816
31156
|
deploymentsSummary?: Maybe<DevOpsSummarisedDeployments>;
|
|
31157
|
+
descriptionField?: Maybe<JiraRichTextField>;
|
|
31158
|
+
designs?: Maybe<GraphStoreSimplifiedIssueAssociatedDesignConnection>;
|
|
30817
31159
|
devInfoDetails?: Maybe<JiraIssueDevInfoDetails>;
|
|
30818
31160
|
devOpsSummarisedEntities?: Maybe<DevOpsSummarisedEntities>;
|
|
30819
31161
|
devSummaryCache?: Maybe<JiraIssueDevSummaryResult>;
|
|
30820
|
-
|
|
31162
|
+
dueDateField?: Maybe<JiraDatePickerField>;
|
|
30821
31163
|
errorRetrievingData?: Maybe<Scalars['Boolean']['output']>;
|
|
30822
31164
|
fieldByIdOrAlias?: Maybe<JiraIssueField>;
|
|
30823
31165
|
fieldSets?: Maybe<JiraIssueFieldSetConnection>;
|
|
@@ -30838,6 +31180,7 @@ export declare type JiraIssue = Node & {
|
|
|
30838
31180
|
issueId: Scalars['String']['output'];
|
|
30839
31181
|
issueLinks?: Maybe<JiraIssueLinkConnection>;
|
|
30840
31182
|
issuePropertyByKey?: Maybe<Scalars['JSON']['output']>;
|
|
31183
|
+
issueTypeField?: Maybe<JiraIssueTypeField>;
|
|
30841
31184
|
issueTypesForHierarchyAbove?: Maybe<JiraIssueTypeConnection>;
|
|
30842
31185
|
issueTypesForHierarchyBelow?: Maybe<JiraIssueTypeConnection>;
|
|
30843
31186
|
issueTypesForHierarchySame?: Maybe<JiraIssueTypeConnection>;
|
|
@@ -30845,13 +31188,18 @@ export declare type JiraIssue = Node & {
|
|
|
30845
31188
|
lifecycleState?: Maybe<JiraIssueLifecycleState>;
|
|
30846
31189
|
linkedDesigns?: Maybe<GraphJiraDesignConnection>;
|
|
30847
31190
|
postIncidentReviewLinks?: Maybe<GraphIncidentAssociatedPostIncidentReviewLinkRelationshipConnection>;
|
|
31191
|
+
priorityField?: Maybe<JiraPriorityField>;
|
|
31192
|
+
projectRoleCommentVisibilities?: Maybe<JiraRoleConnection>;
|
|
31193
|
+
resolutionField?: Maybe<JiraResolutionField>;
|
|
30848
31194
|
screenId?: Maybe<Scalars['Long']['output']>;
|
|
30849
31195
|
shadowFieldSetsForIssueSearchView?: Maybe<JiraIssueFieldSetConnection>;
|
|
30850
31196
|
smartSummary?: Maybe<JiraAdf>;
|
|
30851
|
-
|
|
31197
|
+
startDateField?: Maybe<JiraDatePickerField>;
|
|
31198
|
+
statusField?: Maybe<JiraStatusField>;
|
|
30852
31199
|
storyPointEstimateField?: Maybe<JiraNumberField>;
|
|
30853
31200
|
storyPointsField?: Maybe<JiraNumberField>;
|
|
30854
31201
|
suggestFieldValues?: Maybe<JiraSuggestedIssueFieldValuesResult>;
|
|
31202
|
+
summaryField?: Maybe<JiraSingleLineTextField>;
|
|
30855
31203
|
webUrl?: Maybe<Scalars['URL']['output']>;
|
|
30856
31204
|
worklogs?: Maybe<JiraWorkLogConnection>;
|
|
30857
31205
|
};
|
|
@@ -30862,6 +31210,12 @@ export declare type JiraIssueAttachmentsArgs = {
|
|
|
30862
31210
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
30863
31211
|
sortBy?: InputMaybe<JiraAttachmentSortInput>;
|
|
30864
31212
|
};
|
|
31213
|
+
export declare type JiraIssueCommandPaletteActionsArgs = {
|
|
31214
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
31215
|
+
before?: InputMaybe<Scalars['String']['input']>;
|
|
31216
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
31217
|
+
last?: InputMaybe<Scalars['Int']['input']>;
|
|
31218
|
+
};
|
|
30865
31219
|
export declare type JiraIssueCommandPaletteFieldsArgs = {
|
|
30866
31220
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
30867
31221
|
before?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -30874,8 +31228,12 @@ export declare type JiraIssueCommentsArgs = {
|
|
|
30874
31228
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
30875
31229
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
30876
31230
|
};
|
|
31231
|
+
export declare type JiraIssueDesignsArgs = {
|
|
31232
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
31233
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
31234
|
+
};
|
|
30877
31235
|
export declare type JiraIssueFieldByIdOrAliasArgs = {
|
|
30878
|
-
|
|
31236
|
+
idOrAlias?: InputMaybe<Scalars['String']['input']>;
|
|
30879
31237
|
ignoreMissingField?: InputMaybe<Scalars['Boolean']['input']>;
|
|
30880
31238
|
};
|
|
30881
31239
|
export declare type JiraIssueFieldSetsArgs = {
|
|
@@ -30933,6 +31291,12 @@ export declare type JiraIssueLinkedDesignsArgs = {
|
|
|
30933
31291
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
30934
31292
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
30935
31293
|
};
|
|
31294
|
+
export declare type JiraIssueProjectRoleCommentVisibilitiesArgs = {
|
|
31295
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
31296
|
+
before?: InputMaybe<Scalars['String']['input']>;
|
|
31297
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
31298
|
+
last?: InputMaybe<Scalars['Int']['input']>;
|
|
31299
|
+
};
|
|
30936
31300
|
export declare type JiraIssueShadowFieldSetsForIssueSearchViewArgs = {
|
|
30937
31301
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
30938
31302
|
before?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -31035,6 +31399,28 @@ export declare type JiraIssueBulkOperationsMetadata = {
|
|
|
31035
31399
|
__typename?: 'JiraIssueBulkOperationsMetadata';
|
|
31036
31400
|
maxNumberOfIssues?: Maybe<Scalars['Long']['output']>;
|
|
31037
31401
|
};
|
|
31402
|
+
export declare type JiraIssueCommandPaletteAction = JiraIssueCommandPaletteUpdateFieldAction | JiraIssueGenericCommandPaletteAction;
|
|
31403
|
+
export declare type JiraIssueCommandPaletteActionConnection = {
|
|
31404
|
+
__typename?: 'JiraIssueCommandPaletteActionConnection';
|
|
31405
|
+
edges?: Maybe<Array<Maybe<JiraIssueCommandPaletteActionEdge>>>;
|
|
31406
|
+
pageInfo: PageInfo;
|
|
31407
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
31408
|
+
};
|
|
31409
|
+
export declare type JiraIssueCommandPaletteActionConnectionResult = JiraIssueCommandPaletteActionConnection | QueryError;
|
|
31410
|
+
export declare type JiraIssueCommandPaletteActionEdge = {
|
|
31411
|
+
__typename?: 'JiraIssueCommandPaletteActionEdge';
|
|
31412
|
+
cursor: Scalars['String']['output'];
|
|
31413
|
+
node?: Maybe<JiraIssueCommandPaletteAction>;
|
|
31414
|
+
};
|
|
31415
|
+
export declare type JiraIssueCommandPaletteActionUnsupportedErrorExtension = QueryErrorExtension & {
|
|
31416
|
+
__typename?: 'JiraIssueCommandPaletteActionUnsupportedErrorExtension';
|
|
31417
|
+
errorType?: Maybe<Scalars['String']['output']>;
|
|
31418
|
+
statusCode?: Maybe<Scalars['Int']['output']>;
|
|
31419
|
+
};
|
|
31420
|
+
export declare type JiraIssueCommandPaletteUpdateFieldAction = {
|
|
31421
|
+
__typename?: 'JiraIssueCommandPaletteUpdateFieldAction';
|
|
31422
|
+
field: JiraIssueField;
|
|
31423
|
+
};
|
|
31038
31424
|
export declare type JiraIssueCommitDevSummary = {
|
|
31039
31425
|
__typename?: 'JiraIssueCommitDevSummary';
|
|
31040
31426
|
count?: Maybe<Scalars['Int']['output']>;
|
|
@@ -31241,6 +31627,10 @@ export declare type JiraIssueFieldsInput = {
|
|
|
31241
31627
|
timeTrackingField?: InputMaybe<JiraTimeTrackingFieldInput>;
|
|
31242
31628
|
urlFields?: InputMaybe<Array<JiraUrlFieldInput>>;
|
|
31243
31629
|
};
|
|
31630
|
+
export declare type JiraIssueGenericCommandPaletteAction = {
|
|
31631
|
+
__typename?: 'JiraIssueGenericCommandPaletteAction';
|
|
31632
|
+
actionName: Scalars['String']['output'];
|
|
31633
|
+
};
|
|
31244
31634
|
export declare type JiraIssueHierarchyConfigData = {
|
|
31245
31635
|
__typename?: 'JiraIssueHierarchyConfigData';
|
|
31246
31636
|
cmpIssueTypes?: Maybe<JiraIssueTypeConnection>;
|
|
@@ -31440,6 +31830,7 @@ export declare type JiraIssueLinkFieldIssueLinkConnectionArgs = {
|
|
|
31440
31830
|
export declare type JiraIssueLinkFieldIssueLinkTypeRelationsArgs = {
|
|
31441
31831
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
31442
31832
|
before?: InputMaybe<Scalars['String']['input']>;
|
|
31833
|
+
filterById?: InputMaybe<JiraFieldOptionIdsFilterInput>;
|
|
31443
31834
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
31444
31835
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
31445
31836
|
searchBy?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -31456,6 +31847,11 @@ export declare type JiraIssueLinkFieldIssuesArgs = {
|
|
|
31456
31847
|
showSubTaskParent?: InputMaybe<Scalars['Boolean']['input']>;
|
|
31457
31848
|
showSubTasks?: InputMaybe<Scalars['Boolean']['input']>;
|
|
31458
31849
|
};
|
|
31850
|
+
export declare type JiraIssueLinkFieldOperationInputForIssueTransitions = {
|
|
31851
|
+
linkIssues?: InputMaybe<JiraLinkedIssuesInput>;
|
|
31852
|
+
linkType: Scalars['ID']['input'];
|
|
31853
|
+
operation: JiraAddValueFieldOperations;
|
|
31854
|
+
};
|
|
31459
31855
|
export declare type JiraIssueLinkType = Node & {
|
|
31460
31856
|
__typename?: 'JiraIssueLinkType';
|
|
31461
31857
|
id: Scalars['ID']['output'];
|
|
@@ -31741,10 +32137,20 @@ export declare type JiraIssueTransitionComment = {
|
|
|
31741
32137
|
mediaContext?: Maybe<JiraMediaContext>;
|
|
31742
32138
|
types?: Maybe<Array<Maybe<JiraIssueTransitionCommentType>>>;
|
|
31743
32139
|
};
|
|
32140
|
+
export declare type JiraIssueTransitionCommentInput = {
|
|
32141
|
+
body: JiraAdfInput;
|
|
32142
|
+
operation: JiraAddValueFieldOperations;
|
|
32143
|
+
type?: InputMaybe<JiraIssueTransitionCommentType>;
|
|
32144
|
+
visibility?: InputMaybe<JiraIssueTransitionCommentVisibilityInput>;
|
|
32145
|
+
};
|
|
31744
32146
|
export declare enum JiraIssueTransitionCommentType {
|
|
31745
32147
|
InternalNote = "INTERNAL_NOTE",
|
|
31746
32148
|
ReplyToCustomer = "REPLY_TO_CUSTOMER"
|
|
31747
32149
|
}
|
|
32150
|
+
export declare type JiraIssueTransitionCommentVisibilityInput = {
|
|
32151
|
+
groupId?: InputMaybe<Scalars['ID']['input']>;
|
|
32152
|
+
roleId?: InputMaybe<Scalars['ID']['input']>;
|
|
32153
|
+
};
|
|
31748
32154
|
export declare type JiraIssueTransitionFieldLevelInput = {
|
|
31749
32155
|
JiraAttachmentsField?: InputMaybe<Array<JiraUpdateAttachmentFieldInput>>;
|
|
31750
32156
|
JiraCascadingSelectField?: InputMaybe<Array<JiraUpdateCascadingSelectFieldInput>>;
|
|
@@ -31752,6 +32158,7 @@ export declare type JiraIssueTransitionFieldLevelInput = {
|
|
|
31752
32158
|
JiraComponentsField?: InputMaybe<Array<JiraUpdateComponentsFieldInput>>;
|
|
31753
32159
|
JiraDatePickerField?: InputMaybe<Array<JiraUpdateDateFieldInput>>;
|
|
31754
32160
|
JiraDateTimePickerField?: InputMaybe<Array<JiraUpdateDateTimeFieldInput>>;
|
|
32161
|
+
JiraIssueLinkField?: InputMaybe<Array<JiraUpdateIssueLinkFieldInputForIssueTransitions>>;
|
|
31755
32162
|
JiraIssueTypeField?: InputMaybe<Array<JiraUpdateIssueTypeFieldInput>>;
|
|
31756
32163
|
JiraLabelsField?: InputMaybe<Array<JiraUpdateLabelsFieldInput>>;
|
|
31757
32164
|
JiraMultipleGroupPickerField?: InputMaybe<Array<JiraUpdateMultipleGroupPickerFieldInput>>;
|
|
@@ -31764,9 +32171,12 @@ export declare type JiraIssueTransitionFieldLevelInput = {
|
|
|
31764
32171
|
JiraRadioSelectField?: InputMaybe<Array<JiraUpdateRadioSelectFieldInput>>;
|
|
31765
32172
|
JiraResolutionField?: InputMaybe<Array<JiraUpdateResolutionFieldInput>>;
|
|
31766
32173
|
JiraRichTextField?: InputMaybe<Array<JiraUpdateRichTextFieldInput>>;
|
|
32174
|
+
JiraSecurityLevelField?: InputMaybe<Array<JiraUpdateSecurityLevelFieldInput>>;
|
|
32175
|
+
JiraSingleGroupPickerField?: InputMaybe<Array<JiraUpdateSingleGroupPickerFieldInput>>;
|
|
31767
32176
|
JiraSingleLineTextField?: InputMaybe<Array<JiraUpdateSingleLineTextFieldInput>>;
|
|
31768
32177
|
JiraSingleSelectField?: InputMaybe<Array<JiraUpdateSingleSelectFieldInput>>;
|
|
31769
32178
|
JiraSingleSelectUserPickerField?: InputMaybe<Array<JiraUpdateSingleSelectUserPickerFieldInput>>;
|
|
32179
|
+
JiraSingleVersionPickerField?: InputMaybe<Array<JiraUpdateSingleVersionPickerFieldInput>>;
|
|
31770
32180
|
JiraSprintField?: InputMaybe<Array<JiraUpdateSprintFieldInput>>;
|
|
31771
32181
|
JiraTeamViewField?: InputMaybe<Array<JiraUpdateTeamFieldInput>>;
|
|
31772
32182
|
JiraTimeTrackingField?: InputMaybe<Array<JiraUpdateTimeTrackingFieldInput>>;
|
|
@@ -31831,6 +32241,7 @@ export declare type JiraIssueTypeField = JiraIssueField & JiraIssueFieldConfigur
|
|
|
31831
32241
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
31832
32242
|
issueType?: Maybe<JiraIssueType>;
|
|
31833
32243
|
issueTypes?: Maybe<JiraIssueTypeConnection>;
|
|
32244
|
+
issueTypesForTransition?: Maybe<JiraIssueTypeConnection>;
|
|
31834
32245
|
name: Scalars['String']['output'];
|
|
31835
32246
|
type: Scalars['String']['output'];
|
|
31836
32247
|
};
|
|
@@ -31843,6 +32254,15 @@ export declare type JiraIssueTypeFieldIssueTypesArgs = {
|
|
|
31843
32254
|
searchBy?: InputMaybe<Scalars['String']['input']>;
|
|
31844
32255
|
suggested?: InputMaybe<Scalars['Boolean']['input']>;
|
|
31845
32256
|
};
|
|
32257
|
+
export declare type JiraIssueTypeFieldIssueTypesForTransitionArgs = {
|
|
32258
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
32259
|
+
before?: InputMaybe<Scalars['String']['input']>;
|
|
32260
|
+
filterById?: InputMaybe<JiraFieldOptionIdsFilterInput>;
|
|
32261
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
32262
|
+
last?: InputMaybe<Scalars['Int']['input']>;
|
|
32263
|
+
searchBy?: InputMaybe<Scalars['String']['input']>;
|
|
32264
|
+
suggested?: InputMaybe<Scalars['Boolean']['input']>;
|
|
32265
|
+
};
|
|
31846
32266
|
export declare type JiraIssueTypeFieldOperationInput = {
|
|
31847
32267
|
id: Scalars['ID']['input'];
|
|
31848
32268
|
operation: JiraSingleValueFieldOperations;
|
|
@@ -32139,6 +32559,13 @@ export declare enum JiraJqlFunctionStatus {
|
|
|
32139
32559
|
Processing = "PROCESSING",
|
|
32140
32560
|
Unknown = "UNKNOWN"
|
|
32141
32561
|
}
|
|
32562
|
+
export declare type JiraJqlGoalsFieldValue = JiraJqlFieldValue & {
|
|
32563
|
+
__typename?: 'JiraJqlGoalsFieldValue';
|
|
32564
|
+
displayName: Scalars['String']['output'];
|
|
32565
|
+
encodedJqlTerm?: Maybe<Scalars['String']['output']>;
|
|
32566
|
+
goal: JiraGoal;
|
|
32567
|
+
jqlTerm: Scalars['String']['output'];
|
|
32568
|
+
};
|
|
32142
32569
|
export declare type JiraJqlGroupFieldValue = JiraJqlFieldValue & {
|
|
32143
32570
|
__typename?: 'JiraJqlGroupFieldValue';
|
|
32144
32571
|
displayName: Scalars['String']['output'];
|
|
@@ -32566,6 +32993,10 @@ export declare type JiraLinkIssuesToIncidentMutationPayload = Payload & {
|
|
|
32566
32993
|
errors?: Maybe<Array<MutationError>>;
|
|
32567
32994
|
success: Scalars['Boolean']['output'];
|
|
32568
32995
|
};
|
|
32996
|
+
export declare type JiraLinkedIssuesInput = {
|
|
32997
|
+
inwardIssues?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
32998
|
+
outwardIssues?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
32999
|
+
};
|
|
32569
33000
|
export declare type JiraLongRunningTaskProgress = {
|
|
32570
33001
|
__typename?: 'JiraLongRunningTaskProgress';
|
|
32571
33002
|
description?: Maybe<Scalars['String']['output']>;
|
|
@@ -32656,6 +33087,7 @@ export declare type JiraMultipleGroupPickerField = JiraIssueField & JiraIssueFie
|
|
|
32656
33087
|
export declare type JiraMultipleGroupPickerFieldGroupsArgs = {
|
|
32657
33088
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
32658
33089
|
before?: InputMaybe<Scalars['String']['input']>;
|
|
33090
|
+
filterById?: InputMaybe<JiraFieldOptionIdsFilterInput>;
|
|
32659
33091
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
32660
33092
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
32661
33093
|
searchBy?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -32865,6 +33297,7 @@ export declare type JiraMutation = {
|
|
|
32865
33297
|
createAgileReleaseTrain?: Maybe<JiraCreateAgileReleaseTrainPayload>;
|
|
32866
33298
|
createAndAssociateWorkflowFromJsmTemplate?: Maybe<JiraServiceManagementCreateAndAssociateWorkflowFromTemplatePayload>;
|
|
32867
33299
|
createApproverListField?: Maybe<JiraCreateApproverListFieldPayload>;
|
|
33300
|
+
createIssueLinks?: Maybe<JiraBulkCreateIssueLinksPayload>;
|
|
32868
33301
|
createJiraVersion?: Maybe<JiraUpdateVersionPayload>;
|
|
32869
33302
|
createJwmFilter?: Maybe<JiraWorkManagementCreateFilterPayload>;
|
|
32870
33303
|
createJwmIssue?: Maybe<JiraWorkManagementCreateIssuePayload>;
|
|
@@ -32958,9 +33391,12 @@ export declare type JiraMutation = {
|
|
|
32958
33391
|
updateReleaseNotesConfiguration?: Maybe<JiraUpdateReleaseNotesConfigurationPayload>;
|
|
32959
33392
|
updateResolutionField?: Maybe<JiraResolutionFieldPayload>;
|
|
32960
33393
|
updateRichTextField?: Maybe<JiraRichTextFieldPayload>;
|
|
33394
|
+
updateSecurityLevelField?: Maybe<JiraSecurityLevelFieldPayload>;
|
|
33395
|
+
updateSingleGroupPickerField?: Maybe<JiraSingleGroupPickerFieldPayload>;
|
|
32961
33396
|
updateSingleLineTextField?: Maybe<JiraSingleLineTextFieldPayload>;
|
|
32962
33397
|
updateSingleSelectField?: Maybe<JiraSingleSelectFieldPayload>;
|
|
32963
33398
|
updateSingleSelectUserPickerField?: Maybe<JiraSingleSelectUserPickerFieldPayload>;
|
|
33399
|
+
updateSingleVersionPickerField?: Maybe<JiraSingleVersionPickerFieldPayload>;
|
|
32964
33400
|
updateSprintField?: Maybe<JiraSprintFieldPayload>;
|
|
32965
33401
|
updateStatusByQuickTransition?: Maybe<JiraStatusFieldPayload>;
|
|
32966
33402
|
updateStoryPointEstimateField?: Maybe<JiraStoryPointEstimateFieldPayload>;
|
|
@@ -33015,6 +33451,10 @@ export declare type JiraMutationCreateApproverListFieldArgs = {
|
|
|
33015
33451
|
cloudId: Scalars['ID']['input'];
|
|
33016
33452
|
input: JiraCreateApproverListFieldInput;
|
|
33017
33453
|
};
|
|
33454
|
+
export declare type JiraMutationCreateIssueLinksArgs = {
|
|
33455
|
+
cloudId: Scalars['ID']['input'];
|
|
33456
|
+
input: JiraBulkCreateIssueLinksInput;
|
|
33457
|
+
};
|
|
33018
33458
|
export declare type JiraMutationCreateJiraVersionArgs = {
|
|
33019
33459
|
input: JiraVersionCreateMutationInput;
|
|
33020
33460
|
};
|
|
@@ -33302,6 +33742,12 @@ export declare type JiraMutationUpdateResolutionFieldArgs = {
|
|
|
33302
33742
|
export declare type JiraMutationUpdateRichTextFieldArgs = {
|
|
33303
33743
|
input: JiraUpdateRichTextFieldInput;
|
|
33304
33744
|
};
|
|
33745
|
+
export declare type JiraMutationUpdateSecurityLevelFieldArgs = {
|
|
33746
|
+
input: JiraUpdateSecurityLevelFieldInput;
|
|
33747
|
+
};
|
|
33748
|
+
export declare type JiraMutationUpdateSingleGroupPickerFieldArgs = {
|
|
33749
|
+
input: JiraUpdateSingleGroupPickerFieldInput;
|
|
33750
|
+
};
|
|
33305
33751
|
export declare type JiraMutationUpdateSingleLineTextFieldArgs = {
|
|
33306
33752
|
input: JiraUpdateSingleLineTextFieldInput;
|
|
33307
33753
|
};
|
|
@@ -33311,6 +33757,9 @@ export declare type JiraMutationUpdateSingleSelectFieldArgs = {
|
|
|
33311
33757
|
export declare type JiraMutationUpdateSingleSelectUserPickerFieldArgs = {
|
|
33312
33758
|
input: JiraUpdateSingleSelectUserPickerFieldInput;
|
|
33313
33759
|
};
|
|
33760
|
+
export declare type JiraMutationUpdateSingleVersionPickerFieldArgs = {
|
|
33761
|
+
input: JiraUpdateSingleVersionPickerFieldInput;
|
|
33762
|
+
};
|
|
33314
33763
|
export declare type JiraMutationUpdateSprintFieldArgs = {
|
|
33315
33764
|
input: JiraUpdateSprintFieldInput;
|
|
33316
33765
|
};
|
|
@@ -33374,9 +33823,12 @@ export declare type JiraNaturalLanguageToJqlInput = {
|
|
|
33374
33823
|
naturalLanguageInput: Scalars['String']['input'];
|
|
33375
33824
|
};
|
|
33376
33825
|
export declare type JiraNavigationItem = {
|
|
33826
|
+
canRemove?: Maybe<Scalars['Boolean']['output']>;
|
|
33827
|
+
canSetAsDefault?: Maybe<Scalars['Boolean']['output']>;
|
|
33377
33828
|
id: Scalars['ID']['output'];
|
|
33378
33829
|
isDefault?: Maybe<Scalars['Boolean']['output']>;
|
|
33379
33830
|
label?: Maybe<Scalars['String']['output']>;
|
|
33831
|
+
typeKey?: Maybe<JiraNavigationItemTypeKey>;
|
|
33380
33832
|
};
|
|
33381
33833
|
export declare type JiraNavigationItemConnection = HasPageInfo & {
|
|
33382
33834
|
__typename?: 'JiraNavigationItemConnection';
|
|
@@ -33389,6 +33841,33 @@ export declare type JiraNavigationItemEdge = {
|
|
|
33389
33841
|
cursor: Scalars['String']['output'];
|
|
33390
33842
|
node?: Maybe<JiraNavigationItem>;
|
|
33391
33843
|
};
|
|
33844
|
+
export declare enum JiraNavigationItemTypeKey {
|
|
33845
|
+
App = "APP",
|
|
33846
|
+
Approvals = "APPROVALS",
|
|
33847
|
+
Apps = "APPS",
|
|
33848
|
+
Attachments = "ATTACHMENTS",
|
|
33849
|
+
Backlog = "BACKLOG",
|
|
33850
|
+
Board = "BOARD",
|
|
33851
|
+
Calendar = "CALENDAR",
|
|
33852
|
+
Code = "CODE",
|
|
33853
|
+
Components = "COMPONENTS",
|
|
33854
|
+
Deployments = "DEPLOYMENTS",
|
|
33855
|
+
Forms = "FORMS",
|
|
33856
|
+
Goals = "GOALS",
|
|
33857
|
+
Incidents = "INCIDENTS",
|
|
33858
|
+
Issues = "ISSUES",
|
|
33859
|
+
List = "LIST",
|
|
33860
|
+
OnCall = "ON_CALL",
|
|
33861
|
+
Pages = "PAGES",
|
|
33862
|
+
Releases = "RELEASES",
|
|
33863
|
+
Reports = "REPORTS",
|
|
33864
|
+
Requests = "REQUESTS",
|
|
33865
|
+
Security = "SECURITY",
|
|
33866
|
+
Shortcut = "SHORTCUT",
|
|
33867
|
+
Shortcuts = "SHORTCUTS",
|
|
33868
|
+
Summary = "SUMMARY",
|
|
33869
|
+
Timeline = "TIMELINE"
|
|
33870
|
+
}
|
|
33392
33871
|
export declare type JiraNavigationUiStateUserProperty = JiraEntityProperty & Node & {
|
|
33393
33872
|
__typename?: 'JiraNavigationUIStateUserProperty';
|
|
33394
33873
|
id: Scalars['ID']['output'];
|
|
@@ -33403,6 +33882,14 @@ export declare type JiraNavigationUiStateUserPropertyRightPanelsArgs = {
|
|
|
33403
33882
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
33404
33883
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
33405
33884
|
};
|
|
33885
|
+
export declare enum JiraNotificationCategoryType {
|
|
33886
|
+
CommentChanges = "COMMENT_CHANGES",
|
|
33887
|
+
IssueAssigned = "ISSUE_ASSIGNED",
|
|
33888
|
+
IssueChanges = "ISSUE_CHANGES",
|
|
33889
|
+
IssueMentioned = "ISSUE_MENTIONED",
|
|
33890
|
+
IssueMiscellaneous = "ISSUE_MISCELLANEOUS",
|
|
33891
|
+
IssueWorklogChanges = "ISSUE_WORKLOG_CHANGES"
|
|
33892
|
+
}
|
|
33406
33893
|
export declare type JiraNotificationChannel = {
|
|
33407
33894
|
__typename?: 'JiraNotificationChannel';
|
|
33408
33895
|
channel?: Maybe<JiraNotificationChannelType>;
|
|
@@ -33429,6 +33916,7 @@ export declare type JiraNotificationOptions = {
|
|
|
33429
33916
|
};
|
|
33430
33917
|
export declare type JiraNotificationPreference = {
|
|
33431
33918
|
__typename?: 'JiraNotificationPreference';
|
|
33919
|
+
category?: Maybe<JiraNotificationCategoryType>;
|
|
33432
33920
|
emailChannel?: Maybe<JiraNotificationChannel>;
|
|
33433
33921
|
id: Scalars['ID']['output'];
|
|
33434
33922
|
inProductChannel?: Maybe<JiraNotificationChannel>;
|
|
@@ -34036,6 +34524,7 @@ export declare type JiraPlan = Node & {
|
|
|
34036
34524
|
export declare type JiraPlatformAttachment = JiraAttachment & Node & {
|
|
34037
34525
|
__typename?: 'JiraPlatformAttachment';
|
|
34038
34526
|
attachmentId: Scalars['String']['output'];
|
|
34527
|
+
attachmentProperty?: Maybe<Scalars['JSON']['output']>;
|
|
34039
34528
|
author?: Maybe<User>;
|
|
34040
34529
|
created: Scalars['DateTime']['output'];
|
|
34041
34530
|
fileName?: Maybe<Scalars['String']['output']>;
|
|
@@ -34050,6 +34539,9 @@ export declare type JiraPlatformAttachment = JiraAttachment & Node & {
|
|
|
34050
34539
|
parentName?: Maybe<Scalars['String']['output']>;
|
|
34051
34540
|
searchViewContext?: Maybe<JiraAttachmentSearchViewContext>;
|
|
34052
34541
|
};
|
|
34542
|
+
export declare type JiraPlatformAttachmentAttachmentPropertyArgs = {
|
|
34543
|
+
key: Scalars['String']['input'];
|
|
34544
|
+
};
|
|
34053
34545
|
export declare type JiraPlatformAttachmentMediaReadTokenArgs = {
|
|
34054
34546
|
durationInSeconds: Scalars['Int']['input'];
|
|
34055
34547
|
maxTokenLength: Scalars['Int']['input'];
|
|
@@ -34672,6 +35164,25 @@ export declare enum JiraProjectPermissionCategoryEnum {
|
|
|
34672
35164
|
TimeTracking = "TIME_TRACKING",
|
|
34673
35165
|
VotersAndWatchers = "VOTERS_AND_WATCHERS"
|
|
34674
35166
|
}
|
|
35167
|
+
export declare type JiraProjectRoleActorLogTableEntry = {
|
|
35168
|
+
__typename?: 'JiraProjectRoleActorLogTableEntry';
|
|
35169
|
+
executedBy?: Maybe<User>;
|
|
35170
|
+
executedGroupId?: Maybe<Scalars['String']['output']>;
|
|
35171
|
+
numberOfRecords?: Maybe<Scalars['Int']['output']>;
|
|
35172
|
+
updated?: Maybe<Scalars['DateTime']['output']>;
|
|
35173
|
+
};
|
|
35174
|
+
export declare type JiraProjectRoleActorLogTableEntryConnection = {
|
|
35175
|
+
__typename?: 'JiraProjectRoleActorLogTableEntryConnection';
|
|
35176
|
+
edges?: Maybe<Array<Maybe<JiraProjectRoleActorLogTableEntryEdge>>>;
|
|
35177
|
+
nodes?: Maybe<Array<Maybe<JiraProjectRoleActorLogTableEntry>>>;
|
|
35178
|
+
pageInfo: PageInfo;
|
|
35179
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
35180
|
+
};
|
|
35181
|
+
export declare type JiraProjectRoleActorLogTableEntryEdge = {
|
|
35182
|
+
__typename?: 'JiraProjectRoleActorLogTableEntryEdge';
|
|
35183
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
35184
|
+
node?: Maybe<JiraProjectRoleActorLogTableEntry>;
|
|
35185
|
+
};
|
|
34675
35186
|
export declare type JiraProjectRoleActorRecommendation = Node & {
|
|
34676
35187
|
__typename?: 'JiraProjectRoleActorRecommendation';
|
|
34677
35188
|
executedBy?: Maybe<User>;
|
|
@@ -34827,6 +35338,7 @@ export declare type JiraQuery = {
|
|
|
34827
35338
|
getProjectsByPermissionScheme?: Maybe<JiraProjectConnection>;
|
|
34828
35339
|
globalTimeTrackingSettings?: Maybe<JiraTimeTrackingSettings>;
|
|
34829
35340
|
grantTypeValues?: Maybe<JiraGrantTypeValueConnection>;
|
|
35341
|
+
groupCommentVisibilities?: Maybe<JiraGroupConnection>;
|
|
34830
35342
|
installDeploymentsBannerPrecondition?: Maybe<JiraInstallDeploymentsBannerPrecondition>;
|
|
34831
35343
|
integerUserProperty?: Maybe<JiraEntityPropertyInt>;
|
|
34832
35344
|
isIssueViewEditorAiEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -34896,7 +35408,9 @@ export declare type JiraQuery = {
|
|
|
34896
35408
|
postIncidentReviewLinksByIds?: Maybe<Array<Maybe<JiraPostIncidentReviewLink>>>;
|
|
34897
35409
|
projectListViewTemplates?: Maybe<JiraProjectListViewTemplateConnection>;
|
|
34898
35410
|
projectRequestTypesFromTemplate?: Maybe<Array<JiraServiceManagementRequestTypeFromTemplate>>;
|
|
35411
|
+
projectRoleActorLogTableEntries?: Maybe<JiraProjectRoleActorLogTableEntryConnection>;
|
|
34899
35412
|
projectRoleActorRecommendations?: Maybe<JiraProjectRoleActorRecommendationConnection>;
|
|
35413
|
+
recentItems?: Maybe<JiraSearchableEntityConnection>;
|
|
34900
35414
|
remoteIssueLinksById?: Maybe<Array<Maybe<JiraRemoteIssueLink>>>;
|
|
34901
35415
|
requestTypeTemplateById?: Maybe<JiraServiceManagementRequestTypeTemplate>;
|
|
34902
35416
|
requestTypeTemplateDefaultConfigurationDependencies?: Maybe<JiraServiceManagementRequestTypeTemplateDefaultConfigurationDependencies>;
|
|
@@ -35119,6 +35633,13 @@ export declare type JiraQueryGrantTypeValuesArgs = {
|
|
|
35119
35633
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
35120
35634
|
searchTerm?: InputMaybe<Scalars['String']['input']>;
|
|
35121
35635
|
};
|
|
35636
|
+
export declare type JiraQueryGroupCommentVisibilitiesArgs = {
|
|
35637
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
35638
|
+
before?: InputMaybe<Scalars['String']['input']>;
|
|
35639
|
+
cloudId: Scalars['ID']['input'];
|
|
35640
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
35641
|
+
last?: InputMaybe<Scalars['Int']['input']>;
|
|
35642
|
+
};
|
|
35122
35643
|
export declare type JiraQueryInstallDeploymentsBannerPreconditionArgs = {
|
|
35123
35644
|
projectId: Scalars['ID']['input'];
|
|
35124
35645
|
};
|
|
@@ -35416,6 +35937,13 @@ export declare type JiraQueryProjectRequestTypesFromTemplateArgs = {
|
|
|
35416
35937
|
cloudId: Scalars['ID']['input'];
|
|
35417
35938
|
projectId: Scalars['ID']['input'];
|
|
35418
35939
|
};
|
|
35940
|
+
export declare type JiraQueryProjectRoleActorLogTableEntriesArgs = {
|
|
35941
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
35942
|
+
before?: InputMaybe<Scalars['String']['input']>;
|
|
35943
|
+
cloudId: Scalars['ID']['input'];
|
|
35944
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
35945
|
+
last?: InputMaybe<Scalars['Int']['input']>;
|
|
35946
|
+
};
|
|
35419
35947
|
export declare type JiraQueryProjectRoleActorRecommendationsArgs = {
|
|
35420
35948
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
35421
35949
|
before?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -35425,6 +35953,14 @@ export declare type JiraQueryProjectRoleActorRecommendationsArgs = {
|
|
|
35425
35953
|
statuses?: InputMaybe<Array<InputMaybe<JiraResourceUsageRecommendationStatus>>>;
|
|
35426
35954
|
userStatus?: InputMaybe<JiraProjectRoleActorUserStatus>;
|
|
35427
35955
|
};
|
|
35956
|
+
export declare type JiraQueryRecentItemsArgs = {
|
|
35957
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
35958
|
+
before?: InputMaybe<Scalars['String']['input']>;
|
|
35959
|
+
cloudId: Scalars['ID']['input'];
|
|
35960
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
35961
|
+
last?: InputMaybe<Scalars['Int']['input']>;
|
|
35962
|
+
types: Array<JiraSearchableEntityType>;
|
|
35963
|
+
};
|
|
35428
35964
|
export declare type JiraQueryRemoteIssueLinksByIdArgs = {
|
|
35429
35965
|
ids: Array<Scalars['ID']['input']>;
|
|
35430
35966
|
};
|
|
@@ -35467,7 +36003,7 @@ export declare type JiraQueryResourceUsageRecommendationStatsArgs = {
|
|
|
35467
36003
|
};
|
|
35468
36004
|
export declare type JiraQueryScaledConfigurationArgs = {
|
|
35469
36005
|
cloudId: Scalars['ID']['input'];
|
|
35470
|
-
id
|
|
36006
|
+
id?: InputMaybe<Scalars['ID']['input']>;
|
|
35471
36007
|
};
|
|
35472
36008
|
export declare type JiraQueryScaledConfigurationPermissionsArgs = {
|
|
35473
36009
|
cloudId: Scalars['ID']['input'];
|
|
@@ -36094,10 +36630,12 @@ export declare type JiraSafeBoard = {
|
|
|
36094
36630
|
export declare type JiraSafeConfiguration = {
|
|
36095
36631
|
__typename?: 'JiraSafeConfiguration';
|
|
36096
36632
|
agileReleaseTrains?: Maybe<JiraAgileReleaseTrainConnection>;
|
|
36633
|
+
artIssueTypeScheme?: Maybe<JiraConfiguratorIssueTypeScheme>;
|
|
36097
36634
|
capability?: Maybe<JiraIssueType>;
|
|
36098
36635
|
feature?: Maybe<JiraIssueType>;
|
|
36099
36636
|
id: Scalars['ID']['output'];
|
|
36100
36637
|
jobSize?: Maybe<JiraNumberField>;
|
|
36638
|
+
largeSolutionIssueTypeScheme?: Maybe<JiraConfiguratorIssueTypeScheme>;
|
|
36101
36639
|
largeSolutions?: Maybe<JiraLargeSolutionConnection>;
|
|
36102
36640
|
plan?: Maybe<JiraPlan>;
|
|
36103
36641
|
riskReduction?: Maybe<JiraNumberField>;
|
|
@@ -36196,6 +36734,23 @@ export declare type JiraScreenTabLayoutItemEdge = {
|
|
|
36196
36734
|
cursor: Scalars['String']['output'];
|
|
36197
36735
|
node?: Maybe<JiraScreenTabLayoutItem>;
|
|
36198
36736
|
};
|
|
36737
|
+
export declare type JiraSearchableEntity = JiraBoard | JiraCustomFilter | JiraDashboard | JiraProject | JiraSystemFilter;
|
|
36738
|
+
export declare type JiraSearchableEntityConnection = {
|
|
36739
|
+
__typename?: 'JiraSearchableEntityConnection';
|
|
36740
|
+
edges?: Maybe<Array<Maybe<JiraSearchableEntityEdge>>>;
|
|
36741
|
+
pageInfo: PageInfo;
|
|
36742
|
+
};
|
|
36743
|
+
export declare type JiraSearchableEntityEdge = {
|
|
36744
|
+
__typename?: 'JiraSearchableEntityEdge';
|
|
36745
|
+
cursor: Scalars['String']['output'];
|
|
36746
|
+
node?: Maybe<JiraSearchableEntity>;
|
|
36747
|
+
};
|
|
36748
|
+
export declare enum JiraSearchableEntityType {
|
|
36749
|
+
Board = "BOARD",
|
|
36750
|
+
Dashboard = "DASHBOARD",
|
|
36751
|
+
Filter = "FILTER",
|
|
36752
|
+
Project = "PROJECT"
|
|
36753
|
+
}
|
|
36199
36754
|
export declare type JiraSecurityLevel = Node & {
|
|
36200
36755
|
__typename?: 'JiraSecurityLevel';
|
|
36201
36756
|
description?: Maybe<Scalars['String']['output']>;
|
|
@@ -36224,6 +36779,7 @@ export declare type JiraSecurityLevelField = JiraIssueField & JiraIssueFieldConf
|
|
|
36224
36779
|
id: Scalars['ID']['output'];
|
|
36225
36780
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
36226
36781
|
name: Scalars['String']['output'];
|
|
36782
|
+
nonEditableReason?: Maybe<JiraFieldNonEditableReason>;
|
|
36227
36783
|
securityLevel?: Maybe<JiraSecurityLevel>;
|
|
36228
36784
|
securityLevels?: Maybe<JiraSecurityLevelConnection>;
|
|
36229
36785
|
type: Scalars['String']['output'];
|
|
@@ -36232,10 +36788,21 @@ export declare type JiraSecurityLevelField = JiraIssueField & JiraIssueFieldConf
|
|
|
36232
36788
|
export declare type JiraSecurityLevelFieldSecurityLevelsArgs = {
|
|
36233
36789
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
36234
36790
|
before?: InputMaybe<Scalars['String']['input']>;
|
|
36791
|
+
filterById?: InputMaybe<JiraFieldOptionIdsFilterInput>;
|
|
36235
36792
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
36236
36793
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
36237
36794
|
searchBy?: InputMaybe<Scalars['String']['input']>;
|
|
36238
36795
|
};
|
|
36796
|
+
export declare type JiraSecurityLevelFieldOperationInput = {
|
|
36797
|
+
id?: InputMaybe<Scalars['ID']['input']>;
|
|
36798
|
+
operation: JiraSingleValueFieldOperations;
|
|
36799
|
+
};
|
|
36800
|
+
export declare type JiraSecurityLevelFieldPayload = Payload & {
|
|
36801
|
+
__typename?: 'JiraSecurityLevelFieldPayload';
|
|
36802
|
+
errors?: Maybe<Array<MutationError>>;
|
|
36803
|
+
field?: Maybe<JiraSecurityLevelField>;
|
|
36804
|
+
success: Scalars['Boolean']['output'];
|
|
36805
|
+
};
|
|
36239
36806
|
export declare type JiraSecurityLevelInput = {
|
|
36240
36807
|
securityLevelId: Scalars['ID']['input'];
|
|
36241
36808
|
};
|
|
@@ -36425,8 +36992,10 @@ export declare type JiraServiceManagementComment = JiraComment & Node & {
|
|
|
36425
36992
|
authorCanSeeRequest?: Maybe<Scalars['Boolean']['output']>;
|
|
36426
36993
|
commentId: Scalars['ID']['output'];
|
|
36427
36994
|
created: Scalars['DateTime']['output'];
|
|
36995
|
+
eventOccurredAt?: Maybe<Scalars['DateTime']['output']>;
|
|
36428
36996
|
id: Scalars['ID']['output'];
|
|
36429
36997
|
issue?: Maybe<JiraIssue>;
|
|
36998
|
+
jsdIncidentActivityViewHidden?: Maybe<Scalars['Boolean']['output']>;
|
|
36430
36999
|
permissionLevel?: Maybe<JiraPermissionLevel>;
|
|
36431
37000
|
richText?: Maybe<JiraRichText>;
|
|
36432
37001
|
updateAuthor?: Maybe<User>;
|
|
@@ -36843,6 +37412,14 @@ export declare type JiraServiceManagementProjectTeamType = {
|
|
|
36843
37412
|
__typename?: 'JiraServiceManagementProjectTeamType';
|
|
36844
37413
|
teamType?: Maybe<Scalars['String']['output']>;
|
|
36845
37414
|
};
|
|
37415
|
+
export declare type JiraServiceManagementQueue = Node & {
|
|
37416
|
+
__typename?: 'JiraServiceManagementQueue';
|
|
37417
|
+
favouriteValue?: Maybe<JiraFavouriteValue>;
|
|
37418
|
+
id: Scalars['ID']['output'];
|
|
37419
|
+
queueId?: Maybe<Scalars['Long']['output']>;
|
|
37420
|
+
queueUrl?: Maybe<Scalars['URL']['output']>;
|
|
37421
|
+
title?: Maybe<Scalars['String']['output']>;
|
|
37422
|
+
};
|
|
36846
37423
|
export declare enum JiraServiceManagementRendererType {
|
|
36847
37424
|
AtlassianWikiRendererType = "ATLASSIAN_WIKI_RENDERER_TYPE",
|
|
36848
37425
|
JiraTextRendererType = "JIRA_TEXT_RENDERER_TYPE"
|
|
@@ -37250,9 +37827,12 @@ export declare type JiraShortcutDataInput = {
|
|
|
37250
37827
|
};
|
|
37251
37828
|
export declare type JiraShortcutNavigationItem = JiraNavigationItem & Node & {
|
|
37252
37829
|
__typename?: 'JiraShortcutNavigationItem';
|
|
37830
|
+
canRemove?: Maybe<Scalars['Boolean']['output']>;
|
|
37831
|
+
canSetAsDefault?: Maybe<Scalars['Boolean']['output']>;
|
|
37253
37832
|
id: Scalars['ID']['output'];
|
|
37254
37833
|
isDefault?: Maybe<Scalars['Boolean']['output']>;
|
|
37255
37834
|
label?: Maybe<Scalars['String']['output']>;
|
|
37835
|
+
typeKey?: Maybe<JiraNavigationItemTypeKey>;
|
|
37256
37836
|
url?: Maybe<Scalars['String']['output']>;
|
|
37257
37837
|
};
|
|
37258
37838
|
export declare type JiraSimilarIssues = {
|
|
@@ -37285,6 +37865,16 @@ export declare type JiraSingleGroupPickerFieldInput = {
|
|
|
37285
37865
|
fieldId: Scalars['ID']['input'];
|
|
37286
37866
|
group: JiraGroupInput;
|
|
37287
37867
|
};
|
|
37868
|
+
export declare type JiraSingleGroupPickerFieldOperationInput = {
|
|
37869
|
+
groupId?: InputMaybe<Scalars['String']['input']>;
|
|
37870
|
+
operation: JiraSingleValueFieldOperations;
|
|
37871
|
+
};
|
|
37872
|
+
export declare type JiraSingleGroupPickerFieldPayload = Payload & {
|
|
37873
|
+
__typename?: 'JiraSingleGroupPickerFieldPayload';
|
|
37874
|
+
errors?: Maybe<Array<MutationError>>;
|
|
37875
|
+
field?: Maybe<JiraSingleGroupPickerField>;
|
|
37876
|
+
success: Scalars['Boolean']['output'];
|
|
37877
|
+
};
|
|
37288
37878
|
export declare type JiraSingleLineTextField = JiraIssueField & JiraIssueFieldConfiguration & JiraUserIssueFieldConfiguration & Node & {
|
|
37289
37879
|
__typename?: 'JiraSingleLineTextField';
|
|
37290
37880
|
aliasFieldId?: Maybe<Scalars['ID']['output']>;
|
|
@@ -37418,6 +38008,7 @@ export declare type JiraSingleVersionPickerField = JiraIssueField & JiraIssueFie
|
|
|
37418
38008
|
export declare type JiraSingleVersionPickerFieldVersionsArgs = {
|
|
37419
38009
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
37420
38010
|
before?: InputMaybe<Scalars['String']['input']>;
|
|
38011
|
+
filterById?: InputMaybe<JiraFieldOptionIdsFilterInput>;
|
|
37421
38012
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
37422
38013
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
37423
38014
|
searchBy?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -37427,12 +38018,25 @@ export declare type JiraSingleVersionPickerFieldInput = {
|
|
|
37427
38018
|
fieldId: Scalars['ID']['input'];
|
|
37428
38019
|
version: JiraVersionInput;
|
|
37429
38020
|
};
|
|
38021
|
+
export declare type JiraSingleVersionPickerFieldOperationInput = {
|
|
38022
|
+
id?: InputMaybe<Scalars['ID']['input']>;
|
|
38023
|
+
operation: JiraSingleValueFieldOperations;
|
|
38024
|
+
};
|
|
38025
|
+
export declare type JiraSingleVersionPickerFieldPayload = Payload & {
|
|
38026
|
+
__typename?: 'JiraSingleVersionPickerFieldPayload';
|
|
38027
|
+
errors?: Maybe<Array<MutationError>>;
|
|
38028
|
+
field?: Maybe<JiraSingleVersionPickerField>;
|
|
38029
|
+
success: Scalars['Boolean']['output'];
|
|
38030
|
+
};
|
|
37430
38031
|
export declare type JiraSoftwareBuiltInNavigationItem = JiraNavigationItem & Node & {
|
|
37431
38032
|
__typename?: 'JiraSoftwareBuiltInNavigationItem';
|
|
38033
|
+
canRemove?: Maybe<Scalars['Boolean']['output']>;
|
|
38034
|
+
canSetAsDefault?: Maybe<Scalars['Boolean']['output']>;
|
|
37432
38035
|
id: Scalars['ID']['output'];
|
|
37433
38036
|
isDefault?: Maybe<Scalars['Boolean']['output']>;
|
|
37434
38037
|
itemType?: Maybe<JiraSoftwareSimpleNavigationItemEnum>;
|
|
37435
38038
|
label?: Maybe<Scalars['String']['output']>;
|
|
38039
|
+
typeKey?: Maybe<JiraNavigationItemTypeKey>;
|
|
37436
38040
|
};
|
|
37437
38041
|
export declare type JiraSoftwareIssueSearchCustomInput = {
|
|
37438
38042
|
additionalJql?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -38114,7 +38718,12 @@ export declare type JiraUpdateGlobalPreferencesPayload = Payload & {
|
|
|
38114
38718
|
preferences?: Maybe<JiraNotificationPreferences>;
|
|
38115
38719
|
success: Scalars['Boolean']['output'];
|
|
38116
38720
|
};
|
|
38721
|
+
export declare type JiraUpdateIssueLinkFieldInputForIssueTransitions = {
|
|
38722
|
+
id: Scalars['ID']['input'];
|
|
38723
|
+
operation: JiraIssueLinkFieldOperationInputForIssueTransitions;
|
|
38724
|
+
};
|
|
38117
38725
|
export declare type JiraUpdateIssueTransitionInput = {
|
|
38726
|
+
comment?: InputMaybe<JiraIssueTransitionCommentInput>;
|
|
38118
38727
|
fieldInputs?: InputMaybe<JiraIssueTransitionFieldLevelInput>;
|
|
38119
38728
|
issueId: Scalars['ID']['input'];
|
|
38120
38729
|
transitionId: Scalars['Int']['input'];
|
|
@@ -38218,11 +38827,19 @@ export declare type JiraUpdateRichTextFieldInput = {
|
|
|
38218
38827
|
id: Scalars['ID']['input'];
|
|
38219
38828
|
operation: JiraRichTextFieldOperationInput;
|
|
38220
38829
|
};
|
|
38830
|
+
export declare type JiraUpdateSecurityLevelFieldInput = {
|
|
38831
|
+
id: Scalars['ID']['input'];
|
|
38832
|
+
operation: JiraSecurityLevelFieldOperationInput;
|
|
38833
|
+
};
|
|
38221
38834
|
export declare type JiraUpdateShortcutInput = {
|
|
38222
38835
|
projectId: Scalars['ID']['input'];
|
|
38223
38836
|
shortcutData: JiraShortcutDataInput;
|
|
38224
38837
|
shortcutId: Scalars['ID']['input'];
|
|
38225
38838
|
};
|
|
38839
|
+
export declare type JiraUpdateSingleGroupPickerFieldInput = {
|
|
38840
|
+
id: Scalars['ID']['input'];
|
|
38841
|
+
operation: JiraSingleGroupPickerFieldOperationInput;
|
|
38842
|
+
};
|
|
38226
38843
|
export declare type JiraUpdateSingleLineTextFieldInput = {
|
|
38227
38844
|
id: Scalars['ID']['input'];
|
|
38228
38845
|
operation: JiraSingleLineTextFieldOperationInput;
|
|
@@ -38235,6 +38852,10 @@ export declare type JiraUpdateSingleSelectUserPickerFieldInput = {
|
|
|
38235
38852
|
id: Scalars['ID']['input'];
|
|
38236
38853
|
operation: JiraSingleSelectUserPickerFieldOperationInput;
|
|
38237
38854
|
};
|
|
38855
|
+
export declare type JiraUpdateSingleVersionPickerFieldInput = {
|
|
38856
|
+
id: Scalars['ID']['input'];
|
|
38857
|
+
operation: JiraSingleVersionPickerFieldOperationInput;
|
|
38858
|
+
};
|
|
38238
38859
|
export declare type JiraUpdateSprintFieldInput = {
|
|
38239
38860
|
id: Scalars['ID']['input'];
|
|
38240
38861
|
operation: JiraSprintFieldOperationInput;
|
|
@@ -38777,6 +39398,7 @@ export declare type JiraVersionFilterInput = {
|
|
|
38777
39398
|
activeWithin?: InputMaybe<JiraDateTimeWindow>;
|
|
38778
39399
|
projectIds?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
38779
39400
|
projectKeys?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
39401
|
+
searchString?: InputMaybe<Scalars['String']['input']>;
|
|
38780
39402
|
statuses?: InputMaybe<Array<InputMaybe<JiraVersionStatus>>>;
|
|
38781
39403
|
};
|
|
38782
39404
|
export declare type JiraVersionInput = {
|
|
@@ -39462,6 +40084,7 @@ export declare type JiraWorkManagementSavedView = JiraNavigationItem & Node & {
|
|
|
39462
40084
|
isDefault?: Maybe<Scalars['Boolean']['output']>;
|
|
39463
40085
|
label?: Maybe<Scalars['String']['output']>;
|
|
39464
40086
|
type?: Maybe<JiraWorkManagementSavedViewType>;
|
|
40087
|
+
typeKey?: Maybe<JiraNavigationItemTypeKey>;
|
|
39465
40088
|
};
|
|
39466
40089
|
export declare type JiraWorkManagementSavedViewResult = JiraWorkManagementSavedView | QueryError;
|
|
39467
40090
|
export declare type JiraWorkManagementSavedViewType = Node & {
|
|
@@ -39469,6 +40092,7 @@ export declare type JiraWorkManagementSavedViewType = Node & {
|
|
|
39469
40092
|
id: Scalars['ID']['output'];
|
|
39470
40093
|
key?: Maybe<Scalars['String']['output']>;
|
|
39471
40094
|
label?: Maybe<Scalars['String']['output']>;
|
|
40095
|
+
typeKey?: Maybe<JiraNavigationItemTypeKey>;
|
|
39472
40096
|
};
|
|
39473
40097
|
export declare type JiraWorkManagementSavedViewTypeConnection = HasPageInfo & {
|
|
39474
40098
|
__typename?: 'JiraWorkManagementSavedViewTypeConnection';
|
|
@@ -39594,6 +40218,74 @@ export declare type JiraWorklogFieldOperationInputForIssueTransitions = {
|
|
|
39594
40218
|
startedTime?: InputMaybe<Scalars['DateTime']['input']>;
|
|
39595
40219
|
timeSpentInMinutes?: InputMaybe<Scalars['Long']['input']>;
|
|
39596
40220
|
};
|
|
40221
|
+
export declare type JsmChatChannelRequestTypeMapping = {
|
|
40222
|
+
__typename?: 'JsmChatChannelRequestTypeMapping';
|
|
40223
|
+
channelId: Scalars['ID']['output'];
|
|
40224
|
+
channelName?: Maybe<Scalars['String']['output']>;
|
|
40225
|
+
channelType?: Maybe<Scalars['String']['output']>;
|
|
40226
|
+
projectId?: Maybe<Scalars['String']['output']>;
|
|
40227
|
+
requestTypeId?: Maybe<Scalars['String']['output']>;
|
|
40228
|
+
requestTypeName?: Maybe<Scalars['String']['output']>;
|
|
40229
|
+
settings?: Maybe<JsmChatChannelSettings>;
|
|
40230
|
+
};
|
|
40231
|
+
export declare type JsmChatChannelSettings = {
|
|
40232
|
+
__typename?: 'JsmChatChannelSettings';
|
|
40233
|
+
isDeflectionChannel?: Maybe<Scalars['Boolean']['output']>;
|
|
40234
|
+
isVirtualAgentChannel?: Maybe<Scalars['Boolean']['output']>;
|
|
40235
|
+
isVirtualAgentTestChannel?: Maybe<Scalars['Boolean']['output']>;
|
|
40236
|
+
};
|
|
40237
|
+
export declare type JsmChatChatConfigSlack = {
|
|
40238
|
+
__typename?: 'JsmChatChatConfigSlack';
|
|
40239
|
+
botUserId?: Maybe<Scalars['String']['output']>;
|
|
40240
|
+
channelRequestTypeMapping: Array<JsmChatChannelRequestTypeMapping>;
|
|
40241
|
+
projectSettings?: Maybe<JsmChatProjectSettingsSlack>;
|
|
40242
|
+
siteId: Scalars['ID']['output'];
|
|
40243
|
+
slackTeamId?: Maybe<Scalars['String']['output']>;
|
|
40244
|
+
uninstalled?: Maybe<Scalars['Boolean']['output']>;
|
|
40245
|
+
};
|
|
40246
|
+
export declare type JsmChatGetSlackChatConfigInput = {
|
|
40247
|
+
activationId: Scalars['ID']['input'];
|
|
40248
|
+
projectId: Scalars['ID']['input'];
|
|
40249
|
+
siteId: Scalars['ID']['input'];
|
|
40250
|
+
};
|
|
40251
|
+
export declare type JsmChatInitializeConfigRequest = {
|
|
40252
|
+
activationId: Scalars['ID']['input'];
|
|
40253
|
+
projectId: Scalars['ID']['input'];
|
|
40254
|
+
siteId: Scalars['ID']['input'];
|
|
40255
|
+
};
|
|
40256
|
+
export declare type JsmChatInitializeConfigResponse = {
|
|
40257
|
+
__typename?: 'JsmChatInitializeConfigResponse';
|
|
40258
|
+
nativeConfigEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
40259
|
+
};
|
|
40260
|
+
export declare type JsmChatProjectSettings = {
|
|
40261
|
+
__typename?: 'JsmChatProjectSettings';
|
|
40262
|
+
agentAssignedMessageDisabled?: Maybe<Scalars['Boolean']['output']>;
|
|
40263
|
+
agentIssueClosedMessageDisabled?: Maybe<Scalars['Boolean']['output']>;
|
|
40264
|
+
agentThreadMessageDisabled?: Maybe<Scalars['Boolean']['output']>;
|
|
40265
|
+
areRequesterThreadRepliesPrivate?: Maybe<Scalars['Boolean']['output']>;
|
|
40266
|
+
hideQueueDuringTicketCreation?: Maybe<Scalars['Boolean']['output']>;
|
|
40267
|
+
jsmApproversEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
40268
|
+
requesterIssueClosedMessageDisabled?: Maybe<Scalars['Boolean']['output']>;
|
|
40269
|
+
requesterThreadMessageDisabled?: Maybe<Scalars['Boolean']['output']>;
|
|
40270
|
+
};
|
|
40271
|
+
export declare type JsmChatProjectSettingsSlack = {
|
|
40272
|
+
__typename?: 'JsmChatProjectSettingsSlack';
|
|
40273
|
+
activationId?: Maybe<Scalars['String']['output']>;
|
|
40274
|
+
projectId: Scalars['ID']['output'];
|
|
40275
|
+
settings?: Maybe<JsmChatProjectSettings>;
|
|
40276
|
+
siteId?: Maybe<Scalars['String']['output']>;
|
|
40277
|
+
};
|
|
40278
|
+
export declare type JsmChatQuery = {
|
|
40279
|
+
__typename?: 'JsmChatQuery';
|
|
40280
|
+
getSlackChatConfig?: Maybe<JsmChatChatConfigSlack>;
|
|
40281
|
+
initializeConfig: JsmChatInitializeConfigResponse;
|
|
40282
|
+
};
|
|
40283
|
+
export declare type JsmChatQueryGetSlackChatConfigArgs = {
|
|
40284
|
+
input: JsmChatGetSlackChatConfigInput;
|
|
40285
|
+
};
|
|
40286
|
+
export declare type JsmChatQueryInitializeConfigArgs = {
|
|
40287
|
+
input: JsmChatInitializeConfigRequest;
|
|
40288
|
+
};
|
|
39597
40289
|
export declare type JswMutation = {
|
|
39598
40290
|
__typename?: 'JswMutation';
|
|
39599
40291
|
deleteCard?: Maybe<DeleteCardOutput>;
|
|
@@ -39608,10 +40300,12 @@ export declare type JswQuery = {
|
|
|
39608
40300
|
export declare type JswQueryBoardScopeArgs = {
|
|
39609
40301
|
boardId: Scalars['ID']['input'];
|
|
39610
40302
|
};
|
|
40303
|
+
export declare type KnowledgeDiscoveryConfluenceEntity = ConfluenceBlogPost | ConfluencePage;
|
|
39611
40304
|
export declare type KnowledgeDiscoveryCreateDefinitionInput = {
|
|
39612
40305
|
definition: Scalars['String']['input'];
|
|
39613
40306
|
keyPhrase: Scalars['String']['input'];
|
|
39614
|
-
|
|
40307
|
+
referenceContentId?: InputMaybe<Scalars['String']['input']>;
|
|
40308
|
+
referenceUrl?: InputMaybe<Scalars['String']['input']>;
|
|
39615
40309
|
workspaceId: Scalars['String']['input'];
|
|
39616
40310
|
};
|
|
39617
40311
|
export declare type KnowledgeDiscoveryCreateDefinitionPayload = Payload & {
|
|
@@ -39623,10 +40317,17 @@ export declare type KnowledgeDiscoveryCreateDefinitionPayload = Payload & {
|
|
|
39623
40317
|
export declare type KnowledgeDiscoveryDefinition = {
|
|
39624
40318
|
__typename?: 'KnowledgeDiscoveryDefinition';
|
|
39625
40319
|
accountId: Scalars['String']['output'];
|
|
39626
|
-
|
|
40320
|
+
confluenceEntity?: Maybe<KnowledgeDiscoveryConfluenceEntity>;
|
|
40321
|
+
createdAt: Scalars['String']['output'];
|
|
39627
40322
|
definition: Scalars['String']['output'];
|
|
40323
|
+
editor?: Maybe<User>;
|
|
39628
40324
|
keyPhrase: Scalars['String']['output'];
|
|
39629
|
-
|
|
40325
|
+
referenceUrl?: Maybe<Scalars['String']['output']>;
|
|
40326
|
+
};
|
|
40327
|
+
export declare type KnowledgeDiscoveryDefinitionHistoryResult = KnowledgeDiscoveryDefinitionList | QueryError;
|
|
40328
|
+
export declare type KnowledgeDiscoveryDefinitionList = {
|
|
40329
|
+
__typename?: 'KnowledgeDiscoveryDefinitionList';
|
|
40330
|
+
definitions?: Maybe<Array<Maybe<KnowledgeDiscoveryDefinition>>>;
|
|
39630
40331
|
};
|
|
39631
40332
|
export declare type KnowledgeDiscoveryDefinitionResult = KnowledgeDiscoveryDefinition | QueryError;
|
|
39632
40333
|
export declare type KnowledgeDiscoveryMutationApi = {
|
|
@@ -39639,6 +40340,7 @@ export declare type KnowledgeDiscoveryMutationApiCreateDefinitionArgs = {
|
|
|
39639
40340
|
export declare type KnowledgeDiscoveryQueryApi = {
|
|
39640
40341
|
__typename?: 'KnowledgeDiscoveryQueryApi';
|
|
39641
40342
|
definition?: Maybe<KnowledgeDiscoveryDefinitionResult>;
|
|
40343
|
+
definitionHistory?: Maybe<KnowledgeDiscoveryDefinitionHistoryResult>;
|
|
39642
40344
|
smartAnswersRoute?: Maybe<KnowledgeDiscoverySmartAnswersRouteResult>;
|
|
39643
40345
|
topic?: Maybe<KnowledgeDiscoveryTopicResult>;
|
|
39644
40346
|
};
|
|
@@ -39646,6 +40348,10 @@ export declare type KnowledgeDiscoveryQueryApiDefinitionArgs = {
|
|
|
39646
40348
|
keyPhrase: Scalars['String']['input'];
|
|
39647
40349
|
workspaceId: Scalars['String']['input'];
|
|
39648
40350
|
};
|
|
40351
|
+
export declare type KnowledgeDiscoveryQueryApiDefinitionHistoryArgs = {
|
|
40352
|
+
keyPhrase: Scalars['String']['input'];
|
|
40353
|
+
workspaceId: Scalars['String']['input'];
|
|
40354
|
+
};
|
|
39649
40355
|
export declare type KnowledgeDiscoveryQueryApiSmartAnswersRouteArgs = {
|
|
39650
40356
|
locale: Scalars['String']['input'];
|
|
39651
40357
|
query: Scalars['String']['input'];
|
|
@@ -40267,12 +40973,61 @@ export declare type MarketplaceStoreMutationApi = {
|
|
|
40267
40973
|
export declare type MarketplaceStoreMutationApiInstallAppArgs = {
|
|
40268
40974
|
input: MarketplaceStoreInstallAppInput;
|
|
40269
40975
|
};
|
|
40976
|
+
export declare type MarketplaceStorePartnerAddress = {
|
|
40977
|
+
__typename?: 'MarketplaceStorePartnerAddress';
|
|
40978
|
+
city?: Maybe<Scalars['String']['output']>;
|
|
40979
|
+
country?: Maybe<Scalars['String']['output']>;
|
|
40980
|
+
line1?: Maybe<Scalars['String']['output']>;
|
|
40981
|
+
line2?: Maybe<Scalars['String']['output']>;
|
|
40982
|
+
postcode?: Maybe<Scalars['String']['output']>;
|
|
40983
|
+
state?: Maybe<Scalars['String']['output']>;
|
|
40984
|
+
};
|
|
40985
|
+
export declare type MarketplaceStorePartnerContactDetails = {
|
|
40986
|
+
__typename?: 'MarketplaceStorePartnerContactDetails';
|
|
40987
|
+
email: Scalars['String']['output'];
|
|
40988
|
+
homepageUrl?: Maybe<Scalars['String']['output']>;
|
|
40989
|
+
otherContactDetails?: Maybe<Scalars['String']['output']>;
|
|
40990
|
+
phone?: Maybe<Scalars['String']['output']>;
|
|
40991
|
+
};
|
|
40992
|
+
export declare type MarketplaceStorePartnerEnrollment = {
|
|
40993
|
+
__typename?: 'MarketplaceStorePartnerEnrollment';
|
|
40994
|
+
program?: Maybe<MarketplaceStorePartnerEnrollmentProgram>;
|
|
40995
|
+
value?: Maybe<MarketplaceStorePartnerEnrollmentProgramValue>;
|
|
40996
|
+
};
|
|
40997
|
+
export declare enum MarketplaceStorePartnerEnrollmentProgram {
|
|
40998
|
+
MarketplacePartner = "MARKETPLACE_PARTNER",
|
|
40999
|
+
SolutionPartner = "SOLUTION_PARTNER"
|
|
41000
|
+
}
|
|
41001
|
+
export declare enum MarketplaceStorePartnerEnrollmentProgramValue {
|
|
41002
|
+
Gold = "GOLD",
|
|
41003
|
+
Platinum = "PLATINUM",
|
|
41004
|
+
Silver = "SILVER"
|
|
41005
|
+
}
|
|
41006
|
+
export declare type MarketplaceStorePartnerProfileResponse = {
|
|
41007
|
+
__typename?: 'MarketplaceStorePartnerProfileResponse';
|
|
41008
|
+
address?: Maybe<MarketplaceStorePartnerAddress>;
|
|
41009
|
+
contactDetails?: Maybe<MarketplaceStorePartnerContactDetails>;
|
|
41010
|
+
description?: Maybe<Scalars['String']['output']>;
|
|
41011
|
+
enrollments: Array<Maybe<MarketplaceStorePartnerEnrollment>>;
|
|
41012
|
+
id: Scalars['ID']['output'];
|
|
41013
|
+
logoUrl?: Maybe<Scalars['String']['output']>;
|
|
41014
|
+
name: Scalars['String']['output'];
|
|
41015
|
+
supportDetails?: Maybe<MarketplaceStorePartnerSupportDetails>;
|
|
41016
|
+
};
|
|
41017
|
+
export declare type MarketplaceStorePartnerSupportDetails = {
|
|
41018
|
+
__typename?: 'MarketplaceStorePartnerSupportDetails';
|
|
41019
|
+
email?: Maybe<Scalars['String']['output']>;
|
|
41020
|
+
name: Scalars['String']['output'];
|
|
41021
|
+
phone?: Maybe<Scalars['String']['output']>;
|
|
41022
|
+
url?: Maybe<Scalars['String']['output']>;
|
|
41023
|
+
};
|
|
40270
41024
|
export declare type MarketplaceStoreQueryApi = {
|
|
40271
41025
|
__typename?: 'MarketplaceStoreQueryApi';
|
|
40272
41026
|
category: MarketplaceStoreCategoryResponse;
|
|
40273
41027
|
collection: MarketplaceStoreCollectionResponse;
|
|
40274
41028
|
homePage: MarketplaceStoreHomePageResponse;
|
|
40275
41029
|
installAppStatus: MarketplaceStoreInstallAppResponse;
|
|
41030
|
+
partnerProfile: MarketplaceStorePartnerProfileResponse;
|
|
40276
41031
|
};
|
|
40277
41032
|
export declare type MarketplaceStoreQueryApiCategoryArgs = {
|
|
40278
41033
|
slug: Scalars['String']['input'];
|
|
@@ -40286,6 +41041,10 @@ export declare type MarketplaceStoreQueryApiHomePageArgs = {
|
|
|
40286
41041
|
export declare type MarketplaceStoreQueryApiInstallAppStatusArgs = {
|
|
40287
41042
|
id: Scalars['ID']['input'];
|
|
40288
41043
|
};
|
|
41044
|
+
export declare type MarketplaceStoreQueryApiPartnerProfileArgs = {
|
|
41045
|
+
developerId?: InputMaybe<Scalars['ID']['input']>;
|
|
41046
|
+
vendorId: Scalars['ID']['input'];
|
|
41047
|
+
};
|
|
40289
41048
|
export declare type MarketplaceSupportedAtlassianProduct = {
|
|
40290
41049
|
__typename?: 'MarketplaceSupportedAtlassianProduct';
|
|
40291
41050
|
hostingOptions: Array<AtlassianProductHostingType>;
|
|
@@ -41369,6 +42128,44 @@ export declare type OriginalSplitIssue = {
|
|
|
41369
42128
|
id: Scalars['ID']['input'];
|
|
41370
42129
|
summary: Scalars['String']['input'];
|
|
41371
42130
|
};
|
|
42131
|
+
export declare type PeapdcpEnrollmentInput = {
|
|
42132
|
+
cloudId: Scalars['ID']['input'];
|
|
42133
|
+
desiredStatus: Scalars['Boolean']['input'];
|
|
42134
|
+
product: PeapdcpProduct;
|
|
42135
|
+
};
|
|
42136
|
+
export declare type PeapdcpEnrollmentStatus = {
|
|
42137
|
+
__typename?: 'PEAPDCPEnrollmentStatus';
|
|
42138
|
+
cloudId: Scalars['ID']['output'];
|
|
42139
|
+
enrollmentStatus?: Maybe<Scalars['Boolean']['output']>;
|
|
42140
|
+
error?: Maybe<Array<Scalars['String']['output']>>;
|
|
42141
|
+
product: PeapdcpProduct;
|
|
42142
|
+
success: Scalars['Boolean']['output'];
|
|
42143
|
+
};
|
|
42144
|
+
export declare type PeapdcpEnrollmentStatusInput = {
|
|
42145
|
+
cloudId: Scalars['ID']['input'];
|
|
42146
|
+
product: PeapdcpProduct;
|
|
42147
|
+
};
|
|
42148
|
+
export declare enum PeapdcpProduct {
|
|
42149
|
+
Confluence = "CONFLUENCE",
|
|
42150
|
+
Jira = "JIRA"
|
|
42151
|
+
}
|
|
42152
|
+
export declare type PeapEnrollmentInput = {
|
|
42153
|
+
cloudId: Scalars['ID']['input'];
|
|
42154
|
+
desiredStatus: Scalars['Boolean']['input'];
|
|
42155
|
+
programId: Scalars['ID']['input'];
|
|
42156
|
+
};
|
|
42157
|
+
export declare type PeapEnrollmentStatus = {
|
|
42158
|
+
__typename?: 'PEAPEnrollmentStatus';
|
|
42159
|
+
cloudId: Scalars['ID']['output'];
|
|
42160
|
+
enrollmentStatus?: Maybe<Scalars['Boolean']['output']>;
|
|
42161
|
+
error?: Maybe<Array<Scalars['String']['output']>>;
|
|
42162
|
+
programId: Scalars['ID']['output'];
|
|
42163
|
+
success: Scalars['Boolean']['output'];
|
|
42164
|
+
};
|
|
42165
|
+
export declare type PeapEnrollmentStatusInput = {
|
|
42166
|
+
cloudId: Scalars['ID']['input'];
|
|
42167
|
+
programId: Scalars['ID']['input'];
|
|
42168
|
+
};
|
|
41372
42169
|
export declare type PeapInternalMutationApi = {
|
|
41373
42170
|
__typename?: 'PEAPInternalMutationApi';
|
|
41374
42171
|
_module?: Maybe<Scalars['String']['output']>;
|
|
@@ -41394,6 +42191,10 @@ export declare type PeapInternalQueryApi = {
|
|
|
41394
42191
|
export declare type PeapMutationApi = {
|
|
41395
42192
|
__typename?: 'PEAPMutationApi';
|
|
41396
42193
|
internal: PeapInternalMutationApi;
|
|
42194
|
+
programEnrollment: PeapProgramEnrollmentStatus;
|
|
42195
|
+
};
|
|
42196
|
+
export declare type PeapMutationApiProgramEnrollmentArgs = {
|
|
42197
|
+
input: PeapProgramEnrollmentInput;
|
|
41397
42198
|
};
|
|
41398
42199
|
export declare type PeapNewProgramInput = {
|
|
41399
42200
|
description: Scalars['String']['input'];
|
|
@@ -41428,6 +42229,15 @@ export declare type PeapProgramEdge = {
|
|
|
41428
42229
|
cursor: Scalars['String']['output'];
|
|
41429
42230
|
node: PeapProgram;
|
|
41430
42231
|
};
|
|
42232
|
+
export declare type PeapProgramEnrollmentInput = {
|
|
42233
|
+
dcp?: InputMaybe<PeapdcpEnrollmentInput>;
|
|
42234
|
+
peap?: InputMaybe<PeapEnrollmentInput>;
|
|
42235
|
+
};
|
|
42236
|
+
export declare type PeapProgramEnrollmentStatus = PeapdcpEnrollmentStatus | PeapEnrollmentStatus;
|
|
42237
|
+
export declare type PeapProgramEnrollmentStatusInput = {
|
|
42238
|
+
dcp?: InputMaybe<PeapdcpEnrollmentStatusInput>;
|
|
42239
|
+
peap?: InputMaybe<PeapEnrollmentStatusInput>;
|
|
42240
|
+
};
|
|
41431
42241
|
export declare type PeapProgramInternalData = {
|
|
41432
42242
|
__typename?: 'PEAPProgramInternalData';
|
|
41433
42243
|
cdacGroup?: Maybe<Scalars['String']['output']>;
|
|
@@ -41451,11 +42261,15 @@ export declare type PeapQueryApi = {
|
|
|
41451
42261
|
__typename?: 'PEAPQueryApi';
|
|
41452
42262
|
internal: PeapInternalQueryApi;
|
|
41453
42263
|
program?: Maybe<PeapProgram>;
|
|
42264
|
+
programEnrollment: PeapProgramEnrollmentStatus;
|
|
41454
42265
|
programs?: Maybe<PeapProgramConnection>;
|
|
41455
42266
|
};
|
|
41456
42267
|
export declare type PeapQueryApiProgramArgs = {
|
|
41457
42268
|
id: Scalars['ID']['input'];
|
|
41458
42269
|
};
|
|
42270
|
+
export declare type PeapQueryApiProgramEnrollmentArgs = {
|
|
42271
|
+
input: PeapProgramEnrollmentStatusInput;
|
|
42272
|
+
};
|
|
41459
42273
|
export declare type PeapQueryApiProgramsArgs = {
|
|
41460
42274
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
41461
42275
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
@@ -42802,6 +43616,7 @@ export declare type PolarisTimelineConfig = {
|
|
|
42802
43616
|
mode: PolarisTimelineMode;
|
|
42803
43617
|
startDateField?: Maybe<PolarisIdeaField>;
|
|
42804
43618
|
startTimestamp?: Maybe<Scalars['String']['output']>;
|
|
43619
|
+
summaryCardField?: Maybe<PolarisIdeaField>;
|
|
42805
43620
|
};
|
|
42806
43621
|
export declare enum PolarisTimelineMode {
|
|
42807
43622
|
Months = "MONTHS",
|
|
@@ -43075,7 +43890,6 @@ export declare type Query = {
|
|
|
43075
43890
|
appStoredEntity?: Maybe<AppStoredEntity>;
|
|
43076
43891
|
apps?: Maybe<AppConnection>;
|
|
43077
43892
|
aquaOutgoingEmailLogs?: Maybe<AquaOutgoingEmailLogsQueryApi>;
|
|
43078
|
-
atlas?: Maybe<TownsquareQueryApi>;
|
|
43079
43893
|
bitbucket?: Maybe<BitbucketQuery>;
|
|
43080
43894
|
bitbucketRepositoriesAvailableToLinkWithNewDevOpsService?: Maybe<BitbucketRepositoryIdConnection>;
|
|
43081
43895
|
boardScope?: Maybe<BoardScope>;
|
|
@@ -43139,6 +43953,7 @@ export declare type Query = {
|
|
|
43139
43953
|
jiraProjectRelationshipsForRepository?: Maybe<JiraProjectAndRepositoryRelationshipConnection>;
|
|
43140
43954
|
jiraProjectRelationshipsForService?: Maybe<DevOpsServiceAndJiraProjectRelationshipConnection>;
|
|
43141
43955
|
jiraReleases?: Maybe<JiraReleases>;
|
|
43956
|
+
jsmChat?: Maybe<JsmChatQuery>;
|
|
43142
43957
|
jsw?: Maybe<JswQuery>;
|
|
43143
43958
|
knowledgeDiscovery?: Maybe<KnowledgeDiscoveryQueryApi>;
|
|
43144
43959
|
marketplaceApp?: Maybe<MarketplaceApp>;
|
|
@@ -43187,6 +44002,7 @@ export declare type Query = {
|
|
|
43187
44002
|
sandbox: SandboxQuery;
|
|
43188
44003
|
search?: Maybe<SearchQueryApi>;
|
|
43189
44004
|
shepherd?: Maybe<ShepherdQuery>;
|
|
44005
|
+
signup?: Maybe<SignupQueryApi>;
|
|
43190
44006
|
smarts?: Maybe<SmartsQueryApi>;
|
|
43191
44007
|
softwareBoards?: Maybe<BoardScopeConnection>;
|
|
43192
44008
|
suggestions?: Maybe<AutoSuggestionApi>;
|
|
@@ -44982,6 +45798,7 @@ export declare type SearchConfluenceFilter = {
|
|
|
44982
45798
|
export declare type SearchConfluencePageBlogAttachment = SearchResult & {
|
|
44983
45799
|
__typename?: 'SearchConfluencePageBlogAttachment';
|
|
44984
45800
|
confluenceEntity?: Maybe<SearchConfluenceEntity>;
|
|
45801
|
+
createdDate?: Maybe<Scalars['DateTime']['output']>;
|
|
44985
45802
|
description: Scalars['String']['output'];
|
|
44986
45803
|
entityId?: Maybe<Scalars['String']['output']>;
|
|
44987
45804
|
excerpt?: Maybe<Scalars['String']['output']>;
|
|
@@ -45164,6 +45981,7 @@ export declare type SearchResultBitbucketRepository = SearchResult & {
|
|
|
45164
45981
|
};
|
|
45165
45982
|
export declare type SearchResultGoogleDocument = SearchResult & {
|
|
45166
45983
|
__typename?: 'SearchResultGoogleDocument';
|
|
45984
|
+
bodyText: Scalars['String']['output'];
|
|
45167
45985
|
description: Scalars['String']['output'];
|
|
45168
45986
|
excerpt?: Maybe<Scalars['String']['output']>;
|
|
45169
45987
|
iconUrl?: Maybe<Scalars['URL']['output']>;
|
|
@@ -45231,10 +46049,24 @@ export declare type SearchResultJiraIssue = SearchResult & {
|
|
|
45231
46049
|
iconUrl?: Maybe<Scalars['URL']['output']>;
|
|
45232
46050
|
id: Scalars['ID']['output'];
|
|
45233
46051
|
issue?: Maybe<JiraIssue>;
|
|
46052
|
+
status?: Maybe<SearchResultJiraIssueStatus>;
|
|
45234
46053
|
title: Scalars['String']['output'];
|
|
45235
46054
|
type: SearchResultType;
|
|
45236
46055
|
url: Scalars['URL']['output'];
|
|
45237
46056
|
};
|
|
46057
|
+
export declare type SearchResultJiraIssueStatus = {
|
|
46058
|
+
__typename?: 'SearchResultJiraIssueStatus';
|
|
46059
|
+
id: Scalars['ID']['output'];
|
|
46060
|
+
name: Scalars['String']['output'];
|
|
46061
|
+
statusCategory?: Maybe<SearchResultJiraIssueStatusCategory>;
|
|
46062
|
+
};
|
|
46063
|
+
export declare type SearchResultJiraIssueStatusCategory = {
|
|
46064
|
+
__typename?: 'SearchResultJiraIssueStatusCategory';
|
|
46065
|
+
colorName?: Maybe<Scalars['String']['output']>;
|
|
46066
|
+
id: Scalars['ID']['output'];
|
|
46067
|
+
key: Scalars['String']['output'];
|
|
46068
|
+
name: Scalars['String']['output'];
|
|
46069
|
+
};
|
|
45238
46070
|
export declare type SearchResultJiraProject = SearchResult & {
|
|
45239
46071
|
__typename?: 'SearchResultJiraProject';
|
|
45240
46072
|
canView: Scalars['Boolean']['output'];
|
|
@@ -45253,6 +46085,7 @@ export declare type SearchResultJiraProject = SearchResult & {
|
|
|
45253
46085
|
};
|
|
45254
46086
|
export declare type SearchResultMicrosoftDocument = SearchResult & {
|
|
45255
46087
|
__typename?: 'SearchResultMicrosoftDocument';
|
|
46088
|
+
bodyText: Scalars['String']['output'];
|
|
45256
46089
|
description: Scalars['String']['output'];
|
|
45257
46090
|
excerpt?: Maybe<Scalars['String']['output']>;
|
|
45258
46091
|
iconUrl?: Maybe<Scalars['URL']['output']>;
|
|
@@ -45525,6 +46358,7 @@ export declare type ShepherdActivityHighlight = {
|
|
|
45525
46358
|
categorizedMetadata?: Maybe<Array<ShepherdCategorizedAlertMetadata>>;
|
|
45526
46359
|
eventIds?: Maybe<Array<Scalars['String']['output']>>;
|
|
45527
46360
|
histogram?: Maybe<Array<ShepherdActivityHistogramBucket>>;
|
|
46361
|
+
metadata?: Maybe<ShepherdAlertMetaData>;
|
|
45528
46362
|
resourceEvents?: Maybe<Array<ShepherdResourceEvent>>;
|
|
45529
46363
|
subject?: Maybe<ShepherdSubject>;
|
|
45530
46364
|
time?: Maybe<ShepherdTime>;
|
|
@@ -45657,6 +46491,10 @@ export declare type ShepherdAlertEdge = {
|
|
|
45657
46491
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
45658
46492
|
node?: Maybe<ShepherdAlert>;
|
|
45659
46493
|
};
|
|
46494
|
+
export declare type ShepherdAlertMetaData = {
|
|
46495
|
+
__typename?: 'ShepherdAlertMetaData';
|
|
46496
|
+
siteContainerResourceCount?: Maybe<Scalars['Int']['output']>;
|
|
46497
|
+
};
|
|
45660
46498
|
export declare type ShepherdAlertQueries = {
|
|
45661
46499
|
__typename?: 'ShepherdAlertQueries';
|
|
45662
46500
|
byAri?: Maybe<ShepherdAlertResult>;
|
|
@@ -46019,6 +46857,9 @@ export declare type ShepherdDetectionRemoveSettingValuePayload = Payload & {
|
|
|
46019
46857
|
export declare type ShepherdDetectionResourceExclusion = {
|
|
46020
46858
|
__typename?: 'ShepherdDetectionResourceExclusion';
|
|
46021
46859
|
ari: Scalars['ID']['output'];
|
|
46860
|
+
createdBy?: Maybe<Scalars['ID']['output']>;
|
|
46861
|
+
createdOn?: Maybe<Scalars['DateTime']['output']>;
|
|
46862
|
+
resourceUrl?: Maybe<Scalars['String']['output']>;
|
|
46022
46863
|
};
|
|
46023
46864
|
export declare enum ShepherdDetectionScanningFrequency {
|
|
46024
46865
|
RealTime = "REAL_TIME",
|
|
@@ -46067,20 +46908,22 @@ export declare type ShepherdDetectionUpdateSettingValuePayload = Payload & {
|
|
|
46067
46908
|
};
|
|
46068
46909
|
export declare type ShepherdExclusionContentInfo = {
|
|
46069
46910
|
__typename?: 'ShepherdExclusionContentInfo';
|
|
46911
|
+
ari?: Maybe<Scalars['String']['output']>;
|
|
46070
46912
|
classification?: Maybe<Scalars['String']['output']>;
|
|
46071
46913
|
owner?: Maybe<Scalars['ID']['output']>;
|
|
46072
46914
|
product?: Maybe<ShepherdAtlassianProduct>;
|
|
46073
46915
|
site?: Maybe<ShepherdSite>;
|
|
46074
46916
|
space?: Maybe<Scalars['String']['output']>;
|
|
46075
46917
|
title?: Maybe<Scalars['String']['output']>;
|
|
46918
|
+
url?: Maybe<Scalars['URL']['output']>;
|
|
46076
46919
|
};
|
|
46077
46920
|
export declare type ShepherdExclusionContentInfoResult = QueryError | ShepherdExclusionContentInfo;
|
|
46078
46921
|
export declare type ShepherdExclusionsQueries = {
|
|
46079
46922
|
__typename?: 'ShepherdExclusionsQueries';
|
|
46080
|
-
|
|
46923
|
+
contentInfo?: Maybe<ShepherdExclusionContentInfoResult>;
|
|
46081
46924
|
};
|
|
46082
|
-
export declare type
|
|
46083
|
-
|
|
46925
|
+
export declare type ShepherdExclusionsQueriesContentInfoArgs = {
|
|
46926
|
+
contentUrlOrAri: Scalars['String']['input'];
|
|
46084
46927
|
productAti: Scalars['String']['input'];
|
|
46085
46928
|
workspaceId: Scalars['ID']['input'];
|
|
46086
46929
|
};
|
|
@@ -46279,6 +47122,7 @@ export declare type ShepherdResourceActivity = {
|
|
|
46279
47122
|
actor: ShepherdActor;
|
|
46280
47123
|
context: Array<ShepherdAuditLogContext>;
|
|
46281
47124
|
id: Scalars['String']['output'];
|
|
47125
|
+
message?: Maybe<Scalars['JSON']['output']>;
|
|
46282
47126
|
resourceAri: Scalars['String']['output'];
|
|
46283
47127
|
resourceUrl?: Maybe<Scalars['String']['output']>;
|
|
46284
47128
|
time: Scalars['DateTime']['output'];
|
|
@@ -46566,6 +47410,19 @@ export declare type ShepherdWorkspaceUpdateCustomDetectionInput = {
|
|
|
46566
47410
|
export declare type ShepherdWorkspaceUpdateInput = {
|
|
46567
47411
|
shouldOnboard: Scalars['Boolean']['input'];
|
|
46568
47412
|
};
|
|
47413
|
+
export declare type SignupProvisioningStatus = {
|
|
47414
|
+
__typename?: 'SignupProvisioningStatus';
|
|
47415
|
+
orchestrationId: Scalars['String']['output'];
|
|
47416
|
+
provisionComplete: Scalars['Boolean']['output'];
|
|
47417
|
+
};
|
|
47418
|
+
export declare type SignupQueryApi = {
|
|
47419
|
+
__typename?: 'SignupQueryApi';
|
|
47420
|
+
getSample: SignupProvisioningStatus;
|
|
47421
|
+
};
|
|
47422
|
+
export declare type SignupSubscriptionApi = {
|
|
47423
|
+
__typename?: 'SignupSubscriptionApi';
|
|
47424
|
+
signupProvisioningStatus?: Maybe<SignupProvisioningStatus>;
|
|
47425
|
+
};
|
|
46569
47426
|
export declare type SmartsContext = {
|
|
46570
47427
|
additionalContextList?: InputMaybe<Array<SmartsKeyValue>>;
|
|
46571
47428
|
containerId?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -46875,6 +47732,7 @@ export declare type Subscription = {
|
|
|
46875
47732
|
ecosystem?: Maybe<EcosystemSubscription>;
|
|
46876
47733
|
jira?: Maybe<JiraSubscription>;
|
|
46877
47734
|
sandbox: SandboxSubscription;
|
|
47735
|
+
signup?: Maybe<SignupSubscriptionApi>;
|
|
46878
47736
|
testing?: Maybe<TestingSubscription>;
|
|
46879
47737
|
trello: TrelloSubscriptionApi;
|
|
46880
47738
|
};
|
|
@@ -47651,17 +48509,11 @@ export declare type ToggleBoardFeatureOutput = MutationResponse & {
|
|
|
47651
48509
|
};
|
|
47652
48510
|
export declare type Toolchain = {
|
|
47653
48511
|
__typename?: 'Toolchain';
|
|
47654
|
-
check3LO?: Maybe<ToolchainCheck3Lo>;
|
|
47655
48512
|
checkAuth?: Maybe<ToolchainCheckAuth>;
|
|
47656
48513
|
containers?: Maybe<ToolchainContainerConnection>;
|
|
47657
48514
|
syncStatus?: Maybe<ToolchainSyncStatus>;
|
|
47658
48515
|
workspaces?: Maybe<ToolchainWorkspaceConnection>;
|
|
47659
48516
|
};
|
|
47660
|
-
export declare type ToolchainCheck3LoArgs = {
|
|
47661
|
-
cloudId: Scalars['ID']['input'];
|
|
47662
|
-
providerId: Scalars['String']['input'];
|
|
47663
|
-
providerType?: InputMaybe<ToolchainProviderType>;
|
|
47664
|
-
};
|
|
47665
48517
|
export declare type ToolchainCheckAuthArgs = {
|
|
47666
48518
|
cloudId: Scalars['ID']['input'];
|
|
47667
48519
|
providerId: Scalars['String']['input'];
|
|
@@ -47729,10 +48581,6 @@ export declare type ToolchainAssociateEntityInput = {
|
|
|
47729
48581
|
};
|
|
47730
48582
|
export declare type ToolchainAssociatedContainer = DevOpsDocument | DevOpsOperationsComponentDetails | DevOpsRepository | DevOpsService;
|
|
47731
48583
|
export declare type ToolchainAssociatedEntity = DevOpsDesign;
|
|
47732
|
-
export declare type ToolchainCheck3Lo = {
|
|
47733
|
-
__typename?: 'ToolchainCheck3LO';
|
|
47734
|
-
authorized: Scalars['Boolean']['output'];
|
|
47735
|
-
};
|
|
47736
48584
|
export declare type ToolchainCheck3LoAuth = ToolchainCheckAuth & {
|
|
47737
48585
|
__typename?: 'ToolchainCheck3LOAuth';
|
|
47738
48586
|
authorized: Scalars['Boolean']['output'];
|
|
@@ -47962,12 +48810,18 @@ export declare type TownsquareGoal = Node & {
|
|
|
47962
48810
|
key: Scalars['String']['output'];
|
|
47963
48811
|
name: Scalars['String']['output'];
|
|
47964
48812
|
owner?: Maybe<User>;
|
|
48813
|
+
parentGoal?: Maybe<TownsquareGoal>;
|
|
47965
48814
|
state?: Maybe<TownsquareGoalState>;
|
|
47966
48815
|
status?: Maybe<TownsquareStatus>;
|
|
48816
|
+
subGoals?: Maybe<TownsquareGoalConnection>;
|
|
47967
48817
|
targetDate?: Maybe<TownsquareTargetDate>;
|
|
47968
48818
|
url?: Maybe<Scalars['String']['output']>;
|
|
47969
48819
|
uuid: Scalars['String']['output'];
|
|
47970
48820
|
};
|
|
48821
|
+
export declare type TownsquareGoalSubGoalsArgs = {
|
|
48822
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
48823
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
48824
|
+
};
|
|
47971
48825
|
export declare type TownsquareGoalConnection = {
|
|
47972
48826
|
__typename?: 'TownsquareGoalConnection';
|
|
47973
48827
|
edges?: Maybe<Array<Maybe<TownsquareGoalEdge>>>;
|
|
@@ -48541,6 +49395,7 @@ export declare type TrelloBoardUpdatedDeltas = {
|
|
|
48541
49395
|
};
|
|
48542
49396
|
export declare type TrelloBoardViewer = {
|
|
48543
49397
|
__typename?: 'TrelloBoardViewer';
|
|
49398
|
+
aiEmailEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
48544
49399
|
calendarKey?: Maybe<Scalars['String']['output']>;
|
|
48545
49400
|
email?: Maybe<TrelloBoardViewerEmail>;
|
|
48546
49401
|
lastSeenAt?: Maybe<Scalars['DateTime']['output']>;
|
|
@@ -49095,6 +49950,7 @@ export declare type TrelloMutationApi = {
|
|
|
49095
49950
|
unarchiveCard?: Maybe<TrelloUnarchiveCardPayload>;
|
|
49096
49951
|
unwatchCard?: Maybe<TrelloWatchCardPayload>;
|
|
49097
49952
|
updateBoardName?: Maybe<TrelloUpdateBoardNamePayload>;
|
|
49953
|
+
updateBoardViewerAIEmail?: Maybe<TrelloUpdateBoardViewerAiEmailPayload>;
|
|
49098
49954
|
updateCardName?: Maybe<TrelloUpdateCardNamePayload>;
|
|
49099
49955
|
watchCard?: Maybe<TrelloWatchCardPayload>;
|
|
49100
49956
|
};
|
|
@@ -49122,6 +49978,9 @@ export declare type TrelloMutationApiUnwatchCardArgs = {
|
|
|
49122
49978
|
export declare type TrelloMutationApiUpdateBoardNameArgs = {
|
|
49123
49979
|
input: TrelloUpdateBoardNameInput;
|
|
49124
49980
|
};
|
|
49981
|
+
export declare type TrelloMutationApiUpdateBoardViewerAiEmailArgs = {
|
|
49982
|
+
input: TrelloUpdateBoardViewerAiEmailInput;
|
|
49983
|
+
};
|
|
49125
49984
|
export declare type TrelloMutationApiUpdateCardNameArgs = {
|
|
49126
49985
|
input: TrelloUpdateCardNameInput;
|
|
49127
49986
|
};
|
|
@@ -49360,6 +50219,16 @@ export declare type TrelloUpdateBoardNamePayload = Payload & {
|
|
|
49360
50219
|
errors?: Maybe<Array<MutationError>>;
|
|
49361
50220
|
success: Scalars['Boolean']['output'];
|
|
49362
50221
|
};
|
|
50222
|
+
export declare type TrelloUpdateBoardViewerAiEmailInput = {
|
|
50223
|
+
boardId: Scalars['ID']['input'];
|
|
50224
|
+
value: Scalars['Boolean']['input'];
|
|
50225
|
+
};
|
|
50226
|
+
export declare type TrelloUpdateBoardViewerAiEmailPayload = Payload & {
|
|
50227
|
+
__typename?: 'TrelloUpdateBoardViewerAIEmailPayload';
|
|
50228
|
+
errors?: Maybe<Array<MutationError>>;
|
|
50229
|
+
success: Scalars['Boolean']['output'];
|
|
50230
|
+
viewer?: Maybe<TrelloBoardViewer>;
|
|
50231
|
+
};
|
|
49363
50232
|
export declare type TrelloUpdateCardNameInput = {
|
|
49364
50233
|
cardId: Scalars['ID']['input'];
|
|
49365
50234
|
name?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -49914,6 +50783,7 @@ export declare type UpdatePolarisTimelineConfig = {
|
|
|
49914
50783
|
mode?: InputMaybe<PolarisTimelineMode>;
|
|
49915
50784
|
startDateField?: InputMaybe<Scalars['ID']['input']>;
|
|
49916
50785
|
startTimestamp?: InputMaybe<Scalars['String']['input']>;
|
|
50786
|
+
summaryCardField?: InputMaybe<Scalars['ID']['input']>;
|
|
49917
50787
|
};
|
|
49918
50788
|
export declare type UpdatePolarisViewArrangementInfoPayload = Payload & {
|
|
49919
50789
|
__typename?: 'UpdatePolarisViewArrangementInfoPayload';
|