@forge/cli-shared 6.10.1-next.0 → 6.10.1-next.0-experimental-5098be7
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 +186 -13
- package/out/graphql/graphql-types.d.ts.map +1 -1
- package/out/graphql/graphql-types.js +26 -10
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -9810,7 +9810,7 @@ export declare type ConfluenceAdminReportStatus = {
|
|
|
9810
9810
|
reports?: Maybe<Array<Maybe<ConfluenceAdminReport>>>;
|
|
9811
9811
|
};
|
|
9812
9812
|
export declare type ConfluenceAncestor = ConfluenceDatabase | ConfluenceEmbed | ConfluenceFolder | ConfluencePage | ConfluenceWhiteboard;
|
|
9813
|
-
export declare type ConfluenceBlogPost = {
|
|
9813
|
+
export declare type ConfluenceBlogPost = Node & {
|
|
9814
9814
|
__typename?: 'ConfluenceBlogPost';
|
|
9815
9815
|
author?: Maybe<ConfluenceUserInfo>;
|
|
9816
9816
|
blogPostId: Scalars['ID']['output'];
|
|
@@ -10326,7 +10326,7 @@ export declare type ConfluenceCurrentContentNativeProperties = {
|
|
|
10326
10326
|
__typename?: 'ConfluenceCurrentContentNativeProperties';
|
|
10327
10327
|
contentState?: Maybe<ConfluenceContentState>;
|
|
10328
10328
|
};
|
|
10329
|
-
export declare type ConfluenceDatabase = {
|
|
10329
|
+
export declare type ConfluenceDatabase = Node & {
|
|
10330
10330
|
__typename?: 'ConfluenceDatabase';
|
|
10331
10331
|
allAncestors?: Maybe<Array<Maybe<ConfluenceAncestor>>>;
|
|
10332
10332
|
author?: Maybe<ConfluenceUserInfo>;
|
|
@@ -10474,7 +10474,7 @@ export declare type ConfluenceEditorSettings = {
|
|
|
10474
10474
|
export declare type ConfluenceEditorSettingsInput = {
|
|
10475
10475
|
toolbarDockingInitialPosition?: InputMaybe<Scalars['String']['input']>;
|
|
10476
10476
|
};
|
|
10477
|
-
export declare type ConfluenceEmbed = {
|
|
10477
|
+
export declare type ConfluenceEmbed = Node & {
|
|
10478
10478
|
__typename?: 'ConfluenceEmbed';
|
|
10479
10479
|
allAncestors?: Maybe<Array<Maybe<ConfluenceAncestor>>>;
|
|
10480
10480
|
author?: Maybe<ConfluenceUserInfo>;
|
|
@@ -10506,7 +10506,7 @@ export declare type ConfluenceFavoritedSummary = {
|
|
|
10506
10506
|
favoritedAt?: Maybe<Scalars['String']['output']>;
|
|
10507
10507
|
isFavorite: Scalars['Boolean']['output'];
|
|
10508
10508
|
};
|
|
10509
|
-
export declare type ConfluenceFolder = {
|
|
10509
|
+
export declare type ConfluenceFolder = Node & {
|
|
10510
10510
|
__typename?: 'ConfluenceFolder';
|
|
10511
10511
|
allAncestors?: Maybe<Array<Maybe<ConfluenceAncestor>>>;
|
|
10512
10512
|
author?: Maybe<ConfluenceUserInfo>;
|
|
@@ -10527,7 +10527,7 @@ export declare type ConfluenceFolderLinks = {
|
|
|
10527
10527
|
base?: Maybe<Scalars['String']['output']>;
|
|
10528
10528
|
webUi?: Maybe<Scalars['String']['output']>;
|
|
10529
10529
|
};
|
|
10530
|
-
export declare type ConfluenceFooterComment = ConfluenceComment & {
|
|
10530
|
+
export declare type ConfluenceFooterComment = ConfluenceComment & Node & {
|
|
10531
10531
|
__typename?: 'ConfluenceFooterComment';
|
|
10532
10532
|
author?: Maybe<ConfluenceUserInfo>;
|
|
10533
10533
|
body?: Maybe<ConfluenceBodies>;
|
|
@@ -10538,7 +10538,7 @@ export declare type ConfluenceFooterComment = ConfluenceComment & {
|
|
|
10538
10538
|
name?: Maybe<Scalars['String']['output']>;
|
|
10539
10539
|
status?: Maybe<ConfluenceCommentStatus>;
|
|
10540
10540
|
};
|
|
10541
|
-
export declare type ConfluenceInlineComment = ConfluenceComment & {
|
|
10541
|
+
export declare type ConfluenceInlineComment = ConfluenceComment & Node & {
|
|
10542
10542
|
__typename?: 'ConfluenceInlineComment';
|
|
10543
10543
|
author?: Maybe<ConfluenceUserInfo>;
|
|
10544
10544
|
body?: Maybe<ConfluenceBodies>;
|
|
@@ -10610,7 +10610,7 @@ export declare type ConfluenceInlineCommentUpdated = {
|
|
|
10610
10610
|
commentId?: Maybe<Scalars['ID']['output']>;
|
|
10611
10611
|
markerRef?: Maybe<Scalars['String']['output']>;
|
|
10612
10612
|
};
|
|
10613
|
-
export declare type ConfluenceInlineTask = {
|
|
10613
|
+
export declare type ConfluenceInlineTask = Node & {
|
|
10614
10614
|
__typename?: 'ConfluenceInlineTask';
|
|
10615
10615
|
assignedTo?: Maybe<ConfluenceUserInfo>;
|
|
10616
10616
|
body?: Maybe<ConfluenceContentBody>;
|
|
@@ -16474,7 +16474,7 @@ export declare enum ConfluenceOperationTarget {
|
|
|
16474
16474
|
Space = "SPACE",
|
|
16475
16475
|
UserProfile = "USER_PROFILE"
|
|
16476
16476
|
}
|
|
16477
|
-
export declare type ConfluencePage = {
|
|
16477
|
+
export declare type ConfluencePage = Node & {
|
|
16478
16478
|
__typename?: 'ConfluencePage';
|
|
16479
16479
|
allAncestors?: Maybe<Array<Maybe<ConfluenceAncestor>>>;
|
|
16480
16480
|
ancestors?: Maybe<Array<Maybe<ConfluencePage>>>;
|
|
@@ -16890,7 +16890,7 @@ export declare type ConfluenceSetSubCalendarReminderPayload = {
|
|
|
16890
16890
|
subCalendarReminder?: Maybe<ConfluenceSubCalendarReminder>;
|
|
16891
16891
|
success: Scalars['Boolean']['output'];
|
|
16892
16892
|
};
|
|
16893
|
-
export declare type ConfluenceSpace = {
|
|
16893
|
+
export declare type ConfluenceSpace = Node & {
|
|
16894
16894
|
__typename?: 'ConfluenceSpace';
|
|
16895
16895
|
alias?: Maybe<Scalars['String']['output']>;
|
|
16896
16896
|
createdBy?: Maybe<ConfluenceUserInfo>;
|
|
@@ -17817,7 +17817,7 @@ export declare type ConfluenceWatchSubCalendarPayload = {
|
|
|
17817
17817
|
errors?: Maybe<Array<MutationError>>;
|
|
17818
17818
|
success: Scalars['Boolean']['output'];
|
|
17819
17819
|
};
|
|
17820
|
-
export declare type ConfluenceWhiteboard = {
|
|
17820
|
+
export declare type ConfluenceWhiteboard = Node & {
|
|
17821
17821
|
__typename?: 'ConfluenceWhiteboard';
|
|
17822
17822
|
allAncestors?: Maybe<Array<Maybe<ConfluenceAncestor>>>;
|
|
17823
17823
|
author?: Maybe<ConfluenceUserInfo>;
|
|
@@ -32013,11 +32013,13 @@ export declare type GraphStore = {
|
|
|
32013
32013
|
componentAssociatedDocumentInverse?: Maybe<GraphStoreSimplifiedComponentAssociatedDocumentInverseConnection>;
|
|
32014
32014
|
componentAssociatedDocumentInverseRelationship?: Maybe<GraphStoreFullComponentAssociatedDocumentConnection>;
|
|
32015
32015
|
componentAssociatedDocumentRelationship?: Maybe<GraphStoreFullComponentAssociatedDocumentConnection>;
|
|
32016
|
+
componentHasComponentLinkInverse?: Maybe<GraphStoreSimplifiedComponentHasComponentLinkInverseConnection>;
|
|
32016
32017
|
componentImpactedByIncident?: Maybe<GraphStoreSimplifiedComponentImpactedByIncidentConnection>;
|
|
32017
32018
|
componentImpactedByIncidentInverse?: Maybe<GraphStoreSimplifiedComponentImpactedByIncidentInverseConnection>;
|
|
32018
32019
|
componentImpactedByIncidentInverseRelationship?: Maybe<GraphStoreFullComponentImpactedByIncidentConnection>;
|
|
32019
32020
|
componentImpactedByIncidentRelationship?: Maybe<GraphStoreFullComponentImpactedByIncidentConnection>;
|
|
32020
32021
|
componentLinkIsJiraProject?: Maybe<GraphStoreSimplifiedComponentLinkIsJiraProjectConnection>;
|
|
32022
|
+
componentLinkIsProviderRepo?: Maybe<GraphStoreSimplifiedComponentLinkIsProviderRepoConnection>;
|
|
32021
32023
|
componentLinkedJswIssue?: Maybe<GraphStoreSimplifiedComponentLinkedJswIssueConnection>;
|
|
32022
32024
|
componentLinkedJswIssueInverse?: Maybe<GraphStoreSimplifiedComponentLinkedJswIssueInverseConnection>;
|
|
32023
32025
|
componentLinkedJswIssueInverseRelationship?: Maybe<GraphStoreFullComponentLinkedJswIssueConnection>;
|
|
@@ -32214,6 +32216,8 @@ export declare type GraphStore = {
|
|
|
32214
32216
|
jiraProjectAssociatedAtlasGoalInverse?: Maybe<GraphStoreSimplifiedJiraProjectAssociatedAtlasGoalInverseConnection>;
|
|
32215
32217
|
jiraProjectAssociatedAtlasGoalInverseRelationship?: Maybe<GraphStoreFullJiraProjectAssociatedAtlasGoalConnection>;
|
|
32216
32218
|
jiraProjectAssociatedAtlasGoalRelationship?: Maybe<GraphStoreFullJiraProjectAssociatedAtlasGoalConnection>;
|
|
32219
|
+
jiraRepoIsProviderRepo?: Maybe<GraphStoreSimplifiedJiraRepoIsProviderRepoConnection>;
|
|
32220
|
+
jiraRepoIsProviderRepoInverse?: Maybe<GraphStoreSimplifiedJiraRepoIsProviderRepoInverseConnection>;
|
|
32217
32221
|
jsmProjectAssociatedService?: Maybe<GraphStoreSimplifiedJsmProjectAssociatedServiceConnection>;
|
|
32218
32222
|
jsmProjectAssociatedServiceBatch?: Maybe<GraphStoreBatchJsmProjectAssociatedServiceConnection>;
|
|
32219
32223
|
jsmProjectAssociatedServiceInverse?: Maybe<GraphStoreSimplifiedJsmProjectAssociatedServiceInverseConnection>;
|
|
@@ -33042,6 +33046,13 @@ export declare type GraphStoreComponentAssociatedDocumentRelationshipArgs = {
|
|
|
33042
33046
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
33043
33047
|
id: Scalars['ID']['input'];
|
|
33044
33048
|
};
|
|
33049
|
+
export declare type GraphStoreComponentHasComponentLinkInverseArgs = {
|
|
33050
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
33051
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
33052
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
33053
|
+
id: Scalars['ID']['input'];
|
|
33054
|
+
sort?: InputMaybe<GraphStoreComponentHasComponentLinkSortInput>;
|
|
33055
|
+
};
|
|
33045
33056
|
export declare type GraphStoreComponentImpactedByIncidentArgs = {
|
|
33046
33057
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
33047
33058
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -33073,6 +33084,13 @@ export declare type GraphStoreComponentLinkIsJiraProjectArgs = {
|
|
|
33073
33084
|
id: Scalars['ID']['input'];
|
|
33074
33085
|
sort?: InputMaybe<GraphStoreComponentLinkIsJiraProjectSortInput>;
|
|
33075
33086
|
};
|
|
33087
|
+
export declare type GraphStoreComponentLinkIsProviderRepoArgs = {
|
|
33088
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
33089
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
33090
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
33091
|
+
id: Scalars['ID']['input'];
|
|
33092
|
+
sort?: InputMaybe<GraphStoreComponentLinkIsProviderRepoSortInput>;
|
|
33093
|
+
};
|
|
33076
33094
|
export declare type GraphStoreComponentLinkedJswIssueArgs = {
|
|
33077
33095
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
33078
33096
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -34347,6 +34365,20 @@ export declare type GraphStoreJiraProjectAssociatedAtlasGoalRelationshipArgs = {
|
|
|
34347
34365
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
34348
34366
|
id: Scalars['ID']['input'];
|
|
34349
34367
|
};
|
|
34368
|
+
export declare type GraphStoreJiraRepoIsProviderRepoArgs = {
|
|
34369
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
34370
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
34371
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
34372
|
+
id: Scalars['ID']['input'];
|
|
34373
|
+
sort?: InputMaybe<GraphStoreJiraRepoIsProviderRepoSortInput>;
|
|
34374
|
+
};
|
|
34375
|
+
export declare type GraphStoreJiraRepoIsProviderRepoInverseArgs = {
|
|
34376
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
34377
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
34378
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
34379
|
+
id: Scalars['ID']['input'];
|
|
34380
|
+
sort?: InputMaybe<GraphStoreJiraRepoIsProviderRepoSortInput>;
|
|
34381
|
+
};
|
|
34350
34382
|
export declare type GraphStoreJsmProjectAssociatedServiceArgs = {
|
|
34351
34383
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
34352
34384
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -38509,12 +38541,18 @@ export declare type GraphStoreCommitInRepoSortInput = {
|
|
|
38509
38541
|
export declare type GraphStoreComponentAssociatedDocumentSortInput = {
|
|
38510
38542
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
38511
38543
|
};
|
|
38544
|
+
export declare type GraphStoreComponentHasComponentLinkSortInput = {
|
|
38545
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
38546
|
+
};
|
|
38512
38547
|
export declare type GraphStoreComponentImpactedByIncidentSortInput = {
|
|
38513
38548
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
38514
38549
|
};
|
|
38515
38550
|
export declare type GraphStoreComponentLinkIsJiraProjectSortInput = {
|
|
38516
38551
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
38517
38552
|
};
|
|
38553
|
+
export declare type GraphStoreComponentLinkIsProviderRepoSortInput = {
|
|
38554
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
38555
|
+
};
|
|
38518
38556
|
export declare type GraphStoreComponentLinkedJswIssueSortInput = {
|
|
38519
38557
|
createdAt?: InputMaybe<GraphStoreSortInput>;
|
|
38520
38558
|
fromAti?: InputMaybe<GraphStoreSortInput>;
|
|
@@ -43255,6 +43293,9 @@ export declare type GraphStoreJiraProjectAssociatedAtlasGoalSortInput = {
|
|
|
43255
43293
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
43256
43294
|
toAti?: InputMaybe<GraphStoreSortInput>;
|
|
43257
43295
|
};
|
|
43296
|
+
export declare type GraphStoreJiraRepoIsProviderRepoSortInput = {
|
|
43297
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
43298
|
+
};
|
|
43258
43299
|
export declare type GraphStoreJsmProjectAssociatedServiceSortInput = {
|
|
43259
43300
|
createdAt?: InputMaybe<GraphStoreSortInput>;
|
|
43260
43301
|
fromAti?: InputMaybe<GraphStoreSortInput>;
|
|
@@ -44840,6 +44881,20 @@ export declare type GraphStoreSimplifiedComponentAssociatedDocumentInverseEdge =
|
|
|
44840
44881
|
};
|
|
44841
44882
|
export declare type GraphStoreSimplifiedComponentAssociatedDocumentInverseUnion = CompassComponent;
|
|
44842
44883
|
export declare type GraphStoreSimplifiedComponentAssociatedDocumentUnion = DevOpsDocument | ExternalDocument;
|
|
44884
|
+
export declare type GraphStoreSimplifiedComponentHasComponentLinkInverseConnection = HasPageInfo & {
|
|
44885
|
+
__typename?: 'GraphStoreSimplifiedComponentHasComponentLinkInverseConnection';
|
|
44886
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedComponentHasComponentLinkInverseEdge>>>;
|
|
44887
|
+
pageInfo: PageInfo;
|
|
44888
|
+
};
|
|
44889
|
+
export declare type GraphStoreSimplifiedComponentHasComponentLinkInverseEdge = {
|
|
44890
|
+
__typename?: 'GraphStoreSimplifiedComponentHasComponentLinkInverseEdge';
|
|
44891
|
+
createdAt: Scalars['DateTime']['output'];
|
|
44892
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
44893
|
+
id: Scalars['ID']['output'];
|
|
44894
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
44895
|
+
node?: Maybe<GraphStoreSimplifiedComponentHasComponentLinkInverseUnion>;
|
|
44896
|
+
};
|
|
44897
|
+
export declare type GraphStoreSimplifiedComponentHasComponentLinkInverseUnion = CompassComponent;
|
|
44843
44898
|
export declare type GraphStoreSimplifiedComponentImpactedByIncidentConnection = HasPageInfo & {
|
|
44844
44899
|
__typename?: 'GraphStoreSimplifiedComponentImpactedByIncidentConnection';
|
|
44845
44900
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedComponentImpactedByIncidentEdge>>>;
|
|
@@ -44882,6 +44937,20 @@ export declare type GraphStoreSimplifiedComponentLinkIsJiraProjectEdge = {
|
|
|
44882
44937
|
node?: Maybe<GraphStoreSimplifiedComponentLinkIsJiraProjectUnion>;
|
|
44883
44938
|
};
|
|
44884
44939
|
export declare type GraphStoreSimplifiedComponentLinkIsJiraProjectUnion = JiraProject;
|
|
44940
|
+
export declare type GraphStoreSimplifiedComponentLinkIsProviderRepoConnection = HasPageInfo & {
|
|
44941
|
+
__typename?: 'GraphStoreSimplifiedComponentLinkIsProviderRepoConnection';
|
|
44942
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedComponentLinkIsProviderRepoEdge>>>;
|
|
44943
|
+
pageInfo: PageInfo;
|
|
44944
|
+
};
|
|
44945
|
+
export declare type GraphStoreSimplifiedComponentLinkIsProviderRepoEdge = {
|
|
44946
|
+
__typename?: 'GraphStoreSimplifiedComponentLinkIsProviderRepoEdge';
|
|
44947
|
+
createdAt: Scalars['DateTime']['output'];
|
|
44948
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
44949
|
+
id: Scalars['ID']['output'];
|
|
44950
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
44951
|
+
node?: Maybe<GraphStoreSimplifiedComponentLinkIsProviderRepoUnion>;
|
|
44952
|
+
};
|
|
44953
|
+
export declare type GraphStoreSimplifiedComponentLinkIsProviderRepoUnion = BitbucketRepository;
|
|
44885
44954
|
export declare type GraphStoreSimplifiedComponentLinkedJswIssueConnection = HasPageInfo & HasTotal & {
|
|
44886
44955
|
__typename?: 'GraphStoreSimplifiedComponentLinkedJswIssueConnection';
|
|
44887
44956
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedComponentLinkedJswIssueEdge>>>;
|
|
@@ -46720,6 +46789,34 @@ export declare type GraphStoreSimplifiedJiraProjectAssociatedAtlasGoalInverseEdg
|
|
|
46720
46789
|
};
|
|
46721
46790
|
export declare type GraphStoreSimplifiedJiraProjectAssociatedAtlasGoalInverseUnion = JiraProject;
|
|
46722
46791
|
export declare type GraphStoreSimplifiedJiraProjectAssociatedAtlasGoalUnion = TownsquareGoal;
|
|
46792
|
+
export declare type GraphStoreSimplifiedJiraRepoIsProviderRepoConnection = HasPageInfo & {
|
|
46793
|
+
__typename?: 'GraphStoreSimplifiedJiraRepoIsProviderRepoConnection';
|
|
46794
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedJiraRepoIsProviderRepoEdge>>>;
|
|
46795
|
+
pageInfo: PageInfo;
|
|
46796
|
+
};
|
|
46797
|
+
export declare type GraphStoreSimplifiedJiraRepoIsProviderRepoEdge = {
|
|
46798
|
+
__typename?: 'GraphStoreSimplifiedJiraRepoIsProviderRepoEdge';
|
|
46799
|
+
createdAt: Scalars['DateTime']['output'];
|
|
46800
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
46801
|
+
id: Scalars['ID']['output'];
|
|
46802
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
46803
|
+
node?: Maybe<GraphStoreSimplifiedJiraRepoIsProviderRepoUnion>;
|
|
46804
|
+
};
|
|
46805
|
+
export declare type GraphStoreSimplifiedJiraRepoIsProviderRepoInverseConnection = HasPageInfo & {
|
|
46806
|
+
__typename?: 'GraphStoreSimplifiedJiraRepoIsProviderRepoInverseConnection';
|
|
46807
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedJiraRepoIsProviderRepoInverseEdge>>>;
|
|
46808
|
+
pageInfo: PageInfo;
|
|
46809
|
+
};
|
|
46810
|
+
export declare type GraphStoreSimplifiedJiraRepoIsProviderRepoInverseEdge = {
|
|
46811
|
+
__typename?: 'GraphStoreSimplifiedJiraRepoIsProviderRepoInverseEdge';
|
|
46812
|
+
createdAt: Scalars['DateTime']['output'];
|
|
46813
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
46814
|
+
id: Scalars['ID']['output'];
|
|
46815
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
46816
|
+
node?: Maybe<GraphStoreSimplifiedJiraRepoIsProviderRepoInverseUnion>;
|
|
46817
|
+
};
|
|
46818
|
+
export declare type GraphStoreSimplifiedJiraRepoIsProviderRepoInverseUnion = DevOpsRepository | ExternalRepository;
|
|
46819
|
+
export declare type GraphStoreSimplifiedJiraRepoIsProviderRepoUnion = BitbucketRepository;
|
|
46723
46820
|
export declare type GraphStoreSimplifiedJsmProjectAssociatedServiceConnection = HasPageInfo & HasTotal & {
|
|
46724
46821
|
__typename?: 'GraphStoreSimplifiedJsmProjectAssociatedServiceConnection';
|
|
46725
46822
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedJsmProjectAssociatedServiceEdge>>>;
|
|
@@ -65081,6 +65178,7 @@ export declare type JiraNumberField = JiraIssueField & JiraIssueFieldConfigurati
|
|
|
65081
65178
|
fieldConfig?: Maybe<JiraFieldConfig>;
|
|
65082
65179
|
fieldId: Scalars['String']['output'];
|
|
65083
65180
|
fieldOperations?: Maybe<JiraFieldOperation>;
|
|
65181
|
+
formatConfig?: Maybe<JiraNumberFieldFormatConfig>;
|
|
65084
65182
|
id: Scalars['ID']['output'];
|
|
65085
65183
|
isEditableInIssueTransition?: Maybe<Scalars['Boolean']['output']>;
|
|
65086
65184
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -65091,6 +65189,18 @@ export declare type JiraNumberField = JiraIssueField & JiraIssueFieldConfigurati
|
|
|
65091
65189
|
type: Scalars['String']['output'];
|
|
65092
65190
|
userFieldConfig?: Maybe<JiraUserFieldConfig>;
|
|
65093
65191
|
};
|
|
65192
|
+
export declare type JiraNumberFieldFormatConfig = {
|
|
65193
|
+
__typename?: 'JiraNumberFieldFormatConfig';
|
|
65194
|
+
formatDecimals?: Maybe<Scalars['Int']['output']>;
|
|
65195
|
+
formatStyle?: Maybe<JiraNumberFieldFormatStyle>;
|
|
65196
|
+
formatUnit?: Maybe<Scalars['String']['output']>;
|
|
65197
|
+
};
|
|
65198
|
+
export declare enum JiraNumberFieldFormatStyle {
|
|
65199
|
+
Currency = "CURRENCY",
|
|
65200
|
+
Decimal = "DECIMAL",
|
|
65201
|
+
Percentage = "PERCENTAGE",
|
|
65202
|
+
Unit = "UNIT"
|
|
65203
|
+
}
|
|
65094
65204
|
export declare type JiraNumberFieldInput = {
|
|
65095
65205
|
fieldId: Scalars['ID']['input'];
|
|
65096
65206
|
value: Scalars['Float']['input'];
|
|
@@ -75129,6 +75239,10 @@ export declare type KnowledgeDiscoveryUsers = {
|
|
|
75129
75239
|
__typename?: 'KnowledgeDiscoveryUsers';
|
|
75130
75240
|
users?: Maybe<Array<Maybe<KnowledgeDiscoverySearchUser>>>;
|
|
75131
75241
|
};
|
|
75242
|
+
export declare enum KnowledgeGraphContentType {
|
|
75243
|
+
Blogpost = "BLOGPOST",
|
|
75244
|
+
Page = "PAGE"
|
|
75245
|
+
}
|
|
75132
75246
|
export declare type KnowledgeGraphObjectResponse = {
|
|
75133
75247
|
__typename?: 'KnowledgeGraphObjectResponse';
|
|
75134
75248
|
contentId: Scalars['ID']['output'];
|
|
@@ -75136,6 +75250,13 @@ export declare type KnowledgeGraphObjectResponse = {
|
|
|
75136
75250
|
createdAt: Scalars['String']['output'];
|
|
75137
75251
|
objectData: Scalars['String']['output'];
|
|
75138
75252
|
};
|
|
75253
|
+
export declare type KnowledgeGraphObjectResponseV2 = {
|
|
75254
|
+
__typename?: 'KnowledgeGraphObjectResponseV2';
|
|
75255
|
+
contentId: Scalars['ID']['output'];
|
|
75256
|
+
contentType: KnowledgeGraphContentType;
|
|
75257
|
+
createdAt: Scalars['String']['output'];
|
|
75258
|
+
objectData: Scalars['String']['output'];
|
|
75259
|
+
};
|
|
75139
75260
|
export declare enum KnowledgeGraphObjectType {
|
|
75140
75261
|
SnippetV1 = "snippet_v1",
|
|
75141
75262
|
SnippetV2 = "snippet_v2"
|
|
@@ -77529,6 +77650,24 @@ export declare type MarketplaceStoreCurrentUserReviewResponse = {
|
|
|
77529
77650
|
totalVotes?: Maybe<Scalars['Int']['output']>;
|
|
77530
77651
|
userHasComplianceConsent?: Maybe<Scalars['Boolean']['output']>;
|
|
77531
77652
|
};
|
|
77653
|
+
export declare type MarketplaceStoreDeleteReviewInput = {
|
|
77654
|
+
appKey: Scalars['String']['input'];
|
|
77655
|
+
reviewId: Scalars['ID']['input'];
|
|
77656
|
+
};
|
|
77657
|
+
export declare type MarketplaceStoreDeleteReviewResponse = {
|
|
77658
|
+
__typename?: 'MarketplaceStoreDeleteReviewResponse';
|
|
77659
|
+
id: Scalars['ID']['output'];
|
|
77660
|
+
status?: Maybe<Scalars['String']['output']>;
|
|
77661
|
+
};
|
|
77662
|
+
export declare type MarketplaceStoreDeleteReviewResponseInput = {
|
|
77663
|
+
appKey: Scalars['String']['input'];
|
|
77664
|
+
reviewId: Scalars['ID']['input'];
|
|
77665
|
+
};
|
|
77666
|
+
export declare type MarketplaceStoreDeleteReviewResponseResponse = {
|
|
77667
|
+
__typename?: 'MarketplaceStoreDeleteReviewResponseResponse';
|
|
77668
|
+
id: Scalars['ID']['output'];
|
|
77669
|
+
status?: Maybe<Scalars['String']['output']>;
|
|
77670
|
+
};
|
|
77532
77671
|
export declare type MarketplaceStoreDeveloperSpace = {
|
|
77533
77672
|
__typename?: 'MarketplaceStoreDeveloperSpace';
|
|
77534
77673
|
name: Scalars['String']['output'];
|
|
@@ -77763,6 +77902,8 @@ export declare type MarketplaceStoreMutationApi = {
|
|
|
77763
77902
|
__typename?: 'MarketplaceStoreMutationApi';
|
|
77764
77903
|
createOrUpdateReview: MarketplaceStoreCreateOrUpdateReviewResponse;
|
|
77765
77904
|
createOrUpdateReviewResponse: MarketplaceStoreCreateOrUpdateReviewResponseResponse;
|
|
77905
|
+
deleteReview: MarketplaceStoreDeleteReviewResponse;
|
|
77906
|
+
deleteReviewResponse: MarketplaceStoreDeleteReviewResponseResponse;
|
|
77766
77907
|
installApp: MarketplaceStoreInstallAppResponse;
|
|
77767
77908
|
updateReviewDownvote: MarketplaceStoreUpdateReviewVoteResponse;
|
|
77768
77909
|
updateReviewFlag: MarketplaceStoreUpdateReviewFlagResponse;
|
|
@@ -77774,6 +77915,12 @@ export declare type MarketplaceStoreMutationApiCreateOrUpdateReviewArgs = {
|
|
|
77774
77915
|
export declare type MarketplaceStoreMutationApiCreateOrUpdateReviewResponseArgs = {
|
|
77775
77916
|
input: MarketplaceStoreCreateOrUpdateReviewResponseInput;
|
|
77776
77917
|
};
|
|
77918
|
+
export declare type MarketplaceStoreMutationApiDeleteReviewArgs = {
|
|
77919
|
+
input: MarketplaceStoreDeleteReviewInput;
|
|
77920
|
+
};
|
|
77921
|
+
export declare type MarketplaceStoreMutationApiDeleteReviewResponseArgs = {
|
|
77922
|
+
input: MarketplaceStoreDeleteReviewResponseInput;
|
|
77923
|
+
};
|
|
77777
77924
|
export declare type MarketplaceStoreMutationApiInstallAppArgs = {
|
|
77778
77925
|
input: MarketplaceStoreInstallAppInput;
|
|
77779
77926
|
};
|
|
@@ -78329,8 +78476,7 @@ export declare type MercuryChangeProposalComment = {
|
|
|
78329
78476
|
createdBy?: Maybe<User>;
|
|
78330
78477
|
createdDate: Scalars['String']['output'];
|
|
78331
78478
|
id: Scalars['ID']['output'];
|
|
78332
|
-
|
|
78333
|
-
updatedDate?: Maybe<Scalars['String']['output']>;
|
|
78479
|
+
updatedDate: Scalars['String']['output'];
|
|
78334
78480
|
};
|
|
78335
78481
|
export declare type MercuryChangeProposalCommentConnection = {
|
|
78336
78482
|
__typename?: 'MercuryChangeProposalCommentConnection';
|
|
@@ -79920,6 +80066,7 @@ export declare type MercuryStrategicEventComment = {
|
|
|
79920
80066
|
createdBy?: Maybe<User>;
|
|
79921
80067
|
createdDate: Scalars['String']['output'];
|
|
79922
80068
|
id: Scalars['ID']['output'];
|
|
80069
|
+
updatedDate: Scalars['String']['output'];
|
|
79923
80070
|
};
|
|
79924
80071
|
export declare type MercuryStrategicEventCommentConnection = {
|
|
79925
80072
|
__typename?: 'MercuryStrategicEventCommentConnection';
|
|
@@ -85970,6 +86117,7 @@ export declare type Query = {
|
|
|
85970
86117
|
confluence_externalCollaboratorsByCriteria?: Maybe<ConfluencePersonConnection>;
|
|
85971
86118
|
confluence_hasClearPermissionForSpace?: Maybe<Scalars['Boolean']['output']>;
|
|
85972
86119
|
confluence_hasDivergedFromDefaultSpacePermissions?: Maybe<Scalars['Boolean']['output']>;
|
|
86120
|
+
confluence_latestKnowledgeGraphObjectV2?: Maybe<KnowledgeGraphObjectResponseV2>;
|
|
85973
86121
|
confluence_macrosByIds?: Maybe<Array<Maybe<Macro>>>;
|
|
85974
86122
|
confluence_mutationsPlaceholderQuery?: Maybe<Scalars['Boolean']['output']>;
|
|
85975
86123
|
confluence_pdfExportDownloadLink?: Maybe<ConfluencePdfExportDownloadLink>;
|
|
@@ -86172,6 +86320,7 @@ export declare type Query = {
|
|
|
86172
86320
|
jiraReleases?: Maybe<JiraReleases>;
|
|
86173
86321
|
jiraServers?: Maybe<JiraServersResult>;
|
|
86174
86322
|
jira_associatedFieldConfigSchemes?: Maybe<JiraFieldConfigSchemesConnection>;
|
|
86323
|
+
jira_associatedFieldConfigSchemesCount?: Maybe<Scalars['Int']['output']>;
|
|
86175
86324
|
jira_availableFieldConfigSchemes?: Maybe<JiraFieldConfigSchemesConnection>;
|
|
86176
86325
|
jira_boardView?: Maybe<JiraBoardView>;
|
|
86177
86326
|
jira_categoryField?: Maybe<JiraJqlField>;
|
|
@@ -86356,6 +86505,8 @@ export declare type Query = {
|
|
|
86356
86505
|
stalePages?: Maybe<PaginatedStalePagePayloadList>;
|
|
86357
86506
|
suggest?: Maybe<QuerySuggestionApi>;
|
|
86358
86507
|
suggestedSpaces?: Maybe<PaginatedSpaceList>;
|
|
86508
|
+
supportInquiry_channelsIdentityHash?: Maybe<Scalars['String']['output']>;
|
|
86509
|
+
supportInquiry_userContext?: Maybe<SupportInquiryUserContext>;
|
|
86359
86510
|
team?: Maybe<TeamQuery>;
|
|
86360
86511
|
teamCalendarSettings?: Maybe<TeamCalendarSettings>;
|
|
86361
86512
|
teamLabels?: Maybe<PaginatedLabelList>;
|
|
@@ -86386,7 +86537,6 @@ export declare type Query = {
|
|
|
86386
86537
|
user?: Maybe<User>;
|
|
86387
86538
|
userAccessStatus?: Maybe<AccessStatus>;
|
|
86388
86539
|
userCanCreateContent?: Maybe<Scalars['Boolean']['output']>;
|
|
86389
|
-
userContext?: Maybe<SupportInquiryUserContext>;
|
|
86390
86540
|
userDna?: Maybe<UserFingerprintQuery>;
|
|
86391
86541
|
userGroupSearch?: Maybe<GraphQlUserAndGroupSearchResults>;
|
|
86392
86542
|
userLocale?: Maybe<Scalars['String']['output']>;
|
|
@@ -87662,6 +87812,12 @@ export declare type QueryConfluence_HasDivergedFromDefaultSpacePermissionsArgs =
|
|
|
87662
87812
|
cloudId: Scalars['ID']['input'];
|
|
87663
87813
|
spaceKey: Scalars['String']['input'];
|
|
87664
87814
|
};
|
|
87815
|
+
export declare type QueryConfluence_LatestKnowledgeGraphObjectV2Args = {
|
|
87816
|
+
cloudId: Scalars['String']['input'];
|
|
87817
|
+
contentId: Scalars['ID']['input'];
|
|
87818
|
+
contentType: KnowledgeGraphContentType;
|
|
87819
|
+
objectType: KnowledgeGraphObjectType;
|
|
87820
|
+
};
|
|
87665
87821
|
export declare type QueryConfluence_MacrosByIdsArgs = {
|
|
87666
87822
|
cloudId: Scalars['ID']['input'];
|
|
87667
87823
|
contentId: Scalars['ID']['input'];
|
|
@@ -88469,6 +88625,10 @@ export declare type QueryJira_AssociatedFieldConfigSchemesArgs = {
|
|
|
88469
88625
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
88470
88626
|
input?: InputMaybe<JiraAssociatedFieldConfigSchemesInput>;
|
|
88471
88627
|
};
|
|
88628
|
+
export declare type QueryJira_AssociatedFieldConfigSchemesCountArgs = {
|
|
88629
|
+
cloudId: Scalars['ID']['input'];
|
|
88630
|
+
fieldId: Scalars['ID']['input'];
|
|
88631
|
+
};
|
|
88472
88632
|
export declare type QueryJira_AvailableFieldConfigSchemesArgs = {
|
|
88473
88633
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
88474
88634
|
cloudId: Scalars['ID']['input'];
|
|
@@ -89532,10 +89692,14 @@ export declare enum RadarFilterOperators {
|
|
|
89532
89692
|
Equals = "EQUALS",
|
|
89533
89693
|
GreaterThan = "GREATER_THAN",
|
|
89534
89694
|
GreaterThanOrEqual = "GREATER_THAN_OR_EQUAL",
|
|
89695
|
+
In = "IN",
|
|
89696
|
+
Is = "IS",
|
|
89697
|
+
IsNot = "IS_NOT",
|
|
89535
89698
|
LessThan = "LESS_THAN",
|
|
89536
89699
|
LessThanOrEqual = "LESS_THAN_OR_EQUAL",
|
|
89537
89700
|
Like = "LIKE",
|
|
89538
89701
|
NotEquals = "NOT_EQUALS",
|
|
89702
|
+
NotIn = "NOT_IN",
|
|
89539
89703
|
NotLike = "NOT_LIKE"
|
|
89540
89704
|
}
|
|
89541
89705
|
export declare type RadarFilterOptions = {
|
|
@@ -99412,6 +99576,7 @@ export declare type TrelloPlannerCalendarConnectionUpdated = {
|
|
|
99412
99576
|
export declare type TrelloPlannerCalendarDeleted = {
|
|
99413
99577
|
__typename?: 'TrelloPlannerCalendarDeleted';
|
|
99414
99578
|
id: Scalars['ID']['output'];
|
|
99579
|
+
objectId?: Maybe<Scalars['ID']['output']>;
|
|
99415
99580
|
};
|
|
99416
99581
|
export declare type TrelloPlannerCalendarEdge = {
|
|
99417
99582
|
__typename?: 'TrelloPlannerCalendarEdge';
|
|
@@ -99454,7 +99619,9 @@ export declare type TrelloPlannerCalendarEventCard = Node & {
|
|
|
99454
99619
|
__typename?: 'TrelloPlannerCalendarEventCard';
|
|
99455
99620
|
card?: Maybe<TrelloCard>;
|
|
99456
99621
|
cardId?: Maybe<Scalars['ID']['output']>;
|
|
99622
|
+
cardObjectId?: Maybe<Scalars['ID']['output']>;
|
|
99457
99623
|
id: Scalars['ID']['output'];
|
|
99624
|
+
objectId?: Maybe<Scalars['ID']['output']>;
|
|
99458
99625
|
position?: Maybe<Scalars['Float']['output']>;
|
|
99459
99626
|
};
|
|
99460
99627
|
export declare type TrelloPlannerCalendarEventCardConnection = {
|
|
@@ -99470,6 +99637,7 @@ export declare type TrelloPlannerCalendarEventCardConnectionUpdated = {
|
|
|
99470
99637
|
export declare type TrelloPlannerCalendarEventCardDeleted = {
|
|
99471
99638
|
__typename?: 'TrelloPlannerCalendarEventCardDeleted';
|
|
99472
99639
|
id: Scalars['ID']['output'];
|
|
99640
|
+
objectId?: Maybe<Scalars['ID']['output']>;
|
|
99473
99641
|
};
|
|
99474
99642
|
export declare type TrelloPlannerCalendarEventCardEdge = {
|
|
99475
99643
|
__typename?: 'TrelloPlannerCalendarEventCardEdge';
|
|
@@ -99485,7 +99653,9 @@ export declare type TrelloPlannerCalendarEventCardUpdated = {
|
|
|
99485
99653
|
boardId?: Maybe<Scalars['ID']['output']>;
|
|
99486
99654
|
card?: Maybe<TrelloPlannerCardUpdated>;
|
|
99487
99655
|
cardId?: Maybe<Scalars['ID']['output']>;
|
|
99656
|
+
cardObjectId?: Maybe<Scalars['ID']['output']>;
|
|
99488
99657
|
id: Scalars['ID']['output'];
|
|
99658
|
+
objectId?: Maybe<Scalars['ID']['output']>;
|
|
99489
99659
|
position?: Maybe<Scalars['Float']['output']>;
|
|
99490
99660
|
};
|
|
99491
99661
|
export declare type TrelloPlannerCalendarEventConferencing = {
|
|
@@ -99588,16 +99758,19 @@ export declare type TrelloPlannerCalendarUpdatedEventsArgs = {
|
|
|
99588
99758
|
export declare type TrelloPlannerCardBoardUpdated = {
|
|
99589
99759
|
__typename?: 'TrelloPlannerCardBoardUpdated';
|
|
99590
99760
|
id: Scalars['ID']['output'];
|
|
99761
|
+
objectId?: Maybe<Scalars['ID']['output']>;
|
|
99591
99762
|
};
|
|
99592
99763
|
export declare type TrelloPlannerCardListUpdated = {
|
|
99593
99764
|
__typename?: 'TrelloPlannerCardListUpdated';
|
|
99594
99765
|
board?: Maybe<TrelloPlannerCardBoardUpdated>;
|
|
99595
99766
|
id: Scalars['ID']['output'];
|
|
99767
|
+
objectId?: Maybe<Scalars['ID']['output']>;
|
|
99596
99768
|
};
|
|
99597
99769
|
export declare type TrelloPlannerCardUpdated = {
|
|
99598
99770
|
__typename?: 'TrelloPlannerCardUpdated';
|
|
99599
99771
|
id: Scalars['ID']['output'];
|
|
99600
99772
|
list?: Maybe<TrelloPlannerCardListUpdated>;
|
|
99773
|
+
objectId?: Maybe<Scalars['ID']['output']>;
|
|
99601
99774
|
};
|
|
99602
99775
|
export declare type TrelloPlannerProviderCalendar = Node & TrelloProviderCalendarInterface & {
|
|
99603
99776
|
__typename?: 'TrelloPlannerProviderCalendar';
|