@forge/cli-shared 6.6.2-next.0 → 6.6.2-next.2
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 +13 -0
- package/out/config/config-file.d.ts +0 -1
- package/out/config/config-file.d.ts.map +1 -1
- package/out/config/config-file.js +0 -7
- package/out/graphql/graphql-types.d.ts +382 -20
- package/out/graphql/graphql-types.d.ts.map +1 -1
- package/out/graphql/graphql-types.js +45 -23
- package/out/shared/index.d.ts +3 -3
- package/out/shared/index.d.ts.map +1 -1
- package/out/shared/index.js +3 -3
- package/out/shared/test.d.ts +15 -0
- package/out/shared/test.d.ts.map +1 -0
- package/out/shared/test.js +52 -0
- package/out/ui/text.js +1 -1
- package/package.json +1 -2
- package/out/shared/mock-logger.d.ts +0 -3
- package/out/shared/mock-logger.d.ts.map +0 -1
- package/out/shared/mock-logger.js +0 -16
|
@@ -3243,6 +3243,11 @@ export declare type CcpApplicationReason = {
|
|
|
3243
3243
|
__typename?: 'CcpApplicationReason';
|
|
3244
3244
|
id?: Maybe<Scalars['ID']['output']>;
|
|
3245
3245
|
};
|
|
3246
|
+
export declare type CcpApplyEntitlementPromotionExperienceCapability = CommerceExperienceCapability & {
|
|
3247
|
+
__typename?: 'CcpApplyEntitlementPromotionExperienceCapability';
|
|
3248
|
+
experienceUrl?: Maybe<Scalars['String']['output']>;
|
|
3249
|
+
isAvailableToUser?: Maybe<Scalars['Boolean']['output']>;
|
|
3250
|
+
};
|
|
3246
3251
|
export declare enum CcpBehaviourAtEndOfTrial {
|
|
3247
3252
|
Cancel = "CANCEL",
|
|
3248
3253
|
ConvertToPaid = "CONVERT_TO_PAID",
|
|
@@ -3435,11 +3440,15 @@ export declare type CcpEntitlementDetailsForCreateEntitlement = {
|
|
|
3435
3440
|
};
|
|
3436
3441
|
export declare type CcpEntitlementExperienceCapabilities = CommerceEntitlementExperienceCapabilities & {
|
|
3437
3442
|
__typename?: 'CcpEntitlementExperienceCapabilities';
|
|
3443
|
+
applyEntitlementPromotion?: Maybe<CcpApplyEntitlementPromotionExperienceCapability>;
|
|
3438
3444
|
cancelEntitlement?: Maybe<CcpCancelEntitlementExperienceCapability>;
|
|
3439
3445
|
changeOffering?: Maybe<CcpExperienceCapability>;
|
|
3440
3446
|
changeOfferingV2?: Maybe<CcpChangeOfferingExperienceCapability>;
|
|
3441
3447
|
manageEntitlement?: Maybe<CcpManageEntitlementExperienceCapability>;
|
|
3442
3448
|
};
|
|
3449
|
+
export declare type CcpEntitlementExperienceCapabilitiesApplyEntitlementPromotionArgs = {
|
|
3450
|
+
promotionId: Scalars['ID']['input'];
|
|
3451
|
+
};
|
|
3443
3452
|
export declare type CcpEntitlementExperienceCapabilitiesChangeOfferingArgs = {
|
|
3444
3453
|
offeringKey?: InputMaybe<Scalars['ID']['input']>;
|
|
3445
3454
|
offeringName?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -3967,6 +3976,27 @@ export declare type CodeRepository = {
|
|
|
3967
3976
|
href?: Maybe<Scalars['URL']['output']>;
|
|
3968
3977
|
name: Scalars['String']['output'];
|
|
3969
3978
|
};
|
|
3979
|
+
export declare type CollabContextPageInfo = {
|
|
3980
|
+
__typename?: 'CollabContextPageInfo';
|
|
3981
|
+
endCursor?: Maybe<Scalars['String']['output']>;
|
|
3982
|
+
hasNextPage?: Maybe<Scalars['Boolean']['output']>;
|
|
3983
|
+
hasPreviousPage?: Maybe<Scalars['Boolean']['output']>;
|
|
3984
|
+
startCursor?: Maybe<Scalars['String']['output']>;
|
|
3985
|
+
};
|
|
3986
|
+
export declare type CollabContextWorkspace = {
|
|
3987
|
+
__typename?: 'CollabContextWorkspace';
|
|
3988
|
+
id: Scalars['ID']['output'];
|
|
3989
|
+
};
|
|
3990
|
+
export declare type CollabContextWorkspaceConnection = {
|
|
3991
|
+
__typename?: 'CollabContextWorkspaceConnection';
|
|
3992
|
+
edges?: Maybe<Array<Maybe<CollabContextWorkspaceEdge>>>;
|
|
3993
|
+
pageInfo?: Maybe<CollabContextPageInfo>;
|
|
3994
|
+
};
|
|
3995
|
+
export declare type CollabContextWorkspaceEdge = {
|
|
3996
|
+
__typename?: 'CollabContextWorkspaceEdge';
|
|
3997
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
3998
|
+
node?: Maybe<CollabContextWorkspace>;
|
|
3999
|
+
};
|
|
3970
4000
|
export declare type CollabDraft = {
|
|
3971
4001
|
__typename?: 'CollabDraft';
|
|
3972
4002
|
document?: Maybe<Scalars['String']['output']>;
|
|
@@ -7639,6 +7669,7 @@ export declare type CompassScorecardAppliedToComponentsQueryFilter = {
|
|
|
7639
7669
|
score?: InputMaybe<CompassScorecardAppliedToComponentsThresholdFilter>;
|
|
7640
7670
|
scoreRanges?: InputMaybe<CompassScorecardAppliedToComponentsScoreRangeFilter>;
|
|
7641
7671
|
scorecardCriteria?: InputMaybe<Array<CompassScorecardAppliedToComponentsCriteriaFilter>>;
|
|
7672
|
+
scorecardStatus?: InputMaybe<CompassScorecardAppliedToComponentsStatusFilter>;
|
|
7642
7673
|
types?: InputMaybe<CompassScorecardAppliedToComponentsTypesFilter>;
|
|
7643
7674
|
};
|
|
7644
7675
|
export declare type CompassScorecardAppliedToComponentsQueryResult = CompassScorecardAppliedToComponentsConnection | QueryError;
|
|
@@ -7653,6 +7684,9 @@ export declare type CompassScorecardAppliedToComponentsScoreRange = {
|
|
|
7653
7684
|
export declare type CompassScorecardAppliedToComponentsScoreRangeFilter = {
|
|
7654
7685
|
in: Array<CompassScorecardAppliedToComponentsScoreRange>;
|
|
7655
7686
|
};
|
|
7687
|
+
export declare type CompassScorecardAppliedToComponentsStatusFilter = {
|
|
7688
|
+
statuses: Array<Scalars['ID']['input']>;
|
|
7689
|
+
};
|
|
7656
7690
|
export declare type CompassScorecardAppliedToComponentsThresholdFilter = {
|
|
7657
7691
|
lt: Scalars['Int']['input'];
|
|
7658
7692
|
};
|
|
@@ -8879,6 +8913,7 @@ export declare type ConfluenceBlogPost = {
|
|
|
8879
8913
|
author?: Maybe<ConfluenceUserInfo>;
|
|
8880
8914
|
blogPostId: Scalars['ID']['output'];
|
|
8881
8915
|
body?: Maybe<ConfluenceBodies>;
|
|
8916
|
+
commentCountSummary?: Maybe<ConfluenceCommentCountSummary>;
|
|
8882
8917
|
comments?: Maybe<Array<Maybe<ConfluenceComment>>>;
|
|
8883
8918
|
createdAt?: Maybe<Scalars['String']['output']>;
|
|
8884
8919
|
id: Scalars['ID']['output'];
|
|
@@ -8904,6 +8939,7 @@ export declare type ConfluenceBlogPostPropertiesArgs = {
|
|
|
8904
8939
|
export declare type ConfluenceBlogPostLinks = {
|
|
8905
8940
|
__typename?: 'ConfluenceBlogPostLinks';
|
|
8906
8941
|
base?: Maybe<Scalars['String']['output']>;
|
|
8942
|
+
editUi?: Maybe<Scalars['String']['output']>;
|
|
8907
8943
|
webUi?: Maybe<Scalars['String']['output']>;
|
|
8908
8944
|
};
|
|
8909
8945
|
export declare type ConfluenceBlogPostProperty = {
|
|
@@ -9111,6 +9147,14 @@ export declare type ConfluenceContentState = {
|
|
|
9111
9147
|
id?: Maybe<Scalars['ID']['output']>;
|
|
9112
9148
|
name?: Maybe<Scalars['String']['output']>;
|
|
9113
9149
|
};
|
|
9150
|
+
export declare enum ConfluenceContentStatus {
|
|
9151
|
+
Archived = "ARCHIVED",
|
|
9152
|
+
Current = "CURRENT",
|
|
9153
|
+
Deleted = "DELETED",
|
|
9154
|
+
Draft = "DRAFT",
|
|
9155
|
+
Historical = "HISTORICAL",
|
|
9156
|
+
Trashed = "TRASHED"
|
|
9157
|
+
}
|
|
9114
9158
|
export declare type ConfluenceContentTitleEmoji = {
|
|
9115
9159
|
__typename?: 'ConfluenceContentTitleEmoji';
|
|
9116
9160
|
id?: Maybe<Scalars['String']['output']>;
|
|
@@ -9248,13 +9292,16 @@ export declare type ConfluenceDatabase = {
|
|
|
9248
9292
|
__typename?: 'ConfluenceDatabase';
|
|
9249
9293
|
allAncestors?: Maybe<Array<Maybe<ConfluenceAncestor>>>;
|
|
9250
9294
|
author?: Maybe<ConfluenceUserInfo>;
|
|
9295
|
+
commentCountSummary?: Maybe<ConfluenceCommentCountSummary>;
|
|
9251
9296
|
databaseId: Scalars['ID']['output'];
|
|
9252
9297
|
id: Scalars['ID']['output'];
|
|
9253
9298
|
latestVersion?: Maybe<ConfluenceContentVersion>;
|
|
9254
9299
|
links?: Maybe<ConfluenceDatabaseLinks>;
|
|
9255
9300
|
owner?: Maybe<ConfluenceUserInfo>;
|
|
9256
9301
|
space?: Maybe<ConfluenceSpace>;
|
|
9302
|
+
status?: Maybe<ConfluenceContentStatus>;
|
|
9257
9303
|
title?: Maybe<Scalars['String']['output']>;
|
|
9304
|
+
type?: Maybe<ConfluenceContentType>;
|
|
9258
9305
|
};
|
|
9259
9306
|
export declare type ConfluenceDatabaseLinks = {
|
|
9260
9307
|
__typename?: 'ConfluenceDatabaseLinks';
|
|
@@ -9376,6 +9423,7 @@ export declare type ConfluenceEmbed = {
|
|
|
9376
9423
|
__typename?: 'ConfluenceEmbed';
|
|
9377
9424
|
allAncestors?: Maybe<Array<Maybe<ConfluenceAncestor>>>;
|
|
9378
9425
|
author?: Maybe<ConfluenceUserInfo>;
|
|
9426
|
+
commentCountSummary?: Maybe<ConfluenceCommentCountSummary>;
|
|
9379
9427
|
embedId: Scalars['ID']['output'];
|
|
9380
9428
|
id: Scalars['ID']['output'];
|
|
9381
9429
|
latestVersion?: Maybe<ConfluenceContentVersion>;
|
|
@@ -9383,7 +9431,9 @@ export declare type ConfluenceEmbed = {
|
|
|
9383
9431
|
metadata?: Maybe<ConfluenceContentMetadata>;
|
|
9384
9432
|
owner?: Maybe<ConfluenceUserInfo>;
|
|
9385
9433
|
space?: Maybe<ConfluenceSpace>;
|
|
9434
|
+
status?: Maybe<ConfluenceContentStatus>;
|
|
9386
9435
|
title?: Maybe<Scalars['String']['output']>;
|
|
9436
|
+
type?: Maybe<ConfluenceContentType>;
|
|
9387
9437
|
};
|
|
9388
9438
|
export declare type ConfluenceEmbedLinks = {
|
|
9389
9439
|
__typename?: 'ConfluenceEmbedLinks';
|
|
@@ -9406,7 +9456,9 @@ export declare type ConfluenceFolder = {
|
|
|
9406
9456
|
metadata?: Maybe<ConfluenceContentMetadata>;
|
|
9407
9457
|
owner?: Maybe<ConfluenceUserInfo>;
|
|
9408
9458
|
space?: Maybe<ConfluenceSpace>;
|
|
9459
|
+
status?: Maybe<ConfluenceContentStatus>;
|
|
9409
9460
|
title?: Maybe<Scalars['String']['output']>;
|
|
9461
|
+
type?: Maybe<ConfluenceContentType>;
|
|
9410
9462
|
};
|
|
9411
9463
|
export declare type ConfluenceFolderLinks = {
|
|
9412
9464
|
__typename?: 'ConfluenceFolderLinks';
|
|
@@ -15344,6 +15396,7 @@ export declare type ConfluencePageInfo = {
|
|
|
15344
15396
|
export declare type ConfluencePageLinks = {
|
|
15345
15397
|
__typename?: 'ConfluencePageLinks';
|
|
15346
15398
|
base?: Maybe<Scalars['String']['output']>;
|
|
15399
|
+
editUi?: Maybe<Scalars['String']['output']>;
|
|
15347
15400
|
webUi?: Maybe<Scalars['String']['output']>;
|
|
15348
15401
|
};
|
|
15349
15402
|
export declare type ConfluencePageProperty = {
|
|
@@ -15641,6 +15694,7 @@ export declare type ConfluenceSearchResponseEdge = {
|
|
|
15641
15694
|
};
|
|
15642
15695
|
export declare type ConfluenceSpace = {
|
|
15643
15696
|
__typename?: 'ConfluenceSpace';
|
|
15697
|
+
alias?: Maybe<Scalars['String']['output']>;
|
|
15644
15698
|
createdBy?: Maybe<ConfluenceUserInfo>;
|
|
15645
15699
|
createdDate?: Maybe<Scalars['String']['output']>;
|
|
15646
15700
|
description?: Maybe<ConfluenceSpaceDescription>;
|
|
@@ -16511,12 +16565,14 @@ export declare type ConfluenceWhiteboard = {
|
|
|
16511
16565
|
allAncestors?: Maybe<Array<Maybe<ConfluenceAncestor>>>;
|
|
16512
16566
|
author?: Maybe<ConfluenceUserInfo>;
|
|
16513
16567
|
body?: Maybe<ConfluenceWhiteboardBody>;
|
|
16568
|
+
commentCountSummary?: Maybe<ConfluenceCommentCountSummary>;
|
|
16514
16569
|
comments?: Maybe<Array<Maybe<ConfluenceComment>>>;
|
|
16515
16570
|
id: Scalars['ID']['output'];
|
|
16516
16571
|
latestVersion?: Maybe<ConfluenceContentVersion>;
|
|
16517
16572
|
links?: Maybe<ConfluenceWhiteboardLinks>;
|
|
16518
16573
|
owner?: Maybe<ConfluenceUserInfo>;
|
|
16519
16574
|
space?: Maybe<ConfluenceSpace>;
|
|
16575
|
+
status?: Maybe<ConfluenceContentStatus>;
|
|
16520
16576
|
title?: Maybe<Scalars['String']['output']>;
|
|
16521
16577
|
type?: Maybe<ConfluenceContentType>;
|
|
16522
16578
|
whiteboardId: Scalars['ID']['output'];
|
|
@@ -21386,6 +21442,7 @@ export declare type DevAiGenericMutationErrorExtension = MutationErrorExtension
|
|
|
21386
21442
|
export declare type DevAiInvokeAutodevRovoAgentInBulkIssueResult = {
|
|
21387
21443
|
__typename?: 'DevAiInvokeAutodevRovoAgentInBulkIssueResult';
|
|
21388
21444
|
conversationId?: Maybe<Scalars['ID']['output']>;
|
|
21445
|
+
issue?: Maybe<JiraIssue>;
|
|
21389
21446
|
issueId?: Maybe<Scalars['ID']['output']>;
|
|
21390
21447
|
};
|
|
21391
21448
|
export declare type DevAiInvokeAutodevRovoAgentInBulkPayload = Payload & {
|
|
@@ -30301,6 +30358,8 @@ export declare type GraphStore = {
|
|
|
30301
30358
|
prInRepoInverse?: Maybe<GraphStoreSimplifiedPrInRepoInverseConnection>;
|
|
30302
30359
|
prInRepoInverseRelationship?: Maybe<GraphStoreFullPrInRepoConnection>;
|
|
30303
30360
|
prInRepoRelationship?: Maybe<GraphStoreFullPrInRepoConnection>;
|
|
30361
|
+
projectAssociatedAutodevJob?: Maybe<GraphStoreSimplifiedProjectAssociatedAutodevJobConnection>;
|
|
30362
|
+
projectAssociatedAutodevJobInverse?: Maybe<GraphStoreSimplifiedProjectAssociatedAutodevJobInverseConnection>;
|
|
30304
30363
|
projectAssociatedBranch?: Maybe<GraphStoreSimplifiedProjectAssociatedBranchConnection>;
|
|
30305
30364
|
projectAssociatedBranchInverse?: Maybe<GraphStoreSimplifiedProjectAssociatedBranchInverseConnection>;
|
|
30306
30365
|
projectAssociatedBranchInverseRelationship?: Maybe<GraphStoreFullProjectAssociatedBranchConnection>;
|
|
@@ -31978,6 +32037,7 @@ export declare type GraphStoreIssueRecursiveAssociatedPrRelationshipArgs = {
|
|
|
31978
32037
|
export declare type GraphStoreIssueToWhiteboardArgs = {
|
|
31979
32038
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
31980
32039
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
32040
|
+
filter?: InputMaybe<GraphStoreIssueToWhiteboardFilterInput>;
|
|
31981
32041
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
31982
32042
|
id: Scalars['ID']['input'];
|
|
31983
32043
|
sort?: InputMaybe<GraphStoreIssueToWhiteboardSortInput>;
|
|
@@ -31985,17 +32045,20 @@ export declare type GraphStoreIssueToWhiteboardArgs = {
|
|
|
31985
32045
|
export declare type GraphStoreIssueToWhiteboardInverseArgs = {
|
|
31986
32046
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
31987
32047
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
32048
|
+
filter?: InputMaybe<GraphStoreIssueToWhiteboardFilterInput>;
|
|
31988
32049
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
31989
32050
|
id: Scalars['ID']['input'];
|
|
31990
32051
|
sort?: InputMaybe<GraphStoreIssueToWhiteboardSortInput>;
|
|
31991
32052
|
};
|
|
31992
32053
|
export declare type GraphStoreIssueToWhiteboardInverseRelationshipArgs = {
|
|
31993
32054
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
32055
|
+
filter?: InputMaybe<GraphStoreIssueToWhiteboardFilterInput>;
|
|
31994
32056
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
31995
32057
|
id: Scalars['ID']['input'];
|
|
31996
32058
|
};
|
|
31997
32059
|
export declare type GraphStoreIssueToWhiteboardRelationshipArgs = {
|
|
31998
32060
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
32061
|
+
filter?: InputMaybe<GraphStoreIssueToWhiteboardFilterInput>;
|
|
31999
32062
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
32000
32063
|
id: Scalars['ID']['input'];
|
|
32001
32064
|
};
|
|
@@ -32459,6 +32522,20 @@ export declare type GraphStorePrInRepoRelationshipArgs = {
|
|
|
32459
32522
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
32460
32523
|
id: Scalars['ID']['input'];
|
|
32461
32524
|
};
|
|
32525
|
+
export declare type GraphStoreProjectAssociatedAutodevJobArgs = {
|
|
32526
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
32527
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
32528
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
32529
|
+
id: Scalars['ID']['input'];
|
|
32530
|
+
sort?: InputMaybe<GraphStoreProjectAssociatedAutodevJobSortInput>;
|
|
32531
|
+
};
|
|
32532
|
+
export declare type GraphStoreProjectAssociatedAutodevJobInverseArgs = {
|
|
32533
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
32534
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
32535
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
32536
|
+
id: Scalars['ID']['input'];
|
|
32537
|
+
sort?: InputMaybe<GraphStoreProjectAssociatedAutodevJobSortInput>;
|
|
32538
|
+
};
|
|
32462
32539
|
export declare type GraphStoreProjectAssociatedBranchArgs = {
|
|
32463
32540
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
32464
32541
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -32570,6 +32647,7 @@ export declare type GraphStoreProjectAssociatedFeatureFlagRelationshipArgs = {
|
|
|
32570
32647
|
export declare type GraphStoreProjectAssociatedIncidentArgs = {
|
|
32571
32648
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
32572
32649
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
32650
|
+
filter?: InputMaybe<GraphStoreProjectAssociatedIncidentFilterInput>;
|
|
32573
32651
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
32574
32652
|
id: Scalars['ID']['input'];
|
|
32575
32653
|
sort?: InputMaybe<GraphStoreProjectAssociatedIncidentSortInput>;
|
|
@@ -32577,17 +32655,20 @@ export declare type GraphStoreProjectAssociatedIncidentArgs = {
|
|
|
32577
32655
|
export declare type GraphStoreProjectAssociatedIncidentInverseArgs = {
|
|
32578
32656
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
32579
32657
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
32658
|
+
filter?: InputMaybe<GraphStoreProjectAssociatedIncidentFilterInput>;
|
|
32580
32659
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
32581
32660
|
id: Scalars['ID']['input'];
|
|
32582
32661
|
sort?: InputMaybe<GraphStoreProjectAssociatedIncidentSortInput>;
|
|
32583
32662
|
};
|
|
32584
32663
|
export declare type GraphStoreProjectAssociatedIncidentInverseRelationshipArgs = {
|
|
32585
32664
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
32665
|
+
filter?: InputMaybe<GraphStoreProjectAssociatedIncidentFilterInput>;
|
|
32586
32666
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
32587
32667
|
id: Scalars['ID']['input'];
|
|
32588
32668
|
};
|
|
32589
32669
|
export declare type GraphStoreProjectAssociatedIncidentRelationshipArgs = {
|
|
32590
32670
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
32671
|
+
filter?: InputMaybe<GraphStoreProjectAssociatedIncidentFilterInput>;
|
|
32591
32672
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
32592
32673
|
id: Scalars['ID']['input'];
|
|
32593
32674
|
};
|
|
@@ -32678,6 +32759,7 @@ export declare type GraphStoreProjectAssociatedRepoRelationshipArgs = {
|
|
|
32678
32759
|
export declare type GraphStoreProjectAssociatedServiceArgs = {
|
|
32679
32760
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
32680
32761
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
32762
|
+
filter?: InputMaybe<GraphStoreProjectAssociatedServiceFilterInput>;
|
|
32681
32763
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
32682
32764
|
id: Scalars['ID']['input'];
|
|
32683
32765
|
sort?: InputMaybe<GraphStoreProjectAssociatedServiceSortInput>;
|
|
@@ -32685,17 +32767,20 @@ export declare type GraphStoreProjectAssociatedServiceArgs = {
|
|
|
32685
32767
|
export declare type GraphStoreProjectAssociatedServiceInverseArgs = {
|
|
32686
32768
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
32687
32769
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
32770
|
+
filter?: InputMaybe<GraphStoreProjectAssociatedServiceFilterInput>;
|
|
32688
32771
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
32689
32772
|
id: Scalars['ID']['input'];
|
|
32690
32773
|
sort?: InputMaybe<GraphStoreProjectAssociatedServiceSortInput>;
|
|
32691
32774
|
};
|
|
32692
32775
|
export declare type GraphStoreProjectAssociatedServiceInverseRelationshipArgs = {
|
|
32693
32776
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
32777
|
+
filter?: InputMaybe<GraphStoreProjectAssociatedServiceFilterInput>;
|
|
32694
32778
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
32695
32779
|
id: Scalars['ID']['input'];
|
|
32696
32780
|
};
|
|
32697
32781
|
export declare type GraphStoreProjectAssociatedServiceRelationshipArgs = {
|
|
32698
32782
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
32783
|
+
filter?: InputMaybe<GraphStoreProjectAssociatedServiceFilterInput>;
|
|
32699
32784
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
32700
32785
|
id: Scalars['ID']['input'];
|
|
32701
32786
|
};
|
|
@@ -33578,6 +33663,7 @@ export declare type GraphStoreUserAssignedPirInverseArgs = {
|
|
|
33578
33663
|
export declare type GraphStoreUserAttendedCalendarEventArgs = {
|
|
33579
33664
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
33580
33665
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
33666
|
+
filter?: InputMaybe<GraphStoreUserAttendedCalendarEventFilterInput>;
|
|
33581
33667
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
33582
33668
|
id: Scalars['ID']['input'];
|
|
33583
33669
|
sort?: InputMaybe<GraphStoreUserAttendedCalendarEventSortInput>;
|
|
@@ -33585,6 +33671,7 @@ export declare type GraphStoreUserAttendedCalendarEventArgs = {
|
|
|
33585
33671
|
export declare type GraphStoreUserAttendedCalendarEventInverseArgs = {
|
|
33586
33672
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
33587
33673
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
33674
|
+
filter?: InputMaybe<GraphStoreUserAttendedCalendarEventFilterInput>;
|
|
33588
33675
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
33589
33676
|
id: Scalars['ID']['input'];
|
|
33590
33677
|
sort?: InputMaybe<GraphStoreUserAttendedCalendarEventSortInput>;
|
|
@@ -33734,6 +33821,7 @@ export declare type GraphStoreUserCreatedBranchInverseArgs = {
|
|
|
33734
33821
|
export declare type GraphStoreUserCreatedCalendarEventArgs = {
|
|
33735
33822
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
33736
33823
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
33824
|
+
filter?: InputMaybe<GraphStoreUserCreatedCalendarEventFilterInput>;
|
|
33737
33825
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
33738
33826
|
id: Scalars['ID']['input'];
|
|
33739
33827
|
sort?: InputMaybe<GraphStoreUserCreatedCalendarEventSortInput>;
|
|
@@ -33741,6 +33829,7 @@ export declare type GraphStoreUserCreatedCalendarEventArgs = {
|
|
|
33741
33829
|
export declare type GraphStoreUserCreatedCalendarEventInverseArgs = {
|
|
33742
33830
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
33743
33831
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
33832
|
+
filter?: InputMaybe<GraphStoreUserCreatedCalendarEventFilterInput>;
|
|
33744
33833
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
33745
33834
|
id: Scalars['ID']['input'];
|
|
33746
33835
|
sort?: InputMaybe<GraphStoreUserCreatedCalendarEventSortInput>;
|
|
@@ -34254,6 +34343,7 @@ export declare type GraphStoreUserOwnedRepositoryInverseArgs = {
|
|
|
34254
34343
|
export declare type GraphStoreUserOwnsComponentArgs = {
|
|
34255
34344
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
34256
34345
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
34346
|
+
filter?: InputMaybe<GraphStoreUserOwnsComponentFilterInput>;
|
|
34257
34347
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
34258
34348
|
id: Scalars['ID']['input'];
|
|
34259
34349
|
sort?: InputMaybe<GraphStoreUserOwnsComponentSortInput>;
|
|
@@ -34261,6 +34351,7 @@ export declare type GraphStoreUserOwnsComponentArgs = {
|
|
|
34261
34351
|
export declare type GraphStoreUserOwnsComponentInverseArgs = {
|
|
34262
34352
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
34263
34353
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
34354
|
+
filter?: InputMaybe<GraphStoreUserOwnsComponentFilterInput>;
|
|
34264
34355
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
34265
34356
|
id: Scalars['ID']['input'];
|
|
34266
34357
|
sort?: InputMaybe<GraphStoreUserOwnsComponentSortInput>;
|
|
@@ -35066,8 +35157,8 @@ export declare type GraphStoreAtlasGoalHasUpdateUpdateTypeFilterInput = {
|
|
|
35066
35157
|
is?: InputMaybe<Array<GraphStoreAtlasGoalHasUpdateUpdateType>>;
|
|
35067
35158
|
isNot?: InputMaybe<Array<GraphStoreAtlasGoalHasUpdateUpdateType>>;
|
|
35068
35159
|
};
|
|
35069
|
-
export declare type GraphStoreAtlasHomeFeedQueryToMetadataNodeUnion = ConfluencePage | JiraIssue | TeamV2 | TownsquareGoal | TownsquareProject;
|
|
35070
|
-
export declare type GraphStoreAtlasHomeFeedQueryToNodeUnion = ConfluencePage | JiraIssue | TeamV2 | TownsquareGoal | TownsquareProject;
|
|
35160
|
+
export declare type GraphStoreAtlasHomeFeedQueryToMetadataNodeUnion = ConfluencePage | JiraIssue | LoomComment | LoomVideo | TeamV2 | TownsquareGoal | TownsquareGoalUpdate | TownsquareProject | TownsquareProjectUpdate;
|
|
35161
|
+
export declare type GraphStoreAtlasHomeFeedQueryToNodeUnion = ConfluencePage | JiraIssue | LoomComment | LoomVideo | TeamV2 | TownsquareGoal | TownsquareGoalUpdate | TownsquareProject | TownsquareProjectUpdate;
|
|
35071
35162
|
export declare type GraphStoreAtlasHomeQueryConnection = {
|
|
35072
35163
|
__typename?: 'GraphStoreAtlasHomeQueryConnection';
|
|
35073
35164
|
nodes: Array<GraphStoreAtlasHomeQueryNode>;
|
|
@@ -35106,8 +35197,14 @@ export declare enum GraphStoreAtlasHomeSourcesEnum {
|
|
|
35106
35197
|
UserShouldFollowGoal = "USER_SHOULD_FOLLOW_GOAL",
|
|
35107
35198
|
UserShouldViewSharedPage = "USER_SHOULD_VIEW_SHARED_PAGE",
|
|
35108
35199
|
UserViewAssignedIssue = "USER_VIEW_ASSIGNED_ISSUE",
|
|
35200
|
+
UserViewNegativeGoal = "USER_VIEW_NEGATIVE_GOAL",
|
|
35201
|
+
UserViewNegativeProject = "USER_VIEW_NEGATIVE_PROJECT",
|
|
35109
35202
|
UserViewPageComments = "USER_VIEW_PAGE_COMMENTS",
|
|
35110
|
-
|
|
35203
|
+
UserViewSharedVideo = "USER_VIEW_SHARED_VIDEO",
|
|
35204
|
+
UserViewTaggedVideoComment = "USER_VIEW_TAGGED_VIDEO_COMMENT",
|
|
35205
|
+
UserViewUpdatedGoal = "USER_VIEW_UPDATED_GOAL",
|
|
35206
|
+
UserViewUpdatedPriorityIssue = "USER_VIEW_UPDATED_PRIORITY_ISSUE",
|
|
35207
|
+
UserViewUpdatedProject = "USER_VIEW_UPDATED_PROJECT"
|
|
35111
35208
|
}
|
|
35112
35209
|
export declare type GraphStoreAtlasProjectContributesToAtlasGoalSortInput = {
|
|
35113
35210
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
@@ -40389,6 +40486,16 @@ export declare type GraphStoreIssueRecursiveAssociatedPrSortInput = {
|
|
|
40389
40486
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
40390
40487
|
toAti?: InputMaybe<GraphStoreSortInput>;
|
|
40391
40488
|
};
|
|
40489
|
+
export declare type GraphStoreIssueToWhiteboardConditionalFilterInput = {
|
|
40490
|
+
createdAt?: InputMaybe<GraphStoreDateFilterInput>;
|
|
40491
|
+
fromAti?: InputMaybe<GraphStoreAtiFilterInput>;
|
|
40492
|
+
lastModified?: InputMaybe<GraphStoreDateFilterInput>;
|
|
40493
|
+
toAti?: InputMaybe<GraphStoreAtiFilterInput>;
|
|
40494
|
+
};
|
|
40495
|
+
export declare type GraphStoreIssueToWhiteboardFilterInput = {
|
|
40496
|
+
and?: InputMaybe<Array<InputMaybe<GraphStoreIssueToWhiteboardConditionalFilterInput>>>;
|
|
40497
|
+
or?: InputMaybe<Array<InputMaybe<GraphStoreIssueToWhiteboardConditionalFilterInput>>>;
|
|
40498
|
+
};
|
|
40392
40499
|
export declare type GraphStoreIssueToWhiteboardSortInput = {
|
|
40393
40500
|
createdAt?: InputMaybe<GraphStoreSortInput>;
|
|
40394
40501
|
fromAti?: InputMaybe<GraphStoreSortInput>;
|
|
@@ -40785,6 +40892,9 @@ export declare type GraphStorePositionAllocatedToFocusAreaSortInput = {
|
|
|
40785
40892
|
export declare type GraphStorePrInRepoSortInput = {
|
|
40786
40893
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
40787
40894
|
};
|
|
40895
|
+
export declare type GraphStoreProjectAssociatedAutodevJobSortInput = {
|
|
40896
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
40897
|
+
};
|
|
40788
40898
|
export declare type GraphStoreProjectAssociatedBranchSortInput = {
|
|
40789
40899
|
createdAt?: InputMaybe<GraphStoreSortInput>;
|
|
40790
40900
|
fromAti?: InputMaybe<GraphStoreSortInput>;
|
|
@@ -40934,6 +41044,16 @@ export declare type GraphStoreProjectAssociatedFeatureFlagSortInput = {
|
|
|
40934
41044
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
40935
41045
|
toAti?: InputMaybe<GraphStoreSortInput>;
|
|
40936
41046
|
};
|
|
41047
|
+
export declare type GraphStoreProjectAssociatedIncidentConditionalFilterInput = {
|
|
41048
|
+
createdAt?: InputMaybe<GraphStoreDateFilterInput>;
|
|
41049
|
+
fromAti?: InputMaybe<GraphStoreAtiFilterInput>;
|
|
41050
|
+
lastModified?: InputMaybe<GraphStoreDateFilterInput>;
|
|
41051
|
+
toAti?: InputMaybe<GraphStoreAtiFilterInput>;
|
|
41052
|
+
};
|
|
41053
|
+
export declare type GraphStoreProjectAssociatedIncidentFilterInput = {
|
|
41054
|
+
and?: InputMaybe<Array<InputMaybe<GraphStoreProjectAssociatedIncidentConditionalFilterInput>>>;
|
|
41055
|
+
or?: InputMaybe<Array<InputMaybe<GraphStoreProjectAssociatedIncidentConditionalFilterInput>>>;
|
|
41056
|
+
};
|
|
40937
41057
|
export declare type GraphStoreProjectAssociatedIncidentSortInput = {
|
|
40938
41058
|
createdAt?: InputMaybe<GraphStoreSortInput>;
|
|
40939
41059
|
fromAti?: InputMaybe<GraphStoreSortInput>;
|
|
@@ -41041,6 +41161,16 @@ export declare type GraphStoreProjectAssociatedRepoSortInput = {
|
|
|
41041
41161
|
toAti?: InputMaybe<GraphStoreSortInput>;
|
|
41042
41162
|
to_providerAri?: InputMaybe<GraphStoreSortInput>;
|
|
41043
41163
|
};
|
|
41164
|
+
export declare type GraphStoreProjectAssociatedServiceConditionalFilterInput = {
|
|
41165
|
+
createdAt?: InputMaybe<GraphStoreDateFilterInput>;
|
|
41166
|
+
fromAti?: InputMaybe<GraphStoreAtiFilterInput>;
|
|
41167
|
+
lastModified?: InputMaybe<GraphStoreDateFilterInput>;
|
|
41168
|
+
toAti?: InputMaybe<GraphStoreAtiFilterInput>;
|
|
41169
|
+
};
|
|
41170
|
+
export declare type GraphStoreProjectAssociatedServiceFilterInput = {
|
|
41171
|
+
and?: InputMaybe<Array<InputMaybe<GraphStoreProjectAssociatedServiceConditionalFilterInput>>>;
|
|
41172
|
+
or?: InputMaybe<Array<InputMaybe<GraphStoreProjectAssociatedServiceConditionalFilterInput>>>;
|
|
41173
|
+
};
|
|
41044
41174
|
export declare type GraphStoreProjectAssociatedServiceSortInput = {
|
|
41045
41175
|
createdAt?: InputMaybe<GraphStoreSortInput>;
|
|
41046
41176
|
fromAti?: InputMaybe<GraphStoreSortInput>;
|
|
@@ -43815,6 +43945,34 @@ export declare type GraphStoreSimplifiedPrInRepoInverseEdge = {
|
|
|
43815
43945
|
};
|
|
43816
43946
|
export declare type GraphStoreSimplifiedPrInRepoInverseUnion = DevOpsPullRequestDetails | ExternalPullRequest;
|
|
43817
43947
|
export declare type GraphStoreSimplifiedPrInRepoUnion = DevOpsRepository | ExternalRepository;
|
|
43948
|
+
export declare type GraphStoreSimplifiedProjectAssociatedAutodevJobConnection = HasPageInfo & {
|
|
43949
|
+
__typename?: 'GraphStoreSimplifiedProjectAssociatedAutodevJobConnection';
|
|
43950
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedProjectAssociatedAutodevJobEdge>>>;
|
|
43951
|
+
pageInfo: PageInfo;
|
|
43952
|
+
};
|
|
43953
|
+
export declare type GraphStoreSimplifiedProjectAssociatedAutodevJobEdge = {
|
|
43954
|
+
__typename?: 'GraphStoreSimplifiedProjectAssociatedAutodevJobEdge';
|
|
43955
|
+
createdAt: Scalars['DateTime']['output'];
|
|
43956
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
43957
|
+
id: Scalars['ID']['output'];
|
|
43958
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
43959
|
+
node?: Maybe<GraphStoreSimplifiedProjectAssociatedAutodevJobUnion>;
|
|
43960
|
+
};
|
|
43961
|
+
export declare type GraphStoreSimplifiedProjectAssociatedAutodevJobInverseConnection = HasPageInfo & {
|
|
43962
|
+
__typename?: 'GraphStoreSimplifiedProjectAssociatedAutodevJobInverseConnection';
|
|
43963
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedProjectAssociatedAutodevJobInverseEdge>>>;
|
|
43964
|
+
pageInfo: PageInfo;
|
|
43965
|
+
};
|
|
43966
|
+
export declare type GraphStoreSimplifiedProjectAssociatedAutodevJobInverseEdge = {
|
|
43967
|
+
__typename?: 'GraphStoreSimplifiedProjectAssociatedAutodevJobInverseEdge';
|
|
43968
|
+
createdAt: Scalars['DateTime']['output'];
|
|
43969
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
43970
|
+
id: Scalars['ID']['output'];
|
|
43971
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
43972
|
+
node?: Maybe<GraphStoreSimplifiedProjectAssociatedAutodevJobInverseUnion>;
|
|
43973
|
+
};
|
|
43974
|
+
export declare type GraphStoreSimplifiedProjectAssociatedAutodevJobInverseUnion = JiraProject;
|
|
43975
|
+
export declare type GraphStoreSimplifiedProjectAssociatedAutodevJobUnion = JiraAutodevJob;
|
|
43818
43976
|
export declare type GraphStoreSimplifiedProjectAssociatedBranchConnection = HasPageInfo & HasTotal & {
|
|
43819
43977
|
__typename?: 'GraphStoreSimplifiedProjectAssociatedBranchConnection';
|
|
43820
43978
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedProjectAssociatedBranchEdge>>>;
|
|
@@ -45279,10 +45437,12 @@ export declare type GraphStoreSimplifiedUserAssignedPirInverseEdge = {
|
|
|
45279
45437
|
};
|
|
45280
45438
|
export declare type GraphStoreSimplifiedUserAssignedPirInverseUnion = AppUser | AtlassianAccountUser | CustomerUser;
|
|
45281
45439
|
export declare type GraphStoreSimplifiedUserAssignedPirUnion = JiraIssue;
|
|
45282
|
-
export declare type GraphStoreSimplifiedUserAttendedCalendarEventConnection = HasPageInfo & {
|
|
45440
|
+
export declare type GraphStoreSimplifiedUserAttendedCalendarEventConnection = HasPageInfo & HasTotal & {
|
|
45283
45441
|
__typename?: 'GraphStoreSimplifiedUserAttendedCalendarEventConnection';
|
|
45284
45442
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserAttendedCalendarEventEdge>>>;
|
|
45443
|
+
isExactCount?: Maybe<Scalars['Boolean']['output']>;
|
|
45285
45444
|
pageInfo: PageInfo;
|
|
45445
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
45286
45446
|
};
|
|
45287
45447
|
export declare type GraphStoreSimplifiedUserAttendedCalendarEventEdge = {
|
|
45288
45448
|
__typename?: 'GraphStoreSimplifiedUserAttendedCalendarEventEdge';
|
|
@@ -45292,10 +45452,12 @@ export declare type GraphStoreSimplifiedUserAttendedCalendarEventEdge = {
|
|
|
45292
45452
|
lastUpdated: Scalars['DateTime']['output'];
|
|
45293
45453
|
node?: Maybe<GraphStoreSimplifiedUserAttendedCalendarEventUnion>;
|
|
45294
45454
|
};
|
|
45295
|
-
export declare type GraphStoreSimplifiedUserAttendedCalendarEventInverseConnection = HasPageInfo & {
|
|
45455
|
+
export declare type GraphStoreSimplifiedUserAttendedCalendarEventInverseConnection = HasPageInfo & HasTotal & {
|
|
45296
45456
|
__typename?: 'GraphStoreSimplifiedUserAttendedCalendarEventInverseConnection';
|
|
45297
45457
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserAttendedCalendarEventInverseEdge>>>;
|
|
45458
|
+
isExactCount?: Maybe<Scalars['Boolean']['output']>;
|
|
45298
45459
|
pageInfo: PageInfo;
|
|
45460
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
45299
45461
|
};
|
|
45300
45462
|
export declare type GraphStoreSimplifiedUserAttendedCalendarEventInverseEdge = {
|
|
45301
45463
|
__typename?: 'GraphStoreSimplifiedUserAttendedCalendarEventInverseEdge';
|
|
@@ -45591,10 +45753,12 @@ export declare type GraphStoreSimplifiedUserCreatedBranchInverseEdge = {
|
|
|
45591
45753
|
};
|
|
45592
45754
|
export declare type GraphStoreSimplifiedUserCreatedBranchInverseUnion = AppUser | AtlassianAccountUser | CustomerUser | ThirdPartyUser;
|
|
45593
45755
|
export declare type GraphStoreSimplifiedUserCreatedBranchUnion = ExternalBranch;
|
|
45594
|
-
export declare type GraphStoreSimplifiedUserCreatedCalendarEventConnection = HasPageInfo & {
|
|
45756
|
+
export declare type GraphStoreSimplifiedUserCreatedCalendarEventConnection = HasPageInfo & HasTotal & {
|
|
45595
45757
|
__typename?: 'GraphStoreSimplifiedUserCreatedCalendarEventConnection';
|
|
45596
45758
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserCreatedCalendarEventEdge>>>;
|
|
45759
|
+
isExactCount?: Maybe<Scalars['Boolean']['output']>;
|
|
45597
45760
|
pageInfo: PageInfo;
|
|
45761
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
45598
45762
|
};
|
|
45599
45763
|
export declare type GraphStoreSimplifiedUserCreatedCalendarEventEdge = {
|
|
45600
45764
|
__typename?: 'GraphStoreSimplifiedUserCreatedCalendarEventEdge';
|
|
@@ -45604,10 +45768,12 @@ export declare type GraphStoreSimplifiedUserCreatedCalendarEventEdge = {
|
|
|
45604
45768
|
lastUpdated: Scalars['DateTime']['output'];
|
|
45605
45769
|
node?: Maybe<GraphStoreSimplifiedUserCreatedCalendarEventUnion>;
|
|
45606
45770
|
};
|
|
45607
|
-
export declare type GraphStoreSimplifiedUserCreatedCalendarEventInverseConnection = HasPageInfo & {
|
|
45771
|
+
export declare type GraphStoreSimplifiedUserCreatedCalendarEventInverseConnection = HasPageInfo & HasTotal & {
|
|
45608
45772
|
__typename?: 'GraphStoreSimplifiedUserCreatedCalendarEventInverseConnection';
|
|
45609
45773
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserCreatedCalendarEventInverseEdge>>>;
|
|
45774
|
+
isExactCount?: Maybe<Scalars['Boolean']['output']>;
|
|
45610
45775
|
pageInfo: PageInfo;
|
|
45776
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
45611
45777
|
};
|
|
45612
45778
|
export declare type GraphStoreSimplifiedUserCreatedCalendarEventInverseEdge = {
|
|
45613
45779
|
__typename?: 'GraphStoreSimplifiedUserCreatedCalendarEventInverseEdge';
|
|
@@ -48161,8 +48327,21 @@ export declare type GraphStoreUserAssignedIssueSortInput = {
|
|
|
48161
48327
|
export declare type GraphStoreUserAssignedPirSortInput = {
|
|
48162
48328
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
48163
48329
|
};
|
|
48330
|
+
export declare type GraphStoreUserAttendedCalendarEventConditionalFilterInput = {
|
|
48331
|
+
createdAt?: InputMaybe<GraphStoreDateFilterInput>;
|
|
48332
|
+
fromAti?: InputMaybe<GraphStoreAtiFilterInput>;
|
|
48333
|
+
lastModified?: InputMaybe<GraphStoreDateFilterInput>;
|
|
48334
|
+
toAti?: InputMaybe<GraphStoreAtiFilterInput>;
|
|
48335
|
+
};
|
|
48336
|
+
export declare type GraphStoreUserAttendedCalendarEventFilterInput = {
|
|
48337
|
+
and?: InputMaybe<Array<InputMaybe<GraphStoreUserAttendedCalendarEventConditionalFilterInput>>>;
|
|
48338
|
+
or?: InputMaybe<Array<InputMaybe<GraphStoreUserAttendedCalendarEventConditionalFilterInput>>>;
|
|
48339
|
+
};
|
|
48164
48340
|
export declare type GraphStoreUserAttendedCalendarEventSortInput = {
|
|
48341
|
+
createdAt?: InputMaybe<GraphStoreSortInput>;
|
|
48342
|
+
fromAti?: InputMaybe<GraphStoreSortInput>;
|
|
48165
48343
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
48344
|
+
toAti?: InputMaybe<GraphStoreSortInput>;
|
|
48166
48345
|
};
|
|
48167
48346
|
export declare type GraphStoreUserAuthoredCommitSortInput = {
|
|
48168
48347
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
@@ -48215,8 +48394,21 @@ export declare type GraphStoreUserContributedConfluenceWhiteboardSortInput = {
|
|
|
48215
48394
|
export declare type GraphStoreUserCreatedBranchSortInput = {
|
|
48216
48395
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
48217
48396
|
};
|
|
48397
|
+
export declare type GraphStoreUserCreatedCalendarEventConditionalFilterInput = {
|
|
48398
|
+
createdAt?: InputMaybe<GraphStoreDateFilterInput>;
|
|
48399
|
+
fromAti?: InputMaybe<GraphStoreAtiFilterInput>;
|
|
48400
|
+
lastModified?: InputMaybe<GraphStoreDateFilterInput>;
|
|
48401
|
+
toAti?: InputMaybe<GraphStoreAtiFilterInput>;
|
|
48402
|
+
};
|
|
48403
|
+
export declare type GraphStoreUserCreatedCalendarEventFilterInput = {
|
|
48404
|
+
and?: InputMaybe<Array<InputMaybe<GraphStoreUserCreatedCalendarEventConditionalFilterInput>>>;
|
|
48405
|
+
or?: InputMaybe<Array<InputMaybe<GraphStoreUserCreatedCalendarEventConditionalFilterInput>>>;
|
|
48406
|
+
};
|
|
48218
48407
|
export declare type GraphStoreUserCreatedCalendarEventSortInput = {
|
|
48408
|
+
createdAt?: InputMaybe<GraphStoreSortInput>;
|
|
48409
|
+
fromAti?: InputMaybe<GraphStoreSortInput>;
|
|
48219
48410
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
48411
|
+
toAti?: InputMaybe<GraphStoreSortInput>;
|
|
48220
48412
|
};
|
|
48221
48413
|
export declare type GraphStoreUserCreatedConfluenceBlogpostSortInput = {
|
|
48222
48414
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
@@ -48350,6 +48542,16 @@ export declare type GraphStoreUserOwnedRemoteLinkSortInput = {
|
|
|
48350
48542
|
export declare type GraphStoreUserOwnedRepositorySortInput = {
|
|
48351
48543
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
48352
48544
|
};
|
|
48545
|
+
export declare type GraphStoreUserOwnsComponentConditionalFilterInput = {
|
|
48546
|
+
createdAt?: InputMaybe<GraphStoreDateFilterInput>;
|
|
48547
|
+
fromAti?: InputMaybe<GraphStoreAtiFilterInput>;
|
|
48548
|
+
lastModified?: InputMaybe<GraphStoreDateFilterInput>;
|
|
48549
|
+
toAti?: InputMaybe<GraphStoreAtiFilterInput>;
|
|
48550
|
+
};
|
|
48551
|
+
export declare type GraphStoreUserOwnsComponentFilterInput = {
|
|
48552
|
+
and?: InputMaybe<Array<InputMaybe<GraphStoreUserOwnsComponentConditionalFilterInput>>>;
|
|
48553
|
+
or?: InputMaybe<Array<InputMaybe<GraphStoreUserOwnsComponentConditionalFilterInput>>>;
|
|
48554
|
+
};
|
|
48353
48555
|
export declare type GraphStoreUserOwnsComponentSortInput = {
|
|
48354
48556
|
createdAt?: InputMaybe<GraphStoreSortInput>;
|
|
48355
48557
|
fromAti?: InputMaybe<GraphStoreSortInput>;
|
|
@@ -54880,6 +55082,11 @@ export declare type JiraDeleteIssueLinkPayload = Payload & {
|
|
|
54880
55082
|
issueLinkId?: Maybe<Scalars['ID']['output']>;
|
|
54881
55083
|
success: Scalars['Boolean']['output'];
|
|
54882
55084
|
};
|
|
55085
|
+
export declare type JiraDeleteJourneyItemInput = {
|
|
55086
|
+
itemId: Scalars['ID']['input'];
|
|
55087
|
+
journeyId: Scalars['ID']['input'];
|
|
55088
|
+
journeyVersion: Scalars['Long']['input'];
|
|
55089
|
+
};
|
|
54883
55090
|
export declare type JiraDeleteNavigationItemInput = {
|
|
54884
55091
|
id: Scalars['ID']['input'];
|
|
54885
55092
|
};
|
|
@@ -58263,6 +58470,10 @@ export declare enum JiraJourneyParentIssueType {
|
|
|
58263
58470
|
Request = "REQUEST"
|
|
58264
58471
|
}
|
|
58265
58472
|
export declare type JiraJourneyParentIssueValueType = JiraServiceManagementRequestType;
|
|
58473
|
+
export declare type JiraJourneySettings = {
|
|
58474
|
+
__typename?: 'JiraJourneySettings';
|
|
58475
|
+
maxJourneyItems?: Maybe<Scalars['Long']['output']>;
|
|
58476
|
+
};
|
|
58266
58477
|
export declare enum JiraJourneyStatus {
|
|
58267
58478
|
Archived = "ARCHIVED",
|
|
58268
58479
|
Disabled = "DISABLED",
|
|
@@ -59479,6 +59690,7 @@ export declare type JiraMutation = {
|
|
|
59479
59690
|
deleteIssueLink?: Maybe<JiraDeleteIssueLinkPayload>;
|
|
59480
59691
|
deleteIssueNavigatorJQLHistory?: Maybe<JiraIssueNavigatorJqlHistoryDeletePayload>;
|
|
59481
59692
|
deleteJiraActivityConfiguration?: Maybe<JiraUpdateJourneyConfigurationPayload>;
|
|
59693
|
+
deleteJiraJourneyItem?: Maybe<JiraUpdateJourneyConfigurationPayload>;
|
|
59482
59694
|
deleteJiraVersionApprover?: Maybe<JiraVersionDeleteApproverPayload>;
|
|
59483
59695
|
deleteJiraVersionWithNoIssues?: Maybe<JiraUpdateVersionPayload>;
|
|
59484
59696
|
deleteJwmOverview?: Maybe<JiraWorkManagementGiraDeleteOverviewPayload>;
|
|
@@ -59569,6 +59781,7 @@ export declare type JiraMutation = {
|
|
|
59569
59781
|
updateJiraActivityConfiguration?: Maybe<JiraUpdateJourneyConfigurationPayload>;
|
|
59570
59782
|
updateJiraJourneyActivityConfiguration?: Maybe<JiraUpdateJourneyConfigurationPayload>;
|
|
59571
59783
|
updateJiraJourneyConfiguration?: Maybe<JiraUpdateJourneyConfigurationPayload>;
|
|
59784
|
+
updateJiraJourneyItem?: Maybe<JiraUpdateJourneyConfigurationPayload>;
|
|
59572
59785
|
updateJiraJourneyName?: Maybe<JiraUpdateJourneyConfigurationPayload>;
|
|
59573
59786
|
updateJiraJourneyParentIssueConfiguration?: Maybe<JiraUpdateJourneyConfigurationPayload>;
|
|
59574
59787
|
updateJiraJourneyTriggerConfiguration?: Maybe<JiraUpdateJourneyConfigurationPayload>;
|
|
@@ -59777,6 +59990,10 @@ export declare type JiraMutationDeleteJiraActivityConfigurationArgs = {
|
|
|
59777
59990
|
cloudId: Scalars['ID']['input'];
|
|
59778
59991
|
input: JiraDeleteActivityConfigurationInput;
|
|
59779
59992
|
};
|
|
59993
|
+
export declare type JiraMutationDeleteJiraJourneyItemArgs = {
|
|
59994
|
+
cloudId: Scalars['ID']['input'];
|
|
59995
|
+
input: JiraDeleteJourneyItemInput;
|
|
59996
|
+
};
|
|
59780
59997
|
export declare type JiraMutationDeleteJiraVersionApproverArgs = {
|
|
59781
59998
|
id: Scalars['ID']['input'];
|
|
59782
59999
|
};
|
|
@@ -60078,6 +60295,10 @@ export declare type JiraMutationUpdateJiraJourneyConfigurationArgs = {
|
|
|
60078
60295
|
cloudId: Scalars['ID']['input'];
|
|
60079
60296
|
input: JiraUpdateJourneyConfigurationInput;
|
|
60080
60297
|
};
|
|
60298
|
+
export declare type JiraMutationUpdateJiraJourneyItemArgs = {
|
|
60299
|
+
cloudId: Scalars['ID']['input'];
|
|
60300
|
+
input: JiraUpdateJourneyItemInput;
|
|
60301
|
+
};
|
|
60081
60302
|
export declare type JiraMutationUpdateJiraJourneyNameArgs = {
|
|
60082
60303
|
cloudId: Scalars['ID']['input'];
|
|
60083
60304
|
input: JiraUpdateJourneyNameInput;
|
|
@@ -61447,6 +61668,7 @@ export declare type JiraProject = Node & {
|
|
|
61447
61668
|
id: Scalars['ID']['output'];
|
|
61448
61669
|
intentTemplates?: Maybe<VirtualAgentIntentTemplatesConnection>;
|
|
61449
61670
|
isAIEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
61671
|
+
isAutomationDiscoverabilityEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
61450
61672
|
isExplicitFieldAssociationsEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
61451
61673
|
isFavourite?: Maybe<Scalars['Boolean']['output']>;
|
|
61452
61674
|
isLiveTemplate?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -62307,6 +62529,7 @@ export declare type JiraQuery = {
|
|
|
62307
62529
|
jiraIssueSearchView?: Maybe<JiraView>;
|
|
62308
62530
|
jiraJourneyConfiguration?: Maybe<JiraJourneyConfiguration>;
|
|
62309
62531
|
jiraJourneyItem?: Maybe<JiraJourneyItem>;
|
|
62532
|
+
jiraJourneySettings?: Maybe<JiraJourneySettings>;
|
|
62310
62533
|
jiraProject?: Maybe<JiraProject>;
|
|
62311
62534
|
jiraProjectByKey?: Maybe<JiraProject>;
|
|
62312
62535
|
jiraProjects?: Maybe<Array<Maybe<JiraProject>>>;
|
|
@@ -62869,6 +63092,9 @@ export declare type JiraQueryJiraJourneyItemArgs = {
|
|
|
62869
63092
|
id: Scalars['ID']['input'];
|
|
62870
63093
|
journeyId: Scalars['ID']['input'];
|
|
62871
63094
|
};
|
|
63095
|
+
export declare type JiraQueryJiraJourneySettingsArgs = {
|
|
63096
|
+
cloudId: Scalars['ID']['input'];
|
|
63097
|
+
};
|
|
62872
63098
|
export declare type JiraQueryJiraProjectArgs = {
|
|
62873
63099
|
id: Scalars['ID']['input'];
|
|
62874
63100
|
};
|
|
@@ -66861,6 +67087,12 @@ export declare type JiraUpdateJourneyConfigurationPayload = Payload & {
|
|
|
66861
67087
|
jiraJourneyConfigurationEdge?: Maybe<JiraJourneyConfigurationEdge>;
|
|
66862
67088
|
success: Scalars['Boolean']['output'];
|
|
66863
67089
|
};
|
|
67090
|
+
export declare type JiraUpdateJourneyItemInput = {
|
|
67091
|
+
configuration: JiraJourneyItemConfigurationInput;
|
|
67092
|
+
itemId: Scalars['ID']['input'];
|
|
67093
|
+
journeyId: Scalars['ID']['input'];
|
|
67094
|
+
journeyVersion: Scalars['Long']['input'];
|
|
67095
|
+
};
|
|
66864
67096
|
export declare type JiraUpdateJourneyNameInput = {
|
|
66865
67097
|
id: Scalars['ID']['input'];
|
|
66866
67098
|
name?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -72770,6 +73002,7 @@ export declare type MercuryChangeProposal = Node & {
|
|
|
72770
73002
|
description?: Maybe<Scalars['String']['output']>;
|
|
72771
73003
|
id: Scalars['ID']['output'];
|
|
72772
73004
|
name: Scalars['String']['output'];
|
|
73005
|
+
owner?: Maybe<User>;
|
|
72773
73006
|
status?: Maybe<MercuryChangeProposalStatus>;
|
|
72774
73007
|
statusTransitions?: Maybe<MercuryChangeProposalStatusTransitions>;
|
|
72775
73008
|
strategicEvent?: Maybe<MercuryStrategicEvent>;
|
|
@@ -72794,7 +73027,7 @@ export declare enum MercuryChangeProposalSortField {
|
|
|
72794
73027
|
}
|
|
72795
73028
|
export declare type MercuryChangeProposalStatus = {
|
|
72796
73029
|
__typename?: 'MercuryChangeProposalStatus';
|
|
72797
|
-
color:
|
|
73030
|
+
color: MercuryStatusColor;
|
|
72798
73031
|
displayName: Scalars['String']['output'];
|
|
72799
73032
|
id: Scalars['ID']['output'];
|
|
72800
73033
|
key: Scalars['String']['output'];
|
|
@@ -72831,8 +73064,10 @@ export declare type MercuryCommentEdge = {
|
|
|
72831
73064
|
};
|
|
72832
73065
|
export declare type MercuryCreateChangeProposalInput = {
|
|
72833
73066
|
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
73067
|
+
description?: InputMaybe<Scalars['String']['input']>;
|
|
72834
73068
|
name: Scalars['String']['input'];
|
|
72835
|
-
|
|
73069
|
+
owner?: InputMaybe<Scalars['String']['input']>;
|
|
73070
|
+
strategicEventId: Scalars['ID']['input'];
|
|
72836
73071
|
};
|
|
72837
73072
|
export declare type MercuryCreateChangeProposalPayload = Payload & {
|
|
72838
73073
|
__typename?: 'MercuryCreateChangeProposalPayload';
|
|
@@ -72891,7 +73126,9 @@ export declare type MercuryCreatePortfolioPayload = Payload & {
|
|
|
72891
73126
|
};
|
|
72892
73127
|
export declare type MercuryCreateStrategicEventInput = {
|
|
72893
73128
|
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
73129
|
+
description?: InputMaybe<Scalars['String']['input']>;
|
|
72894
73130
|
name: Scalars['String']['input'];
|
|
73131
|
+
owner?: InputMaybe<Scalars['ID']['input']>;
|
|
72895
73132
|
targetDate: Scalars['String']['input'];
|
|
72896
73133
|
};
|
|
72897
73134
|
export declare type MercuryCreateStrategicEventPayload = Payload & {
|
|
@@ -73929,8 +74166,16 @@ export declare type MercurySpendAggregation = {
|
|
|
73929
74166
|
aggregatedSpend?: Maybe<Scalars['BigDecimal']['output']>;
|
|
73930
74167
|
totalAssignedSpend?: Maybe<Scalars['BigDecimal']['output']>;
|
|
73931
74168
|
};
|
|
74169
|
+
export declare enum MercuryStatusColor {
|
|
74170
|
+
Blue = "BLUE",
|
|
74171
|
+
Gray = "GRAY",
|
|
74172
|
+
Green = "GREEN",
|
|
74173
|
+
Red = "RED",
|
|
74174
|
+
Yellow = "YELLOW"
|
|
74175
|
+
}
|
|
73932
74176
|
export declare type MercuryStrategicEvent = Node & {
|
|
73933
74177
|
__typename?: 'MercuryStrategicEvent';
|
|
74178
|
+
description?: Maybe<Scalars['String']['output']>;
|
|
73934
74179
|
id: Scalars['ID']['output'];
|
|
73935
74180
|
name: Scalars['String']['output'];
|
|
73936
74181
|
owner?: Maybe<User>;
|
|
@@ -73960,7 +74205,7 @@ export declare enum MercuryStrategicEventSortField {
|
|
|
73960
74205
|
}
|
|
73961
74206
|
export declare type MercuryStrategicEventStatus = {
|
|
73962
74207
|
__typename?: 'MercuryStrategicEventStatus';
|
|
73963
|
-
color:
|
|
74208
|
+
color: MercuryStatusColor;
|
|
73964
74209
|
displayName: Scalars['String']['output'];
|
|
73965
74210
|
id: Scalars['ID']['output'];
|
|
73966
74211
|
key: Scalars['String']['output'];
|
|
@@ -73979,6 +74224,15 @@ export declare type MercuryStrategicEventsMutationApi = {
|
|
|
73979
74224
|
__typename?: 'MercuryStrategicEventsMutationApi';
|
|
73980
74225
|
createChangeProposal?: Maybe<MercuryCreateChangeProposalPayload>;
|
|
73981
74226
|
createStrategicEvent?: Maybe<MercuryCreateStrategicEventPayload>;
|
|
74227
|
+
transitionChangeProposalStatus?: Maybe<MercuryTransitionChangeProposalPayload>;
|
|
74228
|
+
transitionStrategicEventStatus?: Maybe<MercuryTransitionStrategicEventPayload>;
|
|
74229
|
+
updateChangeProposalDescription?: Maybe<MercuryUpdateChangeProposalPayload>;
|
|
74230
|
+
updateChangeProposalName?: Maybe<MercuryUpdateChangeProposalPayload>;
|
|
74231
|
+
updateChangeProposalOwner?: Maybe<MercuryUpdateChangeProposalPayload>;
|
|
74232
|
+
updateStrategicEventDescription?: Maybe<MercuryUpdateStrategicEventPayload>;
|
|
74233
|
+
updateStrategicEventName?: Maybe<MercuryUpdateStrategicEventPayload>;
|
|
74234
|
+
updateStrategicEventOwner?: Maybe<MercuryUpdateStrategicEventPayload>;
|
|
74235
|
+
updateStrategicEventTargetDate?: Maybe<MercuryUpdateStrategicEventPayload>;
|
|
73982
74236
|
};
|
|
73983
74237
|
export declare type MercuryStrategicEventsMutationApiCreateChangeProposalArgs = {
|
|
73984
74238
|
input: MercuryCreateChangeProposalInput;
|
|
@@ -73986,6 +74240,33 @@ export declare type MercuryStrategicEventsMutationApiCreateChangeProposalArgs =
|
|
|
73986
74240
|
export declare type MercuryStrategicEventsMutationApiCreateStrategicEventArgs = {
|
|
73987
74241
|
input: MercuryCreateStrategicEventInput;
|
|
73988
74242
|
};
|
|
74243
|
+
export declare type MercuryStrategicEventsMutationApiTransitionChangeProposalStatusArgs = {
|
|
74244
|
+
input: MercuryTransitionChangeProposalStatusInput;
|
|
74245
|
+
};
|
|
74246
|
+
export declare type MercuryStrategicEventsMutationApiTransitionStrategicEventStatusArgs = {
|
|
74247
|
+
input: MercuryTransitionStrategicEventStatusInput;
|
|
74248
|
+
};
|
|
74249
|
+
export declare type MercuryStrategicEventsMutationApiUpdateChangeProposalDescriptionArgs = {
|
|
74250
|
+
input: MercuryUpdateChangeProposalDescriptionInput;
|
|
74251
|
+
};
|
|
74252
|
+
export declare type MercuryStrategicEventsMutationApiUpdateChangeProposalNameArgs = {
|
|
74253
|
+
input: MercuryUpdateChangeProposalNameInput;
|
|
74254
|
+
};
|
|
74255
|
+
export declare type MercuryStrategicEventsMutationApiUpdateChangeProposalOwnerArgs = {
|
|
74256
|
+
input: MercuryUpdateChangeProposalOwnerInput;
|
|
74257
|
+
};
|
|
74258
|
+
export declare type MercuryStrategicEventsMutationApiUpdateStrategicEventDescriptionArgs = {
|
|
74259
|
+
input: MercuryUpdateStrategicEventDescriptionInput;
|
|
74260
|
+
};
|
|
74261
|
+
export declare type MercuryStrategicEventsMutationApiUpdateStrategicEventNameArgs = {
|
|
74262
|
+
input: MercuryUpdateStrategicEventNameInput;
|
|
74263
|
+
};
|
|
74264
|
+
export declare type MercuryStrategicEventsMutationApiUpdateStrategicEventOwnerArgs = {
|
|
74265
|
+
input: MercuryUpdateStrategicEventOwnerInput;
|
|
74266
|
+
};
|
|
74267
|
+
export declare type MercuryStrategicEventsMutationApiUpdateStrategicEventTargetDateArgs = {
|
|
74268
|
+
input: MercuryUpdateStrategicEventTargetDateInput;
|
|
74269
|
+
};
|
|
73989
74270
|
export declare type MercuryStrategicEventsQueryApi = {
|
|
73990
74271
|
__typename?: 'MercuryStrategicEventsQueryApi';
|
|
73991
74272
|
changeProposal?: Maybe<MercuryChangeProposal>;
|
|
@@ -73996,8 +74277,6 @@ export declare type MercuryStrategicEventsQueryApi = {
|
|
|
73996
74277
|
strategicEventStatuses: Array<MercuryStrategicEventStatus>;
|
|
73997
74278
|
strategicEvents?: Maybe<Array<Maybe<MercuryStrategicEvent>>>;
|
|
73998
74279
|
strategicEventsSearch?: Maybe<MercuryStrategicEventConnection>;
|
|
73999
|
-
transitionChangeProposalStatus?: Maybe<MercuryTransitionChangeProposalPayload>;
|
|
74000
|
-
transitionStrategicEventStatus?: Maybe<MercuryTransitionStrategicEventPayload>;
|
|
74001
74280
|
};
|
|
74002
74281
|
export declare type MercuryStrategicEventsQueryApiChangeProposalArgs = {
|
|
74003
74282
|
id: Scalars['ID']['input'];
|
|
@@ -74031,12 +74310,6 @@ export declare type MercuryStrategicEventsQueryApiStrategicEventsSearchArgs = {
|
|
|
74031
74310
|
q?: InputMaybe<Scalars['String']['input']>;
|
|
74032
74311
|
sort?: InputMaybe<Array<InputMaybe<MercuryStrategicEventSort>>>;
|
|
74033
74312
|
};
|
|
74034
|
-
export declare type MercuryStrategicEventsQueryApiTransitionChangeProposalStatusArgs = {
|
|
74035
|
-
input: MercuryTransitionChangeProposalStatusInput;
|
|
74036
|
-
};
|
|
74037
|
-
export declare type MercuryStrategicEventsQueryApiTransitionStrategicEventStatusArgs = {
|
|
74038
|
-
input: MercuryTransitionStrategicEventStatusInput;
|
|
74039
|
-
};
|
|
74040
74313
|
export declare type MercuryTargetDate = {
|
|
74041
74314
|
__typename?: 'MercuryTargetDate';
|
|
74042
74315
|
targetDate?: Maybe<Scalars['String']['output']>;
|
|
@@ -74131,6 +74404,27 @@ export declare type MercuryTransitionStrategicEventStatusInput = {
|
|
|
74131
74404
|
id: Scalars['ID']['input'];
|
|
74132
74405
|
statusTransitionId: Scalars['ID']['input'];
|
|
74133
74406
|
};
|
|
74407
|
+
export declare type MercuryUpdateChangeProposalDescriptionInput = {
|
|
74408
|
+
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
74409
|
+
description: Scalars['String']['input'];
|
|
74410
|
+
id: Scalars['ID']['input'];
|
|
74411
|
+
};
|
|
74412
|
+
export declare type MercuryUpdateChangeProposalNameInput = {
|
|
74413
|
+
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
74414
|
+
id: Scalars['ID']['input'];
|
|
74415
|
+
name: Scalars['String']['input'];
|
|
74416
|
+
};
|
|
74417
|
+
export declare type MercuryUpdateChangeProposalOwnerInput = {
|
|
74418
|
+
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
74419
|
+
id: Scalars['ID']['input'];
|
|
74420
|
+
owner: Scalars['ID']['input'];
|
|
74421
|
+
};
|
|
74422
|
+
export declare type MercuryUpdateChangeProposalPayload = Payload & {
|
|
74423
|
+
__typename?: 'MercuryUpdateChangeProposalPayload';
|
|
74424
|
+
errors?: Maybe<Array<MutationError>>;
|
|
74425
|
+
success: Scalars['Boolean']['output'];
|
|
74426
|
+
updatedChangeProposal?: Maybe<MercuryChangeProposal>;
|
|
74427
|
+
};
|
|
74134
74428
|
export declare type MercuryUpdateCommentInput = {
|
|
74135
74429
|
cloudId: Scalars['ID']['input'];
|
|
74136
74430
|
commentText: Scalars['MercuryJSONString']['input'];
|
|
@@ -74193,6 +74487,32 @@ export declare type MercuryUpdatePortfolioPayload = Payload & {
|
|
|
74193
74487
|
success: Scalars['Boolean']['output'];
|
|
74194
74488
|
updatedPortfolio?: Maybe<MercuryPortfolio>;
|
|
74195
74489
|
};
|
|
74490
|
+
export declare type MercuryUpdateStrategicEventDescriptionInput = {
|
|
74491
|
+
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
74492
|
+
description: Scalars['String']['input'];
|
|
74493
|
+
id: Scalars['ID']['input'];
|
|
74494
|
+
};
|
|
74495
|
+
export declare type MercuryUpdateStrategicEventNameInput = {
|
|
74496
|
+
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
74497
|
+
id: Scalars['ID']['input'];
|
|
74498
|
+
name: Scalars['String']['input'];
|
|
74499
|
+
};
|
|
74500
|
+
export declare type MercuryUpdateStrategicEventOwnerInput = {
|
|
74501
|
+
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
74502
|
+
id: Scalars['ID']['input'];
|
|
74503
|
+
owner: Scalars['ID']['input'];
|
|
74504
|
+
};
|
|
74505
|
+
export declare type MercuryUpdateStrategicEventPayload = Payload & {
|
|
74506
|
+
__typename?: 'MercuryUpdateStrategicEventPayload';
|
|
74507
|
+
errors?: Maybe<Array<MutationError>>;
|
|
74508
|
+
success: Scalars['Boolean']['output'];
|
|
74509
|
+
updatedStrategicEvent?: Maybe<MercuryStrategicEvent>;
|
|
74510
|
+
};
|
|
74511
|
+
export declare type MercuryUpdateStrategicEventTargetDateInput = {
|
|
74512
|
+
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
74513
|
+
id: Scalars['ID']['input'];
|
|
74514
|
+
targetDate?: InputMaybe<Scalars['String']['input']>;
|
|
74515
|
+
};
|
|
74196
74516
|
export declare type MercuryUpdatedField = {
|
|
74197
74517
|
__typename?: 'MercuryUpdatedField';
|
|
74198
74518
|
field?: Maybe<Scalars['String']['output']>;
|
|
@@ -79300,6 +79620,7 @@ export declare type Query = {
|
|
|
79300
79620
|
classificationLevel?: Maybe<ContentDataClassificationLevel>;
|
|
79301
79621
|
classificationLevels?: Maybe<Array<ContentDataClassificationLevel>>;
|
|
79302
79622
|
codeInJira?: Maybe<CodeInJira>;
|
|
79623
|
+
collabContext_workspaceIsConnectedToWorkspace?: Maybe<CollabContextWorkspaceConnection>;
|
|
79303
79624
|
collabDraft?: Maybe<CollabDraft>;
|
|
79304
79625
|
collabToken?: Maybe<CollabTokenResponse>;
|
|
79305
79626
|
comments?: Maybe<PaginatedCommentList>;
|
|
@@ -80149,6 +80470,9 @@ export declare type QueryClassificationLevelsArgs = {
|
|
|
80149
80470
|
export declare type QueryCodeInJiraArgs = {
|
|
80150
80471
|
cloudId: Scalars['ID']['input'];
|
|
80151
80472
|
};
|
|
80473
|
+
export declare type QueryCollabContext_WorkspaceIsConnectedToWorkspaceArgs = {
|
|
80474
|
+
id: Scalars['ID']['input'];
|
|
80475
|
+
};
|
|
80152
80476
|
export declare type QueryCollabDraftArgs = {
|
|
80153
80477
|
format?: CollabFormat;
|
|
80154
80478
|
hydrateAdf?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -91849,6 +92173,7 @@ export declare type TrelloMember = Node & {
|
|
|
91849
92173
|
nonPublicData?: Maybe<TrelloMemberNonPublicData>;
|
|
91850
92174
|
objectId: Scalars['ID']['output'];
|
|
91851
92175
|
planner?: Maybe<TrelloPlanner>;
|
|
92176
|
+
prefs?: Maybe<TrelloMemberPrefs>;
|
|
91852
92177
|
referrer?: Maybe<TrelloMember>;
|
|
91853
92178
|
url?: Maybe<Scalars['URL']['output']>;
|
|
91854
92179
|
user?: Maybe<User>;
|
|
@@ -91877,6 +92202,10 @@ export declare type TrelloMemberNonPublicData = {
|
|
|
91877
92202
|
fullName?: Maybe<Scalars['String']['output']>;
|
|
91878
92203
|
initials?: Maybe<Scalars['String']['output']>;
|
|
91879
92204
|
};
|
|
92205
|
+
export declare type TrelloMemberPrefs = {
|
|
92206
|
+
__typename?: 'TrelloMemberPrefs';
|
|
92207
|
+
colorBlind?: Maybe<Scalars['Boolean']['output']>;
|
|
92208
|
+
};
|
|
91880
92209
|
export declare type TrelloMemberUpdated = {
|
|
91881
92210
|
__typename?: 'TrelloMemberUpdated';
|
|
91882
92211
|
_deltas?: Maybe<Array<Scalars['String']['output']>>;
|
|
@@ -92238,7 +92567,6 @@ export declare type TrelloPlannerCalendarEventEdgeUpdated = {
|
|
|
92238
92567
|
};
|
|
92239
92568
|
export declare enum TrelloPlannerCalendarEventStatus {
|
|
92240
92569
|
Accepted = "ACCEPTED",
|
|
92241
|
-
Cancelled = "CANCELLED",
|
|
92242
92570
|
Declined = "DECLINED",
|
|
92243
92571
|
NeedsAction = "NEEDS_ACTION",
|
|
92244
92572
|
Tentative = "TENTATIVE"
|
|
@@ -92956,13 +93284,44 @@ export declare type UnifiedCacheInvalidationResult = {
|
|
|
92956
93284
|
errors?: Maybe<Array<UnifiedMutationError>>;
|
|
92957
93285
|
success: Scalars['Boolean']['output'];
|
|
92958
93286
|
};
|
|
93287
|
+
export declare type UnifiedCacheKeyResult = {
|
|
93288
|
+
__typename?: 'UnifiedCacheKeyResult';
|
|
93289
|
+
cacheKey: Scalars['String']['output'];
|
|
93290
|
+
};
|
|
93291
|
+
export declare type UnifiedCacheResult = {
|
|
93292
|
+
__typename?: 'UnifiedCacheResult';
|
|
93293
|
+
cachedData: Scalars['String']['output'];
|
|
93294
|
+
};
|
|
93295
|
+
export declare type UnifiedCacheStatusPayload = UnifiedPayload & {
|
|
93296
|
+
__typename?: 'UnifiedCacheStatusPayload';
|
|
93297
|
+
errors?: Maybe<Array<UnifiedMutationError>>;
|
|
93298
|
+
message?: Maybe<Scalars['String']['output']>;
|
|
93299
|
+
success: Scalars['Boolean']['output'];
|
|
93300
|
+
};
|
|
92959
93301
|
export declare type UnifiedCachingMutation = {
|
|
92960
93302
|
__typename?: 'UnifiedCachingMutation';
|
|
92961
93303
|
invalidateCache?: Maybe<UnifiedCacheInvalidationResult>;
|
|
93304
|
+
setCacheData?: Maybe<UnifiedCacheStatusPayload>;
|
|
92962
93305
|
};
|
|
92963
93306
|
export declare type UnifiedCachingMutationInvalidateCacheArgs = {
|
|
92964
|
-
|
|
93307
|
+
cacheKey: Scalars['String']['input'];
|
|
93308
|
+
};
|
|
93309
|
+
export declare type UnifiedCachingMutationSetCacheDataArgs = {
|
|
93310
|
+
cacheKey: Scalars['String']['input'];
|
|
93311
|
+
data: Scalars['String']['input'];
|
|
93312
|
+
ttl?: InputMaybe<Scalars['Int']['input']>;
|
|
93313
|
+
};
|
|
93314
|
+
export declare type UnifiedCachingQuery = {
|
|
93315
|
+
__typename?: 'UnifiedCachingQuery';
|
|
93316
|
+
getCacheKey?: Maybe<UnifiedUCacheKeyResult>;
|
|
93317
|
+
getCachedData?: Maybe<UnifiedUCacheResult>;
|
|
93318
|
+
};
|
|
93319
|
+
export declare type UnifiedCachingQueryGetCacheKeyArgs = {
|
|
92965
93320
|
dataPoint: Scalars['String']['input'];
|
|
93321
|
+
id: Scalars['String']['input'];
|
|
93322
|
+
};
|
|
93323
|
+
export declare type UnifiedCachingQueryGetCachedDataArgs = {
|
|
93324
|
+
cacheKey: Scalars['String']['input'];
|
|
92966
93325
|
};
|
|
92967
93326
|
export declare type UnifiedCommunityMutation = {
|
|
92968
93327
|
__typename?: 'UnifiedCommunityMutation';
|
|
@@ -93527,6 +93886,7 @@ export declare type UnifiedQuery = {
|
|
|
93527
93886
|
accountBasics?: Maybe<UnifiedUAccountBasicsResult>;
|
|
93528
93887
|
accountDetails?: Maybe<UnifiedUAccountDetailsResult>;
|
|
93529
93888
|
atlassianProducts?: Maybe<UnifiedUAtlassianProductResult>;
|
|
93889
|
+
caching?: Maybe<UnifiedCachingQuery>;
|
|
93530
93890
|
consent?: Maybe<UnifiedConsentQuery>;
|
|
93531
93891
|
gating?: Maybe<UnifiedGatingQuery>;
|
|
93532
93892
|
node?: Maybe<UnifiedINode>;
|
|
@@ -93595,6 +93955,8 @@ export declare type UnifiedUAccountResult = UnifiedAccount | UnifiedQueryError;
|
|
|
93595
93955
|
export declare type UnifiedUAdminsResult = UnifiedAdmins | UnifiedQueryError;
|
|
93596
93956
|
export declare type UnifiedUAllowListResult = UnifiedAllowList | UnifiedQueryError;
|
|
93597
93957
|
export declare type UnifiedUAtlassianProductResult = UnifiedAtlassianProductConnection | UnifiedQueryError;
|
|
93958
|
+
export declare type UnifiedUCacheKeyResult = UnifiedCacheKeyResult | UnifiedQueryError;
|
|
93959
|
+
export declare type UnifiedUCacheResult = UnifiedCacheResult | UnifiedQueryError;
|
|
93598
93960
|
export declare type UnifiedUConsentStatusResult = UnifiedConsentStatus | UnifiedQueryError;
|
|
93599
93961
|
export declare type UnifiedUForumsBadgesResult = UnifiedForumsBadgesConnection | UnifiedQueryError;
|
|
93600
93962
|
export declare type UnifiedUForumsGroupsResult = UnifiedForumsGroupsConnection | UnifiedQueryError;
|