@forge/cli-shared 6.6.0-next.5 → 6.6.0-next.6-experimental-62518dd
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 +28 -0
- package/LICENSE.txt +7 -0
- package/out/graphql/graphql-types.d.ts +738 -7
- package/out/graphql/graphql-types.d.ts.map +1 -1
- package/out/graphql/graphql-types.js +1 -1
- package/package.json +5 -5
|
@@ -770,14 +770,28 @@ export declare type AgentAiSummary = {
|
|
|
770
770
|
adf?: Maybe<Scalars['String']['output']>;
|
|
771
771
|
text?: Maybe<Scalars['String']['output']>;
|
|
772
772
|
};
|
|
773
|
+
export declare type AgentStudioAction = {
|
|
774
|
+
__typename?: 'AgentStudioAction';
|
|
775
|
+
actionKey: Scalars['String']['output'];
|
|
776
|
+
};
|
|
777
|
+
export declare type AgentStudioActionConfiguration = {
|
|
778
|
+
__typename?: 'AgentStudioActionConfiguration';
|
|
779
|
+
actions?: Maybe<Array<AgentStudioAction>>;
|
|
780
|
+
};
|
|
773
781
|
export declare type AgentStudioAgent = {
|
|
782
|
+
description?: Maybe<Scalars['String']['output']>;
|
|
774
783
|
id: Scalars['ID']['output'];
|
|
775
784
|
name?: Maybe<Scalars['String']['output']>;
|
|
776
785
|
};
|
|
777
786
|
export declare type AgentStudioAgentResult = AgentStudioAssistant | QueryError;
|
|
778
787
|
export declare type AgentStudioAssistant = AgentStudioAgent & Node & {
|
|
779
788
|
__typename?: 'AgentStudioAssistant';
|
|
789
|
+
actions?: Maybe<AgentStudioActionConfiguration>;
|
|
790
|
+
conversationStarters?: Maybe<Array<Scalars['String']['output']>>;
|
|
791
|
+
creator?: Maybe<User>;
|
|
792
|
+
description?: Maybe<Scalars['String']['output']>;
|
|
780
793
|
id: Scalars['ID']['output'];
|
|
794
|
+
instructions?: Maybe<Scalars['String']['output']>;
|
|
781
795
|
name?: Maybe<Scalars['String']['output']>;
|
|
782
796
|
};
|
|
783
797
|
export declare enum AlertEventStatus {
|
|
@@ -1332,6 +1346,7 @@ export declare type AppInstallationSubscribeTask = AppInstallationTask & {
|
|
|
1332
1346
|
};
|
|
1333
1347
|
export declare type AppInstallationSummary = {
|
|
1334
1348
|
__typename?: 'AppInstallationSummary';
|
|
1349
|
+
id: Scalars['ID']['output'];
|
|
1335
1350
|
installationContext: Scalars['ID']['output'];
|
|
1336
1351
|
primaryInstallationContext: Scalars['ID']['output'];
|
|
1337
1352
|
secondaryInstallationContexts?: Maybe<Array<Scalars['ID']['output']>>;
|
|
@@ -2187,6 +2202,31 @@ export declare enum AtlassianProductHostingType {
|
|
|
2187
2202
|
DataCenter = "DATA_CENTER",
|
|
2188
2203
|
Server = "SERVER"
|
|
2189
2204
|
}
|
|
2205
|
+
export declare type AtlassianUser = {
|
|
2206
|
+
__typename?: 'AtlassianUser';
|
|
2207
|
+
companyName?: Maybe<Scalars['String']['output']>;
|
|
2208
|
+
confluence?: Maybe<ConfluenceUser>;
|
|
2209
|
+
displayName?: Maybe<Scalars['String']['output']>;
|
|
2210
|
+
emails?: Maybe<Array<Maybe<AtlassianUserEmail>>>;
|
|
2211
|
+
id?: Maybe<Scalars['ID']['output']>;
|
|
2212
|
+
isActive?: Maybe<Scalars['Boolean']['output']>;
|
|
2213
|
+
locale?: Maybe<Scalars['String']['output']>;
|
|
2214
|
+
location?: Maybe<Scalars['String']['output']>;
|
|
2215
|
+
photos?: Maybe<Array<Maybe<AtlassianUserPhoto>>>;
|
|
2216
|
+
team?: Maybe<Scalars['String']['output']>;
|
|
2217
|
+
timeZone?: Maybe<Scalars['String']['output']>;
|
|
2218
|
+
title?: Maybe<Scalars['String']['output']>;
|
|
2219
|
+
};
|
|
2220
|
+
export declare type AtlassianUserEmail = {
|
|
2221
|
+
__typename?: 'AtlassianUserEmail';
|
|
2222
|
+
isPrimary?: Maybe<Scalars['Boolean']['output']>;
|
|
2223
|
+
value?: Maybe<Scalars['String']['output']>;
|
|
2224
|
+
};
|
|
2225
|
+
export declare type AtlassianUserPhoto = {
|
|
2226
|
+
__typename?: 'AtlassianUserPhoto';
|
|
2227
|
+
isPrimary?: Maybe<Scalars['Boolean']['output']>;
|
|
2228
|
+
value?: Maybe<Scalars['String']['output']>;
|
|
2229
|
+
};
|
|
2190
2230
|
export declare type AttachCompassComponentDataManagerInput = {
|
|
2191
2231
|
componentId: Scalars['ID']['input'];
|
|
2192
2232
|
externalSourceURL?: InputMaybe<Scalars['URL']['input']>;
|
|
@@ -3695,6 +3735,7 @@ export declare type CcpTrial = CommerceTrial & {
|
|
|
3695
3735
|
offeringId?: Maybe<Scalars['ID']['output']>;
|
|
3696
3736
|
pricingPlanId?: Maybe<Scalars['ID']['output']>;
|
|
3697
3737
|
startTimestamp?: Maybe<Scalars['Float']['output']>;
|
|
3738
|
+
timeLeft?: Maybe<Scalars['Float']['output']>;
|
|
3698
3739
|
};
|
|
3699
3740
|
export declare type CcpUsageUpdateCadence = {
|
|
3700
3741
|
__typename?: 'CcpUsageUpdateCadence';
|
|
@@ -4119,6 +4160,7 @@ export declare type CommerceTransactionAccountExperienceCapabilities = {
|
|
|
4119
4160
|
export declare type CommerceTrial = {
|
|
4120
4161
|
endTimestamp?: Maybe<Scalars['Float']['output']>;
|
|
4121
4162
|
startTimestamp?: Maybe<Scalars['Float']['output']>;
|
|
4163
|
+
timeLeft?: Maybe<Scalars['Float']['output']>;
|
|
4122
4164
|
};
|
|
4123
4165
|
export declare type CompanyHubFeature = {
|
|
4124
4166
|
__typename?: 'CompanyHubFeature';
|
|
@@ -15325,6 +15367,22 @@ export declare type ConfluenceUpdateValuePagePropertyPayload = Payload & {
|
|
|
15325
15367
|
pageProperty?: Maybe<ConfluencePageProperty>;
|
|
15326
15368
|
success: Scalars['Boolean']['output'];
|
|
15327
15369
|
};
|
|
15370
|
+
export declare type ConfluenceUser = {
|
|
15371
|
+
__typename?: 'ConfluenceUser';
|
|
15372
|
+
accessStatus: AccessStatus;
|
|
15373
|
+
accountId?: Maybe<Scalars['String']['output']>;
|
|
15374
|
+
currentUser?: Maybe<CurrentUserOperations>;
|
|
15375
|
+
groups: Array<Maybe<Scalars['String']['output']>>;
|
|
15376
|
+
groupsWithId: Array<Maybe<Group>>;
|
|
15377
|
+
hasBlog?: Maybe<Scalars['Boolean']['output']>;
|
|
15378
|
+
hasPersonalSpace?: Maybe<Scalars['Boolean']['output']>;
|
|
15379
|
+
locale: Scalars['String']['output'];
|
|
15380
|
+
operations: Array<Maybe<OperationCheckResult>>;
|
|
15381
|
+
permissionType?: Maybe<SitePermissionType>;
|
|
15382
|
+
roles?: Maybe<GraphQlConfluenceUserRoles>;
|
|
15383
|
+
space?: Maybe<Space>;
|
|
15384
|
+
userKey?: Maybe<Scalars['String']['output']>;
|
|
15385
|
+
};
|
|
15328
15386
|
export declare type ConfluenceUserInfo = {
|
|
15329
15387
|
__typename?: 'ConfluenceUserInfo';
|
|
15330
15388
|
type: ConfluenceUserType;
|
|
@@ -18886,6 +18944,11 @@ export declare type CurrentUser = {
|
|
|
18886
18944
|
__typename?: 'CurrentUser';
|
|
18887
18945
|
permissions: Array<Maybe<Scalars['SoftwareBoardPermission']['output']>>;
|
|
18888
18946
|
};
|
|
18947
|
+
export declare type CurrentUserOperations = {
|
|
18948
|
+
__typename?: 'CurrentUserOperations';
|
|
18949
|
+
canFollow?: Maybe<Scalars['Boolean']['output']>;
|
|
18950
|
+
followed?: Maybe<Scalars['Boolean']['output']>;
|
|
18951
|
+
};
|
|
18889
18952
|
export declare type CustomEntity = {
|
|
18890
18953
|
attributes: Array<CustomEntityAttribute>;
|
|
18891
18954
|
indexes?: InputMaybe<Array<CustomEntityIndex>>;
|
|
@@ -22715,6 +22778,7 @@ export declare enum EcosystemInstallationRecoveryMode {
|
|
|
22715
22778
|
RecoverPreviousInstall = "RECOVER_PREVIOUS_INSTALL"
|
|
22716
22779
|
}
|
|
22717
22780
|
export declare enum EcosystemLicenseMode {
|
|
22781
|
+
Agent = "AGENT",
|
|
22718
22782
|
UserAccess = "USER_ACCESS"
|
|
22719
22783
|
}
|
|
22720
22784
|
export declare type EcosystemMutation = {
|
|
@@ -26847,6 +26911,12 @@ export declare type GraphProjectServiceEdge = {
|
|
|
26847
26911
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
26848
26912
|
node: GraphProjectService;
|
|
26849
26913
|
};
|
|
26914
|
+
export declare type GraphQlConfluenceUserRoles = {
|
|
26915
|
+
__typename?: 'GraphQLConfluenceUserRoles';
|
|
26916
|
+
canBeSuperAdmin: Scalars['Boolean']['output'];
|
|
26917
|
+
canUseConfluence: Scalars['Boolean']['output'];
|
|
26918
|
+
isSuperAdmin: Scalars['Boolean']['output'];
|
|
26919
|
+
};
|
|
26850
26920
|
export declare type GraphQlContactAdminStatus = {
|
|
26851
26921
|
__typename?: 'GraphQLContactAdminStatus';
|
|
26852
26922
|
success: Scalars['Boolean']['output'];
|
|
@@ -29175,6 +29245,7 @@ export declare type GraphStore = {
|
|
|
29175
29245
|
confluenceSpaceHasConfluenceBlogpostInverse?: Maybe<GraphStoreSimplifiedConfluenceSpaceHasConfluenceBlogpostInverseConnection>;
|
|
29176
29246
|
confluenceSpaceHasConfluenceDatabase?: Maybe<GraphStoreSimplifiedConfluenceSpaceHasConfluenceDatabaseConnection>;
|
|
29177
29247
|
confluenceSpaceHasConfluenceDatabaseInverse?: Maybe<GraphStoreSimplifiedConfluenceSpaceHasConfluenceDatabaseInverseConnection>;
|
|
29248
|
+
confluenceSpaceHasConfluenceFolder?: Maybe<GraphStoreSimplifiedConfluenceSpaceHasConfluenceFolderConnection>;
|
|
29178
29249
|
confluenceSpaceHasConfluenceFolderInverse?: Maybe<GraphStoreSimplifiedConfluenceSpaceHasConfluenceFolderInverseConnection>;
|
|
29179
29250
|
confluenceSpaceHasConfluenceWhiteboard?: Maybe<GraphStoreSimplifiedConfluenceSpaceHasConfluenceWhiteboardConnection>;
|
|
29180
29251
|
confluenceSpaceHasConfluenceWhiteboardInverse?: Maybe<GraphStoreSimplifiedConfluenceSpaceHasConfluenceWhiteboardInverseConnection>;
|
|
@@ -29281,6 +29352,10 @@ export declare type GraphStore = {
|
|
|
29281
29352
|
issueHasAssignee?: Maybe<GraphStoreSimplifiedIssueHasAssigneeConnection>;
|
|
29282
29353
|
issueHasAssigneeInverse?: Maybe<GraphStoreSimplifiedIssueHasAssigneeInverseConnection>;
|
|
29283
29354
|
issueInStatusInverse?: Maybe<GraphStoreSimplifiedIssueInStatusInverseConnection>;
|
|
29355
|
+
issueMentionedInConversation?: Maybe<GraphStoreSimplifiedIssueMentionedInConversationConnection>;
|
|
29356
|
+
issueMentionedInConversationInverse?: Maybe<GraphStoreSimplifiedIssueMentionedInConversationInverseConnection>;
|
|
29357
|
+
issueMentionedInMessage?: Maybe<GraphStoreSimplifiedIssueMentionedInMessageConnection>;
|
|
29358
|
+
issueMentionedInMessageInverse?: Maybe<GraphStoreSimplifiedIssueMentionedInMessageInverseConnection>;
|
|
29284
29359
|
issueRecursiveAssociatedDeployment?: Maybe<GraphStoreSimplifiedIssueRecursiveAssociatedDeploymentConnection>;
|
|
29285
29360
|
issueRecursiveAssociatedDeploymentInverse?: Maybe<GraphStoreSimplifiedIssueRecursiveAssociatedDeploymentInverseConnection>;
|
|
29286
29361
|
issueRecursiveAssociatedDeploymentInverseRelationship?: Maybe<GraphStoreFullIssueRecursiveAssociatedDeploymentConnection>;
|
|
@@ -29333,6 +29408,8 @@ export declare type GraphStore = {
|
|
|
29333
29408
|
mediaAttachedToContent?: Maybe<GraphStoreSimplifiedMediaAttachedToContentConnection>;
|
|
29334
29409
|
mediaAttachedToContentBatch?: Maybe<GraphStoreBatchMediaAttachedToContentConnection>;
|
|
29335
29410
|
mediaAttachedToContentInverseBatch?: Maybe<GraphStoreBatchMediaAttachedToContentConnection>;
|
|
29411
|
+
meetingRecordingOwnerHasMeetingNotesFolder?: Maybe<GraphStoreSimplifiedMeetingRecordingOwnerHasMeetingNotesFolderConnection>;
|
|
29412
|
+
meetingRecordingOwnerHasMeetingNotesFolderInverse?: Maybe<GraphStoreSimplifiedMeetingRecordingOwnerHasMeetingNotesFolderInverseConnection>;
|
|
29336
29413
|
onPremProjectHasIssue?: Maybe<GraphStoreSimplifiedOnPremProjectHasIssueConnection>;
|
|
29337
29414
|
onPremProjectHasIssueInverse?: Maybe<GraphStoreSimplifiedOnPremProjectHasIssueInverseConnection>;
|
|
29338
29415
|
operationsContainerImpactedByIncident?: Maybe<GraphStoreSimplifiedOperationsContainerImpactedByIncidentConnection>;
|
|
@@ -29457,6 +29534,8 @@ export declare type GraphStore = {
|
|
|
29457
29534
|
serviceAssociatedDeploymentInverse?: Maybe<GraphStoreSimplifiedServiceAssociatedDeploymentInverseConnection>;
|
|
29458
29535
|
serviceAssociatedRemoteLink?: Maybe<GraphStoreSimplifiedServiceAssociatedRemoteLinkConnection>;
|
|
29459
29536
|
serviceAssociatedRemoteLinkInverse?: Maybe<GraphStoreSimplifiedServiceAssociatedRemoteLinkInverseConnection>;
|
|
29537
|
+
serviceAssociatedTeam?: Maybe<GraphStoreSimplifiedServiceAssociatedTeamConnection>;
|
|
29538
|
+
serviceAssociatedTeamInverse?: Maybe<GraphStoreSimplifiedServiceAssociatedTeamInverseConnection>;
|
|
29460
29539
|
serviceLinkedIncident?: Maybe<GraphStoreSimplifiedServiceLinkedIncidentConnection>;
|
|
29461
29540
|
serviceLinkedIncidentInverse?: Maybe<GraphStoreSimplifiedServiceLinkedIncidentInverseConnection>;
|
|
29462
29541
|
serviceLinkedIncidentInverseRelationship?: Maybe<GraphStoreFullServiceLinkedIncidentConnection>;
|
|
@@ -29562,6 +29641,8 @@ export declare type GraphStore = {
|
|
|
29562
29641
|
userCreatedDesignInverse?: Maybe<GraphStoreSimplifiedUserCreatedDesignInverseConnection>;
|
|
29563
29642
|
userCreatedDocument?: Maybe<GraphStoreSimplifiedUserCreatedDocumentConnection>;
|
|
29564
29643
|
userCreatedDocumentInverse?: Maybe<GraphStoreSimplifiedUserCreatedDocumentInverseConnection>;
|
|
29644
|
+
userCreatedIssueWorklog?: Maybe<GraphStoreSimplifiedUserCreatedIssueWorklogConnection>;
|
|
29645
|
+
userCreatedIssueWorklogInverse?: Maybe<GraphStoreSimplifiedUserCreatedIssueWorklogInverseConnection>;
|
|
29565
29646
|
userCreatedLoomVideo?: Maybe<GraphStoreSimplifiedUserCreatedLoomVideoConnection>;
|
|
29566
29647
|
userCreatedLoomVideoInverse?: Maybe<GraphStoreSimplifiedUserCreatedLoomVideoInverseConnection>;
|
|
29567
29648
|
userCreatedMessage?: Maybe<GraphStoreSimplifiedUserCreatedMessageConnection>;
|
|
@@ -29578,6 +29659,8 @@ export declare type GraphStore = {
|
|
|
29578
29659
|
userFavoritedConfluencePageInverse?: Maybe<GraphStoreSimplifiedUserFavoritedConfluencePageInverseConnection>;
|
|
29579
29660
|
userFavoritedConfluenceWhiteboard?: Maybe<GraphStoreSimplifiedUserFavoritedConfluenceWhiteboardConnection>;
|
|
29580
29661
|
userFavoritedConfluenceWhiteboardInverse?: Maybe<GraphStoreSimplifiedUserFavoritedConfluenceWhiteboardInverseConnection>;
|
|
29662
|
+
userHasCollaborators?: Maybe<GraphStoreSimplifiedUserHasCollaboratorsConnection>;
|
|
29663
|
+
userHasCollaboratorsInverse?: Maybe<GraphStoreSimplifiedUserHasCollaboratorsInverseConnection>;
|
|
29581
29664
|
userHasRelevantProject?: Maybe<GraphStoreSimplifiedUserHasRelevantProjectConnection>;
|
|
29582
29665
|
userHasRelevantProjectInverse?: Maybe<GraphStoreSimplifiedUserHasRelevantProjectInverseConnection>;
|
|
29583
29666
|
userHasTopProject?: Maybe<GraphStoreSimplifiedUserHasTopProjectConnection>;
|
|
@@ -29590,6 +29673,10 @@ export declare type GraphStore = {
|
|
|
29590
29673
|
userLaunchedReleaseInverse?: Maybe<GraphStoreSimplifiedUserLaunchedReleaseInverseConnection>;
|
|
29591
29674
|
userMemberOfConversation?: Maybe<GraphStoreSimplifiedUserMemberOfConversationConnection>;
|
|
29592
29675
|
userMemberOfConversationInverse?: Maybe<GraphStoreSimplifiedUserMemberOfConversationInverseConnection>;
|
|
29676
|
+
userMentionedInConversation?: Maybe<GraphStoreSimplifiedUserMentionedInConversationConnection>;
|
|
29677
|
+
userMentionedInConversationInverse?: Maybe<GraphStoreSimplifiedUserMentionedInConversationInverseConnection>;
|
|
29678
|
+
userMentionedInMessage?: Maybe<GraphStoreSimplifiedUserMentionedInMessageConnection>;
|
|
29679
|
+
userMentionedInMessageInverse?: Maybe<GraphStoreSimplifiedUserMentionedInMessageInverseConnection>;
|
|
29593
29680
|
userMergedPullRequest?: Maybe<GraphStoreSimplifiedUserMergedPullRequestConnection>;
|
|
29594
29681
|
userMergedPullRequestInverse?: Maybe<GraphStoreSimplifiedUserMergedPullRequestInverseConnection>;
|
|
29595
29682
|
userOwnedBranch?: Maybe<GraphStoreSimplifiedUserOwnedBranchConnection>;
|
|
@@ -29614,6 +29701,7 @@ export declare type GraphStore = {
|
|
|
29614
29701
|
userTaggedInCommentInverse?: Maybe<GraphStoreSimplifiedUserTaggedInCommentInverseConnection>;
|
|
29615
29702
|
userTaggedInConfluencePage?: Maybe<GraphStoreSimplifiedUserTaggedInConfluencePageConnection>;
|
|
29616
29703
|
userTaggedInConfluencePageInverse?: Maybe<GraphStoreSimplifiedUserTaggedInConfluencePageInverseConnection>;
|
|
29704
|
+
userTaggedInIssueCommentInverse?: Maybe<GraphStoreSimplifiedUserTaggedInIssueCommentInverseConnection>;
|
|
29617
29705
|
userTriggeredDeployment?: Maybe<GraphStoreSimplifiedUserTriggeredDeploymentConnection>;
|
|
29618
29706
|
userTriggeredDeploymentInverse?: Maybe<GraphStoreSimplifiedUserTriggeredDeploymentInverseConnection>;
|
|
29619
29707
|
userUpdatedConfluenceBlogpost?: Maybe<GraphStoreSimplifiedUserUpdatedConfluenceBlogpostConnection>;
|
|
@@ -30069,6 +30157,13 @@ export declare type GraphStoreConfluenceSpaceHasConfluenceDatabaseInverseArgs =
|
|
|
30069
30157
|
id: Scalars['ID']['input'];
|
|
30070
30158
|
sort?: InputMaybe<GraphStoreConfluenceSpaceHasConfluenceDatabaseSortInput>;
|
|
30071
30159
|
};
|
|
30160
|
+
export declare type GraphStoreConfluenceSpaceHasConfluenceFolderArgs = {
|
|
30161
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
30162
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
30163
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
30164
|
+
id: Scalars['ID']['input'];
|
|
30165
|
+
sort?: InputMaybe<GraphStoreConfluenceSpaceHasConfluenceFolderSortInput>;
|
|
30166
|
+
};
|
|
30072
30167
|
export declare type GraphStoreConfluenceSpaceHasConfluenceFolderInverseArgs = {
|
|
30073
30168
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
30074
30169
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -30733,6 +30828,34 @@ export declare type GraphStoreIssueInStatusInverseArgs = {
|
|
|
30733
30828
|
id: Scalars['ID']['input'];
|
|
30734
30829
|
sort?: InputMaybe<GraphStoreIssueInStatusSortInput>;
|
|
30735
30830
|
};
|
|
30831
|
+
export declare type GraphStoreIssueMentionedInConversationArgs = {
|
|
30832
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
30833
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
30834
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
30835
|
+
id: Scalars['ID']['input'];
|
|
30836
|
+
sort?: InputMaybe<GraphStoreIssueMentionedInConversationSortInput>;
|
|
30837
|
+
};
|
|
30838
|
+
export declare type GraphStoreIssueMentionedInConversationInverseArgs = {
|
|
30839
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
30840
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
30841
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
30842
|
+
id: Scalars['ID']['input'];
|
|
30843
|
+
sort?: InputMaybe<GraphStoreIssueMentionedInConversationSortInput>;
|
|
30844
|
+
};
|
|
30845
|
+
export declare type GraphStoreIssueMentionedInMessageArgs = {
|
|
30846
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
30847
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
30848
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
30849
|
+
id: Scalars['ID']['input'];
|
|
30850
|
+
sort?: InputMaybe<GraphStoreIssueMentionedInMessageSortInput>;
|
|
30851
|
+
};
|
|
30852
|
+
export declare type GraphStoreIssueMentionedInMessageInverseArgs = {
|
|
30853
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
30854
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
30855
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
30856
|
+
id: Scalars['ID']['input'];
|
|
30857
|
+
sort?: InputMaybe<GraphStoreIssueMentionedInMessageSortInput>;
|
|
30858
|
+
};
|
|
30736
30859
|
export declare type GraphStoreIssueRecursiveAssociatedDeploymentArgs = {
|
|
30737
30860
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
30738
30861
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -31055,6 +31178,20 @@ export declare type GraphStoreMediaAttachedToContentInverseBatchArgs = {
|
|
|
31055
31178
|
ids: Array<Scalars['ID']['input']>;
|
|
31056
31179
|
sort?: InputMaybe<GraphStoreMediaAttachedToContentSortInput>;
|
|
31057
31180
|
};
|
|
31181
|
+
export declare type GraphStoreMeetingRecordingOwnerHasMeetingNotesFolderArgs = {
|
|
31182
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
31183
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
31184
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
31185
|
+
id: Scalars['ID']['input'];
|
|
31186
|
+
sort?: InputMaybe<GraphStoreMeetingRecordingOwnerHasMeetingNotesFolderSortInput>;
|
|
31187
|
+
};
|
|
31188
|
+
export declare type GraphStoreMeetingRecordingOwnerHasMeetingNotesFolderInverseArgs = {
|
|
31189
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
31190
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
31191
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
31192
|
+
id: Scalars['ID']['input'];
|
|
31193
|
+
sort?: InputMaybe<GraphStoreMeetingRecordingOwnerHasMeetingNotesFolderSortInput>;
|
|
31194
|
+
};
|
|
31058
31195
|
export declare type GraphStoreOnPremProjectHasIssueArgs = {
|
|
31059
31196
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
31060
31197
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -31849,6 +31986,20 @@ export declare type GraphStoreServiceAssociatedRemoteLinkInverseArgs = {
|
|
|
31849
31986
|
id: Scalars['ID']['input'];
|
|
31850
31987
|
sort?: InputMaybe<GraphStoreServiceAssociatedRemoteLinkSortInput>;
|
|
31851
31988
|
};
|
|
31989
|
+
export declare type GraphStoreServiceAssociatedTeamArgs = {
|
|
31990
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
31991
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
31992
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
31993
|
+
id: Scalars['ID']['input'];
|
|
31994
|
+
sort?: InputMaybe<GraphStoreServiceAssociatedTeamSortInput>;
|
|
31995
|
+
};
|
|
31996
|
+
export declare type GraphStoreServiceAssociatedTeamInverseArgs = {
|
|
31997
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
31998
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
31999
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
32000
|
+
id: Scalars['ID']['input'];
|
|
32001
|
+
sort?: InputMaybe<GraphStoreServiceAssociatedTeamSortInput>;
|
|
32002
|
+
};
|
|
31852
32003
|
export declare type GraphStoreServiceLinkedIncidentArgs = {
|
|
31853
32004
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
31854
32005
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -32557,6 +32708,20 @@ export declare type GraphStoreUserCreatedDocumentInverseArgs = {
|
|
|
32557
32708
|
id: Scalars['ID']['input'];
|
|
32558
32709
|
sort?: InputMaybe<GraphStoreUserCreatedDocumentSortInput>;
|
|
32559
32710
|
};
|
|
32711
|
+
export declare type GraphStoreUserCreatedIssueWorklogArgs = {
|
|
32712
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
32713
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
32714
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
32715
|
+
id: Scalars['ID']['input'];
|
|
32716
|
+
sort?: InputMaybe<GraphStoreUserCreatedIssueWorklogSortInput>;
|
|
32717
|
+
};
|
|
32718
|
+
export declare type GraphStoreUserCreatedIssueWorklogInverseArgs = {
|
|
32719
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
32720
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
32721
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
32722
|
+
id: Scalars['ID']['input'];
|
|
32723
|
+
sort?: InputMaybe<GraphStoreUserCreatedIssueWorklogSortInput>;
|
|
32724
|
+
};
|
|
32560
32725
|
export declare type GraphStoreUserCreatedLoomVideoArgs = {
|
|
32561
32726
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
32562
32727
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -32669,6 +32834,20 @@ export declare type GraphStoreUserFavoritedConfluenceWhiteboardInverseArgs = {
|
|
|
32669
32834
|
id: Scalars['ID']['input'];
|
|
32670
32835
|
sort?: InputMaybe<GraphStoreUserFavoritedConfluenceWhiteboardSortInput>;
|
|
32671
32836
|
};
|
|
32837
|
+
export declare type GraphStoreUserHasCollaboratorsArgs = {
|
|
32838
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
32839
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
32840
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
32841
|
+
id: Scalars['ID']['input'];
|
|
32842
|
+
sort?: InputMaybe<GraphStoreUserHasCollaboratorsSortInput>;
|
|
32843
|
+
};
|
|
32844
|
+
export declare type GraphStoreUserHasCollaboratorsInverseArgs = {
|
|
32845
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
32846
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
32847
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
32848
|
+
id: Scalars['ID']['input'];
|
|
32849
|
+
sort?: InputMaybe<GraphStoreUserHasCollaboratorsSortInput>;
|
|
32850
|
+
};
|
|
32672
32851
|
export declare type GraphStoreUserHasRelevantProjectArgs = {
|
|
32673
32852
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
32674
32853
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -32753,6 +32932,34 @@ export declare type GraphStoreUserMemberOfConversationInverseArgs = {
|
|
|
32753
32932
|
id: Scalars['ID']['input'];
|
|
32754
32933
|
sort?: InputMaybe<GraphStoreUserMemberOfConversationSortInput>;
|
|
32755
32934
|
};
|
|
32935
|
+
export declare type GraphStoreUserMentionedInConversationArgs = {
|
|
32936
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
32937
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
32938
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
32939
|
+
id: Scalars['ID']['input'];
|
|
32940
|
+
sort?: InputMaybe<GraphStoreUserMentionedInConversationSortInput>;
|
|
32941
|
+
};
|
|
32942
|
+
export declare type GraphStoreUserMentionedInConversationInverseArgs = {
|
|
32943
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
32944
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
32945
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
32946
|
+
id: Scalars['ID']['input'];
|
|
32947
|
+
sort?: InputMaybe<GraphStoreUserMentionedInConversationSortInput>;
|
|
32948
|
+
};
|
|
32949
|
+
export declare type GraphStoreUserMentionedInMessageArgs = {
|
|
32950
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
32951
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
32952
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
32953
|
+
id: Scalars['ID']['input'];
|
|
32954
|
+
sort?: InputMaybe<GraphStoreUserMentionedInMessageSortInput>;
|
|
32955
|
+
};
|
|
32956
|
+
export declare type GraphStoreUserMentionedInMessageInverseArgs = {
|
|
32957
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
32958
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
32959
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
32960
|
+
id: Scalars['ID']['input'];
|
|
32961
|
+
sort?: InputMaybe<GraphStoreUserMentionedInMessageSortInput>;
|
|
32962
|
+
};
|
|
32756
32963
|
export declare type GraphStoreUserMergedPullRequestArgs = {
|
|
32757
32964
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
32758
32965
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -32921,6 +33128,13 @@ export declare type GraphStoreUserTaggedInConfluencePageInverseArgs = {
|
|
|
32921
33128
|
id: Scalars['ID']['input'];
|
|
32922
33129
|
sort?: InputMaybe<GraphStoreUserTaggedInConfluencePageSortInput>;
|
|
32923
33130
|
};
|
|
33131
|
+
export declare type GraphStoreUserTaggedInIssueCommentInverseArgs = {
|
|
33132
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
33133
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
33134
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
33135
|
+
id: Scalars['ID']['input'];
|
|
33136
|
+
sort?: InputMaybe<GraphStoreUserTaggedInIssueCommentSortInput>;
|
|
33137
|
+
};
|
|
32924
33138
|
export declare type GraphStoreUserTriggeredDeploymentArgs = {
|
|
32925
33139
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
32926
33140
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -34296,6 +34510,20 @@ export declare type GraphStoreCreateJswProjectAssociatedComponentRelationshipInp
|
|
|
34296
34510
|
to: Scalars['ID']['input'];
|
|
34297
34511
|
updatedAt?: InputMaybe<Scalars['DateTime']['input']>;
|
|
34298
34512
|
};
|
|
34513
|
+
export declare type GraphStoreCreateMeetingRecordingOwnerHasMeetingNotesFolderInput = {
|
|
34514
|
+
relationships: Array<GraphStoreCreateMeetingRecordingOwnerHasMeetingNotesFolderRelationshipInput>;
|
|
34515
|
+
};
|
|
34516
|
+
export declare type GraphStoreCreateMeetingRecordingOwnerHasMeetingNotesFolderPayload = Payload & {
|
|
34517
|
+
__typename?: 'GraphStoreCreateMeetingRecordingOwnerHasMeetingNotesFolderPayload';
|
|
34518
|
+
errors?: Maybe<Array<MutationError>>;
|
|
34519
|
+
success: Scalars['Boolean']['output'];
|
|
34520
|
+
};
|
|
34521
|
+
export declare type GraphStoreCreateMeetingRecordingOwnerHasMeetingNotesFolderRelationshipInput = {
|
|
34522
|
+
from: Scalars['ID']['input'];
|
|
34523
|
+
sequenceNumber?: InputMaybe<Scalars['Long']['input']>;
|
|
34524
|
+
to: Scalars['ID']['input'];
|
|
34525
|
+
updatedAt?: InputMaybe<Scalars['DateTime']['input']>;
|
|
34526
|
+
};
|
|
34299
34527
|
export declare type GraphStoreCreateProjectAssociatedOpsgenieTeamInput = {
|
|
34300
34528
|
relationships: Array<GraphStoreCreateProjectAssociatedOpsgenieTeamRelationshipInput>;
|
|
34301
34529
|
};
|
|
@@ -34587,7 +34815,7 @@ export declare type GraphStoreCypherQueryFromNode = {
|
|
|
34587
34815
|
data?: Maybe<GraphStoreCypherQueryFromNodeUnion>;
|
|
34588
34816
|
id: Scalars['ID']['output'];
|
|
34589
34817
|
};
|
|
34590
|
-
export declare type GraphStoreCypherQueryFromNodeUnion = AppUser | AtlassianAccountUser | CompassComponent | ConfluenceBlogPost | ConfluenceDatabase | ConfluenceFooterComment | ConfluenceInlineComment | ConfluencePage | ConfluenceSpace | ConfluenceWhiteboard | CustomerUser | DeploymentSummary | DevOpsDesign | DevOpsDocument | DevOpsFeatureFlag | DevOpsOperationsComponentDetails | DevOpsOperationsIncidentDetails | DevOpsOperationsPostIncidentReviewDetails | DevOpsProjectDetails | DevOpsPullRequestDetails | DevOpsRepository | DevOpsSecurityVulnerabilityDetails | DevOpsService | ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | ExternalCommit | ExternalConversation | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalFeatureFlag | ExternalMessage | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalVideo | ExternalVulnerability | JiraAlignAggProject | JiraConfluenceRemoteIssueLink | JiraCustomRemoteIssueLink | JiraIssue | JiraIssueRemoteIssueLink | JiraPostIncidentReviewLink | JiraProject | JiraVersion | JiraWebRemoteIssueLink | MercuryFocusArea | OpsgenieTeam | RadarPosition | TeamV2 | ThirdPartyUser | TownsquareGoal | TownsquareProject;
|
|
34818
|
+
export declare type GraphStoreCypherQueryFromNodeUnion = AppUser | AtlassianAccountUser | CompassComponent | ConfluenceBlogPost | ConfluenceDatabase | ConfluenceFolder | ConfluenceFooterComment | ConfluenceInlineComment | ConfluencePage | ConfluenceSpace | ConfluenceWhiteboard | CustomerUser | DeploymentSummary | DevOpsDesign | DevOpsDocument | DevOpsFeatureFlag | DevOpsOperationsComponentDetails | DevOpsOperationsIncidentDetails | DevOpsOperationsPostIncidentReviewDetails | DevOpsProjectDetails | DevOpsPullRequestDetails | DevOpsRepository | DevOpsSecurityVulnerabilityDetails | DevOpsService | ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | ExternalCommit | ExternalConversation | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalFeatureFlag | ExternalMessage | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalVideo | ExternalVulnerability | JiraAlignAggProject | JiraConfluenceRemoteIssueLink | JiraCustomRemoteIssueLink | JiraIssue | JiraIssueRemoteIssueLink | JiraPostIncidentReviewLink | JiraProject | JiraVersion | JiraWebRemoteIssueLink | JiraWorklog | MercuryFocusArea | OpsgenieTeam | RadarPosition | TeamV2 | ThirdPartyUser | TownsquareGoal | TownsquareProject;
|
|
34591
34819
|
export declare type GraphStoreCypherQueryNode = {
|
|
34592
34820
|
__typename?: 'GraphStoreCypherQueryNode';
|
|
34593
34821
|
from: GraphStoreCypherQueryFromNode;
|
|
@@ -34612,8 +34840,8 @@ export declare type GraphStoreCypherQueryToNode = {
|
|
|
34612
34840
|
data?: Maybe<GraphStoreCypherQueryToNodeUnion>;
|
|
34613
34841
|
id: Scalars['ID']['output'];
|
|
34614
34842
|
};
|
|
34615
|
-
export declare type GraphStoreCypherQueryToNodeUnion = AppUser | AtlassianAccountUser | CompassComponent | ConfluenceBlogPost | ConfluenceDatabase | ConfluenceFooterComment | ConfluenceInlineComment | ConfluencePage | ConfluenceSpace | ConfluenceWhiteboard | CustomerUser | DeploymentSummary | DevOpsDesign | DevOpsDocument | DevOpsFeatureFlag | DevOpsOperationsComponentDetails | DevOpsOperationsIncidentDetails | DevOpsOperationsPostIncidentReviewDetails | DevOpsProjectDetails | DevOpsPullRequestDetails | DevOpsRepository | DevOpsSecurityVulnerabilityDetails | DevOpsService | ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | ExternalCommit | ExternalConversation | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalFeatureFlag | ExternalMessage | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalVideo | ExternalVulnerability | JiraAlignAggProject | JiraConfluenceRemoteIssueLink | JiraCustomRemoteIssueLink | JiraIssue | JiraIssueRemoteIssueLink | JiraPostIncidentReviewLink | JiraProject | JiraVersion | JiraWebRemoteIssueLink | MercuryFocusArea | OpsgenieTeam | RadarPosition | TeamV2 | ThirdPartyUser | TownsquareGoal | TownsquareProject;
|
|
34616
|
-
export declare type GraphStoreCypherQueryValueItemUnion = AppUser | AtlassianAccountUser | CompassComponent | ConfluenceBlogPost | ConfluenceDatabase | ConfluenceFooterComment | ConfluenceInlineComment | ConfluencePage | ConfluenceSpace | ConfluenceWhiteboard | CustomerUser | DeploymentSummary | DevOpsDesign | DevOpsDocument | DevOpsFeatureFlag | DevOpsOperationsComponentDetails | DevOpsOperationsIncidentDetails | DevOpsOperationsPostIncidentReviewDetails | DevOpsProjectDetails | DevOpsPullRequestDetails | DevOpsRepository | DevOpsSecurityVulnerabilityDetails | DevOpsService | ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | ExternalCommit | ExternalConversation | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalFeatureFlag | ExternalMessage | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalVideo | ExternalVulnerability | JiraAlignAggProject | JiraConfluenceRemoteIssueLink | JiraCustomRemoteIssueLink | JiraIssue | JiraIssueRemoteIssueLink | JiraPostIncidentReviewLink | JiraProject | JiraVersion | JiraWebRemoteIssueLink | MercuryFocusArea | OpsgenieTeam | RadarPosition | TeamV2 | ThirdPartyUser | TownsquareGoal | TownsquareProject;
|
|
34843
|
+
export declare type GraphStoreCypherQueryToNodeUnion = AppUser | AtlassianAccountUser | CompassComponent | ConfluenceBlogPost | ConfluenceDatabase | ConfluenceFolder | ConfluenceFooterComment | ConfluenceInlineComment | ConfluencePage | ConfluenceSpace | ConfluenceWhiteboard | CustomerUser | DeploymentSummary | DevOpsDesign | DevOpsDocument | DevOpsFeatureFlag | DevOpsOperationsComponentDetails | DevOpsOperationsIncidentDetails | DevOpsOperationsPostIncidentReviewDetails | DevOpsProjectDetails | DevOpsPullRequestDetails | DevOpsRepository | DevOpsSecurityVulnerabilityDetails | DevOpsService | ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | ExternalCommit | ExternalConversation | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalFeatureFlag | ExternalMessage | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalVideo | ExternalVulnerability | JiraAlignAggProject | JiraConfluenceRemoteIssueLink | JiraCustomRemoteIssueLink | JiraIssue | JiraIssueRemoteIssueLink | JiraPostIncidentReviewLink | JiraProject | JiraVersion | JiraWebRemoteIssueLink | JiraWorklog | MercuryFocusArea | OpsgenieTeam | RadarPosition | TeamV2 | ThirdPartyUser | TownsquareGoal | TownsquareProject;
|
|
34844
|
+
export declare type GraphStoreCypherQueryValueItemUnion = AppUser | AtlassianAccountUser | CompassComponent | ConfluenceBlogPost | ConfluenceDatabase | ConfluenceFolder | ConfluenceFooterComment | ConfluenceInlineComment | ConfluencePage | ConfluenceSpace | ConfluenceWhiteboard | CustomerUser | DeploymentSummary | DevOpsDesign | DevOpsDocument | DevOpsFeatureFlag | DevOpsOperationsComponentDetails | DevOpsOperationsIncidentDetails | DevOpsOperationsPostIncidentReviewDetails | DevOpsProjectDetails | DevOpsPullRequestDetails | DevOpsRepository | DevOpsSecurityVulnerabilityDetails | DevOpsService | ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | ExternalCommit | ExternalConversation | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalFeatureFlag | ExternalMessage | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalVideo | ExternalVulnerability | JiraAlignAggProject | JiraConfluenceRemoteIssueLink | JiraCustomRemoteIssueLink | JiraIssue | JiraIssueRemoteIssueLink | JiraPostIncidentReviewLink | JiraProject | JiraVersion | JiraWebRemoteIssueLink | JiraWorklog | MercuryFocusArea | OpsgenieTeam | RadarPosition | TeamV2 | ThirdPartyUser | TownsquareGoal | TownsquareProject;
|
|
34617
34845
|
export declare type GraphStoreCypherQueryValueNode = {
|
|
34618
34846
|
__typename?: 'GraphStoreCypherQueryValueNode';
|
|
34619
34847
|
data?: Maybe<GraphStoreCypherQueryValueItemUnion>;
|
|
@@ -34701,6 +34929,19 @@ export declare type GraphStoreDeleteJswProjectAssociatedComponentRelationshipInp
|
|
|
34701
34929
|
from: Scalars['ID']['input'];
|
|
34702
34930
|
to: Scalars['ID']['input'];
|
|
34703
34931
|
};
|
|
34932
|
+
export declare type GraphStoreDeleteMeetingRecordingOwnerHasMeetingNotesFolderInput = {
|
|
34933
|
+
relationships: Array<GraphStoreDeleteMeetingRecordingOwnerHasMeetingNotesFolderRelationshipInput>;
|
|
34934
|
+
synchronousWrite?: InputMaybe<Scalars['Boolean']['input']>;
|
|
34935
|
+
};
|
|
34936
|
+
export declare type GraphStoreDeleteMeetingRecordingOwnerHasMeetingNotesFolderPayload = Payload & {
|
|
34937
|
+
__typename?: 'GraphStoreDeleteMeetingRecordingOwnerHasMeetingNotesFolderPayload';
|
|
34938
|
+
errors?: Maybe<Array<MutationError>>;
|
|
34939
|
+
success: Scalars['Boolean']['output'];
|
|
34940
|
+
};
|
|
34941
|
+
export declare type GraphStoreDeleteMeetingRecordingOwnerHasMeetingNotesFolderRelationshipInput = {
|
|
34942
|
+
from: Scalars['ID']['input'];
|
|
34943
|
+
to: Scalars['ID']['input'];
|
|
34944
|
+
};
|
|
34704
34945
|
export declare type GraphStoreDeleteProjectAssociatedOpsgenieTeamInput = {
|
|
34705
34946
|
relationships: Array<GraphStoreDeleteProjectAssociatedOpsgenieTeamRelationshipInput>;
|
|
34706
34947
|
synchronousWrite?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -38498,6 +38739,12 @@ export declare type GraphStoreIssueHasAssigneeSortInput = {
|
|
|
38498
38739
|
export declare type GraphStoreIssueInStatusSortInput = {
|
|
38499
38740
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
38500
38741
|
};
|
|
38742
|
+
export declare type GraphStoreIssueMentionedInConversationSortInput = {
|
|
38743
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
38744
|
+
};
|
|
38745
|
+
export declare type GraphStoreIssueMentionedInMessageSortInput = {
|
|
38746
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
38747
|
+
};
|
|
38501
38748
|
export declare type GraphStoreIssueRecursiveAssociatedDeploymentSortInput = {
|
|
38502
38749
|
createdAt?: InputMaybe<GraphStoreSortInput>;
|
|
38503
38750
|
fromAti?: InputMaybe<GraphStoreSortInput>;
|
|
@@ -38625,6 +38872,12 @@ export declare type GraphStoreLongFilterInput = {
|
|
|
38625
38872
|
export declare type GraphStoreMediaAttachedToContentSortInput = {
|
|
38626
38873
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
38627
38874
|
};
|
|
38875
|
+
export declare type GraphStoreMeetingRecordingOwnerHasMeetingNotesFolderSortInput = {
|
|
38876
|
+
createdAt?: InputMaybe<GraphStoreSortInput>;
|
|
38877
|
+
fromAti?: InputMaybe<GraphStoreSortInput>;
|
|
38878
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
38879
|
+
toAti?: InputMaybe<GraphStoreSortInput>;
|
|
38880
|
+
};
|
|
38628
38881
|
export declare type GraphStoreMutation = {
|
|
38629
38882
|
__typename?: 'GraphStoreMutation';
|
|
38630
38883
|
createComponentImpactedByIncident?: Maybe<GraphStoreCreateComponentImpactedByIncidentPayload>;
|
|
@@ -38633,6 +38886,7 @@ export declare type GraphStoreMutation = {
|
|
|
38633
38886
|
createIncidentLinkedJswIssue?: Maybe<GraphStoreCreateIncidentLinkedJswIssuePayload>;
|
|
38634
38887
|
createIssueToWhiteboard?: Maybe<GraphStoreCreateIssueToWhiteboardPayload>;
|
|
38635
38888
|
createJswProjectAssociatedComponent?: Maybe<GraphStoreCreateJswProjectAssociatedComponentPayload>;
|
|
38889
|
+
createMeetingRecordingOwnerHasMeetingNotesFolder?: Maybe<GraphStoreCreateMeetingRecordingOwnerHasMeetingNotesFolderPayload>;
|
|
38636
38890
|
createProjectAssociatedOpsgenieTeam?: Maybe<GraphStoreCreateProjectAssociatedOpsgenieTeamPayload>;
|
|
38637
38891
|
createProjectAssociatedToSecurityContainer?: Maybe<GraphStoreCreateProjectAssociatedToSecurityContainerPayload>;
|
|
38638
38892
|
createProjectDisassociatedRepo?: Maybe<GraphStoreCreateProjectDisassociatedRepoPayload>;
|
|
@@ -38656,6 +38910,7 @@ export declare type GraphStoreMutation = {
|
|
|
38656
38910
|
deleteIncidentLinkedJswIssue?: Maybe<GraphStoreDeleteIncidentLinkedJswIssuePayload>;
|
|
38657
38911
|
deleteIssueToWhiteboard?: Maybe<GraphStoreDeleteIssueToWhiteboardPayload>;
|
|
38658
38912
|
deleteJswProjectAssociatedComponent?: Maybe<GraphStoreDeleteJswProjectAssociatedComponentPayload>;
|
|
38913
|
+
deleteMeetingRecordingOwnerHasMeetingNotesFolder?: Maybe<GraphStoreDeleteMeetingRecordingOwnerHasMeetingNotesFolderPayload>;
|
|
38659
38914
|
deleteProjectAssociatedOpsgenieTeam?: Maybe<GraphStoreDeleteProjectAssociatedOpsgenieTeamPayload>;
|
|
38660
38915
|
deleteProjectAssociatedToSecurityContainer?: Maybe<GraphStoreDeleteProjectAssociatedToSecurityContainerPayload>;
|
|
38661
38916
|
deleteProjectDisassociatedRepo?: Maybe<GraphStoreDeleteProjectDisassociatedRepoPayload>;
|
|
@@ -38692,6 +38947,9 @@ export declare type GraphStoreMutationCreateIssueToWhiteboardArgs = {
|
|
|
38692
38947
|
export declare type GraphStoreMutationCreateJswProjectAssociatedComponentArgs = {
|
|
38693
38948
|
input?: InputMaybe<GraphStoreCreateJswProjectAssociatedComponentInput>;
|
|
38694
38949
|
};
|
|
38950
|
+
export declare type GraphStoreMutationCreateMeetingRecordingOwnerHasMeetingNotesFolderArgs = {
|
|
38951
|
+
input?: InputMaybe<GraphStoreCreateMeetingRecordingOwnerHasMeetingNotesFolderInput>;
|
|
38952
|
+
};
|
|
38695
38953
|
export declare type GraphStoreMutationCreateProjectAssociatedOpsgenieTeamArgs = {
|
|
38696
38954
|
input?: InputMaybe<GraphStoreCreateProjectAssociatedOpsgenieTeamInput>;
|
|
38697
38955
|
};
|
|
@@ -38761,6 +39019,9 @@ export declare type GraphStoreMutationDeleteIssueToWhiteboardArgs = {
|
|
|
38761
39019
|
export declare type GraphStoreMutationDeleteJswProjectAssociatedComponentArgs = {
|
|
38762
39020
|
input?: InputMaybe<GraphStoreDeleteJswProjectAssociatedComponentInput>;
|
|
38763
39021
|
};
|
|
39022
|
+
export declare type GraphStoreMutationDeleteMeetingRecordingOwnerHasMeetingNotesFolderArgs = {
|
|
39023
|
+
input?: InputMaybe<GraphStoreDeleteMeetingRecordingOwnerHasMeetingNotesFolderInput>;
|
|
39024
|
+
};
|
|
38764
39025
|
export declare type GraphStoreMutationDeleteProjectAssociatedOpsgenieTeamArgs = {
|
|
38765
39026
|
input?: InputMaybe<GraphStoreDeleteProjectAssociatedOpsgenieTeamInput>;
|
|
38766
39027
|
};
|
|
@@ -39277,6 +39538,9 @@ export declare type GraphStoreServiceAssociatedDeploymentSortInput = {
|
|
|
39277
39538
|
export declare type GraphStoreServiceAssociatedRemoteLinkSortInput = {
|
|
39278
39539
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
39279
39540
|
};
|
|
39541
|
+
export declare type GraphStoreServiceAssociatedTeamSortInput = {
|
|
39542
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
39543
|
+
};
|
|
39280
39544
|
export declare type GraphStoreServiceLinkedIncidentConditionalFilterInput = {
|
|
39281
39545
|
createdAt?: InputMaybe<GraphStoreDateFilterInput>;
|
|
39282
39546
|
fromAti?: InputMaybe<GraphStoreAtiFilterInput>;
|
|
@@ -39966,6 +40230,19 @@ export declare type GraphStoreSimplifiedConfluenceSpaceHasConfluenceDatabaseInve
|
|
|
39966
40230
|
};
|
|
39967
40231
|
export declare type GraphStoreSimplifiedConfluenceSpaceHasConfluenceDatabaseInverseUnion = ConfluenceSpace;
|
|
39968
40232
|
export declare type GraphStoreSimplifiedConfluenceSpaceHasConfluenceDatabaseUnion = ConfluenceDatabase;
|
|
40233
|
+
export declare type GraphStoreSimplifiedConfluenceSpaceHasConfluenceFolderConnection = HasPageInfo & {
|
|
40234
|
+
__typename?: 'GraphStoreSimplifiedConfluenceSpaceHasConfluenceFolderConnection';
|
|
40235
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedConfluenceSpaceHasConfluenceFolderEdge>>>;
|
|
40236
|
+
pageInfo: PageInfo;
|
|
40237
|
+
};
|
|
40238
|
+
export declare type GraphStoreSimplifiedConfluenceSpaceHasConfluenceFolderEdge = {
|
|
40239
|
+
__typename?: 'GraphStoreSimplifiedConfluenceSpaceHasConfluenceFolderEdge';
|
|
40240
|
+
createdAt: Scalars['DateTime']['output'];
|
|
40241
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
40242
|
+
id: Scalars['ID']['output'];
|
|
40243
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
40244
|
+
node?: Maybe<GraphStoreSimplifiedConfluenceSpaceHasConfluenceFolderUnion>;
|
|
40245
|
+
};
|
|
39969
40246
|
export declare type GraphStoreSimplifiedConfluenceSpaceHasConfluenceFolderInverseConnection = HasPageInfo & {
|
|
39970
40247
|
__typename?: 'GraphStoreSimplifiedConfluenceSpaceHasConfluenceFolderInverseConnection';
|
|
39971
40248
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedConfluenceSpaceHasConfluenceFolderInverseEdge>>>;
|
|
@@ -39980,6 +40257,7 @@ export declare type GraphStoreSimplifiedConfluenceSpaceHasConfluenceFolderInvers
|
|
|
39980
40257
|
node?: Maybe<GraphStoreSimplifiedConfluenceSpaceHasConfluenceFolderInverseUnion>;
|
|
39981
40258
|
};
|
|
39982
40259
|
export declare type GraphStoreSimplifiedConfluenceSpaceHasConfluenceFolderInverseUnion = ConfluenceSpace;
|
|
40260
|
+
export declare type GraphStoreSimplifiedConfluenceSpaceHasConfluenceFolderUnion = ConfluenceFolder;
|
|
39983
40261
|
export declare type GraphStoreSimplifiedConfluenceSpaceHasConfluenceWhiteboardConnection = HasPageInfo & {
|
|
39984
40262
|
__typename?: 'GraphStoreSimplifiedConfluenceSpaceHasConfluenceWhiteboardConnection';
|
|
39985
40263
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedConfluenceSpaceHasConfluenceWhiteboardEdge>>>;
|
|
@@ -40690,6 +40968,62 @@ export declare type GraphStoreSimplifiedIssueInStatusInverseEdge = {
|
|
|
40690
40968
|
node?: Maybe<GraphStoreSimplifiedIssueInStatusInverseUnion>;
|
|
40691
40969
|
};
|
|
40692
40970
|
export declare type GraphStoreSimplifiedIssueInStatusInverseUnion = JiraIssue;
|
|
40971
|
+
export declare type GraphStoreSimplifiedIssueMentionedInConversationConnection = HasPageInfo & {
|
|
40972
|
+
__typename?: 'GraphStoreSimplifiedIssueMentionedInConversationConnection';
|
|
40973
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedIssueMentionedInConversationEdge>>>;
|
|
40974
|
+
pageInfo: PageInfo;
|
|
40975
|
+
};
|
|
40976
|
+
export declare type GraphStoreSimplifiedIssueMentionedInConversationEdge = {
|
|
40977
|
+
__typename?: 'GraphStoreSimplifiedIssueMentionedInConversationEdge';
|
|
40978
|
+
createdAt: Scalars['DateTime']['output'];
|
|
40979
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
40980
|
+
id: Scalars['ID']['output'];
|
|
40981
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
40982
|
+
node?: Maybe<GraphStoreSimplifiedIssueMentionedInConversationUnion>;
|
|
40983
|
+
};
|
|
40984
|
+
export declare type GraphStoreSimplifiedIssueMentionedInConversationInverseConnection = HasPageInfo & {
|
|
40985
|
+
__typename?: 'GraphStoreSimplifiedIssueMentionedInConversationInverseConnection';
|
|
40986
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedIssueMentionedInConversationInverseEdge>>>;
|
|
40987
|
+
pageInfo: PageInfo;
|
|
40988
|
+
};
|
|
40989
|
+
export declare type GraphStoreSimplifiedIssueMentionedInConversationInverseEdge = {
|
|
40990
|
+
__typename?: 'GraphStoreSimplifiedIssueMentionedInConversationInverseEdge';
|
|
40991
|
+
createdAt: Scalars['DateTime']['output'];
|
|
40992
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
40993
|
+
id: Scalars['ID']['output'];
|
|
40994
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
40995
|
+
node?: Maybe<GraphStoreSimplifiedIssueMentionedInConversationInverseUnion>;
|
|
40996
|
+
};
|
|
40997
|
+
export declare type GraphStoreSimplifiedIssueMentionedInConversationInverseUnion = JiraIssue;
|
|
40998
|
+
export declare type GraphStoreSimplifiedIssueMentionedInConversationUnion = ExternalConversation;
|
|
40999
|
+
export declare type GraphStoreSimplifiedIssueMentionedInMessageConnection = HasPageInfo & {
|
|
41000
|
+
__typename?: 'GraphStoreSimplifiedIssueMentionedInMessageConnection';
|
|
41001
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedIssueMentionedInMessageEdge>>>;
|
|
41002
|
+
pageInfo: PageInfo;
|
|
41003
|
+
};
|
|
41004
|
+
export declare type GraphStoreSimplifiedIssueMentionedInMessageEdge = {
|
|
41005
|
+
__typename?: 'GraphStoreSimplifiedIssueMentionedInMessageEdge';
|
|
41006
|
+
createdAt: Scalars['DateTime']['output'];
|
|
41007
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
41008
|
+
id: Scalars['ID']['output'];
|
|
41009
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
41010
|
+
node?: Maybe<GraphStoreSimplifiedIssueMentionedInMessageUnion>;
|
|
41011
|
+
};
|
|
41012
|
+
export declare type GraphStoreSimplifiedIssueMentionedInMessageInverseConnection = HasPageInfo & {
|
|
41013
|
+
__typename?: 'GraphStoreSimplifiedIssueMentionedInMessageInverseConnection';
|
|
41014
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedIssueMentionedInMessageInverseEdge>>>;
|
|
41015
|
+
pageInfo: PageInfo;
|
|
41016
|
+
};
|
|
41017
|
+
export declare type GraphStoreSimplifiedIssueMentionedInMessageInverseEdge = {
|
|
41018
|
+
__typename?: 'GraphStoreSimplifiedIssueMentionedInMessageInverseEdge';
|
|
41019
|
+
createdAt: Scalars['DateTime']['output'];
|
|
41020
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
41021
|
+
id: Scalars['ID']['output'];
|
|
41022
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
41023
|
+
node?: Maybe<GraphStoreSimplifiedIssueMentionedInMessageInverseUnion>;
|
|
41024
|
+
};
|
|
41025
|
+
export declare type GraphStoreSimplifiedIssueMentionedInMessageInverseUnion = JiraIssue;
|
|
41026
|
+
export declare type GraphStoreSimplifiedIssueMentionedInMessageUnion = ExternalMessage;
|
|
40693
41027
|
export declare type GraphStoreSimplifiedIssueRecursiveAssociatedDeploymentConnection = HasPageInfo & HasTotal & {
|
|
40694
41028
|
__typename?: 'GraphStoreSimplifiedIssueRecursiveAssociatedDeploymentConnection';
|
|
40695
41029
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedIssueRecursiveAssociatedDeploymentEdge>>>;
|
|
@@ -41094,6 +41428,38 @@ export declare type GraphStoreSimplifiedMediaAttachedToContentEdge = {
|
|
|
41094
41428
|
node?: Maybe<GraphStoreSimplifiedMediaAttachedToContentUnion>;
|
|
41095
41429
|
};
|
|
41096
41430
|
export declare type GraphStoreSimplifiedMediaAttachedToContentUnion = ConfluenceBlogPost | ConfluencePage | JiraIssue;
|
|
41431
|
+
export declare type GraphStoreSimplifiedMeetingRecordingOwnerHasMeetingNotesFolderConnection = HasPageInfo & HasTotal & {
|
|
41432
|
+
__typename?: 'GraphStoreSimplifiedMeetingRecordingOwnerHasMeetingNotesFolderConnection';
|
|
41433
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedMeetingRecordingOwnerHasMeetingNotesFolderEdge>>>;
|
|
41434
|
+
isExactCount?: Maybe<Scalars['Boolean']['output']>;
|
|
41435
|
+
pageInfo: PageInfo;
|
|
41436
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
41437
|
+
};
|
|
41438
|
+
export declare type GraphStoreSimplifiedMeetingRecordingOwnerHasMeetingNotesFolderEdge = {
|
|
41439
|
+
__typename?: 'GraphStoreSimplifiedMeetingRecordingOwnerHasMeetingNotesFolderEdge';
|
|
41440
|
+
createdAt: Scalars['DateTime']['output'];
|
|
41441
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
41442
|
+
id: Scalars['ID']['output'];
|
|
41443
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
41444
|
+
node?: Maybe<GraphStoreSimplifiedMeetingRecordingOwnerHasMeetingNotesFolderUnion>;
|
|
41445
|
+
};
|
|
41446
|
+
export declare type GraphStoreSimplifiedMeetingRecordingOwnerHasMeetingNotesFolderInverseConnection = HasPageInfo & HasTotal & {
|
|
41447
|
+
__typename?: 'GraphStoreSimplifiedMeetingRecordingOwnerHasMeetingNotesFolderInverseConnection';
|
|
41448
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedMeetingRecordingOwnerHasMeetingNotesFolderInverseEdge>>>;
|
|
41449
|
+
isExactCount?: Maybe<Scalars['Boolean']['output']>;
|
|
41450
|
+
pageInfo: PageInfo;
|
|
41451
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
41452
|
+
};
|
|
41453
|
+
export declare type GraphStoreSimplifiedMeetingRecordingOwnerHasMeetingNotesFolderInverseEdge = {
|
|
41454
|
+
__typename?: 'GraphStoreSimplifiedMeetingRecordingOwnerHasMeetingNotesFolderInverseEdge';
|
|
41455
|
+
createdAt: Scalars['DateTime']['output'];
|
|
41456
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
41457
|
+
id: Scalars['ID']['output'];
|
|
41458
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
41459
|
+
node?: Maybe<GraphStoreSimplifiedMeetingRecordingOwnerHasMeetingNotesFolderInverseUnion>;
|
|
41460
|
+
};
|
|
41461
|
+
export declare type GraphStoreSimplifiedMeetingRecordingOwnerHasMeetingNotesFolderInverseUnion = AppUser | AtlassianAccountUser | CustomerUser;
|
|
41462
|
+
export declare type GraphStoreSimplifiedMeetingRecordingOwnerHasMeetingNotesFolderUnion = ConfluenceFolder;
|
|
41097
41463
|
export declare type GraphStoreSimplifiedOnPremProjectHasIssueConnection = HasPageInfo & {
|
|
41098
41464
|
__typename?: 'GraphStoreSimplifiedOnPremProjectHasIssueConnection';
|
|
41099
41465
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedOnPremProjectHasIssueEdge>>>;
|
|
@@ -42136,6 +42502,34 @@ export declare type GraphStoreSimplifiedServiceAssociatedRemoteLinkInverseEdge =
|
|
|
42136
42502
|
};
|
|
42137
42503
|
export declare type GraphStoreSimplifiedServiceAssociatedRemoteLinkInverseUnion = DevOpsService;
|
|
42138
42504
|
export declare type GraphStoreSimplifiedServiceAssociatedRemoteLinkUnion = ExternalRemoteLink;
|
|
42505
|
+
export declare type GraphStoreSimplifiedServiceAssociatedTeamConnection = HasPageInfo & {
|
|
42506
|
+
__typename?: 'GraphStoreSimplifiedServiceAssociatedTeamConnection';
|
|
42507
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedServiceAssociatedTeamEdge>>>;
|
|
42508
|
+
pageInfo: PageInfo;
|
|
42509
|
+
};
|
|
42510
|
+
export declare type GraphStoreSimplifiedServiceAssociatedTeamEdge = {
|
|
42511
|
+
__typename?: 'GraphStoreSimplifiedServiceAssociatedTeamEdge';
|
|
42512
|
+
createdAt: Scalars['DateTime']['output'];
|
|
42513
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
42514
|
+
id: Scalars['ID']['output'];
|
|
42515
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
42516
|
+
node?: Maybe<GraphStoreSimplifiedServiceAssociatedTeamUnion>;
|
|
42517
|
+
};
|
|
42518
|
+
export declare type GraphStoreSimplifiedServiceAssociatedTeamInverseConnection = HasPageInfo & {
|
|
42519
|
+
__typename?: 'GraphStoreSimplifiedServiceAssociatedTeamInverseConnection';
|
|
42520
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedServiceAssociatedTeamInverseEdge>>>;
|
|
42521
|
+
pageInfo: PageInfo;
|
|
42522
|
+
};
|
|
42523
|
+
export declare type GraphStoreSimplifiedServiceAssociatedTeamInverseEdge = {
|
|
42524
|
+
__typename?: 'GraphStoreSimplifiedServiceAssociatedTeamInverseEdge';
|
|
42525
|
+
createdAt: Scalars['DateTime']['output'];
|
|
42526
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
42527
|
+
id: Scalars['ID']['output'];
|
|
42528
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
42529
|
+
node?: Maybe<GraphStoreSimplifiedServiceAssociatedTeamInverseUnion>;
|
|
42530
|
+
};
|
|
42531
|
+
export declare type GraphStoreSimplifiedServiceAssociatedTeamInverseUnion = DevOpsService;
|
|
42532
|
+
export declare type GraphStoreSimplifiedServiceAssociatedTeamUnion = OpsgenieTeam;
|
|
42139
42533
|
export declare type GraphStoreSimplifiedServiceLinkedIncidentConnection = HasPageInfo & HasTotal & {
|
|
42140
42534
|
__typename?: 'GraphStoreSimplifiedServiceLinkedIncidentConnection';
|
|
42141
42535
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedServiceLinkedIncidentEdge>>>;
|
|
@@ -43230,6 +43624,34 @@ export declare type GraphStoreSimplifiedUserCreatedDocumentInverseEdge = {
|
|
|
43230
43624
|
};
|
|
43231
43625
|
export declare type GraphStoreSimplifiedUserCreatedDocumentInverseUnion = AppUser | AtlassianAccountUser | CustomerUser | ThirdPartyUser;
|
|
43232
43626
|
export declare type GraphStoreSimplifiedUserCreatedDocumentUnion = DevOpsDocument | ExternalDocument;
|
|
43627
|
+
export declare type GraphStoreSimplifiedUserCreatedIssueWorklogConnection = HasPageInfo & {
|
|
43628
|
+
__typename?: 'GraphStoreSimplifiedUserCreatedIssueWorklogConnection';
|
|
43629
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserCreatedIssueWorklogEdge>>>;
|
|
43630
|
+
pageInfo: PageInfo;
|
|
43631
|
+
};
|
|
43632
|
+
export declare type GraphStoreSimplifiedUserCreatedIssueWorklogEdge = {
|
|
43633
|
+
__typename?: 'GraphStoreSimplifiedUserCreatedIssueWorklogEdge';
|
|
43634
|
+
createdAt: Scalars['DateTime']['output'];
|
|
43635
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
43636
|
+
id: Scalars['ID']['output'];
|
|
43637
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
43638
|
+
node?: Maybe<GraphStoreSimplifiedUserCreatedIssueWorklogUnion>;
|
|
43639
|
+
};
|
|
43640
|
+
export declare type GraphStoreSimplifiedUserCreatedIssueWorklogInverseConnection = HasPageInfo & {
|
|
43641
|
+
__typename?: 'GraphStoreSimplifiedUserCreatedIssueWorklogInverseConnection';
|
|
43642
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserCreatedIssueWorklogInverseEdge>>>;
|
|
43643
|
+
pageInfo: PageInfo;
|
|
43644
|
+
};
|
|
43645
|
+
export declare type GraphStoreSimplifiedUserCreatedIssueWorklogInverseEdge = {
|
|
43646
|
+
__typename?: 'GraphStoreSimplifiedUserCreatedIssueWorklogInverseEdge';
|
|
43647
|
+
createdAt: Scalars['DateTime']['output'];
|
|
43648
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
43649
|
+
id: Scalars['ID']['output'];
|
|
43650
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
43651
|
+
node?: Maybe<GraphStoreSimplifiedUserCreatedIssueWorklogInverseUnion>;
|
|
43652
|
+
};
|
|
43653
|
+
export declare type GraphStoreSimplifiedUserCreatedIssueWorklogInverseUnion = AppUser | AtlassianAccountUser | CustomerUser;
|
|
43654
|
+
export declare type GraphStoreSimplifiedUserCreatedIssueWorklogUnion = JiraWorklog;
|
|
43233
43655
|
export declare type GraphStoreSimplifiedUserCreatedLoomVideoConnection = HasPageInfo & {
|
|
43234
43656
|
__typename?: 'GraphStoreSimplifiedUserCreatedLoomVideoConnection';
|
|
43235
43657
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserCreatedLoomVideoEdge>>>;
|
|
@@ -43454,6 +43876,34 @@ export declare type GraphStoreSimplifiedUserFavoritedConfluenceWhiteboardInverse
|
|
|
43454
43876
|
};
|
|
43455
43877
|
export declare type GraphStoreSimplifiedUserFavoritedConfluenceWhiteboardInverseUnion = AppUser | AtlassianAccountUser | CustomerUser;
|
|
43456
43878
|
export declare type GraphStoreSimplifiedUserFavoritedConfluenceWhiteboardUnion = ConfluenceWhiteboard;
|
|
43879
|
+
export declare type GraphStoreSimplifiedUserHasCollaboratorsConnection = HasPageInfo & {
|
|
43880
|
+
__typename?: 'GraphStoreSimplifiedUserHasCollaboratorsConnection';
|
|
43881
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserHasCollaboratorsEdge>>>;
|
|
43882
|
+
pageInfo: PageInfo;
|
|
43883
|
+
};
|
|
43884
|
+
export declare type GraphStoreSimplifiedUserHasCollaboratorsEdge = {
|
|
43885
|
+
__typename?: 'GraphStoreSimplifiedUserHasCollaboratorsEdge';
|
|
43886
|
+
createdAt: Scalars['DateTime']['output'];
|
|
43887
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
43888
|
+
id: Scalars['ID']['output'];
|
|
43889
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
43890
|
+
node?: Maybe<GraphStoreSimplifiedUserHasCollaboratorsUnion>;
|
|
43891
|
+
};
|
|
43892
|
+
export declare type GraphStoreSimplifiedUserHasCollaboratorsInverseConnection = HasPageInfo & {
|
|
43893
|
+
__typename?: 'GraphStoreSimplifiedUserHasCollaboratorsInverseConnection';
|
|
43894
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserHasCollaboratorsInverseEdge>>>;
|
|
43895
|
+
pageInfo: PageInfo;
|
|
43896
|
+
};
|
|
43897
|
+
export declare type GraphStoreSimplifiedUserHasCollaboratorsInverseEdge = {
|
|
43898
|
+
__typename?: 'GraphStoreSimplifiedUserHasCollaboratorsInverseEdge';
|
|
43899
|
+
createdAt: Scalars['DateTime']['output'];
|
|
43900
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
43901
|
+
id: Scalars['ID']['output'];
|
|
43902
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
43903
|
+
node?: Maybe<GraphStoreSimplifiedUserHasCollaboratorsInverseUnion>;
|
|
43904
|
+
};
|
|
43905
|
+
export declare type GraphStoreSimplifiedUserHasCollaboratorsInverseUnion = AppUser | AtlassianAccountUser | CustomerUser;
|
|
43906
|
+
export declare type GraphStoreSimplifiedUserHasCollaboratorsUnion = AppUser | AtlassianAccountUser | CustomerUser;
|
|
43457
43907
|
export declare type GraphStoreSimplifiedUserHasRelevantProjectConnection = HasPageInfo & HasTotal & {
|
|
43458
43908
|
__typename?: 'GraphStoreSimplifiedUserHasRelevantProjectConnection';
|
|
43459
43909
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserHasRelevantProjectEdge>>>;
|
|
@@ -43626,6 +44076,62 @@ export declare type GraphStoreSimplifiedUserMemberOfConversationInverseEdge = {
|
|
|
43626
44076
|
};
|
|
43627
44077
|
export declare type GraphStoreSimplifiedUserMemberOfConversationInverseUnion = AppUser | AtlassianAccountUser | CustomerUser | ThirdPartyUser;
|
|
43628
44078
|
export declare type GraphStoreSimplifiedUserMemberOfConversationUnion = ExternalConversation;
|
|
44079
|
+
export declare type GraphStoreSimplifiedUserMentionedInConversationConnection = HasPageInfo & {
|
|
44080
|
+
__typename?: 'GraphStoreSimplifiedUserMentionedInConversationConnection';
|
|
44081
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserMentionedInConversationEdge>>>;
|
|
44082
|
+
pageInfo: PageInfo;
|
|
44083
|
+
};
|
|
44084
|
+
export declare type GraphStoreSimplifiedUserMentionedInConversationEdge = {
|
|
44085
|
+
__typename?: 'GraphStoreSimplifiedUserMentionedInConversationEdge';
|
|
44086
|
+
createdAt: Scalars['DateTime']['output'];
|
|
44087
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
44088
|
+
id: Scalars['ID']['output'];
|
|
44089
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
44090
|
+
node?: Maybe<GraphStoreSimplifiedUserMentionedInConversationUnion>;
|
|
44091
|
+
};
|
|
44092
|
+
export declare type GraphStoreSimplifiedUserMentionedInConversationInverseConnection = HasPageInfo & {
|
|
44093
|
+
__typename?: 'GraphStoreSimplifiedUserMentionedInConversationInverseConnection';
|
|
44094
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserMentionedInConversationInverseEdge>>>;
|
|
44095
|
+
pageInfo: PageInfo;
|
|
44096
|
+
};
|
|
44097
|
+
export declare type GraphStoreSimplifiedUserMentionedInConversationInverseEdge = {
|
|
44098
|
+
__typename?: 'GraphStoreSimplifiedUserMentionedInConversationInverseEdge';
|
|
44099
|
+
createdAt: Scalars['DateTime']['output'];
|
|
44100
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
44101
|
+
id: Scalars['ID']['output'];
|
|
44102
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
44103
|
+
node?: Maybe<GraphStoreSimplifiedUserMentionedInConversationInverseUnion>;
|
|
44104
|
+
};
|
|
44105
|
+
export declare type GraphStoreSimplifiedUserMentionedInConversationInverseUnion = AppUser | AtlassianAccountUser | CustomerUser | ThirdPartyUser;
|
|
44106
|
+
export declare type GraphStoreSimplifiedUserMentionedInConversationUnion = ExternalConversation;
|
|
44107
|
+
export declare type GraphStoreSimplifiedUserMentionedInMessageConnection = HasPageInfo & {
|
|
44108
|
+
__typename?: 'GraphStoreSimplifiedUserMentionedInMessageConnection';
|
|
44109
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserMentionedInMessageEdge>>>;
|
|
44110
|
+
pageInfo: PageInfo;
|
|
44111
|
+
};
|
|
44112
|
+
export declare type GraphStoreSimplifiedUserMentionedInMessageEdge = {
|
|
44113
|
+
__typename?: 'GraphStoreSimplifiedUserMentionedInMessageEdge';
|
|
44114
|
+
createdAt: Scalars['DateTime']['output'];
|
|
44115
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
44116
|
+
id: Scalars['ID']['output'];
|
|
44117
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
44118
|
+
node?: Maybe<GraphStoreSimplifiedUserMentionedInMessageUnion>;
|
|
44119
|
+
};
|
|
44120
|
+
export declare type GraphStoreSimplifiedUserMentionedInMessageInverseConnection = HasPageInfo & {
|
|
44121
|
+
__typename?: 'GraphStoreSimplifiedUserMentionedInMessageInverseConnection';
|
|
44122
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserMentionedInMessageInverseEdge>>>;
|
|
44123
|
+
pageInfo: PageInfo;
|
|
44124
|
+
};
|
|
44125
|
+
export declare type GraphStoreSimplifiedUserMentionedInMessageInverseEdge = {
|
|
44126
|
+
__typename?: 'GraphStoreSimplifiedUserMentionedInMessageInverseEdge';
|
|
44127
|
+
createdAt: Scalars['DateTime']['output'];
|
|
44128
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
44129
|
+
id: Scalars['ID']['output'];
|
|
44130
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
44131
|
+
node?: Maybe<GraphStoreSimplifiedUserMentionedInMessageInverseUnion>;
|
|
44132
|
+
};
|
|
44133
|
+
export declare type GraphStoreSimplifiedUserMentionedInMessageInverseUnion = AppUser | AtlassianAccountUser | CustomerUser | ThirdPartyUser;
|
|
44134
|
+
export declare type GraphStoreSimplifiedUserMentionedInMessageUnion = ExternalMessage;
|
|
43629
44135
|
export declare type GraphStoreSimplifiedUserMergedPullRequestConnection = HasPageInfo & {
|
|
43630
44136
|
__typename?: 'GraphStoreSimplifiedUserMergedPullRequestConnection';
|
|
43631
44137
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserMergedPullRequestEdge>>>;
|
|
@@ -43966,6 +44472,20 @@ export declare type GraphStoreSimplifiedUserTaggedInConfluencePageInverseEdge =
|
|
|
43966
44472
|
};
|
|
43967
44473
|
export declare type GraphStoreSimplifiedUserTaggedInConfluencePageInverseUnion = AppUser | AtlassianAccountUser | CustomerUser;
|
|
43968
44474
|
export declare type GraphStoreSimplifiedUserTaggedInConfluencePageUnion = ConfluencePage;
|
|
44475
|
+
export declare type GraphStoreSimplifiedUserTaggedInIssueCommentInverseConnection = HasPageInfo & {
|
|
44476
|
+
__typename?: 'GraphStoreSimplifiedUserTaggedInIssueCommentInverseConnection';
|
|
44477
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserTaggedInIssueCommentInverseEdge>>>;
|
|
44478
|
+
pageInfo: PageInfo;
|
|
44479
|
+
};
|
|
44480
|
+
export declare type GraphStoreSimplifiedUserTaggedInIssueCommentInverseEdge = {
|
|
44481
|
+
__typename?: 'GraphStoreSimplifiedUserTaggedInIssueCommentInverseEdge';
|
|
44482
|
+
createdAt: Scalars['DateTime']['output'];
|
|
44483
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
44484
|
+
id: Scalars['ID']['output'];
|
|
44485
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
44486
|
+
node?: Maybe<GraphStoreSimplifiedUserTaggedInIssueCommentInverseUnion>;
|
|
44487
|
+
};
|
|
44488
|
+
export declare type GraphStoreSimplifiedUserTaggedInIssueCommentInverseUnion = AppUser | AtlassianAccountUser | CustomerUser;
|
|
43969
44489
|
export declare type GraphStoreSimplifiedUserTriggeredDeploymentConnection = HasPageInfo & {
|
|
43970
44490
|
__typename?: 'GraphStoreSimplifiedUserTriggeredDeploymentConnection';
|
|
43971
44491
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserTriggeredDeploymentEdge>>>;
|
|
@@ -45132,6 +45652,9 @@ export declare type GraphStoreUserCreatedDesignSortInput = {
|
|
|
45132
45652
|
export declare type GraphStoreUserCreatedDocumentSortInput = {
|
|
45133
45653
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
45134
45654
|
};
|
|
45655
|
+
export declare type GraphStoreUserCreatedIssueWorklogSortInput = {
|
|
45656
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
45657
|
+
};
|
|
45135
45658
|
export declare type GraphStoreUserCreatedLoomVideoSortInput = {
|
|
45136
45659
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
45137
45660
|
};
|
|
@@ -45156,6 +45679,9 @@ export declare type GraphStoreUserFavoritedConfluencePageSortInput = {
|
|
|
45156
45679
|
export declare type GraphStoreUserFavoritedConfluenceWhiteboardSortInput = {
|
|
45157
45680
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
45158
45681
|
};
|
|
45682
|
+
export declare type GraphStoreUserHasCollaboratorsSortInput = {
|
|
45683
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
45684
|
+
};
|
|
45159
45685
|
export declare type GraphStoreUserHasRelevantProjectSortInput = {
|
|
45160
45686
|
createdAt?: InputMaybe<GraphStoreSortInput>;
|
|
45161
45687
|
fromAti?: InputMaybe<GraphStoreSortInput>;
|
|
@@ -45177,6 +45703,12 @@ export declare type GraphStoreUserLaunchedReleaseSortInput = {
|
|
|
45177
45703
|
export declare type GraphStoreUserMemberOfConversationSortInput = {
|
|
45178
45704
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
45179
45705
|
};
|
|
45706
|
+
export declare type GraphStoreUserMentionedInConversationSortInput = {
|
|
45707
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
45708
|
+
};
|
|
45709
|
+
export declare type GraphStoreUserMentionedInMessageSortInput = {
|
|
45710
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
45711
|
+
};
|
|
45180
45712
|
export declare type GraphStoreUserMergedPullRequestSortInput = {
|
|
45181
45713
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
45182
45714
|
};
|
|
@@ -45216,6 +45748,9 @@ export declare type GraphStoreUserTaggedInCommentSortInput = {
|
|
|
45216
45748
|
export declare type GraphStoreUserTaggedInConfluencePageSortInput = {
|
|
45217
45749
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
45218
45750
|
};
|
|
45751
|
+
export declare type GraphStoreUserTaggedInIssueCommentSortInput = {
|
|
45752
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
45753
|
+
};
|
|
45219
45754
|
export declare type GraphStoreUserTriggeredDeploymentSortInput = {
|
|
45220
45755
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
45221
45756
|
};
|
|
@@ -45887,6 +46422,7 @@ export declare type HamsTrial = CommerceTrial & {
|
|
|
45887
46422
|
__typename?: 'HamsTrial';
|
|
45888
46423
|
endTimestamp?: Maybe<Scalars['Float']['output']>;
|
|
45889
46424
|
startTimestamp?: Maybe<Scalars['Float']['output']>;
|
|
46425
|
+
timeLeft?: Maybe<Scalars['Float']['output']>;
|
|
45890
46426
|
};
|
|
45891
46427
|
export declare type HardDeleteSpacePayload = {
|
|
45892
46428
|
__typename?: 'HardDeleteSpacePayload';
|
|
@@ -49692,6 +50228,8 @@ export declare type JiraBoardViewAssigneeColumn = JiraBoardViewColumn & {
|
|
|
49692
50228
|
user?: Maybe<User>;
|
|
49693
50229
|
};
|
|
49694
50230
|
export declare type JiraBoardViewCardOption = {
|
|
50231
|
+
canToggle?: Maybe<Scalars['Boolean']['output']>;
|
|
50232
|
+
enabled?: Maybe<Scalars['Boolean']['output']>;
|
|
49695
50233
|
id: Scalars['ID']['output'];
|
|
49696
50234
|
};
|
|
49697
50235
|
export declare type JiraBoardViewCardOptionConnection = {
|
|
@@ -49909,6 +50447,7 @@ export declare type JiraCmdbField = JiraIssueField & JiraIssueFieldConfiguration
|
|
|
49909
50447
|
aliasFieldId?: Maybe<Scalars['ID']['output']>;
|
|
49910
50448
|
attributesIncludedInAutoCompleteSearch?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
|
|
49911
50449
|
cmdbFieldConfig?: Maybe<JiraCmdbFieldConfig>;
|
|
50450
|
+
cmdbObjects?: Maybe<JiraCmdbObjectConnection>;
|
|
49912
50451
|
description?: Maybe<Scalars['String']['output']>;
|
|
49913
50452
|
fieldConfig?: Maybe<JiraFieldConfig>;
|
|
49914
50453
|
fieldId: Scalars['String']['output'];
|
|
@@ -49926,6 +50465,13 @@ export declare type JiraCmdbField = JiraIssueField & JiraIssueFieldConfiguration
|
|
|
49926
50465
|
userFieldConfig?: Maybe<JiraUserFieldConfig>;
|
|
49927
50466
|
wasInsightRequestSuccessful?: Maybe<Scalars['Boolean']['output']>;
|
|
49928
50467
|
};
|
|
50468
|
+
export declare type JiraCmdbFieldCmdbObjectsArgs = {
|
|
50469
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
50470
|
+
fieldValues?: InputMaybe<Array<InputMaybe<JiraFieldKeyValueInput>>>;
|
|
50471
|
+
filterById?: InputMaybe<JiraFieldOptionIdsFilterInput>;
|
|
50472
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
50473
|
+
searchBy?: InputMaybe<Scalars['String']['input']>;
|
|
50474
|
+
};
|
|
49929
50475
|
export declare type JiraCmdbFieldSelectedCmdbObjectsConnectionArgs = {
|
|
49930
50476
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
49931
50477
|
before?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -52060,6 +52606,15 @@ export declare type JiraDisableJourneyConfigurationInput = {
|
|
|
52060
52606
|
id: Scalars['ID']['input'];
|
|
52061
52607
|
version: Scalars['Long']['input'];
|
|
52062
52608
|
};
|
|
52609
|
+
export declare type JiraDiscardUserBoardViewConfigInput = {
|
|
52610
|
+
viewId: Scalars['ID']['input'];
|
|
52611
|
+
};
|
|
52612
|
+
export declare type JiraDiscardUserBoardViewConfigPayload = Payload & {
|
|
52613
|
+
__typename?: 'JiraDiscardUserBoardViewConfigPayload';
|
|
52614
|
+
boardView?: Maybe<JiraBoardView>;
|
|
52615
|
+
errors?: Maybe<Array<MutationError>>;
|
|
52616
|
+
success: Scalars['Boolean']['output'];
|
|
52617
|
+
};
|
|
52063
52618
|
export declare type JiraDismissBitbucketPendingAccessRequestBannerInput = {
|
|
52064
52619
|
isDismissed?: InputMaybe<Scalars['Boolean']['input']>;
|
|
52065
52620
|
};
|
|
@@ -52382,6 +52937,10 @@ export declare type JiraFieldEdge = {
|
|
|
52382
52937
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
52383
52938
|
node?: Maybe<JiraField>;
|
|
52384
52939
|
};
|
|
52940
|
+
export declare type JiraFieldKeyValueInput = {
|
|
52941
|
+
key?: InputMaybe<Scalars['String']['input']>;
|
|
52942
|
+
value?: InputMaybe<Scalars['String']['input']>;
|
|
52943
|
+
};
|
|
52385
52944
|
export declare type JiraFieldNonEditableReason = {
|
|
52386
52945
|
__typename?: 'JiraFieldNonEditableReason';
|
|
52387
52946
|
message?: Maybe<Scalars['String']['output']>;
|
|
@@ -55069,7 +55628,7 @@ export declare enum JiraJqlAutocompleteType {
|
|
|
55069
55628
|
Version = "VERSION"
|
|
55070
55629
|
}
|
|
55071
55630
|
export declare type JiraJqlBoardInput = {
|
|
55072
|
-
boardId
|
|
55631
|
+
boardId: Scalars['Long']['input'];
|
|
55073
55632
|
};
|
|
55074
55633
|
export declare type JiraJqlBuilder = {
|
|
55075
55634
|
__typename?: 'JiraJqlBuilder';
|
|
@@ -55112,6 +55671,7 @@ export declare type JiraJqlBuilderFieldsArgs = {
|
|
|
55112
55671
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
55113
55672
|
jqlContext?: InputMaybe<Scalars['String']['input']>;
|
|
55114
55673
|
jqlContextFieldsFilter?: InputMaybe<JiraJqlContextFieldsFilter>;
|
|
55674
|
+
scope?: InputMaybe<JiraJqlScopeInput>;
|
|
55115
55675
|
viewContext?: InputMaybe<JiraJqlViewContext>;
|
|
55116
55676
|
};
|
|
55117
55677
|
export declare type JiraJqlBuilderHydrateJqlQueryArgs = {
|
|
@@ -55607,7 +56167,6 @@ export declare type JiraJqlVersionsUnreleasedArgs = {
|
|
|
55607
56167
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
55608
56168
|
};
|
|
55609
56169
|
export declare enum JiraJqlViewContext {
|
|
55610
|
-
FilterRefinement = "FILTER_REFINEMENT",
|
|
55611
56170
|
JpdRoadmaps = "JPD_ROADMAPS",
|
|
55612
56171
|
JswPlans = "JSW_PLANS",
|
|
55613
56172
|
Jwm = "JWM",
|
|
@@ -58819,6 +59378,16 @@ export declare type JiraProjectsMappedToHelpCenterFilterInput = {
|
|
|
58819
59378
|
helpCenterId: Scalars['ID']['input'];
|
|
58820
59379
|
helpCenterMappingStatus?: InputMaybe<JiraProjectsHelpCenterMappingStatus>;
|
|
58821
59380
|
};
|
|
59381
|
+
export declare type JiraPublishBoardViewConfigInput = {
|
|
59382
|
+
settings?: InputMaybe<JiraBoardViewSettings>;
|
|
59383
|
+
viewId: Scalars['ID']['input'];
|
|
59384
|
+
};
|
|
59385
|
+
export declare type JiraPublishBoardViewConfigPayload = Payload & {
|
|
59386
|
+
__typename?: 'JiraPublishBoardViewConfigPayload';
|
|
59387
|
+
boardView?: Maybe<JiraBoardView>;
|
|
59388
|
+
errors?: Maybe<Array<MutationError>>;
|
|
59389
|
+
success: Scalars['Boolean']['output'];
|
|
59390
|
+
};
|
|
58822
59391
|
export declare type JiraPublishJourneyConfigurationInput = {
|
|
58823
59392
|
id: Scalars['ID']['input'];
|
|
58824
59393
|
version: Scalars['Long']['input'];
|
|
@@ -61975,6 +62544,7 @@ export declare type JiraSetBoardViewFilterInput = {
|
|
|
61975
62544
|
};
|
|
61976
62545
|
export declare type JiraSetBoardViewFilterPayload = Payload & {
|
|
61977
62546
|
__typename?: 'JiraSetBoardViewFilterPayload';
|
|
62547
|
+
boardView?: Maybe<JiraBoardView>;
|
|
61978
62548
|
errors?: Maybe<Array<MutationError>>;
|
|
61979
62549
|
success: Scalars['Boolean']['output'];
|
|
61980
62550
|
view?: Maybe<JiraBoardView>;
|
|
@@ -61985,6 +62555,7 @@ export declare type JiraSetBoardViewGroupByInput = {
|
|
|
61985
62555
|
};
|
|
61986
62556
|
export declare type JiraSetBoardViewGroupByPayload = Payload & {
|
|
61987
62557
|
__typename?: 'JiraSetBoardViewGroupByPayload';
|
|
62558
|
+
boardView?: Maybe<JiraBoardView>;
|
|
61988
62559
|
errors?: Maybe<Array<MutationError>>;
|
|
61989
62560
|
success: Scalars['Boolean']['output'];
|
|
61990
62561
|
view?: Maybe<JiraBoardView>;
|
|
@@ -68050,6 +68621,7 @@ export declare type MarketplaceConsolePrivateListingsTokenDetails = {
|
|
|
68050
68621
|
export declare type MarketplaceConsoleProduct = {
|
|
68051
68622
|
__typename?: 'MarketplaceConsoleProduct';
|
|
68052
68623
|
appKey: Scalars['ID']['output'];
|
|
68624
|
+
isEditionDetailsMissing?: Maybe<Scalars['Boolean']['output']>;
|
|
68053
68625
|
isPricingPlanMissing?: Maybe<Scalars['Boolean']['output']>;
|
|
68054
68626
|
productId: Scalars['ID']['output'];
|
|
68055
68627
|
};
|
|
@@ -68571,6 +69143,13 @@ export declare type MarketplaceStoreCategoryResponse = {
|
|
|
68571
69143
|
name: Scalars['String']['output'];
|
|
68572
69144
|
slug: Scalars['String']['output'];
|
|
68573
69145
|
};
|
|
69146
|
+
export declare type MarketplaceStoreCmtAvailabilityResponse = {
|
|
69147
|
+
__typename?: 'MarketplaceStoreCmtAvailabilityResponse';
|
|
69148
|
+
allowed: Scalars['Boolean']['output'];
|
|
69149
|
+
btfAddOnAccountId?: Maybe<Scalars['String']['output']>;
|
|
69150
|
+
maintenanceEndDate?: Maybe<Scalars['String']['output']>;
|
|
69151
|
+
migrationSourceUuid?: Maybe<Scalars['String']['output']>;
|
|
69152
|
+
};
|
|
68574
69153
|
export declare type MarketplaceStoreCollectionHeroSection = {
|
|
68575
69154
|
__typename?: 'MarketplaceStoreCollectionHeroSection';
|
|
68576
69155
|
backgroundColor: Scalars['String']['output'];
|
|
@@ -68959,9 +69538,11 @@ export declare type MarketplaceStoreProduct = {
|
|
|
68959
69538
|
};
|
|
68960
69539
|
export declare type MarketplaceStoreQueryApi = {
|
|
68961
69540
|
__typename?: 'MarketplaceStoreQueryApi';
|
|
68962
|
-
|
|
69541
|
+
appReviewsByAppId: MarketplaceStoreReviewsResponse;
|
|
69542
|
+
appReviewsByAppKey: MarketplaceStoreReviewsResponse;
|
|
68963
69543
|
billingSystem: MarketplaceStoreBillingSystemResponse;
|
|
68964
69544
|
category: MarketplaceStoreCategoryResponse;
|
|
69545
|
+
cmtAvailability: MarketplaceStoreCmtAvailabilityResponse;
|
|
68965
69546
|
collection: MarketplaceStoreCollectionResponse;
|
|
68966
69547
|
currentUser: MarketplaceStoreCurrentUserResponse;
|
|
68967
69548
|
editions: Array<MarketplaceStoreEdition>;
|
|
@@ -68976,7 +69557,13 @@ export declare type MarketplaceStoreQueryApi = {
|
|
|
68976
69557
|
myReview: MarketplaceStoreCurrentUserReviewResponse;
|
|
68977
69558
|
partner: MarketplaceStorePartnerResponse;
|
|
68978
69559
|
};
|
|
68979
|
-
export declare type
|
|
69560
|
+
export declare type MarketplaceStoreQueryApiAppReviewsByAppIdArgs = {
|
|
69561
|
+
appId: Scalars['ID']['input'];
|
|
69562
|
+
filter?: InputMaybe<MarketplaceStoreReviewFilterInput>;
|
|
69563
|
+
limit?: InputMaybe<Scalars['Int']['input']>;
|
|
69564
|
+
offset?: InputMaybe<Scalars['Int']['input']>;
|
|
69565
|
+
};
|
|
69566
|
+
export declare type MarketplaceStoreQueryApiAppReviewsByAppKeyArgs = {
|
|
68980
69567
|
appKey: Scalars['String']['input'];
|
|
68981
69568
|
filter?: InputMaybe<MarketplaceStoreReviewFilterInput>;
|
|
68982
69569
|
limit?: InputMaybe<Scalars['Int']['input']>;
|
|
@@ -68988,6 +69575,9 @@ export declare type MarketplaceStoreQueryApiBillingSystemArgs = {
|
|
|
68988
69575
|
export declare type MarketplaceStoreQueryApiCategoryArgs = {
|
|
68989
69576
|
slug: Scalars['String']['input'];
|
|
68990
69577
|
};
|
|
69578
|
+
export declare type MarketplaceStoreQueryApiCmtAvailabilityArgs = {
|
|
69579
|
+
input: MarketplaceStoreInstallAppInput;
|
|
69580
|
+
};
|
|
68991
69581
|
export declare type MarketplaceStoreQueryApiCollectionArgs = {
|
|
68992
69582
|
slug: Scalars['String']['input'];
|
|
68993
69583
|
};
|
|
@@ -70995,6 +71585,8 @@ export declare type Mutation = {
|
|
|
70995
71585
|
jiraOAuthApps?: Maybe<JiraOAuthAppsMutation>;
|
|
70996
71586
|
jira_createCustomBackground?: Maybe<JiraProjectCreateCustomBackgroundMutationPayload>;
|
|
70997
71587
|
jira_deleteCustomBackground?: Maybe<JiraProjectDeleteCustomBackgroundMutationPayload>;
|
|
71588
|
+
jira_discardUserBoardViewConfig?: Maybe<JiraDiscardUserBoardViewConfigPayload>;
|
|
71589
|
+
jira_publishBoardViewConfig?: Maybe<JiraPublishBoardViewConfigPayload>;
|
|
70998
71590
|
jira_reorderBoardViewColumn?: Maybe<JiraReorderBoardViewColumnPayload>;
|
|
70999
71591
|
jira_setBoardViewCardFieldSelected?: Maybe<JiraSetBoardViewCardFieldSelectedPayload>;
|
|
71000
71592
|
jira_setBoardViewCardOptionState?: Maybe<JiraSetBoardViewCardOptionStatePayload>;
|
|
@@ -72209,6 +72801,12 @@ export declare type MutationJira_CreateCustomBackgroundArgs = {
|
|
|
72209
72801
|
export declare type MutationJira_DeleteCustomBackgroundArgs = {
|
|
72210
72802
|
input: JiraProjectDeleteCustomBackgroundInput;
|
|
72211
72803
|
};
|
|
72804
|
+
export declare type MutationJira_DiscardUserBoardViewConfigArgs = {
|
|
72805
|
+
input: JiraDiscardUserBoardViewConfigInput;
|
|
72806
|
+
};
|
|
72807
|
+
export declare type MutationJira_PublishBoardViewConfigArgs = {
|
|
72808
|
+
input: JiraPublishBoardViewConfigInput;
|
|
72809
|
+
};
|
|
72212
72810
|
export declare type MutationJira_ReorderBoardViewColumnArgs = {
|
|
72213
72811
|
input: JiraReorderBoardViewColumnInput;
|
|
72214
72812
|
};
|
|
@@ -75665,6 +76263,7 @@ export declare type Query = {
|
|
|
75665
76263
|
confluenceV2_spaceSettings?: Maybe<ConfluenceV2SpaceSettings>;
|
|
75666
76264
|
confluenceV2_spaceTheme?: Maybe<ConfluenceV2Theme>;
|
|
75667
76265
|
confluenceV2_spaces?: Maybe<Array<Maybe<ConfluenceV2Space>>>;
|
|
76266
|
+
confluence_atlassianUser?: Maybe<AtlassianUser>;
|
|
75668
76267
|
confluence_calendarPreference?: Maybe<ConfluenceCalendarPreference>;
|
|
75669
76268
|
confluence_calendarTimezones?: Maybe<ConfluenceCalendarTimezones>;
|
|
75670
76269
|
confluence_mutationsPlaceholderQuery?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -75751,6 +76350,7 @@ export declare type Query = {
|
|
|
75751
76350
|
devai_autodevJobFileContents?: Maybe<Scalars['String']['output']>;
|
|
75752
76351
|
devai_autodevJobLogGroups?: Maybe<DevAiAutodevLogGroupConnection>;
|
|
75753
76352
|
devai_autodevJobLogs?: Maybe<DevAiAutodevLogConnection>;
|
|
76353
|
+
devai_autodevJobsForIssue?: Maybe<JiraAutodevJobConnection>;
|
|
75754
76354
|
devai_autodevRovoAgents?: Maybe<DevAiRovoAgentConnection>;
|
|
75755
76355
|
developerLogAccess?: Maybe<Array<Maybe<DeveloperLogAccessResult>>>;
|
|
75756
76356
|
developmentInformation?: Maybe<IssueDevOpsDevelopmentInformation>;
|
|
@@ -77231,6 +77831,10 @@ export declare type QueryConfluenceV2_SpaceThemeArgs = {
|
|
|
77231
77831
|
export declare type QueryConfluenceV2_SpacesArgs = {
|
|
77232
77832
|
ids: Array<Scalars['ID']['input']>;
|
|
77233
77833
|
};
|
|
77834
|
+
export declare type QueryConfluence_AtlassianUserArgs = {
|
|
77835
|
+
current?: InputMaybe<Scalars['Boolean']['input']>;
|
|
77836
|
+
id?: InputMaybe<Scalars['ID']['input']>;
|
|
77837
|
+
};
|
|
77234
77838
|
export declare type QueryConfluence_CalendarPreferenceArgs = {
|
|
77235
77839
|
cloudId: Scalars['ID']['input'];
|
|
77236
77840
|
};
|
|
@@ -77637,6 +78241,10 @@ export declare type QueryDevai_AutodevJobLogsArgs = {
|
|
|
77637
78241
|
jobId: Scalars['ID']['input'];
|
|
77638
78242
|
minPriority?: InputMaybe<DevAiAutodevLogPriority>;
|
|
77639
78243
|
};
|
|
78244
|
+
export declare type QueryDevai_AutodevJobsForIssueArgs = {
|
|
78245
|
+
issueAri: Scalars['ID']['input'];
|
|
78246
|
+
jobIdFilter?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
78247
|
+
};
|
|
77640
78248
|
export declare type QueryDevai_AutodevRovoAgentsArgs = {
|
|
77641
78249
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
77642
78250
|
cloudId: Scalars['ID']['input'];
|
|
@@ -81372,6 +81980,7 @@ export declare type SearchThirdPartyFilter = {
|
|
|
81372
81980
|
titleMatchOnly?: InputMaybe<Scalars['Boolean']['input']>;
|
|
81373
81981
|
};
|
|
81374
81982
|
export declare type SearchThirdPartyProduct = {
|
|
81983
|
+
connectorSources?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
81375
81984
|
integrationId?: InputMaybe<Scalars['String']['input']>;
|
|
81376
81985
|
product?: InputMaybe<Scalars['String']['input']>;
|
|
81377
81986
|
providerId?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -84302,6 +84911,7 @@ export declare type SprintWithStatistics = BaseSprint & {
|
|
|
84302
84911
|
goal?: Maybe<Scalars['String']['output']>;
|
|
84303
84912
|
id?: Maybe<Scalars['ID']['output']>;
|
|
84304
84913
|
incompleteCardsDestinations?: Maybe<Array<Maybe<InCompleteCardsDestination>>>;
|
|
84914
|
+
lastColumnName?: Maybe<Scalars['String']['output']>;
|
|
84305
84915
|
name?: Maybe<Scalars['String']['output']>;
|
|
84306
84916
|
sprintMetadata?: Maybe<SoftwareSprintMetadata>;
|
|
84307
84917
|
sprintState: SprintState;
|
|
@@ -85880,6 +86490,7 @@ export declare type TownsquareGoal = Node & {
|
|
|
85880
86490
|
status?: Maybe<TownsquareStatus>;
|
|
85881
86491
|
subGoals?: Maybe<TownsquareGoalConnection>;
|
|
85882
86492
|
targetDate?: Maybe<TownsquareTargetDate>;
|
|
86493
|
+
updates?: Maybe<TownsquareGoalUpdateConnection>;
|
|
85883
86494
|
url?: Maybe<Scalars['String']['output']>;
|
|
85884
86495
|
uuid: Scalars['String']['output'];
|
|
85885
86496
|
watchers?: Maybe<TownsquareUserConnection>;
|
|
@@ -85888,6 +86499,10 @@ export declare type TownsquareGoalSubGoalsArgs = {
|
|
|
85888
86499
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
85889
86500
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
85890
86501
|
};
|
|
86502
|
+
export declare type TownsquareGoalUpdatesArgs = {
|
|
86503
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
86504
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
86505
|
+
};
|
|
85891
86506
|
export declare type TownsquareGoalConnection = {
|
|
85892
86507
|
__typename?: 'TownsquareGoalConnection';
|
|
85893
86508
|
edges?: Maybe<Array<Maybe<TownsquareGoalEdge>>>;
|
|
@@ -86031,6 +86646,16 @@ export declare type TownsquareGoalUpdateCommentsArgs = {
|
|
|
86031
86646
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
86032
86647
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
86033
86648
|
};
|
|
86649
|
+
export declare type TownsquareGoalUpdateConnection = {
|
|
86650
|
+
__typename?: 'TownsquareGoalUpdateConnection';
|
|
86651
|
+
edges?: Maybe<Array<Maybe<TownsquareGoalUpdateEdge>>>;
|
|
86652
|
+
pageInfo: PageInfo;
|
|
86653
|
+
};
|
|
86654
|
+
export declare type TownsquareGoalUpdateEdge = {
|
|
86655
|
+
__typename?: 'TownsquareGoalUpdateEdge';
|
|
86656
|
+
cursor: Scalars['String']['output'];
|
|
86657
|
+
node?: Maybe<TownsquareGoalUpdate>;
|
|
86658
|
+
};
|
|
86034
86659
|
export declare type TownsquareLocalizationField = {
|
|
86035
86660
|
__typename?: 'TownsquareLocalizationField';
|
|
86036
86661
|
defaultValue?: Maybe<Scalars['String']['output']>;
|
|
@@ -88439,6 +89064,82 @@ export declare type UnifiedCachingMutationInvalidateCacheArgs = {
|
|
|
88439
89064
|
aaid: Scalars['String']['input'];
|
|
88440
89065
|
dataPoint: Scalars['String']['input'];
|
|
88441
89066
|
};
|
|
89067
|
+
export declare type UnifiedCommunityMutation = {
|
|
89068
|
+
__typename?: 'UnifiedCommunityMutation';
|
|
89069
|
+
initializeCommunity?: Maybe<UnifiedCommunityPayload>;
|
|
89070
|
+
};
|
|
89071
|
+
export declare type UnifiedCommunityMutationInitializeCommunityArgs = {
|
|
89072
|
+
aaid?: InputMaybe<Scalars['String']['input']>;
|
|
89073
|
+
emailId?: InputMaybe<Scalars['String']['input']>;
|
|
89074
|
+
};
|
|
89075
|
+
export declare type UnifiedCommunityPayload = UnifiedPayload & {
|
|
89076
|
+
__typename?: 'UnifiedCommunityPayload';
|
|
89077
|
+
errors?: Maybe<Array<UnifiedMutationError>>;
|
|
89078
|
+
forumsProfile?: Maybe<UnifiedForumsAccount>;
|
|
89079
|
+
gamificationProfile?: Maybe<UnifiedGamificationProfile>;
|
|
89080
|
+
success: Scalars['Boolean']['output'];
|
|
89081
|
+
unifiedProfile?: Maybe<UnifiedProfile>;
|
|
89082
|
+
};
|
|
89083
|
+
export declare type UnifiedConsentMutation = {
|
|
89084
|
+
__typename?: 'UnifiedConsentMutation';
|
|
89085
|
+
deleteConsent?: Maybe<UnifiedConsentPayload>;
|
|
89086
|
+
removeConsent?: Maybe<UnifiedConsentPayload>;
|
|
89087
|
+
setConsent?: Maybe<UnifiedConsentPayload>;
|
|
89088
|
+
updateConsent?: Maybe<UnifiedConsentPayload>;
|
|
89089
|
+
};
|
|
89090
|
+
export declare type UnifiedConsentMutationDeleteConsentArgs = {
|
|
89091
|
+
consentObj: Array<UnifiedConsentObjInput>;
|
|
89092
|
+
type?: InputMaybe<Scalars['String']['input']>;
|
|
89093
|
+
value: Scalars['String']['input'];
|
|
89094
|
+
};
|
|
89095
|
+
export declare type UnifiedConsentMutationRemoveConsentArgs = {
|
|
89096
|
+
type?: InputMaybe<Scalars['String']['input']>;
|
|
89097
|
+
value: Scalars['String']['input'];
|
|
89098
|
+
};
|
|
89099
|
+
export declare type UnifiedConsentMutationSetConsentArgs = {
|
|
89100
|
+
consentObj: Array<UnifiedConsentObjInput>;
|
|
89101
|
+
type: Scalars['String']['input'];
|
|
89102
|
+
value: Scalars['String']['input'];
|
|
89103
|
+
};
|
|
89104
|
+
export declare type UnifiedConsentMutationUpdateConsentArgs = {
|
|
89105
|
+
consentObj: Array<UnifiedConsentObjInput>;
|
|
89106
|
+
type?: InputMaybe<Scalars['String']['input']>;
|
|
89107
|
+
value: Scalars['String']['input'];
|
|
89108
|
+
};
|
|
89109
|
+
export declare type UnifiedConsentObj = {
|
|
89110
|
+
__typename?: 'UnifiedConsentObj';
|
|
89111
|
+
consent_key: Scalars['String']['output'];
|
|
89112
|
+
consent_status: Scalars['String']['output'];
|
|
89113
|
+
created_at: Scalars['String']['output'];
|
|
89114
|
+
updated_at: Scalars['String']['output'];
|
|
89115
|
+
};
|
|
89116
|
+
export declare type UnifiedConsentObjInput = {
|
|
89117
|
+
consent_key: Scalars['String']['input'];
|
|
89118
|
+
consent_status: Scalars['String']['input'];
|
|
89119
|
+
};
|
|
89120
|
+
export declare type UnifiedConsentPayload = UnifiedPayload & {
|
|
89121
|
+
__typename?: 'UnifiedConsentPayload';
|
|
89122
|
+
errors?: Maybe<Array<UnifiedMutationError>>;
|
|
89123
|
+
message?: Maybe<Scalars['String']['output']>;
|
|
89124
|
+
success: Scalars['Boolean']['output'];
|
|
89125
|
+
};
|
|
89126
|
+
export declare type UnifiedConsentQuery = {
|
|
89127
|
+
__typename?: 'UnifiedConsentQuery';
|
|
89128
|
+
getConsent?: Maybe<UnifiedUConsentStatusResult>;
|
|
89129
|
+
};
|
|
89130
|
+
export declare type UnifiedConsentQueryGetConsentArgs = {
|
|
89131
|
+
type?: InputMaybe<Scalars['String']['input']>;
|
|
89132
|
+
value: Scalars['String']['input'];
|
|
89133
|
+
};
|
|
89134
|
+
export declare type UnifiedConsentStatus = UnifiedINode & {
|
|
89135
|
+
__typename?: 'UnifiedConsentStatus';
|
|
89136
|
+
consent_obj: Array<UnifiedConsentObj>;
|
|
89137
|
+
created_at: Scalars['String']['output'];
|
|
89138
|
+
id: Scalars['ID']['output'];
|
|
89139
|
+
type: Scalars['String']['output'];
|
|
89140
|
+
updated_at: Scalars['String']['output'];
|
|
89141
|
+
value: Scalars['String']['output'];
|
|
89142
|
+
};
|
|
88442
89143
|
export declare type UnifiedForums = UnifiedINode & {
|
|
88443
89144
|
__typename?: 'UnifiedForums';
|
|
88444
89145
|
badges?: Maybe<UnifiedUForumsBadgesResult>;
|
|
@@ -88454,6 +89155,27 @@ export declare type UnifiedForumsGroupsArgs = {
|
|
|
88454
89155
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
88455
89156
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
88456
89157
|
};
|
|
89158
|
+
export declare type UnifiedForumsAccount = UnifiedINode & {
|
|
89159
|
+
__typename?: 'UnifiedForumsAccount';
|
|
89160
|
+
email?: Maybe<Scalars['String']['output']>;
|
|
89161
|
+
firstName?: Maybe<Scalars['String']['output']>;
|
|
89162
|
+
href?: Maybe<Scalars['String']['output']>;
|
|
89163
|
+
id: Scalars['ID']['output'];
|
|
89164
|
+
lastName?: Maybe<Scalars['String']['output']>;
|
|
89165
|
+
lastVisitTime?: Maybe<Scalars['String']['output']>;
|
|
89166
|
+
login?: Maybe<Scalars['String']['output']>;
|
|
89167
|
+
onlineStatus?: Maybe<Scalars['String']['output']>;
|
|
89168
|
+
type?: Maybe<Scalars['String']['output']>;
|
|
89169
|
+
viewHref?: Maybe<Scalars['String']['output']>;
|
|
89170
|
+
};
|
|
89171
|
+
export declare type UnifiedForumsAccountDetails = UnifiedINode & {
|
|
89172
|
+
__typename?: 'UnifiedForumsAccountDetails';
|
|
89173
|
+
aaid?: Maybe<Scalars['String']['output']>;
|
|
89174
|
+
emailId?: Maybe<Scalars['String']['output']>;
|
|
89175
|
+
id: Scalars['ID']['output'];
|
|
89176
|
+
nickname?: Maybe<Scalars['String']['output']>;
|
|
89177
|
+
orgId?: Maybe<Scalars['String']['output']>;
|
|
89178
|
+
};
|
|
88457
89179
|
export declare type UnifiedForumsBadge = UnifiedIBadge & UnifiedINode & {
|
|
88458
89180
|
__typename?: 'UnifiedForumsBadge';
|
|
88459
89181
|
actionUrl?: Maybe<Scalars['String']['output']>;
|
|
@@ -88570,6 +89292,11 @@ export declare type UnifiedGamificationLevel = UnifiedINode & {
|
|
|
88570
89292
|
maxPoints?: Maybe<Scalars['Int']['output']>;
|
|
88571
89293
|
nextLevelName?: Maybe<Scalars['String']['output']>;
|
|
88572
89294
|
};
|
|
89295
|
+
export declare type UnifiedGamificationProfile = {
|
|
89296
|
+
__typename?: 'UnifiedGamificationProfile';
|
|
89297
|
+
firstName?: Maybe<Scalars['String']['output']>;
|
|
89298
|
+
userId?: Maybe<Scalars['String']['output']>;
|
|
89299
|
+
};
|
|
88573
89300
|
export declare type UnifiedGamificationRecognitionsSummary = UnifiedINode & {
|
|
88574
89301
|
__typename?: 'UnifiedGamificationRecognitionsSummary';
|
|
88575
89302
|
id: Scalars['ID']['output'];
|
|
@@ -88771,6 +89498,8 @@ export declare type UnifiedMutation = {
|
|
|
88771
89498
|
__typename?: 'UnifiedMutation';
|
|
88772
89499
|
account?: Maybe<UnifiedAccountMutation>;
|
|
88773
89500
|
caching?: Maybe<UnifiedCachingMutation>;
|
|
89501
|
+
community?: Maybe<UnifiedCommunityMutation>;
|
|
89502
|
+
consent?: Maybe<UnifiedConsentMutation>;
|
|
88774
89503
|
createUnifiedSystem?: Maybe<UnifiedProfilePayload>;
|
|
88775
89504
|
gating?: Maybe<UnifiedGatingMutation>;
|
|
88776
89505
|
linking?: Maybe<UnifiedLinkingMutation>;
|
|
@@ -88884,6 +89613,7 @@ export declare type UnifiedQuery = {
|
|
|
88884
89613
|
accountBasics?: Maybe<UnifiedUAccountBasicsResult>;
|
|
88885
89614
|
accountDetails?: Maybe<UnifiedUAccountDetailsResult>;
|
|
88886
89615
|
atlassianProducts?: Maybe<UnifiedUAtlassianProductResult>;
|
|
89616
|
+
consent?: Maybe<UnifiedConsentQuery>;
|
|
88887
89617
|
gating?: Maybe<UnifiedGatingQuery>;
|
|
88888
89618
|
node?: Maybe<UnifiedINode>;
|
|
88889
89619
|
unifiedProfile?: Maybe<UnifiedUProfileResult>;
|
|
@@ -88950,6 +89680,7 @@ export declare type UnifiedUAccountResult = UnifiedAccount | UnifiedQueryError;
|
|
|
88950
89680
|
export declare type UnifiedUAdminsResult = UnifiedAdmins | UnifiedQueryError;
|
|
88951
89681
|
export declare type UnifiedUAllowListResult = UnifiedAllowList | UnifiedQueryError;
|
|
88952
89682
|
export declare type UnifiedUAtlassianProductResult = UnifiedAtlassianProductConnection | UnifiedQueryError;
|
|
89683
|
+
export declare type UnifiedUConsentStatusResult = UnifiedConsentStatus | UnifiedQueryError;
|
|
88953
89684
|
export declare type UnifiedUForumsBadgesResult = UnifiedForumsBadgesConnection | UnifiedQueryError;
|
|
88954
89685
|
export declare type UnifiedUForumsGroupsResult = UnifiedForumsGroupsConnection | UnifiedQueryError;
|
|
88955
89686
|
export declare type UnifiedUForumsResult = UnifiedForums | UnifiedQueryError;
|