@forge/cli-shared 6.10.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 +14 -0
- package/out/graphql/graphql-types.d.ts +373 -88
- package/out/graphql/graphql-types.d.ts.map +1 -1
- package/out/graphql/graphql-types.js +56 -32
- package/package.json +2 -2
|
@@ -7972,6 +7972,7 @@ export declare type CompassLink = {
|
|
|
7972
7972
|
eventSources?: Maybe<Array<EventSource>>;
|
|
7973
7973
|
id: Scalars['ID']['output'];
|
|
7974
7974
|
name?: Maybe<Scalars['String']['output']>;
|
|
7975
|
+
objectId?: Maybe<Scalars['ID']['output']>;
|
|
7975
7976
|
type: CompassLinkType;
|
|
7976
7977
|
url: Scalars['URL']['output'];
|
|
7977
7978
|
};
|
|
@@ -9809,7 +9810,7 @@ export declare type ConfluenceAdminReportStatus = {
|
|
|
9809
9810
|
reports?: Maybe<Array<Maybe<ConfluenceAdminReport>>>;
|
|
9810
9811
|
};
|
|
9811
9812
|
export declare type ConfluenceAncestor = ConfluenceDatabase | ConfluenceEmbed | ConfluenceFolder | ConfluencePage | ConfluenceWhiteboard;
|
|
9812
|
-
export declare type ConfluenceBlogPost = {
|
|
9813
|
+
export declare type ConfluenceBlogPost = Node & {
|
|
9813
9814
|
__typename?: 'ConfluenceBlogPost';
|
|
9814
9815
|
author?: Maybe<ConfluenceUserInfo>;
|
|
9815
9816
|
blogPostId: Scalars['ID']['output'];
|
|
@@ -10325,7 +10326,7 @@ export declare type ConfluenceCurrentContentNativeProperties = {
|
|
|
10325
10326
|
__typename?: 'ConfluenceCurrentContentNativeProperties';
|
|
10326
10327
|
contentState?: Maybe<ConfluenceContentState>;
|
|
10327
10328
|
};
|
|
10328
|
-
export declare type ConfluenceDatabase = {
|
|
10329
|
+
export declare type ConfluenceDatabase = Node & {
|
|
10329
10330
|
__typename?: 'ConfluenceDatabase';
|
|
10330
10331
|
allAncestors?: Maybe<Array<Maybe<ConfluenceAncestor>>>;
|
|
10331
10332
|
author?: Maybe<ConfluenceUserInfo>;
|
|
@@ -10473,7 +10474,7 @@ export declare type ConfluenceEditorSettings = {
|
|
|
10473
10474
|
export declare type ConfluenceEditorSettingsInput = {
|
|
10474
10475
|
toolbarDockingInitialPosition?: InputMaybe<Scalars['String']['input']>;
|
|
10475
10476
|
};
|
|
10476
|
-
export declare type ConfluenceEmbed = {
|
|
10477
|
+
export declare type ConfluenceEmbed = Node & {
|
|
10477
10478
|
__typename?: 'ConfluenceEmbed';
|
|
10478
10479
|
allAncestors?: Maybe<Array<Maybe<ConfluenceAncestor>>>;
|
|
10479
10480
|
author?: Maybe<ConfluenceUserInfo>;
|
|
@@ -10505,7 +10506,7 @@ export declare type ConfluenceFavoritedSummary = {
|
|
|
10505
10506
|
favoritedAt?: Maybe<Scalars['String']['output']>;
|
|
10506
10507
|
isFavorite: Scalars['Boolean']['output'];
|
|
10507
10508
|
};
|
|
10508
|
-
export declare type ConfluenceFolder = {
|
|
10509
|
+
export declare type ConfluenceFolder = Node & {
|
|
10509
10510
|
__typename?: 'ConfluenceFolder';
|
|
10510
10511
|
allAncestors?: Maybe<Array<Maybe<ConfluenceAncestor>>>;
|
|
10511
10512
|
author?: Maybe<ConfluenceUserInfo>;
|
|
@@ -10526,7 +10527,7 @@ export declare type ConfluenceFolderLinks = {
|
|
|
10526
10527
|
base?: Maybe<Scalars['String']['output']>;
|
|
10527
10528
|
webUi?: Maybe<Scalars['String']['output']>;
|
|
10528
10529
|
};
|
|
10529
|
-
export declare type ConfluenceFooterComment = ConfluenceComment & {
|
|
10530
|
+
export declare type ConfluenceFooterComment = ConfluenceComment & Node & {
|
|
10530
10531
|
__typename?: 'ConfluenceFooterComment';
|
|
10531
10532
|
author?: Maybe<ConfluenceUserInfo>;
|
|
10532
10533
|
body?: Maybe<ConfluenceBodies>;
|
|
@@ -10537,7 +10538,7 @@ export declare type ConfluenceFooterComment = ConfluenceComment & {
|
|
|
10537
10538
|
name?: Maybe<Scalars['String']['output']>;
|
|
10538
10539
|
status?: Maybe<ConfluenceCommentStatus>;
|
|
10539
10540
|
};
|
|
10540
|
-
export declare type ConfluenceInlineComment = ConfluenceComment & {
|
|
10541
|
+
export declare type ConfluenceInlineComment = ConfluenceComment & Node & {
|
|
10541
10542
|
__typename?: 'ConfluenceInlineComment';
|
|
10542
10543
|
author?: Maybe<ConfluenceUserInfo>;
|
|
10543
10544
|
body?: Maybe<ConfluenceBodies>;
|
|
@@ -10609,7 +10610,7 @@ export declare type ConfluenceInlineCommentUpdated = {
|
|
|
10609
10610
|
commentId?: Maybe<Scalars['ID']['output']>;
|
|
10610
10611
|
markerRef?: Maybe<Scalars['String']['output']>;
|
|
10611
10612
|
};
|
|
10612
|
-
export declare type ConfluenceInlineTask = {
|
|
10613
|
+
export declare type ConfluenceInlineTask = Node & {
|
|
10613
10614
|
__typename?: 'ConfluenceInlineTask';
|
|
10614
10615
|
assignedTo?: Maybe<ConfluenceUserInfo>;
|
|
10615
10616
|
body?: Maybe<ConfluenceContentBody>;
|
|
@@ -16473,7 +16474,7 @@ export declare enum ConfluenceOperationTarget {
|
|
|
16473
16474
|
Space = "SPACE",
|
|
16474
16475
|
UserProfile = "USER_PROFILE"
|
|
16475
16476
|
}
|
|
16476
|
-
export declare type ConfluencePage = {
|
|
16477
|
+
export declare type ConfluencePage = Node & {
|
|
16477
16478
|
__typename?: 'ConfluencePage';
|
|
16478
16479
|
allAncestors?: Maybe<Array<Maybe<ConfluenceAncestor>>>;
|
|
16479
16480
|
ancestors?: Maybe<Array<Maybe<ConfluencePage>>>;
|
|
@@ -16889,7 +16890,7 @@ export declare type ConfluenceSetSubCalendarReminderPayload = {
|
|
|
16889
16890
|
subCalendarReminder?: Maybe<ConfluenceSubCalendarReminder>;
|
|
16890
16891
|
success: Scalars['Boolean']['output'];
|
|
16891
16892
|
};
|
|
16892
|
-
export declare type ConfluenceSpace = {
|
|
16893
|
+
export declare type ConfluenceSpace = Node & {
|
|
16893
16894
|
__typename?: 'ConfluenceSpace';
|
|
16894
16895
|
alias?: Maybe<Scalars['String']['output']>;
|
|
16895
16896
|
createdBy?: Maybe<ConfluenceUserInfo>;
|
|
@@ -17816,7 +17817,7 @@ export declare type ConfluenceWatchSubCalendarPayload = {
|
|
|
17816
17817
|
errors?: Maybe<Array<MutationError>>;
|
|
17817
17818
|
success: Scalars['Boolean']['output'];
|
|
17818
17819
|
};
|
|
17819
|
-
export declare type ConfluenceWhiteboard = {
|
|
17820
|
+
export declare type ConfluenceWhiteboard = Node & {
|
|
17820
17821
|
__typename?: 'ConfluenceWhiteboard';
|
|
17821
17822
|
allAncestors?: Maybe<Array<Maybe<ConfluenceAncestor>>>;
|
|
17822
17823
|
author?: Maybe<ConfluenceUserInfo>;
|
|
@@ -21486,6 +21487,7 @@ export declare type CustomerServiceIndividual = Node & {
|
|
|
21486
21487
|
name: Scalars['String']['output'];
|
|
21487
21488
|
notes: CustomerServiceNotes;
|
|
21488
21489
|
organizations: Array<CustomerServiceOrganization>;
|
|
21490
|
+
requests?: Maybe<CustomerServiceRequestConnection>;
|
|
21489
21491
|
};
|
|
21490
21492
|
export declare type CustomerServiceIndividualEntitlementListArgs = {
|
|
21491
21493
|
filter?: InputMaybe<CustomerServiceEntitlementFilterInput>;
|
|
@@ -21499,6 +21501,10 @@ export declare type CustomerServiceIndividualNotesArgs = {
|
|
|
21499
21501
|
maxResults?: InputMaybe<Scalars['Int']['input']>;
|
|
21500
21502
|
startAt?: InputMaybe<Scalars['Int']['input']>;
|
|
21501
21503
|
};
|
|
21504
|
+
export declare type CustomerServiceIndividualRequestsArgs = {
|
|
21505
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
21506
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
21507
|
+
};
|
|
21502
21508
|
export declare type CustomerServiceIndividualDeletePayload = Payload & {
|
|
21503
21509
|
__typename?: 'CustomerServiceIndividualDeletePayload';
|
|
21504
21510
|
errors?: Maybe<Array<MutationError>>;
|
|
@@ -21885,6 +21891,7 @@ export declare type CustomerServiceQueryApi = {
|
|
|
21885
21891
|
organizationByOrganizationId?: Maybe<CustomerServiceOrganizationQueryResult>;
|
|
21886
21892
|
productConnections?: Maybe<CustomerServiceProductConnection>;
|
|
21887
21893
|
products?: Maybe<CustomerServiceProductQueryResult>;
|
|
21894
|
+
requestByIssueKey?: Maybe<CustomerServiceRequestByKeyResult>;
|
|
21888
21895
|
templateFormById?: Maybe<CustomerServiceTemplateFormQueryResult>;
|
|
21889
21896
|
templateForms?: Maybe<CustomerServiceTemplateFormConnection>;
|
|
21890
21897
|
};
|
|
@@ -21918,6 +21925,9 @@ export declare type CustomerServiceQueryApiProductsArgs = {
|
|
|
21918
21925
|
filter?: InputMaybe<CustomerServiceProductFilterInput>;
|
|
21919
21926
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
21920
21927
|
};
|
|
21928
|
+
export declare type CustomerServiceQueryApiRequestByIssueKeyArgs = {
|
|
21929
|
+
issueKey: Scalars['String']['input'];
|
|
21930
|
+
};
|
|
21921
21931
|
export declare type CustomerServiceQueryApiTemplateFormByIdArgs = {
|
|
21922
21932
|
helpCenterId: Scalars['ID']['input'];
|
|
21923
21933
|
templateFormId: Scalars['ID']['input'];
|
|
@@ -21927,6 +21937,58 @@ export declare type CustomerServiceQueryApiTemplateFormsArgs = {
|
|
|
21927
21937
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
21928
21938
|
helpCenterId: Scalars['ID']['input'];
|
|
21929
21939
|
};
|
|
21940
|
+
export declare type CustomerServiceRequest = {
|
|
21941
|
+
__typename?: 'CustomerServiceRequest';
|
|
21942
|
+
createdOn?: Maybe<Scalars['DateTime']['output']>;
|
|
21943
|
+
formData?: Maybe<CustomerServiceRequestFormDataConnection>;
|
|
21944
|
+
id: Scalars['ID']['output'];
|
|
21945
|
+
key?: Maybe<Scalars['String']['output']>;
|
|
21946
|
+
statusKey?: Maybe<CustomerServiceStatusKey>;
|
|
21947
|
+
summary?: Maybe<Scalars['String']['output']>;
|
|
21948
|
+
};
|
|
21949
|
+
export declare type CustomerServiceRequestByKeyResult = CustomerServiceRequest | QueryError;
|
|
21950
|
+
export declare type CustomerServiceRequestConnection = {
|
|
21951
|
+
__typename?: 'CustomerServiceRequestConnection';
|
|
21952
|
+
edges: Array<CustomerServiceRequestEdge>;
|
|
21953
|
+
pageInfo: PageInfo;
|
|
21954
|
+
};
|
|
21955
|
+
export declare type CustomerServiceRequestEdge = {
|
|
21956
|
+
__typename?: 'CustomerServiceRequestEdge';
|
|
21957
|
+
cursor: Scalars['String']['output'];
|
|
21958
|
+
node?: Maybe<CustomerServiceRequest>;
|
|
21959
|
+
};
|
|
21960
|
+
export declare type CustomerServiceRequestFormDataConnection = {
|
|
21961
|
+
__typename?: 'CustomerServiceRequestFormDataConnection';
|
|
21962
|
+
edges: Array<CustomerServiceRequestFormDataEdge>;
|
|
21963
|
+
pageInfo: PageInfo;
|
|
21964
|
+
};
|
|
21965
|
+
export declare type CustomerServiceRequestFormDataEdge = {
|
|
21966
|
+
__typename?: 'CustomerServiceRequestFormDataEdge';
|
|
21967
|
+
cursor: Scalars['String']['output'];
|
|
21968
|
+
node?: Maybe<CustomerServiceRequestFormEntryField>;
|
|
21969
|
+
};
|
|
21970
|
+
export declare type CustomerServiceRequestFormEntryField = {
|
|
21971
|
+
id: Scalars['ID']['output'];
|
|
21972
|
+
question?: Maybe<Scalars['String']['output']>;
|
|
21973
|
+
};
|
|
21974
|
+
export declare type CustomerServiceRequestFormEntryMultiSelectField = CustomerServiceRequestFormEntryField & {
|
|
21975
|
+
__typename?: 'CustomerServiceRequestFormEntryMultiSelectField';
|
|
21976
|
+
id: Scalars['ID']['output'];
|
|
21977
|
+
multiSelectTextAnswer?: Maybe<Array<Scalars['String']['output']>>;
|
|
21978
|
+
question?: Maybe<Scalars['String']['output']>;
|
|
21979
|
+
};
|
|
21980
|
+
export declare type CustomerServiceRequestFormEntryRichTextField = CustomerServiceRequestFormEntryField & {
|
|
21981
|
+
__typename?: 'CustomerServiceRequestFormEntryRichTextField';
|
|
21982
|
+
adfAnswer?: Maybe<Scalars['String']['output']>;
|
|
21983
|
+
id: Scalars['ID']['output'];
|
|
21984
|
+
question?: Maybe<Scalars['String']['output']>;
|
|
21985
|
+
};
|
|
21986
|
+
export declare type CustomerServiceRequestFormEntryTextField = CustomerServiceRequestFormEntryField & {
|
|
21987
|
+
__typename?: 'CustomerServiceRequestFormEntryTextField';
|
|
21988
|
+
id: Scalars['ID']['output'];
|
|
21989
|
+
question?: Maybe<Scalars['String']['output']>;
|
|
21990
|
+
textAnswer?: Maybe<Scalars['String']['output']>;
|
|
21991
|
+
};
|
|
21930
21992
|
export declare type CustomerServiceRoutingRule = {
|
|
21931
21993
|
__typename?: 'CustomerServiceRoutingRule';
|
|
21932
21994
|
id: Scalars['ID']['output'];
|
|
@@ -21936,6 +21998,10 @@ export declare type CustomerServiceRoutingRule = {
|
|
|
21936
21998
|
project?: Maybe<JiraProject>;
|
|
21937
21999
|
projectId?: Maybe<Scalars['ID']['output']>;
|
|
21938
22000
|
};
|
|
22001
|
+
export declare enum CustomerServiceStatusKey {
|
|
22002
|
+
Resolved = "RESOLVED",
|
|
22003
|
+
Submitted = "SUBMITTED"
|
|
22004
|
+
}
|
|
21939
22005
|
export declare type CustomerServiceStatusPayload = Payload & {
|
|
21940
22006
|
__typename?: 'CustomerServiceStatusPayload';
|
|
21941
22007
|
errors?: Maybe<Array<MutationError>>;
|
|
@@ -22961,6 +23027,11 @@ export declare type DevAiInvokeAutodevRovoAgentPayload = Payload & {
|
|
|
22961
23027
|
jobId?: Maybe<Scalars['ID']['output']>;
|
|
22962
23028
|
success: Scalars['Boolean']['output'];
|
|
22963
23029
|
};
|
|
23030
|
+
export declare type DevAiInvokeSelfCorrectionPayload = Payload & {
|
|
23031
|
+
__typename?: 'DevAiInvokeSelfCorrectionPayload';
|
|
23032
|
+
errors?: Maybe<Array<MutationError>>;
|
|
23033
|
+
success: Scalars['Boolean']['output'];
|
|
23034
|
+
};
|
|
22964
23035
|
export declare enum DevAiIssueScopingLabel {
|
|
22965
23036
|
Complex = "COMPLEX",
|
|
22966
23037
|
InScope = "IN_SCOPE",
|
|
@@ -23051,6 +23122,7 @@ export declare type DevAiRovoAgentActionConfig = {
|
|
|
23051
23122
|
export declare type DevAiRovoAgentConnection = {
|
|
23052
23123
|
__typename?: 'DevAiRovoAgentConnection';
|
|
23053
23124
|
edges?: Maybe<Array<Maybe<DevAiRovoAgentEdge>>>;
|
|
23125
|
+
isRankingLimitApplied?: Maybe<Scalars['Boolean']['output']>;
|
|
23054
23126
|
pageInfo: PageInfo;
|
|
23055
23127
|
};
|
|
23056
23128
|
export declare type DevAiRovoAgentEdge = {
|
|
@@ -31941,11 +32013,13 @@ export declare type GraphStore = {
|
|
|
31941
32013
|
componentAssociatedDocumentInverse?: Maybe<GraphStoreSimplifiedComponentAssociatedDocumentInverseConnection>;
|
|
31942
32014
|
componentAssociatedDocumentInverseRelationship?: Maybe<GraphStoreFullComponentAssociatedDocumentConnection>;
|
|
31943
32015
|
componentAssociatedDocumentRelationship?: Maybe<GraphStoreFullComponentAssociatedDocumentConnection>;
|
|
32016
|
+
componentHasComponentLinkInverse?: Maybe<GraphStoreSimplifiedComponentHasComponentLinkInverseConnection>;
|
|
31944
32017
|
componentImpactedByIncident?: Maybe<GraphStoreSimplifiedComponentImpactedByIncidentConnection>;
|
|
31945
32018
|
componentImpactedByIncidentInverse?: Maybe<GraphStoreSimplifiedComponentImpactedByIncidentInverseConnection>;
|
|
31946
32019
|
componentImpactedByIncidentInverseRelationship?: Maybe<GraphStoreFullComponentImpactedByIncidentConnection>;
|
|
31947
32020
|
componentImpactedByIncidentRelationship?: Maybe<GraphStoreFullComponentImpactedByIncidentConnection>;
|
|
31948
32021
|
componentLinkIsJiraProject?: Maybe<GraphStoreSimplifiedComponentLinkIsJiraProjectConnection>;
|
|
32022
|
+
componentLinkIsProviderRepo?: Maybe<GraphStoreSimplifiedComponentLinkIsProviderRepoConnection>;
|
|
31949
32023
|
componentLinkedJswIssue?: Maybe<GraphStoreSimplifiedComponentLinkedJswIssueConnection>;
|
|
31950
32024
|
componentLinkedJswIssueInverse?: Maybe<GraphStoreSimplifiedComponentLinkedJswIssueInverseConnection>;
|
|
31951
32025
|
componentLinkedJswIssueInverseRelationship?: Maybe<GraphStoreFullComponentLinkedJswIssueConnection>;
|
|
@@ -32142,6 +32216,8 @@ export declare type GraphStore = {
|
|
|
32142
32216
|
jiraProjectAssociatedAtlasGoalInverse?: Maybe<GraphStoreSimplifiedJiraProjectAssociatedAtlasGoalInverseConnection>;
|
|
32143
32217
|
jiraProjectAssociatedAtlasGoalInverseRelationship?: Maybe<GraphStoreFullJiraProjectAssociatedAtlasGoalConnection>;
|
|
32144
32218
|
jiraProjectAssociatedAtlasGoalRelationship?: Maybe<GraphStoreFullJiraProjectAssociatedAtlasGoalConnection>;
|
|
32219
|
+
jiraRepoIsProviderRepo?: Maybe<GraphStoreSimplifiedJiraRepoIsProviderRepoConnection>;
|
|
32220
|
+
jiraRepoIsProviderRepoInverse?: Maybe<GraphStoreSimplifiedJiraRepoIsProviderRepoInverseConnection>;
|
|
32145
32221
|
jsmProjectAssociatedService?: Maybe<GraphStoreSimplifiedJsmProjectAssociatedServiceConnection>;
|
|
32146
32222
|
jsmProjectAssociatedServiceBatch?: Maybe<GraphStoreBatchJsmProjectAssociatedServiceConnection>;
|
|
32147
32223
|
jsmProjectAssociatedServiceInverse?: Maybe<GraphStoreSimplifiedJsmProjectAssociatedServiceInverseConnection>;
|
|
@@ -32970,6 +33046,13 @@ export declare type GraphStoreComponentAssociatedDocumentRelationshipArgs = {
|
|
|
32970
33046
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
32971
33047
|
id: Scalars['ID']['input'];
|
|
32972
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
|
+
};
|
|
32973
33056
|
export declare type GraphStoreComponentImpactedByIncidentArgs = {
|
|
32974
33057
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
32975
33058
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -33001,6 +33084,13 @@ export declare type GraphStoreComponentLinkIsJiraProjectArgs = {
|
|
|
33001
33084
|
id: Scalars['ID']['input'];
|
|
33002
33085
|
sort?: InputMaybe<GraphStoreComponentLinkIsJiraProjectSortInput>;
|
|
33003
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
|
+
};
|
|
33004
33094
|
export declare type GraphStoreComponentLinkedJswIssueArgs = {
|
|
33005
33095
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
33006
33096
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -34275,6 +34365,20 @@ export declare type GraphStoreJiraProjectAssociatedAtlasGoalRelationshipArgs = {
|
|
|
34275
34365
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
34276
34366
|
id: Scalars['ID']['input'];
|
|
34277
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
|
+
};
|
|
34278
34382
|
export declare type GraphStoreJsmProjectAssociatedServiceArgs = {
|
|
34279
34383
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
34280
34384
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -38437,12 +38541,18 @@ export declare type GraphStoreCommitInRepoSortInput = {
|
|
|
38437
38541
|
export declare type GraphStoreComponentAssociatedDocumentSortInput = {
|
|
38438
38542
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
38439
38543
|
};
|
|
38544
|
+
export declare type GraphStoreComponentHasComponentLinkSortInput = {
|
|
38545
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
38546
|
+
};
|
|
38440
38547
|
export declare type GraphStoreComponentImpactedByIncidentSortInput = {
|
|
38441
38548
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
38442
38549
|
};
|
|
38443
38550
|
export declare type GraphStoreComponentLinkIsJiraProjectSortInput = {
|
|
38444
38551
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
38445
38552
|
};
|
|
38553
|
+
export declare type GraphStoreComponentLinkIsProviderRepoSortInput = {
|
|
38554
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
38555
|
+
};
|
|
38446
38556
|
export declare type GraphStoreComponentLinkedJswIssueSortInput = {
|
|
38447
38557
|
createdAt?: InputMaybe<GraphStoreSortInput>;
|
|
38448
38558
|
fromAti?: InputMaybe<GraphStoreSortInput>;
|
|
@@ -40886,6 +40996,10 @@ export declare type GraphStoreFullParentIssueHasChildIssueStartNode = {
|
|
|
40886
40996
|
id: Scalars['ID']['output'];
|
|
40887
40997
|
};
|
|
40888
40998
|
export declare type GraphStoreFullParentIssueHasChildIssueStartUnion = JiraIssue;
|
|
40999
|
+
export declare type GraphStoreFullPrInRepoAuthorOutput = {
|
|
41000
|
+
__typename?: 'GraphStoreFullPrInRepoAuthorOutput';
|
|
41001
|
+
authorAri?: Maybe<Scalars['String']['output']>;
|
|
41002
|
+
};
|
|
40889
41003
|
export declare type GraphStoreFullPrInRepoConnection = HasPageInfo & {
|
|
40890
41004
|
__typename?: 'GraphStoreFullPrInRepoConnection';
|
|
40891
41005
|
edges: Array<Maybe<GraphStoreFullPrInRepoEdge>>;
|
|
@@ -40912,14 +41026,40 @@ export declare type GraphStoreFullPrInRepoNode = Node & {
|
|
|
40912
41026
|
lastUpdated: Scalars['DateTime']['output'];
|
|
40913
41027
|
to: GraphStoreFullPrInRepoEndNode;
|
|
40914
41028
|
};
|
|
41029
|
+
export declare enum GraphStoreFullPrInRepoPullRequestStatusOutput {
|
|
41030
|
+
Declined = "DECLINED",
|
|
41031
|
+
Merged = "MERGED",
|
|
41032
|
+
NotSet = "NOT_SET",
|
|
41033
|
+
Open = "OPEN",
|
|
41034
|
+
Unknown = "UNKNOWN"
|
|
41035
|
+
}
|
|
40915
41036
|
export declare type GraphStoreFullPrInRepoRelationshipObjectMetadataOutput = {
|
|
40916
41037
|
__typename?: 'GraphStoreFullPrInRepoRelationshipObjectMetadataOutput';
|
|
40917
41038
|
providerAri?: Maybe<Scalars['String']['output']>;
|
|
40918
41039
|
};
|
|
41040
|
+
export declare type GraphStoreFullPrInRepoRelationshipSubjectMetadataOutput = {
|
|
41041
|
+
__typename?: 'GraphStoreFullPrInRepoRelationshipSubjectMetadataOutput';
|
|
41042
|
+
author?: Maybe<GraphStoreFullPrInRepoAuthorOutput>;
|
|
41043
|
+
reviewers?: Maybe<GraphStoreFullPrInRepoReviewerOutput>;
|
|
41044
|
+
status?: Maybe<GraphStoreFullPrInRepoPullRequestStatusOutput>;
|
|
41045
|
+
taskCount?: Maybe<Scalars['Int']['output']>;
|
|
41046
|
+
};
|
|
41047
|
+
export declare type GraphStoreFullPrInRepoReviewerOutput = {
|
|
41048
|
+
__typename?: 'GraphStoreFullPrInRepoReviewerOutput';
|
|
41049
|
+
approvalStatus?: Maybe<GraphStoreFullPrInRepoReviewerReviewerStatusOutput>;
|
|
41050
|
+
reviewerAri?: Maybe<Scalars['String']['output']>;
|
|
41051
|
+
};
|
|
41052
|
+
export declare enum GraphStoreFullPrInRepoReviewerReviewerStatusOutput {
|
|
41053
|
+
Approved = "APPROVED",
|
|
41054
|
+
Needswork = "NEEDSWORK",
|
|
41055
|
+
NotSet = "NOT_SET",
|
|
41056
|
+
Unapproved = "UNAPPROVED"
|
|
41057
|
+
}
|
|
40919
41058
|
export declare type GraphStoreFullPrInRepoStartNode = {
|
|
40920
41059
|
__typename?: 'GraphStoreFullPrInRepoStartNode';
|
|
40921
41060
|
data?: Maybe<GraphStoreFullPrInRepoStartUnion>;
|
|
40922
41061
|
id: Scalars['ID']['output'];
|
|
41062
|
+
metadata?: Maybe<GraphStoreFullPrInRepoRelationshipSubjectMetadataOutput>;
|
|
40923
41063
|
};
|
|
40924
41064
|
export declare type GraphStoreFullPrInRepoStartUnion = DevOpsPullRequestDetails | ExternalPullRequest;
|
|
40925
41065
|
export declare type GraphStoreFullProjectAssociatedBranchConnection = HasPageInfo & HasTotal & {
|
|
@@ -43153,6 +43293,9 @@ export declare type GraphStoreJiraProjectAssociatedAtlasGoalSortInput = {
|
|
|
43153
43293
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
43154
43294
|
toAti?: InputMaybe<GraphStoreSortInput>;
|
|
43155
43295
|
};
|
|
43296
|
+
export declare type GraphStoreJiraRepoIsProviderRepoSortInput = {
|
|
43297
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
43298
|
+
};
|
|
43156
43299
|
export declare type GraphStoreJsmProjectAssociatedServiceSortInput = {
|
|
43157
43300
|
createdAt?: InputMaybe<GraphStoreSortInput>;
|
|
43158
43301
|
fromAti?: InputMaybe<GraphStoreSortInput>;
|
|
@@ -44738,6 +44881,20 @@ export declare type GraphStoreSimplifiedComponentAssociatedDocumentInverseEdge =
|
|
|
44738
44881
|
};
|
|
44739
44882
|
export declare type GraphStoreSimplifiedComponentAssociatedDocumentInverseUnion = CompassComponent;
|
|
44740
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;
|
|
44741
44898
|
export declare type GraphStoreSimplifiedComponentImpactedByIncidentConnection = HasPageInfo & {
|
|
44742
44899
|
__typename?: 'GraphStoreSimplifiedComponentImpactedByIncidentConnection';
|
|
44743
44900
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedComponentImpactedByIncidentEdge>>>;
|
|
@@ -44780,6 +44937,20 @@ export declare type GraphStoreSimplifiedComponentLinkIsJiraProjectEdge = {
|
|
|
44780
44937
|
node?: Maybe<GraphStoreSimplifiedComponentLinkIsJiraProjectUnion>;
|
|
44781
44938
|
};
|
|
44782
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;
|
|
44783
44954
|
export declare type GraphStoreSimplifiedComponentLinkedJswIssueConnection = HasPageInfo & HasTotal & {
|
|
44784
44955
|
__typename?: 'GraphStoreSimplifiedComponentLinkedJswIssueConnection';
|
|
44785
44956
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedComponentLinkedJswIssueEdge>>>;
|
|
@@ -46618,6 +46789,34 @@ export declare type GraphStoreSimplifiedJiraProjectAssociatedAtlasGoalInverseEdg
|
|
|
46618
46789
|
};
|
|
46619
46790
|
export declare type GraphStoreSimplifiedJiraProjectAssociatedAtlasGoalInverseUnion = JiraProject;
|
|
46620
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;
|
|
46621
46820
|
export declare type GraphStoreSimplifiedJsmProjectAssociatedServiceConnection = HasPageInfo & HasTotal & {
|
|
46622
46821
|
__typename?: 'GraphStoreSimplifiedJsmProjectAssociatedServiceConnection';
|
|
46623
46822
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedJsmProjectAssociatedServiceEdge>>>;
|
|
@@ -56616,43 +56815,6 @@ export declare type JiraAutodevTaskPayload = Payload & {
|
|
|
56616
56815
|
success: Scalars['Boolean']['output'];
|
|
56617
56816
|
task?: Maybe<JiraAutodevTask>;
|
|
56618
56817
|
};
|
|
56619
|
-
export declare type JiraAutofixCreateJobPayload = Payload & {
|
|
56620
|
-
__typename?: 'JiraAutofixCreateJobPayload';
|
|
56621
|
-
errors?: Maybe<Array<MutationError>>;
|
|
56622
|
-
job?: Maybe<JiraAutofixJob>;
|
|
56623
|
-
success: Scalars['Boolean']['output'];
|
|
56624
|
-
};
|
|
56625
|
-
export declare type JiraAutofixInput = {
|
|
56626
|
-
issueAri: Scalars['ID']['input'];
|
|
56627
|
-
jobType: JiraAutofixJobType;
|
|
56628
|
-
};
|
|
56629
|
-
export declare type JiraAutofixJob = {
|
|
56630
|
-
__typename?: 'JiraAutofixJob';
|
|
56631
|
-
errorMessage?: Maybe<Scalars['String']['output']>;
|
|
56632
|
-
errorType?: Maybe<Scalars['String']['output']>;
|
|
56633
|
-
jobId: Scalars['ID']['output'];
|
|
56634
|
-
status: JiraAutofixStatus;
|
|
56635
|
-
};
|
|
56636
|
-
export declare type JiraAutofixJobConnection = {
|
|
56637
|
-
__typename?: 'JiraAutofixJobConnection';
|
|
56638
|
-
edges?: Maybe<Array<Maybe<JiraAutofixJobEdge>>>;
|
|
56639
|
-
nodes?: Maybe<Array<Maybe<JiraAutofixJob>>>;
|
|
56640
|
-
pageInfo: PageInfo;
|
|
56641
|
-
};
|
|
56642
|
-
export declare type JiraAutofixJobEdge = {
|
|
56643
|
-
__typename?: 'JiraAutofixJobEdge';
|
|
56644
|
-
cursor: Scalars['String']['output'];
|
|
56645
|
-
node?: Maybe<JiraAutofixJob>;
|
|
56646
|
-
};
|
|
56647
|
-
export declare enum JiraAutofixJobType {
|
|
56648
|
-
InternalRemoveFeatureFlag = "INTERNAL_REMOVE_FEATURE_FLAG"
|
|
56649
|
-
}
|
|
56650
|
-
export declare enum JiraAutofixStatus {
|
|
56651
|
-
Completed = "COMPLETED",
|
|
56652
|
-
Failed = "FAILED",
|
|
56653
|
-
InProgress = "IN_PROGRESS",
|
|
56654
|
-
Pending = "PENDING"
|
|
56655
|
-
}
|
|
56656
56818
|
export declare type JiraAvailableField = JiraProjectFieldAssociationInterface & {
|
|
56657
56819
|
__typename?: 'JiraAvailableField';
|
|
56658
56820
|
field?: Maybe<JiraField>;
|
|
@@ -59211,7 +59373,6 @@ export declare type JiraDevOpsMutation = {
|
|
|
59211
59373
|
approveJiraBitbucketWorkspaceAccessRequest?: Maybe<JiraApproveJiraBitbucketWorkspaceAccessRequestPayload>;
|
|
59212
59374
|
createAutodevJob?: Maybe<JiraAutodevCreateJobPayload>;
|
|
59213
59375
|
createAutodevPullRequest?: Maybe<JiraAutodevBasicPayload>;
|
|
59214
|
-
createAutofixJob?: Maybe<JiraAutofixCreateJobPayload>;
|
|
59215
59376
|
deleteAutodevJob?: Maybe<JiraAutodevBasicPayload>;
|
|
59216
59377
|
deleteAutodevPlannedChange?: Maybe<JiraAutodevDeletedPayload>;
|
|
59217
59378
|
deleteAutodevTask?: Maybe<JiraAutodevDeletedPayload>;
|
|
@@ -59259,10 +59420,6 @@ export declare type JiraDevOpsMutationCreateAutodevPullRequestArgs = {
|
|
|
59259
59420
|
issueAri: Scalars['ID']['input'];
|
|
59260
59421
|
jobId: Scalars['ID']['input'];
|
|
59261
59422
|
};
|
|
59262
|
-
export declare type JiraDevOpsMutationCreateAutofixJobArgs = {
|
|
59263
|
-
cloudId: Scalars['ID']['input'];
|
|
59264
|
-
input: JiraAutofixInput;
|
|
59265
|
-
};
|
|
59266
59423
|
export declare type JiraDevOpsMutationDeleteAutodevJobArgs = {
|
|
59267
59424
|
issueAri: Scalars['ID']['input'];
|
|
59268
59425
|
jobId: Scalars['ID']['input'];
|
|
@@ -59379,7 +59536,6 @@ export declare type JiraDevOpsQuery = {
|
|
|
59379
59536
|
autodevJobById?: Maybe<JiraAutodevJob>;
|
|
59380
59537
|
autodevJobs?: Maybe<JiraAutodevJobConnection>;
|
|
59381
59538
|
autodevJobsByIssues?: Maybe<JiraAutodevJobConnection>;
|
|
59382
|
-
autofixJobs?: Maybe<JiraAutofixJobConnection>;
|
|
59383
59539
|
bitbucketIntegration?: Maybe<JiraBitbucketIntegration>;
|
|
59384
59540
|
configState?: Maybe<JiraAppConfigState>;
|
|
59385
59541
|
configStates?: Maybe<JiraAppConfigStateConnection>;
|
|
@@ -59398,9 +59554,6 @@ export declare type JiraDevOpsQueryAutodevJobsArgs = {
|
|
|
59398
59554
|
export declare type JiraDevOpsQueryAutodevJobsByIssuesArgs = {
|
|
59399
59555
|
issueAris: Array<Scalars['ID']['input']>;
|
|
59400
59556
|
};
|
|
59401
|
-
export declare type JiraDevOpsQueryAutofixJobsArgs = {
|
|
59402
|
-
issueAri: Scalars['ID']['input'];
|
|
59403
|
-
};
|
|
59404
59557
|
export declare type JiraDevOpsQueryBitbucketIntegrationArgs = {
|
|
59405
59558
|
cloudId: Scalars['ID']['input'];
|
|
59406
59559
|
};
|
|
@@ -64070,7 +64223,6 @@ export declare type JiraMutation = {
|
|
|
64070
64223
|
updateDateTimeField?: Maybe<JiraDateTimeFieldPayload>;
|
|
64071
64224
|
updateEntitlementField?: Maybe<JiraServiceManagementEntitlementFieldPayload>;
|
|
64072
64225
|
updateFieldSetsView?: Maybe<JiraFieldSetsViewPayload>;
|
|
64073
|
-
updateFieldToFieldConfigSchemeAssociations?: Maybe<JiraFieldToFieldConfigSchemeAssociationsPayload>;
|
|
64074
64226
|
updateForgeObjectField?: Maybe<JiraForgeObjectFieldPayload>;
|
|
64075
64227
|
updateFormattingRule?: Maybe<JiraUpdateFormattingRulePayload>;
|
|
64076
64228
|
updateGlobalNotificationOptions?: Maybe<JiraUpdateNotificationOptionsPayload>;
|
|
@@ -64571,10 +64723,6 @@ export declare type JiraMutationUpdateFieldSetsViewArgs = {
|
|
|
64571
64723
|
fieldSetsInput?: InputMaybe<JiraFieldSetsMutationInput>;
|
|
64572
64724
|
id: Scalars['ID']['input'];
|
|
64573
64725
|
};
|
|
64574
|
-
export declare type JiraMutationUpdateFieldToFieldConfigSchemeAssociationsArgs = {
|
|
64575
|
-
cloudId: Scalars['ID']['input'];
|
|
64576
|
-
input: JiraFieldToFieldConfigSchemeAssociationsInput;
|
|
64577
|
-
};
|
|
64578
64726
|
export declare type JiraMutationUpdateForgeObjectFieldArgs = {
|
|
64579
64727
|
input: JiraUpdateForgeObjectFieldInput;
|
|
64580
64728
|
};
|
|
@@ -65030,6 +65178,7 @@ export declare type JiraNumberField = JiraIssueField & JiraIssueFieldConfigurati
|
|
|
65030
65178
|
fieldConfig?: Maybe<JiraFieldConfig>;
|
|
65031
65179
|
fieldId: Scalars['String']['output'];
|
|
65032
65180
|
fieldOperations?: Maybe<JiraFieldOperation>;
|
|
65181
|
+
formatConfig?: Maybe<JiraNumberFieldFormatConfig>;
|
|
65033
65182
|
id: Scalars['ID']['output'];
|
|
65034
65183
|
isEditableInIssueTransition?: Maybe<Scalars['Boolean']['output']>;
|
|
65035
65184
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -65040,6 +65189,18 @@ export declare type JiraNumberField = JiraIssueField & JiraIssueFieldConfigurati
|
|
|
65040
65189
|
type: Scalars['String']['output'];
|
|
65041
65190
|
userFieldConfig?: Maybe<JiraUserFieldConfig>;
|
|
65042
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
|
+
}
|
|
65043
65204
|
export declare type JiraNumberFieldInput = {
|
|
65044
65205
|
fieldId: Scalars['ID']['input'];
|
|
65045
65206
|
value: Scalars['Float']['input'];
|
|
@@ -66081,6 +66242,7 @@ export declare type JiraProject = Node & {
|
|
|
66081
66242
|
id: Scalars['ID']['output'];
|
|
66082
66243
|
intentTemplates?: Maybe<VirtualAgentIntentTemplatesConnection>;
|
|
66083
66244
|
isAIEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
66245
|
+
isAiContextFeatureEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
66084
66246
|
isAutomationDiscoverabilityEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
66085
66247
|
isExplicitFieldAssociationsEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
66086
66248
|
isFavourite?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -66891,7 +67053,6 @@ export declare type JiraQuery = {
|
|
|
66891
67053
|
applicationLinkByOauth2ClientId?: Maybe<JiraApplicationLink>;
|
|
66892
67054
|
applicationLinksByTypeId?: Maybe<JiraApplicationLinkConnection>;
|
|
66893
67055
|
applicationPropertiesByKey?: Maybe<Array<JiraApplicationProperty>>;
|
|
66894
|
-
associatedFieldConfigSchemes?: Maybe<JiraFieldConfigSchemesConnection>;
|
|
66895
67056
|
atlassianIntelligenceAction?: Maybe<JiraAtlassianIntelligenceAction>;
|
|
66896
67057
|
attachmentByAri?: Maybe<JiraPlatformAttachment>;
|
|
66897
67058
|
attachmentByAriV2?: Maybe<JiraAttachmentByAriResult>;
|
|
@@ -66899,7 +67060,6 @@ export declare type JiraQuery = {
|
|
|
66899
67060
|
attachmentStorageAllowed?: Maybe<Scalars['Long']['output']>;
|
|
66900
67061
|
attachmentStorageIsUnlimited?: Maybe<Scalars['Boolean']['output']>;
|
|
66901
67062
|
attachmentStorageUsed?: Maybe<Scalars['Long']['output']>;
|
|
66902
|
-
availableFieldConfigSchemes?: Maybe<JiraFieldConfigSchemesConnection>;
|
|
66903
67063
|
backgroundUploadToken?: Maybe<JiraBackgroundUploadTokenResult>;
|
|
66904
67064
|
booleanUserProperty?: Maybe<JiraEntityPropertyBoolean>;
|
|
66905
67065
|
bulkOperationProgress?: Maybe<JiraIssueBulkOperationProgress>;
|
|
@@ -67153,12 +67313,6 @@ export declare type JiraQueryApplicationPropertiesByKeyArgs = {
|
|
|
67153
67313
|
cloudId: Scalars['ID']['input'];
|
|
67154
67314
|
keys: Array<Scalars['String']['input']>;
|
|
67155
67315
|
};
|
|
67156
|
-
export declare type JiraQueryAssociatedFieldConfigSchemesArgs = {
|
|
67157
|
-
after?: InputMaybe<Scalars['String']['input']>;
|
|
67158
|
-
cloudId: Scalars['ID']['input'];
|
|
67159
|
-
first?: InputMaybe<Scalars['Int']['input']>;
|
|
67160
|
-
input?: InputMaybe<JiraAssociatedFieldConfigSchemesInput>;
|
|
67161
|
-
};
|
|
67162
67316
|
export declare type JiraQueryAtlassianIntelligenceActionArgs = {
|
|
67163
67317
|
atlassianIntelligenceProductFeatureInput: JiraAtlassianIntelligenceProductFeatureInput;
|
|
67164
67318
|
cloudId: Scalars['ID']['input'];
|
|
@@ -67190,12 +67344,6 @@ export declare type JiraQueryAttachmentStorageUsedArgs = {
|
|
|
67190
67344
|
applicationKey: JiraApplicationKey;
|
|
67191
67345
|
cloudId: Scalars['ID']['input'];
|
|
67192
67346
|
};
|
|
67193
|
-
export declare type JiraQueryAvailableFieldConfigSchemesArgs = {
|
|
67194
|
-
after?: InputMaybe<Scalars['String']['input']>;
|
|
67195
|
-
cloudId: Scalars['ID']['input'];
|
|
67196
|
-
first?: InputMaybe<Scalars['Int']['input']>;
|
|
67197
|
-
input?: InputMaybe<JiraAvailableFieldConfigSchemesInput>;
|
|
67198
|
-
};
|
|
67199
67347
|
export declare type JiraQueryBackgroundUploadTokenArgs = {
|
|
67200
67348
|
cloudId: Scalars['ID']['input'];
|
|
67201
67349
|
durationInSeconds: Scalars['Int']['input'];
|
|
@@ -72237,6 +72385,7 @@ export declare type JiraUserPreferences = {
|
|
|
72237
72385
|
issueViewActivityLayout?: Maybe<JiraIssueViewActivityLayout>;
|
|
72238
72386
|
issueViewAttachmentPanelViewMode?: Maybe<JiraIssueViewAttachmentPanelViewMode>;
|
|
72239
72387
|
issueViewDefaultPinnedFieldsBannerProject?: Maybe<Scalars['String']['output']>;
|
|
72388
|
+
issueViewDetailsPanelFieldsOrder?: Maybe<Scalars['String']['output']>;
|
|
72240
72389
|
issueViewPinnedFields?: Maybe<Scalars['String']['output']>;
|
|
72241
72390
|
issueViewPinnedFieldsBannerLastInteracted?: Maybe<Scalars['DateTime']['output']>;
|
|
72242
72391
|
issueViewSidebarResizeRatio?: Maybe<Scalars['String']['output']>;
|
|
@@ -72256,6 +72405,9 @@ export declare type JiraUserPreferencesDismissedAutomationDiscoverabilityTemplat
|
|
|
72256
72405
|
export declare type JiraUserPreferencesIssueViewDefaultPinnedFieldsBannerProjectArgs = {
|
|
72257
72406
|
projectKey: Scalars['String']['input'];
|
|
72258
72407
|
};
|
|
72408
|
+
export declare type JiraUserPreferencesIssueViewDetailsPanelFieldsOrderArgs = {
|
|
72409
|
+
projectKey: Scalars['String']['input'];
|
|
72410
|
+
};
|
|
72259
72411
|
export declare type JiraUserPreferencesIssueViewPinnedFieldsArgs = {
|
|
72260
72412
|
projectKey: Scalars['String']['input'];
|
|
72261
72413
|
};
|
|
@@ -74387,7 +74539,7 @@ export declare type KnowledgeBaseArticleSearchInput = {
|
|
|
74387
74539
|
sortByKey?: InputMaybe<KnowledgeBaseArticleSearchSortByKey>;
|
|
74388
74540
|
sortOrder?: InputMaybe<KnowledgeBaseArticleSearchSortOrder>;
|
|
74389
74541
|
};
|
|
74390
|
-
export declare type KnowledgeBaseArticleSearchResponse = KnowledgeBaseCrossSiteSearchConnection | QueryError;
|
|
74542
|
+
export declare type KnowledgeBaseArticleSearchResponse = KnowledgeBaseCrossSiteSearchConnection | KnowledgeBaseThirdPartyConnection | QueryError;
|
|
74391
74543
|
export declare enum KnowledgeBaseArticleSearchSortByKey {
|
|
74392
74544
|
LastModified = "LAST_MODIFIED",
|
|
74393
74545
|
Title = "TITLE"
|
|
@@ -74424,6 +74576,12 @@ export declare type KnowledgeBaseLinkResponse = {
|
|
|
74424
74576
|
mutationError?: Maybe<MutationError>;
|
|
74425
74577
|
success: Scalars['Boolean']['output'];
|
|
74426
74578
|
};
|
|
74579
|
+
export declare type KnowledgeBaseLinkedSourceTypes = {
|
|
74580
|
+
__typename?: 'KnowledgeBaseLinkedSourceTypes';
|
|
74581
|
+
linkedSourceTypes?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
|
|
74582
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
74583
|
+
};
|
|
74584
|
+
export declare type KnowledgeBaseLinkedSourceTypesResponse = KnowledgeBaseLinkedSourceTypes | QueryError;
|
|
74427
74585
|
export declare type KnowledgeBaseMutationApi = {
|
|
74428
74586
|
__typename?: 'KnowledgeBaseMutationApi';
|
|
74429
74587
|
linkKnowledgeBaseSource?: Maybe<KnowledgeBaseLinkResponse>;
|
|
@@ -74511,6 +74669,23 @@ export declare type KnowledgeBaseSpacePermissionUpdateViewInput = {
|
|
|
74511
74669
|
spaceAri: Scalars['ID']['input'];
|
|
74512
74670
|
viewPermission?: InputMaybe<KnowledgeBaseSpacePermissionType>;
|
|
74513
74671
|
};
|
|
74672
|
+
export declare type KnowledgeBaseThirdPartyArticle = {
|
|
74673
|
+
__typename?: 'KnowledgeBaseThirdPartyArticle';
|
|
74674
|
+
id: Scalars['ID']['output'];
|
|
74675
|
+
lastModified?: Maybe<Scalars['String']['output']>;
|
|
74676
|
+
title?: Maybe<Scalars['String']['output']>;
|
|
74677
|
+
url?: Maybe<Scalars['String']['output']>;
|
|
74678
|
+
};
|
|
74679
|
+
export declare type KnowledgeBaseThirdPartyArticleEdge = {
|
|
74680
|
+
__typename?: 'KnowledgeBaseThirdPartyArticleEdge';
|
|
74681
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
74682
|
+
node?: Maybe<KnowledgeBaseThirdPartyArticle>;
|
|
74683
|
+
};
|
|
74684
|
+
export declare type KnowledgeBaseThirdPartyConnection = {
|
|
74685
|
+
__typename?: 'KnowledgeBaseThirdPartyConnection';
|
|
74686
|
+
edges?: Maybe<Array<KnowledgeBaseThirdPartyArticleEdge>>;
|
|
74687
|
+
nodes?: Maybe<Array<Maybe<KnowledgeBaseThirdPartyArticle>>>;
|
|
74688
|
+
};
|
|
74514
74689
|
export declare type KnowledgeBaseUnlinkResponse = {
|
|
74515
74690
|
__typename?: 'KnowledgeBaseUnlinkResponse';
|
|
74516
74691
|
mutationError?: Maybe<MutationError>;
|
|
@@ -75064,6 +75239,10 @@ export declare type KnowledgeDiscoveryUsers = {
|
|
|
75064
75239
|
__typename?: 'KnowledgeDiscoveryUsers';
|
|
75065
75240
|
users?: Maybe<Array<Maybe<KnowledgeDiscoverySearchUser>>>;
|
|
75066
75241
|
};
|
|
75242
|
+
export declare enum KnowledgeGraphContentType {
|
|
75243
|
+
Blogpost = "BLOGPOST",
|
|
75244
|
+
Page = "PAGE"
|
|
75245
|
+
}
|
|
75067
75246
|
export declare type KnowledgeGraphObjectResponse = {
|
|
75068
75247
|
__typename?: 'KnowledgeGraphObjectResponse';
|
|
75069
75248
|
contentId: Scalars['ID']['output'];
|
|
@@ -75071,6 +75250,13 @@ export declare type KnowledgeGraphObjectResponse = {
|
|
|
75071
75250
|
createdAt: Scalars['String']['output'];
|
|
75072
75251
|
objectData: Scalars['String']['output'];
|
|
75073
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
|
+
};
|
|
75074
75260
|
export declare enum KnowledgeGraphObjectType {
|
|
75075
75261
|
SnippetV1 = "snippet_v1",
|
|
75076
75262
|
SnippetV2 = "snippet_v2"
|
|
@@ -77464,6 +77650,24 @@ export declare type MarketplaceStoreCurrentUserReviewResponse = {
|
|
|
77464
77650
|
totalVotes?: Maybe<Scalars['Int']['output']>;
|
|
77465
77651
|
userHasComplianceConsent?: Maybe<Scalars['Boolean']['output']>;
|
|
77466
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
|
+
};
|
|
77467
77671
|
export declare type MarketplaceStoreDeveloperSpace = {
|
|
77468
77672
|
__typename?: 'MarketplaceStoreDeveloperSpace';
|
|
77469
77673
|
name: Scalars['String']['output'];
|
|
@@ -77698,6 +77902,8 @@ export declare type MarketplaceStoreMutationApi = {
|
|
|
77698
77902
|
__typename?: 'MarketplaceStoreMutationApi';
|
|
77699
77903
|
createOrUpdateReview: MarketplaceStoreCreateOrUpdateReviewResponse;
|
|
77700
77904
|
createOrUpdateReviewResponse: MarketplaceStoreCreateOrUpdateReviewResponseResponse;
|
|
77905
|
+
deleteReview: MarketplaceStoreDeleteReviewResponse;
|
|
77906
|
+
deleteReviewResponse: MarketplaceStoreDeleteReviewResponseResponse;
|
|
77701
77907
|
installApp: MarketplaceStoreInstallAppResponse;
|
|
77702
77908
|
updateReviewDownvote: MarketplaceStoreUpdateReviewVoteResponse;
|
|
77703
77909
|
updateReviewFlag: MarketplaceStoreUpdateReviewFlagResponse;
|
|
@@ -77709,6 +77915,12 @@ export declare type MarketplaceStoreMutationApiCreateOrUpdateReviewArgs = {
|
|
|
77709
77915
|
export declare type MarketplaceStoreMutationApiCreateOrUpdateReviewResponseArgs = {
|
|
77710
77916
|
input: MarketplaceStoreCreateOrUpdateReviewResponseInput;
|
|
77711
77917
|
};
|
|
77918
|
+
export declare type MarketplaceStoreMutationApiDeleteReviewArgs = {
|
|
77919
|
+
input: MarketplaceStoreDeleteReviewInput;
|
|
77920
|
+
};
|
|
77921
|
+
export declare type MarketplaceStoreMutationApiDeleteReviewResponseArgs = {
|
|
77922
|
+
input: MarketplaceStoreDeleteReviewResponseInput;
|
|
77923
|
+
};
|
|
77712
77924
|
export declare type MarketplaceStoreMutationApiInstallAppArgs = {
|
|
77713
77925
|
input: MarketplaceStoreInstallAppInput;
|
|
77714
77926
|
};
|
|
@@ -78264,8 +78476,7 @@ export declare type MercuryChangeProposalComment = {
|
|
|
78264
78476
|
createdBy?: Maybe<User>;
|
|
78265
78477
|
createdDate: Scalars['String']['output'];
|
|
78266
78478
|
id: Scalars['ID']['output'];
|
|
78267
|
-
|
|
78268
|
-
updatedDate?: Maybe<Scalars['String']['output']>;
|
|
78479
|
+
updatedDate: Scalars['String']['output'];
|
|
78269
78480
|
};
|
|
78270
78481
|
export declare type MercuryChangeProposalCommentConnection = {
|
|
78271
78482
|
__typename?: 'MercuryChangeProposalCommentConnection';
|
|
@@ -79855,6 +80066,7 @@ export declare type MercuryStrategicEventComment = {
|
|
|
79855
80066
|
createdBy?: Maybe<User>;
|
|
79856
80067
|
createdDate: Scalars['String']['output'];
|
|
79857
80068
|
id: Scalars['ID']['output'];
|
|
80069
|
+
updatedDate: Scalars['String']['output'];
|
|
79858
80070
|
};
|
|
79859
80071
|
export declare type MercuryStrategicEventCommentConnection = {
|
|
79860
80072
|
__typename?: 'MercuryStrategicEventCommentConnection';
|
|
@@ -80957,6 +81169,7 @@ export declare type Mutation = {
|
|
|
80957
81169
|
devai_flowSessionCreate?: Maybe<DevAiFlowSession>;
|
|
80958
81170
|
devai_invokeAutodevRovoAgent?: Maybe<DevAiInvokeAutodevRovoAgentPayload>;
|
|
80959
81171
|
devai_invokeAutodevRovoAgentInBulk?: Maybe<DevAiInvokeAutodevRovoAgentInBulkPayload>;
|
|
81172
|
+
devai_invokeSelfCorrection?: Maybe<DevAiInvokeSelfCorrectionPayload>;
|
|
80960
81173
|
disableExperiment?: Maybe<TapExperiment>;
|
|
80961
81174
|
disablePublicLinkForPage?: Maybe<DisablePublicLinkForPagePayload>;
|
|
80962
81175
|
disablePublicLinkForSite?: Maybe<PublicLinkSitePayload>;
|
|
@@ -81012,6 +81225,7 @@ export declare type Mutation = {
|
|
|
81012
81225
|
jira_setIssueSearchHideDoneItems?: Maybe<JiraSetIssueSearchHideDoneItemsPayload>;
|
|
81013
81226
|
jira_setViewFilter?: Maybe<JiraSetViewFilterPayload>;
|
|
81014
81227
|
jira_setViewGroupBy?: Maybe<JiraSetViewGroupByPayload>;
|
|
81228
|
+
jira_updateFieldToFieldConfigSchemeAssociations?: Maybe<JiraFieldToFieldConfigSchemeAssociationsPayload>;
|
|
81015
81229
|
jira_updateProjectBackground?: Maybe<JiraProjectUpdateBackgroundMutationPayload>;
|
|
81016
81230
|
jira_updateProjectsSidebarMenu?: Maybe<JiraProjectsSidebarMenu>;
|
|
81017
81231
|
jsmChat?: Maybe<JsmChatMutation>;
|
|
@@ -81060,7 +81274,7 @@ export declare type Mutation = {
|
|
|
81060
81274
|
radar_updateConnector?: Maybe<RadarConnector>;
|
|
81061
81275
|
radar_updateFieldSettings?: Maybe<RadarMutationResponse>;
|
|
81062
81276
|
radar_updateFocusAreaMappings?: Maybe<RadarMutationResponse>;
|
|
81063
|
-
radar_updateFocusAreaProposalChanges?: Maybe<
|
|
81277
|
+
radar_updateFocusAreaProposalChanges?: Maybe<RadarUpdateFocusAreaProposalChangesMutationResponse>;
|
|
81064
81278
|
radar_updateWorkspaceSettings?: Maybe<RadarMutationResponse>;
|
|
81065
81279
|
rankCardParent?: Maybe<GenericMutationResponse>;
|
|
81066
81280
|
rankColumn?: Maybe<RankColumnOutput>;
|
|
@@ -82286,6 +82500,10 @@ export declare type MutationDevai_InvokeAutodevRovoAgentInBulkArgs = {
|
|
|
82286
82500
|
agentId: Scalars['ID']['input'];
|
|
82287
82501
|
issueIds: Array<Scalars['ID']['input']>;
|
|
82288
82502
|
};
|
|
82503
|
+
export declare type MutationDevai_InvokeSelfCorrectionArgs = {
|
|
82504
|
+
issueAri: Scalars['ID']['input'];
|
|
82505
|
+
jobId: Scalars['ID']['input'];
|
|
82506
|
+
};
|
|
82289
82507
|
export declare type MutationDisableExperimentArgs = {
|
|
82290
82508
|
experimentKey: Scalars['String']['input'];
|
|
82291
82509
|
};
|
|
@@ -82420,6 +82638,10 @@ export declare type MutationJira_SetViewFilterArgs = {
|
|
|
82420
82638
|
export declare type MutationJira_SetViewGroupByArgs = {
|
|
82421
82639
|
input: JiraSetViewGroupByInput;
|
|
82422
82640
|
};
|
|
82641
|
+
export declare type MutationJira_UpdateFieldToFieldConfigSchemeAssociationsArgs = {
|
|
82642
|
+
cloudId: Scalars['ID']['input'];
|
|
82643
|
+
input: JiraFieldToFieldConfigSchemeAssociationsInput;
|
|
82644
|
+
};
|
|
82423
82645
|
export declare type MutationJira_UpdateProjectBackgroundArgs = {
|
|
82424
82646
|
input: JiraUpdateBackgroundInput;
|
|
82425
82647
|
};
|
|
@@ -85895,6 +86117,7 @@ export declare type Query = {
|
|
|
85895
86117
|
confluence_externalCollaboratorsByCriteria?: Maybe<ConfluencePersonConnection>;
|
|
85896
86118
|
confluence_hasClearPermissionForSpace?: Maybe<Scalars['Boolean']['output']>;
|
|
85897
86119
|
confluence_hasDivergedFromDefaultSpacePermissions?: Maybe<Scalars['Boolean']['output']>;
|
|
86120
|
+
confluence_latestKnowledgeGraphObjectV2?: Maybe<KnowledgeGraphObjectResponseV2>;
|
|
85898
86121
|
confluence_macrosByIds?: Maybe<Array<Maybe<Macro>>>;
|
|
85899
86122
|
confluence_mutationsPlaceholderQuery?: Maybe<Scalars['Boolean']['output']>;
|
|
85900
86123
|
confluence_pdfExportDownloadLink?: Maybe<ConfluencePdfExportDownloadLink>;
|
|
@@ -85990,6 +86213,7 @@ export declare type Query = {
|
|
|
85990
86213
|
devai_autodevJobsByAri?: Maybe<Array<Maybe<JiraAutodevJob>>>;
|
|
85991
86214
|
devai_autodevJobsForIssue?: Maybe<JiraAutodevJobConnection>;
|
|
85992
86215
|
devai_autodevRovoAgents?: Maybe<DevAiRovoAgentConnection>;
|
|
86216
|
+
devai_codePlannerJobsForIssue?: Maybe<DevAiTechnicalPlannerJobConnection>;
|
|
85993
86217
|
devai_flowSessionGetByARI?: Maybe<DevAiFlowSession>;
|
|
85994
86218
|
devai_flowSessionGetByIDAndCloudID?: Maybe<DevAiFlowSession>;
|
|
85995
86219
|
devai_flowSessionResume?: Maybe<DevAiFlowPipeline>;
|
|
@@ -86095,6 +86319,9 @@ export declare type Query = {
|
|
|
86095
86319
|
jiraProjectRelationshipsForService?: Maybe<DevOpsServiceAndJiraProjectRelationshipConnection>;
|
|
86096
86320
|
jiraReleases?: Maybe<JiraReleases>;
|
|
86097
86321
|
jiraServers?: Maybe<JiraServersResult>;
|
|
86322
|
+
jira_associatedFieldConfigSchemes?: Maybe<JiraFieldConfigSchemesConnection>;
|
|
86323
|
+
jira_associatedFieldConfigSchemesCount?: Maybe<Scalars['Int']['output']>;
|
|
86324
|
+
jira_availableFieldConfigSchemes?: Maybe<JiraFieldConfigSchemesConnection>;
|
|
86098
86325
|
jira_boardView?: Maybe<JiraBoardView>;
|
|
86099
86326
|
jira_categoryField?: Maybe<JiraJqlField>;
|
|
86100
86327
|
jira_creatableGlobalCustomFieldTypes?: Maybe<JiraCustomFieldTypeConnection>;
|
|
@@ -86107,6 +86334,7 @@ export declare type Query = {
|
|
|
86107
86334
|
jsw?: Maybe<JswQuery>;
|
|
86108
86335
|
knowledgeBase?: Maybe<KnowledgeBaseQueryApi>;
|
|
86109
86336
|
knowledgeBaseSpacePermission_bulkQuery: Array<Maybe<KnowledgeBaseSpacePermissionQueryResponse>>;
|
|
86337
|
+
knowledgeBase_getLinkedSourceTypes?: Maybe<KnowledgeBaseLinkedSourceTypesResponse>;
|
|
86110
86338
|
knowledgeBase_searchArticles?: Maybe<KnowledgeBaseArticleSearchResponse>;
|
|
86111
86339
|
knowledgeDiscovery?: Maybe<KnowledgeDiscoveryQueryApi>;
|
|
86112
86340
|
labelSearch?: Maybe<LabelSearchResults>;
|
|
@@ -86277,6 +86505,8 @@ export declare type Query = {
|
|
|
86277
86505
|
stalePages?: Maybe<PaginatedStalePagePayloadList>;
|
|
86278
86506
|
suggest?: Maybe<QuerySuggestionApi>;
|
|
86279
86507
|
suggestedSpaces?: Maybe<PaginatedSpaceList>;
|
|
86508
|
+
supportInquiry_channelsIdentityHash?: Maybe<Scalars['String']['output']>;
|
|
86509
|
+
supportInquiry_userContext?: Maybe<SupportInquiryUserContext>;
|
|
86280
86510
|
team?: Maybe<TeamQuery>;
|
|
86281
86511
|
teamCalendarSettings?: Maybe<TeamCalendarSettings>;
|
|
86282
86512
|
teamLabels?: Maybe<PaginatedLabelList>;
|
|
@@ -86307,7 +86537,6 @@ export declare type Query = {
|
|
|
86307
86537
|
user?: Maybe<User>;
|
|
86308
86538
|
userAccessStatus?: Maybe<AccessStatus>;
|
|
86309
86539
|
userCanCreateContent?: Maybe<Scalars['Boolean']['output']>;
|
|
86310
|
-
userContext?: Maybe<SupportInquiryUserContext>;
|
|
86311
86540
|
userDna?: Maybe<UserFingerprintQuery>;
|
|
86312
86541
|
userGroupSearch?: Maybe<GraphQlUserAndGroupSearchResults>;
|
|
86313
86542
|
userLocale?: Maybe<Scalars['String']['output']>;
|
|
@@ -87583,6 +87812,12 @@ export declare type QueryConfluence_HasDivergedFromDefaultSpacePermissionsArgs =
|
|
|
87583
87812
|
cloudId: Scalars['ID']['input'];
|
|
87584
87813
|
spaceKey: Scalars['String']['input'];
|
|
87585
87814
|
};
|
|
87815
|
+
export declare type QueryConfluence_LatestKnowledgeGraphObjectV2Args = {
|
|
87816
|
+
cloudId: Scalars['String']['input'];
|
|
87817
|
+
contentId: Scalars['ID']['input'];
|
|
87818
|
+
contentType: KnowledgeGraphContentType;
|
|
87819
|
+
objectType: KnowledgeGraphObjectType;
|
|
87820
|
+
};
|
|
87586
87821
|
export declare type QueryConfluence_MacrosByIdsArgs = {
|
|
87587
87822
|
cloudId: Scalars['ID']['input'];
|
|
87588
87823
|
contentId: Scalars['ID']['input'];
|
|
@@ -88043,6 +88278,12 @@ export declare type QueryDevai_AutodevRovoAgentsArgs = {
|
|
|
88043
88278
|
query?: InputMaybe<Scalars['String']['input']>;
|
|
88044
88279
|
templatesFilter?: InputMaybe<DevAiRovoAgentTemplateFilter>;
|
|
88045
88280
|
};
|
|
88281
|
+
export declare type QueryDevai_CodePlannerJobsForIssueArgs = {
|
|
88282
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
88283
|
+
cloudId: Scalars['ID']['input'];
|
|
88284
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
88285
|
+
issueKey: Scalars['String']['input'];
|
|
88286
|
+
};
|
|
88046
88287
|
export declare type QueryDevai_FlowSessionGetByAriArgs = {
|
|
88047
88288
|
id: Scalars['ID']['input'];
|
|
88048
88289
|
};
|
|
@@ -88056,6 +88297,7 @@ export declare type QueryDevai_FlowSessionResumeArgs = {
|
|
|
88056
88297
|
export declare type QueryDevai_FlowSessionsByCreatorAndCloudIdArgs = {
|
|
88057
88298
|
cloudId: Scalars['ID']['input'];
|
|
88058
88299
|
creator: Scalars['String']['input'];
|
|
88300
|
+
statusFilter?: InputMaybe<DevAiFlowSessionsStatus>;
|
|
88059
88301
|
};
|
|
88060
88302
|
export declare type QueryDevai_RovoDevAgentsUserArgs = {
|
|
88061
88303
|
atlassianAccountId: Scalars['ID']['input'];
|
|
@@ -88377,6 +88619,22 @@ export declare type QueryJiraProjectRelationshipsForServiceArgs = {
|
|
|
88377
88619
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
88378
88620
|
id: Scalars['ID']['input'];
|
|
88379
88621
|
};
|
|
88622
|
+
export declare type QueryJira_AssociatedFieldConfigSchemesArgs = {
|
|
88623
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
88624
|
+
cloudId: Scalars['ID']['input'];
|
|
88625
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
88626
|
+
input?: InputMaybe<JiraAssociatedFieldConfigSchemesInput>;
|
|
88627
|
+
};
|
|
88628
|
+
export declare type QueryJira_AssociatedFieldConfigSchemesCountArgs = {
|
|
88629
|
+
cloudId: Scalars['ID']['input'];
|
|
88630
|
+
fieldId: Scalars['ID']['input'];
|
|
88631
|
+
};
|
|
88632
|
+
export declare type QueryJira_AvailableFieldConfigSchemesArgs = {
|
|
88633
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
88634
|
+
cloudId: Scalars['ID']['input'];
|
|
88635
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
88636
|
+
input?: InputMaybe<JiraAvailableFieldConfigSchemesInput>;
|
|
88637
|
+
};
|
|
88380
88638
|
export declare type QueryJira_BoardViewArgs = {
|
|
88381
88639
|
input: JiraBoardViewInput;
|
|
88382
88640
|
};
|
|
@@ -88412,6 +88670,9 @@ export declare type QueryKnowledgeBaseSpacePermission_BulkQueryArgs = {
|
|
|
88412
88670
|
cloudId: Scalars['ID']['input'];
|
|
88413
88671
|
spaceAris: Array<Scalars['ID']['input']>;
|
|
88414
88672
|
};
|
|
88673
|
+
export declare type QueryKnowledgeBase_GetLinkedSourceTypesArgs = {
|
|
88674
|
+
container?: InputMaybe<Scalars['ID']['input']>;
|
|
88675
|
+
};
|
|
88415
88676
|
export declare type QueryKnowledgeBase_SearchArticlesArgs = {
|
|
88416
88677
|
searchInput?: InputMaybe<KnowledgeBaseArticleSearchInput>;
|
|
88417
88678
|
};
|
|
@@ -89373,6 +89634,7 @@ export declare type RadarEntityFieldValuesArgs = {
|
|
|
89373
89634
|
export declare enum RadarEntityType {
|
|
89374
89635
|
FocusArea = "focusArea",
|
|
89375
89636
|
Position = "position",
|
|
89637
|
+
Proposal = "proposal",
|
|
89376
89638
|
Worker = "worker"
|
|
89377
89639
|
}
|
|
89378
89640
|
export declare type RadarFieldDefinition = {
|
|
@@ -89430,10 +89692,14 @@ export declare enum RadarFilterOperators {
|
|
|
89430
89692
|
Equals = "EQUALS",
|
|
89431
89693
|
GreaterThan = "GREATER_THAN",
|
|
89432
89694
|
GreaterThanOrEqual = "GREATER_THAN_OR_EQUAL",
|
|
89695
|
+
In = "IN",
|
|
89696
|
+
Is = "IS",
|
|
89697
|
+
IsNot = "IS_NOT",
|
|
89433
89698
|
LessThan = "LESS_THAN",
|
|
89434
89699
|
LessThanOrEqual = "LESS_THAN_OR_EQUAL",
|
|
89435
89700
|
Like = "LIKE",
|
|
89436
89701
|
NotEquals = "NOT_EQUALS",
|
|
89702
|
+
NotIn = "NOT_IN",
|
|
89437
89703
|
NotLike = "NOT_LIKE"
|
|
89438
89704
|
}
|
|
89439
89705
|
export declare type RadarFilterOptions = {
|
|
@@ -89557,6 +89823,11 @@ export declare type RadarPosition = Node & RadarEntity & {
|
|
|
89557
89823
|
export declare type RadarPositionFieldValuesArgs = {
|
|
89558
89824
|
fieldIdIsIn?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
89559
89825
|
};
|
|
89826
|
+
export declare type RadarPositionAllocationChange = {
|
|
89827
|
+
__typename?: 'RadarPositionAllocationChange';
|
|
89828
|
+
id: Scalars['ID']['output'];
|
|
89829
|
+
positionId: Scalars['ID']['output'];
|
|
89830
|
+
};
|
|
89560
89831
|
export declare type RadarPositionConnection = RadarConnection & {
|
|
89561
89832
|
__typename?: 'RadarPositionConnection';
|
|
89562
89833
|
edges?: Maybe<Array<RadarPositionEdge>>;
|
|
@@ -89570,7 +89841,7 @@ export declare type RadarPositionEdge = RadarEdge & {
|
|
|
89570
89841
|
node: RadarPosition;
|
|
89571
89842
|
};
|
|
89572
89843
|
export declare type RadarPositionProposalChangeInput = {
|
|
89573
|
-
changeProposalAri
|
|
89844
|
+
changeProposalAri: Scalars['ID']['input'];
|
|
89574
89845
|
positionAri: Scalars['ID']['input'];
|
|
89575
89846
|
sourceFocusAreaAri?: InputMaybe<Scalars['ID']['input']>;
|
|
89576
89847
|
targetFocusAreaAri: Scalars['ID']['input'];
|
|
@@ -89623,6 +89894,11 @@ export declare type RadarStringFieldValue = {
|
|
|
89623
89894
|
isRestricted?: Maybe<Scalars['Boolean']['output']>;
|
|
89624
89895
|
value?: Maybe<Scalars['String']['output']>;
|
|
89625
89896
|
};
|
|
89897
|
+
export declare type RadarUpdateFocusAreaProposalChangesMutationResponse = {
|
|
89898
|
+
__typename?: 'RadarUpdateFocusAreaProposalChangesMutationResponse';
|
|
89899
|
+
changes?: Maybe<Array<Maybe<RadarPositionAllocationChange>>>;
|
|
89900
|
+
success?: Maybe<Scalars['Boolean']['output']>;
|
|
89901
|
+
};
|
|
89626
89902
|
export declare type RadarUrlFieldValue = {
|
|
89627
89903
|
__typename?: 'RadarUrlFieldValue';
|
|
89628
89904
|
displayValue?: Maybe<Scalars['String']['output']>;
|
|
@@ -92567,9 +92843,7 @@ export declare type ShepherdActor = {
|
|
|
92567
92843
|
productAccess?: Maybe<Array<Maybe<ShepherdActorProductAccess>>>;
|
|
92568
92844
|
sessions?: Maybe<Array<Maybe<ShepherdActorSession>>>;
|
|
92569
92845
|
user?: Maybe<User>;
|
|
92570
|
-
|
|
92571
|
-
export declare type ShepherdActorOrgInfoArgs = {
|
|
92572
|
-
orgId?: InputMaybe<Scalars['ID']['input']>;
|
|
92846
|
+
workspaceAri?: Maybe<Scalars['ID']['output']>;
|
|
92573
92847
|
};
|
|
92574
92848
|
export declare type ShepherdActorActivity = {
|
|
92575
92849
|
__typename?: 'ShepherdActorActivity';
|
|
@@ -92598,11 +92872,13 @@ export declare type ShepherdActorMutations = {
|
|
|
92598
92872
|
};
|
|
92599
92873
|
export declare type ShepherdActorMutationsSuspendArgs = {
|
|
92600
92874
|
aaid: Scalars['ID']['input'];
|
|
92601
|
-
orgId
|
|
92875
|
+
orgId?: InputMaybe<Scalars['ID']['input']>;
|
|
92876
|
+
workspaceAri?: InputMaybe<Scalars['ID']['input']>;
|
|
92602
92877
|
};
|
|
92603
92878
|
export declare type ShepherdActorMutationsUnsuspendArgs = {
|
|
92604
92879
|
aaid: Scalars['ID']['input'];
|
|
92605
|
-
orgId
|
|
92880
|
+
orgId?: InputMaybe<Scalars['ID']['input']>;
|
|
92881
|
+
workspaceAri?: InputMaybe<Scalars['ID']['input']>;
|
|
92606
92882
|
};
|
|
92607
92883
|
export declare type ShepherdActorOrgInfo = {
|
|
92608
92884
|
__typename?: 'ShepherdActorOrgInfo';
|
|
@@ -92849,9 +93125,7 @@ export declare enum ShepherdAlertTemplateType {
|
|
|
92849
93125
|
DeletedTunnel = "DELETED_TUNNEL",
|
|
92850
93126
|
EcosystemAuditLogInstallationCreated = "ECOSYSTEM_AUDIT_LOG_INSTALLATION_CREATED",
|
|
92851
93127
|
EcosystemAuditLogInstallationDeleted = "ECOSYSTEM_AUDIT_LOG_INSTALLATION_DELETED",
|
|
92852
|
-
EcosystemAuditLogUserGrantCreated = "ECOSYSTEM_AUDIT_LOG_USER_GRANT_CREATED",
|
|
92853
93128
|
EducationalAlert = "EDUCATIONAL_ALERT",
|
|
92854
|
-
EnableScimSync = "ENABLE_SCIM_SYNC",
|
|
92855
93129
|
ExportedOrgeventscsv = "EXPORTED_ORGEVENTSCSV",
|
|
92856
93130
|
GrantAssignedJiraPermissionScheme = "GRANT_ASSIGNED_JIRA_PERMISSION_SCHEME",
|
|
92857
93131
|
IdentityPasswordResetCompletedUser = "IDENTITY_PASSWORD_RESET_COMPLETED_USER",
|
|
@@ -93452,6 +93726,7 @@ export declare type ShepherdQueryShepherdActivityArgs = {
|
|
|
93452
93726
|
export declare type ShepherdQueryShepherdActorArgs = {
|
|
93453
93727
|
aaid: Scalars['ID']['input'];
|
|
93454
93728
|
orgId?: InputMaybe<Scalars['ID']['input']>;
|
|
93729
|
+
workspaceAri?: InputMaybe<Scalars['ID']['input']>;
|
|
93455
93730
|
};
|
|
93456
93731
|
export declare type ShepherdQueryShepherdAlertArgs = {
|
|
93457
93732
|
id: Scalars['ID']['input'];
|
|
@@ -99301,6 +99576,7 @@ export declare type TrelloPlannerCalendarConnectionUpdated = {
|
|
|
99301
99576
|
export declare type TrelloPlannerCalendarDeleted = {
|
|
99302
99577
|
__typename?: 'TrelloPlannerCalendarDeleted';
|
|
99303
99578
|
id: Scalars['ID']['output'];
|
|
99579
|
+
objectId?: Maybe<Scalars['ID']['output']>;
|
|
99304
99580
|
};
|
|
99305
99581
|
export declare type TrelloPlannerCalendarEdge = {
|
|
99306
99582
|
__typename?: 'TrelloPlannerCalendarEdge';
|
|
@@ -99343,7 +99619,9 @@ export declare type TrelloPlannerCalendarEventCard = Node & {
|
|
|
99343
99619
|
__typename?: 'TrelloPlannerCalendarEventCard';
|
|
99344
99620
|
card?: Maybe<TrelloCard>;
|
|
99345
99621
|
cardId?: Maybe<Scalars['ID']['output']>;
|
|
99622
|
+
cardObjectId?: Maybe<Scalars['ID']['output']>;
|
|
99346
99623
|
id: Scalars['ID']['output'];
|
|
99624
|
+
objectId?: Maybe<Scalars['ID']['output']>;
|
|
99347
99625
|
position?: Maybe<Scalars['Float']['output']>;
|
|
99348
99626
|
};
|
|
99349
99627
|
export declare type TrelloPlannerCalendarEventCardConnection = {
|
|
@@ -99359,6 +99637,7 @@ export declare type TrelloPlannerCalendarEventCardConnectionUpdated = {
|
|
|
99359
99637
|
export declare type TrelloPlannerCalendarEventCardDeleted = {
|
|
99360
99638
|
__typename?: 'TrelloPlannerCalendarEventCardDeleted';
|
|
99361
99639
|
id: Scalars['ID']['output'];
|
|
99640
|
+
objectId?: Maybe<Scalars['ID']['output']>;
|
|
99362
99641
|
};
|
|
99363
99642
|
export declare type TrelloPlannerCalendarEventCardEdge = {
|
|
99364
99643
|
__typename?: 'TrelloPlannerCalendarEventCardEdge';
|
|
@@ -99374,7 +99653,9 @@ export declare type TrelloPlannerCalendarEventCardUpdated = {
|
|
|
99374
99653
|
boardId?: Maybe<Scalars['ID']['output']>;
|
|
99375
99654
|
card?: Maybe<TrelloPlannerCardUpdated>;
|
|
99376
99655
|
cardId?: Maybe<Scalars['ID']['output']>;
|
|
99656
|
+
cardObjectId?: Maybe<Scalars['ID']['output']>;
|
|
99377
99657
|
id: Scalars['ID']['output'];
|
|
99658
|
+
objectId?: Maybe<Scalars['ID']['output']>;
|
|
99378
99659
|
position?: Maybe<Scalars['Float']['output']>;
|
|
99379
99660
|
};
|
|
99380
99661
|
export declare type TrelloPlannerCalendarEventConferencing = {
|
|
@@ -99477,16 +99758,19 @@ export declare type TrelloPlannerCalendarUpdatedEventsArgs = {
|
|
|
99477
99758
|
export declare type TrelloPlannerCardBoardUpdated = {
|
|
99478
99759
|
__typename?: 'TrelloPlannerCardBoardUpdated';
|
|
99479
99760
|
id: Scalars['ID']['output'];
|
|
99761
|
+
objectId?: Maybe<Scalars['ID']['output']>;
|
|
99480
99762
|
};
|
|
99481
99763
|
export declare type TrelloPlannerCardListUpdated = {
|
|
99482
99764
|
__typename?: 'TrelloPlannerCardListUpdated';
|
|
99483
99765
|
board?: Maybe<TrelloPlannerCardBoardUpdated>;
|
|
99484
99766
|
id: Scalars['ID']['output'];
|
|
99767
|
+
objectId?: Maybe<Scalars['ID']['output']>;
|
|
99485
99768
|
};
|
|
99486
99769
|
export declare type TrelloPlannerCardUpdated = {
|
|
99487
99770
|
__typename?: 'TrelloPlannerCardUpdated';
|
|
99488
99771
|
id: Scalars['ID']['output'];
|
|
99489
99772
|
list?: Maybe<TrelloPlannerCardListUpdated>;
|
|
99773
|
+
objectId?: Maybe<Scalars['ID']['output']>;
|
|
99490
99774
|
};
|
|
99491
99775
|
export declare type TrelloPlannerProviderCalendar = Node & TrelloProviderCalendarInterface & {
|
|
99492
99776
|
__typename?: 'TrelloPlannerProviderCalendar';
|
|
@@ -103031,6 +103315,7 @@ export declare type WorkSuggestionsCompassScorecardCriterionTask = WorkSuggestio
|
|
|
103031
103315
|
criterionId?: Maybe<Scalars['ID']['output']>;
|
|
103032
103316
|
id: Scalars['String']['output'];
|
|
103033
103317
|
orderScore?: Maybe<WorkSuggestionsOrderScore>;
|
|
103318
|
+
scorecard?: Maybe<CompassScorecard>;
|
|
103034
103319
|
scorecardAri?: Maybe<Scalars['ID']['output']>;
|
|
103035
103320
|
title: Scalars['String']['output'];
|
|
103036
103321
|
url: Scalars['String']['output'];
|