@forge/cli-shared 6.5.0-next.5 → 6.5.0-next.7
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 +15 -0
- package/out/graphql/graphql-types.d.ts +422 -176
- package/out/graphql/graphql-types.d.ts.map +1 -1
- package/out/graphql/graphql-types.js +73 -23
- package/package.json +2 -2
|
@@ -167,7 +167,29 @@ export declare type ActionsAction = {
|
|
|
167
167
|
isConsequential: Scalars['Boolean']['output'];
|
|
168
168
|
name?: Maybe<Scalars['String']['output']>;
|
|
169
169
|
outputs?: Maybe<Array<ActionsActionTypeOutputTuple>>;
|
|
170
|
+
schema?: Maybe<ActionsActionConfiguration>;
|
|
170
171
|
target?: Maybe<ActionsTargetInputs>;
|
|
172
|
+
uiSchema?: Maybe<ActionsConfigurationUiSchema>;
|
|
173
|
+
};
|
|
174
|
+
export declare type ActionsActionConfiguration = {
|
|
175
|
+
__typename?: 'ActionsActionConfiguration';
|
|
176
|
+
properties?: Maybe<Array<ActionsActionConfigurationKeyValuePair>>;
|
|
177
|
+
type: Scalars['String']['output'];
|
|
178
|
+
};
|
|
179
|
+
export declare type ActionsActionConfigurationKeyValuePair = {
|
|
180
|
+
__typename?: 'ActionsActionConfigurationKeyValuePair';
|
|
181
|
+
key: Scalars['String']['output'];
|
|
182
|
+
value: ActionsActionConfigurationParameter;
|
|
183
|
+
};
|
|
184
|
+
export declare type ActionsActionConfigurationParameter = {
|
|
185
|
+
__typename?: 'ActionsActionConfigurationParameter';
|
|
186
|
+
default?: Maybe<Scalars['String']['output']>;
|
|
187
|
+
description?: Maybe<Scalars['String']['output']>;
|
|
188
|
+
maximum?: Maybe<Scalars['Int']['output']>;
|
|
189
|
+
minimum?: Maybe<Scalars['Int']['output']>;
|
|
190
|
+
required: Scalars['Boolean']['output'];
|
|
191
|
+
title?: Maybe<Scalars['String']['output']>;
|
|
192
|
+
type: Scalars['String']['output'];
|
|
171
193
|
};
|
|
172
194
|
export declare type ActionsActionInput = {
|
|
173
195
|
__typename?: 'ActionsActionInput';
|
|
@@ -233,6 +255,7 @@ export declare type ActionsActionableAppEdge = {
|
|
|
233
255
|
node?: Maybe<ActionsActionableApp>;
|
|
234
256
|
};
|
|
235
257
|
export declare type ActionsActionableAppsFilter = {
|
|
258
|
+
byActionId?: InputMaybe<Scalars['String']['input']>;
|
|
236
259
|
byActionType?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
237
260
|
byActionVerb?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
238
261
|
byCapability?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
@@ -251,6 +274,20 @@ export declare enum ActionsAuthType {
|
|
|
251
274
|
export declare enum ActionsCapabilityType {
|
|
252
275
|
Automation = "AUTOMATION"
|
|
253
276
|
}
|
|
277
|
+
export declare enum ActionsConfigurationLayout {
|
|
278
|
+
VerticalLayout = "VerticalLayout"
|
|
279
|
+
}
|
|
280
|
+
export declare type ActionsConfigurationLayoutItem = {
|
|
281
|
+
__typename?: 'ActionsConfigurationLayoutItem';
|
|
282
|
+
options?: Maybe<Scalars['String']['output']>;
|
|
283
|
+
scope: Scalars['String']['output'];
|
|
284
|
+
type: Scalars['String']['output'];
|
|
285
|
+
};
|
|
286
|
+
export declare type ActionsConfigurationUiSchema = {
|
|
287
|
+
__typename?: 'ActionsConfigurationUiSchema';
|
|
288
|
+
elements?: Maybe<Array<Maybe<ActionsConfigurationLayoutItem>>>;
|
|
289
|
+
type: ActionsConfigurationLayout;
|
|
290
|
+
};
|
|
254
291
|
export declare type ActionsDescription = {
|
|
255
292
|
__typename?: 'ActionsDescription';
|
|
256
293
|
ai?: Maybe<Scalars['String']['output']>;
|
|
@@ -1489,7 +1526,6 @@ export declare type AppStorageSqlDatabaseMigration = {
|
|
|
1489
1526
|
};
|
|
1490
1527
|
export declare type AppStorageSqlDatabasePayload = {
|
|
1491
1528
|
__typename?: 'AppStorageSqlDatabasePayload';
|
|
1492
|
-
databaseSize: Scalars['Int']['output'];
|
|
1493
1529
|
migrations: Array<Maybe<AppStorageSqlDatabaseMigration>>;
|
|
1494
1530
|
tables: Array<Maybe<AppStorageSqlDatabaseTable>>;
|
|
1495
1531
|
};
|
|
@@ -3958,6 +3994,7 @@ export declare type CompassCampaign = Node & {
|
|
|
3958
3994
|
dueDate?: Maybe<Scalars['DateTime']['output']>;
|
|
3959
3995
|
id: Scalars['ID']['output'];
|
|
3960
3996
|
name?: Maybe<Scalars['String']['output']>;
|
|
3997
|
+
scorecard?: Maybe<CompassScorecard>;
|
|
3961
3998
|
startDate?: Maybe<Scalars['DateTime']['output']>;
|
|
3962
3999
|
status?: Maybe<Scalars['String']['output']>;
|
|
3963
4000
|
};
|
|
@@ -3977,6 +4014,7 @@ export declare type CompassCampaignQuery = {
|
|
|
3977
4014
|
sort?: InputMaybe<CompassCampaignQuerySort>;
|
|
3978
4015
|
};
|
|
3979
4016
|
export declare type CompassCampaignQueryFilter = {
|
|
4017
|
+
createdByUserId?: InputMaybe<Scalars['ID']['input']>;
|
|
3980
4018
|
status?: InputMaybe<Scalars['String']['input']>;
|
|
3981
4019
|
};
|
|
3982
4020
|
export declare type CompassCampaignQuerySort = {
|
|
@@ -4331,6 +4369,8 @@ export declare type CompassCatalogQueryApi = {
|
|
|
4331
4369
|
assistantAnswer?: Maybe<CompassAssistantAnswer>;
|
|
4332
4370
|
attentionItems?: Maybe<CompassAttentionItemQueryResult>;
|
|
4333
4371
|
attentionItemsConnection?: Maybe<CompassAttentionItemConnection>;
|
|
4372
|
+
campaign?: Maybe<CompassCampaignResult>;
|
|
4373
|
+
campaigns?: Maybe<CompassCampaignConnection>;
|
|
4334
4374
|
component?: Maybe<CompassComponentResult>;
|
|
4335
4375
|
componentByExternalAlias?: Maybe<CompassComponentResult>;
|
|
4336
4376
|
componentByReference?: Maybe<CompassComponentResult>;
|
|
@@ -4379,6 +4419,15 @@ export declare type CompassCatalogQueryApiAttentionItemsConnectionArgs = {
|
|
|
4379
4419
|
cloudId: Scalars['ID']['input'];
|
|
4380
4420
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
4381
4421
|
};
|
|
4422
|
+
export declare type CompassCatalogQueryApiCampaignArgs = {
|
|
4423
|
+
id: Scalars['ID']['input'];
|
|
4424
|
+
};
|
|
4425
|
+
export declare type CompassCatalogQueryApiCampaignsArgs = {
|
|
4426
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
4427
|
+
cloudId: Scalars['ID']['input'];
|
|
4428
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
4429
|
+
query?: InputMaybe<CompassCampaignQuery>;
|
|
4430
|
+
};
|
|
4382
4431
|
export declare type CompassCatalogQueryApiComponentArgs = {
|
|
4383
4432
|
id: Scalars['ID']['input'];
|
|
4384
4433
|
};
|
|
@@ -5596,7 +5645,6 @@ export declare type CompassCustomUserFieldFilter = CompassCustomFieldFilter & {
|
|
|
5596
5645
|
__typename?: 'CompassCustomUserFieldFilter';
|
|
5597
5646
|
comparator: Scalars['String']['output'];
|
|
5598
5647
|
customFieldId: Scalars['String']['output'];
|
|
5599
|
-
users?: Maybe<Array<User>>;
|
|
5600
5648
|
values: Array<Scalars['String']['output']>;
|
|
5601
5649
|
};
|
|
5602
5650
|
export declare type CompassCustomUserFieldFilterInput = {
|
|
@@ -6289,6 +6337,7 @@ export declare type CompassInsertMetricValuePayload = Payload & {
|
|
|
6289
6337
|
};
|
|
6290
6338
|
export declare type CompassJqlMetricSourceConfiguration = {
|
|
6291
6339
|
__typename?: 'CompassJQLMetricSourceConfiguration';
|
|
6340
|
+
executingJql?: Maybe<Scalars['String']['output']>;
|
|
6292
6341
|
jql?: Maybe<Scalars['String']['output']>;
|
|
6293
6342
|
userContext?: Maybe<User>;
|
|
6294
6343
|
viewerPermissions?: Maybe<CompassJqlMetricSourceInstancePermissions>;
|
|
@@ -18058,6 +18107,7 @@ export declare enum CustomMultiselectFieldInputComparators {
|
|
|
18058
18107
|
ContainAll = "CONTAIN_ALL",
|
|
18059
18108
|
ContainAny = "CONTAIN_ANY",
|
|
18060
18109
|
ContainNone = "CONTAIN_NONE",
|
|
18110
|
+
IsSet = "IS_SET",
|
|
18061
18111
|
NotSet = "NOT_SET"
|
|
18062
18112
|
}
|
|
18063
18113
|
export declare enum CustomNumberFieldInputComparators {
|
|
@@ -22887,6 +22937,7 @@ export declare enum ExternalWorkItemSubtype {
|
|
|
22887
22937
|
Bug = "BUG",
|
|
22888
22938
|
DefaultTask = "DEFAULT_TASK",
|
|
22889
22939
|
Epic = "EPIC",
|
|
22940
|
+
Incident = "INCIDENT",
|
|
22890
22941
|
Milestone = "MILESTONE",
|
|
22891
22942
|
Other = "OTHER",
|
|
22892
22943
|
Problem = "PROBLEM",
|
|
@@ -28176,10 +28227,8 @@ export declare type GraphStore = {
|
|
|
28176
28227
|
sprintRetrospectiveWhiteboard?: Maybe<GraphStoreSimplifiedSprintRetrospectiveWhiteboardConnection>;
|
|
28177
28228
|
sprintRetrospectiveWhiteboardInverseRelationship?: Maybe<GraphStoreFullSprintRetrospectiveWhiteboardConnection>;
|
|
28178
28229
|
sprintRetrospectiveWhiteboardRelationship?: Maybe<GraphStoreFullSprintRetrospectiveWhiteboardConnection>;
|
|
28179
|
-
|
|
28180
|
-
|
|
28181
|
-
teamConnectedToJiraProject?: Maybe<GraphStoreSimplifiedTeamConnectedToJiraProjectConnection>;
|
|
28182
|
-
teamConnectedToJiraProjectInverse?: Maybe<GraphStoreSimplifiedTeamConnectedToJiraProjectInverseConnection>;
|
|
28230
|
+
teamConnectedToContainer?: Maybe<GraphStoreSimplifiedTeamConnectedToContainerConnection>;
|
|
28231
|
+
teamConnectedToContainerInverse?: Maybe<GraphStoreSimplifiedTeamConnectedToContainerInverseConnection>;
|
|
28183
28232
|
teamOwnsComponent?: Maybe<GraphStoreSimplifiedTeamOwnsComponentConnection>;
|
|
28184
28233
|
teamOwnsComponentInverse?: Maybe<GraphStoreSimplifiedTeamOwnsComponentInverseConnection>;
|
|
28185
28234
|
teamWorksOnProject?: Maybe<GraphStoreSimplifiedTeamWorksOnProjectConnection>;
|
|
@@ -28213,12 +28262,16 @@ export declare type GraphStore = {
|
|
|
28213
28262
|
userHasTopProjectInverse?: Maybe<GraphStoreSimplifiedUserHasTopProjectInverseConnection>;
|
|
28214
28263
|
userIsInTeam?: Maybe<GraphStoreSimplifiedUserIsInTeamConnection>;
|
|
28215
28264
|
userIsInTeamInverse?: Maybe<GraphStoreSimplifiedUserIsInTeamInverseConnection>;
|
|
28265
|
+
userMergedPullRequest?: Maybe<GraphStoreSimplifiedUserMergedPullRequestConnection>;
|
|
28266
|
+
userMergedPullRequestInverse?: Maybe<GraphStoreSimplifiedUserMergedPullRequestInverseConnection>;
|
|
28216
28267
|
userOwnsComponent?: Maybe<GraphStoreSimplifiedUserOwnsComponentConnection>;
|
|
28217
28268
|
userOwnsComponentInverse?: Maybe<GraphStoreSimplifiedUserOwnsComponentInverseConnection>;
|
|
28218
28269
|
userReportsIssue?: Maybe<GraphStoreSimplifiedUserReportsIssueConnection>;
|
|
28219
28270
|
userReportsIssueInverse?: Maybe<GraphStoreSimplifiedUserReportsIssueInverseConnection>;
|
|
28220
28271
|
userReviewsPr?: Maybe<GraphStoreSimplifiedUserReviewsPrConnection>;
|
|
28221
28272
|
userReviewsPrInverse?: Maybe<GraphStoreSimplifiedUserReviewsPrInverseConnection>;
|
|
28273
|
+
userViewedConfluencePage?: Maybe<GraphStoreSimplifiedUserViewedConfluencePageConnection>;
|
|
28274
|
+
userViewedConfluencePageInverse?: Maybe<GraphStoreSimplifiedUserViewedConfluencePageInverseConnection>;
|
|
28222
28275
|
versionAssociatedBranchInverse?: Maybe<GraphStoreSimplifiedVersionAssociatedBranchInverseConnection>;
|
|
28223
28276
|
versionAssociatedBranchInverseRelationship?: Maybe<GraphStoreFullVersionAssociatedBranchConnection>;
|
|
28224
28277
|
versionAssociatedBranchRelationship?: Maybe<GraphStoreFullVersionAssociatedBranchConnection>;
|
|
@@ -30415,33 +30468,19 @@ export declare type GraphStoreSprintRetrospectiveWhiteboardRelationshipArgs = {
|
|
|
30415
30468
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
30416
30469
|
id: Scalars['ID']['input'];
|
|
30417
30470
|
};
|
|
30418
|
-
export declare type
|
|
30419
|
-
after?: InputMaybe<Scalars['String']['input']>;
|
|
30420
|
-
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
30421
|
-
first?: InputMaybe<Scalars['Int']['input']>;
|
|
30422
|
-
id: Scalars['ID']['input'];
|
|
30423
|
-
sort?: InputMaybe<GraphStoreTeamConnectedToConfluenceSpaceSortInput>;
|
|
30424
|
-
};
|
|
30425
|
-
export declare type GraphStoreTeamConnectedToConfluenceSpaceInverseArgs = {
|
|
30426
|
-
after?: InputMaybe<Scalars['String']['input']>;
|
|
30427
|
-
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
30428
|
-
first?: InputMaybe<Scalars['Int']['input']>;
|
|
30429
|
-
id: Scalars['ID']['input'];
|
|
30430
|
-
sort?: InputMaybe<GraphStoreTeamConnectedToConfluenceSpaceSortInput>;
|
|
30431
|
-
};
|
|
30432
|
-
export declare type GraphStoreTeamConnectedToJiraProjectArgs = {
|
|
30471
|
+
export declare type GraphStoreTeamConnectedToContainerArgs = {
|
|
30433
30472
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
30434
30473
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
30435
30474
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
30436
30475
|
id: Scalars['ID']['input'];
|
|
30437
|
-
sort?: InputMaybe<
|
|
30476
|
+
sort?: InputMaybe<GraphStoreTeamConnectedToContainerSortInput>;
|
|
30438
30477
|
};
|
|
30439
|
-
export declare type
|
|
30478
|
+
export declare type GraphStoreTeamConnectedToContainerInverseArgs = {
|
|
30440
30479
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
30441
30480
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
30442
30481
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
30443
30482
|
id: Scalars['ID']['input'];
|
|
30444
|
-
sort?: InputMaybe<
|
|
30483
|
+
sort?: InputMaybe<GraphStoreTeamConnectedToContainerSortInput>;
|
|
30445
30484
|
};
|
|
30446
30485
|
export declare type GraphStoreTeamOwnsComponentArgs = {
|
|
30447
30486
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -30652,6 +30691,20 @@ export declare type GraphStoreUserIsInTeamInverseArgs = {
|
|
|
30652
30691
|
id: Scalars['ID']['input'];
|
|
30653
30692
|
sort?: InputMaybe<GraphStoreUserIsInTeamSortInput>;
|
|
30654
30693
|
};
|
|
30694
|
+
export declare type GraphStoreUserMergedPullRequestArgs = {
|
|
30695
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
30696
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
30697
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
30698
|
+
id: Scalars['ID']['input'];
|
|
30699
|
+
sort?: InputMaybe<GraphStoreUserMergedPullRequestSortInput>;
|
|
30700
|
+
};
|
|
30701
|
+
export declare type GraphStoreUserMergedPullRequestInverseArgs = {
|
|
30702
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
30703
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
30704
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
30705
|
+
id: Scalars['ID']['input'];
|
|
30706
|
+
sort?: InputMaybe<GraphStoreUserMergedPullRequestSortInput>;
|
|
30707
|
+
};
|
|
30655
30708
|
export declare type GraphStoreUserOwnsComponentArgs = {
|
|
30656
30709
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
30657
30710
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -30694,6 +30747,20 @@ export declare type GraphStoreUserReviewsPrInverseArgs = {
|
|
|
30694
30747
|
id: Scalars['ID']['input'];
|
|
30695
30748
|
sort?: InputMaybe<GraphStoreUserReviewsPrSortInput>;
|
|
30696
30749
|
};
|
|
30750
|
+
export declare type GraphStoreUserViewedConfluencePageArgs = {
|
|
30751
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
30752
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
30753
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
30754
|
+
id: Scalars['ID']['input'];
|
|
30755
|
+
sort?: InputMaybe<GraphStoreUserViewedConfluencePageSortInput>;
|
|
30756
|
+
};
|
|
30757
|
+
export declare type GraphStoreUserViewedConfluencePageInverseArgs = {
|
|
30758
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
30759
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
30760
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
30761
|
+
id: Scalars['ID']['input'];
|
|
30762
|
+
sort?: InputMaybe<GraphStoreUserViewedConfluencePageSortInput>;
|
|
30763
|
+
};
|
|
30697
30764
|
export declare type GraphStoreVersionAssociatedBranchInverseArgs = {
|
|
30698
30765
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
30699
30766
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -31196,7 +31263,7 @@ export declare type GraphStoreBatchFocusAreaHasProjectEndNode = {
|
|
|
31196
31263
|
data?: Maybe<GraphStoreBatchFocusAreaHasProjectEndUnion>;
|
|
31197
31264
|
id: Scalars['ID']['output'];
|
|
31198
31265
|
};
|
|
31199
|
-
export declare type GraphStoreBatchFocusAreaHasProjectEndUnion = JiraIssue | MercuryJiraAlignEpic | TownsquareProject;
|
|
31266
|
+
export declare type GraphStoreBatchFocusAreaHasProjectEndUnion = JiraAlignAggProject | JiraIssue | MercuryJiraAlignEpic | TownsquareProject;
|
|
31200
31267
|
export declare type GraphStoreBatchFocusAreaHasProjectInnerConnection = {
|
|
31201
31268
|
__typename?: 'GraphStoreBatchFocusAreaHasProjectInnerConnection';
|
|
31202
31269
|
edges: Array<Maybe<GraphStoreBatchFocusAreaHasProjectInnerEdge>>;
|
|
@@ -31953,6 +32020,20 @@ export declare type GraphStoreCreateSprintRetrospectiveWhiteboardRelationshipInp
|
|
|
31953
32020
|
to: Scalars['ID']['input'];
|
|
31954
32021
|
updatedAt?: InputMaybe<Scalars['DateTime']['input']>;
|
|
31955
32022
|
};
|
|
32023
|
+
export declare type GraphStoreCreateTeamConnectedToContainerInput = {
|
|
32024
|
+
relationships: Array<GraphStoreCreateTeamConnectedToContainerRelationshipInput>;
|
|
32025
|
+
};
|
|
32026
|
+
export declare type GraphStoreCreateTeamConnectedToContainerPayload = Payload & {
|
|
32027
|
+
__typename?: 'GraphStoreCreateTeamConnectedToContainerPayload';
|
|
32028
|
+
errors?: Maybe<Array<MutationError>>;
|
|
32029
|
+
success: Scalars['Boolean']['output'];
|
|
32030
|
+
};
|
|
32031
|
+
export declare type GraphStoreCreateTeamConnectedToContainerRelationshipInput = {
|
|
32032
|
+
from: Scalars['ID']['input'];
|
|
32033
|
+
sequenceNumber?: InputMaybe<Scalars['Long']['input']>;
|
|
32034
|
+
to: Scalars['ID']['input'];
|
|
32035
|
+
updatedAt?: InputMaybe<Scalars['DateTime']['input']>;
|
|
32036
|
+
};
|
|
31956
32037
|
export declare type GraphStoreCreateTestPerfhammerRelationshipInput = {
|
|
31957
32038
|
relationships: Array<GraphStoreCreateTestPerfhammerRelationshipRelationshipInput>;
|
|
31958
32039
|
};
|
|
@@ -32075,7 +32156,7 @@ export declare type GraphStoreCypherQueryFromNode = {
|
|
|
32075
32156
|
data?: Maybe<GraphStoreCypherQueryFromNodeUnion>;
|
|
32076
32157
|
id: Scalars['ID']['output'];
|
|
32077
32158
|
};
|
|
32078
|
-
export declare type GraphStoreCypherQueryFromNodeUnion = AppUser | AtlassianAccountUser | CompassComponent | ConfluenceBlogPost | ConfluenceFooterComment | ConfluenceInlineComment | ConfluencePage | ConfluenceSpace | ConfluenceWhiteboard | CustomerUser | DeploymentSummary | DevOpsDesign | DevOpsDocument | DevOpsFeatureFlag | DevOpsOperationsComponentDetails | DevOpsOperationsIncidentDetails | DevOpsOperationsPostIncidentReviewDetails | DevOpsProjectDetails | DevOpsPullRequestDetails | DevOpsRepository | DevOpsSecurityVulnerabilityDetails | DevOpsService | ExternalCommit | JiraConfluenceRemoteIssueLink | JiraCustomRemoteIssueLink | JiraIssue | JiraIssueRemoteIssueLink | JiraPostIncidentReviewLink | JiraProject | JiraVersion | JiraWebRemoteIssueLink | MercuryFocusArea | MercuryJiraAlignEpic | OpsgenieTeam | TeamV2 | ThirdPartyUser | TownsquareGoal | TownsquareProject;
|
|
32159
|
+
export declare type GraphStoreCypherQueryFromNodeUnion = AppUser | AtlassianAccountUser | CompassComponent | ConfluenceBlogPost | ConfluenceFooterComment | ConfluenceInlineComment | ConfluencePage | ConfluenceSpace | ConfluenceWhiteboard | CustomerUser | DeploymentSummary | DevOpsDesign | DevOpsDocument | DevOpsFeatureFlag | DevOpsOperationsComponentDetails | DevOpsOperationsIncidentDetails | DevOpsOperationsPostIncidentReviewDetails | DevOpsProjectDetails | DevOpsPullRequestDetails | DevOpsRepository | DevOpsSecurityVulnerabilityDetails | DevOpsService | ExternalCommit | JiraAlignAggProject | JiraConfluenceRemoteIssueLink | JiraCustomRemoteIssueLink | JiraIssue | JiraIssueRemoteIssueLink | JiraPostIncidentReviewLink | JiraProject | JiraVersion | JiraWebRemoteIssueLink | MercuryFocusArea | MercuryJiraAlignEpic | OpsgenieTeam | TeamV2 | ThirdPartyUser | TownsquareGoal | TownsquareProject;
|
|
32079
32160
|
export declare type GraphStoreCypherQueryNode = {
|
|
32080
32161
|
__typename?: 'GraphStoreCypherQueryNode';
|
|
32081
32162
|
from: GraphStoreCypherQueryFromNode;
|
|
@@ -32086,7 +32167,7 @@ export declare type GraphStoreCypherQueryToNode = {
|
|
|
32086
32167
|
data?: Maybe<GraphStoreCypherQueryToNodeUnion>;
|
|
32087
32168
|
id: Scalars['ID']['output'];
|
|
32088
32169
|
};
|
|
32089
|
-
export declare type GraphStoreCypherQueryToNodeUnion = AppUser | AtlassianAccountUser | CompassComponent | ConfluenceBlogPost | ConfluenceFooterComment | ConfluenceInlineComment | ConfluencePage | ConfluenceSpace | ConfluenceWhiteboard | CustomerUser | DeploymentSummary | DevOpsDesign | DevOpsDocument | DevOpsFeatureFlag | DevOpsOperationsComponentDetails | DevOpsOperationsIncidentDetails | DevOpsOperationsPostIncidentReviewDetails | DevOpsProjectDetails | DevOpsPullRequestDetails | DevOpsRepository | DevOpsSecurityVulnerabilityDetails | DevOpsService | ExternalCommit | JiraConfluenceRemoteIssueLink | JiraCustomRemoteIssueLink | JiraIssue | JiraIssueRemoteIssueLink | JiraPostIncidentReviewLink | JiraProject | JiraVersion | JiraWebRemoteIssueLink | MercuryFocusArea | MercuryJiraAlignEpic | OpsgenieTeam | TeamV2 | ThirdPartyUser | TownsquareGoal | TownsquareProject;
|
|
32170
|
+
export declare type GraphStoreCypherQueryToNodeUnion = AppUser | AtlassianAccountUser | CompassComponent | ConfluenceBlogPost | ConfluenceFooterComment | ConfluenceInlineComment | ConfluencePage | ConfluenceSpace | ConfluenceWhiteboard | CustomerUser | DeploymentSummary | DevOpsDesign | DevOpsDocument | DevOpsFeatureFlag | DevOpsOperationsComponentDetails | DevOpsOperationsIncidentDetails | DevOpsOperationsPostIncidentReviewDetails | DevOpsProjectDetails | DevOpsPullRequestDetails | DevOpsRepository | DevOpsSecurityVulnerabilityDetails | DevOpsService | ExternalCommit | JiraAlignAggProject | JiraConfluenceRemoteIssueLink | JiraCustomRemoteIssueLink | JiraIssue | JiraIssueRemoteIssueLink | JiraPostIncidentReviewLink | JiraProject | JiraVersion | JiraWebRemoteIssueLink | MercuryFocusArea | MercuryJiraAlignEpic | OpsgenieTeam | TeamV2 | ThirdPartyUser | TownsquareGoal | TownsquareProject;
|
|
32090
32171
|
export declare type GraphStoreDateFilterInput = {
|
|
32091
32172
|
after?: InputMaybe<Scalars['DateTime']['input']>;
|
|
32092
32173
|
before?: InputMaybe<Scalars['DateTime']['input']>;
|
|
@@ -32312,6 +32393,19 @@ export declare type GraphStoreDeleteSprintRetrospectiveWhiteboardRelationshipInp
|
|
|
32312
32393
|
from: Scalars['ID']['input'];
|
|
32313
32394
|
to: Scalars['ID']['input'];
|
|
32314
32395
|
};
|
|
32396
|
+
export declare type GraphStoreDeleteTeamConnectedToContainerInput = {
|
|
32397
|
+
relationships: Array<GraphStoreDeleteTeamConnectedToContainerRelationshipInput>;
|
|
32398
|
+
synchronousWrite?: InputMaybe<Scalars['Boolean']['input']>;
|
|
32399
|
+
};
|
|
32400
|
+
export declare type GraphStoreDeleteTeamConnectedToContainerPayload = Payload & {
|
|
32401
|
+
__typename?: 'GraphStoreDeleteTeamConnectedToContainerPayload';
|
|
32402
|
+
errors?: Maybe<Array<MutationError>>;
|
|
32403
|
+
success: Scalars['Boolean']['output'];
|
|
32404
|
+
};
|
|
32405
|
+
export declare type GraphStoreDeleteTeamConnectedToContainerRelationshipInput = {
|
|
32406
|
+
from: Scalars['ID']['input'];
|
|
32407
|
+
to: Scalars['ID']['input'];
|
|
32408
|
+
};
|
|
32315
32409
|
export declare type GraphStoreDeleteTestPerfhammerRelationshipInput = {
|
|
32316
32410
|
relationships: Array<GraphStoreDeleteTestPerfhammerRelationshipRelationshipInput>;
|
|
32317
32411
|
synchronousWrite?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -36064,6 +36158,7 @@ export declare type GraphStoreMutation = {
|
|
|
36064
36158
|
createProjectHasVersion?: Maybe<GraphStoreCreateProjectHasVersionPayload>;
|
|
36065
36159
|
createSprintRetrospectivePage?: Maybe<GraphStoreCreateSprintRetrospectivePagePayload>;
|
|
36066
36160
|
createSprintRetrospectiveWhiteboard?: Maybe<GraphStoreCreateSprintRetrospectiveWhiteboardPayload>;
|
|
36161
|
+
createTeamConnectedToContainer?: Maybe<GraphStoreCreateTeamConnectedToContainerPayload>;
|
|
36067
36162
|
createTestPerfhammerRelationship?: Maybe<GraphStoreCreateTestPerfhammerRelationshipPayload>;
|
|
36068
36163
|
createTownsquareTagIsAliasOfTownsquareTag?: Maybe<GraphStoreCreateTownsquareTagIsAliasOfTownsquareTagPayload>;
|
|
36069
36164
|
createUserHasRelevantProject?: Maybe<GraphStoreCreateUserHasRelevantProjectPayload>;
|
|
@@ -36086,6 +36181,7 @@ export declare type GraphStoreMutation = {
|
|
|
36086
36181
|
deleteProjectHasVersion?: Maybe<GraphStoreDeleteProjectHasVersionPayload>;
|
|
36087
36182
|
deleteSprintRetrospectivePage?: Maybe<GraphStoreDeleteSprintRetrospectivePagePayload>;
|
|
36088
36183
|
deleteSprintRetrospectiveWhiteboard?: Maybe<GraphStoreDeleteSprintRetrospectiveWhiteboardPayload>;
|
|
36184
|
+
deleteTeamConnectedToContainer?: Maybe<GraphStoreDeleteTeamConnectedToContainerPayload>;
|
|
36089
36185
|
deleteTestPerfhammerRelationship?: Maybe<GraphStoreDeleteTestPerfhammerRelationshipPayload>;
|
|
36090
36186
|
deleteTownsquareTagIsAliasOfTownsquareTag?: Maybe<GraphStoreDeleteTownsquareTagIsAliasOfTownsquareTagPayload>;
|
|
36091
36187
|
deleteUserHasRelevantProject?: Maybe<GraphStoreDeleteUserHasRelevantProjectPayload>;
|
|
@@ -36143,6 +36239,9 @@ export declare type GraphStoreMutationCreateSprintRetrospectivePageArgs = {
|
|
|
36143
36239
|
export declare type GraphStoreMutationCreateSprintRetrospectiveWhiteboardArgs = {
|
|
36144
36240
|
input?: InputMaybe<GraphStoreCreateSprintRetrospectiveWhiteboardInput>;
|
|
36145
36241
|
};
|
|
36242
|
+
export declare type GraphStoreMutationCreateTeamConnectedToContainerArgs = {
|
|
36243
|
+
input?: InputMaybe<GraphStoreCreateTeamConnectedToContainerInput>;
|
|
36244
|
+
};
|
|
36146
36245
|
export declare type GraphStoreMutationCreateTestPerfhammerRelationshipArgs = {
|
|
36147
36246
|
input?: InputMaybe<GraphStoreCreateTestPerfhammerRelationshipInput>;
|
|
36148
36247
|
};
|
|
@@ -36209,6 +36308,9 @@ export declare type GraphStoreMutationDeleteSprintRetrospectivePageArgs = {
|
|
|
36209
36308
|
export declare type GraphStoreMutationDeleteSprintRetrospectiveWhiteboardArgs = {
|
|
36210
36309
|
input?: InputMaybe<GraphStoreDeleteSprintRetrospectiveWhiteboardInput>;
|
|
36211
36310
|
};
|
|
36311
|
+
export declare type GraphStoreMutationDeleteTeamConnectedToContainerArgs = {
|
|
36312
|
+
input?: InputMaybe<GraphStoreDeleteTeamConnectedToContainerInput>;
|
|
36313
|
+
};
|
|
36212
36314
|
export declare type GraphStoreMutationDeleteTestPerfhammerRelationshipArgs = {
|
|
36213
36315
|
input?: InputMaybe<GraphStoreDeleteTestPerfhammerRelationshipInput>;
|
|
36214
36316
|
};
|
|
@@ -37351,7 +37453,7 @@ export declare type GraphStoreSimplifiedFocusAreaHasProjectInverseEdge = {
|
|
|
37351
37453
|
node?: Maybe<GraphStoreSimplifiedFocusAreaHasProjectInverseUnion>;
|
|
37352
37454
|
};
|
|
37353
37455
|
export declare type GraphStoreSimplifiedFocusAreaHasProjectInverseUnion = MercuryFocusArea;
|
|
37354
|
-
export declare type GraphStoreSimplifiedFocusAreaHasProjectUnion = JiraIssue | MercuryJiraAlignEpic | TownsquareProject;
|
|
37456
|
+
export declare type GraphStoreSimplifiedFocusAreaHasProjectUnion = JiraAlignAggProject | JiraIssue | MercuryJiraAlignEpic | TownsquareProject;
|
|
37355
37457
|
export declare type GraphStoreSimplifiedIncidentAssociatedPostIncidentReviewConnection = HasPageInfo & HasTotal & {
|
|
37356
37458
|
__typename?: 'GraphStoreSimplifiedIncidentAssociatedPostIncidentReviewConnection';
|
|
37357
37459
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedIncidentAssociatedPostIncidentReviewEdge>>>;
|
|
@@ -39306,70 +39408,38 @@ export declare type GraphStoreSimplifiedSprintRetrospectiveWhiteboardEdge = {
|
|
|
39306
39408
|
node?: Maybe<GraphStoreSimplifiedSprintRetrospectiveWhiteboardUnion>;
|
|
39307
39409
|
};
|
|
39308
39410
|
export declare type GraphStoreSimplifiedSprintRetrospectiveWhiteboardUnion = ConfluenceWhiteboard;
|
|
39309
|
-
export declare type
|
|
39310
|
-
__typename?: '
|
|
39311
|
-
edges?: Maybe<Array<Maybe<
|
|
39411
|
+
export declare type GraphStoreSimplifiedTeamConnectedToContainerConnection = HasPageInfo & HasTotal & {
|
|
39412
|
+
__typename?: 'GraphStoreSimplifiedTeamConnectedToContainerConnection';
|
|
39413
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedTeamConnectedToContainerEdge>>>;
|
|
39312
39414
|
isExactCount?: Maybe<Scalars['Boolean']['output']>;
|
|
39313
39415
|
pageInfo: PageInfo;
|
|
39314
39416
|
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
39315
39417
|
};
|
|
39316
|
-
export declare type
|
|
39317
|
-
__typename?: '
|
|
39418
|
+
export declare type GraphStoreSimplifiedTeamConnectedToContainerEdge = {
|
|
39419
|
+
__typename?: 'GraphStoreSimplifiedTeamConnectedToContainerEdge';
|
|
39318
39420
|
createdAt: Scalars['DateTime']['output'];
|
|
39319
39421
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
39320
39422
|
id: Scalars['ID']['output'];
|
|
39321
39423
|
lastUpdated: Scalars['DateTime']['output'];
|
|
39322
|
-
node?: Maybe<
|
|
39424
|
+
node?: Maybe<GraphStoreSimplifiedTeamConnectedToContainerUnion>;
|
|
39323
39425
|
};
|
|
39324
|
-
export declare type
|
|
39325
|
-
__typename?: '
|
|
39326
|
-
edges?: Maybe<Array<Maybe<
|
|
39426
|
+
export declare type GraphStoreSimplifiedTeamConnectedToContainerInverseConnection = HasPageInfo & HasTotal & {
|
|
39427
|
+
__typename?: 'GraphStoreSimplifiedTeamConnectedToContainerInverseConnection';
|
|
39428
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedTeamConnectedToContainerInverseEdge>>>;
|
|
39327
39429
|
isExactCount?: Maybe<Scalars['Boolean']['output']>;
|
|
39328
39430
|
pageInfo: PageInfo;
|
|
39329
39431
|
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
39330
39432
|
};
|
|
39331
|
-
export declare type
|
|
39332
|
-
__typename?: '
|
|
39433
|
+
export declare type GraphStoreSimplifiedTeamConnectedToContainerInverseEdge = {
|
|
39434
|
+
__typename?: 'GraphStoreSimplifiedTeamConnectedToContainerInverseEdge';
|
|
39333
39435
|
createdAt: Scalars['DateTime']['output'];
|
|
39334
39436
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
39335
39437
|
id: Scalars['ID']['output'];
|
|
39336
39438
|
lastUpdated: Scalars['DateTime']['output'];
|
|
39337
|
-
node?: Maybe<
|
|
39338
|
-
};
|
|
39339
|
-
export declare type GraphStoreSimplifiedTeamConnectedToConfluenceSpaceInverseUnion = TeamV2;
|
|
39340
|
-
export declare type GraphStoreSimplifiedTeamConnectedToConfluenceSpaceUnion = ConfluenceSpace;
|
|
39341
|
-
export declare type GraphStoreSimplifiedTeamConnectedToJiraProjectConnection = HasPageInfo & HasTotal & {
|
|
39342
|
-
__typename?: 'GraphStoreSimplifiedTeamConnectedToJiraProjectConnection';
|
|
39343
|
-
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedTeamConnectedToJiraProjectEdge>>>;
|
|
39344
|
-
isExactCount?: Maybe<Scalars['Boolean']['output']>;
|
|
39345
|
-
pageInfo: PageInfo;
|
|
39346
|
-
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
39439
|
+
node?: Maybe<GraphStoreSimplifiedTeamConnectedToContainerInverseUnion>;
|
|
39347
39440
|
};
|
|
39348
|
-
export declare type
|
|
39349
|
-
|
|
39350
|
-
createdAt: Scalars['DateTime']['output'];
|
|
39351
|
-
cursor?: Maybe<Scalars['String']['output']>;
|
|
39352
|
-
id: Scalars['ID']['output'];
|
|
39353
|
-
lastUpdated: Scalars['DateTime']['output'];
|
|
39354
|
-
node?: Maybe<GraphStoreSimplifiedTeamConnectedToJiraProjectUnion>;
|
|
39355
|
-
};
|
|
39356
|
-
export declare type GraphStoreSimplifiedTeamConnectedToJiraProjectInverseConnection = HasPageInfo & HasTotal & {
|
|
39357
|
-
__typename?: 'GraphStoreSimplifiedTeamConnectedToJiraProjectInverseConnection';
|
|
39358
|
-
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedTeamConnectedToJiraProjectInverseEdge>>>;
|
|
39359
|
-
isExactCount?: Maybe<Scalars['Boolean']['output']>;
|
|
39360
|
-
pageInfo: PageInfo;
|
|
39361
|
-
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
39362
|
-
};
|
|
39363
|
-
export declare type GraphStoreSimplifiedTeamConnectedToJiraProjectInverseEdge = {
|
|
39364
|
-
__typename?: 'GraphStoreSimplifiedTeamConnectedToJiraProjectInverseEdge';
|
|
39365
|
-
createdAt: Scalars['DateTime']['output'];
|
|
39366
|
-
cursor?: Maybe<Scalars['String']['output']>;
|
|
39367
|
-
id: Scalars['ID']['output'];
|
|
39368
|
-
lastUpdated: Scalars['DateTime']['output'];
|
|
39369
|
-
node?: Maybe<GraphStoreSimplifiedTeamConnectedToJiraProjectInverseUnion>;
|
|
39370
|
-
};
|
|
39371
|
-
export declare type GraphStoreSimplifiedTeamConnectedToJiraProjectInverseUnion = TeamV2;
|
|
39372
|
-
export declare type GraphStoreSimplifiedTeamConnectedToJiraProjectUnion = JiraProject;
|
|
39441
|
+
export declare type GraphStoreSimplifiedTeamConnectedToContainerInverseUnion = TeamV2;
|
|
39442
|
+
export declare type GraphStoreSimplifiedTeamConnectedToContainerUnion = ConfluenceSpace | JiraProject;
|
|
39373
39443
|
export declare type GraphStoreSimplifiedTeamOwnsComponentConnection = HasPageInfo & {
|
|
39374
39444
|
__typename?: 'GraphStoreSimplifiedTeamOwnsComponentConnection';
|
|
39375
39445
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedTeamOwnsComponentEdge>>>;
|
|
@@ -39680,6 +39750,34 @@ export declare type GraphStoreSimplifiedUserIsInTeamInverseEdge = {
|
|
|
39680
39750
|
};
|
|
39681
39751
|
export declare type GraphStoreSimplifiedUserIsInTeamInverseUnion = AppUser | AtlassianAccountUser | CustomerUser;
|
|
39682
39752
|
export declare type GraphStoreSimplifiedUserIsInTeamUnion = TeamV2;
|
|
39753
|
+
export declare type GraphStoreSimplifiedUserMergedPullRequestConnection = HasPageInfo & {
|
|
39754
|
+
__typename?: 'GraphStoreSimplifiedUserMergedPullRequestConnection';
|
|
39755
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserMergedPullRequestEdge>>>;
|
|
39756
|
+
pageInfo: PageInfo;
|
|
39757
|
+
};
|
|
39758
|
+
export declare type GraphStoreSimplifiedUserMergedPullRequestEdge = {
|
|
39759
|
+
__typename?: 'GraphStoreSimplifiedUserMergedPullRequestEdge';
|
|
39760
|
+
createdAt: Scalars['DateTime']['output'];
|
|
39761
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
39762
|
+
id: Scalars['ID']['output'];
|
|
39763
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
39764
|
+
node?: Maybe<GraphStoreSimplifiedUserMergedPullRequestUnion>;
|
|
39765
|
+
};
|
|
39766
|
+
export declare type GraphStoreSimplifiedUserMergedPullRequestInverseConnection = HasPageInfo & {
|
|
39767
|
+
__typename?: 'GraphStoreSimplifiedUserMergedPullRequestInverseConnection';
|
|
39768
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserMergedPullRequestInverseEdge>>>;
|
|
39769
|
+
pageInfo: PageInfo;
|
|
39770
|
+
};
|
|
39771
|
+
export declare type GraphStoreSimplifiedUserMergedPullRequestInverseEdge = {
|
|
39772
|
+
__typename?: 'GraphStoreSimplifiedUserMergedPullRequestInverseEdge';
|
|
39773
|
+
createdAt: Scalars['DateTime']['output'];
|
|
39774
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
39775
|
+
id: Scalars['ID']['output'];
|
|
39776
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
39777
|
+
node?: Maybe<GraphStoreSimplifiedUserMergedPullRequestInverseUnion>;
|
|
39778
|
+
};
|
|
39779
|
+
export declare type GraphStoreSimplifiedUserMergedPullRequestInverseUnion = AppUser | AtlassianAccountUser | CustomerUser;
|
|
39780
|
+
export declare type GraphStoreSimplifiedUserMergedPullRequestUnion = DevOpsPullRequestDetails;
|
|
39683
39781
|
export declare type GraphStoreSimplifiedUserOwnsComponentConnection = HasPageInfo & HasTotal & {
|
|
39684
39782
|
__typename?: 'GraphStoreSimplifiedUserOwnsComponentConnection';
|
|
39685
39783
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserOwnsComponentEdge>>>;
|
|
@@ -39768,6 +39866,34 @@ export declare type GraphStoreSimplifiedUserReviewsPrInverseEdge = {
|
|
|
39768
39866
|
};
|
|
39769
39867
|
export declare type GraphStoreSimplifiedUserReviewsPrInverseUnion = AppUser | AtlassianAccountUser | CustomerUser;
|
|
39770
39868
|
export declare type GraphStoreSimplifiedUserReviewsPrUnion = DevOpsPullRequestDetails;
|
|
39869
|
+
export declare type GraphStoreSimplifiedUserViewedConfluencePageConnection = HasPageInfo & {
|
|
39870
|
+
__typename?: 'GraphStoreSimplifiedUserViewedConfluencePageConnection';
|
|
39871
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserViewedConfluencePageEdge>>>;
|
|
39872
|
+
pageInfo: PageInfo;
|
|
39873
|
+
};
|
|
39874
|
+
export declare type GraphStoreSimplifiedUserViewedConfluencePageEdge = {
|
|
39875
|
+
__typename?: 'GraphStoreSimplifiedUserViewedConfluencePageEdge';
|
|
39876
|
+
createdAt: Scalars['DateTime']['output'];
|
|
39877
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
39878
|
+
id: Scalars['ID']['output'];
|
|
39879
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
39880
|
+
node?: Maybe<GraphStoreSimplifiedUserViewedConfluencePageUnion>;
|
|
39881
|
+
};
|
|
39882
|
+
export declare type GraphStoreSimplifiedUserViewedConfluencePageInverseConnection = HasPageInfo & {
|
|
39883
|
+
__typename?: 'GraphStoreSimplifiedUserViewedConfluencePageInverseConnection';
|
|
39884
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserViewedConfluencePageInverseEdge>>>;
|
|
39885
|
+
pageInfo: PageInfo;
|
|
39886
|
+
};
|
|
39887
|
+
export declare type GraphStoreSimplifiedUserViewedConfluencePageInverseEdge = {
|
|
39888
|
+
__typename?: 'GraphStoreSimplifiedUserViewedConfluencePageInverseEdge';
|
|
39889
|
+
createdAt: Scalars['DateTime']['output'];
|
|
39890
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
39891
|
+
id: Scalars['ID']['output'];
|
|
39892
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
39893
|
+
node?: Maybe<GraphStoreSimplifiedUserViewedConfluencePageInverseUnion>;
|
|
39894
|
+
};
|
|
39895
|
+
export declare type GraphStoreSimplifiedUserViewedConfluencePageInverseUnion = AppUser | AtlassianAccountUser | CustomerUser;
|
|
39896
|
+
export declare type GraphStoreSimplifiedUserViewedConfluencePageUnion = ConfluencePage;
|
|
39771
39897
|
export declare type GraphStoreSimplifiedVersionAssociatedBranchInverseConnection = HasPageInfo & HasTotal & {
|
|
39772
39898
|
__typename?: 'GraphStoreSimplifiedVersionAssociatedBranchInverseConnection';
|
|
39773
39899
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedVersionAssociatedBranchInverseEdge>>>;
|
|
@@ -40394,13 +40520,7 @@ export declare type GraphStoreSprintRetrospectiveWhiteboardSortInput = {
|
|
|
40394
40520
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
40395
40521
|
toAti?: InputMaybe<GraphStoreSortInput>;
|
|
40396
40522
|
};
|
|
40397
|
-
export declare type
|
|
40398
|
-
createdAt?: InputMaybe<GraphStoreSortInput>;
|
|
40399
|
-
fromAti?: InputMaybe<GraphStoreSortInput>;
|
|
40400
|
-
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
40401
|
-
toAti?: InputMaybe<GraphStoreSortInput>;
|
|
40402
|
-
};
|
|
40403
|
-
export declare type GraphStoreTeamConnectedToJiraProjectSortInput = {
|
|
40523
|
+
export declare type GraphStoreTeamConnectedToContainerSortInput = {
|
|
40404
40524
|
createdAt?: InputMaybe<GraphStoreSortInput>;
|
|
40405
40525
|
fromAti?: InputMaybe<GraphStoreSortInput>;
|
|
40406
40526
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
@@ -40457,6 +40577,9 @@ export declare type GraphStoreUserHasTopProjectSortInput = {
|
|
|
40457
40577
|
export declare type GraphStoreUserIsInTeamSortInput = {
|
|
40458
40578
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
40459
40579
|
};
|
|
40580
|
+
export declare type GraphStoreUserMergedPullRequestSortInput = {
|
|
40581
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
40582
|
+
};
|
|
40460
40583
|
export declare type GraphStoreUserOwnsComponentSortInput = {
|
|
40461
40584
|
createdAt?: InputMaybe<GraphStoreSortInput>;
|
|
40462
40585
|
fromAti?: InputMaybe<GraphStoreSortInput>;
|
|
@@ -40469,6 +40592,9 @@ export declare type GraphStoreUserReportsIssueSortInput = {
|
|
|
40469
40592
|
export declare type GraphStoreUserReviewsPrSortInput = {
|
|
40470
40593
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
40471
40594
|
};
|
|
40595
|
+
export declare type GraphStoreUserViewedConfluencePageSortInput = {
|
|
40596
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
40597
|
+
};
|
|
40472
40598
|
export declare type GraphStoreVersionAssociatedBranchSortInput = {
|
|
40473
40599
|
createdAt?: InputMaybe<GraphStoreSortInput>;
|
|
40474
40600
|
fromAti?: InputMaybe<GraphStoreSortInput>;
|
|
@@ -40892,6 +41018,7 @@ export declare enum GrowthUnifiedProfileTeamType {
|
|
|
40892
41018
|
Operations = "OPERATIONS",
|
|
40893
41019
|
Other = "OTHER",
|
|
40894
41020
|
ProductManagement = "PRODUCT_MANAGEMENT",
|
|
41021
|
+
ProgramManagement = "PROGRAM_MANAGEMENT",
|
|
40895
41022
|
ProjectManagement = "PROJECT_MANAGEMENT",
|
|
40896
41023
|
Sales = "SALES",
|
|
40897
41024
|
SoftwareDevelopment = "SOFTWARE_DEVELOPMENT",
|
|
@@ -46208,6 +46335,19 @@ export declare type JiraCreateProjectCleanupRecommendationsPayload = Payload & {
|
|
|
46208
46335
|
recommendationsCreated?: Maybe<Scalars['Long']['output']>;
|
|
46209
46336
|
success: Scalars['Boolean']['output'];
|
|
46210
46337
|
};
|
|
46338
|
+
export declare type JiraCreateProjectFieldInput = {
|
|
46339
|
+
cloudId: Scalars['ID']['input'];
|
|
46340
|
+
description?: InputMaybe<Scalars['String']['input']>;
|
|
46341
|
+
name: Scalars['String']['input'];
|
|
46342
|
+
projectId: Scalars['String']['input'];
|
|
46343
|
+
type: Scalars['String']['input'];
|
|
46344
|
+
};
|
|
46345
|
+
export declare type JiraCreateProjectFieldPayload = Payload & {
|
|
46346
|
+
__typename?: 'JiraCreateProjectFieldPayload';
|
|
46347
|
+
errors?: Maybe<Array<MutationError>>;
|
|
46348
|
+
fieldAssociationWithIssueTypes?: Maybe<JiraFieldAssociationWithIssueTypes>;
|
|
46349
|
+
success: Scalars['Boolean']['output'];
|
|
46350
|
+
};
|
|
46211
46351
|
export declare type JiraCreateReleaseNoteConfluencePageInput = {
|
|
46212
46352
|
appLinkId?: InputMaybe<Scalars['ID']['input']>;
|
|
46213
46353
|
excludeIssueKey?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -48350,7 +48490,7 @@ export declare type JiraIssueGroupsByFieldIdArgs = {
|
|
|
48350
48490
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
48351
48491
|
};
|
|
48352
48492
|
export declare type JiraIssueHasChildrenArgs = {
|
|
48353
|
-
filterByProjectKeys?: InputMaybe<Array<Scalars['String']['input']
|
|
48493
|
+
filterByProjectKeys?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
|
|
48354
48494
|
filterId?: InputMaybe<Scalars['String']['input']>;
|
|
48355
48495
|
jql?: InputMaybe<Scalars['String']['input']>;
|
|
48356
48496
|
viewConfigInput?: InputMaybe<JiraIssueSearchViewConfigInput>;
|
|
@@ -49350,6 +49490,12 @@ export declare type JiraIssueSearchInput = {
|
|
|
49350
49490
|
filterId?: InputMaybe<Scalars['String']['input']>;
|
|
49351
49491
|
jql?: InputMaybe<Scalars['String']['input']>;
|
|
49352
49492
|
};
|
|
49493
|
+
export declare enum JiraIssueSearchOperationScope {
|
|
49494
|
+
NinGlobal = "NIN_GLOBAL",
|
|
49495
|
+
NinGlobalShadowRequest = "NIN_GLOBAL_SHADOW_REQUEST",
|
|
49496
|
+
NinProject = "NIN_PROJECT",
|
|
49497
|
+
NinProjectShadowRequest = "NIN_PROJECT_SHADOW_REQUEST"
|
|
49498
|
+
}
|
|
49353
49499
|
export declare type JiraIssueSearchOptions = {
|
|
49354
49500
|
issueKey?: InputMaybe<Scalars['String']['input']>;
|
|
49355
49501
|
};
|
|
@@ -49373,6 +49519,9 @@ export declare type JiraIssueSearchResultContentIssuesArgs = {
|
|
|
49373
49519
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
49374
49520
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
49375
49521
|
};
|
|
49522
|
+
export declare type JiraIssueSearchScope = {
|
|
49523
|
+
operationScope?: InputMaybe<JiraIssueSearchOperationScope>;
|
|
49524
|
+
};
|
|
49376
49525
|
export declare type JiraIssueSearchStaticViewInput = {
|
|
49377
49526
|
isGroupingEnabled?: InputMaybe<Scalars['Boolean']['input']>;
|
|
49378
49527
|
isHierarchyEnabled?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -49444,8 +49593,12 @@ export declare type JiraIssueSearchViewContexts = {
|
|
|
49444
49593
|
errors?: Maybe<Array<QueryError>>;
|
|
49445
49594
|
};
|
|
49446
49595
|
export declare type JiraIssueSearchViewFieldSetsContext = {
|
|
49596
|
+
issueContext?: InputMaybe<JiraIssueSearchViewFieldSetsIssueContext>;
|
|
49447
49597
|
projectContext?: InputMaybe<JiraIssueSearchViewFieldSetsProjectContext>;
|
|
49448
49598
|
};
|
|
49599
|
+
export declare type JiraIssueSearchViewFieldSetsIssueContext = {
|
|
49600
|
+
issueKey?: InputMaybe<Scalars['String']['input']>;
|
|
49601
|
+
};
|
|
49449
49602
|
export declare type JiraIssueSearchViewFieldSetsProjectContext = {
|
|
49450
49603
|
issueType?: InputMaybe<Scalars['ID']['input']>;
|
|
49451
49604
|
project?: InputMaybe<Scalars['ID']['input']>;
|
|
@@ -50344,6 +50497,7 @@ export declare type JiraJqlVersionsUnreleasedArgs = {
|
|
|
50344
50497
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
50345
50498
|
};
|
|
50346
50499
|
export declare enum JiraJqlViewContext {
|
|
50500
|
+
FilterRefinement = "FILTER_REFINEMENT",
|
|
50347
50501
|
JswPlans = "JSW_PLANS",
|
|
50348
50502
|
Jwm = "JWM",
|
|
50349
50503
|
ShadowRequest = "SHADOW_REQUEST"
|
|
@@ -50889,6 +51043,7 @@ export declare type JiraMutation = {
|
|
|
50889
51043
|
createJwmIssue?: Maybe<JiraWorkManagementCreateIssuePayload>;
|
|
50890
51044
|
createJwmOverview?: Maybe<JiraWorkManagementGiraCreateOverviewPayload>;
|
|
50891
51045
|
createProjectCleanupRecommendations?: Maybe<JiraCreateProjectCleanupRecommendationsPayload>;
|
|
51046
|
+
createProjectFieldAndAddToAllIssueTypes?: Maybe<JiraCreateProjectFieldPayload>;
|
|
50892
51047
|
createProjectShortcut?: Maybe<JiraProjectShortcutPayload>;
|
|
50893
51048
|
createReleaseNoteConfluencePage?: Maybe<JiraCreateReleaseNoteConfluencePagePayload>;
|
|
50894
51049
|
createSimpleNavigationItem?: Maybe<JiraCreateNavigationItemPayload>;
|
|
@@ -51135,6 +51290,9 @@ export declare type JiraMutationCreateJwmOverviewArgs = {
|
|
|
51135
51290
|
export declare type JiraMutationCreateProjectCleanupRecommendationsArgs = {
|
|
51136
51291
|
cloudId: Scalars['ID']['input'];
|
|
51137
51292
|
};
|
|
51293
|
+
export declare type JiraMutationCreateProjectFieldAndAddToAllIssueTypesArgs = {
|
|
51294
|
+
input: JiraCreateProjectFieldInput;
|
|
51295
|
+
};
|
|
51138
51296
|
export declare type JiraMutationCreateProjectShortcutArgs = {
|
|
51139
51297
|
input: JiraCreateShortcutInput;
|
|
51140
51298
|
};
|
|
@@ -53768,6 +53926,7 @@ export declare type JiraQueryFavouritesArgs = {
|
|
|
53768
53926
|
};
|
|
53769
53927
|
export declare type JiraQueryFieldSetViewQueryByProjectArgs = {
|
|
53770
53928
|
cloudId: Scalars['ID']['input'];
|
|
53929
|
+
issueKey?: InputMaybe<Scalars['String']['input']>;
|
|
53771
53930
|
issueTypeId?: InputMaybe<Scalars['ID']['input']>;
|
|
53772
53931
|
projectId?: InputMaybe<Scalars['ID']['input']>;
|
|
53773
53932
|
};
|
|
@@ -53979,6 +54138,7 @@ export declare type JiraQueryIssueSearchArgs = {
|
|
|
53979
54138
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
53980
54139
|
options?: InputMaybe<JiraIssueSearchOptions>;
|
|
53981
54140
|
saveJQLToUserHistory?: InputMaybe<Scalars['Boolean']['input']>;
|
|
54141
|
+
scope?: InputMaybe<JiraIssueSearchScope>;
|
|
53982
54142
|
viewConfigInput?: InputMaybe<JiraIssueSearchViewConfigInput>;
|
|
53983
54143
|
};
|
|
53984
54144
|
export declare type JiraQueryIssueSearchByFilterIdArgs = {
|
|
@@ -60628,15 +60788,13 @@ export declare type KnowledgeDiscoveryQueryApiSearchRelatedEntitiesArgs = {
|
|
|
60628
60788
|
};
|
|
60629
60789
|
export declare type KnowledgeDiscoveryQueryApiSearchTeamArgs = {
|
|
60630
60790
|
orgId: Scalars['String']['input'];
|
|
60631
|
-
siteId
|
|
60791
|
+
siteId: Scalars['String']['input'];
|
|
60632
60792
|
teamName: Scalars['String']['input'];
|
|
60633
|
-
workspaceId?: InputMaybe<Scalars['String']['input']>;
|
|
60634
60793
|
};
|
|
60635
60794
|
export declare type KnowledgeDiscoveryQueryApiSmartAnswersRouteArgs = {
|
|
60636
60795
|
locale: Scalars['String']['input'];
|
|
60637
60796
|
query: Scalars['String']['input'];
|
|
60638
|
-
siteId
|
|
60639
|
-
workspaceId?: InputMaybe<Scalars['String']['input']>;
|
|
60797
|
+
siteId: Scalars['String']['input'];
|
|
60640
60798
|
};
|
|
60641
60799
|
export declare type KnowledgeDiscoveryQueryApiTopicArgs = {
|
|
60642
60800
|
cloudId?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -61730,7 +61888,9 @@ export declare type MarketplaceConsoleEditionPricingKnownError = MarketplaceCons
|
|
|
61730
61888
|
export declare type MarketplaceConsoleEditionResponse = MarketplaceConsoleEdition | MarketplaceConsoleEditionPricingKnownError;
|
|
61731
61889
|
export declare enum MarketplaceConsoleEditionType {
|
|
61732
61890
|
Advanced = "ADVANCED",
|
|
61733
|
-
|
|
61891
|
+
AdvancedMultiInstance = "ADVANCED_MULTI_INSTANCE",
|
|
61892
|
+
Standard = "STANDARD",
|
|
61893
|
+
StandardMultiInstance = "STANDARD_MULTI_INSTANCE"
|
|
61734
61894
|
}
|
|
61735
61895
|
export declare type MarketplaceConsoleEditionsActivation = {
|
|
61736
61896
|
__typename?: 'MarketplaceConsoleEditionsActivation';
|
|
@@ -61976,6 +62136,7 @@ export declare type MarketplaceConsoleMutationApi = {
|
|
|
61976
62136
|
deleteAppVersion?: Maybe<MarketplaceConsoleDeleteAppVersionResponse>;
|
|
61977
62137
|
editions?: Maybe<Array<Maybe<MarketplaceConsoleEditionResponse>>>;
|
|
61978
62138
|
makeAppVersionPublic?: Maybe<MarketplaceConsoleMakeAppVersionPublicMutationOutput>;
|
|
62139
|
+
updateAppDetails?: Maybe<MarketplaceConsoleUpdateAppDetailsResponse>;
|
|
61979
62140
|
validateArtifactUrl?: Maybe<MarketplaceConsoleSoftwareArtifact>;
|
|
61980
62141
|
};
|
|
61981
62142
|
export declare type MarketplaceConsoleMutationApiActivateEditionsArgs = {
|
|
@@ -62006,6 +62167,9 @@ export declare type MarketplaceConsoleMutationApiEditionsArgs = {
|
|
|
62006
62167
|
export declare type MarketplaceConsoleMutationApiMakeAppVersionPublicArgs = {
|
|
62007
62168
|
makeAppVersionPublicRequest: MarketplaceConsoleMakeAppVersionPublicRequest;
|
|
62008
62169
|
};
|
|
62170
|
+
export declare type MarketplaceConsoleMutationApiUpdateAppDetailsArgs = {
|
|
62171
|
+
updateAppDetailsRequest: MarketplaceConsoleUpdateAppDetailsRequest;
|
|
62172
|
+
};
|
|
62009
62173
|
export declare type MarketplaceConsoleMutationApiValidateArtifactUrlArgs = {
|
|
62010
62174
|
url: Scalars['String']['input'];
|
|
62011
62175
|
};
|
|
@@ -62315,6 +62479,52 @@ export declare type MarketplaceConsoleTokenDetails = {
|
|
|
62315
62479
|
links?: Maybe<Array<Maybe<MarketplaceConsolePrivateListingsLink>>>;
|
|
62316
62480
|
token: Scalars['String']['output'];
|
|
62317
62481
|
};
|
|
62482
|
+
export declare type MarketplaceConsoleUpdateAppDetailsRequest = {
|
|
62483
|
+
appKey: Scalars['ID']['input'];
|
|
62484
|
+
appStatusPageUrl?: InputMaybe<Scalars['String']['input']>;
|
|
62485
|
+
bannerForUPMUrl?: InputMaybe<Scalars['String']['input']>;
|
|
62486
|
+
buildsUrl?: InputMaybe<Scalars['String']['input']>;
|
|
62487
|
+
categories?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
62488
|
+
cloudHostingVisibility?: InputMaybe<MarketplaceConsoleLegacyMongoPluginHiddenIn>;
|
|
62489
|
+
communityEnabled?: InputMaybe<Scalars['Boolean']['input']>;
|
|
62490
|
+
currentCategories?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
62491
|
+
dataCenterHostingVisibility?: InputMaybe<MarketplaceConsoleLegacyMongoPluginHiddenIn>;
|
|
62492
|
+
dataCenterReviewIssueKey?: InputMaybe<Scalars['String']['input']>;
|
|
62493
|
+
description?: InputMaybe<Scalars['String']['input']>;
|
|
62494
|
+
forumsUrl?: InputMaybe<Scalars['String']['input']>;
|
|
62495
|
+
googleAnalytics4Id?: InputMaybe<Scalars['String']['input']>;
|
|
62496
|
+
googleAnalyticsId?: InputMaybe<Scalars['String']['input']>;
|
|
62497
|
+
issueTrackerUrl?: InputMaybe<Scalars['String']['input']>;
|
|
62498
|
+
jsdEmbeddedDataKey?: InputMaybe<Scalars['String']['input']>;
|
|
62499
|
+
keywords?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
62500
|
+
logoUrl?: InputMaybe<Scalars['String']['input']>;
|
|
62501
|
+
marketingLabels?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
62502
|
+
name?: InputMaybe<Scalars['String']['input']>;
|
|
62503
|
+
privacyUrl?: InputMaybe<Scalars['String']['input']>;
|
|
62504
|
+
productId: Scalars['ID']['input'];
|
|
62505
|
+
segmentWriteKey?: InputMaybe<Scalars['String']['input']>;
|
|
62506
|
+
serverHostingVisibility?: InputMaybe<MarketplaceConsoleLegacyMongoPluginHiddenIn>;
|
|
62507
|
+
sourceUrl?: InputMaybe<Scalars['String']['input']>;
|
|
62508
|
+
status?: InputMaybe<MarketplaceConsoleLegacyMongoStatus>;
|
|
62509
|
+
statusAfterApproval?: InputMaybe<MarketplaceConsoleLegacyMongoStatus>;
|
|
62510
|
+
storesPersonalData?: InputMaybe<Scalars['Boolean']['input']>;
|
|
62511
|
+
summary?: InputMaybe<Scalars['String']['input']>;
|
|
62512
|
+
supportTicketSystemUrl?: InputMaybe<Scalars['String']['input']>;
|
|
62513
|
+
tagLine?: InputMaybe<Scalars['String']['input']>;
|
|
62514
|
+
wikiUrl?: InputMaybe<Scalars['String']['input']>;
|
|
62515
|
+
};
|
|
62516
|
+
export declare type MarketplaceConsoleUpdateAppDetailsRequestError = MarketplaceConsoleError & {
|
|
62517
|
+
__typename?: 'MarketplaceConsoleUpdateAppDetailsRequestError';
|
|
62518
|
+
id: Scalars['ID']['output'];
|
|
62519
|
+
message: Scalars['String']['output'];
|
|
62520
|
+
path?: Maybe<Scalars['String']['output']>;
|
|
62521
|
+
subCode?: Maybe<Scalars['String']['output']>;
|
|
62522
|
+
};
|
|
62523
|
+
export declare type MarketplaceConsoleUpdateAppDetailsRequestKnownError = {
|
|
62524
|
+
__typename?: 'MarketplaceConsoleUpdateAppDetailsRequestKnownError';
|
|
62525
|
+
errors?: Maybe<Array<Maybe<MarketplaceConsoleUpdateAppDetailsRequestError>>>;
|
|
62526
|
+
};
|
|
62527
|
+
export declare type MarketplaceConsoleUpdateAppDetailsResponse = MarketplaceConsoleMutationVoidResponse | MarketplaceConsoleUpdateAppDetailsRequestKnownError;
|
|
62318
62528
|
export declare type MarketplaceConsoleUser = {
|
|
62319
62529
|
__typename?: 'MarketplaceConsoleUser';
|
|
62320
62530
|
atlassianAccountId: Scalars['ID']['output'];
|
|
@@ -65641,9 +65851,11 @@ export declare type MutationCreateContentTemplateLabelsArgs = {
|
|
|
65641
65851
|
};
|
|
65642
65852
|
export declare type MutationCreateCustomFilterArgs = {
|
|
65643
65853
|
input?: InputMaybe<CreateCustomFilterInput>;
|
|
65854
|
+
isCMP?: InputMaybe<Scalars['Boolean']['input']>;
|
|
65644
65855
|
};
|
|
65645
65856
|
export declare type MutationCreateCustomFilterV2Args = {
|
|
65646
65857
|
input?: InputMaybe<CreateCustomFilterInput>;
|
|
65858
|
+
isCMP?: InputMaybe<Scalars['Boolean']['input']>;
|
|
65647
65859
|
};
|
|
65648
65860
|
export declare type MutationCreateDevOpsServiceArgs = {
|
|
65649
65861
|
input: CreateDevOpsServiceInput;
|
|
@@ -65661,12 +65873,14 @@ export declare type MutationCreateDevOpsServiceRelationshipArgs = {
|
|
|
65661
65873
|
input: CreateDevOpsServiceRelationshipInput;
|
|
65662
65874
|
};
|
|
65663
65875
|
export declare type MutationCreateFooterCommentArgs = {
|
|
65876
|
+
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
65664
65877
|
input: CreateCommentInput;
|
|
65665
65878
|
};
|
|
65666
65879
|
export declare type MutationCreateHostedResourceUploadUrlArgs = {
|
|
65667
65880
|
input: CreateHostedResourceUploadUrlInput;
|
|
65668
65881
|
};
|
|
65669
65882
|
export declare type MutationCreateInlineCommentArgs = {
|
|
65883
|
+
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
65670
65884
|
input: CreateInlineCommentInput;
|
|
65671
65885
|
};
|
|
65672
65886
|
export declare type MutationCreateLivePageArgs = {
|
|
@@ -65774,6 +65988,7 @@ export declare type MutationDeleteContentTemplateLabelArgs = {
|
|
|
65774
65988
|
};
|
|
65775
65989
|
export declare type MutationDeleteCustomFilterArgs = {
|
|
65776
65990
|
input?: InputMaybe<DeleteCustomFilterInput>;
|
|
65991
|
+
isCMP?: InputMaybe<Scalars['Boolean']['input']>;
|
|
65777
65992
|
};
|
|
65778
65993
|
export declare type MutationDeleteDevOpsContainerRelationshipEntityPropertiesArgs = {
|
|
65779
65994
|
input: DeleteDevOpsContainerRelationshipEntityPropertiesInput;
|
|
@@ -65990,6 +66205,7 @@ export declare type MutationRankColumnArgs = {
|
|
|
65990
66205
|
};
|
|
65991
66206
|
export declare type MutationRankCustomFilterArgs = {
|
|
65992
66207
|
input?: InputMaybe<RankCustomFilterInput>;
|
|
66208
|
+
isCMP?: InputMaybe<Scalars['Boolean']['input']>;
|
|
65993
66209
|
};
|
|
65994
66210
|
export declare type MutationRateLimitTestArgs = {
|
|
65995
66211
|
input: InvokeExtensionInput;
|
|
@@ -66016,6 +66232,7 @@ export declare type MutationRemoveUserSpacePermissionsArgs = {
|
|
|
66016
66232
|
spacePermissionsInput: RemoveUserSpacePermissionsInput;
|
|
66017
66233
|
};
|
|
66018
66234
|
export declare type MutationReplyInlineCommentArgs = {
|
|
66235
|
+
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
66019
66236
|
input: ReplyInlineCommentInput;
|
|
66020
66237
|
};
|
|
66021
66238
|
export declare type MutationRequestPageAccessArgs = {
|
|
@@ -66083,6 +66300,7 @@ export declare type MutationSetEditorConversionSettingsArgs = {
|
|
|
66083
66300
|
};
|
|
66084
66301
|
export declare type MutationSetEstimationTypeArgs = {
|
|
66085
66302
|
input?: InputMaybe<SetEstimationTypeInput>;
|
|
66303
|
+
isCMP?: InputMaybe<Scalars['Boolean']['input']>;
|
|
66086
66304
|
};
|
|
66087
66305
|
export declare type MutationSetExternalAuthCredentialsArgs = {
|
|
66088
66306
|
input: SetExternalAuthCredentialsInput;
|
|
@@ -66202,9 +66420,11 @@ export declare type MutationUpdateCommentArgs = {
|
|
|
66202
66420
|
};
|
|
66203
66421
|
export declare type MutationUpdateCustomFilterArgs = {
|
|
66204
66422
|
input?: InputMaybe<UpdateCustomFilterInput>;
|
|
66423
|
+
isCMP?: InputMaybe<Scalars['Boolean']['input']>;
|
|
66205
66424
|
};
|
|
66206
66425
|
export declare type MutationUpdateCustomFilterV2Args = {
|
|
66207
66426
|
input?: InputMaybe<UpdateCustomFilterInput>;
|
|
66427
|
+
isCMP?: InputMaybe<Scalars['Boolean']['input']>;
|
|
66208
66428
|
};
|
|
66209
66429
|
export declare type MutationUpdateDevOpsContainerRelationshipEntityPropertiesArgs = {
|
|
66210
66430
|
input: UpdateDevOpsContainerRelationshipEntityPropertiesInput;
|
|
@@ -69273,6 +69493,7 @@ export declare type Query = {
|
|
|
69273
69493
|
externalCollaboratorDefaultSpace?: Maybe<ExternalCollaboratorDefaultSpace>;
|
|
69274
69494
|
externalContentMediaSession?: Maybe<ContentMediaSession>;
|
|
69275
69495
|
external_entities?: Maybe<ExternalEntities>;
|
|
69496
|
+
external_entitiesV2?: Maybe<ExternalEntities>;
|
|
69276
69497
|
favoriteContent?: Maybe<PaginatedContentList>;
|
|
69277
69498
|
featureDiscovery?: Maybe<Array<Maybe<DiscoveredFeature>>>;
|
|
69278
69499
|
feed?: Maybe<PaginatedFeed>;
|
|
@@ -69343,6 +69564,7 @@ export declare type Query = {
|
|
|
69343
69564
|
jiraProjectRelationshipsForService?: Maybe<DevOpsServiceAndJiraProjectRelationshipConnection>;
|
|
69344
69565
|
jiraReleases?: Maybe<JiraReleases>;
|
|
69345
69566
|
jiraServers?: Maybe<JiraServersResult>;
|
|
69567
|
+
jira_projectByIdOrKey?: Maybe<JiraProject>;
|
|
69346
69568
|
jsmChat?: Maybe<JsmChatQuery>;
|
|
69347
69569
|
jsw?: Maybe<JswQuery>;
|
|
69348
69570
|
knowledgeBase?: Maybe<KnowledgeBaseQueryApi>;
|
|
@@ -69435,9 +69657,12 @@ export declare type Query = {
|
|
|
69435
69657
|
radar_fieldValues?: Maybe<RadarFieldValuesConnection>;
|
|
69436
69658
|
radar_groupMetrics?: Maybe<RadarGroupMetricsConnection>;
|
|
69437
69659
|
radar_position?: Maybe<RadarPosition>;
|
|
69660
|
+
radar_positionByAri?: Maybe<RadarPosition>;
|
|
69438
69661
|
radar_positions?: Maybe<RadarPositionConnection>;
|
|
69439
69662
|
radar_positionsByAris?: Maybe<Array<RadarPosition>>;
|
|
69663
|
+
radar_positionsSearch?: Maybe<RadarPositionConnection>;
|
|
69440
69664
|
radar_worker?: Maybe<RadarWorker>;
|
|
69665
|
+
radar_workerByAri?: Maybe<RadarWorker>;
|
|
69441
69666
|
radar_workersByAris?: Maybe<Array<RadarWorker>>;
|
|
69442
69667
|
radar_workspace: RadarWorkspace;
|
|
69443
69668
|
reactedUsers?: Maybe<ReactedUsersResponse>;
|
|
@@ -69741,6 +69966,7 @@ export declare type QueryCollabTokenArgs = {
|
|
|
69741
69966
|
export declare type QueryCommentsArgs = {
|
|
69742
69967
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
69743
69968
|
before?: InputMaybe<Scalars['String']['input']>;
|
|
69969
|
+
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
69744
69970
|
commentId?: InputMaybe<Scalars['ID']['input']>;
|
|
69745
69971
|
contentStatus?: InputMaybe<Array<InputMaybe<GraphQlContentStatus>>>;
|
|
69746
69972
|
depth?: InputMaybe<Depth>;
|
|
@@ -71103,6 +71329,10 @@ export declare type QueryExternalContentMediaSessionArgs = {
|
|
|
71103
71329
|
export declare type QueryExternal_EntitiesArgs = {
|
|
71104
71330
|
ids: Array<Scalars['ID']['input']>;
|
|
71105
71331
|
};
|
|
71332
|
+
export declare type QueryExternal_EntitiesV2Args = {
|
|
71333
|
+
graphWorkspaceAri: Scalars['ID']['input'];
|
|
71334
|
+
ids: Array<Scalars['ID']['input']>;
|
|
71335
|
+
};
|
|
71106
71336
|
export declare type QueryFavoriteContentArgs = {
|
|
71107
71337
|
limit?: InputMaybe<Scalars['Int']['input']>;
|
|
71108
71338
|
start?: InputMaybe<Scalars['Int']['input']>;
|
|
@@ -71317,6 +71547,10 @@ export declare type QueryJiraProjectRelationshipsForServiceArgs = {
|
|
|
71317
71547
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
71318
71548
|
id: Scalars['ID']['input'];
|
|
71319
71549
|
};
|
|
71550
|
+
export declare type QueryJira_ProjectByIdOrKeyArgs = {
|
|
71551
|
+
cloudId: Scalars['ID']['input'];
|
|
71552
|
+
idOrKey: Scalars['String']['input'];
|
|
71553
|
+
};
|
|
71320
71554
|
export declare type QueryKnowledgeBaseArgs = {
|
|
71321
71555
|
cloudId: Scalars['ID']['input'];
|
|
71322
71556
|
};
|
|
@@ -71608,6 +71842,9 @@ export declare type QueryRadar_GroupMetricsArgs = {
|
|
|
71608
71842
|
export declare type QueryRadar_PositionArgs = {
|
|
71609
71843
|
id: Scalars['ID']['input'];
|
|
71610
71844
|
};
|
|
71845
|
+
export declare type QueryRadar_PositionByAriArgs = {
|
|
71846
|
+
id: Scalars['ID']['input'];
|
|
71847
|
+
};
|
|
71611
71848
|
export declare type QueryRadar_PositionsArgs = {
|
|
71612
71849
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
71613
71850
|
before?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -71620,9 +71857,21 @@ export declare type QueryRadar_PositionsArgs = {
|
|
|
71620
71857
|
export declare type QueryRadar_PositionsByArisArgs = {
|
|
71621
71858
|
ids: Array<Scalars['ID']['input']>;
|
|
71622
71859
|
};
|
|
71860
|
+
export declare type QueryRadar_PositionsSearchArgs = {
|
|
71861
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
71862
|
+
before?: InputMaybe<Scalars['String']['input']>;
|
|
71863
|
+
cloudId: Scalars['ID']['input'];
|
|
71864
|
+
fieldIdIsIn?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
71865
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
71866
|
+
last?: InputMaybe<Scalars['Int']['input']>;
|
|
71867
|
+
rql?: InputMaybe<Scalars['String']['input']>;
|
|
71868
|
+
};
|
|
71623
71869
|
export declare type QueryRadar_WorkerArgs = {
|
|
71624
71870
|
id: Scalars['ID']['input'];
|
|
71625
71871
|
};
|
|
71872
|
+
export declare type QueryRadar_WorkerByAriArgs = {
|
|
71873
|
+
id: Scalars['ID']['input'];
|
|
71874
|
+
};
|
|
71626
71875
|
export declare type QueryRadar_WorkersByArisArgs = {
|
|
71627
71876
|
ids: Array<Scalars['ID']['input']>;
|
|
71628
71877
|
};
|
|
@@ -72272,6 +72521,10 @@ export declare type RadarUrlFieldValue = {
|
|
|
72272
72521
|
icon?: Maybe<Scalars['String']['output']>;
|
|
72273
72522
|
value?: Maybe<Scalars['String']['output']>;
|
|
72274
72523
|
};
|
|
72524
|
+
export declare type RadarUserContext = {
|
|
72525
|
+
__typename?: 'RadarUserContext';
|
|
72526
|
+
position?: Maybe<RadarPosition>;
|
|
72527
|
+
};
|
|
72275
72528
|
export declare type RadarWorker = Node & RadarEntity & {
|
|
72276
72529
|
__typename?: 'RadarWorker';
|
|
72277
72530
|
entityId: Scalars['ID']['output'];
|
|
@@ -72299,6 +72552,7 @@ export declare type RadarWorkspace = {
|
|
|
72299
72552
|
functions: Array<RadarFunction>;
|
|
72300
72553
|
id: Scalars['ID']['output'];
|
|
72301
72554
|
positionFields: Array<RadarFieldDefinition>;
|
|
72555
|
+
userContext?: Maybe<RadarUserContext>;
|
|
72302
72556
|
};
|
|
72303
72557
|
export declare type RankColumnInput = {
|
|
72304
72558
|
boardId: Scalars['ID']['input'];
|
|
@@ -74062,6 +74316,7 @@ export declare type SearchFilterInput = {
|
|
|
74062
74316
|
externalFilters?: InputMaybe<SearchExternalFilter>;
|
|
74063
74317
|
jiraFilters?: InputMaybe<SearchJiraFilter>;
|
|
74064
74318
|
locations: Array<Scalars['String']['input']>;
|
|
74319
|
+
mercuryFilters?: InputMaybe<SearchMercuryFilter>;
|
|
74065
74320
|
thirdPartyFilters?: InputMaybe<SearchThirdPartyFilter>;
|
|
74066
74321
|
};
|
|
74067
74322
|
export declare type SearchInterleaverScrapingResult = {
|
|
@@ -74105,6 +74360,10 @@ export declare type SearchL2Feature = {
|
|
|
74105
74360
|
export declare type SearchL2FeatureProvider = {
|
|
74106
74361
|
l2Features?: Maybe<Array<Maybe<SearchL2Feature>>>;
|
|
74107
74362
|
};
|
|
74363
|
+
export declare type SearchMercuryFilter = {
|
|
74364
|
+
focusAreaTypeIds?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
74365
|
+
owners?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
74366
|
+
};
|
|
74108
74367
|
export declare type SearchProductCount = {
|
|
74109
74368
|
__typename?: 'SearchProductCount';
|
|
74110
74369
|
count: Scalars['Int']['output'];
|
|
@@ -74290,6 +74549,7 @@ export declare type SearchResultGraphDocument = SearchL2FeatureProvider & Search
|
|
|
74290
74549
|
linkedEntities?: Maybe<Array<SearchResultGraphDocument>>;
|
|
74291
74550
|
owner?: Maybe<ThirdPartyUser>;
|
|
74292
74551
|
permissionLevel?: Maybe<Scalars['String']['output']>;
|
|
74552
|
+
providerId?: Maybe<Scalars['String']['output']>;
|
|
74293
74553
|
scoreL2Ranker?: Maybe<Scalars['Float']['output']>;
|
|
74294
74554
|
subtype?: Maybe<Scalars['String']['output']>;
|
|
74295
74555
|
title: Scalars['String']['output'];
|
|
@@ -80012,6 +80272,7 @@ export declare type TrelloCardUpdated = {
|
|
|
80012
80272
|
id: Scalars['ID']['output'];
|
|
80013
80273
|
labels?: Maybe<TrelloLabelUpdatedConnection>;
|
|
80014
80274
|
lastActivityAt?: Maybe<Scalars['DateTime']['output']>;
|
|
80275
|
+
members?: Maybe<TrelloMemberUpdatedConnection>;
|
|
80015
80276
|
name?: Maybe<Scalars['String']['output']>;
|
|
80016
80277
|
objectId?: Maybe<Scalars['ID']['output']>;
|
|
80017
80278
|
position?: Maybe<Scalars['Float']['output']>;
|
|
@@ -80084,7 +80345,7 @@ export declare type TrelloCreatePlannerCalendarEventOptions = {
|
|
|
80084
80345
|
eventType?: InputMaybe<TrelloPlannerCalendarEventType>;
|
|
80085
80346
|
readOnly?: InputMaybe<Scalars['Boolean']['input']>;
|
|
80086
80347
|
start: Scalars['DateTime']['input'];
|
|
80087
|
-
title
|
|
80348
|
+
title: Scalars['String']['input'];
|
|
80088
80349
|
visibility?: InputMaybe<TrelloPlannerCalendarEventVisibility>;
|
|
80089
80350
|
};
|
|
80090
80351
|
export declare type TrelloCreatePlannerCalendarEventPayload = Payload & {
|
|
@@ -80394,6 +80655,10 @@ export declare type TrelloMemberUpdated = {
|
|
|
80394
80655
|
boards?: Maybe<TrelloBoardConnectionUpdated>;
|
|
80395
80656
|
id?: Maybe<Scalars['ID']['output']>;
|
|
80396
80657
|
};
|
|
80658
|
+
export declare type TrelloMemberUpdatedConnection = {
|
|
80659
|
+
__typename?: 'TrelloMemberUpdatedConnection';
|
|
80660
|
+
nodes?: Maybe<Array<TrelloMember>>;
|
|
80661
|
+
};
|
|
80397
80662
|
export declare type TrelloMemberWorkspaceConnection = {
|
|
80398
80663
|
__typename?: 'TrelloMemberWorkspaceConnection';
|
|
80399
80664
|
edges?: Maybe<Array<TrelloMemberWorkspaceEdge>>;
|
|
@@ -81338,6 +81603,7 @@ export declare type UnifiedForumsSnapshot = UnifiedINode & {
|
|
|
81338
81603
|
lastVisitTime?: Maybe<Scalars['String']['output']>;
|
|
81339
81604
|
minutesOnline?: Maybe<Scalars['Int']['output']>;
|
|
81340
81605
|
rank?: Maybe<Scalars['String']['output']>;
|
|
81606
|
+
rankPosition?: Maybe<Scalars['Int']['output']>;
|
|
81341
81607
|
repliesCreated?: Maybe<Scalars['Int']['output']>;
|
|
81342
81608
|
roles?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
|
|
81343
81609
|
status?: Maybe<Scalars['String']['output']>;
|
|
@@ -81468,8 +81734,12 @@ export declare type UnifiedLearning = UnifiedINode & {
|
|
|
81468
81734
|
recentCoursesBadges?: Maybe<UnifiedUProfileBadgesResult>;
|
|
81469
81735
|
};
|
|
81470
81736
|
export declare type UnifiedLearningCertificationsArgs = {
|
|
81471
|
-
after?: InputMaybe<Scalars['
|
|
81737
|
+
after?: InputMaybe<Scalars['Int']['input']>;
|
|
81472
81738
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
81739
|
+
sortDirection?: InputMaybe<UnifiedSortDirection>;
|
|
81740
|
+
sortField?: InputMaybe<UnifiedLearningCertificationSortField>;
|
|
81741
|
+
status?: InputMaybe<UnifiedLearningCertificationStatus>;
|
|
81742
|
+
type?: InputMaybe<Array<UnifiedLearningCertificationType>>;
|
|
81473
81743
|
};
|
|
81474
81744
|
export declare type UnifiedLearningRecentCoursesArgs = {
|
|
81475
81745
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -81485,10 +81755,11 @@ export declare type UnifiedLearningCertification = UnifiedINode & {
|
|
|
81485
81755
|
expireDate?: Maybe<Scalars['String']['output']>;
|
|
81486
81756
|
id: Scalars['ID']['output'];
|
|
81487
81757
|
imageUrl?: Maybe<Scalars['String']['output']>;
|
|
81488
|
-
inactiveDate?: Maybe<Scalars['String']['output']>;
|
|
81489
81758
|
name?: Maybe<Scalars['String']['output']>;
|
|
81490
81759
|
nameAbbr?: Maybe<Scalars['String']['output']>;
|
|
81760
|
+
publicUrl?: Maybe<Scalars['String']['output']>;
|
|
81491
81761
|
status?: Maybe<Scalars['String']['output']>;
|
|
81762
|
+
type?: Maybe<Scalars['String']['output']>;
|
|
81492
81763
|
};
|
|
81493
81764
|
export declare type UnifiedLearningCertificationConnection = UnifiedIConnection & {
|
|
81494
81765
|
__typename?: 'UnifiedLearningCertificationConnection';
|
|
@@ -81501,6 +81772,26 @@ export declare type UnifiedLearningCertificationEdge = UnifiedIEdge & {
|
|
|
81501
81772
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
81502
81773
|
node?: Maybe<UnifiedLearningCertification>;
|
|
81503
81774
|
};
|
|
81775
|
+
export declare enum UnifiedLearningCertificationSortField {
|
|
81776
|
+
ActiveDate = "ACTIVE_DATE",
|
|
81777
|
+
ExpireDate = "EXPIRE_DATE",
|
|
81778
|
+
Id = "ID",
|
|
81779
|
+
ImageUrl = "IMAGE_URL",
|
|
81780
|
+
Name = "NAME",
|
|
81781
|
+
NameAbbr = "NAME_ABBR",
|
|
81782
|
+
PublicUrl = "PUBLIC_URL",
|
|
81783
|
+
Status = "STATUS",
|
|
81784
|
+
Type = "TYPE"
|
|
81785
|
+
}
|
|
81786
|
+
export declare enum UnifiedLearningCertificationStatus {
|
|
81787
|
+
Active = "ACTIVE",
|
|
81788
|
+
Expired = "EXPIRED"
|
|
81789
|
+
}
|
|
81790
|
+
export declare enum UnifiedLearningCertificationType {
|
|
81791
|
+
Badge = "BADGE",
|
|
81792
|
+
Certification = "CERTIFICATION",
|
|
81793
|
+
Standing = "STANDING"
|
|
81794
|
+
}
|
|
81504
81795
|
export declare type UnifiedLinkAuthenticationPayload = {
|
|
81505
81796
|
__typename?: 'UnifiedLinkAuthenticationPayload';
|
|
81506
81797
|
account1?: Maybe<UnifiedAccountDetails>;
|
|
@@ -81547,7 +81838,7 @@ export declare type UnifiedLinkingMutation = {
|
|
|
81547
81838
|
authenticateLinkingWithLoggedInAccount?: Maybe<UnifiedULinkAuthenticationPayload>;
|
|
81548
81839
|
completeTransaction?: Maybe<UnifiedLinkingStatusPayload>;
|
|
81549
81840
|
initializeLinkingWithLoggedInAccount?: Maybe<UnifiedULinkInitiationPayload>;
|
|
81550
|
-
|
|
81841
|
+
updateLinkingWithPrimaryAccountAaid?: Maybe<UnifiedLinkingStatusPayload>;
|
|
81551
81842
|
};
|
|
81552
81843
|
export declare type UnifiedLinkingMutationAuthenticateLinkingWithLoggedInAccountArgs = {
|
|
81553
81844
|
token: Scalars['String']['input'];
|
|
@@ -81555,7 +81846,7 @@ export declare type UnifiedLinkingMutationAuthenticateLinkingWithLoggedInAccount
|
|
|
81555
81846
|
export declare type UnifiedLinkingMutationCompleteTransactionArgs = {
|
|
81556
81847
|
token: Scalars['String']['input'];
|
|
81557
81848
|
};
|
|
81558
|
-
export declare type
|
|
81849
|
+
export declare type UnifiedLinkingMutationUpdateLinkingWithPrimaryAccountAaidArgs = {
|
|
81559
81850
|
aaid: Scalars['String']['input'];
|
|
81560
81851
|
token: Scalars['String']['input'];
|
|
81561
81852
|
};
|
|
@@ -81761,6 +82052,10 @@ export declare type UnifiedRecentCourseEdge = UnifiedIEdge & {
|
|
|
81761
82052
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
81762
82053
|
node?: Maybe<UnifiedRecentCourse>;
|
|
81763
82054
|
};
|
|
82055
|
+
export declare enum UnifiedSortDirection {
|
|
82056
|
+
Asc = "ASC",
|
|
82057
|
+
Desc = "DESC"
|
|
82058
|
+
}
|
|
81764
82059
|
export declare type UnifiedUAccount2Result = UnifiedAccount2 | UnifiedQueryError;
|
|
81765
82060
|
export declare type UnifiedUAccountDetailsResult = UnifiedAccountDetails | UnifiedQueryError;
|
|
81766
82061
|
export declare type UnifiedUAccountResult = UnifiedAccount | UnifiedQueryError;
|
|
@@ -82993,6 +83288,15 @@ export declare type VirtualAgentGlobalStatisticsProjection = {
|
|
|
82993
83288
|
totalMatched?: Maybe<Scalars['Float']['output']>;
|
|
82994
83289
|
totalTraffic?: Maybe<Scalars['Int']['output']>;
|
|
82995
83290
|
};
|
|
83291
|
+
export declare type VirtualAgentIntent = Node & {
|
|
83292
|
+
__typename?: 'VirtualAgentIntent';
|
|
83293
|
+
confirmationMessage?: Maybe<Scalars['String']['output']>;
|
|
83294
|
+
description?: Maybe<Scalars['String']['output']>;
|
|
83295
|
+
id: Scalars['ID']['output'];
|
|
83296
|
+
name: Scalars['String']['output'];
|
|
83297
|
+
status: VirtualAgentIntentStatus;
|
|
83298
|
+
suggestionButtonText?: Maybe<Scalars['String']['output']>;
|
|
83299
|
+
};
|
|
82996
83300
|
export declare type VirtualAgentIntentProjection = Node & {
|
|
82997
83301
|
__typename?: 'VirtualAgentIntentProjection';
|
|
82998
83302
|
description?: Maybe<Scalars['String']['output']>;
|
|
@@ -83012,6 +83316,11 @@ export declare type VirtualAgentIntentProjectionTmp = Node & {
|
|
|
83012
83316
|
id: Scalars['ID']['output'];
|
|
83013
83317
|
name: Scalars['String']['output'];
|
|
83014
83318
|
};
|
|
83319
|
+
export declare type VirtualAgentIntentQuestion = Node & {
|
|
83320
|
+
__typename?: 'VirtualAgentIntentQuestion';
|
|
83321
|
+
id: Scalars['ID']['output'];
|
|
83322
|
+
text: Scalars['String']['output'];
|
|
83323
|
+
};
|
|
83015
83324
|
export declare type VirtualAgentIntentQuestionProjection = Node & {
|
|
83016
83325
|
__typename?: 'VirtualAgentIntentQuestionProjection';
|
|
83017
83326
|
id: Scalars['ID']['output'];
|
|
@@ -83064,6 +83373,10 @@ export declare type VirtualAgentIntentStatisticsProjection = {
|
|
|
83064
83373
|
totalTraffic?: Maybe<Scalars['Int']['output']>;
|
|
83065
83374
|
trafficPercentageOfAllAssisted?: Maybe<Scalars['Float']['output']>;
|
|
83066
83375
|
};
|
|
83376
|
+
export declare enum VirtualAgentIntentStatus {
|
|
83377
|
+
Live = "LIVE",
|
|
83378
|
+
TestOnly = "TEST_ONLY"
|
|
83379
|
+
}
|
|
83067
83380
|
export declare type VirtualAgentIntentTemplate = Node & {
|
|
83068
83381
|
__typename?: 'VirtualAgentIntentTemplate';
|
|
83069
83382
|
description?: Maybe<Scalars['String']['output']>;
|
|
@@ -83162,6 +83475,10 @@ export declare type VirtualAgentMutationApiUpdateVirtualAgentConfigurationArgs =
|
|
|
83162
83475
|
export declare type VirtualAgentQueryApi = {
|
|
83163
83476
|
__typename?: 'VirtualAgentQueryApi';
|
|
83164
83477
|
availableToHelpCenter?: Maybe<Scalars['Boolean']['output']>;
|
|
83478
|
+
conversationsByIds?: Maybe<Array<Maybe<VirtualAgentConversation>>>;
|
|
83479
|
+
intentQuestionsByIds?: Maybe<Array<Maybe<VirtualAgentIntentQuestion>>>;
|
|
83480
|
+
intentTemplatesByIds?: Maybe<Array<Maybe<VirtualAgentIntentTemplate>>>;
|
|
83481
|
+
intentsByIds?: Maybe<Array<Maybe<VirtualAgentIntent>>>;
|
|
83165
83482
|
validateRequestType?: Maybe<VirtualAgentRequestTypeConnectionStatus>;
|
|
83166
83483
|
virtualAgentAvailability?: Maybe<Scalars['Boolean']['output']>;
|
|
83167
83484
|
virtualAgentEntitlements?: Maybe<VirtualAgentFeatures>;
|
|
@@ -83169,6 +83486,18 @@ export declare type VirtualAgentQueryApi = {
|
|
|
83169
83486
|
export declare type VirtualAgentQueryApiAvailableToHelpCenterArgs = {
|
|
83170
83487
|
helpCenterId: Scalars['ID']['input'];
|
|
83171
83488
|
};
|
|
83489
|
+
export declare type VirtualAgentQueryApiConversationsByIdsArgs = {
|
|
83490
|
+
ids: Array<Scalars['ID']['input']>;
|
|
83491
|
+
};
|
|
83492
|
+
export declare type VirtualAgentQueryApiIntentQuestionsByIdsArgs = {
|
|
83493
|
+
ids: Array<Scalars['ID']['input']>;
|
|
83494
|
+
};
|
|
83495
|
+
export declare type VirtualAgentQueryApiIntentTemplatesByIdsArgs = {
|
|
83496
|
+
ids: Array<Scalars['ID']['input']>;
|
|
83497
|
+
};
|
|
83498
|
+
export declare type VirtualAgentQueryApiIntentsByIdsArgs = {
|
|
83499
|
+
ids: Array<Scalars['ID']['input']>;
|
|
83500
|
+
};
|
|
83172
83501
|
export declare type VirtualAgentQueryApiValidateRequestTypeArgs = {
|
|
83173
83502
|
jiraProjectId: Scalars['ID']['input'];
|
|
83174
83503
|
requestTypeId: Scalars['String']['input'];
|
|
@@ -83392,18 +83721,11 @@ export declare type WhiteboardFeatures = {
|
|
|
83392
83721
|
};
|
|
83393
83722
|
export declare type WorkSuggestions = {
|
|
83394
83723
|
__typename?: 'WorkSuggestions';
|
|
83395
|
-
codeTabSuggestions: WorkSuggestionsCodeTabTaskConnection;
|
|
83396
83724
|
suggestionsByIssues?: Maybe<WorkSuggestionsByIssuesResponse>;
|
|
83397
83725
|
suggestionsByProjects?: Maybe<WorkSuggestionsByProjectsResponse>;
|
|
83398
83726
|
userProfileByCloudId?: Maybe<WorkSuggestionsUserProfile>;
|
|
83399
83727
|
workSuggestionsByContextAri: WorkSuggestionsConnection;
|
|
83400
83728
|
};
|
|
83401
|
-
export declare type WorkSuggestionsCodeTabSuggestionsArgs = {
|
|
83402
|
-
after?: InputMaybe<Scalars['String']['input']>;
|
|
83403
|
-
cloudId: Scalars['ID']['input'];
|
|
83404
|
-
first?: InputMaybe<Scalars['Int']['input']>;
|
|
83405
|
-
projectAri: Scalars['ID']['input'];
|
|
83406
|
-
};
|
|
83407
83729
|
export declare type WorkSuggestionsSuggestionsByIssuesArgs = {
|
|
83408
83730
|
cloudId: Scalars['ID']['input'];
|
|
83409
83731
|
issueIds: Array<Scalars['ID']['input']>;
|
|
@@ -83551,83 +83873,6 @@ export declare type WorkSuggestionsByProjectsResponseCompassSuggestionsArgs = {
|
|
|
83551
83873
|
export declare type WorkSuggestionsByProjectsResponseInactivePrSuggestionsArgs = {
|
|
83552
83874
|
input?: InputMaybe<WorkSuggestionsInput>;
|
|
83553
83875
|
};
|
|
83554
|
-
export declare type WorkSuggestionsCodeTabEdge = {
|
|
83555
|
-
__typename?: 'WorkSuggestionsCodeTabEdge';
|
|
83556
|
-
cursor: Scalars['String']['output'];
|
|
83557
|
-
node?: Maybe<WorkSuggestionsCodeTabTask>;
|
|
83558
|
-
};
|
|
83559
|
-
export declare type WorkSuggestionsCodeTabPullRequestDraftTask = WorkSuggestionsCodeTabTask & {
|
|
83560
|
-
__typename?: 'WorkSuggestionsCodeTabPullRequestDraftTask';
|
|
83561
|
-
approvalsCount: Scalars['Int']['output'];
|
|
83562
|
-
author?: Maybe<WorkSuggestionsUserDetail>;
|
|
83563
|
-
commentCount: Scalars['Int']['output'];
|
|
83564
|
-
destinationBranchName?: Maybe<Scalars['String']['output']>;
|
|
83565
|
-
id: Scalars['String']['output'];
|
|
83566
|
-
lastUpdated: Scalars['String']['output'];
|
|
83567
|
-
providerIconUrl?: Maybe<Scalars['String']['output']>;
|
|
83568
|
-
providerName?: Maybe<Scalars['String']['output']>;
|
|
83569
|
-
repositoryName?: Maybe<Scalars['String']['output']>;
|
|
83570
|
-
sourceBranchName?: Maybe<Scalars['String']['output']>;
|
|
83571
|
-
title: Scalars['String']['output'];
|
|
83572
|
-
url: Scalars['String']['output'];
|
|
83573
|
-
};
|
|
83574
|
-
export declare type WorkSuggestionsCodeTabPullRequestNeedsWorkTask = WorkSuggestionsCodeTabTask & {
|
|
83575
|
-
__typename?: 'WorkSuggestionsCodeTabPullRequestNeedsWorkTask';
|
|
83576
|
-
commentCount: Scalars['Int']['output'];
|
|
83577
|
-
destinationBranchName?: Maybe<Scalars['String']['output']>;
|
|
83578
|
-
id: Scalars['String']['output'];
|
|
83579
|
-
lastUpdated: Scalars['String']['output'];
|
|
83580
|
-
needsWorkCount: Scalars['Int']['output'];
|
|
83581
|
-
providerIconUrl?: Maybe<Scalars['String']['output']>;
|
|
83582
|
-
providerName?: Maybe<Scalars['String']['output']>;
|
|
83583
|
-
repositoryName?: Maybe<Scalars['String']['output']>;
|
|
83584
|
-
reviewers?: Maybe<Array<Maybe<WorkSuggestionsUserDetail>>>;
|
|
83585
|
-
sourceBranchName?: Maybe<Scalars['String']['output']>;
|
|
83586
|
-
title: Scalars['String']['output'];
|
|
83587
|
-
url: Scalars['String']['output'];
|
|
83588
|
-
};
|
|
83589
|
-
export declare type WorkSuggestionsCodeTabPullRequestReviewTask = WorkSuggestionsCodeTabTask & {
|
|
83590
|
-
__typename?: 'WorkSuggestionsCodeTabPullRequestReviewTask';
|
|
83591
|
-
approvalsCount: Scalars['Int']['output'];
|
|
83592
|
-
author?: Maybe<WorkSuggestionsUserDetail>;
|
|
83593
|
-
commentCount: Scalars['Int']['output'];
|
|
83594
|
-
destinationBranchName?: Maybe<Scalars['String']['output']>;
|
|
83595
|
-
id: Scalars['String']['output'];
|
|
83596
|
-
lastUpdated: Scalars['String']['output'];
|
|
83597
|
-
providerIconUrl?: Maybe<Scalars['String']['output']>;
|
|
83598
|
-
providerName?: Maybe<Scalars['String']['output']>;
|
|
83599
|
-
repositoryName?: Maybe<Scalars['String']['output']>;
|
|
83600
|
-
sourceBranchName?: Maybe<Scalars['String']['output']>;
|
|
83601
|
-
title: Scalars['String']['output'];
|
|
83602
|
-
url: Scalars['String']['output'];
|
|
83603
|
-
};
|
|
83604
|
-
export declare type WorkSuggestionsCodeTabPullRequestStaleTask = WorkSuggestionsCodeTabTask & {
|
|
83605
|
-
__typename?: 'WorkSuggestionsCodeTabPullRequestStaleTask';
|
|
83606
|
-
approvalsCount: Scalars['Int']['output'];
|
|
83607
|
-
author?: Maybe<WorkSuggestionsUserDetail>;
|
|
83608
|
-
commentCount: Scalars['Int']['output'];
|
|
83609
|
-
destinationBranchName?: Maybe<Scalars['String']['output']>;
|
|
83610
|
-
id: Scalars['String']['output'];
|
|
83611
|
-
lastUpdated: Scalars['String']['output'];
|
|
83612
|
-
providerIconUrl?: Maybe<Scalars['String']['output']>;
|
|
83613
|
-
providerName?: Maybe<Scalars['String']['output']>;
|
|
83614
|
-
repositoryName?: Maybe<Scalars['String']['output']>;
|
|
83615
|
-
sourceBranchName?: Maybe<Scalars['String']['output']>;
|
|
83616
|
-
title: Scalars['String']['output'];
|
|
83617
|
-
url: Scalars['String']['output'];
|
|
83618
|
-
};
|
|
83619
|
-
export declare type WorkSuggestionsCodeTabTask = {
|
|
83620
|
-
id: Scalars['String']['output'];
|
|
83621
|
-
title: Scalars['String']['output'];
|
|
83622
|
-
url: Scalars['String']['output'];
|
|
83623
|
-
};
|
|
83624
|
-
export declare type WorkSuggestionsCodeTabTaskConnection = {
|
|
83625
|
-
__typename?: 'WorkSuggestionsCodeTabTaskConnection';
|
|
83626
|
-
edges?: Maybe<Array<WorkSuggestionsCodeTabEdge>>;
|
|
83627
|
-
nodes?: Maybe<Array<Maybe<WorkSuggestionsCodeTabTask>>>;
|
|
83628
|
-
pageInfo: PageInfo;
|
|
83629
|
-
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
83630
|
-
};
|
|
83631
83876
|
export declare type WorkSuggestionsCommon = {
|
|
83632
83877
|
id: Scalars['String']['output'];
|
|
83633
83878
|
orderScore?: Maybe<WorkSuggestionsOrderScore>;
|
|
@@ -83922,6 +84167,7 @@ export declare type WorkSuggestionsPullRequestSuggestionsResponse = {
|
|
|
83922
84167
|
__typename?: 'WorkSuggestionsPullRequestSuggestionsResponse';
|
|
83923
84168
|
mergeableSuggestions?: Maybe<Array<WorkSuggestionsPrMergeableTask>>;
|
|
83924
84169
|
newCommentsSuggestions?: Maybe<Array<WorkSuggestionsPrCommentsTask>>;
|
|
84170
|
+
pullRequestReviewSuggestions?: Maybe<Array<WorkSuggestionsPullRequestReviewTask>>;
|
|
83925
84171
|
};
|
|
83926
84172
|
export declare type WorkSuggestionsPurgeUserActionStateInput = {
|
|
83927
84173
|
cloudId: Scalars['ID']['input'];
|