@forge/cli-shared 6.6.1 → 6.6.2-next.1
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 +14 -0
- package/out/graphql/graphql-types.d.ts +394 -28
- package/out/graphql/graphql-types.d.ts.map +1 -1
- package/out/graphql/graphql-types.js +45 -23
- package/out/ui/text.js +1 -1
- package/package.json +2 -2
|
@@ -1960,16 +1960,20 @@ export declare type AppVersionRollout = {
|
|
|
1960
1960
|
appId: Scalars['ID']['output'];
|
|
1961
1961
|
cancelledByAccountId?: Maybe<Scalars['String']['output']>;
|
|
1962
1962
|
completedAt?: Maybe<Scalars['DateTime']['output']>;
|
|
1963
|
-
completedUpgradeCount: Scalars['Int']['output'];
|
|
1964
1963
|
createdAt: Scalars['DateTime']['output'];
|
|
1965
1964
|
createdByAccountId: Scalars['String']['output'];
|
|
1966
|
-
failedUpgradeCount: Scalars['Int']['output'];
|
|
1967
1965
|
id: Scalars['ID']['output'];
|
|
1968
|
-
|
|
1966
|
+
progress: AppVersionRolloutProgress;
|
|
1969
1967
|
sourceVersionId: Scalars['ID']['output'];
|
|
1970
1968
|
status: AppVersionRolloutStatus;
|
|
1971
1969
|
targetVersionId: Scalars['ID']['output'];
|
|
1972
1970
|
};
|
|
1971
|
+
export declare type AppVersionRolloutProgress = {
|
|
1972
|
+
__typename?: 'AppVersionRolloutProgress';
|
|
1973
|
+
completedUpgradeCount: Scalars['Int']['output'];
|
|
1974
|
+
failedUpgradeCount: Scalars['Int']['output'];
|
|
1975
|
+
pendingUpgradeCount: Scalars['Int']['output'];
|
|
1976
|
+
};
|
|
1973
1977
|
export declare enum AppVersionRolloutStatus {
|
|
1974
1978
|
Cancelled = "CANCELLED",
|
|
1975
1979
|
Complete = "COMPLETE",
|
|
@@ -2181,7 +2185,7 @@ export declare type AriGraphRelationshipNode = {
|
|
|
2181
2185
|
data?: Maybe<AriGraphRelationshipNodeData>;
|
|
2182
2186
|
id: Scalars['ID']['output'];
|
|
2183
2187
|
};
|
|
2184
|
-
export declare type AriGraphRelationshipNodeData = ConfluencePage | ConfluenceSpace | DeploymentSummary | DevOpsDesign | DevOpsDocument | DevOpsFeatureFlag | DevOpsOperationsComponentDetails | DevOpsOperationsIncidentDetails | DevOpsOperationsPostIncidentReviewDetails | DevOpsPullRequestDetails | DevOpsRepository | DevOpsSecurityVulnerabilityDetails | DevOpsService | ExternalCommit | JiraConfluenceRemoteIssueLink | JiraCustomRemoteIssueLink | JiraIssue | JiraIssueRemoteIssueLink | JiraProject | JiraVersion | JiraWebRemoteIssueLink | OpsgenieTeam | ThirdPartySecurityContainer | ThirdPartySecurityWorkspace | TownsquareComment | TownsquareGoal | TownsquareProject;
|
|
2188
|
+
export declare type AriGraphRelationshipNodeData = ConfluencePage | ConfluenceSpace | DeploymentSummary | DevOpsDesign | DevOpsDocument | DevOpsFeatureFlag | DevOpsOperationsComponentDetails | DevOpsOperationsIncidentDetails | DevOpsOperationsPostIncidentReviewDetails | DevOpsPullRequestDetails | DevOpsRepository | DevOpsSecurityVulnerabilityDetails | DevOpsService | ExternalCommit | JiraAutodevJob | JiraConfluenceRemoteIssueLink | JiraCustomRemoteIssueLink | JiraIssue | JiraIssueRemoteIssueLink | JiraProject | JiraVersion | JiraWebRemoteIssueLink | OpsgenieTeam | ThirdPartySecurityContainer | ThirdPartySecurityWorkspace | TownsquareComment | TownsquareGoal | TownsquareProject;
|
|
2185
2189
|
export declare type AriGraphRelationshipsErrorReference = {
|
|
2186
2190
|
__typename?: 'AriGraphRelationshipsErrorReference';
|
|
2187
2191
|
from?: Maybe<Scalars['ID']['output']>;
|
|
@@ -3963,6 +3967,27 @@ export declare type CodeRepository = {
|
|
|
3963
3967
|
href?: Maybe<Scalars['URL']['output']>;
|
|
3964
3968
|
name: Scalars['String']['output'];
|
|
3965
3969
|
};
|
|
3970
|
+
export declare type CollabContextPageInfo = {
|
|
3971
|
+
__typename?: 'CollabContextPageInfo';
|
|
3972
|
+
endCursor?: Maybe<Scalars['String']['output']>;
|
|
3973
|
+
hasNextPage?: Maybe<Scalars['Boolean']['output']>;
|
|
3974
|
+
hasPreviousPage?: Maybe<Scalars['Boolean']['output']>;
|
|
3975
|
+
startCursor?: Maybe<Scalars['String']['output']>;
|
|
3976
|
+
};
|
|
3977
|
+
export declare type CollabContextWorkspace = {
|
|
3978
|
+
__typename?: 'CollabContextWorkspace';
|
|
3979
|
+
id: Scalars['ID']['output'];
|
|
3980
|
+
};
|
|
3981
|
+
export declare type CollabContextWorkspaceConnection = {
|
|
3982
|
+
__typename?: 'CollabContextWorkspaceConnection';
|
|
3983
|
+
edges?: Maybe<Array<Maybe<CollabContextWorkspaceEdge>>>;
|
|
3984
|
+
pageInfo?: Maybe<CollabContextPageInfo>;
|
|
3985
|
+
};
|
|
3986
|
+
export declare type CollabContextWorkspaceEdge = {
|
|
3987
|
+
__typename?: 'CollabContextWorkspaceEdge';
|
|
3988
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
3989
|
+
node?: Maybe<CollabContextWorkspace>;
|
|
3990
|
+
};
|
|
3966
3991
|
export declare type CollabDraft = {
|
|
3967
3992
|
__typename?: 'CollabDraft';
|
|
3968
3993
|
document?: Maybe<Scalars['String']['output']>;
|
|
@@ -7635,6 +7660,7 @@ export declare type CompassScorecardAppliedToComponentsQueryFilter = {
|
|
|
7635
7660
|
score?: InputMaybe<CompassScorecardAppliedToComponentsThresholdFilter>;
|
|
7636
7661
|
scoreRanges?: InputMaybe<CompassScorecardAppliedToComponentsScoreRangeFilter>;
|
|
7637
7662
|
scorecardCriteria?: InputMaybe<Array<CompassScorecardAppliedToComponentsCriteriaFilter>>;
|
|
7663
|
+
scorecardStatus?: InputMaybe<CompassScorecardAppliedToComponentsStatusFilter>;
|
|
7638
7664
|
types?: InputMaybe<CompassScorecardAppliedToComponentsTypesFilter>;
|
|
7639
7665
|
};
|
|
7640
7666
|
export declare type CompassScorecardAppliedToComponentsQueryResult = CompassScorecardAppliedToComponentsConnection | QueryError;
|
|
@@ -7649,6 +7675,9 @@ export declare type CompassScorecardAppliedToComponentsScoreRange = {
|
|
|
7649
7675
|
export declare type CompassScorecardAppliedToComponentsScoreRangeFilter = {
|
|
7650
7676
|
in: Array<CompassScorecardAppliedToComponentsScoreRange>;
|
|
7651
7677
|
};
|
|
7678
|
+
export declare type CompassScorecardAppliedToComponentsStatusFilter = {
|
|
7679
|
+
statuses: Array<Scalars['ID']['input']>;
|
|
7680
|
+
};
|
|
7652
7681
|
export declare type CompassScorecardAppliedToComponentsThresholdFilter = {
|
|
7653
7682
|
lt: Scalars['Int']['input'];
|
|
7654
7683
|
};
|
|
@@ -8875,6 +8904,7 @@ export declare type ConfluenceBlogPost = {
|
|
|
8875
8904
|
author?: Maybe<ConfluenceUserInfo>;
|
|
8876
8905
|
blogPostId: Scalars['ID']['output'];
|
|
8877
8906
|
body?: Maybe<ConfluenceBodies>;
|
|
8907
|
+
commentCountSummary?: Maybe<ConfluenceCommentCountSummary>;
|
|
8878
8908
|
comments?: Maybe<Array<Maybe<ConfluenceComment>>>;
|
|
8879
8909
|
createdAt?: Maybe<Scalars['String']['output']>;
|
|
8880
8910
|
id: Scalars['ID']['output'];
|
|
@@ -8900,6 +8930,7 @@ export declare type ConfluenceBlogPostPropertiesArgs = {
|
|
|
8900
8930
|
export declare type ConfluenceBlogPostLinks = {
|
|
8901
8931
|
__typename?: 'ConfluenceBlogPostLinks';
|
|
8902
8932
|
base?: Maybe<Scalars['String']['output']>;
|
|
8933
|
+
editUi?: Maybe<Scalars['String']['output']>;
|
|
8903
8934
|
webUi?: Maybe<Scalars['String']['output']>;
|
|
8904
8935
|
};
|
|
8905
8936
|
export declare type ConfluenceBlogPostProperty = {
|
|
@@ -9107,6 +9138,14 @@ export declare type ConfluenceContentState = {
|
|
|
9107
9138
|
id?: Maybe<Scalars['ID']['output']>;
|
|
9108
9139
|
name?: Maybe<Scalars['String']['output']>;
|
|
9109
9140
|
};
|
|
9141
|
+
export declare enum ConfluenceContentStatus {
|
|
9142
|
+
Archived = "ARCHIVED",
|
|
9143
|
+
Current = "CURRENT",
|
|
9144
|
+
Deleted = "DELETED",
|
|
9145
|
+
Draft = "DRAFT",
|
|
9146
|
+
Historical = "HISTORICAL",
|
|
9147
|
+
Trashed = "TRASHED"
|
|
9148
|
+
}
|
|
9110
9149
|
export declare type ConfluenceContentTitleEmoji = {
|
|
9111
9150
|
__typename?: 'ConfluenceContentTitleEmoji';
|
|
9112
9151
|
id?: Maybe<Scalars['String']['output']>;
|
|
@@ -9244,13 +9283,16 @@ export declare type ConfluenceDatabase = {
|
|
|
9244
9283
|
__typename?: 'ConfluenceDatabase';
|
|
9245
9284
|
allAncestors?: Maybe<Array<Maybe<ConfluenceAncestor>>>;
|
|
9246
9285
|
author?: Maybe<ConfluenceUserInfo>;
|
|
9286
|
+
commentCountSummary?: Maybe<ConfluenceCommentCountSummary>;
|
|
9247
9287
|
databaseId: Scalars['ID']['output'];
|
|
9248
9288
|
id: Scalars['ID']['output'];
|
|
9249
9289
|
latestVersion?: Maybe<ConfluenceContentVersion>;
|
|
9250
9290
|
links?: Maybe<ConfluenceDatabaseLinks>;
|
|
9251
9291
|
owner?: Maybe<ConfluenceUserInfo>;
|
|
9252
9292
|
space?: Maybe<ConfluenceSpace>;
|
|
9293
|
+
status?: Maybe<ConfluenceContentStatus>;
|
|
9253
9294
|
title?: Maybe<Scalars['String']['output']>;
|
|
9295
|
+
type?: Maybe<ConfluenceContentType>;
|
|
9254
9296
|
};
|
|
9255
9297
|
export declare type ConfluenceDatabaseLinks = {
|
|
9256
9298
|
__typename?: 'ConfluenceDatabaseLinks';
|
|
@@ -9372,6 +9414,7 @@ export declare type ConfluenceEmbed = {
|
|
|
9372
9414
|
__typename?: 'ConfluenceEmbed';
|
|
9373
9415
|
allAncestors?: Maybe<Array<Maybe<ConfluenceAncestor>>>;
|
|
9374
9416
|
author?: Maybe<ConfluenceUserInfo>;
|
|
9417
|
+
commentCountSummary?: Maybe<ConfluenceCommentCountSummary>;
|
|
9375
9418
|
embedId: Scalars['ID']['output'];
|
|
9376
9419
|
id: Scalars['ID']['output'];
|
|
9377
9420
|
latestVersion?: Maybe<ConfluenceContentVersion>;
|
|
@@ -9379,7 +9422,9 @@ export declare type ConfluenceEmbed = {
|
|
|
9379
9422
|
metadata?: Maybe<ConfluenceContentMetadata>;
|
|
9380
9423
|
owner?: Maybe<ConfluenceUserInfo>;
|
|
9381
9424
|
space?: Maybe<ConfluenceSpace>;
|
|
9425
|
+
status?: Maybe<ConfluenceContentStatus>;
|
|
9382
9426
|
title?: Maybe<Scalars['String']['output']>;
|
|
9427
|
+
type?: Maybe<ConfluenceContentType>;
|
|
9383
9428
|
};
|
|
9384
9429
|
export declare type ConfluenceEmbedLinks = {
|
|
9385
9430
|
__typename?: 'ConfluenceEmbedLinks';
|
|
@@ -9402,7 +9447,9 @@ export declare type ConfluenceFolder = {
|
|
|
9402
9447
|
metadata?: Maybe<ConfluenceContentMetadata>;
|
|
9403
9448
|
owner?: Maybe<ConfluenceUserInfo>;
|
|
9404
9449
|
space?: Maybe<ConfluenceSpace>;
|
|
9450
|
+
status?: Maybe<ConfluenceContentStatus>;
|
|
9405
9451
|
title?: Maybe<Scalars['String']['output']>;
|
|
9452
|
+
type?: Maybe<ConfluenceContentType>;
|
|
9406
9453
|
};
|
|
9407
9454
|
export declare type ConfluenceFolderLinks = {
|
|
9408
9455
|
__typename?: 'ConfluenceFolderLinks';
|
|
@@ -15340,6 +15387,7 @@ export declare type ConfluencePageInfo = {
|
|
|
15340
15387
|
export declare type ConfluencePageLinks = {
|
|
15341
15388
|
__typename?: 'ConfluencePageLinks';
|
|
15342
15389
|
base?: Maybe<Scalars['String']['output']>;
|
|
15390
|
+
editUi?: Maybe<Scalars['String']['output']>;
|
|
15343
15391
|
webUi?: Maybe<Scalars['String']['output']>;
|
|
15344
15392
|
};
|
|
15345
15393
|
export declare type ConfluencePageProperty = {
|
|
@@ -15637,6 +15685,7 @@ export declare type ConfluenceSearchResponseEdge = {
|
|
|
15637
15685
|
};
|
|
15638
15686
|
export declare type ConfluenceSpace = {
|
|
15639
15687
|
__typename?: 'ConfluenceSpace';
|
|
15688
|
+
alias?: Maybe<Scalars['String']['output']>;
|
|
15640
15689
|
createdBy?: Maybe<ConfluenceUserInfo>;
|
|
15641
15690
|
createdDate?: Maybe<Scalars['String']['output']>;
|
|
15642
15691
|
description?: Maybe<ConfluenceSpaceDescription>;
|
|
@@ -16507,12 +16556,14 @@ export declare type ConfluenceWhiteboard = {
|
|
|
16507
16556
|
allAncestors?: Maybe<Array<Maybe<ConfluenceAncestor>>>;
|
|
16508
16557
|
author?: Maybe<ConfluenceUserInfo>;
|
|
16509
16558
|
body?: Maybe<ConfluenceWhiteboardBody>;
|
|
16559
|
+
commentCountSummary?: Maybe<ConfluenceCommentCountSummary>;
|
|
16510
16560
|
comments?: Maybe<Array<Maybe<ConfluenceComment>>>;
|
|
16511
16561
|
id: Scalars['ID']['output'];
|
|
16512
16562
|
latestVersion?: Maybe<ConfluenceContentVersion>;
|
|
16513
16563
|
links?: Maybe<ConfluenceWhiteboardLinks>;
|
|
16514
16564
|
owner?: Maybe<ConfluenceUserInfo>;
|
|
16515
16565
|
space?: Maybe<ConfluenceSpace>;
|
|
16566
|
+
status?: Maybe<ConfluenceContentStatus>;
|
|
16516
16567
|
title?: Maybe<Scalars['String']['output']>;
|
|
16517
16568
|
type?: Maybe<ConfluenceContentType>;
|
|
16518
16569
|
whiteboardId: Scalars['ID']['output'];
|
|
@@ -19974,6 +20025,22 @@ export declare type CustomerServiceEntitlementRemovePayload = {
|
|
|
19974
20025
|
errors?: Maybe<Array<MutationError>>;
|
|
19975
20026
|
success: Scalars['Boolean']['output'];
|
|
19976
20027
|
};
|
|
20028
|
+
export declare type CustomerServiceEscalatableJiraProject = {
|
|
20029
|
+
__typename?: 'CustomerServiceEscalatableJiraProject';
|
|
20030
|
+
id: Scalars['ID']['output'];
|
|
20031
|
+
projectIconUrl?: Maybe<Scalars['String']['output']>;
|
|
20032
|
+
projectName?: Maybe<Scalars['String']['output']>;
|
|
20033
|
+
};
|
|
20034
|
+
export declare type CustomerServiceEscalatableJiraProjectEdge = {
|
|
20035
|
+
__typename?: 'CustomerServiceEscalatableJiraProjectEdge';
|
|
20036
|
+
cursor: Scalars['String']['output'];
|
|
20037
|
+
node?: Maybe<CustomerServiceEscalatableJiraProject>;
|
|
20038
|
+
};
|
|
20039
|
+
export declare type CustomerServiceEscalatableJiraProjectsConnection = {
|
|
20040
|
+
__typename?: 'CustomerServiceEscalatableJiraProjectsConnection';
|
|
20041
|
+
edges: Array<CustomerServiceEscalatableJiraProjectEdge>;
|
|
20042
|
+
pageInfo: PageInfo;
|
|
20043
|
+
};
|
|
19977
20044
|
export declare type CustomerServiceFilterInput = {
|
|
19978
20045
|
context: CustomerServiceContext;
|
|
19979
20046
|
};
|
|
@@ -20373,6 +20440,7 @@ export declare type CustomerServiceQueryApi = {
|
|
|
20373
20440
|
__typename?: 'CustomerServiceQueryApi';
|
|
20374
20441
|
customDetailsByEntityType?: Maybe<CustomerServiceCustomDetailsQueryResult>;
|
|
20375
20442
|
entitlementById?: Maybe<CustomerServiceEntitlementQueryResult>;
|
|
20443
|
+
escalatableJiraProjects?: Maybe<CustomerServiceEscalatableJiraProjectsConnection>;
|
|
20376
20444
|
individualAttributes?: Maybe<CustomerServiceAttributesQueryResult>;
|
|
20377
20445
|
individualByAccountId?: Maybe<CustomerServiceIndividualQueryResult>;
|
|
20378
20446
|
organizationAttributes?: Maybe<CustomerServiceAttributesQueryResult>;
|
|
@@ -20389,6 +20457,11 @@ export declare type CustomerServiceQueryApiEntitlementByIdArgs = {
|
|
|
20389
20457
|
entitlementId: Scalars['ID']['input'];
|
|
20390
20458
|
filter?: InputMaybe<CustomerServiceFilterInput>;
|
|
20391
20459
|
};
|
|
20460
|
+
export declare type CustomerServiceQueryApiEscalatableJiraProjectsArgs = {
|
|
20461
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
20462
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
20463
|
+
projectId: Scalars['ID']['input'];
|
|
20464
|
+
};
|
|
20392
20465
|
export declare type CustomerServiceQueryApiIndividualByAccountIdArgs = {
|
|
20393
20466
|
accountId: Scalars['ID']['input'];
|
|
20394
20467
|
filter?: InputMaybe<CustomerServiceFilterInput>;
|
|
@@ -21360,6 +21433,7 @@ export declare type DevAiGenericMutationErrorExtension = MutationErrorExtension
|
|
|
21360
21433
|
export declare type DevAiInvokeAutodevRovoAgentInBulkIssueResult = {
|
|
21361
21434
|
__typename?: 'DevAiInvokeAutodevRovoAgentInBulkIssueResult';
|
|
21362
21435
|
conversationId?: Maybe<Scalars['ID']['output']>;
|
|
21436
|
+
issue?: Maybe<JiraIssue>;
|
|
21363
21437
|
issueId?: Maybe<Scalars['ID']['output']>;
|
|
21364
21438
|
};
|
|
21365
21439
|
export declare type DevAiInvokeAutodevRovoAgentInBulkPayload = Payload & {
|
|
@@ -30181,6 +30255,7 @@ export declare type GraphStore = {
|
|
|
30181
30255
|
issueChangesComponentRelationship?: Maybe<GraphStoreFullIssueChangesComponentConnection>;
|
|
30182
30256
|
issueHasAssignee?: Maybe<GraphStoreSimplifiedIssueHasAssigneeConnection>;
|
|
30183
30257
|
issueHasAssigneeInverse?: Maybe<GraphStoreSimplifiedIssueHasAssigneeInverseConnection>;
|
|
30258
|
+
issueHasAutodevJob?: Maybe<GraphStoreSimplifiedIssueHasAutodevJobConnection>;
|
|
30184
30259
|
issueHasAutodevJobInverse?: Maybe<GraphStoreSimplifiedIssueHasAutodevJobInverseConnection>;
|
|
30185
30260
|
issueMentionedInConversation?: Maybe<GraphStoreSimplifiedIssueMentionedInConversationConnection>;
|
|
30186
30261
|
issueMentionedInConversationInverse?: Maybe<GraphStoreSimplifiedIssueMentionedInConversationInverseConnection>;
|
|
@@ -31834,6 +31909,13 @@ export declare type GraphStoreIssueHasAssigneeInverseArgs = {
|
|
|
31834
31909
|
id: Scalars['ID']['input'];
|
|
31835
31910
|
sort?: InputMaybe<GraphStoreIssueHasAssigneeSortInput>;
|
|
31836
31911
|
};
|
|
31912
|
+
export declare type GraphStoreIssueHasAutodevJobArgs = {
|
|
31913
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
31914
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
31915
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
31916
|
+
id: Scalars['ID']['input'];
|
|
31917
|
+
sort?: InputMaybe<GraphStoreIssueHasAutodevJobSortInput>;
|
|
31918
|
+
};
|
|
31837
31919
|
export declare type GraphStoreIssueHasAutodevJobInverseArgs = {
|
|
31838
31920
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
31839
31921
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -31944,6 +32026,7 @@ export declare type GraphStoreIssueRecursiveAssociatedPrRelationshipArgs = {
|
|
|
31944
32026
|
export declare type GraphStoreIssueToWhiteboardArgs = {
|
|
31945
32027
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
31946
32028
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
32029
|
+
filter?: InputMaybe<GraphStoreIssueToWhiteboardFilterInput>;
|
|
31947
32030
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
31948
32031
|
id: Scalars['ID']['input'];
|
|
31949
32032
|
sort?: InputMaybe<GraphStoreIssueToWhiteboardSortInput>;
|
|
@@ -31951,17 +32034,20 @@ export declare type GraphStoreIssueToWhiteboardArgs = {
|
|
|
31951
32034
|
export declare type GraphStoreIssueToWhiteboardInverseArgs = {
|
|
31952
32035
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
31953
32036
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
32037
|
+
filter?: InputMaybe<GraphStoreIssueToWhiteboardFilterInput>;
|
|
31954
32038
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
31955
32039
|
id: Scalars['ID']['input'];
|
|
31956
32040
|
sort?: InputMaybe<GraphStoreIssueToWhiteboardSortInput>;
|
|
31957
32041
|
};
|
|
31958
32042
|
export declare type GraphStoreIssueToWhiteboardInverseRelationshipArgs = {
|
|
31959
32043
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
32044
|
+
filter?: InputMaybe<GraphStoreIssueToWhiteboardFilterInput>;
|
|
31960
32045
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
31961
32046
|
id: Scalars['ID']['input'];
|
|
31962
32047
|
};
|
|
31963
32048
|
export declare type GraphStoreIssueToWhiteboardRelationshipArgs = {
|
|
31964
32049
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
32050
|
+
filter?: InputMaybe<GraphStoreIssueToWhiteboardFilterInput>;
|
|
31965
32051
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
31966
32052
|
id: Scalars['ID']['input'];
|
|
31967
32053
|
};
|
|
@@ -32536,6 +32622,7 @@ export declare type GraphStoreProjectAssociatedFeatureFlagRelationshipArgs = {
|
|
|
32536
32622
|
export declare type GraphStoreProjectAssociatedIncidentArgs = {
|
|
32537
32623
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
32538
32624
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
32625
|
+
filter?: InputMaybe<GraphStoreProjectAssociatedIncidentFilterInput>;
|
|
32539
32626
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
32540
32627
|
id: Scalars['ID']['input'];
|
|
32541
32628
|
sort?: InputMaybe<GraphStoreProjectAssociatedIncidentSortInput>;
|
|
@@ -32543,17 +32630,20 @@ export declare type GraphStoreProjectAssociatedIncidentArgs = {
|
|
|
32543
32630
|
export declare type GraphStoreProjectAssociatedIncidentInverseArgs = {
|
|
32544
32631
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
32545
32632
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
32633
|
+
filter?: InputMaybe<GraphStoreProjectAssociatedIncidentFilterInput>;
|
|
32546
32634
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
32547
32635
|
id: Scalars['ID']['input'];
|
|
32548
32636
|
sort?: InputMaybe<GraphStoreProjectAssociatedIncidentSortInput>;
|
|
32549
32637
|
};
|
|
32550
32638
|
export declare type GraphStoreProjectAssociatedIncidentInverseRelationshipArgs = {
|
|
32551
32639
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
32640
|
+
filter?: InputMaybe<GraphStoreProjectAssociatedIncidentFilterInput>;
|
|
32552
32641
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
32553
32642
|
id: Scalars['ID']['input'];
|
|
32554
32643
|
};
|
|
32555
32644
|
export declare type GraphStoreProjectAssociatedIncidentRelationshipArgs = {
|
|
32556
32645
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
32646
|
+
filter?: InputMaybe<GraphStoreProjectAssociatedIncidentFilterInput>;
|
|
32557
32647
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
32558
32648
|
id: Scalars['ID']['input'];
|
|
32559
32649
|
};
|
|
@@ -32644,6 +32734,7 @@ export declare type GraphStoreProjectAssociatedRepoRelationshipArgs = {
|
|
|
32644
32734
|
export declare type GraphStoreProjectAssociatedServiceArgs = {
|
|
32645
32735
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
32646
32736
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
32737
|
+
filter?: InputMaybe<GraphStoreProjectAssociatedServiceFilterInput>;
|
|
32647
32738
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
32648
32739
|
id: Scalars['ID']['input'];
|
|
32649
32740
|
sort?: InputMaybe<GraphStoreProjectAssociatedServiceSortInput>;
|
|
@@ -32651,17 +32742,20 @@ export declare type GraphStoreProjectAssociatedServiceArgs = {
|
|
|
32651
32742
|
export declare type GraphStoreProjectAssociatedServiceInverseArgs = {
|
|
32652
32743
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
32653
32744
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
32745
|
+
filter?: InputMaybe<GraphStoreProjectAssociatedServiceFilterInput>;
|
|
32654
32746
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
32655
32747
|
id: Scalars['ID']['input'];
|
|
32656
32748
|
sort?: InputMaybe<GraphStoreProjectAssociatedServiceSortInput>;
|
|
32657
32749
|
};
|
|
32658
32750
|
export declare type GraphStoreProjectAssociatedServiceInverseRelationshipArgs = {
|
|
32659
32751
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
32752
|
+
filter?: InputMaybe<GraphStoreProjectAssociatedServiceFilterInput>;
|
|
32660
32753
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
32661
32754
|
id: Scalars['ID']['input'];
|
|
32662
32755
|
};
|
|
32663
32756
|
export declare type GraphStoreProjectAssociatedServiceRelationshipArgs = {
|
|
32664
32757
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
32758
|
+
filter?: InputMaybe<GraphStoreProjectAssociatedServiceFilterInput>;
|
|
32665
32759
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
32666
32760
|
id: Scalars['ID']['input'];
|
|
32667
32761
|
};
|
|
@@ -33544,6 +33638,7 @@ export declare type GraphStoreUserAssignedPirInverseArgs = {
|
|
|
33544
33638
|
export declare type GraphStoreUserAttendedCalendarEventArgs = {
|
|
33545
33639
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
33546
33640
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
33641
|
+
filter?: InputMaybe<GraphStoreUserAttendedCalendarEventFilterInput>;
|
|
33547
33642
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
33548
33643
|
id: Scalars['ID']['input'];
|
|
33549
33644
|
sort?: InputMaybe<GraphStoreUserAttendedCalendarEventSortInput>;
|
|
@@ -33551,6 +33646,7 @@ export declare type GraphStoreUserAttendedCalendarEventArgs = {
|
|
|
33551
33646
|
export declare type GraphStoreUserAttendedCalendarEventInverseArgs = {
|
|
33552
33647
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
33553
33648
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
33649
|
+
filter?: InputMaybe<GraphStoreUserAttendedCalendarEventFilterInput>;
|
|
33554
33650
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
33555
33651
|
id: Scalars['ID']['input'];
|
|
33556
33652
|
sort?: InputMaybe<GraphStoreUserAttendedCalendarEventSortInput>;
|
|
@@ -33700,6 +33796,7 @@ export declare type GraphStoreUserCreatedBranchInverseArgs = {
|
|
|
33700
33796
|
export declare type GraphStoreUserCreatedCalendarEventArgs = {
|
|
33701
33797
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
33702
33798
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
33799
|
+
filter?: InputMaybe<GraphStoreUserCreatedCalendarEventFilterInput>;
|
|
33703
33800
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
33704
33801
|
id: Scalars['ID']['input'];
|
|
33705
33802
|
sort?: InputMaybe<GraphStoreUserCreatedCalendarEventSortInput>;
|
|
@@ -33707,6 +33804,7 @@ export declare type GraphStoreUserCreatedCalendarEventArgs = {
|
|
|
33707
33804
|
export declare type GraphStoreUserCreatedCalendarEventInverseArgs = {
|
|
33708
33805
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
33709
33806
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
33807
|
+
filter?: InputMaybe<GraphStoreUserCreatedCalendarEventFilterInput>;
|
|
33710
33808
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
33711
33809
|
id: Scalars['ID']['input'];
|
|
33712
33810
|
sort?: InputMaybe<GraphStoreUserCreatedCalendarEventSortInput>;
|
|
@@ -34220,6 +34318,7 @@ export declare type GraphStoreUserOwnedRepositoryInverseArgs = {
|
|
|
34220
34318
|
export declare type GraphStoreUserOwnsComponentArgs = {
|
|
34221
34319
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
34222
34320
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
34321
|
+
filter?: InputMaybe<GraphStoreUserOwnsComponentFilterInput>;
|
|
34223
34322
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
34224
34323
|
id: Scalars['ID']['input'];
|
|
34225
34324
|
sort?: InputMaybe<GraphStoreUserOwnsComponentSortInput>;
|
|
@@ -34227,6 +34326,7 @@ export declare type GraphStoreUserOwnsComponentArgs = {
|
|
|
34227
34326
|
export declare type GraphStoreUserOwnsComponentInverseArgs = {
|
|
34228
34327
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
34229
34328
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
34329
|
+
filter?: InputMaybe<GraphStoreUserOwnsComponentFilterInput>;
|
|
34230
34330
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
34231
34331
|
id: Scalars['ID']['input'];
|
|
34232
34332
|
sort?: InputMaybe<GraphStoreUserOwnsComponentSortInput>;
|
|
@@ -35032,8 +35132,8 @@ export declare type GraphStoreAtlasGoalHasUpdateUpdateTypeFilterInput = {
|
|
|
35032
35132
|
is?: InputMaybe<Array<GraphStoreAtlasGoalHasUpdateUpdateType>>;
|
|
35033
35133
|
isNot?: InputMaybe<Array<GraphStoreAtlasGoalHasUpdateUpdateType>>;
|
|
35034
35134
|
};
|
|
35035
|
-
export declare type GraphStoreAtlasHomeFeedQueryToMetadataNodeUnion = ConfluencePage | JiraIssue | TeamV2 | TownsquareGoal | TownsquareProject;
|
|
35036
|
-
export declare type GraphStoreAtlasHomeFeedQueryToNodeUnion = ConfluencePage | JiraIssue | TeamV2 | TownsquareGoal | TownsquareProject;
|
|
35135
|
+
export declare type GraphStoreAtlasHomeFeedQueryToMetadataNodeUnion = ConfluencePage | JiraIssue | LoomComment | LoomVideo | TeamV2 | TownsquareGoal | TownsquareGoalUpdate | TownsquareProject | TownsquareProjectUpdate;
|
|
35136
|
+
export declare type GraphStoreAtlasHomeFeedQueryToNodeUnion = ConfluencePage | JiraIssue | LoomComment | LoomVideo | TeamV2 | TownsquareGoal | TownsquareGoalUpdate | TownsquareProject | TownsquareProjectUpdate;
|
|
35037
35137
|
export declare type GraphStoreAtlasHomeQueryConnection = {
|
|
35038
35138
|
__typename?: 'GraphStoreAtlasHomeQueryConnection';
|
|
35039
35139
|
nodes: Array<GraphStoreAtlasHomeQueryNode>;
|
|
@@ -35072,8 +35172,14 @@ export declare enum GraphStoreAtlasHomeSourcesEnum {
|
|
|
35072
35172
|
UserShouldFollowGoal = "USER_SHOULD_FOLLOW_GOAL",
|
|
35073
35173
|
UserShouldViewSharedPage = "USER_SHOULD_VIEW_SHARED_PAGE",
|
|
35074
35174
|
UserViewAssignedIssue = "USER_VIEW_ASSIGNED_ISSUE",
|
|
35175
|
+
UserViewNegativeGoal = "USER_VIEW_NEGATIVE_GOAL",
|
|
35176
|
+
UserViewNegativeProject = "USER_VIEW_NEGATIVE_PROJECT",
|
|
35075
35177
|
UserViewPageComments = "USER_VIEW_PAGE_COMMENTS",
|
|
35076
|
-
|
|
35178
|
+
UserViewSharedVideo = "USER_VIEW_SHARED_VIDEO",
|
|
35179
|
+
UserViewTaggedVideoComment = "USER_VIEW_TAGGED_VIDEO_COMMENT",
|
|
35180
|
+
UserViewUpdatedGoal = "USER_VIEW_UPDATED_GOAL",
|
|
35181
|
+
UserViewUpdatedPriorityIssue = "USER_VIEW_UPDATED_PRIORITY_ISSUE",
|
|
35182
|
+
UserViewUpdatedProject = "USER_VIEW_UPDATED_PROJECT"
|
|
35077
35183
|
}
|
|
35078
35184
|
export declare type GraphStoreAtlasProjectContributesToAtlasGoalSortInput = {
|
|
35079
35185
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
@@ -36360,7 +36466,7 @@ export declare type GraphStoreCypherQueryFromNode = {
|
|
|
36360
36466
|
data?: Maybe<GraphStoreCypherQueryFromNodeUnion>;
|
|
36361
36467
|
id: Scalars['ID']['output'];
|
|
36362
36468
|
};
|
|
36363
|
-
export declare type GraphStoreCypherQueryFromNodeUnion = AppUser | AtlassianAccountUser | CompassComponent | ConfluenceBlogPost | ConfluenceDatabase | ConfluenceFolder | ConfluenceFooterComment | ConfluenceInlineComment | ConfluencePage | ConfluenceSpace | ConfluenceWhiteboard | CustomerUser | DeploymentSummary | DevOpsDesign | DevOpsDocument | DevOpsFeatureFlag | DevOpsOperationsComponentDetails | DevOpsOperationsIncidentDetails | DevOpsOperationsPostIncidentReviewDetails | DevOpsProjectDetails | DevOpsPullRequestDetails | DevOpsRepository | DevOpsSecurityVulnerabilityDetails | DevOpsService | ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | ExternalCommit | ExternalConversation | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalFeatureFlag | ExternalMessage | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalVideo | ExternalVulnerability | JiraAlignAggProject | JiraBoard | JiraConfluenceRemoteIssueLink | JiraCustomRemoteIssueLink | JiraIssue | JiraIssueRemoteIssueLink | JiraPlatformComment | JiraPostIncidentReviewLink | JiraProject | JiraServiceManagementComment | JiraVersion | JiraWebRemoteIssueLink | JiraWorklog | LoomComment | LoomVideo | MercuryFocusArea | OpsgenieTeam | RadarPosition | TeamV2 | ThirdPartyUser | TownsquareGoal | TownsquareGoalUpdate | TownsquareProject | TownsquareProjectUpdate;
|
|
36469
|
+
export declare type GraphStoreCypherQueryFromNodeUnion = AppUser | AtlassianAccountUser | CompassComponent | ConfluenceBlogPost | ConfluenceDatabase | ConfluenceFolder | ConfluenceFooterComment | ConfluenceInlineComment | ConfluencePage | ConfluenceSpace | ConfluenceWhiteboard | CustomerUser | DeploymentSummary | DevOpsDesign | DevOpsDocument | DevOpsFeatureFlag | DevOpsOperationsComponentDetails | DevOpsOperationsIncidentDetails | DevOpsOperationsPostIncidentReviewDetails | DevOpsProjectDetails | DevOpsPullRequestDetails | DevOpsRepository | DevOpsSecurityVulnerabilityDetails | DevOpsService | ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | ExternalCommit | ExternalConversation | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalFeatureFlag | ExternalMessage | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalVideo | ExternalVulnerability | JiraAlignAggProject | JiraAutodevJob | JiraBoard | JiraConfluenceRemoteIssueLink | JiraCustomRemoteIssueLink | JiraIssue | JiraIssueRemoteIssueLink | JiraPlatformComment | JiraPostIncidentReviewLink | JiraProject | JiraServiceManagementComment | JiraVersion | JiraWebRemoteIssueLink | JiraWorklog | LoomComment | LoomVideo | MercuryFocusArea | OpsgenieTeam | RadarPosition | TeamV2 | ThirdPartyUser | TownsquareGoal | TownsquareGoalUpdate | TownsquareProject | TownsquareProjectUpdate;
|
|
36364
36470
|
export declare type GraphStoreCypherQueryNode = {
|
|
36365
36471
|
__typename?: 'GraphStoreCypherQueryNode';
|
|
36366
36472
|
from: GraphStoreCypherQueryFromNode;
|
|
@@ -36385,8 +36491,8 @@ export declare type GraphStoreCypherQueryToNode = {
|
|
|
36385
36491
|
data?: Maybe<GraphStoreCypherQueryToNodeUnion>;
|
|
36386
36492
|
id: Scalars['ID']['output'];
|
|
36387
36493
|
};
|
|
36388
|
-
export declare type GraphStoreCypherQueryToNodeUnion = AppUser | AtlassianAccountUser | CompassComponent | ConfluenceBlogPost | ConfluenceDatabase | ConfluenceFolder | ConfluenceFooterComment | ConfluenceInlineComment | ConfluencePage | ConfluenceSpace | ConfluenceWhiteboard | CustomerUser | DeploymentSummary | DevOpsDesign | DevOpsDocument | DevOpsFeatureFlag | DevOpsOperationsComponentDetails | DevOpsOperationsIncidentDetails | DevOpsOperationsPostIncidentReviewDetails | DevOpsProjectDetails | DevOpsPullRequestDetails | DevOpsRepository | DevOpsSecurityVulnerabilityDetails | DevOpsService | ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | ExternalCommit | ExternalConversation | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalFeatureFlag | ExternalMessage | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalVideo | ExternalVulnerability | JiraAlignAggProject | JiraBoard | JiraConfluenceRemoteIssueLink | JiraCustomRemoteIssueLink | JiraIssue | JiraIssueRemoteIssueLink | JiraPlatformComment | JiraPostIncidentReviewLink | JiraProject | JiraServiceManagementComment | JiraVersion | JiraWebRemoteIssueLink | JiraWorklog | LoomComment | LoomVideo | MercuryFocusArea | OpsgenieTeam | RadarPosition | TeamV2 | ThirdPartyUser | TownsquareGoal | TownsquareGoalUpdate | TownsquareProject | TownsquareProjectUpdate;
|
|
36389
|
-
export declare type GraphStoreCypherQueryValueItemUnion = AppUser | AtlassianAccountUser | CompassComponent | ConfluenceBlogPost | ConfluenceDatabase | ConfluenceFolder | ConfluenceFooterComment | ConfluenceInlineComment | ConfluencePage | ConfluenceSpace | ConfluenceWhiteboard | CustomerUser | DeploymentSummary | DevOpsDesign | DevOpsDocument | DevOpsFeatureFlag | DevOpsOperationsComponentDetails | DevOpsOperationsIncidentDetails | DevOpsOperationsPostIncidentReviewDetails | DevOpsProjectDetails | DevOpsPullRequestDetails | DevOpsRepository | DevOpsSecurityVulnerabilityDetails | DevOpsService | ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | ExternalCommit | ExternalConversation | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalFeatureFlag | ExternalMessage | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalVideo | ExternalVulnerability | JiraAlignAggProject | JiraBoard | JiraConfluenceRemoteIssueLink | JiraCustomRemoteIssueLink | JiraIssue | JiraIssueRemoteIssueLink | JiraPlatformComment | JiraPostIncidentReviewLink | JiraProject | JiraServiceManagementComment | JiraVersion | JiraWebRemoteIssueLink | JiraWorklog | LoomComment | LoomVideo | MercuryFocusArea | OpsgenieTeam | RadarPosition | TeamV2 | ThirdPartyUser | TownsquareGoal | TownsquareGoalUpdate | TownsquareProject | TownsquareProjectUpdate;
|
|
36494
|
+
export declare type GraphStoreCypherQueryToNodeUnion = AppUser | AtlassianAccountUser | CompassComponent | ConfluenceBlogPost | ConfluenceDatabase | ConfluenceFolder | ConfluenceFooterComment | ConfluenceInlineComment | ConfluencePage | ConfluenceSpace | ConfluenceWhiteboard | CustomerUser | DeploymentSummary | DevOpsDesign | DevOpsDocument | DevOpsFeatureFlag | DevOpsOperationsComponentDetails | DevOpsOperationsIncidentDetails | DevOpsOperationsPostIncidentReviewDetails | DevOpsProjectDetails | DevOpsPullRequestDetails | DevOpsRepository | DevOpsSecurityVulnerabilityDetails | DevOpsService | ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | ExternalCommit | ExternalConversation | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalFeatureFlag | ExternalMessage | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalVideo | ExternalVulnerability | JiraAlignAggProject | JiraAutodevJob | JiraBoard | JiraConfluenceRemoteIssueLink | JiraCustomRemoteIssueLink | JiraIssue | JiraIssueRemoteIssueLink | JiraPlatformComment | JiraPostIncidentReviewLink | JiraProject | JiraServiceManagementComment | JiraVersion | JiraWebRemoteIssueLink | JiraWorklog | LoomComment | LoomVideo | MercuryFocusArea | OpsgenieTeam | RadarPosition | TeamV2 | ThirdPartyUser | TownsquareGoal | TownsquareGoalUpdate | TownsquareProject | TownsquareProjectUpdate;
|
|
36495
|
+
export declare type GraphStoreCypherQueryValueItemUnion = AppUser | AtlassianAccountUser | CompassComponent | ConfluenceBlogPost | ConfluenceDatabase | ConfluenceFolder | ConfluenceFooterComment | ConfluenceInlineComment | ConfluencePage | ConfluenceSpace | ConfluenceWhiteboard | CustomerUser | DeploymentSummary | DevOpsDesign | DevOpsDocument | DevOpsFeatureFlag | DevOpsOperationsComponentDetails | DevOpsOperationsIncidentDetails | DevOpsOperationsPostIncidentReviewDetails | DevOpsProjectDetails | DevOpsPullRequestDetails | DevOpsRepository | DevOpsSecurityVulnerabilityDetails | DevOpsService | ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | ExternalCommit | ExternalConversation | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalFeatureFlag | ExternalMessage | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalVideo | ExternalVulnerability | JiraAlignAggProject | JiraAutodevJob | JiraBoard | JiraConfluenceRemoteIssueLink | JiraCustomRemoteIssueLink | JiraIssue | JiraIssueRemoteIssueLink | JiraPlatformComment | JiraPostIncidentReviewLink | JiraProject | JiraServiceManagementComment | JiraVersion | JiraWebRemoteIssueLink | JiraWorklog | LoomComment | LoomVideo | MercuryFocusArea | OpsgenieTeam | RadarPosition | TeamV2 | ThirdPartyUser | TownsquareGoal | TownsquareGoalUpdate | TownsquareProject | TownsquareProjectUpdate;
|
|
36390
36496
|
export declare type GraphStoreCypherQueryValueNode = {
|
|
36391
36497
|
__typename?: 'GraphStoreCypherQueryValueNode';
|
|
36392
36498
|
data?: Maybe<GraphStoreCypherQueryValueItemUnion>;
|
|
@@ -40355,6 +40461,16 @@ export declare type GraphStoreIssueRecursiveAssociatedPrSortInput = {
|
|
|
40355
40461
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
40356
40462
|
toAti?: InputMaybe<GraphStoreSortInput>;
|
|
40357
40463
|
};
|
|
40464
|
+
export declare type GraphStoreIssueToWhiteboardConditionalFilterInput = {
|
|
40465
|
+
createdAt?: InputMaybe<GraphStoreDateFilterInput>;
|
|
40466
|
+
fromAti?: InputMaybe<GraphStoreAtiFilterInput>;
|
|
40467
|
+
lastModified?: InputMaybe<GraphStoreDateFilterInput>;
|
|
40468
|
+
toAti?: InputMaybe<GraphStoreAtiFilterInput>;
|
|
40469
|
+
};
|
|
40470
|
+
export declare type GraphStoreIssueToWhiteboardFilterInput = {
|
|
40471
|
+
and?: InputMaybe<Array<InputMaybe<GraphStoreIssueToWhiteboardConditionalFilterInput>>>;
|
|
40472
|
+
or?: InputMaybe<Array<InputMaybe<GraphStoreIssueToWhiteboardConditionalFilterInput>>>;
|
|
40473
|
+
};
|
|
40358
40474
|
export declare type GraphStoreIssueToWhiteboardSortInput = {
|
|
40359
40475
|
createdAt?: InputMaybe<GraphStoreSortInput>;
|
|
40360
40476
|
fromAti?: InputMaybe<GraphStoreSortInput>;
|
|
@@ -40900,6 +41016,16 @@ export declare type GraphStoreProjectAssociatedFeatureFlagSortInput = {
|
|
|
40900
41016
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
40901
41017
|
toAti?: InputMaybe<GraphStoreSortInput>;
|
|
40902
41018
|
};
|
|
41019
|
+
export declare type GraphStoreProjectAssociatedIncidentConditionalFilterInput = {
|
|
41020
|
+
createdAt?: InputMaybe<GraphStoreDateFilterInput>;
|
|
41021
|
+
fromAti?: InputMaybe<GraphStoreAtiFilterInput>;
|
|
41022
|
+
lastModified?: InputMaybe<GraphStoreDateFilterInput>;
|
|
41023
|
+
toAti?: InputMaybe<GraphStoreAtiFilterInput>;
|
|
41024
|
+
};
|
|
41025
|
+
export declare type GraphStoreProjectAssociatedIncidentFilterInput = {
|
|
41026
|
+
and?: InputMaybe<Array<InputMaybe<GraphStoreProjectAssociatedIncidentConditionalFilterInput>>>;
|
|
41027
|
+
or?: InputMaybe<Array<InputMaybe<GraphStoreProjectAssociatedIncidentConditionalFilterInput>>>;
|
|
41028
|
+
};
|
|
40903
41029
|
export declare type GraphStoreProjectAssociatedIncidentSortInput = {
|
|
40904
41030
|
createdAt?: InputMaybe<GraphStoreSortInput>;
|
|
40905
41031
|
fromAti?: InputMaybe<GraphStoreSortInput>;
|
|
@@ -41007,6 +41133,16 @@ export declare type GraphStoreProjectAssociatedRepoSortInput = {
|
|
|
41007
41133
|
toAti?: InputMaybe<GraphStoreSortInput>;
|
|
41008
41134
|
to_providerAri?: InputMaybe<GraphStoreSortInput>;
|
|
41009
41135
|
};
|
|
41136
|
+
export declare type GraphStoreProjectAssociatedServiceConditionalFilterInput = {
|
|
41137
|
+
createdAt?: InputMaybe<GraphStoreDateFilterInput>;
|
|
41138
|
+
fromAti?: InputMaybe<GraphStoreAtiFilterInput>;
|
|
41139
|
+
lastModified?: InputMaybe<GraphStoreDateFilterInput>;
|
|
41140
|
+
toAti?: InputMaybe<GraphStoreAtiFilterInput>;
|
|
41141
|
+
};
|
|
41142
|
+
export declare type GraphStoreProjectAssociatedServiceFilterInput = {
|
|
41143
|
+
and?: InputMaybe<Array<InputMaybe<GraphStoreProjectAssociatedServiceConditionalFilterInput>>>;
|
|
41144
|
+
or?: InputMaybe<Array<InputMaybe<GraphStoreProjectAssociatedServiceConditionalFilterInput>>>;
|
|
41145
|
+
};
|
|
41010
41146
|
export declare type GraphStoreProjectAssociatedServiceSortInput = {
|
|
41011
41147
|
createdAt?: InputMaybe<GraphStoreSortInput>;
|
|
41012
41148
|
fromAti?: InputMaybe<GraphStoreSortInput>;
|
|
@@ -42921,6 +43057,19 @@ export declare type GraphStoreSimplifiedIssueHasAssigneeInverseEdge = {
|
|
|
42921
43057
|
};
|
|
42922
43058
|
export declare type GraphStoreSimplifiedIssueHasAssigneeInverseUnion = JiraIssue;
|
|
42923
43059
|
export declare type GraphStoreSimplifiedIssueHasAssigneeUnion = AppUser | AtlassianAccountUser | CustomerUser;
|
|
43060
|
+
export declare type GraphStoreSimplifiedIssueHasAutodevJobConnection = HasPageInfo & {
|
|
43061
|
+
__typename?: 'GraphStoreSimplifiedIssueHasAutodevJobConnection';
|
|
43062
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedIssueHasAutodevJobEdge>>>;
|
|
43063
|
+
pageInfo: PageInfo;
|
|
43064
|
+
};
|
|
43065
|
+
export declare type GraphStoreSimplifiedIssueHasAutodevJobEdge = {
|
|
43066
|
+
__typename?: 'GraphStoreSimplifiedIssueHasAutodevJobEdge';
|
|
43067
|
+
createdAt: Scalars['DateTime']['output'];
|
|
43068
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
43069
|
+
id: Scalars['ID']['output'];
|
|
43070
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
43071
|
+
node?: Maybe<GraphStoreSimplifiedIssueHasAutodevJobUnion>;
|
|
43072
|
+
};
|
|
42924
43073
|
export declare type GraphStoreSimplifiedIssueHasAutodevJobInverseConnection = HasPageInfo & {
|
|
42925
43074
|
__typename?: 'GraphStoreSimplifiedIssueHasAutodevJobInverseConnection';
|
|
42926
43075
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedIssueHasAutodevJobInverseEdge>>>;
|
|
@@ -42935,6 +43084,7 @@ export declare type GraphStoreSimplifiedIssueHasAutodevJobInverseEdge = {
|
|
|
42935
43084
|
node?: Maybe<GraphStoreSimplifiedIssueHasAutodevJobInverseUnion>;
|
|
42936
43085
|
};
|
|
42937
43086
|
export declare type GraphStoreSimplifiedIssueHasAutodevJobInverseUnion = JiraIssue;
|
|
43087
|
+
export declare type GraphStoreSimplifiedIssueHasAutodevJobUnion = JiraAutodevJob;
|
|
42938
43088
|
export declare type GraphStoreSimplifiedIssueMentionedInConversationConnection = HasPageInfo & {
|
|
42939
43089
|
__typename?: 'GraphStoreSimplifiedIssueMentionedInConversationConnection';
|
|
42940
43090
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedIssueMentionedInConversationEdge>>>;
|
|
@@ -45231,10 +45381,12 @@ export declare type GraphStoreSimplifiedUserAssignedPirInverseEdge = {
|
|
|
45231
45381
|
};
|
|
45232
45382
|
export declare type GraphStoreSimplifiedUserAssignedPirInverseUnion = AppUser | AtlassianAccountUser | CustomerUser;
|
|
45233
45383
|
export declare type GraphStoreSimplifiedUserAssignedPirUnion = JiraIssue;
|
|
45234
|
-
export declare type GraphStoreSimplifiedUserAttendedCalendarEventConnection = HasPageInfo & {
|
|
45384
|
+
export declare type GraphStoreSimplifiedUserAttendedCalendarEventConnection = HasPageInfo & HasTotal & {
|
|
45235
45385
|
__typename?: 'GraphStoreSimplifiedUserAttendedCalendarEventConnection';
|
|
45236
45386
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserAttendedCalendarEventEdge>>>;
|
|
45387
|
+
isExactCount?: Maybe<Scalars['Boolean']['output']>;
|
|
45237
45388
|
pageInfo: PageInfo;
|
|
45389
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
45238
45390
|
};
|
|
45239
45391
|
export declare type GraphStoreSimplifiedUserAttendedCalendarEventEdge = {
|
|
45240
45392
|
__typename?: 'GraphStoreSimplifiedUserAttendedCalendarEventEdge';
|
|
@@ -45244,10 +45396,12 @@ export declare type GraphStoreSimplifiedUserAttendedCalendarEventEdge = {
|
|
|
45244
45396
|
lastUpdated: Scalars['DateTime']['output'];
|
|
45245
45397
|
node?: Maybe<GraphStoreSimplifiedUserAttendedCalendarEventUnion>;
|
|
45246
45398
|
};
|
|
45247
|
-
export declare type GraphStoreSimplifiedUserAttendedCalendarEventInverseConnection = HasPageInfo & {
|
|
45399
|
+
export declare type GraphStoreSimplifiedUserAttendedCalendarEventInverseConnection = HasPageInfo & HasTotal & {
|
|
45248
45400
|
__typename?: 'GraphStoreSimplifiedUserAttendedCalendarEventInverseConnection';
|
|
45249
45401
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserAttendedCalendarEventInverseEdge>>>;
|
|
45402
|
+
isExactCount?: Maybe<Scalars['Boolean']['output']>;
|
|
45250
45403
|
pageInfo: PageInfo;
|
|
45404
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
45251
45405
|
};
|
|
45252
45406
|
export declare type GraphStoreSimplifiedUserAttendedCalendarEventInverseEdge = {
|
|
45253
45407
|
__typename?: 'GraphStoreSimplifiedUserAttendedCalendarEventInverseEdge';
|
|
@@ -45543,10 +45697,12 @@ export declare type GraphStoreSimplifiedUserCreatedBranchInverseEdge = {
|
|
|
45543
45697
|
};
|
|
45544
45698
|
export declare type GraphStoreSimplifiedUserCreatedBranchInverseUnion = AppUser | AtlassianAccountUser | CustomerUser | ThirdPartyUser;
|
|
45545
45699
|
export declare type GraphStoreSimplifiedUserCreatedBranchUnion = ExternalBranch;
|
|
45546
|
-
export declare type GraphStoreSimplifiedUserCreatedCalendarEventConnection = HasPageInfo & {
|
|
45700
|
+
export declare type GraphStoreSimplifiedUserCreatedCalendarEventConnection = HasPageInfo & HasTotal & {
|
|
45547
45701
|
__typename?: 'GraphStoreSimplifiedUserCreatedCalendarEventConnection';
|
|
45548
45702
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserCreatedCalendarEventEdge>>>;
|
|
45703
|
+
isExactCount?: Maybe<Scalars['Boolean']['output']>;
|
|
45549
45704
|
pageInfo: PageInfo;
|
|
45705
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
45550
45706
|
};
|
|
45551
45707
|
export declare type GraphStoreSimplifiedUserCreatedCalendarEventEdge = {
|
|
45552
45708
|
__typename?: 'GraphStoreSimplifiedUserCreatedCalendarEventEdge';
|
|
@@ -45556,10 +45712,12 @@ export declare type GraphStoreSimplifiedUserCreatedCalendarEventEdge = {
|
|
|
45556
45712
|
lastUpdated: Scalars['DateTime']['output'];
|
|
45557
45713
|
node?: Maybe<GraphStoreSimplifiedUserCreatedCalendarEventUnion>;
|
|
45558
45714
|
};
|
|
45559
|
-
export declare type GraphStoreSimplifiedUserCreatedCalendarEventInverseConnection = HasPageInfo & {
|
|
45715
|
+
export declare type GraphStoreSimplifiedUserCreatedCalendarEventInverseConnection = HasPageInfo & HasTotal & {
|
|
45560
45716
|
__typename?: 'GraphStoreSimplifiedUserCreatedCalendarEventInverseConnection';
|
|
45561
45717
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserCreatedCalendarEventInverseEdge>>>;
|
|
45718
|
+
isExactCount?: Maybe<Scalars['Boolean']['output']>;
|
|
45562
45719
|
pageInfo: PageInfo;
|
|
45720
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
45563
45721
|
};
|
|
45564
45722
|
export declare type GraphStoreSimplifiedUserCreatedCalendarEventInverseEdge = {
|
|
45565
45723
|
__typename?: 'GraphStoreSimplifiedUserCreatedCalendarEventInverseEdge';
|
|
@@ -48113,8 +48271,21 @@ export declare type GraphStoreUserAssignedIssueSortInput = {
|
|
|
48113
48271
|
export declare type GraphStoreUserAssignedPirSortInput = {
|
|
48114
48272
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
48115
48273
|
};
|
|
48274
|
+
export declare type GraphStoreUserAttendedCalendarEventConditionalFilterInput = {
|
|
48275
|
+
createdAt?: InputMaybe<GraphStoreDateFilterInput>;
|
|
48276
|
+
fromAti?: InputMaybe<GraphStoreAtiFilterInput>;
|
|
48277
|
+
lastModified?: InputMaybe<GraphStoreDateFilterInput>;
|
|
48278
|
+
toAti?: InputMaybe<GraphStoreAtiFilterInput>;
|
|
48279
|
+
};
|
|
48280
|
+
export declare type GraphStoreUserAttendedCalendarEventFilterInput = {
|
|
48281
|
+
and?: InputMaybe<Array<InputMaybe<GraphStoreUserAttendedCalendarEventConditionalFilterInput>>>;
|
|
48282
|
+
or?: InputMaybe<Array<InputMaybe<GraphStoreUserAttendedCalendarEventConditionalFilterInput>>>;
|
|
48283
|
+
};
|
|
48116
48284
|
export declare type GraphStoreUserAttendedCalendarEventSortInput = {
|
|
48285
|
+
createdAt?: InputMaybe<GraphStoreSortInput>;
|
|
48286
|
+
fromAti?: InputMaybe<GraphStoreSortInput>;
|
|
48117
48287
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
48288
|
+
toAti?: InputMaybe<GraphStoreSortInput>;
|
|
48118
48289
|
};
|
|
48119
48290
|
export declare type GraphStoreUserAuthoredCommitSortInput = {
|
|
48120
48291
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
@@ -48167,8 +48338,21 @@ export declare type GraphStoreUserContributedConfluenceWhiteboardSortInput = {
|
|
|
48167
48338
|
export declare type GraphStoreUserCreatedBranchSortInput = {
|
|
48168
48339
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
48169
48340
|
};
|
|
48341
|
+
export declare type GraphStoreUserCreatedCalendarEventConditionalFilterInput = {
|
|
48342
|
+
createdAt?: InputMaybe<GraphStoreDateFilterInput>;
|
|
48343
|
+
fromAti?: InputMaybe<GraphStoreAtiFilterInput>;
|
|
48344
|
+
lastModified?: InputMaybe<GraphStoreDateFilterInput>;
|
|
48345
|
+
toAti?: InputMaybe<GraphStoreAtiFilterInput>;
|
|
48346
|
+
};
|
|
48347
|
+
export declare type GraphStoreUserCreatedCalendarEventFilterInput = {
|
|
48348
|
+
and?: InputMaybe<Array<InputMaybe<GraphStoreUserCreatedCalendarEventConditionalFilterInput>>>;
|
|
48349
|
+
or?: InputMaybe<Array<InputMaybe<GraphStoreUserCreatedCalendarEventConditionalFilterInput>>>;
|
|
48350
|
+
};
|
|
48170
48351
|
export declare type GraphStoreUserCreatedCalendarEventSortInput = {
|
|
48352
|
+
createdAt?: InputMaybe<GraphStoreSortInput>;
|
|
48353
|
+
fromAti?: InputMaybe<GraphStoreSortInput>;
|
|
48171
48354
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
48355
|
+
toAti?: InputMaybe<GraphStoreSortInput>;
|
|
48172
48356
|
};
|
|
48173
48357
|
export declare type GraphStoreUserCreatedConfluenceBlogpostSortInput = {
|
|
48174
48358
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
@@ -48302,6 +48486,16 @@ export declare type GraphStoreUserOwnedRemoteLinkSortInput = {
|
|
|
48302
48486
|
export declare type GraphStoreUserOwnedRepositorySortInput = {
|
|
48303
48487
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
48304
48488
|
};
|
|
48489
|
+
export declare type GraphStoreUserOwnsComponentConditionalFilterInput = {
|
|
48490
|
+
createdAt?: InputMaybe<GraphStoreDateFilterInput>;
|
|
48491
|
+
fromAti?: InputMaybe<GraphStoreAtiFilterInput>;
|
|
48492
|
+
lastModified?: InputMaybe<GraphStoreDateFilterInput>;
|
|
48493
|
+
toAti?: InputMaybe<GraphStoreAtiFilterInput>;
|
|
48494
|
+
};
|
|
48495
|
+
export declare type GraphStoreUserOwnsComponentFilterInput = {
|
|
48496
|
+
and?: InputMaybe<Array<InputMaybe<GraphStoreUserOwnsComponentConditionalFilterInput>>>;
|
|
48497
|
+
or?: InputMaybe<Array<InputMaybe<GraphStoreUserOwnsComponentConditionalFilterInput>>>;
|
|
48498
|
+
};
|
|
48305
48499
|
export declare type GraphStoreUserOwnsComponentSortInput = {
|
|
48306
48500
|
createdAt?: InputMaybe<GraphStoreSortInput>;
|
|
48307
48501
|
fromAti?: InputMaybe<GraphStoreSortInput>;
|
|
@@ -52447,6 +52641,7 @@ export declare type JiraAutodevJob = {
|
|
|
52447
52641
|
error?: Maybe<JiraAutodevJobPermissionError>;
|
|
52448
52642
|
gitDiff?: Maybe<Scalars['String']['output']>;
|
|
52449
52643
|
id: Scalars['ID']['output'];
|
|
52644
|
+
issue?: Maybe<JiraIssue>;
|
|
52450
52645
|
issueAri?: Maybe<Scalars['ID']['output']>;
|
|
52451
52646
|
issueScopingScore?: Maybe<DevAiIssueScopingResult>;
|
|
52452
52647
|
jobLogs?: Maybe<DevAiAutodevLogConnection>;
|
|
@@ -52801,6 +52996,19 @@ export declare type JiraBoardViewCardOptionsArgs = {
|
|
|
52801
52996
|
export declare type JiraBoardViewColumnsArgs = {
|
|
52802
52997
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
52803
52998
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
52999
|
+
settings?: InputMaybe<JiraBoardViewSettings>;
|
|
53000
|
+
};
|
|
53001
|
+
export declare type JiraBoardViewFilterConfigArgs = {
|
|
53002
|
+
settings?: InputMaybe<JiraBoardViewSettings>;
|
|
53003
|
+
};
|
|
53004
|
+
export declare type JiraBoardViewGroupByConfigArgs = {
|
|
53005
|
+
settings?: InputMaybe<JiraBoardViewSettings>;
|
|
53006
|
+
};
|
|
53007
|
+
export declare type JiraBoardViewIsViewConfigModifiedArgs = {
|
|
53008
|
+
settings?: InputMaybe<JiraBoardViewSettings>;
|
|
53009
|
+
};
|
|
53010
|
+
export declare type JiraBoardViewSelectedWorkflowIdArgs = {
|
|
53011
|
+
settings?: InputMaybe<JiraBoardViewSettings>;
|
|
52804
53012
|
};
|
|
52805
53013
|
export declare type JiraBoardViewAssigneeColumn = JiraBoardViewColumn & {
|
|
52806
53014
|
__typename?: 'JiraBoardViewAssigneeColumn';
|
|
@@ -52855,7 +53063,6 @@ export declare type JiraBoardViewFieldCardOption = JiraBoardViewCardOption & {
|
|
|
52855
53063
|
};
|
|
52856
53064
|
export declare type JiraBoardViewInput = {
|
|
52857
53065
|
jiraBoardViewQueryInput: JiraBoardViewQueryInput;
|
|
52858
|
-
settings?: InputMaybe<JiraBoardViewSettings>;
|
|
52859
53066
|
};
|
|
52860
53067
|
export declare type JiraBoardViewPriorityColumn = JiraBoardViewColumn & {
|
|
52861
53068
|
__typename?: 'JiraBoardViewPriorityColumn';
|
|
@@ -54819,6 +55026,11 @@ export declare type JiraDeleteIssueLinkPayload = Payload & {
|
|
|
54819
55026
|
issueLinkId?: Maybe<Scalars['ID']['output']>;
|
|
54820
55027
|
success: Scalars['Boolean']['output'];
|
|
54821
55028
|
};
|
|
55029
|
+
export declare type JiraDeleteJourneyItemInput = {
|
|
55030
|
+
itemId: Scalars['ID']['input'];
|
|
55031
|
+
journeyId: Scalars['ID']['input'];
|
|
55032
|
+
journeyVersion: Scalars['Long']['input'];
|
|
55033
|
+
};
|
|
54822
55034
|
export declare type JiraDeleteNavigationItemInput = {
|
|
54823
55035
|
id: Scalars['ID']['input'];
|
|
54824
55036
|
};
|
|
@@ -58202,6 +58414,10 @@ export declare enum JiraJourneyParentIssueType {
|
|
|
58202
58414
|
Request = "REQUEST"
|
|
58203
58415
|
}
|
|
58204
58416
|
export declare type JiraJourneyParentIssueValueType = JiraServiceManagementRequestType;
|
|
58417
|
+
export declare type JiraJourneySettings = {
|
|
58418
|
+
__typename?: 'JiraJourneySettings';
|
|
58419
|
+
maxJourneyItems?: Maybe<Scalars['Long']['output']>;
|
|
58420
|
+
};
|
|
58205
58421
|
export declare enum JiraJourneyStatus {
|
|
58206
58422
|
Archived = "ARCHIVED",
|
|
58207
58423
|
Disabled = "DISABLED",
|
|
@@ -59418,6 +59634,7 @@ export declare type JiraMutation = {
|
|
|
59418
59634
|
deleteIssueLink?: Maybe<JiraDeleteIssueLinkPayload>;
|
|
59419
59635
|
deleteIssueNavigatorJQLHistory?: Maybe<JiraIssueNavigatorJqlHistoryDeletePayload>;
|
|
59420
59636
|
deleteJiraActivityConfiguration?: Maybe<JiraUpdateJourneyConfigurationPayload>;
|
|
59637
|
+
deleteJiraJourneyItem?: Maybe<JiraUpdateJourneyConfigurationPayload>;
|
|
59421
59638
|
deleteJiraVersionApprover?: Maybe<JiraVersionDeleteApproverPayload>;
|
|
59422
59639
|
deleteJiraVersionWithNoIssues?: Maybe<JiraUpdateVersionPayload>;
|
|
59423
59640
|
deleteJwmOverview?: Maybe<JiraWorkManagementGiraDeleteOverviewPayload>;
|
|
@@ -59508,6 +59725,7 @@ export declare type JiraMutation = {
|
|
|
59508
59725
|
updateJiraActivityConfiguration?: Maybe<JiraUpdateJourneyConfigurationPayload>;
|
|
59509
59726
|
updateJiraJourneyActivityConfiguration?: Maybe<JiraUpdateJourneyConfigurationPayload>;
|
|
59510
59727
|
updateJiraJourneyConfiguration?: Maybe<JiraUpdateJourneyConfigurationPayload>;
|
|
59728
|
+
updateJiraJourneyItem?: Maybe<JiraUpdateJourneyConfigurationPayload>;
|
|
59511
59729
|
updateJiraJourneyName?: Maybe<JiraUpdateJourneyConfigurationPayload>;
|
|
59512
59730
|
updateJiraJourneyParentIssueConfiguration?: Maybe<JiraUpdateJourneyConfigurationPayload>;
|
|
59513
59731
|
updateJiraJourneyTriggerConfiguration?: Maybe<JiraUpdateJourneyConfigurationPayload>;
|
|
@@ -59716,6 +59934,10 @@ export declare type JiraMutationDeleteJiraActivityConfigurationArgs = {
|
|
|
59716
59934
|
cloudId: Scalars['ID']['input'];
|
|
59717
59935
|
input: JiraDeleteActivityConfigurationInput;
|
|
59718
59936
|
};
|
|
59937
|
+
export declare type JiraMutationDeleteJiraJourneyItemArgs = {
|
|
59938
|
+
cloudId: Scalars['ID']['input'];
|
|
59939
|
+
input: JiraDeleteJourneyItemInput;
|
|
59940
|
+
};
|
|
59719
59941
|
export declare type JiraMutationDeleteJiraVersionApproverArgs = {
|
|
59720
59942
|
id: Scalars['ID']['input'];
|
|
59721
59943
|
};
|
|
@@ -60017,6 +60239,10 @@ export declare type JiraMutationUpdateJiraJourneyConfigurationArgs = {
|
|
|
60017
60239
|
cloudId: Scalars['ID']['input'];
|
|
60018
60240
|
input: JiraUpdateJourneyConfigurationInput;
|
|
60019
60241
|
};
|
|
60242
|
+
export declare type JiraMutationUpdateJiraJourneyItemArgs = {
|
|
60243
|
+
cloudId: Scalars['ID']['input'];
|
|
60244
|
+
input: JiraUpdateJourneyItemInput;
|
|
60245
|
+
};
|
|
60020
60246
|
export declare type JiraMutationUpdateJiraJourneyNameArgs = {
|
|
60021
60247
|
cloudId: Scalars['ID']['input'];
|
|
60022
60248
|
input: JiraUpdateJourneyNameInput;
|
|
@@ -62246,6 +62472,7 @@ export declare type JiraQuery = {
|
|
|
62246
62472
|
jiraIssueSearchView?: Maybe<JiraView>;
|
|
62247
62473
|
jiraJourneyConfiguration?: Maybe<JiraJourneyConfiguration>;
|
|
62248
62474
|
jiraJourneyItem?: Maybe<JiraJourneyItem>;
|
|
62475
|
+
jiraJourneySettings?: Maybe<JiraJourneySettings>;
|
|
62249
62476
|
jiraProject?: Maybe<JiraProject>;
|
|
62250
62477
|
jiraProjectByKey?: Maybe<JiraProject>;
|
|
62251
62478
|
jiraProjects?: Maybe<Array<Maybe<JiraProject>>>;
|
|
@@ -62808,6 +63035,9 @@ export declare type JiraQueryJiraJourneyItemArgs = {
|
|
|
62808
63035
|
id: Scalars['ID']['input'];
|
|
62809
63036
|
journeyId: Scalars['ID']['input'];
|
|
62810
63037
|
};
|
|
63038
|
+
export declare type JiraQueryJiraJourneySettingsArgs = {
|
|
63039
|
+
cloudId: Scalars['ID']['input'];
|
|
63040
|
+
};
|
|
62811
63041
|
export declare type JiraQueryJiraProjectArgs = {
|
|
62812
63042
|
id: Scalars['ID']['input'];
|
|
62813
63043
|
};
|
|
@@ -66800,6 +67030,12 @@ export declare type JiraUpdateJourneyConfigurationPayload = Payload & {
|
|
|
66800
67030
|
jiraJourneyConfigurationEdge?: Maybe<JiraJourneyConfigurationEdge>;
|
|
66801
67031
|
success: Scalars['Boolean']['output'];
|
|
66802
67032
|
};
|
|
67033
|
+
export declare type JiraUpdateJourneyItemInput = {
|
|
67034
|
+
configuration: JiraJourneyItemConfigurationInput;
|
|
67035
|
+
itemId: Scalars['ID']['input'];
|
|
67036
|
+
journeyId: Scalars['ID']['input'];
|
|
67037
|
+
journeyVersion: Scalars['Long']['input'];
|
|
67038
|
+
};
|
|
66803
67039
|
export declare type JiraUpdateJourneyNameInput = {
|
|
66804
67040
|
id: Scalars['ID']['input'];
|
|
66805
67041
|
name?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -72709,6 +72945,7 @@ export declare type MercuryChangeProposal = Node & {
|
|
|
72709
72945
|
description?: Maybe<Scalars['String']['output']>;
|
|
72710
72946
|
id: Scalars['ID']['output'];
|
|
72711
72947
|
name: Scalars['String']['output'];
|
|
72948
|
+
owner?: Maybe<User>;
|
|
72712
72949
|
status?: Maybe<MercuryChangeProposalStatus>;
|
|
72713
72950
|
statusTransitions?: Maybe<MercuryChangeProposalStatusTransitions>;
|
|
72714
72951
|
strategicEvent?: Maybe<MercuryStrategicEvent>;
|
|
@@ -72733,7 +72970,7 @@ export declare enum MercuryChangeProposalSortField {
|
|
|
72733
72970
|
}
|
|
72734
72971
|
export declare type MercuryChangeProposalStatus = {
|
|
72735
72972
|
__typename?: 'MercuryChangeProposalStatus';
|
|
72736
|
-
color:
|
|
72973
|
+
color: MercuryStatusColor;
|
|
72737
72974
|
displayName: Scalars['String']['output'];
|
|
72738
72975
|
id: Scalars['ID']['output'];
|
|
72739
72976
|
key: Scalars['String']['output'];
|
|
@@ -72770,8 +73007,10 @@ export declare type MercuryCommentEdge = {
|
|
|
72770
73007
|
};
|
|
72771
73008
|
export declare type MercuryCreateChangeProposalInput = {
|
|
72772
73009
|
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
73010
|
+
description?: InputMaybe<Scalars['String']['input']>;
|
|
72773
73011
|
name: Scalars['String']['input'];
|
|
72774
|
-
|
|
73012
|
+
owner?: InputMaybe<Scalars['String']['input']>;
|
|
73013
|
+
strategicEventId: Scalars['ID']['input'];
|
|
72775
73014
|
};
|
|
72776
73015
|
export declare type MercuryCreateChangeProposalPayload = Payload & {
|
|
72777
73016
|
__typename?: 'MercuryCreateChangeProposalPayload';
|
|
@@ -72830,7 +73069,9 @@ export declare type MercuryCreatePortfolioPayload = Payload & {
|
|
|
72830
73069
|
};
|
|
72831
73070
|
export declare type MercuryCreateStrategicEventInput = {
|
|
72832
73071
|
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
73072
|
+
description?: InputMaybe<Scalars['String']['input']>;
|
|
72833
73073
|
name: Scalars['String']['input'];
|
|
73074
|
+
owner?: InputMaybe<Scalars['ID']['input']>;
|
|
72834
73075
|
targetDate: Scalars['String']['input'];
|
|
72835
73076
|
};
|
|
72836
73077
|
export declare type MercuryCreateStrategicEventPayload = Payload & {
|
|
@@ -73868,8 +74109,16 @@ export declare type MercurySpendAggregation = {
|
|
|
73868
74109
|
aggregatedSpend?: Maybe<Scalars['BigDecimal']['output']>;
|
|
73869
74110
|
totalAssignedSpend?: Maybe<Scalars['BigDecimal']['output']>;
|
|
73870
74111
|
};
|
|
74112
|
+
export declare enum MercuryStatusColor {
|
|
74113
|
+
Blue = "BLUE",
|
|
74114
|
+
Gray = "GRAY",
|
|
74115
|
+
Green = "GREEN",
|
|
74116
|
+
Red = "RED",
|
|
74117
|
+
Yellow = "YELLOW"
|
|
74118
|
+
}
|
|
73871
74119
|
export declare type MercuryStrategicEvent = Node & {
|
|
73872
74120
|
__typename?: 'MercuryStrategicEvent';
|
|
74121
|
+
description?: Maybe<Scalars['String']['output']>;
|
|
73873
74122
|
id: Scalars['ID']['output'];
|
|
73874
74123
|
name: Scalars['String']['output'];
|
|
73875
74124
|
owner?: Maybe<User>;
|
|
@@ -73899,7 +74148,7 @@ export declare enum MercuryStrategicEventSortField {
|
|
|
73899
74148
|
}
|
|
73900
74149
|
export declare type MercuryStrategicEventStatus = {
|
|
73901
74150
|
__typename?: 'MercuryStrategicEventStatus';
|
|
73902
|
-
color:
|
|
74151
|
+
color: MercuryStatusColor;
|
|
73903
74152
|
displayName: Scalars['String']['output'];
|
|
73904
74153
|
id: Scalars['ID']['output'];
|
|
73905
74154
|
key: Scalars['String']['output'];
|
|
@@ -73918,6 +74167,15 @@ export declare type MercuryStrategicEventsMutationApi = {
|
|
|
73918
74167
|
__typename?: 'MercuryStrategicEventsMutationApi';
|
|
73919
74168
|
createChangeProposal?: Maybe<MercuryCreateChangeProposalPayload>;
|
|
73920
74169
|
createStrategicEvent?: Maybe<MercuryCreateStrategicEventPayload>;
|
|
74170
|
+
transitionChangeProposalStatus?: Maybe<MercuryTransitionChangeProposalPayload>;
|
|
74171
|
+
transitionStrategicEventStatus?: Maybe<MercuryTransitionStrategicEventPayload>;
|
|
74172
|
+
updateChangeProposalDescription?: Maybe<MercuryUpdateChangeProposalPayload>;
|
|
74173
|
+
updateChangeProposalName?: Maybe<MercuryUpdateChangeProposalPayload>;
|
|
74174
|
+
updateChangeProposalOwner?: Maybe<MercuryUpdateChangeProposalPayload>;
|
|
74175
|
+
updateStrategicEventDescription?: Maybe<MercuryUpdateStrategicEventPayload>;
|
|
74176
|
+
updateStrategicEventName?: Maybe<MercuryUpdateStrategicEventPayload>;
|
|
74177
|
+
updateStrategicEventOwner?: Maybe<MercuryUpdateStrategicEventPayload>;
|
|
74178
|
+
updateStrategicEventTargetDate?: Maybe<MercuryUpdateStrategicEventPayload>;
|
|
73921
74179
|
};
|
|
73922
74180
|
export declare type MercuryStrategicEventsMutationApiCreateChangeProposalArgs = {
|
|
73923
74181
|
input: MercuryCreateChangeProposalInput;
|
|
@@ -73925,6 +74183,33 @@ export declare type MercuryStrategicEventsMutationApiCreateChangeProposalArgs =
|
|
|
73925
74183
|
export declare type MercuryStrategicEventsMutationApiCreateStrategicEventArgs = {
|
|
73926
74184
|
input: MercuryCreateStrategicEventInput;
|
|
73927
74185
|
};
|
|
74186
|
+
export declare type MercuryStrategicEventsMutationApiTransitionChangeProposalStatusArgs = {
|
|
74187
|
+
input: MercuryTransitionChangeProposalStatusInput;
|
|
74188
|
+
};
|
|
74189
|
+
export declare type MercuryStrategicEventsMutationApiTransitionStrategicEventStatusArgs = {
|
|
74190
|
+
input: MercuryTransitionStrategicEventStatusInput;
|
|
74191
|
+
};
|
|
74192
|
+
export declare type MercuryStrategicEventsMutationApiUpdateChangeProposalDescriptionArgs = {
|
|
74193
|
+
input: MercuryUpdateChangeProposalDescriptionInput;
|
|
74194
|
+
};
|
|
74195
|
+
export declare type MercuryStrategicEventsMutationApiUpdateChangeProposalNameArgs = {
|
|
74196
|
+
input: MercuryUpdateChangeProposalNameInput;
|
|
74197
|
+
};
|
|
74198
|
+
export declare type MercuryStrategicEventsMutationApiUpdateChangeProposalOwnerArgs = {
|
|
74199
|
+
input: MercuryUpdateChangeProposalOwnerInput;
|
|
74200
|
+
};
|
|
74201
|
+
export declare type MercuryStrategicEventsMutationApiUpdateStrategicEventDescriptionArgs = {
|
|
74202
|
+
input: MercuryUpdateStrategicEventDescriptionInput;
|
|
74203
|
+
};
|
|
74204
|
+
export declare type MercuryStrategicEventsMutationApiUpdateStrategicEventNameArgs = {
|
|
74205
|
+
input: MercuryUpdateStrategicEventNameInput;
|
|
74206
|
+
};
|
|
74207
|
+
export declare type MercuryStrategicEventsMutationApiUpdateStrategicEventOwnerArgs = {
|
|
74208
|
+
input: MercuryUpdateStrategicEventOwnerInput;
|
|
74209
|
+
};
|
|
74210
|
+
export declare type MercuryStrategicEventsMutationApiUpdateStrategicEventTargetDateArgs = {
|
|
74211
|
+
input: MercuryUpdateStrategicEventTargetDateInput;
|
|
74212
|
+
};
|
|
73928
74213
|
export declare type MercuryStrategicEventsQueryApi = {
|
|
73929
74214
|
__typename?: 'MercuryStrategicEventsQueryApi';
|
|
73930
74215
|
changeProposal?: Maybe<MercuryChangeProposal>;
|
|
@@ -73935,8 +74220,6 @@ export declare type MercuryStrategicEventsQueryApi = {
|
|
|
73935
74220
|
strategicEventStatuses: Array<MercuryStrategicEventStatus>;
|
|
73936
74221
|
strategicEvents?: Maybe<Array<Maybe<MercuryStrategicEvent>>>;
|
|
73937
74222
|
strategicEventsSearch?: Maybe<MercuryStrategicEventConnection>;
|
|
73938
|
-
transitionChangeProposalStatus?: Maybe<MercuryTransitionChangeProposalPayload>;
|
|
73939
|
-
transitionStrategicEventStatus?: Maybe<MercuryTransitionStrategicEventPayload>;
|
|
73940
74223
|
};
|
|
73941
74224
|
export declare type MercuryStrategicEventsQueryApiChangeProposalArgs = {
|
|
73942
74225
|
id: Scalars['ID']['input'];
|
|
@@ -73970,12 +74253,6 @@ export declare type MercuryStrategicEventsQueryApiStrategicEventsSearchArgs = {
|
|
|
73970
74253
|
q?: InputMaybe<Scalars['String']['input']>;
|
|
73971
74254
|
sort?: InputMaybe<Array<InputMaybe<MercuryStrategicEventSort>>>;
|
|
73972
74255
|
};
|
|
73973
|
-
export declare type MercuryStrategicEventsQueryApiTransitionChangeProposalStatusArgs = {
|
|
73974
|
-
input: MercuryTransitionChangeProposalStatusInput;
|
|
73975
|
-
};
|
|
73976
|
-
export declare type MercuryStrategicEventsQueryApiTransitionStrategicEventStatusArgs = {
|
|
73977
|
-
input: MercuryTransitionStrategicEventStatusInput;
|
|
73978
|
-
};
|
|
73979
74256
|
export declare type MercuryTargetDate = {
|
|
73980
74257
|
__typename?: 'MercuryTargetDate';
|
|
73981
74258
|
targetDate?: Maybe<Scalars['String']['output']>;
|
|
@@ -74070,6 +74347,27 @@ export declare type MercuryTransitionStrategicEventStatusInput = {
|
|
|
74070
74347
|
id: Scalars['ID']['input'];
|
|
74071
74348
|
statusTransitionId: Scalars['ID']['input'];
|
|
74072
74349
|
};
|
|
74350
|
+
export declare type MercuryUpdateChangeProposalDescriptionInput = {
|
|
74351
|
+
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
74352
|
+
description: Scalars['String']['input'];
|
|
74353
|
+
id: Scalars['ID']['input'];
|
|
74354
|
+
};
|
|
74355
|
+
export declare type MercuryUpdateChangeProposalNameInput = {
|
|
74356
|
+
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
74357
|
+
id: Scalars['ID']['input'];
|
|
74358
|
+
name: Scalars['String']['input'];
|
|
74359
|
+
};
|
|
74360
|
+
export declare type MercuryUpdateChangeProposalOwnerInput = {
|
|
74361
|
+
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
74362
|
+
id: Scalars['ID']['input'];
|
|
74363
|
+
owner: Scalars['ID']['input'];
|
|
74364
|
+
};
|
|
74365
|
+
export declare type MercuryUpdateChangeProposalPayload = Payload & {
|
|
74366
|
+
__typename?: 'MercuryUpdateChangeProposalPayload';
|
|
74367
|
+
errors?: Maybe<Array<MutationError>>;
|
|
74368
|
+
success: Scalars['Boolean']['output'];
|
|
74369
|
+
updatedChangeProposal?: Maybe<MercuryChangeProposal>;
|
|
74370
|
+
};
|
|
74073
74371
|
export declare type MercuryUpdateCommentInput = {
|
|
74074
74372
|
cloudId: Scalars['ID']['input'];
|
|
74075
74373
|
commentText: Scalars['MercuryJSONString']['input'];
|
|
@@ -74132,6 +74430,32 @@ export declare type MercuryUpdatePortfolioPayload = Payload & {
|
|
|
74132
74430
|
success: Scalars['Boolean']['output'];
|
|
74133
74431
|
updatedPortfolio?: Maybe<MercuryPortfolio>;
|
|
74134
74432
|
};
|
|
74433
|
+
export declare type MercuryUpdateStrategicEventDescriptionInput = {
|
|
74434
|
+
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
74435
|
+
description: Scalars['String']['input'];
|
|
74436
|
+
id: Scalars['ID']['input'];
|
|
74437
|
+
};
|
|
74438
|
+
export declare type MercuryUpdateStrategicEventNameInput = {
|
|
74439
|
+
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
74440
|
+
id: Scalars['ID']['input'];
|
|
74441
|
+
name: Scalars['String']['input'];
|
|
74442
|
+
};
|
|
74443
|
+
export declare type MercuryUpdateStrategicEventOwnerInput = {
|
|
74444
|
+
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
74445
|
+
id: Scalars['ID']['input'];
|
|
74446
|
+
owner: Scalars['ID']['input'];
|
|
74447
|
+
};
|
|
74448
|
+
export declare type MercuryUpdateStrategicEventPayload = Payload & {
|
|
74449
|
+
__typename?: 'MercuryUpdateStrategicEventPayload';
|
|
74450
|
+
errors?: Maybe<Array<MutationError>>;
|
|
74451
|
+
success: Scalars['Boolean']['output'];
|
|
74452
|
+
updatedStrategicEvent?: Maybe<MercuryStrategicEvent>;
|
|
74453
|
+
};
|
|
74454
|
+
export declare type MercuryUpdateStrategicEventTargetDateInput = {
|
|
74455
|
+
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
74456
|
+
id: Scalars['ID']['input'];
|
|
74457
|
+
targetDate?: InputMaybe<Scalars['String']['input']>;
|
|
74458
|
+
};
|
|
74135
74459
|
export declare type MercuryUpdatedField = {
|
|
74136
74460
|
__typename?: 'MercuryUpdatedField';
|
|
74137
74461
|
field?: Maybe<Scalars['String']['output']>;
|
|
@@ -79239,6 +79563,7 @@ export declare type Query = {
|
|
|
79239
79563
|
classificationLevel?: Maybe<ContentDataClassificationLevel>;
|
|
79240
79564
|
classificationLevels?: Maybe<Array<ContentDataClassificationLevel>>;
|
|
79241
79565
|
codeInJira?: Maybe<CodeInJira>;
|
|
79566
|
+
collabContext_workspaceIsConnectedToWorkspace?: Maybe<CollabContextWorkspaceConnection>;
|
|
79242
79567
|
collabDraft?: Maybe<CollabDraft>;
|
|
79243
79568
|
collabToken?: Maybe<CollabTokenResponse>;
|
|
79244
79569
|
comments?: Maybe<PaginatedCommentList>;
|
|
@@ -80088,6 +80413,9 @@ export declare type QueryClassificationLevelsArgs = {
|
|
|
80088
80413
|
export declare type QueryCodeInJiraArgs = {
|
|
80089
80414
|
cloudId: Scalars['ID']['input'];
|
|
80090
80415
|
};
|
|
80416
|
+
export declare type QueryCollabContext_WorkspaceIsConnectedToWorkspaceArgs = {
|
|
80417
|
+
id: Scalars['ID']['input'];
|
|
80418
|
+
};
|
|
80091
80419
|
export declare type QueryCollabDraftArgs = {
|
|
80092
80420
|
format?: CollabFormat;
|
|
80093
80421
|
hydrateAdf?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -91788,6 +92116,7 @@ export declare type TrelloMember = Node & {
|
|
|
91788
92116
|
nonPublicData?: Maybe<TrelloMemberNonPublicData>;
|
|
91789
92117
|
objectId: Scalars['ID']['output'];
|
|
91790
92118
|
planner?: Maybe<TrelloPlanner>;
|
|
92119
|
+
prefs?: Maybe<TrelloMemberPrefs>;
|
|
91791
92120
|
referrer?: Maybe<TrelloMember>;
|
|
91792
92121
|
url?: Maybe<Scalars['URL']['output']>;
|
|
91793
92122
|
user?: Maybe<User>;
|
|
@@ -91816,6 +92145,10 @@ export declare type TrelloMemberNonPublicData = {
|
|
|
91816
92145
|
fullName?: Maybe<Scalars['String']['output']>;
|
|
91817
92146
|
initials?: Maybe<Scalars['String']['output']>;
|
|
91818
92147
|
};
|
|
92148
|
+
export declare type TrelloMemberPrefs = {
|
|
92149
|
+
__typename?: 'TrelloMemberPrefs';
|
|
92150
|
+
colorBlind?: Maybe<Scalars['Boolean']['output']>;
|
|
92151
|
+
};
|
|
91819
92152
|
export declare type TrelloMemberUpdated = {
|
|
91820
92153
|
__typename?: 'TrelloMemberUpdated';
|
|
91821
92154
|
_deltas?: Maybe<Array<Scalars['String']['output']>>;
|
|
@@ -92177,7 +92510,6 @@ export declare type TrelloPlannerCalendarEventEdgeUpdated = {
|
|
|
92177
92510
|
};
|
|
92178
92511
|
export declare enum TrelloPlannerCalendarEventStatus {
|
|
92179
92512
|
Accepted = "ACCEPTED",
|
|
92180
|
-
Cancelled = "CANCELLED",
|
|
92181
92513
|
Declined = "DECLINED",
|
|
92182
92514
|
NeedsAction = "NEEDS_ACTION",
|
|
92183
92515
|
Tentative = "TENTATIVE"
|
|
@@ -92895,13 +93227,44 @@ export declare type UnifiedCacheInvalidationResult = {
|
|
|
92895
93227
|
errors?: Maybe<Array<UnifiedMutationError>>;
|
|
92896
93228
|
success: Scalars['Boolean']['output'];
|
|
92897
93229
|
};
|
|
93230
|
+
export declare type UnifiedCacheKeyResult = {
|
|
93231
|
+
__typename?: 'UnifiedCacheKeyResult';
|
|
93232
|
+
cacheKey: Scalars['String']['output'];
|
|
93233
|
+
};
|
|
93234
|
+
export declare type UnifiedCacheResult = {
|
|
93235
|
+
__typename?: 'UnifiedCacheResult';
|
|
93236
|
+
cachedData: Scalars['String']['output'];
|
|
93237
|
+
};
|
|
93238
|
+
export declare type UnifiedCacheStatusPayload = UnifiedPayload & {
|
|
93239
|
+
__typename?: 'UnifiedCacheStatusPayload';
|
|
93240
|
+
errors?: Maybe<Array<UnifiedMutationError>>;
|
|
93241
|
+
message?: Maybe<Scalars['String']['output']>;
|
|
93242
|
+
success: Scalars['Boolean']['output'];
|
|
93243
|
+
};
|
|
92898
93244
|
export declare type UnifiedCachingMutation = {
|
|
92899
93245
|
__typename?: 'UnifiedCachingMutation';
|
|
92900
93246
|
invalidateCache?: Maybe<UnifiedCacheInvalidationResult>;
|
|
93247
|
+
setCacheData?: Maybe<UnifiedCacheStatusPayload>;
|
|
92901
93248
|
};
|
|
92902
93249
|
export declare type UnifiedCachingMutationInvalidateCacheArgs = {
|
|
92903
|
-
|
|
93250
|
+
cacheKey: Scalars['String']['input'];
|
|
93251
|
+
};
|
|
93252
|
+
export declare type UnifiedCachingMutationSetCacheDataArgs = {
|
|
93253
|
+
cacheKey: Scalars['String']['input'];
|
|
93254
|
+
data: Scalars['String']['input'];
|
|
93255
|
+
ttl?: InputMaybe<Scalars['Int']['input']>;
|
|
93256
|
+
};
|
|
93257
|
+
export declare type UnifiedCachingQuery = {
|
|
93258
|
+
__typename?: 'UnifiedCachingQuery';
|
|
93259
|
+
getCacheKey?: Maybe<UnifiedUCacheKeyResult>;
|
|
93260
|
+
getCachedData?: Maybe<UnifiedUCacheResult>;
|
|
93261
|
+
};
|
|
93262
|
+
export declare type UnifiedCachingQueryGetCacheKeyArgs = {
|
|
92904
93263
|
dataPoint: Scalars['String']['input'];
|
|
93264
|
+
id: Scalars['String']['input'];
|
|
93265
|
+
};
|
|
93266
|
+
export declare type UnifiedCachingQueryGetCachedDataArgs = {
|
|
93267
|
+
cacheKey: Scalars['String']['input'];
|
|
92905
93268
|
};
|
|
92906
93269
|
export declare type UnifiedCommunityMutation = {
|
|
92907
93270
|
__typename?: 'UnifiedCommunityMutation';
|
|
@@ -93466,6 +93829,7 @@ export declare type UnifiedQuery = {
|
|
|
93466
93829
|
accountBasics?: Maybe<UnifiedUAccountBasicsResult>;
|
|
93467
93830
|
accountDetails?: Maybe<UnifiedUAccountDetailsResult>;
|
|
93468
93831
|
atlassianProducts?: Maybe<UnifiedUAtlassianProductResult>;
|
|
93832
|
+
caching?: Maybe<UnifiedCachingQuery>;
|
|
93469
93833
|
consent?: Maybe<UnifiedConsentQuery>;
|
|
93470
93834
|
gating?: Maybe<UnifiedGatingQuery>;
|
|
93471
93835
|
node?: Maybe<UnifiedINode>;
|
|
@@ -93534,6 +93898,8 @@ export declare type UnifiedUAccountResult = UnifiedAccount | UnifiedQueryError;
|
|
|
93534
93898
|
export declare type UnifiedUAdminsResult = UnifiedAdmins | UnifiedQueryError;
|
|
93535
93899
|
export declare type UnifiedUAllowListResult = UnifiedAllowList | UnifiedQueryError;
|
|
93536
93900
|
export declare type UnifiedUAtlassianProductResult = UnifiedAtlassianProductConnection | UnifiedQueryError;
|
|
93901
|
+
export declare type UnifiedUCacheKeyResult = UnifiedCacheKeyResult | UnifiedQueryError;
|
|
93902
|
+
export declare type UnifiedUCacheResult = UnifiedCacheResult | UnifiedQueryError;
|
|
93537
93903
|
export declare type UnifiedUConsentStatusResult = UnifiedConsentStatus | UnifiedQueryError;
|
|
93538
93904
|
export declare type UnifiedUForumsBadgesResult = UnifiedForumsBadgesConnection | UnifiedQueryError;
|
|
93539
93905
|
export declare type UnifiedUForumsGroupsResult = UnifiedForumsGroupsConnection | UnifiedQueryError;
|