@forge/cli-shared 3.25.0-next.4 → 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 +19 -0
- package/out/graphql/graphql-types.d.ts +319 -19
- package/out/graphql/graphql-types.d.ts.map +1 -1
- package/out/graphql/graphql-types.js +29 -6
- package/package.json +4 -4
|
@@ -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'];
|
|
@@ -26021,6 +26056,15 @@ export declare type InsightsBlockingIssueDetails = {
|
|
|
26021
26056
|
issueIconUrl: Scalars['String']['output'];
|
|
26022
26057
|
issueId: Scalars['String']['output'];
|
|
26023
26058
|
};
|
|
26059
|
+
export declare type InsightsBlockingIssueTask = InsightsNextBestTaskCommon & {
|
|
26060
|
+
__typename?: 'InsightsBlockingIssueTask';
|
|
26061
|
+
blockedIssues?: Maybe<Array<InsightsBlockedIssue>>;
|
|
26062
|
+
id: Scalars['String']['output'];
|
|
26063
|
+
issueIconUrl: Scalars['String']['output'];
|
|
26064
|
+
issueId: Scalars['String']['output'];
|
|
26065
|
+
title: Scalars['String']['output'];
|
|
26066
|
+
url: Scalars['String']['output'];
|
|
26067
|
+
};
|
|
26024
26068
|
export declare type InsightsBuildDetails = {
|
|
26025
26069
|
__typename?: 'InsightsBuildDetails';
|
|
26026
26070
|
buildNumber: Scalars['Int']['output'];
|
|
@@ -26030,10 +26074,33 @@ export declare type InsightsBuildDetails = {
|
|
|
26030
26074
|
lastUpdated: Scalars['String']['output'];
|
|
26031
26075
|
numberOfFailedBuilds: Scalars['Int']['output'];
|
|
26032
26076
|
};
|
|
26077
|
+
export declare type InsightsBuildTask = InsightsNextBestTaskCommon & {
|
|
26078
|
+
__typename?: 'InsightsBuildTask';
|
|
26079
|
+
buildNumber: Scalars['Int']['output'];
|
|
26080
|
+
id: Scalars['String']['output'];
|
|
26081
|
+
issueId: Scalars['String']['output'];
|
|
26082
|
+
issueKey: Scalars['String']['output'];
|
|
26083
|
+
issueName: Scalars['String']['output'];
|
|
26084
|
+
lastUpdated: Scalars['String']['output'];
|
|
26085
|
+
numberOfFailedBuilds: Scalars['Int']['output'];
|
|
26086
|
+
title: Scalars['String']['output'];
|
|
26087
|
+
url: Scalars['String']['output'];
|
|
26088
|
+
};
|
|
26033
26089
|
export declare type InsightsContextAri = {
|
|
26034
26090
|
projectAri?: InputMaybe<Scalars['ID']['input']>;
|
|
26035
26091
|
sprintAri?: InputMaybe<Scalars['ID']['input']>;
|
|
26036
26092
|
};
|
|
26093
|
+
export declare type InsightsCriticalVulnerabilityTask = InsightsNextBestTaskCommon & {
|
|
26094
|
+
__typename?: 'InsightsCriticalVulnerabilityTask';
|
|
26095
|
+
id: Scalars['String']['output'];
|
|
26096
|
+
introducedDate: Scalars['String']['output'];
|
|
26097
|
+
issueId: Scalars['String']['output'];
|
|
26098
|
+
issueKey: Scalars['String']['output'];
|
|
26099
|
+
securityContainerName: Scalars['String']['output'];
|
|
26100
|
+
status: InsightsVulnerabilityStatus;
|
|
26101
|
+
title: Scalars['String']['output'];
|
|
26102
|
+
url: Scalars['String']['output'];
|
|
26103
|
+
};
|
|
26037
26104
|
export declare type InsightsDeploymentDetails = {
|
|
26038
26105
|
__typename?: 'InsightsDeploymentDetails';
|
|
26039
26106
|
environmentNames: Array<Scalars['String']['output']>;
|
|
@@ -26045,6 +26112,20 @@ export declare type InsightsDeploymentDetails = {
|
|
|
26045
26112
|
numberOfFailedDeployments: Scalars['Int']['output'];
|
|
26046
26113
|
pipelineName: Scalars['String']['output'];
|
|
26047
26114
|
};
|
|
26115
|
+
export declare type InsightsDeploymentTask = InsightsNextBestTaskCommon & {
|
|
26116
|
+
__typename?: 'InsightsDeploymentTask';
|
|
26117
|
+
environmentNames: Array<Scalars['String']['output']>;
|
|
26118
|
+
environmentType: InsightsEnvironmentType;
|
|
26119
|
+
id: Scalars['String']['output'];
|
|
26120
|
+
issueId: Scalars['String']['output'];
|
|
26121
|
+
issueKey: Scalars['String']['output'];
|
|
26122
|
+
issueName: Scalars['String']['output'];
|
|
26123
|
+
lastUpdated: Scalars['String']['output'];
|
|
26124
|
+
numberOfFailedDeployments: Scalars['Int']['output'];
|
|
26125
|
+
pipelineName: Scalars['String']['output'];
|
|
26126
|
+
title: Scalars['String']['output'];
|
|
26127
|
+
url: Scalars['String']['output'];
|
|
26128
|
+
};
|
|
26048
26129
|
export declare enum InsightsEnvironmentType {
|
|
26049
26130
|
Development = "DEVELOPMENT",
|
|
26050
26131
|
Production = "PRODUCTION",
|
|
@@ -26086,10 +26167,15 @@ export declare enum InsightsNextBestTaskAction {
|
|
|
26086
26167
|
Remove = "REMOVE",
|
|
26087
26168
|
Snooze = "SNOOZE"
|
|
26088
26169
|
}
|
|
26170
|
+
export declare type InsightsNextBestTaskCommon = {
|
|
26171
|
+
id: Scalars['String']['output'];
|
|
26172
|
+
title: Scalars['String']['output'];
|
|
26173
|
+
url: Scalars['String']['output'];
|
|
26174
|
+
};
|
|
26089
26175
|
export declare type InsightsNextBestTaskConnection = {
|
|
26090
26176
|
__typename?: 'InsightsNextBestTaskConnection';
|
|
26091
26177
|
edges: Array<Maybe<InsightsNextBestTaskEdge>>;
|
|
26092
|
-
nodes: Array<Maybe<
|
|
26178
|
+
nodes: Array<Maybe<InsightsNextBestTaskCommon>>;
|
|
26093
26179
|
pageInfo: PageInfo;
|
|
26094
26180
|
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
26095
26181
|
};
|
|
@@ -26097,7 +26183,7 @@ export declare type InsightsNextBestTaskDetails = InsightsBlockingIssueDetails |
|
|
|
26097
26183
|
export declare type InsightsNextBestTaskEdge = {
|
|
26098
26184
|
__typename?: 'InsightsNextBestTaskEdge';
|
|
26099
26185
|
cursor: Scalars['String']['output'];
|
|
26100
|
-
node?: Maybe<
|
|
26186
|
+
node?: Maybe<InsightsNextBestTaskCommon>;
|
|
26101
26187
|
};
|
|
26102
26188
|
export declare type InsightsPullRequestNeedsWorkDetails = {
|
|
26103
26189
|
__typename?: 'InsightsPullRequestNeedsWorkDetails';
|
|
@@ -26106,6 +26192,16 @@ export declare type InsightsPullRequestNeedsWorkDetails = {
|
|
|
26106
26192
|
needsWorkCount: Scalars['Int']['output'];
|
|
26107
26193
|
repositoryName?: Maybe<Scalars['String']['output']>;
|
|
26108
26194
|
};
|
|
26195
|
+
export declare type InsightsPullRequestNeedsWorkTask = InsightsNextBestTaskCommon & {
|
|
26196
|
+
__typename?: 'InsightsPullRequestNeedsWorkTask';
|
|
26197
|
+
commentCount: Scalars['Int']['output'];
|
|
26198
|
+
id: Scalars['String']['output'];
|
|
26199
|
+
lastUpdated: Scalars['String']['output'];
|
|
26200
|
+
needsWorkCount: Scalars['Int']['output'];
|
|
26201
|
+
repositoryName?: Maybe<Scalars['String']['output']>;
|
|
26202
|
+
title: Scalars['String']['output'];
|
|
26203
|
+
url: Scalars['String']['output'];
|
|
26204
|
+
};
|
|
26109
26205
|
export declare type InsightsPullRequestReviewDetails = {
|
|
26110
26206
|
__typename?: 'InsightsPullRequestReviewDetails';
|
|
26111
26207
|
approvalsCount: Scalars['Int']['output'];
|
|
@@ -26113,6 +26209,16 @@ export declare type InsightsPullRequestReviewDetails = {
|
|
|
26113
26209
|
lastUpdated: Scalars['String']['output'];
|
|
26114
26210
|
repositoryName?: Maybe<Scalars['String']['output']>;
|
|
26115
26211
|
};
|
|
26212
|
+
export declare type InsightsPullRequestReviewTask = InsightsNextBestTaskCommon & {
|
|
26213
|
+
__typename?: 'InsightsPullRequestReviewTask';
|
|
26214
|
+
approvalsCount: Scalars['Int']['output'];
|
|
26215
|
+
commentCount: Scalars['Int']['output'];
|
|
26216
|
+
id: Scalars['String']['output'];
|
|
26217
|
+
lastUpdated: Scalars['String']['output'];
|
|
26218
|
+
repositoryName?: Maybe<Scalars['String']['output']>;
|
|
26219
|
+
title: Scalars['String']['output'];
|
|
26220
|
+
url: Scalars['String']['output'];
|
|
26221
|
+
};
|
|
26116
26222
|
export declare type InsightsPurgeUserActionStateInput = {
|
|
26117
26223
|
cloudId: Scalars['ID']['input'];
|
|
26118
26224
|
};
|
|
@@ -27069,6 +27175,89 @@ export declare enum JiraAttachmentsPermissions {
|
|
|
27069
27175
|
CreateAttachments = "CREATE_ATTACHMENTS",
|
|
27070
27176
|
DeleteOwnAttachments = "DELETE_OWN_ATTACHMENTS"
|
|
27071
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
|
+
}
|
|
27072
27261
|
export declare type JiraAutofixCreateJobPayload = Payload & {
|
|
27073
27262
|
__typename?: 'JiraAutofixCreateJobPayload';
|
|
27074
27263
|
errors?: Maybe<Array<MutationError>>;
|
|
@@ -27930,7 +28119,7 @@ export declare enum JiraConfigStateProviderType {
|
|
|
27930
28119
|
export declare type JiraConfluenceRemoteIssueLink = {
|
|
27931
28120
|
__typename?: 'JiraConfluenceRemoteIssueLink';
|
|
27932
28121
|
href?: Maybe<Scalars['String']['output']>;
|
|
27933
|
-
id
|
|
28122
|
+
id: Scalars['ID']['output'];
|
|
27934
28123
|
relationship?: Maybe<Scalars['String']['output']>;
|
|
27935
28124
|
title?: Maybe<Scalars['String']['output']>;
|
|
27936
28125
|
};
|
|
@@ -28198,7 +28387,7 @@ export declare type JiraCustomRemoteIssueLink = {
|
|
|
28198
28387
|
href?: Maybe<Scalars['String']['output']>;
|
|
28199
28388
|
iconTooltipSuffix?: Maybe<Scalars['String']['output']>;
|
|
28200
28389
|
iconUrl?: Maybe<Scalars['String']['output']>;
|
|
28201
|
-
id
|
|
28390
|
+
id: Scalars['ID']['output'];
|
|
28202
28391
|
relationship?: Maybe<Scalars['String']['output']>;
|
|
28203
28392
|
resolved?: Maybe<Scalars['Boolean']['output']>;
|
|
28204
28393
|
statusIconTooltip?: Maybe<Scalars['String']['output']>;
|
|
@@ -28358,6 +28547,9 @@ export declare type JiraDeleteShortcutInput = {
|
|
|
28358
28547
|
projectId: Scalars['ID']['input'];
|
|
28359
28548
|
shortcutId: Scalars['ID']['input'];
|
|
28360
28549
|
};
|
|
28550
|
+
export declare type JiraDeleteVersionWithNoIssuesInput = {
|
|
28551
|
+
id: Scalars['ID']['input'];
|
|
28552
|
+
};
|
|
28361
28553
|
export declare type JiraDeploymentApp = {
|
|
28362
28554
|
__typename?: 'JiraDeploymentApp';
|
|
28363
28555
|
appKey: Scalars['String']['output'];
|
|
@@ -28450,23 +28642,36 @@ export declare enum JiraDevOpsIssuePanelState {
|
|
|
28450
28642
|
export declare type JiraDevOpsMutation = {
|
|
28451
28643
|
__typename?: 'JiraDevOpsMutation';
|
|
28452
28644
|
approveJiraBitbucketWorkspaceAccessRequest?: Maybe<JiraApproveJiraBitbucketWorkspaceAccessRequestPayload>;
|
|
28645
|
+
createAutodevJob?: Maybe<JiraAutodevCreateJobPayload>;
|
|
28453
28646
|
createAutofixJob?: Maybe<JiraAutofixCreateJobPayload>;
|
|
28647
|
+
deleteAutodevJob?: Maybe<JiraAutodevBasicPayload>;
|
|
28454
28648
|
dismissBitbucketPendingAccessRequestBanner?: Maybe<JiraDismissBitbucketPendingAccessRequestBannerPayload>;
|
|
28455
28649
|
dismissDevOpsIssuePanelBanner?: Maybe<JiraDismissDevOpsIssuePanelBannerPayload>;
|
|
28456
28650
|
dismissInContextConfigPrompt?: Maybe<JiraDismissInContextConfigPromptPayload>;
|
|
28457
28651
|
optoutOfDevOpsIssuePanelNotConnectedState?: Maybe<JiraOptoutDevOpsIssuePanelNotConnectedPayload>;
|
|
28652
|
+
regenerateAutodevPlan?: Maybe<JiraAutodevBasicPayload>;
|
|
28458
28653
|
removeJiraBitbucketWorkspaceConnection?: Maybe<JiraRemoveJiraBitbucketWorkspaceConnectionPayload>;
|
|
28654
|
+
saveAutodevPlan?: Maybe<JiraAutodevBasicPayload>;
|
|
28459
28655
|
setProjectSelectedDeploymentAppsProperty?: Maybe<JiraSetProjectSelectedDeploymentAppsPropertyPayload>;
|
|
28656
|
+
startAutodev?: Maybe<JiraAutodevBasicPayload>;
|
|
28460
28657
|
updateAssociations?: Maybe<JiraDevOpsUpdateAssociationsPayload>;
|
|
28461
28658
|
};
|
|
28462
28659
|
export declare type JiraDevOpsMutationApproveJiraBitbucketWorkspaceAccessRequestArgs = {
|
|
28463
28660
|
cloudId: Scalars['ID']['input'];
|
|
28464
28661
|
input: JiraApproveJiraBitbucketWorkspaceAccessRequestInput;
|
|
28465
28662
|
};
|
|
28663
|
+
export declare type JiraDevOpsMutationCreateAutodevJobArgs = {
|
|
28664
|
+
issueAri: Scalars['ID']['input'];
|
|
28665
|
+
repoUrl: Scalars['String']['input'];
|
|
28666
|
+
};
|
|
28466
28667
|
export declare type JiraDevOpsMutationCreateAutofixJobArgs = {
|
|
28467
28668
|
cloudId: Scalars['ID']['input'];
|
|
28468
28669
|
input: JiraAutofixInput;
|
|
28469
28670
|
};
|
|
28671
|
+
export declare type JiraDevOpsMutationDeleteAutodevJobArgs = {
|
|
28672
|
+
issueAri: Scalars['ID']['input'];
|
|
28673
|
+
jobId: Scalars['ID']['input'];
|
|
28674
|
+
};
|
|
28470
28675
|
export declare type JiraDevOpsMutationDismissBitbucketPendingAccessRequestBannerArgs = {
|
|
28471
28676
|
cloudId: Scalars['ID']['input'];
|
|
28472
28677
|
input: JiraDismissBitbucketPendingAccessRequestBannerInput;
|
|
@@ -28481,13 +28686,29 @@ export declare type JiraDevOpsMutationDismissInContextConfigPromptArgs = {
|
|
|
28481
28686
|
export declare type JiraDevOpsMutationOptoutOfDevOpsIssuePanelNotConnectedStateArgs = {
|
|
28482
28687
|
input: JiraOptoutDevOpsIssuePanelNotConnectedInput;
|
|
28483
28688
|
};
|
|
28689
|
+
export declare type JiraDevOpsMutationRegenerateAutodevPlanArgs = {
|
|
28690
|
+
issueAri: Scalars['ID']['input'];
|
|
28691
|
+
jobId: Scalars['ID']['input'];
|
|
28692
|
+
prompt: Scalars['String']['input'];
|
|
28693
|
+
};
|
|
28484
28694
|
export declare type JiraDevOpsMutationRemoveJiraBitbucketWorkspaceConnectionArgs = {
|
|
28485
28695
|
cloudId: Scalars['ID']['input'];
|
|
28486
28696
|
input: JiraRemoveJiraBitbucketWorkspaceConnectionInput;
|
|
28487
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
|
+
};
|
|
28488
28705
|
export declare type JiraDevOpsMutationSetProjectSelectedDeploymentAppsPropertyArgs = {
|
|
28489
28706
|
input: JiraSetProjectSelectedDeploymentAppsPropertyInput;
|
|
28490
28707
|
};
|
|
28708
|
+
export declare type JiraDevOpsMutationStartAutodevArgs = {
|
|
28709
|
+
issueAri: Scalars['ID']['input'];
|
|
28710
|
+
jobId: Scalars['ID']['input'];
|
|
28711
|
+
};
|
|
28491
28712
|
export declare type JiraDevOpsMutationUpdateAssociationsArgs = {
|
|
28492
28713
|
cloudId: Scalars['ID']['input'];
|
|
28493
28714
|
input: JiraDevOpsUpdateAssociationsInput;
|
|
@@ -28510,6 +28731,7 @@ export declare type JiraDevOpsPullRequestDetails = {
|
|
|
28510
28731
|
};
|
|
28511
28732
|
export declare type JiraDevOpsQuery = {
|
|
28512
28733
|
__typename?: 'JiraDevOpsQuery';
|
|
28734
|
+
autodevJobs?: Maybe<JiraAutodevJobConnection>;
|
|
28513
28735
|
autofixJobs?: Maybe<JiraAutofixJobConnection>;
|
|
28514
28736
|
bitbucketIntegration?: Maybe<JiraBitbucketIntegration>;
|
|
28515
28737
|
configState?: Maybe<JiraAppConfigState>;
|
|
@@ -28518,6 +28740,10 @@ export declare type JiraDevOpsQuery = {
|
|
|
28518
28740
|
isInContextConfigPromptDismissed?: Maybe<Scalars['Boolean']['output']>;
|
|
28519
28741
|
toolchain?: Maybe<JiraToolchain>;
|
|
28520
28742
|
};
|
|
28743
|
+
export declare type JiraDevOpsQueryAutodevJobsArgs = {
|
|
28744
|
+
issueAri: Scalars['ID']['input'];
|
|
28745
|
+
jobIdFilter?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
28746
|
+
};
|
|
28521
28747
|
export declare type JiraDevOpsQueryAutofixJobsArgs = {
|
|
28522
28748
|
issueAri: Scalars['ID']['input'];
|
|
28523
28749
|
};
|
|
@@ -29271,6 +29497,7 @@ export declare type JiraIssue = Node & {
|
|
|
29271
29497
|
__typename?: 'JiraIssue';
|
|
29272
29498
|
attachments?: Maybe<JiraAttachmentConnection>;
|
|
29273
29499
|
childIssues?: Maybe<JiraChildIssues>;
|
|
29500
|
+
commandPaletteFields?: Maybe<JiraIssueFieldConnection>;
|
|
29274
29501
|
comments?: Maybe<JiraCommentConnection>;
|
|
29275
29502
|
deploymentsSummary?: Maybe<DevOpsSummarisedDeployments>;
|
|
29276
29503
|
devInfoDetails?: Maybe<JiraIssueDevInfoDetails>;
|
|
@@ -29316,6 +29543,12 @@ export declare type JiraIssueAttachmentsArgs = {
|
|
|
29316
29543
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
29317
29544
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
29318
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
|
+
};
|
|
29319
29552
|
export declare type JiraIssueCommentsArgs = {
|
|
29320
29553
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
29321
29554
|
before?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -29963,7 +30196,7 @@ export declare type JiraIssuePullRequests = {
|
|
|
29963
30196
|
export declare type JiraIssueRemoteIssueLink = {
|
|
29964
30197
|
__typename?: 'JiraIssueRemoteIssueLink';
|
|
29965
30198
|
href?: Maybe<Scalars['String']['output']>;
|
|
29966
|
-
id
|
|
30199
|
+
id: Scalars['ID']['output'];
|
|
29967
30200
|
relationship?: Maybe<Scalars['String']['output']>;
|
|
29968
30201
|
title?: Maybe<Scalars['String']['output']>;
|
|
29969
30202
|
};
|
|
@@ -31246,6 +31479,7 @@ export declare type JiraMutation = {
|
|
|
31246
31479
|
deleteIssueLink?: Maybe<JiraDeleteIssueLinkPayload>;
|
|
31247
31480
|
deleteIssueNavigatorJQLHistory?: Maybe<JiraIssueNavigatorJqlHistoryDeletePayload>;
|
|
31248
31481
|
deleteJiraVersionApprover?: Maybe<JiraVersionDeleteApproverPayload>;
|
|
31482
|
+
deleteJiraVersionWithNoIssues?: Maybe<JiraUpdateVersionPayload>;
|
|
31249
31483
|
deleteJwmOverview?: Maybe<JiraWorkManagementGiraDeleteOverviewPayload>;
|
|
31250
31484
|
deleteNavigationItem?: Maybe<JiraDeleteNavigationItemPayload>;
|
|
31251
31485
|
deleteProjectNotificationPreferences?: Maybe<JiraDeleteProjectNotificationPreferencesPayload>;
|
|
@@ -31261,6 +31495,7 @@ export declare type JiraMutation = {
|
|
|
31261
31495
|
jwmRemoveActiveBackground?: Maybe<JiraWorkManagementRemoveActiveBackgroundPayload>;
|
|
31262
31496
|
jwmUpdateActiveBackground?: Maybe<JiraWorkManagementUpdateActiveBackgroundPayload>;
|
|
31263
31497
|
jwmUpdateCustomBackground?: Maybe<JiraWorkManagementUpdateCustomBackgroundPayload>;
|
|
31498
|
+
jwmUpdateOverviewPlanMigrationChangeboarding?: Maybe<JiraUpdateOverviewPlanMigrationChangeboardingPayload>;
|
|
31264
31499
|
linkIssueToVersionRelatedWork?: Maybe<JiraLinkIssueToVersionRelatedWorkPayload>;
|
|
31265
31500
|
linkIssuesToIncident?: Maybe<JiraLinkIssuesToIncidentMutationPayload>;
|
|
31266
31501
|
makeTransition?: Maybe<JiraIssueTransitionResponse>;
|
|
@@ -31414,6 +31649,9 @@ export declare type JiraMutationDeleteIssueNavigatorJqlHistoryArgs = {
|
|
|
31414
31649
|
export declare type JiraMutationDeleteJiraVersionApproverArgs = {
|
|
31415
31650
|
id: Scalars['ID']['input'];
|
|
31416
31651
|
};
|
|
31652
|
+
export declare type JiraMutationDeleteJiraVersionWithNoIssuesArgs = {
|
|
31653
|
+
input: JiraDeleteVersionWithNoIssuesInput;
|
|
31654
|
+
};
|
|
31417
31655
|
export declare type JiraMutationDeleteJwmOverviewArgs = {
|
|
31418
31656
|
input: JiraWorkManagementDeleteOverviewInput;
|
|
31419
31657
|
};
|
|
@@ -31456,6 +31694,9 @@ export declare type JiraMutationJwmUpdateActiveBackgroundArgs = {
|
|
|
31456
31694
|
export declare type JiraMutationJwmUpdateCustomBackgroundArgs = {
|
|
31457
31695
|
input: JiraWorkManagementUpdateCustomBackgroundInput;
|
|
31458
31696
|
};
|
|
31697
|
+
export declare type JiraMutationJwmUpdateOverviewPlanMigrationChangeboardingArgs = {
|
|
31698
|
+
input: JiraUpdateOverviewPlanMigrationChangeboardingInput;
|
|
31699
|
+
};
|
|
31459
31700
|
export declare type JiraMutationLinkIssueToVersionRelatedWorkArgs = {
|
|
31460
31701
|
input: JiraLinkIssueToVersionRelatedWorkInput;
|
|
31461
31702
|
};
|
|
@@ -32085,6 +32326,14 @@ export declare type JiraOriginalTimeEstimateField = JiraIssueField & JiraIssueFi
|
|
|
32085
32326
|
type: Scalars['String']['output'];
|
|
32086
32327
|
userFieldConfig?: Maybe<JiraUserFieldConfig>;
|
|
32087
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;
|
|
32088
32337
|
export declare type JiraPageCursor = {
|
|
32089
32338
|
__typename?: 'JiraPageCursor';
|
|
32090
32339
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
@@ -36246,6 +36495,15 @@ export declare type JiraUpdateNumberFieldInput = {
|
|
|
36246
36495
|
id: Scalars['ID']['input'];
|
|
36247
36496
|
operation: JiraNumberFieldOperationInput;
|
|
36248
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
|
+
};
|
|
36249
36507
|
export declare type JiraUpdateParentFieldInput = {
|
|
36250
36508
|
id: Scalars['ID']['input'];
|
|
36251
36509
|
operation: JiraParentFieldOperationInput;
|
|
@@ -36591,6 +36849,7 @@ export declare type JiraVersion = Node & {
|
|
|
36591
36849
|
issues?: Maybe<JiraIssueConnection>;
|
|
36592
36850
|
name?: Maybe<Scalars['String']['output']>;
|
|
36593
36851
|
nativeReleaseNotesOptionsIssueFields?: Maybe<JiraIssueFieldConnection>;
|
|
36852
|
+
overdue?: Maybe<Scalars['Boolean']['output']>;
|
|
36594
36853
|
project?: Maybe<JiraProject>;
|
|
36595
36854
|
relatedWork?: Maybe<JiraVersionRelatedWorkConnection>;
|
|
36596
36855
|
relatedWorkV2?: Maybe<JiraVersionRelatedWorkV2Connection>;
|
|
@@ -37164,7 +37423,7 @@ export declare type JiraWebRemoteIssueLink = {
|
|
|
37164
37423
|
__typename?: 'JiraWebRemoteIssueLink';
|
|
37165
37424
|
href?: Maybe<Scalars['String']['output']>;
|
|
37166
37425
|
iconUrl?: Maybe<Scalars['String']['output']>;
|
|
37167
|
-
id
|
|
37426
|
+
id: Scalars['ID']['output'];
|
|
37168
37427
|
summary?: Maybe<Scalars['String']['output']>;
|
|
37169
37428
|
title?: Maybe<Scalars['String']['output']>;
|
|
37170
37429
|
};
|
|
@@ -37454,6 +37713,7 @@ export declare type JiraWorkManagementNavigation = {
|
|
|
37454
37713
|
__typename?: 'JiraWorkManagementNavigation';
|
|
37455
37714
|
favoriteProjects?: Maybe<JiraProjectConnection>;
|
|
37456
37715
|
jwmLicensing?: Maybe<JiraWorkManagementLicensing>;
|
|
37716
|
+
jwmOverviewPlanMigrationState?: Maybe<JiraOverviewPlanMigrationStateResult>;
|
|
37457
37717
|
jwmOverviews?: Maybe<JiraWorkManagementGiraOverviewConnection>;
|
|
37458
37718
|
overviews?: Maybe<JiraWorkManagementOverviewConnectionResult>;
|
|
37459
37719
|
recentProjects?: Maybe<JiraProjectConnection>;
|
|
@@ -43122,6 +43382,17 @@ export declare type SearchResultAtlasProject = SearchResult & {
|
|
|
43122
43382
|
type: SearchResultType;
|
|
43123
43383
|
url: Scalars['URL']['output'];
|
|
43124
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
|
+
};
|
|
43125
43396
|
export declare type SearchResultItemEdge = {
|
|
43126
43397
|
__typename?: 'SearchResultItemEdge';
|
|
43127
43398
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
@@ -43200,6 +43471,17 @@ export declare type SearchResultJiraProject = SearchResult & {
|
|
|
43200
43471
|
type: SearchResultType;
|
|
43201
43472
|
url: Scalars['URL']['output'];
|
|
43202
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
|
+
};
|
|
43203
43485
|
export declare enum SearchResultType {
|
|
43204
43486
|
Attachment = "attachment",
|
|
43205
43487
|
Blogpost = "blogpost",
|
|
@@ -43208,6 +43490,7 @@ export declare enum SearchResultType {
|
|
|
43208
43490
|
Dashboard = "dashboard",
|
|
43209
43491
|
Database = "database",
|
|
43210
43492
|
Document = "document",
|
|
43493
|
+
Embed = "embed",
|
|
43211
43494
|
Filter = "filter",
|
|
43212
43495
|
Goal = "goal",
|
|
43213
43496
|
Issue = "issue",
|
|
@@ -43530,6 +43813,7 @@ export declare type ShepherdAlert = Node & {
|
|
|
43530
43813
|
createdOn: Scalars['DateTime']['output'];
|
|
43531
43814
|
description?: Maybe<ShepherdDescriptionTemplate>;
|
|
43532
43815
|
id: Scalars['ID']['output'];
|
|
43816
|
+
linkedResources?: Maybe<Array<Maybe<ShepherdLinkedResource>>>;
|
|
43533
43817
|
orgId?: Maybe<Scalars['ID']['output']>;
|
|
43534
43818
|
status: ShepherdAlertStatus;
|
|
43535
43819
|
statusUpdatedOn?: Maybe<Scalars['DateTime']['output']>;
|
|
@@ -43627,7 +43911,11 @@ export declare enum ShepherdAlertTemplateType {
|
|
|
43627
43911
|
LoginFromMaliciousIpAddress = "LOGIN_FROM_MALICIOUS_IP_ADDRESS",
|
|
43628
43912
|
LoginFromTorExitNode = "LOGIN_FROM_TOR_EXIT_NODE",
|
|
43629
43913
|
OrgLoggedInAsUser = "ORG_LOGGED_IN_AS_USER",
|
|
43914
|
+
ProjectClassificationLevelDecreased = "PROJECT_CLASSIFICATION_LEVEL_DECREASED",
|
|
43915
|
+
ProjectClassificationLevelIncreased = "PROJECT_CLASSIFICATION_LEVEL_INCREASED",
|
|
43630
43916
|
RotateScimDirectoryToken = "ROTATE_SCIM_DIRECTORY_TOKEN",
|
|
43917
|
+
SpaceClassificationLevelDecreased = "SPACE_CLASSIFICATION_LEVEL_DECREASED",
|
|
43918
|
+
SpaceClassificationLevelIncreased = "SPACE_CLASSIFICATION_LEVEL_INCREASED",
|
|
43631
43919
|
TestAlert = "TEST_ALERT",
|
|
43632
43920
|
TokenCreated = "TOKEN_CREATED",
|
|
43633
43921
|
TokenRevoked = "TOKEN_REVOKED",
|
|
@@ -43727,8 +44015,13 @@ export declare type ShepherdClassificationsConnection = {
|
|
|
43727
44015
|
};
|
|
43728
44016
|
export declare type ShepherdClassificationsQueries = {
|
|
43729
44017
|
__typename?: 'ShepherdClassificationsQueries';
|
|
44018
|
+
byResource?: Maybe<ShepherdClassificationsResult>;
|
|
43730
44019
|
bySpace?: Maybe<ShepherdClassificationsResult>;
|
|
43731
44020
|
};
|
|
44021
|
+
export declare type ShepherdClassificationsQueriesByResourceArgs = {
|
|
44022
|
+
aris: Array<Scalars['ID']['input']>;
|
|
44023
|
+
workspaceId: Scalars['ID']['input'];
|
|
44024
|
+
};
|
|
43732
44025
|
export declare type ShepherdClassificationsQueriesBySpaceArgs = {
|
|
43733
44026
|
spaceAris: Array<Scalars['ID']['input']>;
|
|
43734
44027
|
workspaceId: Scalars['ID']['input'];
|
|
@@ -43925,6 +44218,7 @@ export declare type ShepherdDetectionUpdateSettingValuePayload = Payload & {
|
|
|
43925
44218
|
node?: Maybe<ShepherdDetectionSetting>;
|
|
43926
44219
|
success: Scalars['Boolean']['output'];
|
|
43927
44220
|
};
|
|
44221
|
+
export declare type ShepherdExternalResource = JiraIssue;
|
|
43928
44222
|
export declare type ShepherdGenericMutationErrorExtension = MutationErrorExtension & {
|
|
43929
44223
|
__typename?: 'ShepherdGenericMutationErrorExtension';
|
|
43930
44224
|
errorType?: Maybe<Scalars['String']['output']>;
|
|
@@ -43946,6 +44240,11 @@ export declare type ShepherdHistogramBucketInput = {
|
|
|
43946
44240
|
name: Scalars['String']['input'];
|
|
43947
44241
|
value: Scalars['Int']['input'];
|
|
43948
44242
|
};
|
|
44243
|
+
export declare type ShepherdLinkedResource = {
|
|
44244
|
+
__typename?: 'ShepherdLinkedResource';
|
|
44245
|
+
id: Scalars['ID']['output'];
|
|
44246
|
+
resource?: Maybe<ShepherdExternalResource>;
|
|
44247
|
+
};
|
|
43949
44248
|
export declare type ShepherdLoginActivity = {
|
|
43950
44249
|
__typename?: 'ShepherdLoginActivity';
|
|
43951
44250
|
actor: ShepherdActor;
|
|
@@ -44215,6 +44514,7 @@ export declare type ShepherdTimeInput = {
|
|
|
44215
44514
|
};
|
|
44216
44515
|
export declare type ShepherdUpdateAlertInput = {
|
|
44217
44516
|
assignee?: InputMaybe<Scalars['ID']['input']>;
|
|
44517
|
+
linkedResources?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
44218
44518
|
status?: InputMaybe<ShepherdAlertStatus>;
|
|
44219
44519
|
};
|
|
44220
44520
|
export declare type ShepherdUpdateAlertPayload = Payload & {
|