@forge/cli-shared 6.11.0-next.8 → 6.11.0-next.9
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 +6 -0
- package/out/graphql/graphql-types.d.ts +458 -29
- package/out/graphql/graphql-types.d.ts.map +1 -1
- package/out/graphql/graphql-types.js +10 -4
- package/out/shared/error-handling.d.ts +3 -0
- package/out/shared/error-handling.d.ts.map +1 -1
- package/out/shared/error-handling.js +7 -1
- package/out/ui/text.d.ts +0 -3
- package/out/ui/text.d.ts.map +1 -1
- package/out/ui/text.js +1 -4
- package/package.json +1 -1
|
@@ -812,6 +812,7 @@ export declare type AgentStudioAgentEdge = {
|
|
|
812
812
|
export declare type AgentStudioAgentQueryInput = {
|
|
813
813
|
name?: InputMaybe<Scalars['String']['input']>;
|
|
814
814
|
onlyFavouriteAgents?: InputMaybe<Scalars['Boolean']['input']>;
|
|
815
|
+
onlyMyAgents?: InputMaybe<Scalars['Boolean']['input']>;
|
|
815
816
|
};
|
|
816
817
|
export declare type AgentStudioAgentResult = AgentStudioAssistant | AgentStudioServiceAgent | QueryError;
|
|
817
818
|
export declare enum AgentStudioAgentType {
|
|
@@ -910,6 +911,11 @@ export declare type AgentStudioCustomAction = {
|
|
|
910
911
|
knowledgeSources?: Maybe<AgentStudioKnowledgeConfiguration>;
|
|
911
912
|
name: Scalars['String']['output'];
|
|
912
913
|
};
|
|
914
|
+
export declare type AgentStudioCustomActionList = {
|
|
915
|
+
__typename?: 'AgentStudioCustomActionList';
|
|
916
|
+
customActionList: Array<AgentStudioCustomAction>;
|
|
917
|
+
};
|
|
918
|
+
export declare type AgentStudioCustomActionListResult = AgentStudioCustomActionList | QueryError;
|
|
913
919
|
export declare type AgentStudioCustomActionResult = AgentStudioAssistantCustomAction | QueryError;
|
|
914
920
|
export declare type AgentStudioEmailChannel = AgentStudioChannel & {
|
|
915
921
|
__typename?: 'AgentStudioEmailChannel';
|
|
@@ -3132,6 +3138,7 @@ export declare type Build = {
|
|
|
3132
3138
|
__typename?: 'Build';
|
|
3133
3139
|
appId: Scalars['ID']['output'];
|
|
3134
3140
|
createdAt: Scalars['String']['output'];
|
|
3141
|
+
createdByUser?: Maybe<User>;
|
|
3135
3142
|
tag: Scalars['String']['output'];
|
|
3136
3143
|
};
|
|
3137
3144
|
export declare type BuildConnection = {
|
|
@@ -3655,6 +3662,7 @@ export declare enum CcpCreateEntitlementExperienceOptionsConfirmationScreen {
|
|
|
3655
3662
|
export declare type CcpCreateEntitlementInput = {
|
|
3656
3663
|
experienceOptions?: InputMaybe<CcpCreateEntitlementExperienceOptions>;
|
|
3657
3664
|
offeringKey?: InputMaybe<Scalars['ID']['input']>;
|
|
3665
|
+
offeringName?: InputMaybe<Scalars['String']['input']>;
|
|
3658
3666
|
orderOptions?: InputMaybe<CcpCreateEntitlementOrderOptions>;
|
|
3659
3667
|
productKey?: InputMaybe<Scalars['ID']['input']>;
|
|
3660
3668
|
relatedEntitlements?: InputMaybe<Array<CcpCreateEntitlementRelationship>>;
|
|
@@ -3906,6 +3914,7 @@ export declare type CcpOffering = CommerceOffering & Node & {
|
|
|
3906
3914
|
name?: Maybe<Scalars['String']['output']>;
|
|
3907
3915
|
offeringChargeElements?: Maybe<Array<Maybe<CcpOfferingChargeElement>>>;
|
|
3908
3916
|
offeringGroup?: Maybe<CcpOfferingGroup>;
|
|
3917
|
+
offeringRelationships?: Maybe<CcpOfferingRelationshipConnection>;
|
|
3909
3918
|
pricingType?: Maybe<CcpPricingType>;
|
|
3910
3919
|
product?: Maybe<CcpProduct>;
|
|
3911
3920
|
productKey?: Maybe<Scalars['ID']['output']>;
|
|
@@ -3925,6 +3934,11 @@ export declare type CcpOffering = CommerceOffering & Node & {
|
|
|
3925
3934
|
export declare type CcpOfferingDefaultTransitionsArgs = {
|
|
3926
3935
|
offeringName?: InputMaybe<Scalars['String']['input']>;
|
|
3927
3936
|
};
|
|
3937
|
+
export declare type CcpOfferingOfferingRelationshipsArgs = {
|
|
3938
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
3939
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
3940
|
+
relationshipType?: InputMaybe<CcpRelationshipType>;
|
|
3941
|
+
};
|
|
3928
3942
|
export declare type CcpOfferingTransitionsArgs = {
|
|
3929
3943
|
offeringGroupSlug?: InputMaybe<Scalars['String']['input']>;
|
|
3930
3944
|
offeringName?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -3970,10 +3984,21 @@ export declare type CcpOfferingRelationship = {
|
|
|
3970
3984
|
updatedAt?: Maybe<Scalars['Float']['output']>;
|
|
3971
3985
|
version?: Maybe<Scalars['Int']['output']>;
|
|
3972
3986
|
};
|
|
3987
|
+
export declare type CcpOfferingRelationshipConnection = {
|
|
3988
|
+
__typename?: 'CcpOfferingRelationshipConnection';
|
|
3989
|
+
edges?: Maybe<Array<CcpOfferingRelationshipEdge>>;
|
|
3990
|
+
nodes?: Maybe<Array<Maybe<CcpOfferingRelationship>>>;
|
|
3991
|
+
pageInfo: PageInfo;
|
|
3992
|
+
};
|
|
3973
3993
|
export declare enum CcpOfferingRelationshipDirection {
|
|
3974
3994
|
From = "FROM",
|
|
3975
3995
|
To = "TO"
|
|
3976
3996
|
}
|
|
3997
|
+
export declare type CcpOfferingRelationshipEdge = {
|
|
3998
|
+
__typename?: 'CcpOfferingRelationshipEdge';
|
|
3999
|
+
cursor: Scalars['String']['output'];
|
|
4000
|
+
node?: Maybe<CcpOfferingRelationship>;
|
|
4001
|
+
};
|
|
3977
4002
|
export declare enum CcpOfferingStatus {
|
|
3978
4003
|
Active = "ACTIVE",
|
|
3979
4004
|
AtNotice = "AT_NOTICE",
|
|
@@ -4440,6 +4465,7 @@ export declare enum CcpRelationshipStatus {
|
|
|
4440
4465
|
export declare enum CcpRelationshipType {
|
|
4441
4466
|
AddonDependence = "ADDON_DEPENDENCE",
|
|
4442
4467
|
AppCompatibility = "APP_COMPATIBILITY",
|
|
4468
|
+
AppDependence = "APP_DEPENDENCE",
|
|
4443
4469
|
Collection = "COLLECTION",
|
|
4444
4470
|
CollectionTrial = "COLLECTION_TRIAL",
|
|
4445
4471
|
Enterprise = "ENTERPRISE",
|
|
@@ -4582,6 +4608,7 @@ export declare type ChannelPlatformChannelAvailabilityResponse = {
|
|
|
4582
4608
|
};
|
|
4583
4609
|
export declare enum ChannelPlatformChannelType {
|
|
4584
4610
|
Chat = "CHAT",
|
|
4611
|
+
Ticket = "TICKET",
|
|
4585
4612
|
Voice = "VOICE"
|
|
4586
4613
|
}
|
|
4587
4614
|
export declare type ChannelPlatformConnectDetails = {
|
|
@@ -4614,6 +4641,7 @@ export declare type ChannelPlatformGetChannelTokenResponse = {
|
|
|
4614
4641
|
contactId?: Maybe<Scalars['String']['output']>;
|
|
4615
4642
|
participantId?: Maybe<Scalars['String']['output']>;
|
|
4616
4643
|
participantToken?: Maybe<Scalars['String']['output']>;
|
|
4644
|
+
region?: Maybe<Scalars['String']['output']>;
|
|
4617
4645
|
};
|
|
4618
4646
|
export declare type ChannelPlatformMediaPlacement = {
|
|
4619
4647
|
__typename?: 'ChannelPlatformMediaPlacement';
|
|
@@ -4653,11 +4681,16 @@ export declare type ChannelPlatformSubmitRequestInput = {
|
|
|
4653
4681
|
name?: InputMaybe<Scalars['String']['input']>;
|
|
4654
4682
|
payload?: InputMaybe<Scalars['JSON']['input']>;
|
|
4655
4683
|
};
|
|
4656
|
-
export declare type ChannelPlatformSubmitRequestResponse =
|
|
4684
|
+
export declare type ChannelPlatformSubmitRequestResponse = {
|
|
4685
|
+
__typename?: 'ChannelPlatformSubmitRequestResponse';
|
|
4686
|
+
channel?: Maybe<ChannelPlatformChannelType>;
|
|
4687
|
+
value?: Maybe<ChannelPlatformTokenResponse>;
|
|
4688
|
+
};
|
|
4657
4689
|
export declare type ChannelPlatformSubmitTicketResponse = {
|
|
4658
4690
|
__typename?: 'ChannelPlatformSubmitTicketResponse';
|
|
4659
|
-
|
|
4691
|
+
requestUuid?: Maybe<Scalars['String']['output']>;
|
|
4660
4692
|
};
|
|
4693
|
+
export declare type ChannelPlatformTokenResponse = ChannelPlatformGetChannelTokenResponse | ChannelPlatformSubmitTicketResponse;
|
|
4661
4694
|
export declare type CheckConsentPermissionByOAuthClientIdInput = {
|
|
4662
4695
|
cloudId: Scalars['ID']['input'];
|
|
4663
4696
|
oauthClientId: Scalars['ID']['input'];
|
|
@@ -10156,14 +10189,6 @@ export declare type ConfluenceCommentUpdated = {
|
|
|
10156
10189
|
__typename?: 'ConfluenceCommentUpdated';
|
|
10157
10190
|
commentId?: Maybe<Scalars['ID']['output']>;
|
|
10158
10191
|
};
|
|
10159
|
-
export declare type ConfluenceContent = {
|
|
10160
|
-
__typename?: 'ConfluenceContent';
|
|
10161
|
-
contentTitleUpdate?: Maybe<ConfluenceContentTitleUpdate>;
|
|
10162
|
-
contentType: ConfluenceSubscriptionContentType;
|
|
10163
|
-
deltas?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
|
|
10164
|
-
eventType: Scalars['String']['output'];
|
|
10165
|
-
id: Scalars['ID']['output'];
|
|
10166
|
-
};
|
|
10167
10192
|
export declare type ConfluenceContentAnalyticsCountUserByContentType = {
|
|
10168
10193
|
__typename?: 'ConfluenceContentAnalyticsCountUserByContentType';
|
|
10169
10194
|
nodes: Array<ConfluenceCountGroupByContentItem>;
|
|
@@ -10277,11 +10302,6 @@ export declare type ConfluenceContentTitleEmoji = {
|
|
|
10277
10302
|
key?: Maybe<Scalars['String']['output']>;
|
|
10278
10303
|
value?: Maybe<Scalars['String']['output']>;
|
|
10279
10304
|
};
|
|
10280
|
-
export declare type ConfluenceContentTitleUpdate = {
|
|
10281
|
-
__typename?: 'ConfluenceContentTitleUpdate';
|
|
10282
|
-
contentTitle: Scalars['String']['output'];
|
|
10283
|
-
id: Scalars['ID']['output'];
|
|
10284
|
-
};
|
|
10285
10305
|
export declare type ConfluenceContentTitleUpdated = {
|
|
10286
10306
|
__typename?: 'ConfluenceContentTitleUpdated';
|
|
10287
10307
|
contentTitle?: Maybe<Scalars['String']['output']>;
|
|
@@ -22704,6 +22724,18 @@ export declare type DevAiFlowSession = {
|
|
|
22704
22724
|
status?: Maybe<DevAiFlowSessionsStatus>;
|
|
22705
22725
|
updatedAt?: Maybe<Scalars['String']['output']>;
|
|
22706
22726
|
};
|
|
22727
|
+
export declare type DevAiFlowSessionCompletePayload = Payload & {
|
|
22728
|
+
__typename?: 'DevAiFlowSessionCompletePayload';
|
|
22729
|
+
data?: Maybe<DevAiFlowSession>;
|
|
22730
|
+
errors?: Maybe<Array<MutationError>>;
|
|
22731
|
+
success: Scalars['Boolean']['output'];
|
|
22732
|
+
};
|
|
22733
|
+
export declare type DevAiFlowSessionCreatePayload = Payload & {
|
|
22734
|
+
__typename?: 'DevAiFlowSessionCreatePayload';
|
|
22735
|
+
data?: Maybe<DevAiFlowSession>;
|
|
22736
|
+
errors?: Maybe<Array<MutationError>>;
|
|
22737
|
+
success: Scalars['Boolean']['output'];
|
|
22738
|
+
};
|
|
22707
22739
|
export declare enum DevAiFlowSessionsStatus {
|
|
22708
22740
|
Completed = "COMPLETED",
|
|
22709
22741
|
Failed = "FAILED",
|
|
@@ -31626,6 +31658,8 @@ export declare type GraphStore = {
|
|
|
31626
31658
|
issueRecursiveAssociatedPrInverse?: Maybe<GraphStoreSimplifiedIssueRecursiveAssociatedPrInverseConnection>;
|
|
31627
31659
|
issueRecursiveAssociatedPrInverseRelationship?: Maybe<GraphStoreFullIssueRecursiveAssociatedPrConnection>;
|
|
31628
31660
|
issueRecursiveAssociatedPrRelationship?: Maybe<GraphStoreFullIssueRecursiveAssociatedPrConnection>;
|
|
31661
|
+
issueRelatedToIssue?: Maybe<GraphStoreSimplifiedIssueRelatedToIssueConnection>;
|
|
31662
|
+
issueRelatedToIssueInverse?: Maybe<GraphStoreSimplifiedIssueRelatedToIssueInverseConnection>;
|
|
31629
31663
|
issueToWhiteboard?: Maybe<GraphStoreSimplifiedIssueToWhiteboardConnection>;
|
|
31630
31664
|
issueToWhiteboardInverse?: Maybe<GraphStoreSimplifiedIssueToWhiteboardInverseConnection>;
|
|
31631
31665
|
issueToWhiteboardInverseRelationship?: Maybe<GraphStoreFullIssueToWhiteboardConnection>;
|
|
@@ -31920,6 +31954,8 @@ export declare type GraphStore = {
|
|
|
31920
31954
|
userContributedConfluencePageInverse?: Maybe<GraphStoreSimplifiedUserContributedConfluencePageInverseConnection>;
|
|
31921
31955
|
userContributedConfluenceWhiteboard?: Maybe<GraphStoreSimplifiedUserContributedConfluenceWhiteboardConnection>;
|
|
31922
31956
|
userContributedConfluenceWhiteboardInverse?: Maybe<GraphStoreSimplifiedUserContributedConfluenceWhiteboardInverseConnection>;
|
|
31957
|
+
userCreatedAtlasGoal?: Maybe<GraphStoreSimplifiedUserCreatedAtlasGoalConnection>;
|
|
31958
|
+
userCreatedAtlasGoalInverse?: Maybe<GraphStoreSimplifiedUserCreatedAtlasGoalInverseConnection>;
|
|
31923
31959
|
userCreatedBranch?: Maybe<GraphStoreSimplifiedUserCreatedBranchConnection>;
|
|
31924
31960
|
userCreatedBranchInverse?: Maybe<GraphStoreSimplifiedUserCreatedBranchInverseConnection>;
|
|
31925
31961
|
userCreatedCalendarEvent?: Maybe<GraphStoreSimplifiedUserCreatedCalendarEventConnection>;
|
|
@@ -32018,6 +32054,8 @@ export declare type GraphStore = {
|
|
|
32018
32054
|
userTaggedInIssueCommentInverse?: Maybe<GraphStoreSimplifiedUserTaggedInIssueCommentInverseConnection>;
|
|
32019
32055
|
userTriggeredDeployment?: Maybe<GraphStoreSimplifiedUserTriggeredDeploymentConnection>;
|
|
32020
32056
|
userTriggeredDeploymentInverse?: Maybe<GraphStoreSimplifiedUserTriggeredDeploymentInverseConnection>;
|
|
32057
|
+
userUpdatedAtlasGoal?: Maybe<GraphStoreSimplifiedUserUpdatedAtlasGoalConnection>;
|
|
32058
|
+
userUpdatedAtlasGoalInverse?: Maybe<GraphStoreSimplifiedUserUpdatedAtlasGoalInverseConnection>;
|
|
32021
32059
|
userUpdatedAtlasProject?: Maybe<GraphStoreSimplifiedUserUpdatedAtlasProjectConnection>;
|
|
32022
32060
|
userUpdatedAtlasProjectInverse?: Maybe<GraphStoreSimplifiedUserUpdatedAtlasProjectInverseConnection>;
|
|
32023
32061
|
userUpdatedComment?: Maybe<GraphStoreSimplifiedUserUpdatedCommentConnection>;
|
|
@@ -33689,6 +33727,20 @@ export declare type GraphStoreIssueRecursiveAssociatedPrRelationshipArgs = {
|
|
|
33689
33727
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
33690
33728
|
id: Scalars['ID']['input'];
|
|
33691
33729
|
};
|
|
33730
|
+
export declare type GraphStoreIssueRelatedToIssueArgs = {
|
|
33731
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
33732
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
33733
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
33734
|
+
id: Scalars['ID']['input'];
|
|
33735
|
+
sort?: InputMaybe<GraphStoreIssueRelatedToIssueSortInput>;
|
|
33736
|
+
};
|
|
33737
|
+
export declare type GraphStoreIssueRelatedToIssueInverseArgs = {
|
|
33738
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
33739
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
33740
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
33741
|
+
id: Scalars['ID']['input'];
|
|
33742
|
+
sort?: InputMaybe<GraphStoreIssueRelatedToIssueSortInput>;
|
|
33743
|
+
};
|
|
33692
33744
|
export declare type GraphStoreIssueToWhiteboardArgs = {
|
|
33693
33745
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
33694
33746
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -35641,6 +35693,20 @@ export declare type GraphStoreUserContributedConfluenceWhiteboardInverseArgs = {
|
|
|
35641
35693
|
id: Scalars['ID']['input'];
|
|
35642
35694
|
sort?: InputMaybe<GraphStoreUserContributedConfluenceWhiteboardSortInput>;
|
|
35643
35695
|
};
|
|
35696
|
+
export declare type GraphStoreUserCreatedAtlasGoalArgs = {
|
|
35697
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
35698
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
35699
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
35700
|
+
id: Scalars['ID']['input'];
|
|
35701
|
+
sort?: InputMaybe<GraphStoreUserCreatedAtlasGoalSortInput>;
|
|
35702
|
+
};
|
|
35703
|
+
export declare type GraphStoreUserCreatedAtlasGoalInverseArgs = {
|
|
35704
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
35705
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
35706
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
35707
|
+
id: Scalars['ID']['input'];
|
|
35708
|
+
sort?: InputMaybe<GraphStoreUserCreatedAtlasGoalSortInput>;
|
|
35709
|
+
};
|
|
35644
35710
|
export declare type GraphStoreUserCreatedBranchArgs = {
|
|
35645
35711
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
35646
35712
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -36333,6 +36399,20 @@ export declare type GraphStoreUserTriggeredDeploymentInverseArgs = {
|
|
|
36333
36399
|
id: Scalars['ID']['input'];
|
|
36334
36400
|
sort?: InputMaybe<GraphStoreUserTriggeredDeploymentSortInput>;
|
|
36335
36401
|
};
|
|
36402
|
+
export declare type GraphStoreUserUpdatedAtlasGoalArgs = {
|
|
36403
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
36404
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
36405
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
36406
|
+
id: Scalars['ID']['input'];
|
|
36407
|
+
sort?: InputMaybe<GraphStoreUserUpdatedAtlasGoalSortInput>;
|
|
36408
|
+
};
|
|
36409
|
+
export declare type GraphStoreUserUpdatedAtlasGoalInverseArgs = {
|
|
36410
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
36411
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
36412
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
36413
|
+
id: Scalars['ID']['input'];
|
|
36414
|
+
sort?: InputMaybe<GraphStoreUserUpdatedAtlasGoalSortInput>;
|
|
36415
|
+
};
|
|
36336
36416
|
export declare type GraphStoreUserUpdatedAtlasProjectArgs = {
|
|
36337
36417
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
36338
36418
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -42681,6 +42761,9 @@ export declare type GraphStoreIssueRecursiveAssociatedPrSortInput = {
|
|
|
42681
42761
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
42682
42762
|
toAti?: InputMaybe<GraphStoreSortInput>;
|
|
42683
42763
|
};
|
|
42764
|
+
export declare type GraphStoreIssueRelatedToIssueSortInput = {
|
|
42765
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
42766
|
+
};
|
|
42684
42767
|
export declare type GraphStoreIssueToWhiteboardConditionalFilterInput = {
|
|
42685
42768
|
createdAt?: InputMaybe<GraphStoreDateFilterInput>;
|
|
42686
42769
|
fromAti?: InputMaybe<GraphStoreAtiFilterInput>;
|
|
@@ -46098,6 +46181,34 @@ export declare type GraphStoreSimplifiedIssueRecursiveAssociatedPrInverseEdge =
|
|
|
46098
46181
|
};
|
|
46099
46182
|
export declare type GraphStoreSimplifiedIssueRecursiveAssociatedPrInverseUnion = JiraIssue;
|
|
46100
46183
|
export declare type GraphStoreSimplifiedIssueRecursiveAssociatedPrUnion = DevOpsPullRequestDetails | ExternalPullRequest;
|
|
46184
|
+
export declare type GraphStoreSimplifiedIssueRelatedToIssueConnection = HasPageInfo & {
|
|
46185
|
+
__typename?: 'GraphStoreSimplifiedIssueRelatedToIssueConnection';
|
|
46186
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedIssueRelatedToIssueEdge>>>;
|
|
46187
|
+
pageInfo: PageInfo;
|
|
46188
|
+
};
|
|
46189
|
+
export declare type GraphStoreSimplifiedIssueRelatedToIssueEdge = {
|
|
46190
|
+
__typename?: 'GraphStoreSimplifiedIssueRelatedToIssueEdge';
|
|
46191
|
+
createdAt: Scalars['DateTime']['output'];
|
|
46192
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
46193
|
+
id: Scalars['ID']['output'];
|
|
46194
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
46195
|
+
node?: Maybe<GraphStoreSimplifiedIssueRelatedToIssueUnion>;
|
|
46196
|
+
};
|
|
46197
|
+
export declare type GraphStoreSimplifiedIssueRelatedToIssueInverseConnection = HasPageInfo & {
|
|
46198
|
+
__typename?: 'GraphStoreSimplifiedIssueRelatedToIssueInverseConnection';
|
|
46199
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedIssueRelatedToIssueInverseEdge>>>;
|
|
46200
|
+
pageInfo: PageInfo;
|
|
46201
|
+
};
|
|
46202
|
+
export declare type GraphStoreSimplifiedIssueRelatedToIssueInverseEdge = {
|
|
46203
|
+
__typename?: 'GraphStoreSimplifiedIssueRelatedToIssueInverseEdge';
|
|
46204
|
+
createdAt: Scalars['DateTime']['output'];
|
|
46205
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
46206
|
+
id: Scalars['ID']['output'];
|
|
46207
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
46208
|
+
node?: Maybe<GraphStoreSimplifiedIssueRelatedToIssueInverseUnion>;
|
|
46209
|
+
};
|
|
46210
|
+
export declare type GraphStoreSimplifiedIssueRelatedToIssueInverseUnion = JiraIssue;
|
|
46211
|
+
export declare type GraphStoreSimplifiedIssueRelatedToIssueUnion = JiraIssue;
|
|
46101
46212
|
export declare type GraphStoreSimplifiedIssueToWhiteboardConnection = HasPageInfo & HasTotal & {
|
|
46102
46213
|
__typename?: 'GraphStoreSimplifiedIssueToWhiteboardConnection';
|
|
46103
46214
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedIssueToWhiteboardEdge>>>;
|
|
@@ -48966,6 +49077,34 @@ export declare type GraphStoreSimplifiedUserContributedConfluenceWhiteboardInver
|
|
|
48966
49077
|
};
|
|
48967
49078
|
export declare type GraphStoreSimplifiedUserContributedConfluenceWhiteboardInverseUnion = AppUser | AtlassianAccountUser | CustomerUser;
|
|
48968
49079
|
export declare type GraphStoreSimplifiedUserContributedConfluenceWhiteboardUnion = ConfluenceWhiteboard;
|
|
49080
|
+
export declare type GraphStoreSimplifiedUserCreatedAtlasGoalConnection = HasPageInfo & {
|
|
49081
|
+
__typename?: 'GraphStoreSimplifiedUserCreatedAtlasGoalConnection';
|
|
49082
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserCreatedAtlasGoalEdge>>>;
|
|
49083
|
+
pageInfo: PageInfo;
|
|
49084
|
+
};
|
|
49085
|
+
export declare type GraphStoreSimplifiedUserCreatedAtlasGoalEdge = {
|
|
49086
|
+
__typename?: 'GraphStoreSimplifiedUserCreatedAtlasGoalEdge';
|
|
49087
|
+
createdAt: Scalars['DateTime']['output'];
|
|
49088
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
49089
|
+
id: Scalars['ID']['output'];
|
|
49090
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
49091
|
+
node?: Maybe<GraphStoreSimplifiedUserCreatedAtlasGoalUnion>;
|
|
49092
|
+
};
|
|
49093
|
+
export declare type GraphStoreSimplifiedUserCreatedAtlasGoalInverseConnection = HasPageInfo & {
|
|
49094
|
+
__typename?: 'GraphStoreSimplifiedUserCreatedAtlasGoalInverseConnection';
|
|
49095
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserCreatedAtlasGoalInverseEdge>>>;
|
|
49096
|
+
pageInfo: PageInfo;
|
|
49097
|
+
};
|
|
49098
|
+
export declare type GraphStoreSimplifiedUserCreatedAtlasGoalInverseEdge = {
|
|
49099
|
+
__typename?: 'GraphStoreSimplifiedUserCreatedAtlasGoalInverseEdge';
|
|
49100
|
+
createdAt: Scalars['DateTime']['output'];
|
|
49101
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
49102
|
+
id: Scalars['ID']['output'];
|
|
49103
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
49104
|
+
node?: Maybe<GraphStoreSimplifiedUserCreatedAtlasGoalInverseUnion>;
|
|
49105
|
+
};
|
|
49106
|
+
export declare type GraphStoreSimplifiedUserCreatedAtlasGoalInverseUnion = AppUser | AtlassianAccountUser | CustomerUser;
|
|
49107
|
+
export declare type GraphStoreSimplifiedUserCreatedAtlasGoalUnion = TownsquareGoal;
|
|
48969
49108
|
export declare type GraphStoreSimplifiedUserCreatedBranchConnection = HasPageInfo & {
|
|
48970
49109
|
__typename?: 'GraphStoreSimplifiedUserCreatedBranchConnection';
|
|
48971
49110
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserCreatedBranchEdge>>>;
|
|
@@ -50354,6 +50493,34 @@ export declare type GraphStoreSimplifiedUserTriggeredDeploymentInverseEdge = {
|
|
|
50354
50493
|
};
|
|
50355
50494
|
export declare type GraphStoreSimplifiedUserTriggeredDeploymentInverseUnion = AppUser | AtlassianAccountUser | CustomerUser;
|
|
50356
50495
|
export declare type GraphStoreSimplifiedUserTriggeredDeploymentUnion = DeploymentSummary | ExternalDeployment;
|
|
50496
|
+
export declare type GraphStoreSimplifiedUserUpdatedAtlasGoalConnection = HasPageInfo & {
|
|
50497
|
+
__typename?: 'GraphStoreSimplifiedUserUpdatedAtlasGoalConnection';
|
|
50498
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserUpdatedAtlasGoalEdge>>>;
|
|
50499
|
+
pageInfo: PageInfo;
|
|
50500
|
+
};
|
|
50501
|
+
export declare type GraphStoreSimplifiedUserUpdatedAtlasGoalEdge = {
|
|
50502
|
+
__typename?: 'GraphStoreSimplifiedUserUpdatedAtlasGoalEdge';
|
|
50503
|
+
createdAt: Scalars['DateTime']['output'];
|
|
50504
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
50505
|
+
id: Scalars['ID']['output'];
|
|
50506
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
50507
|
+
node?: Maybe<GraphStoreSimplifiedUserUpdatedAtlasGoalUnion>;
|
|
50508
|
+
};
|
|
50509
|
+
export declare type GraphStoreSimplifiedUserUpdatedAtlasGoalInverseConnection = HasPageInfo & {
|
|
50510
|
+
__typename?: 'GraphStoreSimplifiedUserUpdatedAtlasGoalInverseConnection';
|
|
50511
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserUpdatedAtlasGoalInverseEdge>>>;
|
|
50512
|
+
pageInfo: PageInfo;
|
|
50513
|
+
};
|
|
50514
|
+
export declare type GraphStoreSimplifiedUserUpdatedAtlasGoalInverseEdge = {
|
|
50515
|
+
__typename?: 'GraphStoreSimplifiedUserUpdatedAtlasGoalInverseEdge';
|
|
50516
|
+
createdAt: Scalars['DateTime']['output'];
|
|
50517
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
50518
|
+
id: Scalars['ID']['output'];
|
|
50519
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
50520
|
+
node?: Maybe<GraphStoreSimplifiedUserUpdatedAtlasGoalInverseUnion>;
|
|
50521
|
+
};
|
|
50522
|
+
export declare type GraphStoreSimplifiedUserUpdatedAtlasGoalInverseUnion = AppUser | AtlassianAccountUser | CustomerUser;
|
|
50523
|
+
export declare type GraphStoreSimplifiedUserUpdatedAtlasGoalUnion = TownsquareGoal;
|
|
50357
50524
|
export declare type GraphStoreSimplifiedUserUpdatedAtlasProjectConnection = HasPageInfo & {
|
|
50358
50525
|
__typename?: 'GraphStoreSimplifiedUserUpdatedAtlasProjectConnection';
|
|
50359
50526
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserUpdatedAtlasProjectEdge>>>;
|
|
@@ -51674,6 +51841,9 @@ export declare type GraphStoreUserContributedConfluencePageSortInput = {
|
|
|
51674
51841
|
export declare type GraphStoreUserContributedConfluenceWhiteboardSortInput = {
|
|
51675
51842
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
51676
51843
|
};
|
|
51844
|
+
export declare type GraphStoreUserCreatedAtlasGoalSortInput = {
|
|
51845
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
51846
|
+
};
|
|
51677
51847
|
export declare type GraphStoreUserCreatedBranchSortInput = {
|
|
51678
51848
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
51679
51849
|
};
|
|
@@ -51871,6 +52041,9 @@ export declare type GraphStoreUserTaggedInIssueCommentSortInput = {
|
|
|
51871
52041
|
export declare type GraphStoreUserTriggeredDeploymentSortInput = {
|
|
51872
52042
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
51873
52043
|
};
|
|
52044
|
+
export declare type GraphStoreUserUpdatedAtlasGoalSortInput = {
|
|
52045
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
52046
|
+
};
|
|
51874
52047
|
export declare type GraphStoreUserUpdatedAtlasProjectSortInput = {
|
|
51875
52048
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
51876
52049
|
};
|
|
@@ -60620,6 +60793,7 @@ export declare type JiraIssue = HasMercuryProjectFields & JiraScenarioIssueLike
|
|
|
60620
60793
|
mercuryTargetDateStart?: Maybe<Scalars['DateTime']['output']>;
|
|
60621
60794
|
mercuryTargetDateType?: Maybe<MercuryProjectTargetDateType>;
|
|
60622
60795
|
parentIssueField?: Maybe<JiraParentIssueField>;
|
|
60796
|
+
pinnedComments?: Maybe<JiraPinnedCommentsResponse>;
|
|
60623
60797
|
planScenarioValues?: Maybe<JiraScenarioIssueValues>;
|
|
60624
60798
|
postIncidentReviewLinks?: Maybe<GraphIncidentAssociatedPostIncidentReviewLinkRelationshipConnection>;
|
|
60625
60799
|
priorityField?: Maybe<JiraPriorityField>;
|
|
@@ -62024,6 +62198,7 @@ export declare type JiraIssueSearchViewConfigSettings = {
|
|
|
62024
62198
|
hideDone?: Maybe<Scalars['Boolean']['output']>;
|
|
62025
62199
|
isGroupingEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
62026
62200
|
isHierarchyEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
62201
|
+
isSortedByGlobalRankOnly?: Maybe<Scalars['Boolean']['output']>;
|
|
62027
62202
|
isViewConfigModified?: Maybe<Scalars['Boolean']['output']>;
|
|
62028
62203
|
};
|
|
62029
62204
|
export declare type JiraIssueSearchViewContextInput = {
|
|
@@ -62454,6 +62629,10 @@ export declare enum JiraJourneyParentIssueType {
|
|
|
62454
62629
|
Request = "REQUEST"
|
|
62455
62630
|
}
|
|
62456
62631
|
export declare type JiraJourneyParentIssueValueType = JiraServiceManagementRequestType;
|
|
62632
|
+
export declare type JiraJourneyProjectSettings = {
|
|
62633
|
+
__typename?: 'JiraJourneyProjectSettings';
|
|
62634
|
+
isJourneyFeatureEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
62635
|
+
};
|
|
62457
62636
|
export declare type JiraJourneySettings = {
|
|
62458
62637
|
__typename?: 'JiraJourneySettings';
|
|
62459
62638
|
maxJourneyItems?: Maybe<Scalars['Long']['output']>;
|
|
@@ -62729,9 +62908,13 @@ export declare type JiraJqlField = {
|
|
|
62729
62908
|
jqlTerm: Scalars['ID']['output'];
|
|
62730
62909
|
operators: Array<JiraJqlOperator>;
|
|
62731
62910
|
searchTemplate?: Maybe<JiraJqlSearchTemplate>;
|
|
62911
|
+
shouldExcludeInScope?: Maybe<Scalars['Boolean']['output']>;
|
|
62732
62912
|
shouldShowInContext?: Maybe<Scalars['Boolean']['output']>;
|
|
62733
62913
|
type?: Maybe<Scalars['String']['output']>;
|
|
62734
62914
|
};
|
|
62915
|
+
export declare type JiraJqlFieldShouldExcludeInScopeArgs = {
|
|
62916
|
+
scope?: InputMaybe<JiraJqlScopeInput>;
|
|
62917
|
+
};
|
|
62735
62918
|
export declare type JiraJqlFieldConnection = {
|
|
62736
62919
|
__typename?: 'JiraJqlFieldConnection';
|
|
62737
62920
|
edges?: Maybe<Array<Maybe<JiraJqlFieldEdge>>>;
|
|
@@ -65430,6 +65613,11 @@ export declare enum JiraPermissionType {
|
|
|
65430
65613
|
BrowseProjects = "BROWSE_PROJECTS",
|
|
65431
65614
|
BulkChange = "BULK_CHANGE"
|
|
65432
65615
|
}
|
|
65616
|
+
export declare type JiraPinnedCommentsResponse = {
|
|
65617
|
+
__typename?: 'JiraPinnedCommentsResponse';
|
|
65618
|
+
maxPinnedCommentLimitReached?: Maybe<Scalars['Boolean']['output']>;
|
|
65619
|
+
pinnedComments?: Maybe<Array<Maybe<JiraComment>>>;
|
|
65620
|
+
};
|
|
65433
65621
|
export declare type JiraPlan = Node & {
|
|
65434
65622
|
__typename?: 'JiraPlan';
|
|
65435
65623
|
defaultNavigationItem?: Maybe<JiraNavigationItemResult>;
|
|
@@ -66715,6 +66903,7 @@ export declare type JiraQuery = {
|
|
|
66715
66903
|
jiraIssueSearchView?: Maybe<JiraView>;
|
|
66716
66904
|
jiraJourneyConfiguration?: Maybe<JiraJourneyConfiguration>;
|
|
66717
66905
|
jiraJourneyItem?: Maybe<JiraJourneyItem>;
|
|
66906
|
+
jiraJourneyProjectSettings?: Maybe<JiraJourneyProjectSettings>;
|
|
66718
66907
|
jiraJourneySettings?: Maybe<JiraJourneySettings>;
|
|
66719
66908
|
jiraProject?: Maybe<JiraProject>;
|
|
66720
66909
|
jiraProjectByKey?: Maybe<JiraProject>;
|
|
@@ -67327,6 +67516,10 @@ export declare type JiraQueryJiraJourneyItemArgs = {
|
|
|
67327
67516
|
isEditing?: InputMaybe<Scalars['Boolean']['input']>;
|
|
67328
67517
|
journeyId: Scalars['ID']['input'];
|
|
67329
67518
|
};
|
|
67519
|
+
export declare type JiraQueryJiraJourneyProjectSettingsArgs = {
|
|
67520
|
+
cloudId: Scalars['ID']['input'];
|
|
67521
|
+
projectKey: Scalars['String']['input'];
|
|
67522
|
+
};
|
|
67330
67523
|
export declare type JiraQueryJiraJourneySettingsArgs = {
|
|
67331
67524
|
cloudId: Scalars['ID']['input'];
|
|
67332
67525
|
};
|
|
@@ -71267,6 +71460,15 @@ export declare enum JiraTransitionSortOption {
|
|
|
71267
71460
|
OpsBar = "OPS_BAR",
|
|
71268
71461
|
OpsBarThenStatusCategory = "OPS_BAR_THEN_STATUS_CATEGORY"
|
|
71269
71462
|
}
|
|
71463
|
+
export declare type JiraTrashGlobalCustomFieldsInput = {
|
|
71464
|
+
fieldIds: Array<Scalars['String']['input']>;
|
|
71465
|
+
};
|
|
71466
|
+
export declare type JiraTrashGlobalCustomFieldsPayload = Payload & {
|
|
71467
|
+
__typename?: 'JiraTrashGlobalCustomFieldsPayload';
|
|
71468
|
+
errors?: Maybe<Array<MutationError>>;
|
|
71469
|
+
failedFieldIds?: Maybe<Array<Scalars['String']['output']>>;
|
|
71470
|
+
success: Scalars['Boolean']['output'];
|
|
71471
|
+
};
|
|
71270
71472
|
export declare type JiraUiExposedError = {
|
|
71271
71473
|
__typename?: 'JiraUIExposedError';
|
|
71272
71474
|
message?: Maybe<Scalars['String']['output']>;
|
|
@@ -74565,6 +74767,11 @@ export declare type KnowledgeDiscoveryPageInfo = {
|
|
|
74565
74767
|
hasPreviousPage: Scalars['Boolean']['output'];
|
|
74566
74768
|
startCursor?: Maybe<Scalars['String']['output']>;
|
|
74567
74769
|
};
|
|
74770
|
+
export declare type KnowledgeDiscoveryPopularSearchQuery = {
|
|
74771
|
+
__typename?: 'KnowledgeDiscoveryPopularSearchQuery';
|
|
74772
|
+
isPopular: Scalars['Boolean']['output'];
|
|
74773
|
+
};
|
|
74774
|
+
export declare type KnowledgeDiscoveryPopularSearchQueryResult = KnowledgeDiscoveryPopularSearchQuery | QueryError;
|
|
74568
74775
|
export declare type KnowledgeDiscoveryQueryApi = {
|
|
74569
74776
|
__typename?: 'KnowledgeDiscoveryQueryApi';
|
|
74570
74777
|
adminhubBookmark?: Maybe<KnowledgeDiscoveryAdminhubBookmarkResult>;
|
|
@@ -74576,6 +74783,7 @@ export declare type KnowledgeDiscoveryQueryApi = {
|
|
|
74576
74783
|
definitionHistoryV2?: Maybe<KnowledgeDiscoveryDefinitionHistoryResult>;
|
|
74577
74784
|
definitionV2?: Maybe<KnowledgeDiscoveryDefinitionResult>;
|
|
74578
74785
|
keyPhrases?: Maybe<KnowledgeDiscoveryKeyPhrasesResult>;
|
|
74786
|
+
popularSearchQuery?: Maybe<KnowledgeDiscoveryPopularSearchQueryResult>;
|
|
74579
74787
|
relatedEntities?: Maybe<KnowledgeDiscoveryRelatedEntitiesResult>;
|
|
74580
74788
|
searchRelatedEntities?: Maybe<KnowledgeDiscoverySearchRelatedEntitiesResult>;
|
|
74581
74789
|
searchTeam?: Maybe<KnowledgeDiscoveryTeamSearchResult>;
|
|
@@ -74641,6 +74849,10 @@ export declare type KnowledgeDiscoveryQueryApiKeyPhrasesArgs = {
|
|
|
74641
74849
|
limited?: InputMaybe<Scalars['Boolean']['input']>;
|
|
74642
74850
|
workspaceId?: InputMaybe<Scalars['String']['input']>;
|
|
74643
74851
|
};
|
|
74852
|
+
export declare type KnowledgeDiscoveryQueryApiPopularSearchQueryArgs = {
|
|
74853
|
+
cloudId: Scalars['String']['input'];
|
|
74854
|
+
searchQuery: Scalars['String']['input'];
|
|
74855
|
+
};
|
|
74644
74856
|
export declare type KnowledgeDiscoveryQueryApiRelatedEntitiesArgs = {
|
|
74645
74857
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
74646
74858
|
cloudId?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -78259,6 +78471,7 @@ export declare type MercuryCreateFocusAreaChange = MercuryChangeInterface & Node
|
|
|
78259
78471
|
focusAreaOwner?: Maybe<User>;
|
|
78260
78472
|
focusAreaType?: Maybe<Scalars['ID']['output']>;
|
|
78261
78473
|
id: Scalars['ID']['output'];
|
|
78474
|
+
sourceFocusArea?: Maybe<MercuryFocusArea>;
|
|
78262
78475
|
updatedBy?: Maybe<User>;
|
|
78263
78476
|
updatedDate: Scalars['DateTime']['output'];
|
|
78264
78477
|
};
|
|
@@ -80831,7 +81044,9 @@ export declare type Mutation = {
|
|
|
80831
81044
|
deleteWebTriggerUrl?: Maybe<DeleteWebTriggerUrlResponse>;
|
|
80832
81045
|
devAi?: Maybe<DevAiMutations>;
|
|
80833
81046
|
devOps?: Maybe<DevOpsMutation>;
|
|
81047
|
+
devai_completeFlowSession?: Maybe<DevAiFlowSessionCompletePayload>;
|
|
80834
81048
|
devai_continueJobWithPrompt?: Maybe<DevAiAutodevContinueJobWithPromptPayload>;
|
|
81049
|
+
devai_createFlow?: Maybe<DevAiFlowSessionCreatePayload>;
|
|
80835
81050
|
devai_createTechnicalPlannerJob?: Maybe<DevAiCreateTechnicalPlannerJobPayload>;
|
|
80836
81051
|
devai_flowCreate?: Maybe<DevAiFlowSession>;
|
|
80837
81052
|
devai_flowSessionComplete?: Maybe<DevAiFlowSession>;
|
|
@@ -80894,6 +81109,7 @@ export declare type Mutation = {
|
|
|
80894
81109
|
jira_setIssueSearchHideDoneItems?: Maybe<JiraSetIssueSearchHideDoneItemsPayload>;
|
|
80895
81110
|
jira_setViewFilter?: Maybe<JiraSetViewFilterPayload>;
|
|
80896
81111
|
jira_setViewGroupBy?: Maybe<JiraSetViewGroupByPayload>;
|
|
81112
|
+
jira_trashGlobalCustomFields?: Maybe<JiraTrashGlobalCustomFieldsPayload>;
|
|
80897
81113
|
jira_updateFieldToFieldConfigSchemeAssociations?: Maybe<JiraFieldToFieldConfigSchemeAssociationsPayload>;
|
|
80898
81114
|
jira_updateProjectBackground?: Maybe<JiraProjectUpdateBackgroundMutationPayload>;
|
|
80899
81115
|
jira_updateProjectsSidebarMenu?: Maybe<JiraProjectsSidebarMenu>;
|
|
@@ -81007,6 +81223,21 @@ export declare type Mutation = {
|
|
|
81007
81223
|
shareResource?: Maybe<ShareResourcePayload>;
|
|
81008
81224
|
shepherd?: Maybe<ShepherdMutation>;
|
|
81009
81225
|
softDeleteSpace?: Maybe<SoftDeleteSpacePayload>;
|
|
81226
|
+
spf_attachRelatedContent?: Maybe<SpfAttachRelatedContentPayload>;
|
|
81227
|
+
spf_createComment?: Maybe<SpfCreateCommentPayload>;
|
|
81228
|
+
spf_createDependency?: Maybe<SpfCreateDependencyPayload>;
|
|
81229
|
+
spf_deleteDependency?: Maybe<SpfDeleteDependencyPayload>;
|
|
81230
|
+
spf_updateComment?: Maybe<SpfUpdateCommentPayload>;
|
|
81231
|
+
spf_updateDependencyDescription?: Maybe<SpfUpdateDependencyPayload>;
|
|
81232
|
+
spf_updateDependencyImpactedWork?: Maybe<SpfUpdateDependencyPayload>;
|
|
81233
|
+
spf_updateDependencyJustification?: Maybe<SpfUpdateDependencyPayload>;
|
|
81234
|
+
spf_updateDependencyName?: Maybe<SpfUpdateDependencyPayload>;
|
|
81235
|
+
spf_updateDependencyOwner?: Maybe<SpfUpdateDependencyPayload>;
|
|
81236
|
+
spf_updateDependencyPriority?: Maybe<SpfUpdateDependencyPayload>;
|
|
81237
|
+
spf_updateDependencyReceivingTeam?: Maybe<SpfUpdateDependencyPayload>;
|
|
81238
|
+
spf_updateDependencyRequestingTeam?: Maybe<SpfUpdateDependencyPayload>;
|
|
81239
|
+
spf_updateDependencyStatus?: Maybe<SpfUpdateDependencyPayload>;
|
|
81240
|
+
spf_updateDependencyTargetDate?: Maybe<SpfUpdateDependencyPayload>;
|
|
81010
81241
|
splitIssue?: Maybe<SplitIssueOutput>;
|
|
81011
81242
|
startSprint?: Maybe<SprintResponse>;
|
|
81012
81243
|
subscribeToApp?: Maybe<AppSubscribePayload>;
|
|
@@ -82162,12 +82393,24 @@ export declare type MutationDeleteTemplateArgs = {
|
|
|
82162
82393
|
export declare type MutationDeleteWebTriggerUrlArgs = {
|
|
82163
82394
|
id: Scalars['ID']['input'];
|
|
82164
82395
|
};
|
|
82396
|
+
export declare type MutationDevai_CompleteFlowSessionArgs = {
|
|
82397
|
+
id: Scalars['ID']['input'];
|
|
82398
|
+
};
|
|
82165
82399
|
export declare type MutationDevai_ContinueJobWithPromptArgs = {
|
|
82166
82400
|
cloudId: Scalars['ID']['input'];
|
|
82167
82401
|
jobId: Scalars['ID']['input'];
|
|
82168
82402
|
prompt?: InputMaybe<Scalars['String']['input']>;
|
|
82169
82403
|
repoUrl: Scalars['String']['input'];
|
|
82170
82404
|
};
|
|
82405
|
+
export declare type MutationDevai_CreateFlowArgs = {
|
|
82406
|
+
additionalInfoJSON?: InputMaybe<Scalars['String']['input']>;
|
|
82407
|
+
cloudId: Scalars['String']['input'];
|
|
82408
|
+
createdBy: Scalars['String']['input'];
|
|
82409
|
+
issueARI?: InputMaybe<Scalars['ID']['input']>;
|
|
82410
|
+
jiraHost: Scalars['String']['input'];
|
|
82411
|
+
jiraIssueJSON?: InputMaybe<Scalars['String']['input']>;
|
|
82412
|
+
repoUrl: Scalars['URL']['input'];
|
|
82413
|
+
};
|
|
82171
82414
|
export declare type MutationDevai_CreateTechnicalPlannerJobArgs = {
|
|
82172
82415
|
description?: InputMaybe<Scalars['String']['input']>;
|
|
82173
82416
|
issueAri: Scalars['ID']['input'];
|
|
@@ -82338,6 +82581,10 @@ export declare type MutationJira_SetViewFilterArgs = {
|
|
|
82338
82581
|
export declare type MutationJira_SetViewGroupByArgs = {
|
|
82339
82582
|
input: JiraSetViewGroupByInput;
|
|
82340
82583
|
};
|
|
82584
|
+
export declare type MutationJira_TrashGlobalCustomFieldsArgs = {
|
|
82585
|
+
cloudId: Scalars['ID']['input'];
|
|
82586
|
+
input: JiraTrashGlobalCustomFieldsInput;
|
|
82587
|
+
};
|
|
82341
82588
|
export declare type MutationJira_UpdateFieldToFieldConfigSchemeAssociationsArgs = {
|
|
82342
82589
|
cloudId: Scalars['ID']['input'];
|
|
82343
82590
|
input: JiraFieldToFieldConfigSchemeAssociationsInput;
|
|
@@ -82666,6 +82913,51 @@ export declare type MutationShareResourceArgs = {
|
|
|
82666
82913
|
export declare type MutationSoftDeleteSpaceArgs = {
|
|
82667
82914
|
spaceKey: Scalars['String']['input'];
|
|
82668
82915
|
};
|
|
82916
|
+
export declare type MutationSpf_AttachRelatedContentArgs = {
|
|
82917
|
+
input: SpfAttachRelatedContentInput;
|
|
82918
|
+
};
|
|
82919
|
+
export declare type MutationSpf_CreateCommentArgs = {
|
|
82920
|
+
input: SpfCreateCommentInput;
|
|
82921
|
+
};
|
|
82922
|
+
export declare type MutationSpf_CreateDependencyArgs = {
|
|
82923
|
+
input: SpfCreateDependencyInput;
|
|
82924
|
+
};
|
|
82925
|
+
export declare type MutationSpf_DeleteDependencyArgs = {
|
|
82926
|
+
input: SpfDeleteDependencyInput;
|
|
82927
|
+
};
|
|
82928
|
+
export declare type MutationSpf_UpdateCommentArgs = {
|
|
82929
|
+
input: SpfUpdateCommentDataInput;
|
|
82930
|
+
};
|
|
82931
|
+
export declare type MutationSpf_UpdateDependencyDescriptionArgs = {
|
|
82932
|
+
input: SpfUpdateDependencyDescriptionInput;
|
|
82933
|
+
};
|
|
82934
|
+
export declare type MutationSpf_UpdateDependencyImpactedWorkArgs = {
|
|
82935
|
+
input: SpfUpdateDependencyImpactedWorkInput;
|
|
82936
|
+
};
|
|
82937
|
+
export declare type MutationSpf_UpdateDependencyJustificationArgs = {
|
|
82938
|
+
input: SpfUpdateDependencyJustificationInput;
|
|
82939
|
+
};
|
|
82940
|
+
export declare type MutationSpf_UpdateDependencyNameArgs = {
|
|
82941
|
+
input: SpfUpdateDependencyNameInput;
|
|
82942
|
+
};
|
|
82943
|
+
export declare type MutationSpf_UpdateDependencyOwnerArgs = {
|
|
82944
|
+
input: SpfUpdateDependencyOwnerInput;
|
|
82945
|
+
};
|
|
82946
|
+
export declare type MutationSpf_UpdateDependencyPriorityArgs = {
|
|
82947
|
+
input: SpfUpdateDependencyPriorityInput;
|
|
82948
|
+
};
|
|
82949
|
+
export declare type MutationSpf_UpdateDependencyReceivingTeamArgs = {
|
|
82950
|
+
input: SpfUpdateDependencyReceivingTeamInput;
|
|
82951
|
+
};
|
|
82952
|
+
export declare type MutationSpf_UpdateDependencyRequestingTeamArgs = {
|
|
82953
|
+
input: SpfUpdateDependencyRequestingTeamInput;
|
|
82954
|
+
};
|
|
82955
|
+
export declare type MutationSpf_UpdateDependencyStatusArgs = {
|
|
82956
|
+
input: SpfUpdateDependencyStatusInput;
|
|
82957
|
+
};
|
|
82958
|
+
export declare type MutationSpf_UpdateDependencyTargetDateArgs = {
|
|
82959
|
+
input: SpfUpdateDependencyTargetDateInput;
|
|
82960
|
+
};
|
|
82669
82961
|
export declare type MutationSplitIssueArgs = {
|
|
82670
82962
|
input?: InputMaybe<SplitIssueInput>;
|
|
82671
82963
|
};
|
|
@@ -85591,6 +85883,7 @@ export declare type Query = {
|
|
|
85591
85883
|
agentAI_summarizeIssue?: Maybe<AgentAiIssueSummaryResult>;
|
|
85592
85884
|
agentStudio_agentById?: Maybe<AgentStudioAgentResult>;
|
|
85593
85885
|
agentStudio_customActionById?: Maybe<AgentStudioCustomActionResult>;
|
|
85886
|
+
agentStudio_customActionListByContainerId?: Maybe<AgentStudioCustomActionListResult>;
|
|
85594
85887
|
agentStudio_customActionsByIds?: Maybe<Array<Maybe<AgentStudioCustomAction>>>;
|
|
85595
85888
|
agentStudio_getAgents?: Maybe<AgentStudioAgentsConnection>;
|
|
85596
85889
|
agentStudio_suggestConversationStarters?: Maybe<AgentStudioSuggestConversationStartersResult>;
|
|
@@ -86112,6 +86405,7 @@ export declare type Query = {
|
|
|
86112
86405
|
marketplacePricingPlan?: Maybe<MarketplacePricingPlan>;
|
|
86113
86406
|
marketplaceStore: MarketplaceStoreQueryApi;
|
|
86114
86407
|
me: AuthenticationContext;
|
|
86408
|
+
mediaConfiguration?: Maybe<MediaConfiguration>;
|
|
86115
86409
|
mercury?: Maybe<MercuryQueryApi>;
|
|
86116
86410
|
mercury_jiraAlignProvider?: Maybe<MercuryJiraAlignProviderQueryApi>;
|
|
86117
86411
|
mercury_providerOrchestration?: Maybe<MercuryProviderOrchestrationQueryApi>;
|
|
@@ -86188,6 +86482,7 @@ export declare type Query = {
|
|
|
86188
86482
|
radar_groupMetrics?: Maybe<RadarGroupMetricsConnection>;
|
|
86189
86483
|
radar_positionByAri?: Maybe<RadarPosition>;
|
|
86190
86484
|
radar_positionsByAris?: Maybe<Array<RadarPosition>>;
|
|
86485
|
+
radar_positionsByEntitySearch?: Maybe<RadarPositionsByEntityConnection>;
|
|
86191
86486
|
radar_positionsSearch?: Maybe<RadarPositionConnection>;
|
|
86192
86487
|
radar_workerByAri?: Maybe<RadarWorker>;
|
|
86193
86488
|
radar_workersByAris?: Maybe<Array<RadarWorker>>;
|
|
@@ -86323,6 +86618,10 @@ export declare type QueryAgentStudio_AgentByIdArgs = {
|
|
|
86323
86618
|
export declare type QueryAgentStudio_CustomActionByIdArgs = {
|
|
86324
86619
|
id: Scalars['ID']['input'];
|
|
86325
86620
|
};
|
|
86621
|
+
export declare type QueryAgentStudio_CustomActionListByContainerIdArgs = {
|
|
86622
|
+
cloudId: Scalars['String']['input'];
|
|
86623
|
+
containerId: Scalars['String']['input'];
|
|
86624
|
+
};
|
|
86326
86625
|
export declare type QueryAgentStudio_CustomActionsByIdsArgs = {
|
|
86327
86626
|
ids: Array<Scalars['ID']['input']>;
|
|
86328
86627
|
};
|
|
@@ -86554,7 +86853,7 @@ export declare type QueryChannelPlatform_SampleQueueByIdArgs = {
|
|
|
86554
86853
|
};
|
|
86555
86854
|
export declare type QueryChannelPlatform_SubmitRequestArgs = {
|
|
86556
86855
|
request?: InputMaybe<ChannelPlatformSubmitRequestInput>;
|
|
86557
|
-
requestType?: InputMaybe<
|
|
86856
|
+
requestType?: InputMaybe<ChannelPlatformChannelType>;
|
|
86558
86857
|
};
|
|
86559
86858
|
export declare type QueryClassificationLevelArgs = {
|
|
86560
86859
|
id: Scalars['String']['input'];
|
|
@@ -88701,6 +89000,15 @@ export declare type QueryRadar_PositionByAriArgs = {
|
|
|
88701
89000
|
export declare type QueryRadar_PositionsByArisArgs = {
|
|
88702
89001
|
ids: Array<Scalars['ID']['input']>;
|
|
88703
89002
|
};
|
|
89003
|
+
export declare type QueryRadar_PositionsByEntitySearchArgs = {
|
|
89004
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
89005
|
+
before?: InputMaybe<Scalars['String']['input']>;
|
|
89006
|
+
cloudId: Scalars['ID']['input'];
|
|
89007
|
+
entity: RadarPositionsByEntityType;
|
|
89008
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
89009
|
+
last?: InputMaybe<Scalars['Int']['input']>;
|
|
89010
|
+
rql?: InputMaybe<Scalars['String']['input']>;
|
|
89011
|
+
};
|
|
88704
89012
|
export declare type QueryRadar_PositionsSearchArgs = {
|
|
88705
89013
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
88706
89014
|
before?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -89215,14 +89523,12 @@ export declare type QuotaInfo = {
|
|
|
89215
89523
|
};
|
|
89216
89524
|
export declare type RadarAriFieldValue = {
|
|
89217
89525
|
__typename?: 'RadarAriFieldValue';
|
|
89218
|
-
isHidden?: Maybe<Scalars['Boolean']['output']>;
|
|
89219
89526
|
isRestricted?: Maybe<Scalars['Boolean']['output']>;
|
|
89220
89527
|
value?: Maybe<RadarAriObject>;
|
|
89221
89528
|
};
|
|
89222
89529
|
export declare type RadarAriObject = MercuryChangeProposal | MercuryFocusArea | RadarPosition | RadarWorker;
|
|
89223
89530
|
export declare type RadarBooleanFieldValue = {
|
|
89224
89531
|
__typename?: 'RadarBooleanFieldValue';
|
|
89225
|
-
isHidden?: Maybe<Scalars['Boolean']['output']>;
|
|
89226
89532
|
isRestricted?: Maybe<Scalars['Boolean']['output']>;
|
|
89227
89533
|
value?: Maybe<Scalars['Boolean']['output']>;
|
|
89228
89534
|
};
|
|
@@ -89273,7 +89579,6 @@ export declare enum RadarCustomFieldSyncStatus {
|
|
|
89273
89579
|
}
|
|
89274
89580
|
export declare type RadarDateFieldValue = {
|
|
89275
89581
|
__typename?: 'RadarDateFieldValue';
|
|
89276
|
-
isHidden?: Maybe<Scalars['Boolean']['output']>;
|
|
89277
89582
|
isRestricted?: Maybe<Scalars['Boolean']['output']>;
|
|
89278
89583
|
value?: Maybe<Scalars['DateTime']['output']>;
|
|
89279
89584
|
};
|
|
@@ -89463,7 +89768,6 @@ export declare type RadarNumericFieldDefinition = RadarFieldDefinition & {
|
|
|
89463
89768
|
export declare type RadarNumericFieldValue = {
|
|
89464
89769
|
__typename?: 'RadarNumericFieldValue';
|
|
89465
89770
|
displayValue?: Maybe<Scalars['Int']['output']>;
|
|
89466
|
-
isHidden?: Maybe<Scalars['Boolean']['output']>;
|
|
89467
89771
|
isRestricted?: Maybe<Scalars['Boolean']['output']>;
|
|
89468
89772
|
value?: Maybe<Scalars['Int']['output']>;
|
|
89469
89773
|
};
|
|
@@ -89479,11 +89783,9 @@ export declare type RadarPermissionsInput = {
|
|
|
89479
89783
|
};
|
|
89480
89784
|
export declare type RadarPosition = Node & RadarEntity & {
|
|
89481
89785
|
__typename?: 'RadarPosition';
|
|
89482
|
-
directReports?: Maybe<Array<RadarPosition>>;
|
|
89483
89786
|
entityId: Scalars['ID']['output'];
|
|
89484
89787
|
fieldValues: Array<RadarFieldValueIdPair>;
|
|
89485
89788
|
id: Scalars['ID']['output'];
|
|
89486
|
-
isManager: Scalars['Boolean']['output'];
|
|
89487
89789
|
manager?: Maybe<RadarPosition>;
|
|
89488
89790
|
reportingLine?: Maybe<Array<RadarPosition>>;
|
|
89489
89791
|
role?: Maybe<RadarPositionRole>;
|
|
@@ -89520,6 +89822,32 @@ export declare enum RadarPositionRole {
|
|
|
89520
89822
|
IndividualContributor = "INDIVIDUAL_CONTRIBUTOR",
|
|
89521
89823
|
Manager = "MANAGER"
|
|
89522
89824
|
}
|
|
89825
|
+
export declare type RadarPositionsByAriObject = MercuryFocusArea;
|
|
89826
|
+
export declare type RadarPositionsByEntity = {
|
|
89827
|
+
__typename?: 'RadarPositionsByEntity';
|
|
89828
|
+
entity?: Maybe<RadarPositionsByAriObject>;
|
|
89829
|
+
fieldValues: Array<RadarFieldValueIdPair>;
|
|
89830
|
+
id: Scalars['ID']['output'];
|
|
89831
|
+
type: RadarEntityType;
|
|
89832
|
+
};
|
|
89833
|
+
export declare type RadarPositionsByEntityFieldValuesArgs = {
|
|
89834
|
+
fieldIdIsIn?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
89835
|
+
};
|
|
89836
|
+
export declare type RadarPositionsByEntityConnection = RadarConnection & {
|
|
89837
|
+
__typename?: 'RadarPositionsByEntityConnection';
|
|
89838
|
+
edges?: Maybe<Array<RadarPositionsByEntityEdge>>;
|
|
89839
|
+
nodes?: Maybe<Array<RadarPositionsByEntity>>;
|
|
89840
|
+
pageInfo: PageInfo;
|
|
89841
|
+
totalCount: Scalars['Int']['output'];
|
|
89842
|
+
};
|
|
89843
|
+
export declare type RadarPositionsByEntityEdge = RadarEdge & {
|
|
89844
|
+
__typename?: 'RadarPositionsByEntityEdge';
|
|
89845
|
+
cursor: Scalars['String']['output'];
|
|
89846
|
+
node: RadarPositionsByEntity;
|
|
89847
|
+
};
|
|
89848
|
+
export declare enum RadarPositionsByEntityType {
|
|
89849
|
+
FocusArea = "focusArea"
|
|
89850
|
+
}
|
|
89523
89851
|
export declare type RadarPrincipalByResourceRole = {
|
|
89524
89852
|
__typename?: 'RadarPrincipalByResourceRole';
|
|
89525
89853
|
principals: Array<RadarGroupPrincipal>;
|
|
@@ -89558,13 +89886,11 @@ export declare type RadarStatusFieldValue = {
|
|
|
89558
89886
|
__typename?: 'RadarStatusFieldValue';
|
|
89559
89887
|
appearance?: Maybe<RadarStatusAppearance>;
|
|
89560
89888
|
displayValue?: Maybe<Scalars['String']['output']>;
|
|
89561
|
-
isHidden?: Maybe<Scalars['Boolean']['output']>;
|
|
89562
89889
|
isRestricted?: Maybe<Scalars['Boolean']['output']>;
|
|
89563
89890
|
value?: Maybe<Scalars['String']['output']>;
|
|
89564
89891
|
};
|
|
89565
89892
|
export declare type RadarStringFieldValue = {
|
|
89566
89893
|
__typename?: 'RadarStringFieldValue';
|
|
89567
|
-
isHidden?: Maybe<Scalars['Boolean']['output']>;
|
|
89568
89894
|
isRestricted?: Maybe<Scalars['Boolean']['output']>;
|
|
89569
89895
|
value?: Maybe<Scalars['String']['output']>;
|
|
89570
89896
|
};
|
|
@@ -89577,7 +89903,6 @@ export declare type RadarUrlFieldValue = {
|
|
|
89577
89903
|
__typename?: 'RadarUrlFieldValue';
|
|
89578
89904
|
displayValue?: Maybe<Scalars['String']['output']>;
|
|
89579
89905
|
icon?: Maybe<Scalars['String']['output']>;
|
|
89580
|
-
isHidden?: Maybe<Scalars['Boolean']['output']>;
|
|
89581
89906
|
isRestricted?: Maybe<Scalars['Boolean']['output']>;
|
|
89582
89907
|
value?: Maybe<Scalars['String']['output']>;
|
|
89583
89908
|
};
|
|
@@ -94956,6 +95281,16 @@ export declare type SpaceWithExemption = {
|
|
|
94956
95281
|
status?: Maybe<Scalars['String']['output']>;
|
|
94957
95282
|
type?: Maybe<Scalars['String']['output']>;
|
|
94958
95283
|
};
|
|
95284
|
+
export declare type SpfAttachRelatedContentInput = {
|
|
95285
|
+
dependencyId: Scalars['ID']['input'];
|
|
95286
|
+
url: Scalars['URL']['input'];
|
|
95287
|
+
};
|
|
95288
|
+
export declare type SpfAttachRelatedContentPayload = Payload & {
|
|
95289
|
+
__typename?: 'SpfAttachRelatedContentPayload';
|
|
95290
|
+
errors?: Maybe<Array<MutationError>>;
|
|
95291
|
+
relatedContent?: Maybe<SpfRelatedContent>;
|
|
95292
|
+
success: Scalars['Boolean']['output'];
|
|
95293
|
+
};
|
|
94959
95294
|
export declare type SpfComment = {
|
|
94960
95295
|
__typename?: 'SpfComment';
|
|
94961
95296
|
createdAt: Scalars['DateTime']['output'];
|
|
@@ -94975,6 +95310,44 @@ export declare type SpfCommentEdge = {
|
|
|
94975
95310
|
cursor: Scalars['String']['output'];
|
|
94976
95311
|
node?: Maybe<SpfComment>;
|
|
94977
95312
|
};
|
|
95313
|
+
export declare type SpfCreateCommentInput = {
|
|
95314
|
+
data: Scalars['String']['input'];
|
|
95315
|
+
dependencyId: Scalars['ID']['input'];
|
|
95316
|
+
};
|
|
95317
|
+
export declare type SpfCreateCommentPayload = Payload & {
|
|
95318
|
+
__typename?: 'SpfCreateCommentPayload';
|
|
95319
|
+
comment?: Maybe<SpfComment>;
|
|
95320
|
+
errors?: Maybe<Array<MutationError>>;
|
|
95321
|
+
success: Scalars['Boolean']['output'];
|
|
95322
|
+
};
|
|
95323
|
+
export declare type SpfCreateDependencyInput = {
|
|
95324
|
+
cloudId: Scalars['ID']['input'];
|
|
95325
|
+
description?: InputMaybe<Scalars['String']['input']>;
|
|
95326
|
+
impactedWorkId: Scalars['String']['input'];
|
|
95327
|
+
justification?: InputMaybe<Scalars['String']['input']>;
|
|
95328
|
+
name: Scalars['String']['input'];
|
|
95329
|
+
ownerId?: InputMaybe<Scalars['String']['input']>;
|
|
95330
|
+
priority: SpfPriority;
|
|
95331
|
+
receivingTeamId?: InputMaybe<Scalars['String']['input']>;
|
|
95332
|
+
requesterId: Scalars['String']['input'];
|
|
95333
|
+
requestingTeamId?: InputMaybe<Scalars['String']['input']>;
|
|
95334
|
+
status: SpfDependencyStatus;
|
|
95335
|
+
targetDate?: InputMaybe<SpfTargetDateInput>;
|
|
95336
|
+
};
|
|
95337
|
+
export declare type SpfCreateDependencyPayload = Payload & {
|
|
95338
|
+
__typename?: 'SpfCreateDependencyPayload';
|
|
95339
|
+
dependency?: Maybe<SpfDependency>;
|
|
95340
|
+
errors?: Maybe<Array<MutationError>>;
|
|
95341
|
+
success: Scalars['Boolean']['output'];
|
|
95342
|
+
};
|
|
95343
|
+
export declare type SpfDeleteDependencyInput = {
|
|
95344
|
+
id: Scalars['ID']['input'];
|
|
95345
|
+
};
|
|
95346
|
+
export declare type SpfDeleteDependencyPayload = Payload & {
|
|
95347
|
+
__typename?: 'SpfDeleteDependencyPayload';
|
|
95348
|
+
errors?: Maybe<Array<MutationError>>;
|
|
95349
|
+
success: Scalars['Boolean']['output'];
|
|
95350
|
+
};
|
|
94978
95351
|
export declare type SpfDependency = Node & {
|
|
94979
95352
|
__typename?: 'SpfDependency';
|
|
94980
95353
|
comments?: Maybe<SpfCommentConnection>;
|
|
@@ -95064,11 +95437,71 @@ export declare type SpfTargetDate = {
|
|
|
95064
95437
|
targetDate?: Maybe<Scalars['String']['output']>;
|
|
95065
95438
|
targetDateType?: Maybe<SpfTargetDateType>;
|
|
95066
95439
|
};
|
|
95440
|
+
export declare type SpfTargetDateInput = {
|
|
95441
|
+
targetDate: Scalars['String']['input'];
|
|
95442
|
+
targetDateType: SpfTargetDateType;
|
|
95443
|
+
};
|
|
95067
95444
|
export declare enum SpfTargetDateType {
|
|
95068
95445
|
Day = "DAY",
|
|
95069
95446
|
Month = "MONTH",
|
|
95070
95447
|
Quarter = "QUARTER"
|
|
95071
95448
|
}
|
|
95449
|
+
export declare type SpfUpdateCommentDataInput = {
|
|
95450
|
+
data: Scalars['String']['input'];
|
|
95451
|
+
id: Scalars['ID']['input'];
|
|
95452
|
+
};
|
|
95453
|
+
export declare type SpfUpdateCommentPayload = Payload & {
|
|
95454
|
+
__typename?: 'SpfUpdateCommentPayload';
|
|
95455
|
+
comment?: Maybe<SpfComment>;
|
|
95456
|
+
errors?: Maybe<Array<MutationError>>;
|
|
95457
|
+
success: Scalars['Boolean']['output'];
|
|
95458
|
+
};
|
|
95459
|
+
export declare type SpfUpdateDependencyDescriptionInput = {
|
|
95460
|
+
description?: InputMaybe<Scalars['String']['input']>;
|
|
95461
|
+
id: Scalars['ID']['input'];
|
|
95462
|
+
};
|
|
95463
|
+
export declare type SpfUpdateDependencyImpactedWorkInput = {
|
|
95464
|
+
id: Scalars['ID']['input'];
|
|
95465
|
+
impactedWorkId: Scalars['String']['input'];
|
|
95466
|
+
};
|
|
95467
|
+
export declare type SpfUpdateDependencyJustificationInput = {
|
|
95468
|
+
id: Scalars['ID']['input'];
|
|
95469
|
+
justification?: InputMaybe<Scalars['String']['input']>;
|
|
95470
|
+
};
|
|
95471
|
+
export declare type SpfUpdateDependencyNameInput = {
|
|
95472
|
+
id: Scalars['ID']['input'];
|
|
95473
|
+
name: Scalars['String']['input'];
|
|
95474
|
+
};
|
|
95475
|
+
export declare type SpfUpdateDependencyOwnerInput = {
|
|
95476
|
+
id: Scalars['ID']['input'];
|
|
95477
|
+
ownerId?: InputMaybe<Scalars['String']['input']>;
|
|
95478
|
+
};
|
|
95479
|
+
export declare type SpfUpdateDependencyPayload = Payload & {
|
|
95480
|
+
__typename?: 'SpfUpdateDependencyPayload';
|
|
95481
|
+
dependency?: Maybe<SpfDependency>;
|
|
95482
|
+
errors?: Maybe<Array<MutationError>>;
|
|
95483
|
+
success: Scalars['Boolean']['output'];
|
|
95484
|
+
};
|
|
95485
|
+
export declare type SpfUpdateDependencyPriorityInput = {
|
|
95486
|
+
id: Scalars['ID']['input'];
|
|
95487
|
+
priority: SpfPriority;
|
|
95488
|
+
};
|
|
95489
|
+
export declare type SpfUpdateDependencyReceivingTeamInput = {
|
|
95490
|
+
id: Scalars['ID']['input'];
|
|
95491
|
+
receivingTeamId?: InputMaybe<Scalars['String']['input']>;
|
|
95492
|
+
};
|
|
95493
|
+
export declare type SpfUpdateDependencyRequestingTeamInput = {
|
|
95494
|
+
id: Scalars['ID']['input'];
|
|
95495
|
+
requestingTeamId?: InputMaybe<Scalars['String']['input']>;
|
|
95496
|
+
};
|
|
95497
|
+
export declare type SpfUpdateDependencyStatusInput = {
|
|
95498
|
+
id: Scalars['ID']['input'];
|
|
95499
|
+
status: SpfDependencyStatus;
|
|
95500
|
+
};
|
|
95501
|
+
export declare type SpfUpdateDependencyTargetDateInput = {
|
|
95502
|
+
id: Scalars['ID']['input'];
|
|
95503
|
+
targetDate?: InputMaybe<SpfTargetDateInput>;
|
|
95504
|
+
};
|
|
95072
95505
|
export declare type SplitIssueInput = {
|
|
95073
95506
|
newIssues: Array<InputMaybe<NewSplitIssueRequest>>;
|
|
95074
95507
|
originalIssue: OriginalSplitIssue;
|
|
@@ -95281,7 +95714,6 @@ export declare type SubjectsByTypeUserWithRestrictionsArgs = {
|
|
|
95281
95714
|
export declare type Subscription = {
|
|
95282
95715
|
__typename?: 'Subscription';
|
|
95283
95716
|
confluence_onContentModified?: Maybe<ConfluenceContentModified>;
|
|
95284
|
-
confluence_onContentUpdated?: Maybe<ConfluenceContent>;
|
|
95285
95717
|
devOps?: Maybe<AriGraphSubscriptions>;
|
|
95286
95718
|
devai_onAutodevJobLogGroupsUpdated?: Maybe<DevAiAutodevLogGroupConnection>;
|
|
95287
95719
|
devai_onAutodevJobLogsListUpdated?: Maybe<DevAiAutodevLogConnection>;
|
|
@@ -95300,9 +95732,6 @@ export declare type Subscription = {
|
|
|
95300
95732
|
export declare type SubscriptionConfluence_OnContentModifiedArgs = {
|
|
95301
95733
|
id: Scalars['ID']['input'];
|
|
95302
95734
|
};
|
|
95303
|
-
export declare type SubscriptionConfluence_OnContentUpdatedArgs = {
|
|
95304
|
-
id: Scalars['ID']['input'];
|
|
95305
|
-
};
|
|
95306
95735
|
export declare type SubscriptionDevai_OnAutodevJobLogGroupsUpdatedArgs = {
|
|
95307
95736
|
cloudId: Scalars['ID']['input'];
|
|
95308
95737
|
jobId: Scalars['ID']['input'];
|