@forge/cli-shared 3.25.0-next.5 → 3.25.0-next.6
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
CHANGED
|
@@ -191,12 +191,8 @@ export declare type ActionsExecuteActionFilter = {
|
|
|
191
191
|
providerAri?: InputMaybe<Scalars['String']['input']>;
|
|
192
192
|
};
|
|
193
193
|
export declare type ActionsExecuteActionInput = {
|
|
194
|
-
inputs?: InputMaybe<
|
|
195
|
-
targetUrl
|
|
196
|
-
};
|
|
197
|
-
export declare type ActionsExecuteActionInputTuple = {
|
|
198
|
-
key?: InputMaybe<Scalars['String']['input']>;
|
|
199
|
-
value?: InputMaybe<Scalars['JSON']['input']>;
|
|
194
|
+
inputs?: InputMaybe<Scalars['JSON']['input']>;
|
|
195
|
+
targetUrl?: InputMaybe<Scalars['String']['input']>;
|
|
200
196
|
};
|
|
201
197
|
export declare type ActionsExecuteResponse = {
|
|
202
198
|
__typename?: 'ActionsExecuteResponse';
|
|
@@ -2823,9 +2819,9 @@ export declare type CcpTransactionAccount = CommerceTransactionAccount & {
|
|
|
2823
2819
|
__typename?: 'CcpTransactionAccount';
|
|
2824
2820
|
experienceCapabilities?: Maybe<CcpTransactionAccountExperienceCapabilities>;
|
|
2825
2821
|
id: Scalars['ID']['output'];
|
|
2826
|
-
|
|
2822
|
+
isCurrentUserBillingAdmin?: Maybe<Scalars['Boolean']['output']>;
|
|
2823
|
+
isManagedByPartner?: Maybe<Scalars['Boolean']['output']>;
|
|
2827
2824
|
key?: Maybe<Scalars['String']['output']>;
|
|
2828
|
-
partner?: Maybe<Scalars['Boolean']['output']>;
|
|
2829
2825
|
};
|
|
2830
2826
|
export declare type CcpTransactionAccountExperienceCapabilities = CommerceTransactionAccountExperienceCapabilities & {
|
|
2831
2827
|
__typename?: 'CcpTransactionAccountExperienceCapabilities';
|
|
@@ -3025,9 +3021,9 @@ export declare type CommerceSubscription = {
|
|
|
3025
3021
|
};
|
|
3026
3022
|
export declare type CommerceTransactionAccount = {
|
|
3027
3023
|
experienceCapabilities?: Maybe<CommerceTransactionAccountExperienceCapabilities>;
|
|
3028
|
-
|
|
3024
|
+
isCurrentUserBillingAdmin?: Maybe<Scalars['Boolean']['output']>;
|
|
3025
|
+
isManagedByPartner?: Maybe<Scalars['Boolean']['output']>;
|
|
3029
3026
|
key?: Maybe<Scalars['String']['output']>;
|
|
3030
|
-
partner?: Maybe<Scalars['Boolean']['output']>;
|
|
3031
3027
|
};
|
|
3032
3028
|
export declare type CommerceTransactionAccountExperienceCapabilities = {
|
|
3033
3029
|
addPaymentMethod?: Maybe<CommerceExperienceCapability>;
|
|
@@ -3441,6 +3437,7 @@ export declare type CompassCatalogQueryApi = {
|
|
|
3441
3437
|
componentTypes?: Maybe<CompassComponentTypesQueryResult>;
|
|
3442
3438
|
customFieldDefinition?: Maybe<CompassCustomFieldDefinitionResult>;
|
|
3443
3439
|
customFieldDefinitions?: Maybe<CompassCustomFieldDefinitionsResult>;
|
|
3440
|
+
documentationCategories?: Maybe<CompassDocumentationCategoriesConnection>;
|
|
3444
3441
|
eventSource?: Maybe<CompassEventSourceResult>;
|
|
3445
3442
|
fieldDefinitionsByComponentType?: Maybe<CompassFieldDefinitionsResult>;
|
|
3446
3443
|
incomingWebhooks?: Maybe<CompassIncomingWebhooksConnection>;
|
|
@@ -3494,6 +3491,11 @@ export declare type CompassCatalogQueryApiCustomFieldDefinitionArgs = {
|
|
|
3494
3491
|
export declare type CompassCatalogQueryApiCustomFieldDefinitionsArgs = {
|
|
3495
3492
|
query: CompassCustomFieldDefinitionsQuery;
|
|
3496
3493
|
};
|
|
3494
|
+
export declare type CompassCatalogQueryApiDocumentationCategoriesArgs = {
|
|
3495
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
3496
|
+
cloudId: Scalars['ID']['input'];
|
|
3497
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
3498
|
+
};
|
|
3497
3499
|
export declare type CompassCatalogQueryApiEventSourceArgs = {
|
|
3498
3500
|
cloudId: Scalars['ID']['input'];
|
|
3499
3501
|
eventType: CompassEventType;
|
|
@@ -4340,6 +4342,23 @@ export declare enum CompassDeploymentEventState {
|
|
|
4340
4342
|
Successful = "SUCCESSFUL",
|
|
4341
4343
|
Unknown = "UNKNOWN"
|
|
4342
4344
|
}
|
|
4345
|
+
export declare type CompassDocumentationCategoriesConnection = {
|
|
4346
|
+
__typename?: 'CompassDocumentationCategoriesConnection';
|
|
4347
|
+
edges?: Maybe<Array<Maybe<CompassDocumentationCategoryEdge>>>;
|
|
4348
|
+
nodes?: Maybe<Array<CompassDocumentationCategory>>;
|
|
4349
|
+
pageInfo: PageInfo;
|
|
4350
|
+
};
|
|
4351
|
+
export declare type CompassDocumentationCategory = Node & {
|
|
4352
|
+
__typename?: 'CompassDocumentationCategory';
|
|
4353
|
+
description?: Maybe<Scalars['String']['output']>;
|
|
4354
|
+
id: Scalars['ID']['output'];
|
|
4355
|
+
name: Scalars['String']['output'];
|
|
4356
|
+
};
|
|
4357
|
+
export declare type CompassDocumentationCategoryEdge = {
|
|
4358
|
+
__typename?: 'CompassDocumentationCategoryEdge';
|
|
4359
|
+
cursor: Scalars['String']['output'];
|
|
4360
|
+
node?: Maybe<CompassDocumentationCategory>;
|
|
4361
|
+
};
|
|
4343
4362
|
export declare type CompassEnumField = CompassField & {
|
|
4344
4363
|
__typename?: 'CompassEnumField';
|
|
4345
4364
|
definition?: Maybe<CompassFieldDefinition>;
|
|
@@ -7544,7 +7563,6 @@ export declare type CreatePolarisPlayInput = {
|
|
|
7544
7563
|
label: Scalars['String']['input'];
|
|
7545
7564
|
parameters?: InputMaybe<Scalars['JSON']['input']>;
|
|
7546
7565
|
project: Scalars['ID']['input'];
|
|
7547
|
-
skipFieldCreation?: InputMaybe<Scalars['Boolean']['input']>;
|
|
7548
7566
|
summary?: InputMaybe<Scalars['String']['input']>;
|
|
7549
7567
|
};
|
|
7550
7568
|
export declare type CreatePolarisPlayPayload = {
|
|
@@ -24437,9 +24455,9 @@ export declare type HamsSubscription = CommerceSubscription & {
|
|
|
24437
24455
|
export declare type HamsTransactionAccount = CommerceTransactionAccount & {
|
|
24438
24456
|
__typename?: 'HamsTransactionAccount';
|
|
24439
24457
|
experienceCapabilities?: Maybe<HamsTransactionAccountExperienceCapabilities>;
|
|
24440
|
-
|
|
24458
|
+
isCurrentUserBillingAdmin?: Maybe<Scalars['Boolean']['output']>;
|
|
24459
|
+
isManagedByPartner?: Maybe<Scalars['Boolean']['output']>;
|
|
24441
24460
|
key?: Maybe<Scalars['String']['output']>;
|
|
24442
|
-
partner?: Maybe<Scalars['Boolean']['output']>;
|
|
24443
24461
|
};
|
|
24444
24462
|
export declare type HamsTransactionAccountExperienceCapabilities = CommerceTransactionAccountExperienceCapabilities & {
|
|
24445
24463
|
__typename?: 'HamsTransactionAccountExperienceCapabilities';
|
|
@@ -24582,6 +24600,16 @@ export declare enum HelpCenterConversationFailureMessageType {
|
|
|
24582
24600
|
export declare type HelpCenterConversationInput = {
|
|
24583
24601
|
fallbackMessage?: InputMaybe<Scalars['String']['input']>;
|
|
24584
24602
|
};
|
|
24603
|
+
export declare type HelpCenterCreateInput = {
|
|
24604
|
+
name: HelpCenterNameInput;
|
|
24605
|
+
slug: Scalars['String']['input'];
|
|
24606
|
+
workspaceARI: Scalars['String']['input'];
|
|
24607
|
+
};
|
|
24608
|
+
export declare type HelpCenterCreatePayload = Payload & {
|
|
24609
|
+
__typename?: 'HelpCenterCreatePayload';
|
|
24610
|
+
errors?: Maybe<Array<MutationError>>;
|
|
24611
|
+
success: Scalars['Boolean']['output'];
|
|
24612
|
+
};
|
|
24585
24613
|
export declare type HelpCenterCreateTopicInput = {
|
|
24586
24614
|
description?: InputMaybe<Scalars['String']['input']>;
|
|
24587
24615
|
helpCenterAri?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -24714,6 +24742,7 @@ export declare enum HelpCenterMediaConfigOperationType {
|
|
|
24714
24742
|
}
|
|
24715
24743
|
export declare type HelpCenterMutationApi = {
|
|
24716
24744
|
__typename?: 'HelpCenterMutationApi';
|
|
24745
|
+
createHelpCenter?: Maybe<HelpCenterCreatePayload>;
|
|
24717
24746
|
createHelpDesk?: Maybe<HelpCenterHelpDeskPayload>;
|
|
24718
24747
|
createTopic?: Maybe<HelpCenterCreateTopicPayload>;
|
|
24719
24748
|
deleteHelpDesk?: Maybe<HelpCenterHelpDeskPayload>;
|
|
@@ -24726,6 +24755,9 @@ export declare type HelpCenterMutationApi = {
|
|
|
24726
24755
|
updateTopic?: Maybe<HelpCenterDeleteUpdateTopicPayload>;
|
|
24727
24756
|
updateTopicsOrder?: Maybe<HelpCenterUpdateTopicsOrderPayload>;
|
|
24728
24757
|
};
|
|
24758
|
+
export declare type HelpCenterMutationApiCreateHelpCenterArgs = {
|
|
24759
|
+
input: HelpCenterCreateInput;
|
|
24760
|
+
};
|
|
24729
24761
|
export declare type HelpCenterMutationApiCreateHelpDeskArgs = {
|
|
24730
24762
|
input: HelpCenterHelpDeskCreateInput;
|
|
24731
24763
|
};
|
|
@@ -24832,6 +24864,9 @@ export declare type HelpCenterQueryApiHelpCenterTopicByIdArgs = {
|
|
|
24832
24864
|
helpCenterAri: Scalars['ID']['input'];
|
|
24833
24865
|
topicId: Scalars['ID']['input'];
|
|
24834
24866
|
};
|
|
24867
|
+
export declare type HelpCenterQueryApiHelpCentersArgs = {
|
|
24868
|
+
workspaceAri: Scalars['ID']['input'];
|
|
24869
|
+
};
|
|
24835
24870
|
export declare type HelpCenterQueryApiHelpDeskByIdArgs = {
|
|
24836
24871
|
helpCenterAri: Scalars['ID']['input'];
|
|
24837
24872
|
helpDeskAri: Scalars['ID']['input'];
|
|
@@ -27140,6 +27175,89 @@ export declare enum JiraAttachmentsPermissions {
|
|
|
27140
27175
|
CreateAttachments = "CREATE_ATTACHMENTS",
|
|
27141
27176
|
DeleteOwnAttachments = "DELETE_OWN_ATTACHMENTS"
|
|
27142
27177
|
}
|
|
27178
|
+
export declare type JiraAutodevBasicPayload = Payload & {
|
|
27179
|
+
__typename?: 'JiraAutodevBasicPayload';
|
|
27180
|
+
errors?: Maybe<Array<MutationError>>;
|
|
27181
|
+
success: Scalars['Boolean']['output'];
|
|
27182
|
+
};
|
|
27183
|
+
export declare type JiraAutodevCodeChange = {
|
|
27184
|
+
__typename?: 'JiraAutodevCodeChange';
|
|
27185
|
+
diff: Scalars['String']['output'];
|
|
27186
|
+
filePath: Scalars['String']['output'];
|
|
27187
|
+
};
|
|
27188
|
+
export declare type JiraAutodevCodeChangeConnection = {
|
|
27189
|
+
__typename?: 'JiraAutodevCodeChangeConnection';
|
|
27190
|
+
edges?: Maybe<Array<Maybe<JiraAutodevCodeChangeEdge>>>;
|
|
27191
|
+
nodes?: Maybe<Array<Maybe<JiraAutodevCodeChange>>>;
|
|
27192
|
+
pageInfo: PageInfo;
|
|
27193
|
+
};
|
|
27194
|
+
export declare type JiraAutodevCodeChangeEdge = {
|
|
27195
|
+
__typename?: 'JiraAutodevCodeChangeEdge';
|
|
27196
|
+
cursor: Scalars['String']['output'];
|
|
27197
|
+
node?: Maybe<JiraAutodevCodeChange>;
|
|
27198
|
+
};
|
|
27199
|
+
export declare type JiraAutodevCreateJobPayload = Payload & {
|
|
27200
|
+
__typename?: 'JiraAutodevCreateJobPayload';
|
|
27201
|
+
errors?: Maybe<Array<MutationError>>;
|
|
27202
|
+
job?: Maybe<JiraAutodevJob>;
|
|
27203
|
+
success: Scalars['Boolean']['output'];
|
|
27204
|
+
};
|
|
27205
|
+
export declare type JiraAutodevJob = {
|
|
27206
|
+
__typename?: 'JiraAutodevJob';
|
|
27207
|
+
codeChanges?: Maybe<JiraAutodevCodeChangeConnection>;
|
|
27208
|
+
id: Scalars['ID']['output'];
|
|
27209
|
+
plan?: Maybe<JiraAutodevPlan>;
|
|
27210
|
+
progressText?: Maybe<Scalars['String']['output']>;
|
|
27211
|
+
pullRequests?: Maybe<JiraAutodevPullRequestConnection>;
|
|
27212
|
+
repoUrl?: Maybe<Scalars['String']['output']>;
|
|
27213
|
+
state?: Maybe<JiraAutodevState>;
|
|
27214
|
+
};
|
|
27215
|
+
export declare type JiraAutodevJobConnection = {
|
|
27216
|
+
__typename?: 'JiraAutodevJobConnection';
|
|
27217
|
+
edges?: Maybe<Array<Maybe<JiraAutodevJobEdge>>>;
|
|
27218
|
+
nodes?: Maybe<Array<Maybe<JiraAutodevJob>>>;
|
|
27219
|
+
pageInfo: PageInfo;
|
|
27220
|
+
};
|
|
27221
|
+
export declare type JiraAutodevJobEdge = {
|
|
27222
|
+
__typename?: 'JiraAutodevJobEdge';
|
|
27223
|
+
cursor: Scalars['String']['output'];
|
|
27224
|
+
node?: Maybe<JiraAutodevJob>;
|
|
27225
|
+
};
|
|
27226
|
+
export declare type JiraAutodevPlan = {
|
|
27227
|
+
__typename?: 'JiraAutodevPlan';
|
|
27228
|
+
acceptanceCriteria: Scalars['String']['output'];
|
|
27229
|
+
currentState: Scalars['String']['output'];
|
|
27230
|
+
desiredState: Scalars['String']['output'];
|
|
27231
|
+
prompt: Scalars['String']['output'];
|
|
27232
|
+
};
|
|
27233
|
+
export declare type JiraAutodevPullRequest = {
|
|
27234
|
+
__typename?: 'JiraAutodevPullRequest';
|
|
27235
|
+
url: Scalars['String']['output'];
|
|
27236
|
+
};
|
|
27237
|
+
export declare type JiraAutodevPullRequestConnection = {
|
|
27238
|
+
__typename?: 'JiraAutodevPullRequestConnection';
|
|
27239
|
+
edges?: Maybe<Array<Maybe<JiraAutodevPullRequestEdge>>>;
|
|
27240
|
+
nodes?: Maybe<Array<Maybe<JiraAutodevPullRequest>>>;
|
|
27241
|
+
pageInfo: PageInfo;
|
|
27242
|
+
};
|
|
27243
|
+
export declare type JiraAutodevPullRequestEdge = {
|
|
27244
|
+
__typename?: 'JiraAutodevPullRequestEdge';
|
|
27245
|
+
cursor: Scalars['String']['output'];
|
|
27246
|
+
node?: Maybe<JiraAutodevPullRequest>;
|
|
27247
|
+
};
|
|
27248
|
+
export declare enum JiraAutodevState {
|
|
27249
|
+
CodeGenerating = "CODE_GENERATING",
|
|
27250
|
+
CodeGenerationFail = "CODE_GENERATION_FAIL",
|
|
27251
|
+
CodeGenerationReady = "CODE_GENERATION_READY",
|
|
27252
|
+
CodeGenerationSuccess = "CODE_GENERATION_SUCCESS",
|
|
27253
|
+
Created = "CREATED",
|
|
27254
|
+
PlanGenerating = "PLAN_GENERATING",
|
|
27255
|
+
PlanGenerationFail = "PLAN_GENERATION_FAIL",
|
|
27256
|
+
PlanGenerationSuccess = "PLAN_GENERATION_SUCCESS",
|
|
27257
|
+
PullrequestCreating = "PULLREQUEST_CREATING",
|
|
27258
|
+
PullrequestCreationFail = "PULLREQUEST_CREATION_FAIL",
|
|
27259
|
+
PullrequestCreationSuccess = "PULLREQUEST_CREATION_SUCCESS"
|
|
27260
|
+
}
|
|
27143
27261
|
export declare type JiraAutofixCreateJobPayload = Payload & {
|
|
27144
27262
|
__typename?: 'JiraAutofixCreateJobPayload';
|
|
27145
27263
|
errors?: Maybe<Array<MutationError>>;
|
|
@@ -28001,7 +28119,7 @@ export declare enum JiraConfigStateProviderType {
|
|
|
28001
28119
|
export declare type JiraConfluenceRemoteIssueLink = {
|
|
28002
28120
|
__typename?: 'JiraConfluenceRemoteIssueLink';
|
|
28003
28121
|
href?: Maybe<Scalars['String']['output']>;
|
|
28004
|
-
id
|
|
28122
|
+
id: Scalars['ID']['output'];
|
|
28005
28123
|
relationship?: Maybe<Scalars['String']['output']>;
|
|
28006
28124
|
title?: Maybe<Scalars['String']['output']>;
|
|
28007
28125
|
};
|
|
@@ -28269,7 +28387,7 @@ export declare type JiraCustomRemoteIssueLink = {
|
|
|
28269
28387
|
href?: Maybe<Scalars['String']['output']>;
|
|
28270
28388
|
iconTooltipSuffix?: Maybe<Scalars['String']['output']>;
|
|
28271
28389
|
iconUrl?: Maybe<Scalars['String']['output']>;
|
|
28272
|
-
id
|
|
28390
|
+
id: Scalars['ID']['output'];
|
|
28273
28391
|
relationship?: Maybe<Scalars['String']['output']>;
|
|
28274
28392
|
resolved?: Maybe<Scalars['Boolean']['output']>;
|
|
28275
28393
|
statusIconTooltip?: Maybe<Scalars['String']['output']>;
|
|
@@ -28429,6 +28547,9 @@ export declare type JiraDeleteShortcutInput = {
|
|
|
28429
28547
|
projectId: Scalars['ID']['input'];
|
|
28430
28548
|
shortcutId: Scalars['ID']['input'];
|
|
28431
28549
|
};
|
|
28550
|
+
export declare type JiraDeleteVersionWithNoIssuesInput = {
|
|
28551
|
+
id: Scalars['ID']['input'];
|
|
28552
|
+
};
|
|
28432
28553
|
export declare type JiraDeploymentApp = {
|
|
28433
28554
|
__typename?: 'JiraDeploymentApp';
|
|
28434
28555
|
appKey: Scalars['String']['output'];
|
|
@@ -28521,23 +28642,36 @@ export declare enum JiraDevOpsIssuePanelState {
|
|
|
28521
28642
|
export declare type JiraDevOpsMutation = {
|
|
28522
28643
|
__typename?: 'JiraDevOpsMutation';
|
|
28523
28644
|
approveJiraBitbucketWorkspaceAccessRequest?: Maybe<JiraApproveJiraBitbucketWorkspaceAccessRequestPayload>;
|
|
28645
|
+
createAutodevJob?: Maybe<JiraAutodevCreateJobPayload>;
|
|
28524
28646
|
createAutofixJob?: Maybe<JiraAutofixCreateJobPayload>;
|
|
28647
|
+
deleteAutodevJob?: Maybe<JiraAutodevBasicPayload>;
|
|
28525
28648
|
dismissBitbucketPendingAccessRequestBanner?: Maybe<JiraDismissBitbucketPendingAccessRequestBannerPayload>;
|
|
28526
28649
|
dismissDevOpsIssuePanelBanner?: Maybe<JiraDismissDevOpsIssuePanelBannerPayload>;
|
|
28527
28650
|
dismissInContextConfigPrompt?: Maybe<JiraDismissInContextConfigPromptPayload>;
|
|
28528
28651
|
optoutOfDevOpsIssuePanelNotConnectedState?: Maybe<JiraOptoutDevOpsIssuePanelNotConnectedPayload>;
|
|
28652
|
+
regenerateAutodevPlan?: Maybe<JiraAutodevBasicPayload>;
|
|
28529
28653
|
removeJiraBitbucketWorkspaceConnection?: Maybe<JiraRemoveJiraBitbucketWorkspaceConnectionPayload>;
|
|
28654
|
+
saveAutodevPlan?: Maybe<JiraAutodevBasicPayload>;
|
|
28530
28655
|
setProjectSelectedDeploymentAppsProperty?: Maybe<JiraSetProjectSelectedDeploymentAppsPropertyPayload>;
|
|
28656
|
+
startAutodev?: Maybe<JiraAutodevBasicPayload>;
|
|
28531
28657
|
updateAssociations?: Maybe<JiraDevOpsUpdateAssociationsPayload>;
|
|
28532
28658
|
};
|
|
28533
28659
|
export declare type JiraDevOpsMutationApproveJiraBitbucketWorkspaceAccessRequestArgs = {
|
|
28534
28660
|
cloudId: Scalars['ID']['input'];
|
|
28535
28661
|
input: JiraApproveJiraBitbucketWorkspaceAccessRequestInput;
|
|
28536
28662
|
};
|
|
28663
|
+
export declare type JiraDevOpsMutationCreateAutodevJobArgs = {
|
|
28664
|
+
issueAri: Scalars['ID']['input'];
|
|
28665
|
+
repoUrl: Scalars['String']['input'];
|
|
28666
|
+
};
|
|
28537
28667
|
export declare type JiraDevOpsMutationCreateAutofixJobArgs = {
|
|
28538
28668
|
cloudId: Scalars['ID']['input'];
|
|
28539
28669
|
input: JiraAutofixInput;
|
|
28540
28670
|
};
|
|
28671
|
+
export declare type JiraDevOpsMutationDeleteAutodevJobArgs = {
|
|
28672
|
+
issueAri: Scalars['ID']['input'];
|
|
28673
|
+
jobId: Scalars['ID']['input'];
|
|
28674
|
+
};
|
|
28541
28675
|
export declare type JiraDevOpsMutationDismissBitbucketPendingAccessRequestBannerArgs = {
|
|
28542
28676
|
cloudId: Scalars['ID']['input'];
|
|
28543
28677
|
input: JiraDismissBitbucketPendingAccessRequestBannerInput;
|
|
@@ -28552,13 +28686,29 @@ export declare type JiraDevOpsMutationDismissInContextConfigPromptArgs = {
|
|
|
28552
28686
|
export declare type JiraDevOpsMutationOptoutOfDevOpsIssuePanelNotConnectedStateArgs = {
|
|
28553
28687
|
input: JiraOptoutDevOpsIssuePanelNotConnectedInput;
|
|
28554
28688
|
};
|
|
28689
|
+
export declare type JiraDevOpsMutationRegenerateAutodevPlanArgs = {
|
|
28690
|
+
issueAri: Scalars['ID']['input'];
|
|
28691
|
+
jobId: Scalars['ID']['input'];
|
|
28692
|
+
prompt: Scalars['String']['input'];
|
|
28693
|
+
};
|
|
28555
28694
|
export declare type JiraDevOpsMutationRemoveJiraBitbucketWorkspaceConnectionArgs = {
|
|
28556
28695
|
cloudId: Scalars['ID']['input'];
|
|
28557
28696
|
input: JiraRemoveJiraBitbucketWorkspaceConnectionInput;
|
|
28558
28697
|
};
|
|
28698
|
+
export declare type JiraDevOpsMutationSaveAutodevPlanArgs = {
|
|
28699
|
+
acceptanceCriteria?: InputMaybe<Scalars['String']['input']>;
|
|
28700
|
+
currentState?: InputMaybe<Scalars['String']['input']>;
|
|
28701
|
+
desiredState?: InputMaybe<Scalars['String']['input']>;
|
|
28702
|
+
issueAri: Scalars['ID']['input'];
|
|
28703
|
+
jobId: Scalars['ID']['input'];
|
|
28704
|
+
};
|
|
28559
28705
|
export declare type JiraDevOpsMutationSetProjectSelectedDeploymentAppsPropertyArgs = {
|
|
28560
28706
|
input: JiraSetProjectSelectedDeploymentAppsPropertyInput;
|
|
28561
28707
|
};
|
|
28708
|
+
export declare type JiraDevOpsMutationStartAutodevArgs = {
|
|
28709
|
+
issueAri: Scalars['ID']['input'];
|
|
28710
|
+
jobId: Scalars['ID']['input'];
|
|
28711
|
+
};
|
|
28562
28712
|
export declare type JiraDevOpsMutationUpdateAssociationsArgs = {
|
|
28563
28713
|
cloudId: Scalars['ID']['input'];
|
|
28564
28714
|
input: JiraDevOpsUpdateAssociationsInput;
|
|
@@ -28581,6 +28731,7 @@ export declare type JiraDevOpsPullRequestDetails = {
|
|
|
28581
28731
|
};
|
|
28582
28732
|
export declare type JiraDevOpsQuery = {
|
|
28583
28733
|
__typename?: 'JiraDevOpsQuery';
|
|
28734
|
+
autodevJobs?: Maybe<JiraAutodevJobConnection>;
|
|
28584
28735
|
autofixJobs?: Maybe<JiraAutofixJobConnection>;
|
|
28585
28736
|
bitbucketIntegration?: Maybe<JiraBitbucketIntegration>;
|
|
28586
28737
|
configState?: Maybe<JiraAppConfigState>;
|
|
@@ -28589,6 +28740,10 @@ export declare type JiraDevOpsQuery = {
|
|
|
28589
28740
|
isInContextConfigPromptDismissed?: Maybe<Scalars['Boolean']['output']>;
|
|
28590
28741
|
toolchain?: Maybe<JiraToolchain>;
|
|
28591
28742
|
};
|
|
28743
|
+
export declare type JiraDevOpsQueryAutodevJobsArgs = {
|
|
28744
|
+
issueAri: Scalars['ID']['input'];
|
|
28745
|
+
jobIdFilter?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
28746
|
+
};
|
|
28592
28747
|
export declare type JiraDevOpsQueryAutofixJobsArgs = {
|
|
28593
28748
|
issueAri: Scalars['ID']['input'];
|
|
28594
28749
|
};
|
|
@@ -29342,6 +29497,7 @@ export declare type JiraIssue = Node & {
|
|
|
29342
29497
|
__typename?: 'JiraIssue';
|
|
29343
29498
|
attachments?: Maybe<JiraAttachmentConnection>;
|
|
29344
29499
|
childIssues?: Maybe<JiraChildIssues>;
|
|
29500
|
+
commandPaletteFields?: Maybe<JiraIssueFieldConnection>;
|
|
29345
29501
|
comments?: Maybe<JiraCommentConnection>;
|
|
29346
29502
|
deploymentsSummary?: Maybe<DevOpsSummarisedDeployments>;
|
|
29347
29503
|
devInfoDetails?: Maybe<JiraIssueDevInfoDetails>;
|
|
@@ -29387,6 +29543,12 @@ export declare type JiraIssueAttachmentsArgs = {
|
|
|
29387
29543
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
29388
29544
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
29389
29545
|
};
|
|
29546
|
+
export declare type JiraIssueCommandPaletteFieldsArgs = {
|
|
29547
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
29548
|
+
before?: InputMaybe<Scalars['String']['input']>;
|
|
29549
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
29550
|
+
last?: InputMaybe<Scalars['Int']['input']>;
|
|
29551
|
+
};
|
|
29390
29552
|
export declare type JiraIssueCommentsArgs = {
|
|
29391
29553
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
29392
29554
|
before?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -30034,7 +30196,7 @@ export declare type JiraIssuePullRequests = {
|
|
|
30034
30196
|
export declare type JiraIssueRemoteIssueLink = {
|
|
30035
30197
|
__typename?: 'JiraIssueRemoteIssueLink';
|
|
30036
30198
|
href?: Maybe<Scalars['String']['output']>;
|
|
30037
|
-
id
|
|
30199
|
+
id: Scalars['ID']['output'];
|
|
30038
30200
|
relationship?: Maybe<Scalars['String']['output']>;
|
|
30039
30201
|
title?: Maybe<Scalars['String']['output']>;
|
|
30040
30202
|
};
|
|
@@ -31317,6 +31479,7 @@ export declare type JiraMutation = {
|
|
|
31317
31479
|
deleteIssueLink?: Maybe<JiraDeleteIssueLinkPayload>;
|
|
31318
31480
|
deleteIssueNavigatorJQLHistory?: Maybe<JiraIssueNavigatorJqlHistoryDeletePayload>;
|
|
31319
31481
|
deleteJiraVersionApprover?: Maybe<JiraVersionDeleteApproverPayload>;
|
|
31482
|
+
deleteJiraVersionWithNoIssues?: Maybe<JiraUpdateVersionPayload>;
|
|
31320
31483
|
deleteJwmOverview?: Maybe<JiraWorkManagementGiraDeleteOverviewPayload>;
|
|
31321
31484
|
deleteNavigationItem?: Maybe<JiraDeleteNavigationItemPayload>;
|
|
31322
31485
|
deleteProjectNotificationPreferences?: Maybe<JiraDeleteProjectNotificationPreferencesPayload>;
|
|
@@ -31332,6 +31495,7 @@ export declare type JiraMutation = {
|
|
|
31332
31495
|
jwmRemoveActiveBackground?: Maybe<JiraWorkManagementRemoveActiveBackgroundPayload>;
|
|
31333
31496
|
jwmUpdateActiveBackground?: Maybe<JiraWorkManagementUpdateActiveBackgroundPayload>;
|
|
31334
31497
|
jwmUpdateCustomBackground?: Maybe<JiraWorkManagementUpdateCustomBackgroundPayload>;
|
|
31498
|
+
jwmUpdateOverviewPlanMigrationChangeboarding?: Maybe<JiraUpdateOverviewPlanMigrationChangeboardingPayload>;
|
|
31335
31499
|
linkIssueToVersionRelatedWork?: Maybe<JiraLinkIssueToVersionRelatedWorkPayload>;
|
|
31336
31500
|
linkIssuesToIncident?: Maybe<JiraLinkIssuesToIncidentMutationPayload>;
|
|
31337
31501
|
makeTransition?: Maybe<JiraIssueTransitionResponse>;
|
|
@@ -31485,6 +31649,9 @@ export declare type JiraMutationDeleteIssueNavigatorJqlHistoryArgs = {
|
|
|
31485
31649
|
export declare type JiraMutationDeleteJiraVersionApproverArgs = {
|
|
31486
31650
|
id: Scalars['ID']['input'];
|
|
31487
31651
|
};
|
|
31652
|
+
export declare type JiraMutationDeleteJiraVersionWithNoIssuesArgs = {
|
|
31653
|
+
input: JiraDeleteVersionWithNoIssuesInput;
|
|
31654
|
+
};
|
|
31488
31655
|
export declare type JiraMutationDeleteJwmOverviewArgs = {
|
|
31489
31656
|
input: JiraWorkManagementDeleteOverviewInput;
|
|
31490
31657
|
};
|
|
@@ -31527,6 +31694,9 @@ export declare type JiraMutationJwmUpdateActiveBackgroundArgs = {
|
|
|
31527
31694
|
export declare type JiraMutationJwmUpdateCustomBackgroundArgs = {
|
|
31528
31695
|
input: JiraWorkManagementUpdateCustomBackgroundInput;
|
|
31529
31696
|
};
|
|
31697
|
+
export declare type JiraMutationJwmUpdateOverviewPlanMigrationChangeboardingArgs = {
|
|
31698
|
+
input: JiraUpdateOverviewPlanMigrationChangeboardingInput;
|
|
31699
|
+
};
|
|
31530
31700
|
export declare type JiraMutationLinkIssueToVersionRelatedWorkArgs = {
|
|
31531
31701
|
input: JiraLinkIssueToVersionRelatedWorkInput;
|
|
31532
31702
|
};
|
|
@@ -32156,6 +32326,14 @@ export declare type JiraOriginalTimeEstimateField = JiraIssueField & JiraIssueFi
|
|
|
32156
32326
|
type: Scalars['String']['output'];
|
|
32157
32327
|
userFieldConfig?: Maybe<JiraUserFieldConfig>;
|
|
32158
32328
|
};
|
|
32329
|
+
export declare enum JiraOverviewPlanMigrationChangeboardingStatus {
|
|
32330
|
+
Triggered = "TRIGGERED"
|
|
32331
|
+
}
|
|
32332
|
+
export declare type JiraOverviewPlanMigrationState = {
|
|
32333
|
+
__typename?: 'JiraOverviewPlanMigrationState';
|
|
32334
|
+
triggerChangeboarding?: Maybe<Scalars['Boolean']['output']>;
|
|
32335
|
+
};
|
|
32336
|
+
export declare type JiraOverviewPlanMigrationStateResult = JiraOverviewPlanMigrationState | QueryError;
|
|
32159
32337
|
export declare type JiraPageCursor = {
|
|
32160
32338
|
__typename?: 'JiraPageCursor';
|
|
32161
32339
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
@@ -36317,6 +36495,15 @@ export declare type JiraUpdateNumberFieldInput = {
|
|
|
36317
36495
|
id: Scalars['ID']['input'];
|
|
36318
36496
|
operation: JiraNumberFieldOperationInput;
|
|
36319
36497
|
};
|
|
36498
|
+
export declare type JiraUpdateOverviewPlanMigrationChangeboardingInput = {
|
|
36499
|
+
changeboardingStatus: JiraOverviewPlanMigrationChangeboardingStatus;
|
|
36500
|
+
cloudId: Scalars['ID']['input'];
|
|
36501
|
+
};
|
|
36502
|
+
export declare type JiraUpdateOverviewPlanMigrationChangeboardingPayload = Payload & {
|
|
36503
|
+
__typename?: 'JiraUpdateOverviewPlanMigrationChangeboardingPayload';
|
|
36504
|
+
errors?: Maybe<Array<MutationError>>;
|
|
36505
|
+
success: Scalars['Boolean']['output'];
|
|
36506
|
+
};
|
|
36320
36507
|
export declare type JiraUpdateParentFieldInput = {
|
|
36321
36508
|
id: Scalars['ID']['input'];
|
|
36322
36509
|
operation: JiraParentFieldOperationInput;
|
|
@@ -36662,6 +36849,7 @@ export declare type JiraVersion = Node & {
|
|
|
36662
36849
|
issues?: Maybe<JiraIssueConnection>;
|
|
36663
36850
|
name?: Maybe<Scalars['String']['output']>;
|
|
36664
36851
|
nativeReleaseNotesOptionsIssueFields?: Maybe<JiraIssueFieldConnection>;
|
|
36852
|
+
overdue?: Maybe<Scalars['Boolean']['output']>;
|
|
36665
36853
|
project?: Maybe<JiraProject>;
|
|
36666
36854
|
relatedWork?: Maybe<JiraVersionRelatedWorkConnection>;
|
|
36667
36855
|
relatedWorkV2?: Maybe<JiraVersionRelatedWorkV2Connection>;
|
|
@@ -37235,7 +37423,7 @@ export declare type JiraWebRemoteIssueLink = {
|
|
|
37235
37423
|
__typename?: 'JiraWebRemoteIssueLink';
|
|
37236
37424
|
href?: Maybe<Scalars['String']['output']>;
|
|
37237
37425
|
iconUrl?: Maybe<Scalars['String']['output']>;
|
|
37238
|
-
id
|
|
37426
|
+
id: Scalars['ID']['output'];
|
|
37239
37427
|
summary?: Maybe<Scalars['String']['output']>;
|
|
37240
37428
|
title?: Maybe<Scalars['String']['output']>;
|
|
37241
37429
|
};
|
|
@@ -37525,6 +37713,7 @@ export declare type JiraWorkManagementNavigation = {
|
|
|
37525
37713
|
__typename?: 'JiraWorkManagementNavigation';
|
|
37526
37714
|
favoriteProjects?: Maybe<JiraProjectConnection>;
|
|
37527
37715
|
jwmLicensing?: Maybe<JiraWorkManagementLicensing>;
|
|
37716
|
+
jwmOverviewPlanMigrationState?: Maybe<JiraOverviewPlanMigrationStateResult>;
|
|
37528
37717
|
jwmOverviews?: Maybe<JiraWorkManagementGiraOverviewConnection>;
|
|
37529
37718
|
overviews?: Maybe<JiraWorkManagementOverviewConnectionResult>;
|
|
37530
37719
|
recentProjects?: Maybe<JiraProjectConnection>;
|
|
@@ -43193,6 +43382,17 @@ export declare type SearchResultAtlasProject = SearchResult & {
|
|
|
43193
43382
|
type: SearchResultType;
|
|
43194
43383
|
url: Scalars['URL']['output'];
|
|
43195
43384
|
};
|
|
43385
|
+
export declare type SearchResultGoogleDocument = SearchResult & {
|
|
43386
|
+
__typename?: 'SearchResultGoogleDocument';
|
|
43387
|
+
description: Scalars['String']['output'];
|
|
43388
|
+
excerpt?: Maybe<Scalars['String']['output']>;
|
|
43389
|
+
iconUrl?: Maybe<Scalars['URL']['output']>;
|
|
43390
|
+
id: Scalars['ID']['output'];
|
|
43391
|
+
lastModifiedDate?: Maybe<Scalars['String']['output']>;
|
|
43392
|
+
title: Scalars['String']['output'];
|
|
43393
|
+
type: SearchResultType;
|
|
43394
|
+
url: Scalars['URL']['output'];
|
|
43395
|
+
};
|
|
43196
43396
|
export declare type SearchResultItemEdge = {
|
|
43197
43397
|
__typename?: 'SearchResultItemEdge';
|
|
43198
43398
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
@@ -43271,6 +43471,17 @@ export declare type SearchResultJiraProject = SearchResult & {
|
|
|
43271
43471
|
type: SearchResultType;
|
|
43272
43472
|
url: Scalars['URL']['output'];
|
|
43273
43473
|
};
|
|
43474
|
+
export declare type SearchResultMicrosoftDocument = SearchResult & {
|
|
43475
|
+
__typename?: 'SearchResultMicrosoftDocument';
|
|
43476
|
+
description: Scalars['String']['output'];
|
|
43477
|
+
excerpt?: Maybe<Scalars['String']['output']>;
|
|
43478
|
+
iconUrl?: Maybe<Scalars['URL']['output']>;
|
|
43479
|
+
id: Scalars['ID']['output'];
|
|
43480
|
+
lastModifiedDate?: Maybe<Scalars['String']['output']>;
|
|
43481
|
+
title: Scalars['String']['output'];
|
|
43482
|
+
type: SearchResultType;
|
|
43483
|
+
url: Scalars['URL']['output'];
|
|
43484
|
+
};
|
|
43274
43485
|
export declare enum SearchResultType {
|
|
43275
43486
|
Attachment = "attachment",
|
|
43276
43487
|
Blogpost = "blogpost",
|
|
@@ -43279,6 +43490,7 @@ export declare enum SearchResultType {
|
|
|
43279
43490
|
Dashboard = "dashboard",
|
|
43280
43491
|
Database = "database",
|
|
43281
43492
|
Document = "document",
|
|
43493
|
+
Embed = "embed",
|
|
43282
43494
|
Filter = "filter",
|
|
43283
43495
|
Goal = "goal",
|
|
43284
43496
|
Issue = "issue",
|
|
@@ -43601,6 +43813,7 @@ export declare type ShepherdAlert = Node & {
|
|
|
43601
43813
|
createdOn: Scalars['DateTime']['output'];
|
|
43602
43814
|
description?: Maybe<ShepherdDescriptionTemplate>;
|
|
43603
43815
|
id: Scalars['ID']['output'];
|
|
43816
|
+
linkedResources?: Maybe<Array<Maybe<ShepherdLinkedResource>>>;
|
|
43604
43817
|
orgId?: Maybe<Scalars['ID']['output']>;
|
|
43605
43818
|
status: ShepherdAlertStatus;
|
|
43606
43819
|
statusUpdatedOn?: Maybe<Scalars['DateTime']['output']>;
|
|
@@ -43698,7 +43911,11 @@ export declare enum ShepherdAlertTemplateType {
|
|
|
43698
43911
|
LoginFromMaliciousIpAddress = "LOGIN_FROM_MALICIOUS_IP_ADDRESS",
|
|
43699
43912
|
LoginFromTorExitNode = "LOGIN_FROM_TOR_EXIT_NODE",
|
|
43700
43913
|
OrgLoggedInAsUser = "ORG_LOGGED_IN_AS_USER",
|
|
43914
|
+
ProjectClassificationLevelDecreased = "PROJECT_CLASSIFICATION_LEVEL_DECREASED",
|
|
43915
|
+
ProjectClassificationLevelIncreased = "PROJECT_CLASSIFICATION_LEVEL_INCREASED",
|
|
43701
43916
|
RotateScimDirectoryToken = "ROTATE_SCIM_DIRECTORY_TOKEN",
|
|
43917
|
+
SpaceClassificationLevelDecreased = "SPACE_CLASSIFICATION_LEVEL_DECREASED",
|
|
43918
|
+
SpaceClassificationLevelIncreased = "SPACE_CLASSIFICATION_LEVEL_INCREASED",
|
|
43702
43919
|
TestAlert = "TEST_ALERT",
|
|
43703
43920
|
TokenCreated = "TOKEN_CREATED",
|
|
43704
43921
|
TokenRevoked = "TOKEN_REVOKED",
|
|
@@ -43798,8 +44015,13 @@ export declare type ShepherdClassificationsConnection = {
|
|
|
43798
44015
|
};
|
|
43799
44016
|
export declare type ShepherdClassificationsQueries = {
|
|
43800
44017
|
__typename?: 'ShepherdClassificationsQueries';
|
|
44018
|
+
byResource?: Maybe<ShepherdClassificationsResult>;
|
|
43801
44019
|
bySpace?: Maybe<ShepherdClassificationsResult>;
|
|
43802
44020
|
};
|
|
44021
|
+
export declare type ShepherdClassificationsQueriesByResourceArgs = {
|
|
44022
|
+
aris: Array<Scalars['ID']['input']>;
|
|
44023
|
+
workspaceId: Scalars['ID']['input'];
|
|
44024
|
+
};
|
|
43803
44025
|
export declare type ShepherdClassificationsQueriesBySpaceArgs = {
|
|
43804
44026
|
spaceAris: Array<Scalars['ID']['input']>;
|
|
43805
44027
|
workspaceId: Scalars['ID']['input'];
|
|
@@ -43996,6 +44218,7 @@ export declare type ShepherdDetectionUpdateSettingValuePayload = Payload & {
|
|
|
43996
44218
|
node?: Maybe<ShepherdDetectionSetting>;
|
|
43997
44219
|
success: Scalars['Boolean']['output'];
|
|
43998
44220
|
};
|
|
44221
|
+
export declare type ShepherdExternalResource = JiraIssue;
|
|
43999
44222
|
export declare type ShepherdGenericMutationErrorExtension = MutationErrorExtension & {
|
|
44000
44223
|
__typename?: 'ShepherdGenericMutationErrorExtension';
|
|
44001
44224
|
errorType?: Maybe<Scalars['String']['output']>;
|
|
@@ -44017,6 +44240,11 @@ export declare type ShepherdHistogramBucketInput = {
|
|
|
44017
44240
|
name: Scalars['String']['input'];
|
|
44018
44241
|
value: Scalars['Int']['input'];
|
|
44019
44242
|
};
|
|
44243
|
+
export declare type ShepherdLinkedResource = {
|
|
44244
|
+
__typename?: 'ShepherdLinkedResource';
|
|
44245
|
+
id: Scalars['ID']['output'];
|
|
44246
|
+
resource?: Maybe<ShepherdExternalResource>;
|
|
44247
|
+
};
|
|
44020
44248
|
export declare type ShepherdLoginActivity = {
|
|
44021
44249
|
__typename?: 'ShepherdLoginActivity';
|
|
44022
44250
|
actor: ShepherdActor;
|
|
@@ -44286,6 +44514,7 @@ export declare type ShepherdTimeInput = {
|
|
|
44286
44514
|
};
|
|
44287
44515
|
export declare type ShepherdUpdateAlertInput = {
|
|
44288
44516
|
assignee?: InputMaybe<Scalars['ID']['input']>;
|
|
44517
|
+
linkedResources?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
44289
44518
|
status?: InputMaybe<ShepherdAlertStatus>;
|
|
44290
44519
|
};
|
|
44291
44520
|
export declare type ShepherdUpdateAlertPayload = Payload & {
|