@forge/cli-shared 6.6.2-next.0 → 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 +7 -0
- package/out/graphql/graphql-types.d.ts +325 -20
- 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 +1 -1
|
@@ -3967,6 +3967,27 @@ export declare type CodeRepository = {
|
|
|
3967
3967
|
href?: Maybe<Scalars['URL']['output']>;
|
|
3968
3968
|
name: Scalars['String']['output'];
|
|
3969
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
|
+
};
|
|
3970
3991
|
export declare type CollabDraft = {
|
|
3971
3992
|
__typename?: 'CollabDraft';
|
|
3972
3993
|
document?: Maybe<Scalars['String']['output']>;
|
|
@@ -7639,6 +7660,7 @@ export declare type CompassScorecardAppliedToComponentsQueryFilter = {
|
|
|
7639
7660
|
score?: InputMaybe<CompassScorecardAppliedToComponentsThresholdFilter>;
|
|
7640
7661
|
scoreRanges?: InputMaybe<CompassScorecardAppliedToComponentsScoreRangeFilter>;
|
|
7641
7662
|
scorecardCriteria?: InputMaybe<Array<CompassScorecardAppliedToComponentsCriteriaFilter>>;
|
|
7663
|
+
scorecardStatus?: InputMaybe<CompassScorecardAppliedToComponentsStatusFilter>;
|
|
7642
7664
|
types?: InputMaybe<CompassScorecardAppliedToComponentsTypesFilter>;
|
|
7643
7665
|
};
|
|
7644
7666
|
export declare type CompassScorecardAppliedToComponentsQueryResult = CompassScorecardAppliedToComponentsConnection | QueryError;
|
|
@@ -7653,6 +7675,9 @@ export declare type CompassScorecardAppliedToComponentsScoreRange = {
|
|
|
7653
7675
|
export declare type CompassScorecardAppliedToComponentsScoreRangeFilter = {
|
|
7654
7676
|
in: Array<CompassScorecardAppliedToComponentsScoreRange>;
|
|
7655
7677
|
};
|
|
7678
|
+
export declare type CompassScorecardAppliedToComponentsStatusFilter = {
|
|
7679
|
+
statuses: Array<Scalars['ID']['input']>;
|
|
7680
|
+
};
|
|
7656
7681
|
export declare type CompassScorecardAppliedToComponentsThresholdFilter = {
|
|
7657
7682
|
lt: Scalars['Int']['input'];
|
|
7658
7683
|
};
|
|
@@ -8879,6 +8904,7 @@ export declare type ConfluenceBlogPost = {
|
|
|
8879
8904
|
author?: Maybe<ConfluenceUserInfo>;
|
|
8880
8905
|
blogPostId: Scalars['ID']['output'];
|
|
8881
8906
|
body?: Maybe<ConfluenceBodies>;
|
|
8907
|
+
commentCountSummary?: Maybe<ConfluenceCommentCountSummary>;
|
|
8882
8908
|
comments?: Maybe<Array<Maybe<ConfluenceComment>>>;
|
|
8883
8909
|
createdAt?: Maybe<Scalars['String']['output']>;
|
|
8884
8910
|
id: Scalars['ID']['output'];
|
|
@@ -8904,6 +8930,7 @@ export declare type ConfluenceBlogPostPropertiesArgs = {
|
|
|
8904
8930
|
export declare type ConfluenceBlogPostLinks = {
|
|
8905
8931
|
__typename?: 'ConfluenceBlogPostLinks';
|
|
8906
8932
|
base?: Maybe<Scalars['String']['output']>;
|
|
8933
|
+
editUi?: Maybe<Scalars['String']['output']>;
|
|
8907
8934
|
webUi?: Maybe<Scalars['String']['output']>;
|
|
8908
8935
|
};
|
|
8909
8936
|
export declare type ConfluenceBlogPostProperty = {
|
|
@@ -9111,6 +9138,14 @@ export declare type ConfluenceContentState = {
|
|
|
9111
9138
|
id?: Maybe<Scalars['ID']['output']>;
|
|
9112
9139
|
name?: Maybe<Scalars['String']['output']>;
|
|
9113
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
|
+
}
|
|
9114
9149
|
export declare type ConfluenceContentTitleEmoji = {
|
|
9115
9150
|
__typename?: 'ConfluenceContentTitleEmoji';
|
|
9116
9151
|
id?: Maybe<Scalars['String']['output']>;
|
|
@@ -9248,13 +9283,16 @@ export declare type ConfluenceDatabase = {
|
|
|
9248
9283
|
__typename?: 'ConfluenceDatabase';
|
|
9249
9284
|
allAncestors?: Maybe<Array<Maybe<ConfluenceAncestor>>>;
|
|
9250
9285
|
author?: Maybe<ConfluenceUserInfo>;
|
|
9286
|
+
commentCountSummary?: Maybe<ConfluenceCommentCountSummary>;
|
|
9251
9287
|
databaseId: Scalars['ID']['output'];
|
|
9252
9288
|
id: Scalars['ID']['output'];
|
|
9253
9289
|
latestVersion?: Maybe<ConfluenceContentVersion>;
|
|
9254
9290
|
links?: Maybe<ConfluenceDatabaseLinks>;
|
|
9255
9291
|
owner?: Maybe<ConfluenceUserInfo>;
|
|
9256
9292
|
space?: Maybe<ConfluenceSpace>;
|
|
9293
|
+
status?: Maybe<ConfluenceContentStatus>;
|
|
9257
9294
|
title?: Maybe<Scalars['String']['output']>;
|
|
9295
|
+
type?: Maybe<ConfluenceContentType>;
|
|
9258
9296
|
};
|
|
9259
9297
|
export declare type ConfluenceDatabaseLinks = {
|
|
9260
9298
|
__typename?: 'ConfluenceDatabaseLinks';
|
|
@@ -9376,6 +9414,7 @@ export declare type ConfluenceEmbed = {
|
|
|
9376
9414
|
__typename?: 'ConfluenceEmbed';
|
|
9377
9415
|
allAncestors?: Maybe<Array<Maybe<ConfluenceAncestor>>>;
|
|
9378
9416
|
author?: Maybe<ConfluenceUserInfo>;
|
|
9417
|
+
commentCountSummary?: Maybe<ConfluenceCommentCountSummary>;
|
|
9379
9418
|
embedId: Scalars['ID']['output'];
|
|
9380
9419
|
id: Scalars['ID']['output'];
|
|
9381
9420
|
latestVersion?: Maybe<ConfluenceContentVersion>;
|
|
@@ -9383,7 +9422,9 @@ export declare type ConfluenceEmbed = {
|
|
|
9383
9422
|
metadata?: Maybe<ConfluenceContentMetadata>;
|
|
9384
9423
|
owner?: Maybe<ConfluenceUserInfo>;
|
|
9385
9424
|
space?: Maybe<ConfluenceSpace>;
|
|
9425
|
+
status?: Maybe<ConfluenceContentStatus>;
|
|
9386
9426
|
title?: Maybe<Scalars['String']['output']>;
|
|
9427
|
+
type?: Maybe<ConfluenceContentType>;
|
|
9387
9428
|
};
|
|
9388
9429
|
export declare type ConfluenceEmbedLinks = {
|
|
9389
9430
|
__typename?: 'ConfluenceEmbedLinks';
|
|
@@ -9406,7 +9447,9 @@ export declare type ConfluenceFolder = {
|
|
|
9406
9447
|
metadata?: Maybe<ConfluenceContentMetadata>;
|
|
9407
9448
|
owner?: Maybe<ConfluenceUserInfo>;
|
|
9408
9449
|
space?: Maybe<ConfluenceSpace>;
|
|
9450
|
+
status?: Maybe<ConfluenceContentStatus>;
|
|
9409
9451
|
title?: Maybe<Scalars['String']['output']>;
|
|
9452
|
+
type?: Maybe<ConfluenceContentType>;
|
|
9410
9453
|
};
|
|
9411
9454
|
export declare type ConfluenceFolderLinks = {
|
|
9412
9455
|
__typename?: 'ConfluenceFolderLinks';
|
|
@@ -15344,6 +15387,7 @@ export declare type ConfluencePageInfo = {
|
|
|
15344
15387
|
export declare type ConfluencePageLinks = {
|
|
15345
15388
|
__typename?: 'ConfluencePageLinks';
|
|
15346
15389
|
base?: Maybe<Scalars['String']['output']>;
|
|
15390
|
+
editUi?: Maybe<Scalars['String']['output']>;
|
|
15347
15391
|
webUi?: Maybe<Scalars['String']['output']>;
|
|
15348
15392
|
};
|
|
15349
15393
|
export declare type ConfluencePageProperty = {
|
|
@@ -15641,6 +15685,7 @@ export declare type ConfluenceSearchResponseEdge = {
|
|
|
15641
15685
|
};
|
|
15642
15686
|
export declare type ConfluenceSpace = {
|
|
15643
15687
|
__typename?: 'ConfluenceSpace';
|
|
15688
|
+
alias?: Maybe<Scalars['String']['output']>;
|
|
15644
15689
|
createdBy?: Maybe<ConfluenceUserInfo>;
|
|
15645
15690
|
createdDate?: Maybe<Scalars['String']['output']>;
|
|
15646
15691
|
description?: Maybe<ConfluenceSpaceDescription>;
|
|
@@ -16511,12 +16556,14 @@ export declare type ConfluenceWhiteboard = {
|
|
|
16511
16556
|
allAncestors?: Maybe<Array<Maybe<ConfluenceAncestor>>>;
|
|
16512
16557
|
author?: Maybe<ConfluenceUserInfo>;
|
|
16513
16558
|
body?: Maybe<ConfluenceWhiteboardBody>;
|
|
16559
|
+
commentCountSummary?: Maybe<ConfluenceCommentCountSummary>;
|
|
16514
16560
|
comments?: Maybe<Array<Maybe<ConfluenceComment>>>;
|
|
16515
16561
|
id: Scalars['ID']['output'];
|
|
16516
16562
|
latestVersion?: Maybe<ConfluenceContentVersion>;
|
|
16517
16563
|
links?: Maybe<ConfluenceWhiteboardLinks>;
|
|
16518
16564
|
owner?: Maybe<ConfluenceUserInfo>;
|
|
16519
16565
|
space?: Maybe<ConfluenceSpace>;
|
|
16566
|
+
status?: Maybe<ConfluenceContentStatus>;
|
|
16520
16567
|
title?: Maybe<Scalars['String']['output']>;
|
|
16521
16568
|
type?: Maybe<ConfluenceContentType>;
|
|
16522
16569
|
whiteboardId: Scalars['ID']['output'];
|
|
@@ -21386,6 +21433,7 @@ export declare type DevAiGenericMutationErrorExtension = MutationErrorExtension
|
|
|
21386
21433
|
export declare type DevAiInvokeAutodevRovoAgentInBulkIssueResult = {
|
|
21387
21434
|
__typename?: 'DevAiInvokeAutodevRovoAgentInBulkIssueResult';
|
|
21388
21435
|
conversationId?: Maybe<Scalars['ID']['output']>;
|
|
21436
|
+
issue?: Maybe<JiraIssue>;
|
|
21389
21437
|
issueId?: Maybe<Scalars['ID']['output']>;
|
|
21390
21438
|
};
|
|
21391
21439
|
export declare type DevAiInvokeAutodevRovoAgentInBulkPayload = Payload & {
|
|
@@ -31978,6 +32026,7 @@ export declare type GraphStoreIssueRecursiveAssociatedPrRelationshipArgs = {
|
|
|
31978
32026
|
export declare type GraphStoreIssueToWhiteboardArgs = {
|
|
31979
32027
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
31980
32028
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
32029
|
+
filter?: InputMaybe<GraphStoreIssueToWhiteboardFilterInput>;
|
|
31981
32030
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
31982
32031
|
id: Scalars['ID']['input'];
|
|
31983
32032
|
sort?: InputMaybe<GraphStoreIssueToWhiteboardSortInput>;
|
|
@@ -31985,17 +32034,20 @@ export declare type GraphStoreIssueToWhiteboardArgs = {
|
|
|
31985
32034
|
export declare type GraphStoreIssueToWhiteboardInverseArgs = {
|
|
31986
32035
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
31987
32036
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
32037
|
+
filter?: InputMaybe<GraphStoreIssueToWhiteboardFilterInput>;
|
|
31988
32038
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
31989
32039
|
id: Scalars['ID']['input'];
|
|
31990
32040
|
sort?: InputMaybe<GraphStoreIssueToWhiteboardSortInput>;
|
|
31991
32041
|
};
|
|
31992
32042
|
export declare type GraphStoreIssueToWhiteboardInverseRelationshipArgs = {
|
|
31993
32043
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
32044
|
+
filter?: InputMaybe<GraphStoreIssueToWhiteboardFilterInput>;
|
|
31994
32045
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
31995
32046
|
id: Scalars['ID']['input'];
|
|
31996
32047
|
};
|
|
31997
32048
|
export declare type GraphStoreIssueToWhiteboardRelationshipArgs = {
|
|
31998
32049
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
32050
|
+
filter?: InputMaybe<GraphStoreIssueToWhiteboardFilterInput>;
|
|
31999
32051
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
32000
32052
|
id: Scalars['ID']['input'];
|
|
32001
32053
|
};
|
|
@@ -32570,6 +32622,7 @@ export declare type GraphStoreProjectAssociatedFeatureFlagRelationshipArgs = {
|
|
|
32570
32622
|
export declare type GraphStoreProjectAssociatedIncidentArgs = {
|
|
32571
32623
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
32572
32624
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
32625
|
+
filter?: InputMaybe<GraphStoreProjectAssociatedIncidentFilterInput>;
|
|
32573
32626
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
32574
32627
|
id: Scalars['ID']['input'];
|
|
32575
32628
|
sort?: InputMaybe<GraphStoreProjectAssociatedIncidentSortInput>;
|
|
@@ -32577,17 +32630,20 @@ export declare type GraphStoreProjectAssociatedIncidentArgs = {
|
|
|
32577
32630
|
export declare type GraphStoreProjectAssociatedIncidentInverseArgs = {
|
|
32578
32631
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
32579
32632
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
32633
|
+
filter?: InputMaybe<GraphStoreProjectAssociatedIncidentFilterInput>;
|
|
32580
32634
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
32581
32635
|
id: Scalars['ID']['input'];
|
|
32582
32636
|
sort?: InputMaybe<GraphStoreProjectAssociatedIncidentSortInput>;
|
|
32583
32637
|
};
|
|
32584
32638
|
export declare type GraphStoreProjectAssociatedIncidentInverseRelationshipArgs = {
|
|
32585
32639
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
32640
|
+
filter?: InputMaybe<GraphStoreProjectAssociatedIncidentFilterInput>;
|
|
32586
32641
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
32587
32642
|
id: Scalars['ID']['input'];
|
|
32588
32643
|
};
|
|
32589
32644
|
export declare type GraphStoreProjectAssociatedIncidentRelationshipArgs = {
|
|
32590
32645
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
32646
|
+
filter?: InputMaybe<GraphStoreProjectAssociatedIncidentFilterInput>;
|
|
32591
32647
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
32592
32648
|
id: Scalars['ID']['input'];
|
|
32593
32649
|
};
|
|
@@ -32678,6 +32734,7 @@ export declare type GraphStoreProjectAssociatedRepoRelationshipArgs = {
|
|
|
32678
32734
|
export declare type GraphStoreProjectAssociatedServiceArgs = {
|
|
32679
32735
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
32680
32736
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
32737
|
+
filter?: InputMaybe<GraphStoreProjectAssociatedServiceFilterInput>;
|
|
32681
32738
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
32682
32739
|
id: Scalars['ID']['input'];
|
|
32683
32740
|
sort?: InputMaybe<GraphStoreProjectAssociatedServiceSortInput>;
|
|
@@ -32685,17 +32742,20 @@ export declare type GraphStoreProjectAssociatedServiceArgs = {
|
|
|
32685
32742
|
export declare type GraphStoreProjectAssociatedServiceInverseArgs = {
|
|
32686
32743
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
32687
32744
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
32745
|
+
filter?: InputMaybe<GraphStoreProjectAssociatedServiceFilterInput>;
|
|
32688
32746
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
32689
32747
|
id: Scalars['ID']['input'];
|
|
32690
32748
|
sort?: InputMaybe<GraphStoreProjectAssociatedServiceSortInput>;
|
|
32691
32749
|
};
|
|
32692
32750
|
export declare type GraphStoreProjectAssociatedServiceInverseRelationshipArgs = {
|
|
32693
32751
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
32752
|
+
filter?: InputMaybe<GraphStoreProjectAssociatedServiceFilterInput>;
|
|
32694
32753
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
32695
32754
|
id: Scalars['ID']['input'];
|
|
32696
32755
|
};
|
|
32697
32756
|
export declare type GraphStoreProjectAssociatedServiceRelationshipArgs = {
|
|
32698
32757
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
32758
|
+
filter?: InputMaybe<GraphStoreProjectAssociatedServiceFilterInput>;
|
|
32699
32759
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
32700
32760
|
id: Scalars['ID']['input'];
|
|
32701
32761
|
};
|
|
@@ -33578,6 +33638,7 @@ export declare type GraphStoreUserAssignedPirInverseArgs = {
|
|
|
33578
33638
|
export declare type GraphStoreUserAttendedCalendarEventArgs = {
|
|
33579
33639
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
33580
33640
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
33641
|
+
filter?: InputMaybe<GraphStoreUserAttendedCalendarEventFilterInput>;
|
|
33581
33642
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
33582
33643
|
id: Scalars['ID']['input'];
|
|
33583
33644
|
sort?: InputMaybe<GraphStoreUserAttendedCalendarEventSortInput>;
|
|
@@ -33585,6 +33646,7 @@ export declare type GraphStoreUserAttendedCalendarEventArgs = {
|
|
|
33585
33646
|
export declare type GraphStoreUserAttendedCalendarEventInverseArgs = {
|
|
33586
33647
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
33587
33648
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
33649
|
+
filter?: InputMaybe<GraphStoreUserAttendedCalendarEventFilterInput>;
|
|
33588
33650
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
33589
33651
|
id: Scalars['ID']['input'];
|
|
33590
33652
|
sort?: InputMaybe<GraphStoreUserAttendedCalendarEventSortInput>;
|
|
@@ -33734,6 +33796,7 @@ export declare type GraphStoreUserCreatedBranchInverseArgs = {
|
|
|
33734
33796
|
export declare type GraphStoreUserCreatedCalendarEventArgs = {
|
|
33735
33797
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
33736
33798
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
33799
|
+
filter?: InputMaybe<GraphStoreUserCreatedCalendarEventFilterInput>;
|
|
33737
33800
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
33738
33801
|
id: Scalars['ID']['input'];
|
|
33739
33802
|
sort?: InputMaybe<GraphStoreUserCreatedCalendarEventSortInput>;
|
|
@@ -33741,6 +33804,7 @@ export declare type GraphStoreUserCreatedCalendarEventArgs = {
|
|
|
33741
33804
|
export declare type GraphStoreUserCreatedCalendarEventInverseArgs = {
|
|
33742
33805
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
33743
33806
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
33807
|
+
filter?: InputMaybe<GraphStoreUserCreatedCalendarEventFilterInput>;
|
|
33744
33808
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
33745
33809
|
id: Scalars['ID']['input'];
|
|
33746
33810
|
sort?: InputMaybe<GraphStoreUserCreatedCalendarEventSortInput>;
|
|
@@ -34254,6 +34318,7 @@ export declare type GraphStoreUserOwnedRepositoryInverseArgs = {
|
|
|
34254
34318
|
export declare type GraphStoreUserOwnsComponentArgs = {
|
|
34255
34319
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
34256
34320
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
34321
|
+
filter?: InputMaybe<GraphStoreUserOwnsComponentFilterInput>;
|
|
34257
34322
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
34258
34323
|
id: Scalars['ID']['input'];
|
|
34259
34324
|
sort?: InputMaybe<GraphStoreUserOwnsComponentSortInput>;
|
|
@@ -34261,6 +34326,7 @@ export declare type GraphStoreUserOwnsComponentArgs = {
|
|
|
34261
34326
|
export declare type GraphStoreUserOwnsComponentInverseArgs = {
|
|
34262
34327
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
34263
34328
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
34329
|
+
filter?: InputMaybe<GraphStoreUserOwnsComponentFilterInput>;
|
|
34264
34330
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
34265
34331
|
id: Scalars['ID']['input'];
|
|
34266
34332
|
sort?: InputMaybe<GraphStoreUserOwnsComponentSortInput>;
|
|
@@ -35066,8 +35132,8 @@ export declare type GraphStoreAtlasGoalHasUpdateUpdateTypeFilterInput = {
|
|
|
35066
35132
|
is?: InputMaybe<Array<GraphStoreAtlasGoalHasUpdateUpdateType>>;
|
|
35067
35133
|
isNot?: InputMaybe<Array<GraphStoreAtlasGoalHasUpdateUpdateType>>;
|
|
35068
35134
|
};
|
|
35069
|
-
export declare type GraphStoreAtlasHomeFeedQueryToMetadataNodeUnion = ConfluencePage | JiraIssue | TeamV2 | TownsquareGoal | TownsquareProject;
|
|
35070
|
-
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;
|
|
35071
35137
|
export declare type GraphStoreAtlasHomeQueryConnection = {
|
|
35072
35138
|
__typename?: 'GraphStoreAtlasHomeQueryConnection';
|
|
35073
35139
|
nodes: Array<GraphStoreAtlasHomeQueryNode>;
|
|
@@ -35106,8 +35172,14 @@ export declare enum GraphStoreAtlasHomeSourcesEnum {
|
|
|
35106
35172
|
UserShouldFollowGoal = "USER_SHOULD_FOLLOW_GOAL",
|
|
35107
35173
|
UserShouldViewSharedPage = "USER_SHOULD_VIEW_SHARED_PAGE",
|
|
35108
35174
|
UserViewAssignedIssue = "USER_VIEW_ASSIGNED_ISSUE",
|
|
35175
|
+
UserViewNegativeGoal = "USER_VIEW_NEGATIVE_GOAL",
|
|
35176
|
+
UserViewNegativeProject = "USER_VIEW_NEGATIVE_PROJECT",
|
|
35109
35177
|
UserViewPageComments = "USER_VIEW_PAGE_COMMENTS",
|
|
35110
|
-
|
|
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"
|
|
35111
35183
|
}
|
|
35112
35184
|
export declare type GraphStoreAtlasProjectContributesToAtlasGoalSortInput = {
|
|
35113
35185
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
@@ -40389,6 +40461,16 @@ export declare type GraphStoreIssueRecursiveAssociatedPrSortInput = {
|
|
|
40389
40461
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
40390
40462
|
toAti?: InputMaybe<GraphStoreSortInput>;
|
|
40391
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
|
+
};
|
|
40392
40474
|
export declare type GraphStoreIssueToWhiteboardSortInput = {
|
|
40393
40475
|
createdAt?: InputMaybe<GraphStoreSortInput>;
|
|
40394
40476
|
fromAti?: InputMaybe<GraphStoreSortInput>;
|
|
@@ -40934,6 +41016,16 @@ export declare type GraphStoreProjectAssociatedFeatureFlagSortInput = {
|
|
|
40934
41016
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
40935
41017
|
toAti?: InputMaybe<GraphStoreSortInput>;
|
|
40936
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
|
+
};
|
|
40937
41029
|
export declare type GraphStoreProjectAssociatedIncidentSortInput = {
|
|
40938
41030
|
createdAt?: InputMaybe<GraphStoreSortInput>;
|
|
40939
41031
|
fromAti?: InputMaybe<GraphStoreSortInput>;
|
|
@@ -41041,6 +41133,16 @@ export declare type GraphStoreProjectAssociatedRepoSortInput = {
|
|
|
41041
41133
|
toAti?: InputMaybe<GraphStoreSortInput>;
|
|
41042
41134
|
to_providerAri?: InputMaybe<GraphStoreSortInput>;
|
|
41043
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
|
+
};
|
|
41044
41146
|
export declare type GraphStoreProjectAssociatedServiceSortInput = {
|
|
41045
41147
|
createdAt?: InputMaybe<GraphStoreSortInput>;
|
|
41046
41148
|
fromAti?: InputMaybe<GraphStoreSortInput>;
|
|
@@ -45279,10 +45381,12 @@ export declare type GraphStoreSimplifiedUserAssignedPirInverseEdge = {
|
|
|
45279
45381
|
};
|
|
45280
45382
|
export declare type GraphStoreSimplifiedUserAssignedPirInverseUnion = AppUser | AtlassianAccountUser | CustomerUser;
|
|
45281
45383
|
export declare type GraphStoreSimplifiedUserAssignedPirUnion = JiraIssue;
|
|
45282
|
-
export declare type GraphStoreSimplifiedUserAttendedCalendarEventConnection = HasPageInfo & {
|
|
45384
|
+
export declare type GraphStoreSimplifiedUserAttendedCalendarEventConnection = HasPageInfo & HasTotal & {
|
|
45283
45385
|
__typename?: 'GraphStoreSimplifiedUserAttendedCalendarEventConnection';
|
|
45284
45386
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserAttendedCalendarEventEdge>>>;
|
|
45387
|
+
isExactCount?: Maybe<Scalars['Boolean']['output']>;
|
|
45285
45388
|
pageInfo: PageInfo;
|
|
45389
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
45286
45390
|
};
|
|
45287
45391
|
export declare type GraphStoreSimplifiedUserAttendedCalendarEventEdge = {
|
|
45288
45392
|
__typename?: 'GraphStoreSimplifiedUserAttendedCalendarEventEdge';
|
|
@@ -45292,10 +45396,12 @@ export declare type GraphStoreSimplifiedUserAttendedCalendarEventEdge = {
|
|
|
45292
45396
|
lastUpdated: Scalars['DateTime']['output'];
|
|
45293
45397
|
node?: Maybe<GraphStoreSimplifiedUserAttendedCalendarEventUnion>;
|
|
45294
45398
|
};
|
|
45295
|
-
export declare type GraphStoreSimplifiedUserAttendedCalendarEventInverseConnection = HasPageInfo & {
|
|
45399
|
+
export declare type GraphStoreSimplifiedUserAttendedCalendarEventInverseConnection = HasPageInfo & HasTotal & {
|
|
45296
45400
|
__typename?: 'GraphStoreSimplifiedUserAttendedCalendarEventInverseConnection';
|
|
45297
45401
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserAttendedCalendarEventInverseEdge>>>;
|
|
45402
|
+
isExactCount?: Maybe<Scalars['Boolean']['output']>;
|
|
45298
45403
|
pageInfo: PageInfo;
|
|
45404
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
45299
45405
|
};
|
|
45300
45406
|
export declare type GraphStoreSimplifiedUserAttendedCalendarEventInverseEdge = {
|
|
45301
45407
|
__typename?: 'GraphStoreSimplifiedUserAttendedCalendarEventInverseEdge';
|
|
@@ -45591,10 +45697,12 @@ export declare type GraphStoreSimplifiedUserCreatedBranchInverseEdge = {
|
|
|
45591
45697
|
};
|
|
45592
45698
|
export declare type GraphStoreSimplifiedUserCreatedBranchInverseUnion = AppUser | AtlassianAccountUser | CustomerUser | ThirdPartyUser;
|
|
45593
45699
|
export declare type GraphStoreSimplifiedUserCreatedBranchUnion = ExternalBranch;
|
|
45594
|
-
export declare type GraphStoreSimplifiedUserCreatedCalendarEventConnection = HasPageInfo & {
|
|
45700
|
+
export declare type GraphStoreSimplifiedUserCreatedCalendarEventConnection = HasPageInfo & HasTotal & {
|
|
45595
45701
|
__typename?: 'GraphStoreSimplifiedUserCreatedCalendarEventConnection';
|
|
45596
45702
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserCreatedCalendarEventEdge>>>;
|
|
45703
|
+
isExactCount?: Maybe<Scalars['Boolean']['output']>;
|
|
45597
45704
|
pageInfo: PageInfo;
|
|
45705
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
45598
45706
|
};
|
|
45599
45707
|
export declare type GraphStoreSimplifiedUserCreatedCalendarEventEdge = {
|
|
45600
45708
|
__typename?: 'GraphStoreSimplifiedUserCreatedCalendarEventEdge';
|
|
@@ -45604,10 +45712,12 @@ export declare type GraphStoreSimplifiedUserCreatedCalendarEventEdge = {
|
|
|
45604
45712
|
lastUpdated: Scalars['DateTime']['output'];
|
|
45605
45713
|
node?: Maybe<GraphStoreSimplifiedUserCreatedCalendarEventUnion>;
|
|
45606
45714
|
};
|
|
45607
|
-
export declare type GraphStoreSimplifiedUserCreatedCalendarEventInverseConnection = HasPageInfo & {
|
|
45715
|
+
export declare type GraphStoreSimplifiedUserCreatedCalendarEventInverseConnection = HasPageInfo & HasTotal & {
|
|
45608
45716
|
__typename?: 'GraphStoreSimplifiedUserCreatedCalendarEventInverseConnection';
|
|
45609
45717
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserCreatedCalendarEventInverseEdge>>>;
|
|
45718
|
+
isExactCount?: Maybe<Scalars['Boolean']['output']>;
|
|
45610
45719
|
pageInfo: PageInfo;
|
|
45720
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
45611
45721
|
};
|
|
45612
45722
|
export declare type GraphStoreSimplifiedUserCreatedCalendarEventInverseEdge = {
|
|
45613
45723
|
__typename?: 'GraphStoreSimplifiedUserCreatedCalendarEventInverseEdge';
|
|
@@ -48161,8 +48271,21 @@ export declare type GraphStoreUserAssignedIssueSortInput = {
|
|
|
48161
48271
|
export declare type GraphStoreUserAssignedPirSortInput = {
|
|
48162
48272
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
48163
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
|
+
};
|
|
48164
48284
|
export declare type GraphStoreUserAttendedCalendarEventSortInput = {
|
|
48285
|
+
createdAt?: InputMaybe<GraphStoreSortInput>;
|
|
48286
|
+
fromAti?: InputMaybe<GraphStoreSortInput>;
|
|
48165
48287
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
48288
|
+
toAti?: InputMaybe<GraphStoreSortInput>;
|
|
48166
48289
|
};
|
|
48167
48290
|
export declare type GraphStoreUserAuthoredCommitSortInput = {
|
|
48168
48291
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
@@ -48215,8 +48338,21 @@ export declare type GraphStoreUserContributedConfluenceWhiteboardSortInput = {
|
|
|
48215
48338
|
export declare type GraphStoreUserCreatedBranchSortInput = {
|
|
48216
48339
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
48217
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
|
+
};
|
|
48218
48351
|
export declare type GraphStoreUserCreatedCalendarEventSortInput = {
|
|
48352
|
+
createdAt?: InputMaybe<GraphStoreSortInput>;
|
|
48353
|
+
fromAti?: InputMaybe<GraphStoreSortInput>;
|
|
48219
48354
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
48355
|
+
toAti?: InputMaybe<GraphStoreSortInput>;
|
|
48220
48356
|
};
|
|
48221
48357
|
export declare type GraphStoreUserCreatedConfluenceBlogpostSortInput = {
|
|
48222
48358
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
@@ -48350,6 +48486,16 @@ export declare type GraphStoreUserOwnedRemoteLinkSortInput = {
|
|
|
48350
48486
|
export declare type GraphStoreUserOwnedRepositorySortInput = {
|
|
48351
48487
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
48352
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
|
+
};
|
|
48353
48499
|
export declare type GraphStoreUserOwnsComponentSortInput = {
|
|
48354
48500
|
createdAt?: InputMaybe<GraphStoreSortInput>;
|
|
48355
48501
|
fromAti?: InputMaybe<GraphStoreSortInput>;
|
|
@@ -54880,6 +55026,11 @@ export declare type JiraDeleteIssueLinkPayload = Payload & {
|
|
|
54880
55026
|
issueLinkId?: Maybe<Scalars['ID']['output']>;
|
|
54881
55027
|
success: Scalars['Boolean']['output'];
|
|
54882
55028
|
};
|
|
55029
|
+
export declare type JiraDeleteJourneyItemInput = {
|
|
55030
|
+
itemId: Scalars['ID']['input'];
|
|
55031
|
+
journeyId: Scalars['ID']['input'];
|
|
55032
|
+
journeyVersion: Scalars['Long']['input'];
|
|
55033
|
+
};
|
|
54883
55034
|
export declare type JiraDeleteNavigationItemInput = {
|
|
54884
55035
|
id: Scalars['ID']['input'];
|
|
54885
55036
|
};
|
|
@@ -58263,6 +58414,10 @@ export declare enum JiraJourneyParentIssueType {
|
|
|
58263
58414
|
Request = "REQUEST"
|
|
58264
58415
|
}
|
|
58265
58416
|
export declare type JiraJourneyParentIssueValueType = JiraServiceManagementRequestType;
|
|
58417
|
+
export declare type JiraJourneySettings = {
|
|
58418
|
+
__typename?: 'JiraJourneySettings';
|
|
58419
|
+
maxJourneyItems?: Maybe<Scalars['Long']['output']>;
|
|
58420
|
+
};
|
|
58266
58421
|
export declare enum JiraJourneyStatus {
|
|
58267
58422
|
Archived = "ARCHIVED",
|
|
58268
58423
|
Disabled = "DISABLED",
|
|
@@ -59479,6 +59634,7 @@ export declare type JiraMutation = {
|
|
|
59479
59634
|
deleteIssueLink?: Maybe<JiraDeleteIssueLinkPayload>;
|
|
59480
59635
|
deleteIssueNavigatorJQLHistory?: Maybe<JiraIssueNavigatorJqlHistoryDeletePayload>;
|
|
59481
59636
|
deleteJiraActivityConfiguration?: Maybe<JiraUpdateJourneyConfigurationPayload>;
|
|
59637
|
+
deleteJiraJourneyItem?: Maybe<JiraUpdateJourneyConfigurationPayload>;
|
|
59482
59638
|
deleteJiraVersionApprover?: Maybe<JiraVersionDeleteApproverPayload>;
|
|
59483
59639
|
deleteJiraVersionWithNoIssues?: Maybe<JiraUpdateVersionPayload>;
|
|
59484
59640
|
deleteJwmOverview?: Maybe<JiraWorkManagementGiraDeleteOverviewPayload>;
|
|
@@ -59569,6 +59725,7 @@ export declare type JiraMutation = {
|
|
|
59569
59725
|
updateJiraActivityConfiguration?: Maybe<JiraUpdateJourneyConfigurationPayload>;
|
|
59570
59726
|
updateJiraJourneyActivityConfiguration?: Maybe<JiraUpdateJourneyConfigurationPayload>;
|
|
59571
59727
|
updateJiraJourneyConfiguration?: Maybe<JiraUpdateJourneyConfigurationPayload>;
|
|
59728
|
+
updateJiraJourneyItem?: Maybe<JiraUpdateJourneyConfigurationPayload>;
|
|
59572
59729
|
updateJiraJourneyName?: Maybe<JiraUpdateJourneyConfigurationPayload>;
|
|
59573
59730
|
updateJiraJourneyParentIssueConfiguration?: Maybe<JiraUpdateJourneyConfigurationPayload>;
|
|
59574
59731
|
updateJiraJourneyTriggerConfiguration?: Maybe<JiraUpdateJourneyConfigurationPayload>;
|
|
@@ -59777,6 +59934,10 @@ export declare type JiraMutationDeleteJiraActivityConfigurationArgs = {
|
|
|
59777
59934
|
cloudId: Scalars['ID']['input'];
|
|
59778
59935
|
input: JiraDeleteActivityConfigurationInput;
|
|
59779
59936
|
};
|
|
59937
|
+
export declare type JiraMutationDeleteJiraJourneyItemArgs = {
|
|
59938
|
+
cloudId: Scalars['ID']['input'];
|
|
59939
|
+
input: JiraDeleteJourneyItemInput;
|
|
59940
|
+
};
|
|
59780
59941
|
export declare type JiraMutationDeleteJiraVersionApproverArgs = {
|
|
59781
59942
|
id: Scalars['ID']['input'];
|
|
59782
59943
|
};
|
|
@@ -60078,6 +60239,10 @@ export declare type JiraMutationUpdateJiraJourneyConfigurationArgs = {
|
|
|
60078
60239
|
cloudId: Scalars['ID']['input'];
|
|
60079
60240
|
input: JiraUpdateJourneyConfigurationInput;
|
|
60080
60241
|
};
|
|
60242
|
+
export declare type JiraMutationUpdateJiraJourneyItemArgs = {
|
|
60243
|
+
cloudId: Scalars['ID']['input'];
|
|
60244
|
+
input: JiraUpdateJourneyItemInput;
|
|
60245
|
+
};
|
|
60081
60246
|
export declare type JiraMutationUpdateJiraJourneyNameArgs = {
|
|
60082
60247
|
cloudId: Scalars['ID']['input'];
|
|
60083
60248
|
input: JiraUpdateJourneyNameInput;
|
|
@@ -62307,6 +62472,7 @@ export declare type JiraQuery = {
|
|
|
62307
62472
|
jiraIssueSearchView?: Maybe<JiraView>;
|
|
62308
62473
|
jiraJourneyConfiguration?: Maybe<JiraJourneyConfiguration>;
|
|
62309
62474
|
jiraJourneyItem?: Maybe<JiraJourneyItem>;
|
|
62475
|
+
jiraJourneySettings?: Maybe<JiraJourneySettings>;
|
|
62310
62476
|
jiraProject?: Maybe<JiraProject>;
|
|
62311
62477
|
jiraProjectByKey?: Maybe<JiraProject>;
|
|
62312
62478
|
jiraProjects?: Maybe<Array<Maybe<JiraProject>>>;
|
|
@@ -62869,6 +63035,9 @@ export declare type JiraQueryJiraJourneyItemArgs = {
|
|
|
62869
63035
|
id: Scalars['ID']['input'];
|
|
62870
63036
|
journeyId: Scalars['ID']['input'];
|
|
62871
63037
|
};
|
|
63038
|
+
export declare type JiraQueryJiraJourneySettingsArgs = {
|
|
63039
|
+
cloudId: Scalars['ID']['input'];
|
|
63040
|
+
};
|
|
62872
63041
|
export declare type JiraQueryJiraProjectArgs = {
|
|
62873
63042
|
id: Scalars['ID']['input'];
|
|
62874
63043
|
};
|
|
@@ -66861,6 +67030,12 @@ export declare type JiraUpdateJourneyConfigurationPayload = Payload & {
|
|
|
66861
67030
|
jiraJourneyConfigurationEdge?: Maybe<JiraJourneyConfigurationEdge>;
|
|
66862
67031
|
success: Scalars['Boolean']['output'];
|
|
66863
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
|
+
};
|
|
66864
67039
|
export declare type JiraUpdateJourneyNameInput = {
|
|
66865
67040
|
id: Scalars['ID']['input'];
|
|
66866
67041
|
name?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -72770,6 +72945,7 @@ export declare type MercuryChangeProposal = Node & {
|
|
|
72770
72945
|
description?: Maybe<Scalars['String']['output']>;
|
|
72771
72946
|
id: Scalars['ID']['output'];
|
|
72772
72947
|
name: Scalars['String']['output'];
|
|
72948
|
+
owner?: Maybe<User>;
|
|
72773
72949
|
status?: Maybe<MercuryChangeProposalStatus>;
|
|
72774
72950
|
statusTransitions?: Maybe<MercuryChangeProposalStatusTransitions>;
|
|
72775
72951
|
strategicEvent?: Maybe<MercuryStrategicEvent>;
|
|
@@ -72794,7 +72970,7 @@ export declare enum MercuryChangeProposalSortField {
|
|
|
72794
72970
|
}
|
|
72795
72971
|
export declare type MercuryChangeProposalStatus = {
|
|
72796
72972
|
__typename?: 'MercuryChangeProposalStatus';
|
|
72797
|
-
color:
|
|
72973
|
+
color: MercuryStatusColor;
|
|
72798
72974
|
displayName: Scalars['String']['output'];
|
|
72799
72975
|
id: Scalars['ID']['output'];
|
|
72800
72976
|
key: Scalars['String']['output'];
|
|
@@ -72831,8 +73007,10 @@ export declare type MercuryCommentEdge = {
|
|
|
72831
73007
|
};
|
|
72832
73008
|
export declare type MercuryCreateChangeProposalInput = {
|
|
72833
73009
|
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
73010
|
+
description?: InputMaybe<Scalars['String']['input']>;
|
|
72834
73011
|
name: Scalars['String']['input'];
|
|
72835
|
-
|
|
73012
|
+
owner?: InputMaybe<Scalars['String']['input']>;
|
|
73013
|
+
strategicEventId: Scalars['ID']['input'];
|
|
72836
73014
|
};
|
|
72837
73015
|
export declare type MercuryCreateChangeProposalPayload = Payload & {
|
|
72838
73016
|
__typename?: 'MercuryCreateChangeProposalPayload';
|
|
@@ -72891,7 +73069,9 @@ export declare type MercuryCreatePortfolioPayload = Payload & {
|
|
|
72891
73069
|
};
|
|
72892
73070
|
export declare type MercuryCreateStrategicEventInput = {
|
|
72893
73071
|
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
73072
|
+
description?: InputMaybe<Scalars['String']['input']>;
|
|
72894
73073
|
name: Scalars['String']['input'];
|
|
73074
|
+
owner?: InputMaybe<Scalars['ID']['input']>;
|
|
72895
73075
|
targetDate: Scalars['String']['input'];
|
|
72896
73076
|
};
|
|
72897
73077
|
export declare type MercuryCreateStrategicEventPayload = Payload & {
|
|
@@ -73929,8 +74109,16 @@ export declare type MercurySpendAggregation = {
|
|
|
73929
74109
|
aggregatedSpend?: Maybe<Scalars['BigDecimal']['output']>;
|
|
73930
74110
|
totalAssignedSpend?: Maybe<Scalars['BigDecimal']['output']>;
|
|
73931
74111
|
};
|
|
74112
|
+
export declare enum MercuryStatusColor {
|
|
74113
|
+
Blue = "BLUE",
|
|
74114
|
+
Gray = "GRAY",
|
|
74115
|
+
Green = "GREEN",
|
|
74116
|
+
Red = "RED",
|
|
74117
|
+
Yellow = "YELLOW"
|
|
74118
|
+
}
|
|
73932
74119
|
export declare type MercuryStrategicEvent = Node & {
|
|
73933
74120
|
__typename?: 'MercuryStrategicEvent';
|
|
74121
|
+
description?: Maybe<Scalars['String']['output']>;
|
|
73934
74122
|
id: Scalars['ID']['output'];
|
|
73935
74123
|
name: Scalars['String']['output'];
|
|
73936
74124
|
owner?: Maybe<User>;
|
|
@@ -73960,7 +74148,7 @@ export declare enum MercuryStrategicEventSortField {
|
|
|
73960
74148
|
}
|
|
73961
74149
|
export declare type MercuryStrategicEventStatus = {
|
|
73962
74150
|
__typename?: 'MercuryStrategicEventStatus';
|
|
73963
|
-
color:
|
|
74151
|
+
color: MercuryStatusColor;
|
|
73964
74152
|
displayName: Scalars['String']['output'];
|
|
73965
74153
|
id: Scalars['ID']['output'];
|
|
73966
74154
|
key: Scalars['String']['output'];
|
|
@@ -73979,6 +74167,15 @@ export declare type MercuryStrategicEventsMutationApi = {
|
|
|
73979
74167
|
__typename?: 'MercuryStrategicEventsMutationApi';
|
|
73980
74168
|
createChangeProposal?: Maybe<MercuryCreateChangeProposalPayload>;
|
|
73981
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>;
|
|
73982
74179
|
};
|
|
73983
74180
|
export declare type MercuryStrategicEventsMutationApiCreateChangeProposalArgs = {
|
|
73984
74181
|
input: MercuryCreateChangeProposalInput;
|
|
@@ -73986,6 +74183,33 @@ export declare type MercuryStrategicEventsMutationApiCreateChangeProposalArgs =
|
|
|
73986
74183
|
export declare type MercuryStrategicEventsMutationApiCreateStrategicEventArgs = {
|
|
73987
74184
|
input: MercuryCreateStrategicEventInput;
|
|
73988
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
|
+
};
|
|
73989
74213
|
export declare type MercuryStrategicEventsQueryApi = {
|
|
73990
74214
|
__typename?: 'MercuryStrategicEventsQueryApi';
|
|
73991
74215
|
changeProposal?: Maybe<MercuryChangeProposal>;
|
|
@@ -73996,8 +74220,6 @@ export declare type MercuryStrategicEventsQueryApi = {
|
|
|
73996
74220
|
strategicEventStatuses: Array<MercuryStrategicEventStatus>;
|
|
73997
74221
|
strategicEvents?: Maybe<Array<Maybe<MercuryStrategicEvent>>>;
|
|
73998
74222
|
strategicEventsSearch?: Maybe<MercuryStrategicEventConnection>;
|
|
73999
|
-
transitionChangeProposalStatus?: Maybe<MercuryTransitionChangeProposalPayload>;
|
|
74000
|
-
transitionStrategicEventStatus?: Maybe<MercuryTransitionStrategicEventPayload>;
|
|
74001
74223
|
};
|
|
74002
74224
|
export declare type MercuryStrategicEventsQueryApiChangeProposalArgs = {
|
|
74003
74225
|
id: Scalars['ID']['input'];
|
|
@@ -74031,12 +74253,6 @@ export declare type MercuryStrategicEventsQueryApiStrategicEventsSearchArgs = {
|
|
|
74031
74253
|
q?: InputMaybe<Scalars['String']['input']>;
|
|
74032
74254
|
sort?: InputMaybe<Array<InputMaybe<MercuryStrategicEventSort>>>;
|
|
74033
74255
|
};
|
|
74034
|
-
export declare type MercuryStrategicEventsQueryApiTransitionChangeProposalStatusArgs = {
|
|
74035
|
-
input: MercuryTransitionChangeProposalStatusInput;
|
|
74036
|
-
};
|
|
74037
|
-
export declare type MercuryStrategicEventsQueryApiTransitionStrategicEventStatusArgs = {
|
|
74038
|
-
input: MercuryTransitionStrategicEventStatusInput;
|
|
74039
|
-
};
|
|
74040
74256
|
export declare type MercuryTargetDate = {
|
|
74041
74257
|
__typename?: 'MercuryTargetDate';
|
|
74042
74258
|
targetDate?: Maybe<Scalars['String']['output']>;
|
|
@@ -74131,6 +74347,27 @@ export declare type MercuryTransitionStrategicEventStatusInput = {
|
|
|
74131
74347
|
id: Scalars['ID']['input'];
|
|
74132
74348
|
statusTransitionId: Scalars['ID']['input'];
|
|
74133
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
|
+
};
|
|
74134
74371
|
export declare type MercuryUpdateCommentInput = {
|
|
74135
74372
|
cloudId: Scalars['ID']['input'];
|
|
74136
74373
|
commentText: Scalars['MercuryJSONString']['input'];
|
|
@@ -74193,6 +74430,32 @@ export declare type MercuryUpdatePortfolioPayload = Payload & {
|
|
|
74193
74430
|
success: Scalars['Boolean']['output'];
|
|
74194
74431
|
updatedPortfolio?: Maybe<MercuryPortfolio>;
|
|
74195
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
|
+
};
|
|
74196
74459
|
export declare type MercuryUpdatedField = {
|
|
74197
74460
|
__typename?: 'MercuryUpdatedField';
|
|
74198
74461
|
field?: Maybe<Scalars['String']['output']>;
|
|
@@ -79300,6 +79563,7 @@ export declare type Query = {
|
|
|
79300
79563
|
classificationLevel?: Maybe<ContentDataClassificationLevel>;
|
|
79301
79564
|
classificationLevels?: Maybe<Array<ContentDataClassificationLevel>>;
|
|
79302
79565
|
codeInJira?: Maybe<CodeInJira>;
|
|
79566
|
+
collabContext_workspaceIsConnectedToWorkspace?: Maybe<CollabContextWorkspaceConnection>;
|
|
79303
79567
|
collabDraft?: Maybe<CollabDraft>;
|
|
79304
79568
|
collabToken?: Maybe<CollabTokenResponse>;
|
|
79305
79569
|
comments?: Maybe<PaginatedCommentList>;
|
|
@@ -80149,6 +80413,9 @@ export declare type QueryClassificationLevelsArgs = {
|
|
|
80149
80413
|
export declare type QueryCodeInJiraArgs = {
|
|
80150
80414
|
cloudId: Scalars['ID']['input'];
|
|
80151
80415
|
};
|
|
80416
|
+
export declare type QueryCollabContext_WorkspaceIsConnectedToWorkspaceArgs = {
|
|
80417
|
+
id: Scalars['ID']['input'];
|
|
80418
|
+
};
|
|
80152
80419
|
export declare type QueryCollabDraftArgs = {
|
|
80153
80420
|
format?: CollabFormat;
|
|
80154
80421
|
hydrateAdf?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -91849,6 +92116,7 @@ export declare type TrelloMember = Node & {
|
|
|
91849
92116
|
nonPublicData?: Maybe<TrelloMemberNonPublicData>;
|
|
91850
92117
|
objectId: Scalars['ID']['output'];
|
|
91851
92118
|
planner?: Maybe<TrelloPlanner>;
|
|
92119
|
+
prefs?: Maybe<TrelloMemberPrefs>;
|
|
91852
92120
|
referrer?: Maybe<TrelloMember>;
|
|
91853
92121
|
url?: Maybe<Scalars['URL']['output']>;
|
|
91854
92122
|
user?: Maybe<User>;
|
|
@@ -91877,6 +92145,10 @@ export declare type TrelloMemberNonPublicData = {
|
|
|
91877
92145
|
fullName?: Maybe<Scalars['String']['output']>;
|
|
91878
92146
|
initials?: Maybe<Scalars['String']['output']>;
|
|
91879
92147
|
};
|
|
92148
|
+
export declare type TrelloMemberPrefs = {
|
|
92149
|
+
__typename?: 'TrelloMemberPrefs';
|
|
92150
|
+
colorBlind?: Maybe<Scalars['Boolean']['output']>;
|
|
92151
|
+
};
|
|
91880
92152
|
export declare type TrelloMemberUpdated = {
|
|
91881
92153
|
__typename?: 'TrelloMemberUpdated';
|
|
91882
92154
|
_deltas?: Maybe<Array<Scalars['String']['output']>>;
|
|
@@ -92238,7 +92510,6 @@ export declare type TrelloPlannerCalendarEventEdgeUpdated = {
|
|
|
92238
92510
|
};
|
|
92239
92511
|
export declare enum TrelloPlannerCalendarEventStatus {
|
|
92240
92512
|
Accepted = "ACCEPTED",
|
|
92241
|
-
Cancelled = "CANCELLED",
|
|
92242
92513
|
Declined = "DECLINED",
|
|
92243
92514
|
NeedsAction = "NEEDS_ACTION",
|
|
92244
92515
|
Tentative = "TENTATIVE"
|
|
@@ -92956,13 +93227,44 @@ export declare type UnifiedCacheInvalidationResult = {
|
|
|
92956
93227
|
errors?: Maybe<Array<UnifiedMutationError>>;
|
|
92957
93228
|
success: Scalars['Boolean']['output'];
|
|
92958
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
|
+
};
|
|
92959
93244
|
export declare type UnifiedCachingMutation = {
|
|
92960
93245
|
__typename?: 'UnifiedCachingMutation';
|
|
92961
93246
|
invalidateCache?: Maybe<UnifiedCacheInvalidationResult>;
|
|
93247
|
+
setCacheData?: Maybe<UnifiedCacheStatusPayload>;
|
|
92962
93248
|
};
|
|
92963
93249
|
export declare type UnifiedCachingMutationInvalidateCacheArgs = {
|
|
92964
|
-
|
|
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 = {
|
|
92965
93263
|
dataPoint: Scalars['String']['input'];
|
|
93264
|
+
id: Scalars['String']['input'];
|
|
93265
|
+
};
|
|
93266
|
+
export declare type UnifiedCachingQueryGetCachedDataArgs = {
|
|
93267
|
+
cacheKey: Scalars['String']['input'];
|
|
92966
93268
|
};
|
|
92967
93269
|
export declare type UnifiedCommunityMutation = {
|
|
92968
93270
|
__typename?: 'UnifiedCommunityMutation';
|
|
@@ -93527,6 +93829,7 @@ export declare type UnifiedQuery = {
|
|
|
93527
93829
|
accountBasics?: Maybe<UnifiedUAccountBasicsResult>;
|
|
93528
93830
|
accountDetails?: Maybe<UnifiedUAccountDetailsResult>;
|
|
93529
93831
|
atlassianProducts?: Maybe<UnifiedUAtlassianProductResult>;
|
|
93832
|
+
caching?: Maybe<UnifiedCachingQuery>;
|
|
93530
93833
|
consent?: Maybe<UnifiedConsentQuery>;
|
|
93531
93834
|
gating?: Maybe<UnifiedGatingQuery>;
|
|
93532
93835
|
node?: Maybe<UnifiedINode>;
|
|
@@ -93595,6 +93898,8 @@ export declare type UnifiedUAccountResult = UnifiedAccount | UnifiedQueryError;
|
|
|
93595
93898
|
export declare type UnifiedUAdminsResult = UnifiedAdmins | UnifiedQueryError;
|
|
93596
93899
|
export declare type UnifiedUAllowListResult = UnifiedAllowList | UnifiedQueryError;
|
|
93597
93900
|
export declare type UnifiedUAtlassianProductResult = UnifiedAtlassianProductConnection | UnifiedQueryError;
|
|
93901
|
+
export declare type UnifiedUCacheKeyResult = UnifiedCacheKeyResult | UnifiedQueryError;
|
|
93902
|
+
export declare type UnifiedUCacheResult = UnifiedCacheResult | UnifiedQueryError;
|
|
93598
93903
|
export declare type UnifiedUConsentStatusResult = UnifiedConsentStatus | UnifiedQueryError;
|
|
93599
93904
|
export declare type UnifiedUForumsBadgesResult = UnifiedForumsBadgesConnection | UnifiedQueryError;
|
|
93600
93905
|
export declare type UnifiedUForumsGroupsResult = UnifiedForumsGroupsConnection | UnifiedQueryError;
|