@forge/cli-shared 3.25.0-next.5 → 3.25.0
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/graphql/graphql-types.d.ts +247 -17
- package/out/graphql/graphql-types.d.ts.map +1 -1
- package/out/graphql/graphql-types.js +29 -6
- package/package.json +3 -3
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,42 @@
|
|
|
1
1
|
# @forge/cli-shared
|
|
2
2
|
|
|
3
|
+
## 3.25.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- ba85e65: Add support for FedRAMP environments
|
|
8
|
+
- a7da8c4: Clean up FF "Forge CLI: Enable categorise templates by product"
|
|
9
|
+
|
|
10
|
+
### Patch Changes
|
|
11
|
+
|
|
12
|
+
- 7b8fa49: Bumping dependencies via Renovate:
|
|
13
|
+
|
|
14
|
+
- @graphql-codegen/typescript
|
|
15
|
+
- @graphql-codegen/typescript-operations
|
|
16
|
+
|
|
17
|
+
- a56b49d: Bumping dependencies via Renovate:
|
|
18
|
+
|
|
19
|
+
- tmp
|
|
20
|
+
|
|
21
|
+
- c9b4d9f: Bumping dependencies via Renovate:
|
|
22
|
+
|
|
23
|
+
- @graphql-tools/schema
|
|
24
|
+
|
|
25
|
+
- Updated dependencies [d76d95c]
|
|
26
|
+
- Updated dependencies [9307e05]
|
|
27
|
+
- Updated dependencies [f9492fb]
|
|
28
|
+
- Updated dependencies [2f32562]
|
|
29
|
+
- Updated dependencies [afbb875]
|
|
30
|
+
- @forge/util@1.4.2
|
|
31
|
+
- @forge/manifest@6.2.0
|
|
32
|
+
|
|
33
|
+
## 3.25.0-next.6
|
|
34
|
+
|
|
35
|
+
### Patch Changes
|
|
36
|
+
|
|
37
|
+
- Updated dependencies [afbb875]
|
|
38
|
+
- @forge/manifest@6.2.0-next.4
|
|
39
|
+
|
|
3
40
|
## 3.25.0-next.5
|
|
4
41
|
|
|
5
42
|
### Patch Changes
|
|
@@ -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']>;
|
|
@@ -33842,6 +34020,7 @@ export declare type JiraQueryVersionByIdArgs = {
|
|
|
33842
34020
|
export declare type JiraQueryVersionSearchArgs = {
|
|
33843
34021
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
33844
34022
|
before?: InputMaybe<Scalars['String']['input']>;
|
|
34023
|
+
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
33845
34024
|
filter?: InputMaybe<JiraVersionFilterInput>;
|
|
33846
34025
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
33847
34026
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
@@ -36317,6 +36496,15 @@ export declare type JiraUpdateNumberFieldInput = {
|
|
|
36317
36496
|
id: Scalars['ID']['input'];
|
|
36318
36497
|
operation: JiraNumberFieldOperationInput;
|
|
36319
36498
|
};
|
|
36499
|
+
export declare type JiraUpdateOverviewPlanMigrationChangeboardingInput = {
|
|
36500
|
+
changeboardingStatus: JiraOverviewPlanMigrationChangeboardingStatus;
|
|
36501
|
+
cloudId: Scalars['ID']['input'];
|
|
36502
|
+
};
|
|
36503
|
+
export declare type JiraUpdateOverviewPlanMigrationChangeboardingPayload = Payload & {
|
|
36504
|
+
__typename?: 'JiraUpdateOverviewPlanMigrationChangeboardingPayload';
|
|
36505
|
+
errors?: Maybe<Array<MutationError>>;
|
|
36506
|
+
success: Scalars['Boolean']['output'];
|
|
36507
|
+
};
|
|
36320
36508
|
export declare type JiraUpdateParentFieldInput = {
|
|
36321
36509
|
id: Scalars['ID']['input'];
|
|
36322
36510
|
operation: JiraParentFieldOperationInput;
|
|
@@ -36662,6 +36850,7 @@ export declare type JiraVersion = Node & {
|
|
|
36662
36850
|
issues?: Maybe<JiraIssueConnection>;
|
|
36663
36851
|
name?: Maybe<Scalars['String']['output']>;
|
|
36664
36852
|
nativeReleaseNotesOptionsIssueFields?: Maybe<JiraIssueFieldConnection>;
|
|
36853
|
+
overdue?: Maybe<Scalars['Boolean']['output']>;
|
|
36665
36854
|
project?: Maybe<JiraProject>;
|
|
36666
36855
|
relatedWork?: Maybe<JiraVersionRelatedWorkConnection>;
|
|
36667
36856
|
relatedWorkV2?: Maybe<JiraVersionRelatedWorkV2Connection>;
|
|
@@ -37235,7 +37424,7 @@ export declare type JiraWebRemoteIssueLink = {
|
|
|
37235
37424
|
__typename?: 'JiraWebRemoteIssueLink';
|
|
37236
37425
|
href?: Maybe<Scalars['String']['output']>;
|
|
37237
37426
|
iconUrl?: Maybe<Scalars['String']['output']>;
|
|
37238
|
-
id
|
|
37427
|
+
id: Scalars['ID']['output'];
|
|
37239
37428
|
summary?: Maybe<Scalars['String']['output']>;
|
|
37240
37429
|
title?: Maybe<Scalars['String']['output']>;
|
|
37241
37430
|
};
|
|
@@ -37525,6 +37714,7 @@ export declare type JiraWorkManagementNavigation = {
|
|
|
37525
37714
|
__typename?: 'JiraWorkManagementNavigation';
|
|
37526
37715
|
favoriteProjects?: Maybe<JiraProjectConnection>;
|
|
37527
37716
|
jwmLicensing?: Maybe<JiraWorkManagementLicensing>;
|
|
37717
|
+
jwmOverviewPlanMigrationState?: Maybe<JiraOverviewPlanMigrationStateResult>;
|
|
37528
37718
|
jwmOverviews?: Maybe<JiraWorkManagementGiraOverviewConnection>;
|
|
37529
37719
|
overviews?: Maybe<JiraWorkManagementOverviewConnectionResult>;
|
|
37530
37720
|
recentProjects?: Maybe<JiraProjectConnection>;
|
|
@@ -43193,6 +43383,17 @@ export declare type SearchResultAtlasProject = SearchResult & {
|
|
|
43193
43383
|
type: SearchResultType;
|
|
43194
43384
|
url: Scalars['URL']['output'];
|
|
43195
43385
|
};
|
|
43386
|
+
export declare type SearchResultGoogleDocument = SearchResult & {
|
|
43387
|
+
__typename?: 'SearchResultGoogleDocument';
|
|
43388
|
+
description: Scalars['String']['output'];
|
|
43389
|
+
excerpt?: Maybe<Scalars['String']['output']>;
|
|
43390
|
+
iconUrl?: Maybe<Scalars['URL']['output']>;
|
|
43391
|
+
id: Scalars['ID']['output'];
|
|
43392
|
+
lastModifiedDate?: Maybe<Scalars['String']['output']>;
|
|
43393
|
+
title: Scalars['String']['output'];
|
|
43394
|
+
type: SearchResultType;
|
|
43395
|
+
url: Scalars['URL']['output'];
|
|
43396
|
+
};
|
|
43196
43397
|
export declare type SearchResultItemEdge = {
|
|
43197
43398
|
__typename?: 'SearchResultItemEdge';
|
|
43198
43399
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
@@ -43271,6 +43472,17 @@ export declare type SearchResultJiraProject = SearchResult & {
|
|
|
43271
43472
|
type: SearchResultType;
|
|
43272
43473
|
url: Scalars['URL']['output'];
|
|
43273
43474
|
};
|
|
43475
|
+
export declare type SearchResultMicrosoftDocument = SearchResult & {
|
|
43476
|
+
__typename?: 'SearchResultMicrosoftDocument';
|
|
43477
|
+
description: Scalars['String']['output'];
|
|
43478
|
+
excerpt?: Maybe<Scalars['String']['output']>;
|
|
43479
|
+
iconUrl?: Maybe<Scalars['URL']['output']>;
|
|
43480
|
+
id: Scalars['ID']['output'];
|
|
43481
|
+
lastModifiedDate?: Maybe<Scalars['String']['output']>;
|
|
43482
|
+
title: Scalars['String']['output'];
|
|
43483
|
+
type: SearchResultType;
|
|
43484
|
+
url: Scalars['URL']['output'];
|
|
43485
|
+
};
|
|
43274
43486
|
export declare enum SearchResultType {
|
|
43275
43487
|
Attachment = "attachment",
|
|
43276
43488
|
Blogpost = "blogpost",
|
|
@@ -43279,6 +43491,7 @@ export declare enum SearchResultType {
|
|
|
43279
43491
|
Dashboard = "dashboard",
|
|
43280
43492
|
Database = "database",
|
|
43281
43493
|
Document = "document",
|
|
43494
|
+
Embed = "embed",
|
|
43282
43495
|
Filter = "filter",
|
|
43283
43496
|
Goal = "goal",
|
|
43284
43497
|
Issue = "issue",
|
|
@@ -43601,6 +43814,7 @@ export declare type ShepherdAlert = Node & {
|
|
|
43601
43814
|
createdOn: Scalars['DateTime']['output'];
|
|
43602
43815
|
description?: Maybe<ShepherdDescriptionTemplate>;
|
|
43603
43816
|
id: Scalars['ID']['output'];
|
|
43817
|
+
linkedResources?: Maybe<Array<Maybe<ShepherdLinkedResource>>>;
|
|
43604
43818
|
orgId?: Maybe<Scalars['ID']['output']>;
|
|
43605
43819
|
status: ShepherdAlertStatus;
|
|
43606
43820
|
statusUpdatedOn?: Maybe<Scalars['DateTime']['output']>;
|
|
@@ -43698,7 +43912,11 @@ export declare enum ShepherdAlertTemplateType {
|
|
|
43698
43912
|
LoginFromMaliciousIpAddress = "LOGIN_FROM_MALICIOUS_IP_ADDRESS",
|
|
43699
43913
|
LoginFromTorExitNode = "LOGIN_FROM_TOR_EXIT_NODE",
|
|
43700
43914
|
OrgLoggedInAsUser = "ORG_LOGGED_IN_AS_USER",
|
|
43915
|
+
ProjectClassificationLevelDecreased = "PROJECT_CLASSIFICATION_LEVEL_DECREASED",
|
|
43916
|
+
ProjectClassificationLevelIncreased = "PROJECT_CLASSIFICATION_LEVEL_INCREASED",
|
|
43701
43917
|
RotateScimDirectoryToken = "ROTATE_SCIM_DIRECTORY_TOKEN",
|
|
43918
|
+
SpaceClassificationLevelDecreased = "SPACE_CLASSIFICATION_LEVEL_DECREASED",
|
|
43919
|
+
SpaceClassificationLevelIncreased = "SPACE_CLASSIFICATION_LEVEL_INCREASED",
|
|
43702
43920
|
TestAlert = "TEST_ALERT",
|
|
43703
43921
|
TokenCreated = "TOKEN_CREATED",
|
|
43704
43922
|
TokenRevoked = "TOKEN_REVOKED",
|
|
@@ -43798,8 +44016,13 @@ export declare type ShepherdClassificationsConnection = {
|
|
|
43798
44016
|
};
|
|
43799
44017
|
export declare type ShepherdClassificationsQueries = {
|
|
43800
44018
|
__typename?: 'ShepherdClassificationsQueries';
|
|
44019
|
+
byResource?: Maybe<ShepherdClassificationsResult>;
|
|
43801
44020
|
bySpace?: Maybe<ShepherdClassificationsResult>;
|
|
43802
44021
|
};
|
|
44022
|
+
export declare type ShepherdClassificationsQueriesByResourceArgs = {
|
|
44023
|
+
aris: Array<Scalars['ID']['input']>;
|
|
44024
|
+
workspaceId: Scalars['ID']['input'];
|
|
44025
|
+
};
|
|
43803
44026
|
export declare type ShepherdClassificationsQueriesBySpaceArgs = {
|
|
43804
44027
|
spaceAris: Array<Scalars['ID']['input']>;
|
|
43805
44028
|
workspaceId: Scalars['ID']['input'];
|
|
@@ -43996,6 +44219,7 @@ export declare type ShepherdDetectionUpdateSettingValuePayload = Payload & {
|
|
|
43996
44219
|
node?: Maybe<ShepherdDetectionSetting>;
|
|
43997
44220
|
success: Scalars['Boolean']['output'];
|
|
43998
44221
|
};
|
|
44222
|
+
export declare type ShepherdExternalResource = JiraIssue;
|
|
43999
44223
|
export declare type ShepherdGenericMutationErrorExtension = MutationErrorExtension & {
|
|
44000
44224
|
__typename?: 'ShepherdGenericMutationErrorExtension';
|
|
44001
44225
|
errorType?: Maybe<Scalars['String']['output']>;
|
|
@@ -44017,6 +44241,11 @@ export declare type ShepherdHistogramBucketInput = {
|
|
|
44017
44241
|
name: Scalars['String']['input'];
|
|
44018
44242
|
value: Scalars['Int']['input'];
|
|
44019
44243
|
};
|
|
44244
|
+
export declare type ShepherdLinkedResource = {
|
|
44245
|
+
__typename?: 'ShepherdLinkedResource';
|
|
44246
|
+
id: Scalars['ID']['output'];
|
|
44247
|
+
resource?: Maybe<ShepherdExternalResource>;
|
|
44248
|
+
};
|
|
44020
44249
|
export declare type ShepherdLoginActivity = {
|
|
44021
44250
|
__typename?: 'ShepherdLoginActivity';
|
|
44022
44251
|
actor: ShepherdActor;
|
|
@@ -44286,6 +44515,7 @@ export declare type ShepherdTimeInput = {
|
|
|
44286
44515
|
};
|
|
44287
44516
|
export declare type ShepherdUpdateAlertInput = {
|
|
44288
44517
|
assignee?: InputMaybe<Scalars['ID']['input']>;
|
|
44518
|
+
linkedResources?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
44289
44519
|
status?: InputMaybe<ShepherdAlertStatus>;
|
|
44290
44520
|
};
|
|
44291
44521
|
export declare type ShepherdUpdateAlertPayload = Payload & {
|