@forge/cli-shared 6.11.0-next.5 → 6.11.0-next.7
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 +13 -0
- package/out/graphql/graphql-types.d.ts +454 -20
- package/out/graphql/graphql-types.d.ts.map +1 -1
- package/out/graphql/graphql-types.js +63 -23
- package/out/ui/text.d.ts +15 -0
- package/out/ui/text.d.ts.map +1 -1
- package/out/ui/text.js +21 -0
- package/package.json +2 -2
|
@@ -809,6 +809,10 @@ export declare type AgentStudioAgentEdge = {
|
|
|
809
809
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
810
810
|
node?: Maybe<AgentStudioAssistant>;
|
|
811
811
|
};
|
|
812
|
+
export declare type AgentStudioAgentQueryInput = {
|
|
813
|
+
name?: InputMaybe<Scalars['String']['input']>;
|
|
814
|
+
onlyFavouriteAgents?: InputMaybe<Scalars['Boolean']['input']>;
|
|
815
|
+
};
|
|
812
816
|
export declare type AgentStudioAgentResult = AgentStudioAssistant | AgentStudioServiceAgent | QueryError;
|
|
813
817
|
export declare enum AgentStudioAgentType {
|
|
814
818
|
Assistant = "ASSISTANT",
|
|
@@ -1013,6 +1017,12 @@ export declare type AgentStudioUpdateAgentActionsPayload = Payload & {
|
|
|
1013
1017
|
errors?: Maybe<Array<MutationError>>;
|
|
1014
1018
|
success: Scalars['Boolean']['output'];
|
|
1015
1019
|
};
|
|
1020
|
+
export declare type AgentStudioUpdateAgentAsFavouritePayload = Payload & {
|
|
1021
|
+
__typename?: 'AgentStudioUpdateAgentAsFavouritePayload';
|
|
1022
|
+
agent?: Maybe<AgentStudioAgent>;
|
|
1023
|
+
errors?: Maybe<Array<MutationError>>;
|
|
1024
|
+
success: Scalars['Boolean']['output'];
|
|
1025
|
+
};
|
|
1016
1026
|
export declare type AgentStudioUpdateAgentDetailsInput = {
|
|
1017
1027
|
creatorId?: InputMaybe<Scalars['ID']['input']>;
|
|
1018
1028
|
defaultJiraRequestTypeId?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -4573,6 +4583,11 @@ export declare enum ChannelPlatformChannelType {
|
|
|
4573
4583
|
Chat = "CHAT",
|
|
4574
4584
|
Voice = "VOICE"
|
|
4575
4585
|
}
|
|
4586
|
+
export declare type ChannelPlatformConnectDetails = {
|
|
4587
|
+
__typename?: 'ChannelPlatformConnectDetails';
|
|
4588
|
+
instanceCcpUrl?: Maybe<Scalars['String']['output']>;
|
|
4589
|
+
region?: Maybe<Scalars['String']['output']>;
|
|
4590
|
+
};
|
|
4576
4591
|
export declare type ChannelPlatformConnectQueue = {
|
|
4577
4592
|
__typename?: 'ChannelPlatformConnectQueue';
|
|
4578
4593
|
arn?: Maybe<Scalars['String']['output']>;
|
|
@@ -9908,6 +9923,17 @@ export declare type ConfluenceAdminReportStatus = {
|
|
|
9908
9923
|
reports?: Maybe<Array<Maybe<ConfluenceAdminReport>>>;
|
|
9909
9924
|
};
|
|
9910
9925
|
export declare type ConfluenceAncestor = ConfluenceDatabase | ConfluenceEmbed | ConfluenceFolder | ConfluencePage | ConfluenceWhiteboard;
|
|
9926
|
+
export declare type ConfluenceApplicationLink = {
|
|
9927
|
+
__typename?: 'ConfluenceApplicationLink';
|
|
9928
|
+
applicationId: Scalars['String']['output'];
|
|
9929
|
+
displayUrl: Scalars['String']['output'];
|
|
9930
|
+
isCloud: Scalars['Boolean']['output'];
|
|
9931
|
+
isPrimary: Scalars['Boolean']['output'];
|
|
9932
|
+
isSystem: Scalars['Boolean']['output'];
|
|
9933
|
+
name: Scalars['String']['output'];
|
|
9934
|
+
rpcUrl?: Maybe<Scalars['String']['output']>;
|
|
9935
|
+
typeId: Scalars['String']['output'];
|
|
9936
|
+
};
|
|
9911
9937
|
export declare type ConfluenceBlogPost = Node & {
|
|
9912
9938
|
__typename?: 'ConfluenceBlogPost';
|
|
9913
9939
|
author?: Maybe<ConfluenceUserInfo>;
|
|
@@ -9966,6 +9992,7 @@ export declare type ConfluenceBlogPostViewerSummary = {
|
|
|
9966
9992
|
favoritedSummary?: Maybe<ConfluenceFavoritedSummary>;
|
|
9967
9993
|
lastContribution?: Maybe<ConfluenceContribution>;
|
|
9968
9994
|
lastSeenAt?: Maybe<Scalars['DateTime']['output']>;
|
|
9995
|
+
scheduledPublishSummary?: Maybe<ConfluenceScheduledPublishSummary>;
|
|
9969
9996
|
};
|
|
9970
9997
|
export declare type ConfluenceBodies = {
|
|
9971
9998
|
__typename?: 'ConfluenceBodies';
|
|
@@ -10107,6 +10134,11 @@ export declare type ConfluenceCommentResolutionState = {
|
|
|
10107
10134
|
resolveProperties?: Maybe<InlineCommentResolveProperties>;
|
|
10108
10135
|
status?: Maybe<Scalars['Boolean']['output']>;
|
|
10109
10136
|
};
|
|
10137
|
+
export declare enum ConfluenceCommentResolveAllLocation {
|
|
10138
|
+
Editor = "EDITOR",
|
|
10139
|
+
Live = "LIVE",
|
|
10140
|
+
Renderer = "RENDERER"
|
|
10141
|
+
}
|
|
10110
10142
|
export declare enum ConfluenceCommentState {
|
|
10111
10143
|
Resolved = "RESOLVED",
|
|
10112
10144
|
Unresolved = "UNRESOLVED"
|
|
@@ -10131,6 +10163,11 @@ export declare type ConfluenceContent = {
|
|
|
10131
10163
|
eventType: Scalars['String']['output'];
|
|
10132
10164
|
id: Scalars['ID']['output'];
|
|
10133
10165
|
};
|
|
10166
|
+
export declare type ConfluenceContentAnalyticsCountUserByContentType = {
|
|
10167
|
+
__typename?: 'ConfluenceContentAnalyticsCountUserByContentType';
|
|
10168
|
+
nodes: Array<ConfluenceCountGroupByContentItem>;
|
|
10169
|
+
pageInfo: GroupByPageInfo;
|
|
10170
|
+
};
|
|
10134
10171
|
export declare type ConfluenceContentBody = {
|
|
10135
10172
|
__typename?: 'ConfluenceContentBody';
|
|
10136
10173
|
adf?: Maybe<Scalars['String']['output']>;
|
|
@@ -10298,6 +10335,11 @@ export declare type ConfluenceCopySpaceSecurityConfigurationPayload = Payload &
|
|
|
10298
10335
|
errors?: Maybe<Array<MutationError>>;
|
|
10299
10336
|
success: Scalars['Boolean']['output'];
|
|
10300
10337
|
};
|
|
10338
|
+
export declare type ConfluenceCountGroupByContentItem = {
|
|
10339
|
+
__typename?: 'ConfluenceCountGroupByContentItem';
|
|
10340
|
+
content: Scalars['String']['output'];
|
|
10341
|
+
count: Scalars['Int']['output'];
|
|
10342
|
+
};
|
|
10301
10343
|
export declare type ConfluenceCoverPictureWidthUpdated = {
|
|
10302
10344
|
__typename?: 'ConfluenceCoverPictureWidthUpdated';
|
|
10303
10345
|
coverPictureWidth?: Maybe<Scalars['String']['output']>;
|
|
@@ -10424,6 +10466,10 @@ export declare type ConfluenceCurrentContentNativeProperties = {
|
|
|
10424
10466
|
__typename?: 'ConfluenceCurrentContentNativeProperties';
|
|
10425
10467
|
contentState?: Maybe<ConfluenceContentState>;
|
|
10426
10468
|
};
|
|
10469
|
+
export declare type ConfluenceDataLifecycleManagementPolicy = {
|
|
10470
|
+
__typename?: 'ConfluenceDataLifecycleManagementPolicy';
|
|
10471
|
+
isDataRetentionPolicyEnabled: ConfluencePolicyEnabledStatus;
|
|
10472
|
+
};
|
|
10427
10473
|
export declare type ConfluenceDatabase = Node & {
|
|
10428
10474
|
__typename?: 'ConfluenceDatabase';
|
|
10429
10475
|
allAncestors?: Maybe<Array<Maybe<ConfluenceAncestor>>>;
|
|
@@ -10599,6 +10645,33 @@ export declare type ConfluenceEmbedUpdated = {
|
|
|
10599
10645
|
isBlankStateUpdate?: Maybe<Scalars['Boolean']['output']>;
|
|
10600
10646
|
product?: Maybe<Scalars['String']['output']>;
|
|
10601
10647
|
};
|
|
10648
|
+
export declare type ConfluenceExpandTypeFromJira = {
|
|
10649
|
+
__typename?: 'ConfluenceExpandTypeFromJira';
|
|
10650
|
+
confluenceExpandTypeFromJira?: Maybe<Scalars['String']['output']>;
|
|
10651
|
+
};
|
|
10652
|
+
export declare type ConfluenceExperimentInitModernizePayload = {
|
|
10653
|
+
__typename?: 'ConfluenceExperimentInitModernizePayload';
|
|
10654
|
+
errors?: Maybe<Array<MutationError>>;
|
|
10655
|
+
success: Scalars['Boolean']['output'];
|
|
10656
|
+
};
|
|
10657
|
+
export declare type ConfluenceExternalLink = {
|
|
10658
|
+
__typename?: 'ConfluenceExternalLink';
|
|
10659
|
+
id?: Maybe<Scalars['Long']['output']>;
|
|
10660
|
+
url?: Maybe<Scalars['String']['output']>;
|
|
10661
|
+
};
|
|
10662
|
+
export declare type ConfluenceExternalLinkConnection = {
|
|
10663
|
+
__typename?: 'ConfluenceExternalLinkConnection';
|
|
10664
|
+
count?: Maybe<Scalars['Int']['output']>;
|
|
10665
|
+
edges?: Maybe<Array<Maybe<ConfluenceExternalLinkEdge>>>;
|
|
10666
|
+
links?: Maybe<LinksContextBase>;
|
|
10667
|
+
nodes?: Maybe<Array<Maybe<ConfluenceExternalLink>>>;
|
|
10668
|
+
pageInfo?: Maybe<PageInfo>;
|
|
10669
|
+
};
|
|
10670
|
+
export declare type ConfluenceExternalLinkEdge = {
|
|
10671
|
+
__typename?: 'ConfluenceExternalLinkEdge';
|
|
10672
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
10673
|
+
node?: Maybe<ConfluenceExternalLink>;
|
|
10674
|
+
};
|
|
10602
10675
|
export declare type ConfluenceFavoritedSummary = {
|
|
10603
10676
|
__typename?: 'ConfluenceFavoritedSummary';
|
|
10604
10677
|
favoritedAt?: Maybe<Scalars['String']['output']>;
|
|
@@ -10636,6 +10709,10 @@ export declare type ConfluenceFooterComment = ConfluenceComment & Node & {
|
|
|
10636
10709
|
name?: Maybe<Scalars['String']['output']>;
|
|
10637
10710
|
status?: Maybe<ConfluenceCommentStatus>;
|
|
10638
10711
|
};
|
|
10712
|
+
export declare enum ConfluenceGraphQlDefaultTitleEmoji {
|
|
10713
|
+
LivePageDefault = "LIVE_PAGE_DEFAULT",
|
|
10714
|
+
None = "NONE"
|
|
10715
|
+
}
|
|
10639
10716
|
export declare type ConfluenceInlineComment = ConfluenceComment & Node & {
|
|
10640
10717
|
__typename?: 'ConfluenceInlineComment';
|
|
10641
10718
|
author?: Maybe<ConfluenceUserInfo>;
|
|
@@ -10747,6 +10824,15 @@ export declare type ConfluenceLabelSearchResults = {
|
|
|
10747
10824
|
otherLabels?: Maybe<Array<Maybe<ConfluenceLabel>>>;
|
|
10748
10825
|
suggestedLabels?: Maybe<Array<Maybe<ConfluenceLabel>>>;
|
|
10749
10826
|
};
|
|
10827
|
+
export declare type ConfluenceLabelWatchInput = {
|
|
10828
|
+
accountId?: InputMaybe<Scalars['String']['input']>;
|
|
10829
|
+
currentUser?: InputMaybe<Scalars['Boolean']['input']>;
|
|
10830
|
+
labelName: Scalars['String']['input'];
|
|
10831
|
+
};
|
|
10832
|
+
export declare type ConfluenceLabelWatchStatus = {
|
|
10833
|
+
__typename?: 'ConfluenceLabelWatchStatus';
|
|
10834
|
+
isWatching: Scalars['Boolean']['output'];
|
|
10835
|
+
};
|
|
10750
10836
|
export declare type ConfluenceLegacyAiConfigResponse = {
|
|
10751
10837
|
__typename?: 'ConfluenceLegacyAIConfigResponse';
|
|
10752
10838
|
isEnabled: Scalars['Boolean']['output'];
|
|
@@ -16413,6 +16499,23 @@ export declare type ConfluenceMakeSubCalendarPrivateUrlPayload = {
|
|
|
16413
16499
|
privateUrl: Scalars['String']['output'];
|
|
16414
16500
|
success: Scalars['Boolean']['output'];
|
|
16415
16501
|
};
|
|
16502
|
+
export declare type ConfluenceMarkAllCommentsAsReadPayload = Payload & {
|
|
16503
|
+
__typename?: 'ConfluenceMarkAllCommentsAsReadPayload';
|
|
16504
|
+
errors: Array<MutationError>;
|
|
16505
|
+
success: Scalars['Boolean']['output'];
|
|
16506
|
+
};
|
|
16507
|
+
export declare type ConfluenceMarkAllContainerCommentsAsReadInput = {
|
|
16508
|
+
contentId: Scalars['String']['input'];
|
|
16509
|
+
readView?: InputMaybe<ConfluenceViewState>;
|
|
16510
|
+
};
|
|
16511
|
+
export declare type ConfluenceMarkCommentAsDanglingInput = {
|
|
16512
|
+
id: Scalars['ID']['input'];
|
|
16513
|
+
};
|
|
16514
|
+
export declare type ConfluenceMarkCommentAsDanglingPayload = Payload & {
|
|
16515
|
+
__typename?: 'ConfluenceMarkCommentAsDanglingPayload';
|
|
16516
|
+
errors: Array<MutationError>;
|
|
16517
|
+
success: Scalars['Boolean']['output'];
|
|
16518
|
+
};
|
|
16416
16519
|
export declare type ConfluenceMutationApi = {
|
|
16417
16520
|
__typename?: 'ConfluenceMutationApi';
|
|
16418
16521
|
createBlogPost?: Maybe<ConfluenceCreateBlogPostPayload>;
|
|
@@ -16667,6 +16770,7 @@ export declare type ConfluencePageViewerSummary = {
|
|
|
16667
16770
|
favoritedSummary?: Maybe<ConfluenceFavoritedSummary>;
|
|
16668
16771
|
lastContribution?: Maybe<ConfluenceContribution>;
|
|
16669
16772
|
lastSeenAt?: Maybe<Scalars['DateTime']['output']>;
|
|
16773
|
+
scheduledPublishSummary?: Maybe<ConfluenceScheduledPublishSummary>;
|
|
16670
16774
|
};
|
|
16671
16775
|
export declare type ConfluencePdfExportDownloadLink = {
|
|
16672
16776
|
__typename?: 'ConfluencePdfExportDownloadLink';
|
|
@@ -16722,6 +16826,11 @@ export declare type ConfluencePersonWithPermissionsConnection = {
|
|
|
16722
16826
|
nodes?: Maybe<Array<Maybe<ConfluencePerson>>>;
|
|
16723
16827
|
pageInfo?: Maybe<PageInfo>;
|
|
16724
16828
|
};
|
|
16829
|
+
export declare enum ConfluencePolicyEnabledStatus {
|
|
16830
|
+
Disabled = "DISABLED",
|
|
16831
|
+
Enabled = "ENABLED",
|
|
16832
|
+
UndeterminedDueToInternalError = "UNDETERMINED_DUE_TO_INTERNAL_ERROR"
|
|
16833
|
+
}
|
|
16725
16834
|
export declare enum ConfluencePrincipalType {
|
|
16726
16835
|
Group = "GROUP",
|
|
16727
16836
|
User = "USER"
|
|
@@ -16947,6 +17056,11 @@ export declare enum ConfluenceSchedulePublishedType {
|
|
|
16947
17056
|
Scheduled = "SCHEDULED",
|
|
16948
17057
|
Unscheduled = "UNSCHEDULED"
|
|
16949
17058
|
}
|
|
17059
|
+
export declare type ConfluenceScheduledPublishSummary = {
|
|
17060
|
+
__typename?: 'ConfluenceScheduledPublishSummary';
|
|
17061
|
+
isScheduled: Scalars['Boolean']['output'];
|
|
17062
|
+
scheduledToPublishAt?: Maybe<Scalars['String']['output']>;
|
|
17063
|
+
};
|
|
16950
17064
|
export declare type ConfluenceSearchConnection = {
|
|
16951
17065
|
__typename?: 'ConfluenceSearchConnection';
|
|
16952
17066
|
count?: Maybe<Scalars['Int']['output']>;
|
|
@@ -17187,6 +17301,14 @@ export declare type ConfluenceTrashPagePayload = Payload & {
|
|
|
17187
17301
|
errors?: Maybe<Array<MutationError>>;
|
|
17188
17302
|
success: Scalars['Boolean']['output'];
|
|
17189
17303
|
};
|
|
17304
|
+
export declare type ConfluenceUnmarkCommentAsDanglingInput = {
|
|
17305
|
+
id: Scalars['ID']['input'];
|
|
17306
|
+
};
|
|
17307
|
+
export declare type ConfluenceUnmarkCommentAsDanglingPayload = Payload & {
|
|
17308
|
+
__typename?: 'ConfluenceUnmarkCommentAsDanglingPayload';
|
|
17309
|
+
errors: Array<MutationError>;
|
|
17310
|
+
success: Scalars['Boolean']['output'];
|
|
17311
|
+
};
|
|
17190
17312
|
export declare type ConfluenceUnwatchSubCalendarInput = {
|
|
17191
17313
|
subCalendarId: Scalars['ID']['input'];
|
|
17192
17314
|
};
|
|
@@ -17251,6 +17373,17 @@ export declare type ConfluenceUpdateCustomRolePayload = Payload & {
|
|
|
17251
17373
|
success: Scalars['Boolean']['output'];
|
|
17252
17374
|
taskId?: Maybe<Scalars['ID']['output']>;
|
|
17253
17375
|
};
|
|
17376
|
+
export declare type ConfluenceUpdateDefaultTitleEmojiInput = {
|
|
17377
|
+
contentId: Scalars['ID']['input'];
|
|
17378
|
+
defaultTitleEmoji: ConfluenceGraphQlDefaultTitleEmoji;
|
|
17379
|
+
};
|
|
17380
|
+
export declare type ConfluenceUpdateDefaultTitleEmojiPayload = {
|
|
17381
|
+
__typename?: 'ConfluenceUpdateDefaultTitleEmojiPayload';
|
|
17382
|
+
contentId: Scalars['String']['output'];
|
|
17383
|
+
defaultTitleEmoji?: Maybe<ConfluenceGraphQlDefaultTitleEmoji>;
|
|
17384
|
+
errors?: Maybe<Array<MutationError>>;
|
|
17385
|
+
success: Scalars['Boolean']['output'];
|
|
17386
|
+
};
|
|
17254
17387
|
export declare type ConfluenceUpdateDraftBlogPostInput = {
|
|
17255
17388
|
body?: InputMaybe<ConfluenceContentBodyInput>;
|
|
17256
17389
|
id: Scalars['ID']['input'];
|
|
@@ -17273,6 +17406,14 @@ export declare type ConfluenceUpdateDraftPagePayload = Payload & {
|
|
|
17273
17406
|
page?: Maybe<ConfluencePage>;
|
|
17274
17407
|
success: Scalars['Boolean']['output'];
|
|
17275
17408
|
};
|
|
17409
|
+
export declare type ConfluenceUpdateNav4OptInInput = {
|
|
17410
|
+
enableNav4: Scalars['Boolean']['input'];
|
|
17411
|
+
};
|
|
17412
|
+
export declare type ConfluenceUpdateNav4OptInPayload = Payload & {
|
|
17413
|
+
__typename?: 'ConfluenceUpdateNav4OptInPayload';
|
|
17414
|
+
errors?: Maybe<Array<MutationError>>;
|
|
17415
|
+
success: Scalars['Boolean']['output'];
|
|
17416
|
+
};
|
|
17276
17417
|
export declare type ConfluenceUpdateSpaceInput = {
|
|
17277
17418
|
id: Scalars['ID']['input'];
|
|
17278
17419
|
name?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -17369,6 +17510,11 @@ export declare type ConfluenceValidateSpaceKeyResponse = {
|
|
|
17369
17510
|
generatedUniqueKey?: Maybe<Scalars['String']['output']>;
|
|
17370
17511
|
isValid: Scalars['Boolean']['output'];
|
|
17371
17512
|
};
|
|
17513
|
+
export declare enum ConfluenceViewState {
|
|
17514
|
+
Editor = "EDITOR",
|
|
17515
|
+
Live = "LIVE",
|
|
17516
|
+
Renderer = "RENDERER"
|
|
17517
|
+
}
|
|
17372
17518
|
export declare type ConfluenceWatchSubCalendarInput = {
|
|
17373
17519
|
subCalendarId: Scalars['ID']['input'];
|
|
17374
17520
|
};
|
|
@@ -17834,6 +17980,7 @@ export declare type ContentContributors = {
|
|
|
17834
17980
|
count?: Maybe<Scalars['Int']['output']>;
|
|
17835
17981
|
edges?: Maybe<Array<Maybe<PersonEdge>>>;
|
|
17836
17982
|
isCurrentUserContributor?: Maybe<Scalars['Boolean']['output']>;
|
|
17983
|
+
isOwnerContributor?: Maybe<Scalars['Boolean']['output']>;
|
|
17837
17984
|
nodes?: Maybe<Array<Maybe<Person>>>;
|
|
17838
17985
|
pageInfo?: Maybe<PageInfo>;
|
|
17839
17986
|
};
|
|
@@ -20119,6 +20266,14 @@ export declare type CreateInlineTaskNotificationPayload = Payload & {
|
|
|
20119
20266
|
success: Scalars['Boolean']['output'];
|
|
20120
20267
|
tasks: Array<Maybe<IndividualInlineTaskNotification>>;
|
|
20121
20268
|
};
|
|
20269
|
+
export declare type CreateInvitationUrlPayload = {
|
|
20270
|
+
__typename?: 'CreateInvitationUrlPayload';
|
|
20271
|
+
expiration: Scalars['String']['output'];
|
|
20272
|
+
id: Scalars['ID']['output'];
|
|
20273
|
+
rules: Array<InvitationUrlRule>;
|
|
20274
|
+
status: InvitationUrlsStatus;
|
|
20275
|
+
url: Scalars['String']['output'];
|
|
20276
|
+
};
|
|
20122
20277
|
export declare type CreateJiraPlaybookInput = {
|
|
20123
20278
|
cloudId: Scalars['ID']['input'];
|
|
20124
20279
|
filters?: InputMaybe<Array<JiraPlaybookIssueFilterInput>>;
|
|
@@ -54825,6 +54980,28 @@ export declare type IntervalInput = {
|
|
|
54825
54980
|
endTime: Scalars['DateTime']['input'];
|
|
54826
54981
|
startTime: Scalars['DateTime']['input'];
|
|
54827
54982
|
};
|
|
54983
|
+
export declare type InvitationUrl = {
|
|
54984
|
+
__typename?: 'InvitationUrl';
|
|
54985
|
+
expiration: Scalars['String']['output'];
|
|
54986
|
+
id: Scalars['String']['output'];
|
|
54987
|
+
rules: Array<InvitationUrlRule>;
|
|
54988
|
+
status: InvitationUrlsStatus;
|
|
54989
|
+
url: Scalars['String']['output'];
|
|
54990
|
+
};
|
|
54991
|
+
export declare type InvitationUrlRule = {
|
|
54992
|
+
__typename?: 'InvitationUrlRule';
|
|
54993
|
+
resource: Scalars['ID']['output'];
|
|
54994
|
+
role: Scalars['ID']['output'];
|
|
54995
|
+
};
|
|
54996
|
+
export declare type InvitationUrlsPayload = {
|
|
54997
|
+
__typename?: 'InvitationUrlsPayload';
|
|
54998
|
+
urls: Array<Maybe<InvitationUrl>>;
|
|
54999
|
+
};
|
|
55000
|
+
export declare enum InvitationUrlsStatus {
|
|
55001
|
+
Active = "ACTIVE",
|
|
55002
|
+
Deleted = "DELETED",
|
|
55003
|
+
Expired = "EXPIRED"
|
|
55004
|
+
}
|
|
54828
55005
|
export declare type InvocationMetrics = {
|
|
54829
55006
|
__typename?: 'InvocationMetrics';
|
|
54830
55007
|
appExecutionRegion?: Maybe<Scalars['String']['output']>;
|
|
@@ -59370,7 +59547,6 @@ export declare type JiraFieldConfigSchemesEdge = {
|
|
|
59370
59547
|
node?: Maybe<JiraFieldConfigScheme>;
|
|
59371
59548
|
};
|
|
59372
59549
|
export declare type JiraFieldConfigSchemesInput = {
|
|
59373
|
-
fieldId: Scalars['ID']['input'];
|
|
59374
59550
|
nameOrDescriptionFilter?: InputMaybe<Scalars['String']['input']>;
|
|
59375
59551
|
};
|
|
59376
59552
|
export declare type JiraFieldConnection = {
|
|
@@ -61025,20 +61201,25 @@ export declare type JiraIssueFieldConfig = Node & {
|
|
|
61025
61201
|
associatedContexts?: Maybe<JiraContextConnection>;
|
|
61026
61202
|
associatedContextsCount?: Maybe<Scalars['Int']['output']>;
|
|
61027
61203
|
associatedContextsV2?: Maybe<JiraContextConnection>;
|
|
61204
|
+
associatedFieldConfigSchemes?: Maybe<JiraFieldConfigSchemesConnection>;
|
|
61205
|
+
associatedFieldConfigSchemesCount?: Maybe<Scalars['Int']['output']>;
|
|
61028
61206
|
associatedProjects?: Maybe<JiraProjectConnection>;
|
|
61029
61207
|
associatedProjectsCount?: Maybe<Scalars['Int']['output']>;
|
|
61030
61208
|
associatedProjectsV2?: Maybe<JiraProjectConnection>;
|
|
61031
61209
|
associatedScreens?: Maybe<JiraScreenConnection>;
|
|
61032
61210
|
associatedScreensCount?: Maybe<Scalars['Int']['output']>;
|
|
61033
61211
|
associatedScreensV2?: Maybe<JiraScreenConnection>;
|
|
61212
|
+
availableFieldConfigSchemes?: Maybe<JiraFieldConfigSchemesConnection>;
|
|
61034
61213
|
customId?: Maybe<Scalars['Int']['output']>;
|
|
61035
61214
|
dateCreated?: Maybe<Scalars['DateTime']['output']>;
|
|
61036
61215
|
dateCreatedTimestamp?: Maybe<Scalars['Long']['output']>;
|
|
61216
|
+
defaultFieldOptions?: Maybe<JiraParentOptionConnection>;
|
|
61037
61217
|
defaultJqlClauseName?: Maybe<Scalars['String']['output']>;
|
|
61038
61218
|
description?: Maybe<Scalars['String']['output']>;
|
|
61039
61219
|
fieldId: Scalars['String']['output'];
|
|
61040
61220
|
id: Scalars['ID']['output'];
|
|
61041
61221
|
isCustom: Scalars['Boolean']['output'];
|
|
61222
|
+
isDefaultFieldOptionsCountOverLimit?: Maybe<Scalars['Boolean']['output']>;
|
|
61042
61223
|
isGlobal?: Maybe<Scalars['Boolean']['output']>;
|
|
61043
61224
|
isLocked?: Maybe<Scalars['Boolean']['output']>;
|
|
61044
61225
|
isTrashed?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -61064,6 +61245,11 @@ export declare type JiraIssueFieldConfigAssociatedContextsV2Args = {
|
|
|
61064
61245
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
61065
61246
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
61066
61247
|
};
|
|
61248
|
+
export declare type JiraIssueFieldConfigAssociatedFieldConfigSchemesArgs = {
|
|
61249
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
61250
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
61251
|
+
input?: InputMaybe<JiraFieldConfigSchemesInput>;
|
|
61252
|
+
};
|
|
61067
61253
|
export declare type JiraIssueFieldConfigAssociatedProjectsArgs = {
|
|
61068
61254
|
after?: InputMaybe<Scalars['Int']['input']>;
|
|
61069
61255
|
before?: InputMaybe<Scalars['Int']['input']>;
|
|
@@ -61090,6 +61276,20 @@ export declare type JiraIssueFieldConfigAssociatedScreensV2Args = {
|
|
|
61090
61276
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
61091
61277
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
61092
61278
|
};
|
|
61279
|
+
export declare type JiraIssueFieldConfigAvailableFieldConfigSchemesArgs = {
|
|
61280
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
61281
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
61282
|
+
input?: InputMaybe<JiraFieldConfigSchemesInput>;
|
|
61283
|
+
};
|
|
61284
|
+
export declare type JiraIssueFieldConfigDefaultFieldOptionsArgs = {
|
|
61285
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
61286
|
+
before?: InputMaybe<Scalars['String']['input']>;
|
|
61287
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
61288
|
+
last?: InputMaybe<Scalars['Int']['input']>;
|
|
61289
|
+
};
|
|
61290
|
+
export declare type JiraIssueFieldConfigIsDefaultFieldOptionsCountOverLimitArgs = {
|
|
61291
|
+
limit: Scalars['Int']['input'];
|
|
61292
|
+
};
|
|
61093
61293
|
export declare type JiraIssueFieldConfiguration = {
|
|
61094
61294
|
fieldConfig?: Maybe<JiraFieldConfig>;
|
|
61095
61295
|
};
|
|
@@ -74704,6 +74904,7 @@ export declare type License = {
|
|
|
74704
74904
|
__typename?: 'License';
|
|
74705
74905
|
billingPeriod?: Maybe<Scalars['String']['output']>;
|
|
74706
74906
|
billingSourceSystem?: Maybe<BillingSourceSystem>;
|
|
74907
|
+
firstPredunningEndTime?: Maybe<Scalars['Long']['output']>;
|
|
74707
74908
|
licenseConsumingUserCount: Scalars['Int']['output'];
|
|
74708
74909
|
licenseStatus: LicenseStatus;
|
|
74709
74910
|
trialEndDate?: Maybe<Scalars['String']['output']>;
|
|
@@ -74972,6 +75173,7 @@ export declare type LoomSpace = Node & {
|
|
|
74972
75173
|
__typename?: 'LoomSpace';
|
|
74973
75174
|
id: Scalars['ID']['output'];
|
|
74974
75175
|
name: Scalars['String']['output'];
|
|
75176
|
+
url: Scalars['String']['output'];
|
|
74975
75177
|
};
|
|
74976
75178
|
export declare enum LoomSpacePrivacyType {
|
|
74977
75179
|
Private = "private",
|
|
@@ -77073,6 +77275,7 @@ export declare type MarketplaceStoreEditionFeature = {
|
|
|
77073
77275
|
};
|
|
77074
77276
|
export declare enum MarketplaceStoreEditionType {
|
|
77075
77277
|
Advanced = "ADVANCED",
|
|
77278
|
+
Free = "FREE",
|
|
77076
77279
|
Standard = "STANDARD"
|
|
77077
77280
|
}
|
|
77078
77281
|
export declare type MarketplaceStoreEditionsByAppKeyInput = {
|
|
@@ -77883,15 +78086,32 @@ export declare type MercuryChangeProposalConnection = {
|
|
|
77883
78086
|
pageInfo: PageInfo;
|
|
77884
78087
|
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
77885
78088
|
};
|
|
78089
|
+
export declare type MercuryChangeProposalCountByStatus = {
|
|
78090
|
+
__typename?: 'MercuryChangeProposalCountByStatus';
|
|
78091
|
+
count?: Maybe<Scalars['Int']['output']>;
|
|
78092
|
+
status?: Maybe<MercuryChangeProposalStatus>;
|
|
78093
|
+
};
|
|
77886
78094
|
export declare type MercuryChangeProposalEdge = {
|
|
77887
78095
|
__typename?: 'MercuryChangeProposalEdge';
|
|
77888
78096
|
cursor: Scalars['String']['output'];
|
|
77889
78097
|
node?: Maybe<MercuryChangeProposal>;
|
|
77890
78098
|
};
|
|
78099
|
+
export declare type MercuryChangeProposalFundSummary = {
|
|
78100
|
+
__typename?: 'MercuryChangeProposalFundSummary';
|
|
78101
|
+
changeProposalId: Scalars['ID']['output'];
|
|
78102
|
+
laborAmount?: Maybe<Scalars['BigDecimal']['output']>;
|
|
78103
|
+
nonLaborAmount?: Maybe<Scalars['BigDecimal']['output']>;
|
|
78104
|
+
};
|
|
77891
78105
|
export declare type MercuryChangeProposalImpact = {
|
|
77892
78106
|
__typename?: 'MercuryChangeProposalImpact';
|
|
77893
78107
|
value: Scalars['Int']['output'];
|
|
77894
78108
|
};
|
|
78109
|
+
export declare type MercuryChangeProposalPositionSummary = {
|
|
78110
|
+
__typename?: 'MercuryChangeProposalPositionSummary';
|
|
78111
|
+
changeProposalId: Scalars['ID']['output'];
|
|
78112
|
+
movedCount?: Maybe<Scalars['Int']['output']>;
|
|
78113
|
+
newCount?: Maybe<Scalars['Int']['output']>;
|
|
78114
|
+
};
|
|
77895
78115
|
export declare type MercuryChangeProposalSort = {
|
|
77896
78116
|
field: MercuryChangeProposalSortField;
|
|
77897
78117
|
order: SortOrder;
|
|
@@ -77916,6 +78136,18 @@ export declare type MercuryChangeProposalStatusTransitions = {
|
|
|
77916
78136
|
__typename?: 'MercuryChangeProposalStatusTransitions';
|
|
77917
78137
|
available: Array<MercuryChangeProposalStatusTransition>;
|
|
77918
78138
|
};
|
|
78139
|
+
export declare type MercuryChangeProposalSummaryByStatus = {
|
|
78140
|
+
__typename?: 'MercuryChangeProposalSummaryByStatus';
|
|
78141
|
+
countByStatus?: Maybe<Array<Maybe<MercuryChangeProposalCountByStatus>>>;
|
|
78142
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
78143
|
+
};
|
|
78144
|
+
export declare type MercuryChangeProposalSummaryForStrategicEvent = {
|
|
78145
|
+
__typename?: 'MercuryChangeProposalSummaryForStrategicEvent';
|
|
78146
|
+
changeProposal?: Maybe<MercuryChangeProposalSummaryByStatus>;
|
|
78147
|
+
newFunds?: Maybe<MercuryNewFundSummaryByChangeProposalStatus>;
|
|
78148
|
+
newPositions?: Maybe<MercuryNewPositionSummaryByChangeProposalStatus>;
|
|
78149
|
+
strategicEventId: Scalars['ID']['output'];
|
|
78150
|
+
};
|
|
77919
78151
|
export declare type MercuryChangeSort = {
|
|
77920
78152
|
field: MercuryChangeSortField;
|
|
77921
78153
|
order: SortOrder;
|
|
@@ -77935,6 +78167,12 @@ export declare type MercuryChangeSummary = {
|
|
|
77935
78167
|
positionChangeSummary?: Maybe<MercuryPositionChangeSummary>;
|
|
77936
78168
|
strategicEventId: Scalars['ID']['output'];
|
|
77937
78169
|
};
|
|
78170
|
+
export declare type MercuryChangeSummaryForChangeProposal = {
|
|
78171
|
+
__typename?: 'MercuryChangeSummaryForChangeProposal';
|
|
78172
|
+
changeProposalId: Scalars['ID']['output'];
|
|
78173
|
+
fundChangeSummary?: Maybe<MercuryChangeProposalFundSummary>;
|
|
78174
|
+
positionChangeSummary?: Maybe<MercuryChangeProposalPositionSummary>;
|
|
78175
|
+
};
|
|
77938
78176
|
export declare type MercuryChangeSummaryInput = {
|
|
77939
78177
|
focusAreaId: Scalars['ID']['input'];
|
|
77940
78178
|
hydrationContextId: Scalars['ID']['input'];
|
|
@@ -78876,6 +79114,26 @@ export declare type MercuryMutationApiUpdatePortfolioNameArgs = {
|
|
|
78876
79114
|
export declare type MercuryMutationApiValidateFocusAreaArchivalArgs = {
|
|
78877
79115
|
input: MercuryArchiveFocusAreaValidationInput;
|
|
78878
79116
|
};
|
|
79117
|
+
export declare type MercuryNewFundSummaryByChangeProposalStatus = {
|
|
79118
|
+
__typename?: 'MercuryNewFundSummaryByChangeProposalStatus';
|
|
79119
|
+
totalAmount?: Maybe<Scalars['BigDecimal']['output']>;
|
|
79120
|
+
totalByStatus?: Maybe<Array<Maybe<MercuryNewFundsByChangeProposalStatus>>>;
|
|
79121
|
+
};
|
|
79122
|
+
export declare type MercuryNewFundsByChangeProposalStatus = {
|
|
79123
|
+
__typename?: 'MercuryNewFundsByChangeProposalStatus';
|
|
79124
|
+
amount?: Maybe<Scalars['BigDecimal']['output']>;
|
|
79125
|
+
status?: Maybe<MercuryChangeProposalStatus>;
|
|
79126
|
+
};
|
|
79127
|
+
export declare type MercuryNewPositionCountByStatus = {
|
|
79128
|
+
__typename?: 'MercuryNewPositionCountByStatus';
|
|
79129
|
+
count?: Maybe<Scalars['Int']['output']>;
|
|
79130
|
+
status?: Maybe<MercuryChangeProposalStatus>;
|
|
79131
|
+
};
|
|
79132
|
+
export declare type MercuryNewPositionSummaryByChangeProposalStatus = {
|
|
79133
|
+
__typename?: 'MercuryNewPositionSummaryByChangeProposalStatus';
|
|
79134
|
+
countByStatus?: Maybe<Array<Maybe<MercuryNewPositionCountByStatus>>>;
|
|
79135
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
79136
|
+
};
|
|
78879
79137
|
export declare type MercuryOriginalProjectStatus = {
|
|
78880
79138
|
mercuryOriginalStatusName?: Maybe<Scalars['String']['output']>;
|
|
78881
79139
|
};
|
|
@@ -79628,10 +79886,12 @@ export declare type MercuryStrategicEventsQueryApi = {
|
|
|
79628
79886
|
__typename?: 'MercuryStrategicEventsQueryApi';
|
|
79629
79887
|
changeProposal?: Maybe<MercuryChangeProposal>;
|
|
79630
79888
|
changeProposalStatuses: Array<MercuryChangeProposalStatus>;
|
|
79889
|
+
changeProposalSummaryForStrategicEvent?: Maybe<MercuryChangeProposalSummaryForStrategicEvent>;
|
|
79631
79890
|
changeProposals?: Maybe<Array<Maybe<MercuryChangeProposal>>>;
|
|
79632
79891
|
changeProposalsSearch?: Maybe<MercuryChangeProposalConnection>;
|
|
79633
79892
|
changeSummariesReport?: Maybe<MercuryChangeSummaries>;
|
|
79634
79893
|
changeSummaryByFocusAreaIds?: Maybe<Array<Maybe<MercuryChangeSummary>>>;
|
|
79894
|
+
changeSummaryForChangeProposal?: Maybe<MercuryChangeSummaryForChangeProposal>;
|
|
79635
79895
|
changeSummaryInternal?: Maybe<Array<Maybe<MercuryChangeSummary>>>;
|
|
79636
79896
|
changes?: Maybe<Array<Maybe<MercuryChange>>>;
|
|
79637
79897
|
changesByPositionIds?: Maybe<Array<Maybe<MercuryChange>>>;
|
|
@@ -79647,6 +79907,9 @@ export declare type MercuryStrategicEventsQueryApiChangeProposalArgs = {
|
|
|
79647
79907
|
export declare type MercuryStrategicEventsQueryApiChangeProposalStatusesArgs = {
|
|
79648
79908
|
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
79649
79909
|
};
|
|
79910
|
+
export declare type MercuryStrategicEventsQueryApiChangeProposalSummaryForStrategicEventArgs = {
|
|
79911
|
+
strategicEventId: Scalars['ID']['input'];
|
|
79912
|
+
};
|
|
79650
79913
|
export declare type MercuryStrategicEventsQueryApiChangeProposalsArgs = {
|
|
79651
79914
|
ids: Array<Scalars['ID']['input']>;
|
|
79652
79915
|
};
|
|
@@ -79664,6 +79927,9 @@ export declare type MercuryStrategicEventsQueryApiChangeSummaryByFocusAreaIdsArg
|
|
|
79664
79927
|
focusAreaIds: Array<Scalars['ID']['input']>;
|
|
79665
79928
|
strategicEventId?: InputMaybe<Scalars['ID']['input']>;
|
|
79666
79929
|
};
|
|
79930
|
+
export declare type MercuryStrategicEventsQueryApiChangeSummaryForChangeProposalArgs = {
|
|
79931
|
+
changeProposalId: Scalars['ID']['input'];
|
|
79932
|
+
};
|
|
79667
79933
|
export declare type MercuryStrategicEventsQueryApiChangeSummaryInternalArgs = {
|
|
79668
79934
|
inputs: Array<MercuryChangeSummaryInput>;
|
|
79669
79935
|
};
|
|
@@ -80244,6 +80510,7 @@ export declare type Mutation = {
|
|
|
80244
80510
|
agentStudio_createAgent?: Maybe<AgentStudioCreateAgentPayload>;
|
|
80245
80511
|
agentStudio_createCustomAction?: Maybe<AgentStudioCreateCustomActionPayload>;
|
|
80246
80512
|
agentStudio_updateAgentActions?: Maybe<AgentStudioUpdateAgentActionsPayload>;
|
|
80513
|
+
agentStudio_updateAgentAsFavourite?: Maybe<AgentStudioUpdateAgentAsFavouritePayload>;
|
|
80247
80514
|
agentStudio_updateAgentDetails?: Maybe<AgentStudioUpdateAgentDetailsPayload>;
|
|
80248
80515
|
agentStudio_updateAgentKnowledgeSources?: Maybe<AgentStudioUpdateAgentKnowledgeSourcesPayload>;
|
|
80249
80516
|
agentStudio_updateConversationStarters?: Maybe<AgentStudioUpdateConversationStartersPayload>;
|
|
@@ -80444,16 +80711,24 @@ export declare type Mutation = {
|
|
|
80444
80711
|
confluence_deleteSubCalendarHiddenEvents?: Maybe<ConfluenceDeleteSubCalendarHiddenEventsPayload>;
|
|
80445
80712
|
confluence_deleteSubCalendarPrivateUrl?: Maybe<ConfluenceDeleteSubCalendarPrivateUrlPayload>;
|
|
80446
80713
|
confluence_deleteSubCalendarSingleEvent?: Maybe<ConfluenceDeleteSubCalendarSingleEventPayload>;
|
|
80714
|
+
confluence_experimentInitModernize?: Maybe<ConfluenceExperimentInitModernizePayload>;
|
|
80447
80715
|
confluence_inviteUsers?: Maybe<ConfluenceInviteUserPayload>;
|
|
80448
80716
|
confluence_makeSubCalendarPrivateUrl?: Maybe<ConfluenceMakeSubCalendarPrivateUrlPayload>;
|
|
80717
|
+
confluence_markAllCommentsAsRead?: Maybe<ConfluenceMarkAllCommentsAsReadPayload>;
|
|
80718
|
+
confluence_markCommentAsDangling?: Maybe<ConfluenceMarkCommentAsDanglingPayload>;
|
|
80449
80719
|
confluence_reopenComment?: Maybe<ConfluenceReopenCommentPayload>;
|
|
80450
80720
|
confluence_resolveComments?: Maybe<ConfluenceResolveCommentsPayload>;
|
|
80451
80721
|
confluence_resolveCommentsByContentId?: Maybe<ConfluenceResolveCommentByContentIdPayload>;
|
|
80452
80722
|
confluence_setSubCalendarReminder?: Maybe<ConfluenceSetSubCalendarReminderPayload>;
|
|
80723
|
+
confluence_unmarkCommentAsDangling?: Maybe<ConfluenceUnmarkCommentAsDanglingPayload>;
|
|
80724
|
+
confluence_unwatchLabel?: Maybe<ConfluenceLabelWatchStatus>;
|
|
80453
80725
|
confluence_unwatchSubCalendar?: Maybe<ConfluenceUnwatchSubCalendarPayload>;
|
|
80454
80726
|
confluence_updateCustomRole?: Maybe<ConfluenceUpdateCustomRolePayload>;
|
|
80727
|
+
confluence_updateDefaultTitleEmoji?: Maybe<ConfluenceUpdateDefaultTitleEmojiPayload>;
|
|
80728
|
+
confluence_updateNav4OptIn?: Maybe<ConfluenceUpdateNav4OptInPayload>;
|
|
80455
80729
|
confluence_updateSubCalendarHiddenEvents?: Maybe<ConfluenceUpdateSubCalendarHiddenEventsPayload>;
|
|
80456
80730
|
confluence_updateTeamPresenceSpaceSettings?: Maybe<ConfluenceUpdateTeamPresenceSpaceSettingsPayload>;
|
|
80731
|
+
confluence_watchLabel?: Maybe<ConfluenceLabelWatchStatus>;
|
|
80457
80732
|
confluence_watchSubCalendar?: Maybe<ConfluenceWatchSubCalendarPayload>;
|
|
80458
80733
|
connectionManager_createApiTokenConnectionForJiraProject?: Maybe<ConnectionManagerCreateApiTokenConnectionForJiraProjectPayload>;
|
|
80459
80734
|
connectionManager_createOAuthConnectionForJiraProject?: Maybe<ConnectionManagerCreateOAuthConnectionForJiraProjectPayload>;
|
|
@@ -80490,6 +80765,7 @@ export declare type Mutation = {
|
|
|
80490
80765
|
createHostedResourceUploadUrl?: Maybe<CreateHostedResourceUploadUrlPayload>;
|
|
80491
80766
|
createInlineComment?: Maybe<Comment>;
|
|
80492
80767
|
createInlineTaskNotification?: Maybe<CreateInlineTaskNotificationPayload>;
|
|
80768
|
+
createInvitationUrl?: Maybe<CreateInvitationUrlPayload>;
|
|
80493
80769
|
createLivePage?: Maybe<Content>;
|
|
80494
80770
|
createMentionNotification?: Maybe<CreateMentionNotificationPayload>;
|
|
80495
80771
|
createMentionReminderNotification?: Maybe<CreateMentionReminderNotificationPayload>;
|
|
@@ -80850,6 +81126,10 @@ export declare type MutationAgentStudio_UpdateAgentActionsArgs = {
|
|
|
80850
81126
|
id: Scalars['ID']['input'];
|
|
80851
81127
|
input: AgentStudioActionConfigurationInput;
|
|
80852
81128
|
};
|
|
81129
|
+
export declare type MutationAgentStudio_UpdateAgentAsFavouriteArgs = {
|
|
81130
|
+
favourite: Scalars['Boolean']['input'];
|
|
81131
|
+
id: Scalars['ID']['input'];
|
|
81132
|
+
};
|
|
80853
81133
|
export declare type MutationAgentStudio_UpdateAgentDetailsArgs = {
|
|
80854
81134
|
id: Scalars['ID']['input'];
|
|
80855
81135
|
input: AgentStudioUpdateAgentDetailsInput;
|
|
@@ -81471,6 +81751,9 @@ export declare type MutationConfluence_DeleteSubCalendarSingleEventArgs = {
|
|
|
81471
81751
|
cloudId: Scalars['ID']['input'];
|
|
81472
81752
|
input: ConfluenceDeleteSubCalendarSingleEventInput;
|
|
81473
81753
|
};
|
|
81754
|
+
export declare type MutationConfluence_ExperimentInitModernizeArgs = {
|
|
81755
|
+
cloudId: Scalars['ID']['input'];
|
|
81756
|
+
};
|
|
81474
81757
|
export declare type MutationConfluence_InviteUsersArgs = {
|
|
81475
81758
|
cloudId: Scalars['ID']['input'];
|
|
81476
81759
|
input: ConfluenceInviteUserInput;
|
|
@@ -81479,6 +81762,14 @@ export declare type MutationConfluence_MakeSubCalendarPrivateUrlArgs = {
|
|
|
81479
81762
|
cloudId: Scalars['ID']['input'];
|
|
81480
81763
|
input: ConfluenceMakeSubCalendarPrivateUrlInput;
|
|
81481
81764
|
};
|
|
81765
|
+
export declare type MutationConfluence_MarkAllCommentsAsReadArgs = {
|
|
81766
|
+
cloudId: Scalars['ID']['input'];
|
|
81767
|
+
input: ConfluenceMarkAllContainerCommentsAsReadInput;
|
|
81768
|
+
};
|
|
81769
|
+
export declare type MutationConfluence_MarkCommentAsDanglingArgs = {
|
|
81770
|
+
cloudId: Scalars['ID']['input'];
|
|
81771
|
+
input: ConfluenceMarkCommentAsDanglingInput;
|
|
81772
|
+
};
|
|
81482
81773
|
export declare type MutationConfluence_ReopenCommentArgs = {
|
|
81483
81774
|
cloudId: Scalars['ID']['input'];
|
|
81484
81775
|
commentId: Scalars['ID']['input'];
|
|
@@ -81490,11 +81781,20 @@ export declare type MutationConfluence_ResolveCommentsArgs = {
|
|
|
81490
81781
|
export declare type MutationConfluence_ResolveCommentsByContentIdArgs = {
|
|
81491
81782
|
cloudId: Scalars['ID']['input'];
|
|
81492
81783
|
contentId: Scalars['ID']['input'];
|
|
81784
|
+
resolveView?: InputMaybe<ConfluenceCommentResolveAllLocation>;
|
|
81493
81785
|
};
|
|
81494
81786
|
export declare type MutationConfluence_SetSubCalendarReminderArgs = {
|
|
81495
81787
|
cloudId: Scalars['ID']['input'];
|
|
81496
81788
|
input: ConfluenceSetSubCalendarReminderInput;
|
|
81497
81789
|
};
|
|
81790
|
+
export declare type MutationConfluence_UnmarkCommentAsDanglingArgs = {
|
|
81791
|
+
cloudId: Scalars['ID']['input'];
|
|
81792
|
+
input: ConfluenceUnmarkCommentAsDanglingInput;
|
|
81793
|
+
};
|
|
81794
|
+
export declare type MutationConfluence_UnwatchLabelArgs = {
|
|
81795
|
+
cloudId: Scalars['ID']['input'];
|
|
81796
|
+
input: ConfluenceLabelWatchInput;
|
|
81797
|
+
};
|
|
81498
81798
|
export declare type MutationConfluence_UnwatchSubCalendarArgs = {
|
|
81499
81799
|
cloudId: Scalars['ID']['input'];
|
|
81500
81800
|
input: ConfluenceUnwatchSubCalendarInput;
|
|
@@ -81503,6 +81803,14 @@ export declare type MutationConfluence_UpdateCustomRoleArgs = {
|
|
|
81503
81803
|
cloudId: Scalars['ID']['input'];
|
|
81504
81804
|
input: ConfluenceUpdateCustomRoleInput;
|
|
81505
81805
|
};
|
|
81806
|
+
export declare type MutationConfluence_UpdateDefaultTitleEmojiArgs = {
|
|
81807
|
+
cloudId: Scalars['ID']['input'];
|
|
81808
|
+
input: ConfluenceUpdateDefaultTitleEmojiInput;
|
|
81809
|
+
};
|
|
81810
|
+
export declare type MutationConfluence_UpdateNav4OptInArgs = {
|
|
81811
|
+
cloudId: Scalars['ID']['input'];
|
|
81812
|
+
input: ConfluenceUpdateNav4OptInInput;
|
|
81813
|
+
};
|
|
81506
81814
|
export declare type MutationConfluence_UpdateSubCalendarHiddenEventsArgs = {
|
|
81507
81815
|
cloudId: Scalars['ID']['input'];
|
|
81508
81816
|
input: Array<ConfluenceUpdateSubCalendarHiddenEventsInput>;
|
|
@@ -81511,6 +81819,10 @@ export declare type MutationConfluence_UpdateTeamPresenceSpaceSettingsArgs = {
|
|
|
81511
81819
|
cloudId: Scalars['ID']['input'];
|
|
81512
81820
|
input: ConfluenceUpdateTeamPresenceSpaceSettingsInput;
|
|
81513
81821
|
};
|
|
81822
|
+
export declare type MutationConfluence_WatchLabelArgs = {
|
|
81823
|
+
cloudId: Scalars['ID']['input'];
|
|
81824
|
+
input: ConfluenceLabelWatchInput;
|
|
81825
|
+
};
|
|
81514
81826
|
export declare type MutationConfluence_WatchSubCalendarArgs = {
|
|
81515
81827
|
cloudId: Scalars['ID']['input'];
|
|
81516
81828
|
input: ConfluenceWatchSubCalendarInput;
|
|
@@ -83109,6 +83421,10 @@ export declare type OpsgenieTeamMemberEdge = {
|
|
|
83109
83421
|
cursor: Scalars['String']['output'];
|
|
83110
83422
|
node?: Maybe<OpsgenieTeamMember>;
|
|
83111
83423
|
};
|
|
83424
|
+
export declare type Organization = {
|
|
83425
|
+
__typename?: 'Organization';
|
|
83426
|
+
orgId?: Maybe<Scalars['String']['output']>;
|
|
83427
|
+
};
|
|
83112
83428
|
export declare type OrganizationContext = {
|
|
83113
83429
|
__typename?: 'OrganizationContext';
|
|
83114
83430
|
hasPaidProduct?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -83127,8 +83443,13 @@ export declare type OriginalSplitIssue = {
|
|
|
83127
83443
|
};
|
|
83128
83444
|
export declare type OutgoingLinks = {
|
|
83129
83445
|
__typename?: 'OutgoingLinks';
|
|
83446
|
+
externalOutgoingLinks?: Maybe<ConfluenceExternalLinkConnection>;
|
|
83130
83447
|
internalOutgoingLinks?: Maybe<PaginatedContentList>;
|
|
83131
83448
|
};
|
|
83449
|
+
export declare type OutgoingLinksExternalOutgoingLinksArgs = {
|
|
83450
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
83451
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
83452
|
+
};
|
|
83132
83453
|
export declare type OutgoingLinksInternalOutgoingLinksArgs = {
|
|
83133
83454
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
83134
83455
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
@@ -84994,10 +85315,45 @@ export declare type PublicLinkConnection = {
|
|
|
84994
85315
|
nodes: Array<Maybe<PublicLink>>;
|
|
84995
85316
|
pageInfo: PublicLinkPageInfo;
|
|
84996
85317
|
};
|
|
85318
|
+
export declare type PublicLinkContentBody = {
|
|
85319
|
+
__typename?: 'PublicLinkContentBody';
|
|
85320
|
+
mediaToken?: Maybe<PublicLinkMediaToken>;
|
|
85321
|
+
value?: Maybe<Scalars['String']['output']>;
|
|
85322
|
+
};
|
|
85323
|
+
export declare type PublicLinkContentRepresentationMap = {
|
|
85324
|
+
__typename?: 'PublicLinkContentRepresentationMap';
|
|
85325
|
+
atlas_doc_format?: Maybe<PublicLinkContentBody>;
|
|
85326
|
+
};
|
|
85327
|
+
export declare enum PublicLinkContentType {
|
|
85328
|
+
Page = "page",
|
|
85329
|
+
Whiteboard = "whiteboard"
|
|
85330
|
+
}
|
|
84997
85331
|
export declare enum PublicLinkDefaultSpaceStatus {
|
|
84998
85332
|
Off = "OFF",
|
|
84999
85333
|
On = "ON"
|
|
85000
85334
|
}
|
|
85335
|
+
export declare type PublicLinkHistory = {
|
|
85336
|
+
__typename?: 'PublicLinkHistory';
|
|
85337
|
+
createdBy?: Maybe<PublicLinkPerson>;
|
|
85338
|
+
createdDate?: Maybe<Scalars['String']['output']>;
|
|
85339
|
+
lastOwnedBy?: Maybe<PublicLinkPerson>;
|
|
85340
|
+
lastUpdated?: Maybe<Scalars['String']['output']>;
|
|
85341
|
+
ownedBy?: Maybe<PublicLinkPerson>;
|
|
85342
|
+
};
|
|
85343
|
+
export declare type PublicLinkInformation = {
|
|
85344
|
+
__typename?: 'PublicLinkInformation';
|
|
85345
|
+
body?: Maybe<PublicLinkContentRepresentationMap>;
|
|
85346
|
+
history?: Maybe<PublicLinkHistory>;
|
|
85347
|
+
id: Scalars['ID']['output'];
|
|
85348
|
+
referenceId?: Maybe<Scalars['String']['output']>;
|
|
85349
|
+
title?: Maybe<Scalars['String']['output']>;
|
|
85350
|
+
type?: Maybe<PublicLinkContentType>;
|
|
85351
|
+
version?: Maybe<PublicLinkVersion>;
|
|
85352
|
+
};
|
|
85353
|
+
export declare type PublicLinkMediaToken = {
|
|
85354
|
+
__typename?: 'PublicLinkMediaToken';
|
|
85355
|
+
token?: Maybe<Scalars['String']['output']>;
|
|
85356
|
+
};
|
|
85001
85357
|
export declare type PublicLinkOnboardingReference = {
|
|
85002
85358
|
__typename?: 'PublicLinkOnboardingReference';
|
|
85003
85359
|
publicLinkId?: Maybe<Scalars['ID']['output']>;
|
|
@@ -85045,6 +85401,12 @@ export declare enum PublicLinkPermissionsObjectType {
|
|
|
85045
85401
|
export declare enum PublicLinkPermissionsType {
|
|
85046
85402
|
Edit = "EDIT"
|
|
85047
85403
|
}
|
|
85404
|
+
export declare type PublicLinkPerson = {
|
|
85405
|
+
__typename?: 'PublicLinkPerson';
|
|
85406
|
+
accountId?: Maybe<Scalars['ID']['output']>;
|
|
85407
|
+
displayName?: Maybe<Scalars['String']['output']>;
|
|
85408
|
+
type?: Maybe<Scalars['String']['output']>;
|
|
85409
|
+
};
|
|
85048
85410
|
export declare type PublicLinkSitePayload = {
|
|
85049
85411
|
__typename?: 'PublicLinkSitePayload';
|
|
85050
85412
|
status: PublicLinkSiteStatus;
|
|
@@ -85110,6 +85472,15 @@ export declare enum PublicLinkStatus {
|
|
|
85110
85472
|
SpaceBlocked = "SPACE_BLOCKED",
|
|
85111
85473
|
SpaceDisabled = "SPACE_DISABLED"
|
|
85112
85474
|
}
|
|
85475
|
+
export declare type PublicLinkVersion = {
|
|
85476
|
+
__typename?: 'PublicLinkVersion';
|
|
85477
|
+
by?: Maybe<PublicLinkPerson>;
|
|
85478
|
+
confRev?: Maybe<Scalars['String']['output']>;
|
|
85479
|
+
contentTypeModified?: Maybe<Scalars['Boolean']['output']>;
|
|
85480
|
+
friendlyWhen?: Maybe<Scalars['String']['output']>;
|
|
85481
|
+
number?: Maybe<Scalars['Int']['output']>;
|
|
85482
|
+
syncRev?: Maybe<Scalars['String']['output']>;
|
|
85483
|
+
};
|
|
85113
85484
|
export declare enum PublicLinksByCriteriaOrder {
|
|
85114
85485
|
DateEnabled = "DATE_ENABLED",
|
|
85115
85486
|
Status = "STATUS",
|
|
@@ -85134,6 +85505,7 @@ export declare type PublishConditionsDialog = {
|
|
|
85134
85505
|
export declare type PublishedContentProperties = {
|
|
85135
85506
|
__typename?: 'PublishedContentProperties';
|
|
85136
85507
|
coverPictureWidth?: Maybe<Scalars['String']['output']>;
|
|
85508
|
+
defaultTitleEmoji?: Maybe<Scalars['String']['output']>;
|
|
85137
85509
|
externalVersionId?: Maybe<Scalars['String']['output']>;
|
|
85138
85510
|
};
|
|
85139
85511
|
export declare type PullRequestStatusInTimeRangeQueryFilter = {
|
|
@@ -85266,6 +85638,7 @@ export declare type Query = {
|
|
|
85266
85638
|
channelPlatform_evaluateChannelAvailability?: Maybe<ChannelPlatformChannelAvailabilityResponse>;
|
|
85267
85639
|
channelPlatform_getAgentIdForAaid?: Maybe<Scalars['String']['output']>;
|
|
85268
85640
|
channelPlatform_getChannelToken?: Maybe<ChannelPlatformGetChannelTokenResponse>;
|
|
85641
|
+
channelPlatform_getConnectDetails?: Maybe<ChannelPlatformConnectDetails>;
|
|
85269
85642
|
channelPlatform_getQueue?: Maybe<ChannelPlatformConnectQueue>;
|
|
85270
85643
|
channelPlatform_listQueues?: Maybe<Array<Maybe<ChannelPlatformConnectQueue>>>;
|
|
85271
85644
|
channelPlatform_sampleQueueById?: Maybe<ChannelPlatformSampleQueue>;
|
|
@@ -85469,16 +85842,22 @@ export declare type Query = {
|
|
|
85469
85842
|
confluenceLegacy_webItems?: Maybe<Array<Maybe<ConfluenceLegacyWebItem>>>;
|
|
85470
85843
|
confluenceLegacy_webPanels?: Maybe<Array<Maybe<ConfluenceLegacyWebPanel>>>;
|
|
85471
85844
|
confluenceUsers?: Maybe<PaginatedPersonList>;
|
|
85845
|
+
confluence_applicationLinkByOauth2ClientId?: Maybe<ConfluenceApplicationLink>;
|
|
85472
85846
|
confluence_atlassianUser?: Maybe<AtlassianUser>;
|
|
85473
85847
|
confluence_calendarPreference?: Maybe<ConfluenceCalendarPreference>;
|
|
85474
85848
|
confluence_calendarTimezones?: Maybe<ConfluenceCalendarTimezones>;
|
|
85849
|
+
confluence_contentAnalyticsCountUserByContentType?: Maybe<ConfluenceContentAnalyticsCountUserByContentType>;
|
|
85850
|
+
confluence_contentSmartLinksForDraft?: Maybe<PaginatedSmartLinkList>;
|
|
85475
85851
|
confluence_contentWatchersUnfiltered?: Maybe<PaginatedPersonList>;
|
|
85476
85852
|
confluence_contents?: Maybe<Array<Maybe<Content>>>;
|
|
85853
|
+
confluence_dataLifecycleManagementPolicy?: Maybe<ConfluenceDataLifecycleManagementPolicy>;
|
|
85477
85854
|
confluence_deletedUserAccountIds?: Maybe<ConfluenceDeletedUser>;
|
|
85478
85855
|
confluence_empty?: Maybe<Scalars['String']['output']>;
|
|
85856
|
+
confluence_expandTypeFromJira?: Maybe<ConfluenceExpandTypeFromJira>;
|
|
85479
85857
|
confluence_externalCollaboratorsByCriteria?: Maybe<ConfluencePersonConnection>;
|
|
85480
85858
|
confluence_hasClearPermissionForSpace?: Maybe<Scalars['Boolean']['output']>;
|
|
85481
85859
|
confluence_hasDivergedFromDefaultSpacePermissions?: Maybe<Scalars['Boolean']['output']>;
|
|
85860
|
+
confluence_isWatchingLabel?: Maybe<ConfluenceLabelWatchStatus>;
|
|
85482
85861
|
confluence_latestKnowledgeGraphObjectV2?: Maybe<KnowledgeGraphObjectResponseV2>;
|
|
85483
85862
|
confluence_macrosByIds?: Maybe<Array<Maybe<Macro>>>;
|
|
85484
85863
|
confluence_mutationsPlaceholderQuery?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -85662,6 +86041,7 @@ export declare type Query = {
|
|
|
85662
86041
|
instanceAnalyticsCount?: Maybe<InstanceAnalyticsCount>;
|
|
85663
86042
|
intentdetection_getIntent?: Maybe<IntentDetectionResponse>;
|
|
85664
86043
|
internalFrontendResource?: Maybe<FrontendResourceRenderResponse>;
|
|
86044
|
+
invitationUrls?: Maybe<InvitationUrlsPayload>;
|
|
85665
86045
|
ipmFlag?: Maybe<ContentPlatformIpmFlag>;
|
|
85666
86046
|
ipmFlags: ContentPlatformIpmFlagSearchConnection;
|
|
85667
86047
|
ipmInlineDialog?: Maybe<ContentPlatformIpmInlineDialog>;
|
|
@@ -85680,9 +86060,6 @@ export declare type Query = {
|
|
|
85680
86060
|
jiraProjectRelationshipsForService?: Maybe<DevOpsServiceAndJiraProjectRelationshipConnection>;
|
|
85681
86061
|
jiraReleases?: Maybe<JiraReleases>;
|
|
85682
86062
|
jiraServers?: Maybe<JiraServersResult>;
|
|
85683
|
-
jira_associatedFieldConfigSchemes?: Maybe<JiraFieldConfigSchemesConnection>;
|
|
85684
|
-
jira_associatedFieldConfigSchemesCount?: Maybe<Scalars['Int']['output']>;
|
|
85685
|
-
jira_availableFieldConfigSchemes?: Maybe<JiraFieldConfigSchemesConnection>;
|
|
85686
86063
|
jira_boardView?: Maybe<JiraBoardView>;
|
|
85687
86064
|
jira_categoryField?: Maybe<JiraJqlField>;
|
|
85688
86065
|
jira_creatableGlobalCustomFieldTypes?: Maybe<JiraCustomFieldTypeConnection>;
|
|
@@ -85751,6 +86128,7 @@ export declare type Query = {
|
|
|
85751
86128
|
opsgenie?: Maybe<OpsgenieQuery>;
|
|
85752
86129
|
opsgenieTeamRelationshipForDevOpsService?: Maybe<DevOpsServiceAndOpsgenieTeamRelationship>;
|
|
85753
86130
|
orgDefaultClassificationLevelId?: Maybe<Scalars['ID']['output']>;
|
|
86131
|
+
organization?: Maybe<Organization>;
|
|
85754
86132
|
organizationContext?: Maybe<OrganizationContext>;
|
|
85755
86133
|
page?: Maybe<Page>;
|
|
85756
86134
|
pageActivity?: Maybe<PaginatedPageActivity>;
|
|
@@ -85792,6 +86170,7 @@ export declare type Query = {
|
|
|
85792
86170
|
productListing?: Maybe<ProductListingResult>;
|
|
85793
86171
|
productListings: Array<ProductListingResult>;
|
|
85794
86172
|
ptpage?: Maybe<PtPage>;
|
|
86173
|
+
publicLinkInformation?: Maybe<PublicLinkInformation>;
|
|
85795
86174
|
publicLinkOnboardingReference?: Maybe<PublicLinkOnboardingReference>;
|
|
85796
86175
|
publicLinkPage?: Maybe<PublicLinkPage>;
|
|
85797
86176
|
publicLinkPermissionsForObject?: Maybe<PublicLinkPermissions>;
|
|
@@ -85949,6 +86328,7 @@ export declare type QueryAgentStudio_GetAgentsArgs = {
|
|
|
85949
86328
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
85950
86329
|
cloudId: Scalars['String']['input'];
|
|
85951
86330
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
86331
|
+
input?: InputMaybe<AgentStudioAgentQueryInput>;
|
|
85952
86332
|
};
|
|
85953
86333
|
export declare type QueryAgentStudio_SuggestConversationStartersArgs = {
|
|
85954
86334
|
cloudId: Scalars['String']['input'];
|
|
@@ -87031,6 +87411,10 @@ export declare type QueryConfluenceUsersArgs = {
|
|
|
87031
87411
|
limit?: InputMaybe<Scalars['Int']['input']>;
|
|
87032
87412
|
start?: InputMaybe<Scalars['Int']['input']>;
|
|
87033
87413
|
};
|
|
87414
|
+
export declare type QueryConfluence_ApplicationLinkByOauth2ClientIdArgs = {
|
|
87415
|
+
cloudId: Scalars['ID']['input'];
|
|
87416
|
+
oauthClientId: Scalars['String']['input'];
|
|
87417
|
+
};
|
|
87034
87418
|
export declare type QueryConfluence_AtlassianUserArgs = {
|
|
87035
87419
|
current?: InputMaybe<Scalars['Boolean']['input']>;
|
|
87036
87420
|
id?: InputMaybe<Scalars['ID']['input']>;
|
|
@@ -87041,6 +87425,22 @@ export declare type QueryConfluence_CalendarPreferenceArgs = {
|
|
|
87041
87425
|
export declare type QueryConfluence_CalendarTimezonesArgs = {
|
|
87042
87426
|
cloudId: Scalars['ID']['input'];
|
|
87043
87427
|
};
|
|
87428
|
+
export declare type QueryConfluence_ContentAnalyticsCountUserByContentTypeArgs = {
|
|
87429
|
+
cloudId: Scalars['ID']['input'];
|
|
87430
|
+
contentIds?: InputMaybe<Array<InputMaybe<Scalars['ID']['input']>>>;
|
|
87431
|
+
contentType: Scalars['String']['input'];
|
|
87432
|
+
endTime?: InputMaybe<Scalars['String']['input']>;
|
|
87433
|
+
eventName: Array<AnalyticsEventName>;
|
|
87434
|
+
limit?: InputMaybe<Scalars['Int']['input']>;
|
|
87435
|
+
sortOrder?: InputMaybe<RelevantUsersSortOrder>;
|
|
87436
|
+
startTime: Scalars['String']['input'];
|
|
87437
|
+
subType?: InputMaybe<Scalars['String']['input']>;
|
|
87438
|
+
};
|
|
87439
|
+
export declare type QueryConfluence_ContentSmartLinksForDraftArgs = {
|
|
87440
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
87441
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
87442
|
+
id: Scalars['ID']['input'];
|
|
87443
|
+
};
|
|
87044
87444
|
export declare type QueryConfluence_ContentWatchersUnfilteredArgs = {
|
|
87045
87445
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
87046
87446
|
cloudId: Scalars['ID']['input'];
|
|
@@ -87051,6 +87451,9 @@ export declare type QueryConfluence_ContentWatchersUnfilteredArgs = {
|
|
|
87051
87451
|
export declare type QueryConfluence_ContentsArgs = {
|
|
87052
87452
|
ids: Array<InputMaybe<Scalars['ID']['input']>>;
|
|
87053
87453
|
};
|
|
87454
|
+
export declare type QueryConfluence_DataLifecycleManagementPolicyArgs = {
|
|
87455
|
+
cloudId: Scalars['ID']['input'];
|
|
87456
|
+
};
|
|
87054
87457
|
export declare type QueryConfluence_DeletedUserAccountIdsArgs = {
|
|
87055
87458
|
cloudId: Scalars['ID']['input'];
|
|
87056
87459
|
spaceKey: Scalars['String']['input'];
|
|
@@ -87058,6 +87461,9 @@ export declare type QueryConfluence_DeletedUserAccountIdsArgs = {
|
|
|
87058
87461
|
export declare type QueryConfluence_EmptyArgs = {
|
|
87059
87462
|
id: Scalars['ID']['input'];
|
|
87060
87463
|
};
|
|
87464
|
+
export declare type QueryConfluence_ExpandTypeFromJiraArgs = {
|
|
87465
|
+
cloudId: Scalars['ID']['input'];
|
|
87466
|
+
};
|
|
87061
87467
|
export declare type QueryConfluence_ExternalCollaboratorsByCriteriaArgs = {
|
|
87062
87468
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
87063
87469
|
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
@@ -87078,6 +87484,10 @@ export declare type QueryConfluence_HasDivergedFromDefaultSpacePermissionsArgs =
|
|
|
87078
87484
|
cloudId: Scalars['ID']['input'];
|
|
87079
87485
|
spaceKey: Scalars['String']['input'];
|
|
87080
87486
|
};
|
|
87487
|
+
export declare type QueryConfluence_IsWatchingLabelArgs = {
|
|
87488
|
+
cloudId: Scalars['ID']['input'];
|
|
87489
|
+
input: ConfluenceLabelWatchInput;
|
|
87490
|
+
};
|
|
87081
87491
|
export declare type QueryConfluence_LatestKnowledgeGraphObjectV2Args = {
|
|
87082
87492
|
cloudId: Scalars['String']['input'];
|
|
87083
87493
|
contentId: Scalars['ID']['input'];
|
|
@@ -87885,22 +88295,6 @@ export declare type QueryJiraProjectRelationshipsForServiceArgs = {
|
|
|
87885
88295
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
87886
88296
|
id: Scalars['ID']['input'];
|
|
87887
88297
|
};
|
|
87888
|
-
export declare type QueryJira_AssociatedFieldConfigSchemesArgs = {
|
|
87889
|
-
after?: InputMaybe<Scalars['String']['input']>;
|
|
87890
|
-
cloudId: Scalars['ID']['input'];
|
|
87891
|
-
first?: InputMaybe<Scalars['Int']['input']>;
|
|
87892
|
-
input?: InputMaybe<JiraFieldConfigSchemesInput>;
|
|
87893
|
-
};
|
|
87894
|
-
export declare type QueryJira_AssociatedFieldConfigSchemesCountArgs = {
|
|
87895
|
-
cloudId: Scalars['ID']['input'];
|
|
87896
|
-
fieldId: Scalars['ID']['input'];
|
|
87897
|
-
};
|
|
87898
|
-
export declare type QueryJira_AvailableFieldConfigSchemesArgs = {
|
|
87899
|
-
after?: InputMaybe<Scalars['String']['input']>;
|
|
87900
|
-
cloudId: Scalars['ID']['input'];
|
|
87901
|
-
first?: InputMaybe<Scalars['Int']['input']>;
|
|
87902
|
-
input?: InputMaybe<JiraFieldConfigSchemesInput>;
|
|
87903
|
-
};
|
|
87904
88298
|
export declare type QueryJira_BoardViewArgs = {
|
|
87905
88299
|
input: JiraBoardViewInput;
|
|
87906
88300
|
};
|
|
@@ -88240,6 +88634,9 @@ export declare type QueryPtpageArgs = {
|
|
|
88240
88634
|
spaceKey?: InputMaybe<Scalars['String']['input']>;
|
|
88241
88635
|
status?: InputMaybe<Array<InputMaybe<PtGraphQlPageStatus>>>;
|
|
88242
88636
|
};
|
|
88637
|
+
export declare type QueryPublicLinkInformationArgs = {
|
|
88638
|
+
id: Scalars['ID']['input'];
|
|
88639
|
+
};
|
|
88243
88640
|
export declare type QueryPublicLinkPageArgs = {
|
|
88244
88641
|
pageId: Scalars['ID']['input'];
|
|
88245
88642
|
};
|
|
@@ -89087,6 +89484,7 @@ export declare type RadarPosition = Node & RadarEntity & {
|
|
|
89087
89484
|
isManager: Scalars['Boolean']['output'];
|
|
89088
89485
|
manager?: Maybe<RadarPosition>;
|
|
89089
89486
|
reportingLine?: Maybe<Array<RadarPosition>>;
|
|
89487
|
+
role?: Maybe<RadarPositionRole>;
|
|
89090
89488
|
type?: Maybe<RadarEntityType>;
|
|
89091
89489
|
worker?: Maybe<RadarWorker>;
|
|
89092
89490
|
};
|
|
@@ -89116,6 +89514,10 @@ export declare type RadarPositionProposalChangeInput = {
|
|
|
89116
89514
|
sourceFocusAreaAri?: InputMaybe<Scalars['ID']['input']>;
|
|
89117
89515
|
targetFocusAreaAri: Scalars['ID']['input'];
|
|
89118
89516
|
};
|
|
89517
|
+
export declare enum RadarPositionRole {
|
|
89518
|
+
IndividualContributor = "INDIVIDUAL_CONTRIBUTOR",
|
|
89519
|
+
Manager = "MANAGER"
|
|
89520
|
+
}
|
|
89119
89521
|
export declare type RadarPrincipalByResourceRole = {
|
|
89120
89522
|
__typename?: 'RadarPrincipalByResourceRole';
|
|
89121
89523
|
principals: Array<RadarGroupPrincipal>;
|
|
@@ -94403,6 +94805,7 @@ export declare type SpaceRoleAccessClassPrincipal = SpaceRolePrincipal & {
|
|
|
94403
94805
|
};
|
|
94404
94806
|
export declare type SpaceRoleAssignment = {
|
|
94405
94807
|
__typename?: 'SpaceRoleAssignment';
|
|
94808
|
+
assignablePermissions?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
|
|
94406
94809
|
permissions?: Maybe<Array<SpacePermissionInfo>>;
|
|
94407
94810
|
principal: SpaceRolePrincipal;
|
|
94408
94811
|
role?: Maybe<SpaceRole>;
|
|
@@ -101767,6 +102170,7 @@ export declare type VirtualAgentConfiguration = Node & {
|
|
|
101767
102170
|
intentRuleProjections?: Maybe<VirtualAgentIntentRuleProjectionsConnection>;
|
|
101768
102171
|
isAiResponsesEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
101769
102172
|
lastModified?: Maybe<Scalars['DateTime']['output']>;
|
|
102173
|
+
linkedContainer?: Maybe<VirtualAgentContainerData>;
|
|
101770
102174
|
liveIntentsCount?: Maybe<Scalars['Int']['output']>;
|
|
101771
102175
|
offerEscalationConfig?: Maybe<VirtualAgentOfferEscalationConfig>;
|
|
101772
102176
|
respondToQueries: Scalars['Boolean']['output'];
|
|
@@ -101797,7 +102201,19 @@ export declare type VirtualAgentConfigurationVirtualAgentStatisticsProjectionArg
|
|
|
101797
102201
|
endDate?: InputMaybe<Scalars['String']['input']>;
|
|
101798
102202
|
startDate?: InputMaybe<Scalars['String']['input']>;
|
|
101799
102203
|
};
|
|
102204
|
+
export declare type VirtualAgentConfigurationEdge = {
|
|
102205
|
+
__typename?: 'VirtualAgentConfigurationEdge';
|
|
102206
|
+
cursor: Scalars['String']['output'];
|
|
102207
|
+
node: VirtualAgentConfiguration;
|
|
102208
|
+
};
|
|
101800
102209
|
export declare type VirtualAgentConfigurationResult = VirtualAgentConfiguration | VirtualAgentQueryError;
|
|
102210
|
+
export declare type VirtualAgentConfigurationsConnection = {
|
|
102211
|
+
__typename?: 'VirtualAgentConfigurationsConnection';
|
|
102212
|
+
edges: Array<VirtualAgentConfigurationEdge>;
|
|
102213
|
+
nodes: Array<VirtualAgentConfiguration>;
|
|
102214
|
+
pageInfo: PageInfo;
|
|
102215
|
+
};
|
|
102216
|
+
export declare type VirtualAgentContainerData = JiraProject;
|
|
101801
102217
|
export declare type VirtualAgentConversation = Node & {
|
|
101802
102218
|
__typename?: 'VirtualAgentConversation';
|
|
101803
102219
|
action?: Maybe<VirtualAgentConversationActionType>;
|
|
@@ -102170,6 +102586,7 @@ export declare type VirtualAgentQueryApi = {
|
|
|
102170
102586
|
validateRequestType?: Maybe<VirtualAgentRequestTypeConnectionStatus>;
|
|
102171
102587
|
virtualAgentAvailability?: Maybe<Scalars['Boolean']['output']>;
|
|
102172
102588
|
virtualAgentEntitlements?: Maybe<VirtualAgentFeatures>;
|
|
102589
|
+
virtualAgents?: Maybe<VirtualAgentConfigurationsConnection>;
|
|
102173
102590
|
};
|
|
102174
102591
|
export declare type VirtualAgentQueryApiAvailableToHelpCenterArgs = {
|
|
102175
102592
|
helpCenterId: Scalars['ID']['input'];
|
|
@@ -102196,6 +102613,11 @@ export declare type VirtualAgentQueryApiVirtualAgentAvailabilityArgs = {
|
|
|
102196
102613
|
export declare type VirtualAgentQueryApiVirtualAgentEntitlementsArgs = {
|
|
102197
102614
|
cloudId: Scalars['ID']['input'];
|
|
102198
102615
|
};
|
|
102616
|
+
export declare type VirtualAgentQueryApiVirtualAgentsArgs = {
|
|
102617
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
102618
|
+
cloudId: Scalars['ID']['input'];
|
|
102619
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
102620
|
+
};
|
|
102199
102621
|
export declare type VirtualAgentQueryError = {
|
|
102200
102622
|
__typename?: 'VirtualAgentQueryError';
|
|
102201
102623
|
extensions?: Maybe<Array<QueryErrorExtension>>;
|
|
@@ -102561,6 +102983,7 @@ export declare type WorkSuggestionsByProjectsResponse = {
|
|
|
102561
102983
|
__typename?: 'WorkSuggestionsByProjectsResponse';
|
|
102562
102984
|
autoDevJobsSuggestions?: Maybe<Array<WorkSuggestionsAutoDevJobTask>>;
|
|
102563
102985
|
blockingIssueSuggestions?: Maybe<Array<WorkSuggestionsBlockingIssueTask>>;
|
|
102986
|
+
compass?: Maybe<WorkSuggestionsCompassResponse>;
|
|
102564
102987
|
compassSuggestions?: Maybe<Array<WorkSuggestionsCompassTask>>;
|
|
102565
102988
|
draftPRSuggestions?: Maybe<Array<WorkSuggestionsPullRequestDraftTask>>;
|
|
102566
102989
|
inactivePRSuggestions?: Maybe<Array<WorkSuggestionsPullRequestInactiveTask>>;
|
|
@@ -102610,6 +103033,17 @@ export declare type WorkSuggestionsCompassAnnouncementTask = WorkSuggestionsComp
|
|
|
102610
103033
|
title: Scalars['String']['output'];
|
|
102611
103034
|
url: Scalars['String']['output'];
|
|
102612
103035
|
};
|
|
103036
|
+
export declare type WorkSuggestionsCompassResponse = {
|
|
103037
|
+
__typename?: 'WorkSuggestionsCompassResponse';
|
|
103038
|
+
announcements?: Maybe<Array<WorkSuggestionsCompassAnnouncementTask>>;
|
|
103039
|
+
scorecardCriteria?: Maybe<Array<WorkSuggestionsCompassScorecardCriterionTask>>;
|
|
103040
|
+
};
|
|
103041
|
+
export declare type WorkSuggestionsCompassResponseAnnouncementsArgs = {
|
|
103042
|
+
input?: InputMaybe<WorkSuggestionsInput>;
|
|
103043
|
+
};
|
|
103044
|
+
export declare type WorkSuggestionsCompassResponseScorecardCriteriaArgs = {
|
|
103045
|
+
input?: InputMaybe<WorkSuggestionsInput>;
|
|
103046
|
+
};
|
|
102613
103047
|
export declare type WorkSuggestionsCompassScorecardCriterionTask = WorkSuggestionsCompassTask & {
|
|
102614
103048
|
__typename?: 'WorkSuggestionsCompassScorecardCriterionTask';
|
|
102615
103049
|
componentAri?: Maybe<Scalars['ID']['output']>;
|