@forge/cli-shared 8.5.0-next.6 → 8.5.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 +8 -0
- package/out/graphql/graphql-types.d.ts +1065 -286
- package/out/graphql/graphql-types.d.ts.map +1 -1
- package/out/graphql/graphql-types.js +101 -29
- package/out/service/statsig-service.d.ts +2 -1
- package/out/service/statsig-service.d.ts.map +1 -1
- package/out/service/statsig-service.js +3 -0
- package/out/shared/test.d.ts.map +1 -1
- package/out/shared/test.js +1 -2
- package/out/ui/text.d.ts +2 -0
- package/out/ui/text.d.ts.map +1 -1
- package/out/ui/text.js +26 -23
- package/package.json +1 -1
|
@@ -756,6 +756,7 @@ export declare type ActionsActionConfigurationParameter = {
|
|
|
756
756
|
};
|
|
757
757
|
export declare type ActionsActionInput = {
|
|
758
758
|
__typename?: 'ActionsActionInput';
|
|
759
|
+
additionalProperties?: Maybe<Scalars['Boolean']['output']>;
|
|
759
760
|
default?: Maybe<Scalars['JSON']['output']>;
|
|
760
761
|
description?: Maybe<ActionsDescription>;
|
|
761
762
|
fetchAction?: Maybe<ActionsAction>;
|
|
@@ -763,6 +764,7 @@ export declare type ActionsActionInput = {
|
|
|
763
764
|
maximum?: Maybe<Scalars['Int']['output']>;
|
|
764
765
|
minimum?: Maybe<Scalars['Int']['output']>;
|
|
765
766
|
pattern?: Maybe<Scalars['String']['output']>;
|
|
767
|
+
properties?: Maybe<Array<ActionsActionInputTuple>>;
|
|
766
768
|
required: Scalars['Boolean']['output'];
|
|
767
769
|
title?: Maybe<Scalars['String']['output']>;
|
|
768
770
|
type: Scalars['String']['output'];
|
|
@@ -2113,6 +2115,7 @@ export declare type AgentStudioAssistantScenario = AgentStudioScenario & Node &
|
|
|
2113
2115
|
isValid: AgentStudioScenarioValidation;
|
|
2114
2116
|
knowledgeSources?: Maybe<AgentStudioKnowledgeConfiguration>;
|
|
2115
2117
|
name: Scalars['String']['output'];
|
|
2118
|
+
tools?: Maybe<Array<AgentStudioTool>>;
|
|
2116
2119
|
};
|
|
2117
2120
|
export declare type AgentStudioChannel = {
|
|
2118
2121
|
connected?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -2278,6 +2281,7 @@ export declare type AgentStudioScenario = {
|
|
|
2278
2281
|
isValid: AgentStudioScenarioValidation;
|
|
2279
2282
|
knowledgeSources?: Maybe<AgentStudioKnowledgeConfiguration>;
|
|
2280
2283
|
name: Scalars['String']['output'];
|
|
2284
|
+
tools?: Maybe<Array<AgentStudioTool>>;
|
|
2281
2285
|
};
|
|
2282
2286
|
export declare type AgentStudioScenarioInput = {
|
|
2283
2287
|
actions?: InputMaybe<Array<InputMaybe<AgentStudioActionInput>>>;
|
|
@@ -2287,6 +2291,7 @@ export declare type AgentStudioScenarioInput = {
|
|
|
2287
2291
|
isDefault?: InputMaybe<Scalars['Boolean']['input']>;
|
|
2288
2292
|
knowledgeSources?: InputMaybe<AgentStudioKnowledgeConfigurationInput>;
|
|
2289
2293
|
name?: InputMaybe<Scalars['String']['input']>;
|
|
2294
|
+
tools?: InputMaybe<Array<AgentStudioToolInput>>;
|
|
2290
2295
|
};
|
|
2291
2296
|
export declare type AgentStudioScenarioResult = AgentStudioAssistantScenario | QueryError;
|
|
2292
2297
|
export declare type AgentStudioScenarioValidateInput = {
|
|
@@ -2390,6 +2395,8 @@ export declare type AgentStudioTeamsChannelDetails = {
|
|
|
2390
2395
|
};
|
|
2391
2396
|
export declare type AgentStudioTool = {
|
|
2392
2397
|
__typename?: 'AgentStudioTool';
|
|
2398
|
+
definitionId?: Maybe<Scalars['String']['output']>;
|
|
2399
|
+
definitionSource?: Maybe<AgentStudioToolDefinitionSource>;
|
|
2393
2400
|
description?: Maybe<Scalars['String']['output']>;
|
|
2394
2401
|
displayName?: Maybe<Scalars['String']['output']>;
|
|
2395
2402
|
iconUrl?: Maybe<Scalars['String']['output']>;
|
|
@@ -2409,9 +2416,9 @@ export declare type AgentStudioToolEdge = {
|
|
|
2409
2416
|
node?: Maybe<AgentStudioTool>;
|
|
2410
2417
|
};
|
|
2411
2418
|
export declare type AgentStudioToolInput = {
|
|
2412
|
-
configId?: InputMaybe<Scalars['String']['input']>;
|
|
2413
2419
|
definitionId: Scalars['String']['input'];
|
|
2414
2420
|
definitionSource: AgentStudioToolDefinitionSource;
|
|
2421
|
+
toolId?: InputMaybe<Scalars['String']['input']>;
|
|
2415
2422
|
};
|
|
2416
2423
|
export declare type AgentStudioToolIntegration = {
|
|
2417
2424
|
__typename?: 'AgentStudioToolIntegration';
|
|
@@ -5895,7 +5902,8 @@ export declare type CatchupLastViewedTimeResponse = {
|
|
|
5895
5902
|
};
|
|
5896
5903
|
export declare enum CatchupOverviewUpdateType {
|
|
5897
5904
|
SinceLastViewed = "SINCE_LAST_VIEWED",
|
|
5898
|
-
SinceLastViewedMarkdown = "SINCE_LAST_VIEWED_MARKDOWN"
|
|
5905
|
+
SinceLastViewedMarkdown = "SINCE_LAST_VIEWED_MARKDOWN",
|
|
5906
|
+
SinceXDays = "SINCE_X_DAYS"
|
|
5899
5907
|
}
|
|
5900
5908
|
export declare type CatchupVersionDiffMetadataResponse = {
|
|
5901
5909
|
__typename?: 'CatchupVersionDiffMetadataResponse';
|
|
@@ -13714,6 +13722,16 @@ export declare enum ComponentSyncEventStatus {
|
|
|
13714
13722
|
Success = "SUCCESS",
|
|
13715
13723
|
UserError = "USER_ERROR"
|
|
13716
13724
|
}
|
|
13725
|
+
export declare type ConfluenceAcceptAnswerInput = {
|
|
13726
|
+
accept: Scalars['Boolean']['input'];
|
|
13727
|
+
answerId: Scalars['ID']['input'];
|
|
13728
|
+
questionId: Scalars['ID']['input'];
|
|
13729
|
+
};
|
|
13730
|
+
export declare type ConfluenceAcceptAnswerPayload = Payload & {
|
|
13731
|
+
__typename?: 'ConfluenceAcceptAnswerPayload';
|
|
13732
|
+
errors?: Maybe<Array<MutationError>>;
|
|
13733
|
+
success: Scalars['Boolean']['output'];
|
|
13734
|
+
};
|
|
13717
13735
|
export declare type ConfluenceAddCustomApplicationLinkInput = {
|
|
13718
13736
|
allowedGroups?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
|
|
13719
13737
|
displayName: Scalars['String']['input'];
|
|
@@ -13787,6 +13805,52 @@ export declare enum ConfluenceAnalyticsCommentContentType {
|
|
|
13787
13805
|
Whiteboard = "whiteboard"
|
|
13788
13806
|
}
|
|
13789
13807
|
export declare type ConfluenceAncestor = ConfluenceDatabase | ConfluenceEmbed | ConfluenceFolder | ConfluencePage | ConfluenceWhiteboard;
|
|
13808
|
+
export declare type ConfluenceAnswer = {
|
|
13809
|
+
__typename?: 'ConfluenceAnswer';
|
|
13810
|
+
author?: Maybe<ConfluenceUserInfo>;
|
|
13811
|
+
body?: Maybe<ConfluenceBodies>;
|
|
13812
|
+
comments?: Maybe<ConfluenceCommentConnection>;
|
|
13813
|
+
createdAt?: Maybe<Scalars['String']['output']>;
|
|
13814
|
+
id: Scalars['ID']['output'];
|
|
13815
|
+
isAccepted: Scalars['Boolean']['output'];
|
|
13816
|
+
latestVersion?: Maybe<ConfluenceContentVersion>;
|
|
13817
|
+
voteProperties: ConfluenceVotePropertyValue;
|
|
13818
|
+
};
|
|
13819
|
+
export declare type ConfluenceAnswerCommentsArgs = {
|
|
13820
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
13821
|
+
};
|
|
13822
|
+
export declare type ConfluenceAnswerConnection = {
|
|
13823
|
+
__typename?: 'ConfluenceAnswerConnection';
|
|
13824
|
+
edges?: Maybe<Array<Maybe<ConfluenceAnswerEdge>>>;
|
|
13825
|
+
nodes?: Maybe<Array<Maybe<ConfluenceAnswer>>>;
|
|
13826
|
+
pageInfo: ConfluencePageInfo;
|
|
13827
|
+
};
|
|
13828
|
+
export declare type ConfluenceAnswerEdge = {
|
|
13829
|
+
__typename?: 'ConfluenceAnswerEdge';
|
|
13830
|
+
cursor: Scalars['String']['output'];
|
|
13831
|
+
node?: Maybe<ConfluenceAnswer>;
|
|
13832
|
+
};
|
|
13833
|
+
export declare type ConfluenceAnswerFilters = {
|
|
13834
|
+
exampleFilter?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
|
|
13835
|
+
};
|
|
13836
|
+
export declare type ConfluenceAppConnection = {
|
|
13837
|
+
__typename?: 'ConfluenceAppConnection';
|
|
13838
|
+
edges?: Maybe<Array<Maybe<ConfluenceAppInfoEdge>>>;
|
|
13839
|
+
nodes?: Maybe<Array<Maybe<ConfluenceAppInfo>>>;
|
|
13840
|
+
pageInfo: ConfluencePageInfo;
|
|
13841
|
+
};
|
|
13842
|
+
export declare type ConfluenceAppInfo = {
|
|
13843
|
+
__typename?: 'ConfluenceAppInfo';
|
|
13844
|
+
customContentInfo?: Maybe<Array<Maybe<ConfluenceCustomContentInfo>>>;
|
|
13845
|
+
id: Scalars['ID']['output'];
|
|
13846
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
13847
|
+
type?: Maybe<ConfluenceAppType>;
|
|
13848
|
+
};
|
|
13849
|
+
export declare type ConfluenceAppInfoEdge = {
|
|
13850
|
+
__typename?: 'ConfluenceAppInfoEdge';
|
|
13851
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
13852
|
+
node?: Maybe<ConfluenceAppInfo>;
|
|
13853
|
+
};
|
|
13790
13854
|
export declare type ConfluenceAppInstallationLicense = {
|
|
13791
13855
|
__typename?: 'ConfluenceAppInstallationLicense';
|
|
13792
13856
|
active: Scalars['Boolean']['output'];
|
|
@@ -13816,6 +13880,10 @@ export declare type ConfluenceAppLinkMetadataInput = {
|
|
|
13816
13880
|
serverId: Scalars['ID']['input'];
|
|
13817
13881
|
serverName: Scalars['String']['input'];
|
|
13818
13882
|
};
|
|
13883
|
+
export declare enum ConfluenceAppType {
|
|
13884
|
+
Connect = "CONNECT",
|
|
13885
|
+
Forge = "FORGE"
|
|
13886
|
+
}
|
|
13819
13887
|
export declare enum ConfluenceApplication {
|
|
13820
13888
|
Html = "HTML",
|
|
13821
13889
|
Miro = "MIRO",
|
|
@@ -14001,6 +14069,13 @@ export declare type ConfluenceCalendarTimezones = {
|
|
|
14001
14069
|
__typename?: 'ConfluenceCalendarTimezones';
|
|
14002
14070
|
timezones?: Maybe<Array<Maybe<ConfluenceCalendarTimeZone>>>;
|
|
14003
14071
|
};
|
|
14072
|
+
export declare enum ConfluenceCatchupOverviewTimeframeLength {
|
|
14073
|
+
AllTime = "ALL_TIME",
|
|
14074
|
+
OneDayAgo = "ONE_DAY_AGO",
|
|
14075
|
+
OneMonthAgo = "ONE_MONTH_AGO",
|
|
14076
|
+
OneWeekAgo = "ONE_WEEK_AGO",
|
|
14077
|
+
TwoWeeksAgo = "TWO_WEEKS_AGO"
|
|
14078
|
+
}
|
|
14004
14079
|
export declare type ConfluenceCategorizeNbmCategory = {
|
|
14005
14080
|
__typename?: 'ConfluenceCategorizeNbmCategory';
|
|
14006
14081
|
nbmChains?: Maybe<Array<Maybe<Array<Maybe<Scalars['String']['output']>>>>>;
|
|
@@ -14069,6 +14144,12 @@ export declare type ConfluenceComment = {
|
|
|
14069
14144
|
name?: Maybe<Scalars['String']['output']>;
|
|
14070
14145
|
status?: Maybe<ConfluenceCommentStatus>;
|
|
14071
14146
|
};
|
|
14147
|
+
export declare type ConfluenceCommentConnection = {
|
|
14148
|
+
__typename?: 'ConfluenceCommentConnection';
|
|
14149
|
+
edges?: Maybe<Array<Maybe<ConfluenceCommentEdge>>>;
|
|
14150
|
+
nodes?: Maybe<Array<Maybe<ConfluenceComment>>>;
|
|
14151
|
+
pageInfo: ConfluencePageInfo;
|
|
14152
|
+
};
|
|
14072
14153
|
export declare type ConfluenceCommentContainer = ConfluenceBlogPost | ConfluencePage | ConfluenceWhiteboard;
|
|
14073
14154
|
export declare type ConfluenceCommentCountSummary = {
|
|
14074
14155
|
__typename?: 'ConfluenceCommentCountSummary';
|
|
@@ -14081,6 +14162,11 @@ export declare type ConfluenceCommentCreated = {
|
|
|
14081
14162
|
pageCommentType?: Maybe<ConfluenceCommentLevel>;
|
|
14082
14163
|
replies?: Maybe<Array<Scalars['String']['output']>>;
|
|
14083
14164
|
};
|
|
14165
|
+
export declare type ConfluenceCommentEdge = {
|
|
14166
|
+
__typename?: 'ConfluenceCommentEdge';
|
|
14167
|
+
cursor: Scalars['String']['output'];
|
|
14168
|
+
node?: Maybe<ConfluenceComment>;
|
|
14169
|
+
};
|
|
14084
14170
|
export declare type ConfluenceCommentFilter = {
|
|
14085
14171
|
commentState?: InputMaybe<Array<InputMaybe<ConfluenceCommentState>>>;
|
|
14086
14172
|
commentType?: InputMaybe<Array<InputMaybe<CommentType>>>;
|
|
@@ -14374,6 +14460,16 @@ export declare type ConfluenceCreateAdminAnnouncementBannerInput = {
|
|
|
14374
14460
|
title?: InputMaybe<Scalars['String']['input']>;
|
|
14375
14461
|
visibility: ConfluenceAdminAnnouncementBannerVisibilityType;
|
|
14376
14462
|
};
|
|
14463
|
+
export declare type ConfluenceCreateAnswerInput = {
|
|
14464
|
+
body?: InputMaybe<ConfluenceContentBodyInput>;
|
|
14465
|
+
questionId: Scalars['ID']['input'];
|
|
14466
|
+
};
|
|
14467
|
+
export declare type ConfluenceCreateAnswerPayload = Payload & {
|
|
14468
|
+
__typename?: 'ConfluenceCreateAnswerPayload';
|
|
14469
|
+
answer?: Maybe<ConfluenceAnswer>;
|
|
14470
|
+
errors?: Maybe<Array<MutationError>>;
|
|
14471
|
+
success: Scalars['Boolean']['output'];
|
|
14472
|
+
};
|
|
14377
14473
|
export declare type ConfluenceCreateBlogPostInput = {
|
|
14378
14474
|
body?: InputMaybe<ConfluenceContentBodyInput>;
|
|
14379
14475
|
spaceId: Scalars['ID']['input'];
|
|
@@ -14397,6 +14493,26 @@ export declare type ConfluenceCreateBlogPostPropertyPayload = Payload & {
|
|
|
14397
14493
|
errors?: Maybe<Array<MutationError>>;
|
|
14398
14494
|
success: Scalars['Boolean']['output'];
|
|
14399
14495
|
};
|
|
14496
|
+
export declare type ConfluenceCreateCommentOnAnswerInput = {
|
|
14497
|
+
answerId: Scalars['ID']['input'];
|
|
14498
|
+
body: ConfluenceContentBodyInput;
|
|
14499
|
+
};
|
|
14500
|
+
export declare type ConfluenceCreateCommentOnAnswerPayload = {
|
|
14501
|
+
__typename?: 'ConfluenceCreateCommentOnAnswerPayload';
|
|
14502
|
+
comment?: Maybe<ConfluenceFooterComment>;
|
|
14503
|
+
errors?: Maybe<Array<MutationError>>;
|
|
14504
|
+
success: Scalars['Boolean']['output'];
|
|
14505
|
+
};
|
|
14506
|
+
export declare type ConfluenceCreateCommentOnQuestionInput = {
|
|
14507
|
+
body: ConfluenceContentBodyInput;
|
|
14508
|
+
questionId: Scalars['ID']['input'];
|
|
14509
|
+
};
|
|
14510
|
+
export declare type ConfluenceCreateCommentOnQuestionPayload = {
|
|
14511
|
+
__typename?: 'ConfluenceCreateCommentOnQuestionPayload';
|
|
14512
|
+
comment?: Maybe<ConfluenceFooterComment>;
|
|
14513
|
+
errors?: Maybe<Array<MutationError>>;
|
|
14514
|
+
success: Scalars['Boolean']['output'];
|
|
14515
|
+
};
|
|
14400
14516
|
export declare type ConfluenceCreateCsvExportTaskInput = {
|
|
14401
14517
|
spaceAri: Scalars['String']['input'];
|
|
14402
14518
|
};
|
|
@@ -14479,6 +14595,18 @@ export declare type ConfluenceCreatePdfExportTaskForSingleContentPayload = Paylo
|
|
|
14479
14595
|
exportTaskId: Scalars['ID']['output'];
|
|
14480
14596
|
success: Scalars['Boolean']['output'];
|
|
14481
14597
|
};
|
|
14598
|
+
export declare type ConfluenceCreateQuestionInput = {
|
|
14599
|
+
body?: InputMaybe<ConfluenceContentBodyInput>;
|
|
14600
|
+
labels?: InputMaybe<Array<InputMaybe<LabelInput>>>;
|
|
14601
|
+
spaceId: Scalars['ID']['input'];
|
|
14602
|
+
title?: InputMaybe<Scalars['String']['input']>;
|
|
14603
|
+
};
|
|
14604
|
+
export declare type ConfluenceCreateQuestionPayload = Payload & {
|
|
14605
|
+
__typename?: 'ConfluenceCreateQuestionPayload';
|
|
14606
|
+
errors?: Maybe<Array<MutationError>>;
|
|
14607
|
+
question?: Maybe<ConfluenceQuestion>;
|
|
14608
|
+
success: Scalars['Boolean']['output'];
|
|
14609
|
+
};
|
|
14482
14610
|
export declare type ConfluenceCreateSpaceInput = {
|
|
14483
14611
|
key: Scalars['String']['input'];
|
|
14484
14612
|
name: Scalars['String']['input'];
|
|
@@ -14519,6 +14647,31 @@ export declare type ConfluenceCustomApplicationLink = {
|
|
|
14519
14647
|
sourceApplicationUrl?: Maybe<Scalars['String']['output']>;
|
|
14520
14648
|
url: Scalars['String']['output'];
|
|
14521
14649
|
};
|
|
14650
|
+
export declare type ConfluenceCustomContentInfo = {
|
|
14651
|
+
__typename?: 'ConfluenceCustomContentInfo';
|
|
14652
|
+
customContentTypeKey: Scalars['String']['output'];
|
|
14653
|
+
customContentTypeName: Scalars['String']['output'];
|
|
14654
|
+
supportedPermissions: Array<Maybe<ConfluenceCustomContentPermissionType>>;
|
|
14655
|
+
};
|
|
14656
|
+
export declare type ConfluenceCustomContentPermissionInput = {
|
|
14657
|
+
customContentTypeKey: Scalars['String']['input'];
|
|
14658
|
+
permission: ConfluenceCustomContentPermissionType;
|
|
14659
|
+
};
|
|
14660
|
+
export declare enum ConfluenceCustomContentPermissionPrincipalType {
|
|
14661
|
+
Group = "GROUP",
|
|
14662
|
+
Guests = "GUESTS",
|
|
14663
|
+
User = "USER",
|
|
14664
|
+
UserClass = "USER_CLASS"
|
|
14665
|
+
}
|
|
14666
|
+
export declare enum ConfluenceCustomContentPermissionType {
|
|
14667
|
+
Create = "CREATE",
|
|
14668
|
+
Delete = "DELETE",
|
|
14669
|
+
Read = "READ"
|
|
14670
|
+
}
|
|
14671
|
+
export declare type ConfluenceCustomContentPrincipalInput = {
|
|
14672
|
+
principalId: Scalars['ID']['input'];
|
|
14673
|
+
principalType: ConfluenceCustomContentPermissionPrincipalType;
|
|
14674
|
+
};
|
|
14522
14675
|
export declare type ConfluenceCustomPageSettings = {
|
|
14523
14676
|
__typename?: 'ConfluenceCustomPageSettings';
|
|
14524
14677
|
footerText?: Maybe<Scalars['String']['output']>;
|
|
@@ -14576,6 +14729,15 @@ export declare type ConfluenceDeleteAllTeamCalendarSubscriptionsPayload = {
|
|
|
14576
14729
|
errors?: Maybe<Array<MutationError>>;
|
|
14577
14730
|
success: Scalars['Boolean']['output'];
|
|
14578
14731
|
};
|
|
14732
|
+
export declare type ConfluenceDeleteAnswerInput = {
|
|
14733
|
+
answerId: Scalars['ID']['input'];
|
|
14734
|
+
questionId: Scalars['ID']['input'];
|
|
14735
|
+
};
|
|
14736
|
+
export declare type ConfluenceDeleteAnswerPayload = Payload & {
|
|
14737
|
+
__typename?: 'ConfluenceDeleteAnswerPayload';
|
|
14738
|
+
errors?: Maybe<Array<MutationError>>;
|
|
14739
|
+
success: Scalars['Boolean']['output'];
|
|
14740
|
+
};
|
|
14579
14741
|
export declare type ConfluenceDeleteBlogPostPropertyInput = {
|
|
14580
14742
|
blogPostId: Scalars['ID']['input'];
|
|
14581
14743
|
key: Scalars['String']['input'];
|
|
@@ -14655,6 +14817,14 @@ export declare type ConfluenceDeletePagePropertyPayload = Payload & {
|
|
|
14655
14817
|
errors?: Maybe<Array<MutationError>>;
|
|
14656
14818
|
success: Scalars['Boolean']['output'];
|
|
14657
14819
|
};
|
|
14820
|
+
export declare type ConfluenceDeleteQuestionInput = {
|
|
14821
|
+
id: Scalars['ID']['input'];
|
|
14822
|
+
};
|
|
14823
|
+
export declare type ConfluenceDeleteQuestionPayload = Payload & {
|
|
14824
|
+
__typename?: 'ConfluenceDeleteQuestionPayload';
|
|
14825
|
+
errors?: Maybe<Array<MutationError>>;
|
|
14826
|
+
success: Scalars['Boolean']['output'];
|
|
14827
|
+
};
|
|
14658
14828
|
export declare type ConfluenceDeleteSpacePageTemplateInput = {
|
|
14659
14829
|
id: Scalars['ID']['input'];
|
|
14660
14830
|
spaceId: Scalars['Long']['input'];
|
|
@@ -14798,6 +14968,11 @@ export declare type ConfluenceEnableBlueprintPayload = Payload & {
|
|
|
14798
14968
|
errors?: Maybe<Array<MutationError>>;
|
|
14799
14969
|
success: Scalars['Boolean']['output'];
|
|
14800
14970
|
};
|
|
14971
|
+
export declare type ConfluenceEnableDefaultSpaceLogoPayload = Payload & {
|
|
14972
|
+
__typename?: 'ConfluenceEnableDefaultSpaceLogoPayload';
|
|
14973
|
+
errors?: Maybe<Array<MutationError>>;
|
|
14974
|
+
success: Scalars['Boolean']['output'];
|
|
14975
|
+
};
|
|
14801
14976
|
export declare type ConfluenceEnableGlobalPageBlueprintInput = {
|
|
14802
14977
|
id: Scalars['ID']['input'];
|
|
14803
14978
|
};
|
|
@@ -14991,9 +15166,6 @@ export declare type ConfluenceFormattingSettings = {
|
|
|
14991
15166
|
longNumberFormat?: Maybe<Scalars['String']['output']>;
|
|
14992
15167
|
timeFormat?: Maybe<Scalars['String']['output']>;
|
|
14993
15168
|
};
|
|
14994
|
-
export declare enum ConfluenceGeneratedBy {
|
|
14995
|
-
Onboarding = "ONBOARDING"
|
|
14996
|
-
}
|
|
14997
15169
|
export declare type ConfluenceGeneratedSpaceKey = {
|
|
14998
15170
|
__typename?: 'ConfluenceGeneratedSpaceKey';
|
|
14999
15171
|
key?: Maybe<Scalars['String']['output']>;
|
|
@@ -15405,6 +15577,7 @@ export declare type ConfluenceMutationApi = {
|
|
|
15405
15577
|
disableDefaultSpaceLogo?: Maybe<ConfluenceDisableDefaultSpaceLogoPayload>;
|
|
15406
15578
|
disableGlobalBlueprint?: Maybe<ConfluenceDisableGlobalPageBlueprintPayload>;
|
|
15407
15579
|
enableBlueprint?: Maybe<ConfluenceEnableBlueprintPayload>;
|
|
15580
|
+
enableDefaultSpaceLogo?: Maybe<ConfluenceEnableDefaultSpaceLogoPayload>;
|
|
15408
15581
|
enableGlobalBlueprint?: Maybe<ConfluenceEnableGlobalPageBlueprintPayload>;
|
|
15409
15582
|
importSpace?: Maybe<ConfluenceImportSpacePayload>;
|
|
15410
15583
|
promoteBlueprint?: Maybe<ConfluencePromoteBlueprintPayload>;
|
|
@@ -15417,6 +15590,8 @@ export declare type ConfluenceMutationApi = {
|
|
|
15417
15590
|
repairJiraMacroAppLinks?: Maybe<ConfluenceRepairJiraMacroAppLinksPayload>;
|
|
15418
15591
|
replyToComment?: Maybe<ConfluenceReplyToCommentPayload>;
|
|
15419
15592
|
requestSpaceAccess?: Maybe<ConfluenceRequestSpaceAccessPayload>;
|
|
15593
|
+
resetDefaultSpaceLogo?: Maybe<ConfluenceResetDefaultSpaceLogoPayload>;
|
|
15594
|
+
resetJiraMacroAppLinksScanStatus?: Maybe<ConfluenceResetJiraMacroAppLinksScanStatusPayload>;
|
|
15420
15595
|
resolveInlineComment?: Maybe<ConfluenceResolveInlineCommentPayload>;
|
|
15421
15596
|
saveOrUpdateSpaceOwner?: Maybe<ConfluenceSaveOrUpdateSpaceOwnerPayload>;
|
|
15422
15597
|
scanJiraMacroAppLinks?: Maybe<ConfluenceScanJiraMacroAppLinksPayload>;
|
|
@@ -15438,6 +15613,7 @@ export declare type ConfluenceMutationApi = {
|
|
|
15438
15613
|
updateGlobalPageTemplateDescription?: Maybe<ConfluenceUpdateGlobalPageTemplateDescriptionPayload>;
|
|
15439
15614
|
updateGlobalTheme?: Maybe<ConfluenceUpdateGlobalThemePayload>;
|
|
15440
15615
|
updateIndexingLanguageConfiguration?: Maybe<ConfluenceUpdateIndexingLanguageConfigurationPayload>;
|
|
15616
|
+
updateLoomEntryPointsConfiguration?: Maybe<ConfluenceUpdateLoomEntryPointsConfigurationPayload>;
|
|
15441
15617
|
updateNewCodeMacro?: Maybe<ConfluenceUpdateNewCodeMacroPayload>;
|
|
15442
15618
|
updatePdfExportConfiguration?: Maybe<ConfluenceUpdatePdfExportConfigurationPayload>;
|
|
15443
15619
|
updatePdfExportSpaceConfiguration?: Maybe<ConfluenceUpdatePdfExportConfigurationPayload>;
|
|
@@ -15448,8 +15624,11 @@ export declare type ConfluenceMutationApi = {
|
|
|
15448
15624
|
updateSpacePageTemplateDescription?: Maybe<ConfluenceUpdateGlobalPageTemplateDescriptionPayload>;
|
|
15449
15625
|
updateSpaceSettings?: Maybe<ConfluenceUpdateSpaceSettingsPayload>;
|
|
15450
15626
|
updateSpaceTheme?: Maybe<ConfluenceUpdateSpaceThemePayload>;
|
|
15627
|
+
updateTeamCalendarGlobalSettings?: Maybe<ConfluenceUpdateTeamCalendarGlobalSettingsPayload>;
|
|
15628
|
+
updateTeamPresenceSiteConfiguration?: Maybe<ConfluenceUpdateTeamPresenceSiteConfigurationPayload>;
|
|
15451
15629
|
updateValueBlogPostProperty?: Maybe<ConfluenceUpdateValueBlogPostPropertyPayload>;
|
|
15452
15630
|
updateValuePageProperty?: Maybe<ConfluenceUpdateValuePagePropertyPayload>;
|
|
15631
|
+
uploadDefaultSpaceLogo?: Maybe<ConfluenceUploadDefaultSpaceLogoPayload>;
|
|
15453
15632
|
};
|
|
15454
15633
|
export declare type ConfluenceMutationApiAddCustomApplicationLinkArgs = {
|
|
15455
15634
|
input: ConfluenceAddCustomApplicationLinkInput;
|
|
@@ -15608,6 +15787,9 @@ export declare type ConfluenceMutationApiUpdateGlobalThemeArgs = {
|
|
|
15608
15787
|
export declare type ConfluenceMutationApiUpdateIndexingLanguageConfigurationArgs = {
|
|
15609
15788
|
input: ConfluenceUpdateIndexingLanguageConfigurationInput;
|
|
15610
15789
|
};
|
|
15790
|
+
export declare type ConfluenceMutationApiUpdateLoomEntryPointsConfigurationArgs = {
|
|
15791
|
+
input: ConfluenceUpdateLoomEntryPointsConfigurationInput;
|
|
15792
|
+
};
|
|
15611
15793
|
export declare type ConfluenceMutationApiUpdateNewCodeMacroArgs = {
|
|
15612
15794
|
input: ConfluenceUpdateNewCodeMacroInput;
|
|
15613
15795
|
};
|
|
@@ -15638,16 +15820,34 @@ export declare type ConfluenceMutationApiUpdateSpaceSettingsArgs = {
|
|
|
15638
15820
|
export declare type ConfluenceMutationApiUpdateSpaceThemeArgs = {
|
|
15639
15821
|
input: ConfluenceUpdateSpaceThemeInput;
|
|
15640
15822
|
};
|
|
15823
|
+
export declare type ConfluenceMutationApiUpdateTeamCalendarGlobalSettingsArgs = {
|
|
15824
|
+
input: ConfluenceUpdateTeamCalendarGlobalSettingsInput;
|
|
15825
|
+
};
|
|
15826
|
+
export declare type ConfluenceMutationApiUpdateTeamPresenceSiteConfigurationArgs = {
|
|
15827
|
+
input: ConfluenceUpdateTeamPresenceSiteConfigurationInput;
|
|
15828
|
+
};
|
|
15641
15829
|
export declare type ConfluenceMutationApiUpdateValueBlogPostPropertyArgs = {
|
|
15642
15830
|
input: ConfluenceUpdateValueBlogPostPropertyInput;
|
|
15643
15831
|
};
|
|
15644
15832
|
export declare type ConfluenceMutationApiUpdateValuePagePropertyArgs = {
|
|
15645
15833
|
input: ConfluenceUpdateValuePagePropertyInput;
|
|
15646
15834
|
};
|
|
15835
|
+
export declare type ConfluenceMutationApiUploadDefaultSpaceLogoArgs = {
|
|
15836
|
+
input: ConfluenceUploadDefaultSpaceLogoInput;
|
|
15837
|
+
};
|
|
15647
15838
|
export declare enum ConfluenceMutationContentStatus {
|
|
15648
15839
|
Current = "CURRENT",
|
|
15649
15840
|
Draft = "DRAFT"
|
|
15650
15841
|
}
|
|
15842
|
+
export declare type ConfluenceNbmBulkUpdateVerificationEntryInput = {
|
|
15843
|
+
scanId: Scalars['ID']['input'];
|
|
15844
|
+
verificationEntries: Array<InputMaybe<ConfluenceNbmVerificationEntryInput>>;
|
|
15845
|
+
};
|
|
15846
|
+
export declare type ConfluenceNbmBulkUpdateVerificationEntryPayload = Payload & {
|
|
15847
|
+
__typename?: 'ConfluenceNbmBulkUpdateVerificationEntryPayload';
|
|
15848
|
+
errors?: Maybe<Array<MutationError>>;
|
|
15849
|
+
success: Scalars['Boolean']['output'];
|
|
15850
|
+
};
|
|
15651
15851
|
export declare type ConfluenceNbmCategory = {
|
|
15652
15852
|
__typename?: 'ConfluenceNbmCategory';
|
|
15653
15853
|
details?: Maybe<Array<Maybe<ConfluenceNbmCategoryDetail>>>;
|
|
@@ -15663,7 +15863,12 @@ export declare type ConfluenceNbmCategoryDetail = {
|
|
|
15663
15863
|
pages?: Maybe<Array<Maybe<ConfluenceNbmPageReference>>>;
|
|
15664
15864
|
};
|
|
15665
15865
|
export declare enum ConfluenceNbmCategoryTypes {
|
|
15866
|
+
NotSupported = "NOT_SUPPORTED",
|
|
15867
|
+
Supported = "SUPPORTED",
|
|
15868
|
+
SupportedWithMitigation = "SUPPORTED_WITH_MITIGATION",
|
|
15869
|
+
Unknown = "UNKNOWN",
|
|
15666
15870
|
UnknownMacros = "UNKNOWN_MACROS",
|
|
15871
|
+
Unverified = "UNVERIFIED",
|
|
15667
15872
|
UnverifiedNbm = "UNVERIFIED_NBM",
|
|
15668
15873
|
VerifiedNotSupported = "VERIFIED_NOT_SUPPORTED",
|
|
15669
15874
|
VerifiedSupported = "VERIFIED_SUPPORTED",
|
|
@@ -15737,6 +15942,42 @@ export declare type ConfluenceNbmStartScanLongTaskPayload = Payload & {
|
|
|
15737
15942
|
success: Scalars['Boolean']['output'];
|
|
15738
15943
|
taskId: Scalars['String']['output'];
|
|
15739
15944
|
};
|
|
15945
|
+
export declare enum ConfluenceNbmVerificationAiState {
|
|
15946
|
+
Broken = "BROKEN",
|
|
15947
|
+
Unknown = "UNKNOWN",
|
|
15948
|
+
Working = "WORKING"
|
|
15949
|
+
}
|
|
15950
|
+
export declare type ConfluenceNbmVerificationEntry = {
|
|
15951
|
+
__typename?: 'ConfluenceNbmVerificationEntry';
|
|
15952
|
+
aiCategory?: Maybe<Scalars['String']['output']>;
|
|
15953
|
+
aiReason?: Maybe<Scalars['String']['output']>;
|
|
15954
|
+
aiState?: Maybe<ConfluenceNbmVerificationAiState>;
|
|
15955
|
+
approved?: Maybe<Scalars['Boolean']['output']>;
|
|
15956
|
+
chain?: Maybe<Scalars['String']['output']>;
|
|
15957
|
+
error?: Maybe<Scalars['String']['output']>;
|
|
15958
|
+
id: Scalars['ID']['output'];
|
|
15959
|
+
manualState?: Maybe<ConfluenceNbmCategoryTypes>;
|
|
15960
|
+
originalPageId?: Maybe<Scalars['ID']['output']>;
|
|
15961
|
+
pageCount?: Maybe<Scalars['Int']['output']>;
|
|
15962
|
+
screenshotId?: Maybe<Scalars['ID']['output']>;
|
|
15963
|
+
screenshotPageId?: Maybe<Scalars['ID']['output']>;
|
|
15964
|
+
};
|
|
15965
|
+
export declare type ConfluenceNbmVerificationEntryInput = {
|
|
15966
|
+
id: Scalars['ID']['input'];
|
|
15967
|
+
isApproved: Scalars['Boolean']['input'];
|
|
15968
|
+
manualState?: InputMaybe<ConfluenceNbmCategoryTypes>;
|
|
15969
|
+
};
|
|
15970
|
+
export declare type ConfluenceNbmVerificationResultConnection = {
|
|
15971
|
+
__typename?: 'ConfluenceNbmVerificationResultConnection';
|
|
15972
|
+
edges?: Maybe<Array<Maybe<ConfluenceNbmVerificationResultEdge>>>;
|
|
15973
|
+
nodes?: Maybe<Array<Maybe<ConfluenceNbmVerificationEntry>>>;
|
|
15974
|
+
pageInfo: ConfluencePageInfo;
|
|
15975
|
+
};
|
|
15976
|
+
export declare type ConfluenceNbmVerificationResultEdge = {
|
|
15977
|
+
__typename?: 'ConfluenceNbmVerificationResultEdge';
|
|
15978
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
15979
|
+
node?: Maybe<ConfluenceNbmVerificationEntry>;
|
|
15980
|
+
};
|
|
15740
15981
|
export declare type ConfluenceNewCodeMacro = {
|
|
15741
15982
|
__typename?: 'ConfluenceNewCodeMacro';
|
|
15742
15983
|
languages?: Maybe<Array<Maybe<ConfluenceNewCodeMacroLanguage>>>;
|
|
@@ -16171,6 +16412,36 @@ export declare type ConfluenceQueryApiWhiteboardArgs = {
|
|
|
16171
16412
|
export declare type ConfluenceQueryApiWhiteboardsArgs = {
|
|
16172
16413
|
ids: Array<InputMaybe<Scalars['ID']['input']>>;
|
|
16173
16414
|
};
|
|
16415
|
+
export declare type ConfluenceQuestion = {
|
|
16416
|
+
__typename?: 'ConfluenceQuestion';
|
|
16417
|
+
answersTotalCount?: Maybe<Scalars['Int']['output']>;
|
|
16418
|
+
author?: Maybe<ConfluenceUserInfo>;
|
|
16419
|
+
body?: Maybe<ConfluenceBodies>;
|
|
16420
|
+
comments?: Maybe<ConfluenceCommentConnection>;
|
|
16421
|
+
createdAt?: Maybe<Scalars['String']['output']>;
|
|
16422
|
+
id: Scalars['ID']['output'];
|
|
16423
|
+
labels?: Maybe<Array<Maybe<ConfluenceLabel>>>;
|
|
16424
|
+
latestVersion?: Maybe<ConfluenceContentVersion>;
|
|
16425
|
+
title?: Maybe<Scalars['String']['output']>;
|
|
16426
|
+
voteProperties: ConfluenceVotePropertyValue;
|
|
16427
|
+
};
|
|
16428
|
+
export declare type ConfluenceQuestionCommentsArgs = {
|
|
16429
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
16430
|
+
};
|
|
16431
|
+
export declare type ConfluenceQuestionConnection = {
|
|
16432
|
+
__typename?: 'ConfluenceQuestionConnection';
|
|
16433
|
+
edges?: Maybe<Array<Maybe<ConfluenceQuestionEdge>>>;
|
|
16434
|
+
nodes?: Maybe<Array<Maybe<ConfluenceQuestion>>>;
|
|
16435
|
+
pageInfo: ConfluencePageInfo;
|
|
16436
|
+
};
|
|
16437
|
+
export declare type ConfluenceQuestionEdge = {
|
|
16438
|
+
__typename?: 'ConfluenceQuestionEdge';
|
|
16439
|
+
cursor: Scalars['String']['output'];
|
|
16440
|
+
node?: Maybe<ConfluenceQuestion>;
|
|
16441
|
+
};
|
|
16442
|
+
export declare type ConfluenceQuestionFilters = {
|
|
16443
|
+
answered?: InputMaybe<Scalars['Boolean']['input']>;
|
|
16444
|
+
};
|
|
16174
16445
|
export declare type ConfluenceQuestionsConfiguration = {
|
|
16175
16446
|
__typename?: 'ConfluenceQuestionsConfiguration';
|
|
16176
16447
|
confluenceQuestionsGlobalSpaceId?: Maybe<Scalars['ID']['output']>;
|
|
@@ -16228,6 +16499,12 @@ export declare type ConfluenceReactionSummary = {
|
|
|
16228
16499
|
__typename?: 'ConfluenceReactionSummary';
|
|
16229
16500
|
reactionsSummary?: Maybe<Array<Maybe<ConfluenceReactionsSummaryResponse>>>;
|
|
16230
16501
|
};
|
|
16502
|
+
export declare type ConfluenceReactionSummaryInput = {
|
|
16503
|
+
containerId?: InputMaybe<Scalars['Long']['input']>;
|
|
16504
|
+
containerType?: InputMaybe<ContainerType>;
|
|
16505
|
+
contentId?: InputMaybe<Scalars['Long']['input']>;
|
|
16506
|
+
contentType?: InputMaybe<GraphQlReactionContentType>;
|
|
16507
|
+
};
|
|
16231
16508
|
export declare type ConfluenceReactionsSummaryForEmoji = {
|
|
16232
16509
|
__typename?: 'ConfluenceReactionsSummaryForEmoji';
|
|
16233
16510
|
count?: Maybe<Scalars['Int']['output']>;
|
|
@@ -16316,6 +16593,17 @@ export declare type ConfluenceRequestSpaceAccessPayload = Payload & {
|
|
|
16316
16593
|
spaceKey: Scalars['String']['output'];
|
|
16317
16594
|
success: Scalars['Boolean']['output'];
|
|
16318
16595
|
};
|
|
16596
|
+
export declare type ConfluenceResetDefaultSpaceLogoPayload = Payload & {
|
|
16597
|
+
__typename?: 'ConfluenceResetDefaultSpaceLogoPayload';
|
|
16598
|
+
errors?: Maybe<Array<MutationError>>;
|
|
16599
|
+
success: Scalars['Boolean']['output'];
|
|
16600
|
+
};
|
|
16601
|
+
export declare type ConfluenceResetJiraMacroAppLinksScanStatusPayload = Payload & {
|
|
16602
|
+
__typename?: 'ConfluenceResetJiraMacroAppLinksScanStatusPayload';
|
|
16603
|
+
errors?: Maybe<Array<MutationError>>;
|
|
16604
|
+
scanningStatus?: Maybe<ConfluenceJiraMacroAppLinksScanningStatus>;
|
|
16605
|
+
success: Scalars['Boolean']['output'];
|
|
16606
|
+
};
|
|
16319
16607
|
export declare type ConfluenceResolveCommentByContentIdPayload = Payload & {
|
|
16320
16608
|
__typename?: 'ConfluenceResolveCommentByContentIdPayload';
|
|
16321
16609
|
errors?: Maybe<Array<MutationError>>;
|
|
@@ -16561,6 +16849,13 @@ export declare type ConfluenceSpaceRoleAppPrincipal = SpaceRolePrincipal & {
|
|
|
16561
16849
|
displayName: Scalars['String']['output'];
|
|
16562
16850
|
principalId: Scalars['ID']['output'];
|
|
16563
16851
|
};
|
|
16852
|
+
export declare type ConfluenceSpaceRoleAssigned = {
|
|
16853
|
+
__typename?: 'ConfluenceSpaceRoleAssigned';
|
|
16854
|
+
isSpaceRoleAssignedToAnonymous: Scalars['Boolean']['output'];
|
|
16855
|
+
isSpaceRoleAssignedToGuests: Scalars['Boolean']['output'];
|
|
16856
|
+
isSpaceRoleAssignedToRegularUsers: Scalars['Boolean']['output'];
|
|
16857
|
+
spaceRoleId: Scalars['String']['output'];
|
|
16858
|
+
};
|
|
16564
16859
|
export declare enum ConfluenceSpaceRoleMode {
|
|
16565
16860
|
PreRoles = "PRE_ROLES",
|
|
16566
16861
|
Roles = "ROLES",
|
|
@@ -16628,6 +16923,11 @@ export declare type ConfluenceSubCalendarWatchingStatus = {
|
|
|
16628
16923
|
watched: Scalars['Boolean']['output'];
|
|
16629
16924
|
watchedViaContent: Scalars['Boolean']['output'];
|
|
16630
16925
|
};
|
|
16926
|
+
export declare type ConfluenceSubjectCustomContentPermissionDelta = {
|
|
16927
|
+
permissionsToAdd: Array<InputMaybe<ConfluenceCustomContentPermissionInput>>;
|
|
16928
|
+
permissionsToRemove: Array<InputMaybe<ConfluenceCustomContentPermissionInput>>;
|
|
16929
|
+
principal: ConfluenceCustomContentPrincipalInput;
|
|
16930
|
+
};
|
|
16631
16931
|
export declare enum ConfluenceSubscriptionContentType {
|
|
16632
16932
|
Blogpost = "BLOGPOST",
|
|
16633
16933
|
Comment = "COMMENT",
|
|
@@ -16799,6 +17099,15 @@ export declare type ConfluenceUnpromotePageTemplatePayload = Payload & {
|
|
|
16799
17099
|
errors?: Maybe<Array<MutationError>>;
|
|
16800
17100
|
success: Scalars['Boolean']['output'];
|
|
16801
17101
|
};
|
|
17102
|
+
export declare type ConfluenceUnschedulePublishInput = {
|
|
17103
|
+
contentId: Scalars['String']['input'];
|
|
17104
|
+
};
|
|
17105
|
+
export declare type ConfluenceUnschedulePublishPayload = {
|
|
17106
|
+
__typename?: 'ConfluenceUnschedulePublishPayload';
|
|
17107
|
+
contentId: Scalars['String']['output'];
|
|
17108
|
+
errors?: Maybe<Array<MutationError>>;
|
|
17109
|
+
success: Scalars['Boolean']['output'];
|
|
17110
|
+
};
|
|
16802
17111
|
export declare type ConfluenceUnusedPluginMacro = {
|
|
16803
17112
|
__typename?: 'ConfluenceUnusedPluginMacro';
|
|
16804
17113
|
macroNames?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
|
|
@@ -16825,6 +17134,17 @@ export declare type ConfluenceUpdateAdminAnnouncementBannerInput = {
|
|
|
16825
17134
|
title?: InputMaybe<Scalars['String']['input']>;
|
|
16826
17135
|
visibility?: InputMaybe<ConfluenceAdminAnnouncementBannerVisibilityType>;
|
|
16827
17136
|
};
|
|
17137
|
+
export declare type ConfluenceUpdateAnswerInput = {
|
|
17138
|
+
body?: InputMaybe<ConfluenceContentBodyInput>;
|
|
17139
|
+
id: Scalars['ID']['input'];
|
|
17140
|
+
version: Scalars['Int']['input'];
|
|
17141
|
+
};
|
|
17142
|
+
export declare type ConfluenceUpdateAnswerPayload = Payload & {
|
|
17143
|
+
__typename?: 'ConfluenceUpdateAnswerPayload';
|
|
17144
|
+
answer?: Maybe<ConfluenceAnswer>;
|
|
17145
|
+
errors?: Maybe<Array<MutationError>>;
|
|
17146
|
+
success: Scalars['Boolean']['output'];
|
|
17147
|
+
};
|
|
16828
17148
|
export declare type ConfluenceUpdateCalendarViewInput = {
|
|
16829
17149
|
view: Scalars['String']['input'];
|
|
16830
17150
|
};
|
|
@@ -16898,6 +17218,24 @@ export declare type ConfluenceUpdateCustomApplicationLinkPayload = Payload & {
|
|
|
16898
17218
|
errors?: Maybe<Array<MutationError>>;
|
|
16899
17219
|
success: Scalars['Boolean']['output'];
|
|
16900
17220
|
};
|
|
17221
|
+
export declare type ConfluenceUpdateCustomContentPermissionsInput = {
|
|
17222
|
+
spaceId: Scalars['Long']['input'];
|
|
17223
|
+
subjectPermissionDeltasList: Array<InputMaybe<ConfluenceSubjectCustomContentPermissionDelta>>;
|
|
17224
|
+
};
|
|
17225
|
+
export declare type ConfluenceUpdateCustomContentPermissionsMutationErrorExtension = MutationErrorExtension & {
|
|
17226
|
+
__typename?: 'ConfluenceUpdateCustomContentPermissionsMutationErrorExtension';
|
|
17227
|
+
errorType?: Maybe<Scalars['String']['output']>;
|
|
17228
|
+
permissionType?: Maybe<Scalars['String']['output']>;
|
|
17229
|
+
spaceId?: Maybe<Scalars['Long']['output']>;
|
|
17230
|
+
statusCode?: Maybe<Scalars['Int']['output']>;
|
|
17231
|
+
subjectId?: Maybe<Scalars['String']['output']>;
|
|
17232
|
+
};
|
|
17233
|
+
export declare type ConfluenceUpdateCustomContentPermissionsPayload = Payload & {
|
|
17234
|
+
__typename?: 'ConfluenceUpdateCustomContentPermissionsPayload';
|
|
17235
|
+
errors?: Maybe<Array<MutationError>>;
|
|
17236
|
+
spaceId: Scalars['Long']['output'];
|
|
17237
|
+
success: Scalars['Boolean']['output'];
|
|
17238
|
+
};
|
|
16901
17239
|
export declare type ConfluenceUpdateCustomPageConfigurationInput = {
|
|
16902
17240
|
footerText: Scalars['String']['input'];
|
|
16903
17241
|
headerText: Scalars['String']['input'];
|
|
@@ -17002,6 +17340,14 @@ export declare type ConfluenceUpdateIndexingLanguageConfigurationPayload = Paylo
|
|
|
17002
17340
|
errors?: Maybe<Array<MutationError>>;
|
|
17003
17341
|
success: Scalars['Boolean']['output'];
|
|
17004
17342
|
};
|
|
17343
|
+
export declare type ConfluenceUpdateLoomEntryPointsConfigurationInput = {
|
|
17344
|
+
isEnabled: Scalars['Boolean']['input'];
|
|
17345
|
+
};
|
|
17346
|
+
export declare type ConfluenceUpdateLoomEntryPointsConfigurationPayload = Payload & {
|
|
17347
|
+
__typename?: 'ConfluenceUpdateLoomEntryPointsConfigurationPayload';
|
|
17348
|
+
errors?: Maybe<Array<MutationError>>;
|
|
17349
|
+
success: Scalars['Boolean']['output'];
|
|
17350
|
+
};
|
|
17005
17351
|
export declare type ConfluenceUpdateNav4OptInInput = {
|
|
17006
17352
|
enableNav4: Scalars['Boolean']['input'];
|
|
17007
17353
|
};
|
|
@@ -17038,6 +17384,19 @@ export declare type ConfluenceUpdatePdfExportSpaceConfigurationInput = {
|
|
|
17038
17384
|
style: Scalars['String']['input'];
|
|
17039
17385
|
titlePage: Scalars['String']['input'];
|
|
17040
17386
|
};
|
|
17387
|
+
export declare type ConfluenceUpdateQuestionInput = {
|
|
17388
|
+
body?: InputMaybe<ConfluenceContentBodyInput>;
|
|
17389
|
+
id: Scalars['ID']['input'];
|
|
17390
|
+
labels?: InputMaybe<Array<InputMaybe<LabelInput>>>;
|
|
17391
|
+
title?: InputMaybe<Scalars['String']['input']>;
|
|
17392
|
+
version: Scalars['Int']['input'];
|
|
17393
|
+
};
|
|
17394
|
+
export declare type ConfluenceUpdateQuestionPayload = Payload & {
|
|
17395
|
+
__typename?: 'ConfluenceUpdateQuestionPayload';
|
|
17396
|
+
errors?: Maybe<Array<MutationError>>;
|
|
17397
|
+
question?: Maybe<ConfluenceQuestion>;
|
|
17398
|
+
success: Scalars['Boolean']['output'];
|
|
17399
|
+
};
|
|
17041
17400
|
export declare type ConfluenceUpdateSiteConfigurationInput = {
|
|
17042
17401
|
connectionTimeout: Scalars['Int']['input'];
|
|
17043
17402
|
customContactMessage: Scalars['String']['input'];
|
|
@@ -17062,6 +17421,13 @@ export declare type ConfluenceUpdateSiteConfigurationInput = {
|
|
|
17062
17421
|
socketTimeout: Scalars['Int']['input'];
|
|
17063
17422
|
timeFormat: Scalars['String']['input'];
|
|
17064
17423
|
};
|
|
17424
|
+
export declare type ConfluenceUpdateSiteConfigurationMutationErrorExtension = MutationErrorExtension & {
|
|
17425
|
+
__typename?: 'ConfluenceUpdateSiteConfigurationMutationErrorExtension';
|
|
17426
|
+
errorType?: Maybe<Scalars['String']['output']>;
|
|
17427
|
+
groupName?: Maybe<Scalars['String']['output']>;
|
|
17428
|
+
spaceName?: Maybe<Scalars['String']['output']>;
|
|
17429
|
+
statusCode?: Maybe<Scalars['Int']['output']>;
|
|
17430
|
+
};
|
|
17065
17431
|
export declare type ConfluenceUpdateSiteConfigurationPayload = Payload & {
|
|
17066
17432
|
__typename?: 'ConfluenceUpdateSiteConfigurationPayload';
|
|
17067
17433
|
errors?: Maybe<Array<MutationError>>;
|
|
@@ -17146,6 +17512,26 @@ export declare type ConfluenceUpdateSubCalendarHiddenEventsPayload = Payload & {
|
|
|
17146
17512
|
subCalendarIds?: Maybe<Array<Maybe<Scalars['ID']['output']>>>;
|
|
17147
17513
|
success: Scalars['Boolean']['output'];
|
|
17148
17514
|
};
|
|
17515
|
+
export declare type ConfluenceUpdateTeamCalendarGlobalSettingsInput = {
|
|
17516
|
+
allowSiteAdmin: Scalars['Boolean']['input'];
|
|
17517
|
+
disablePrivateUrls: Scalars['Boolean']['input'];
|
|
17518
|
+
displayWeekNumbers: Scalars['Boolean']['input'];
|
|
17519
|
+
startDayOfWeek: ConfluenceTeamCalendarWeekValues;
|
|
17520
|
+
timeFormat: ConfluenceTeamCalendarTimeFormatTypes;
|
|
17521
|
+
};
|
|
17522
|
+
export declare type ConfluenceUpdateTeamCalendarGlobalSettingsPayload = {
|
|
17523
|
+
__typename?: 'ConfluenceUpdateTeamCalendarGlobalSettingsPayload';
|
|
17524
|
+
errors?: Maybe<Array<MutationError>>;
|
|
17525
|
+
success: Scalars['Boolean']['output'];
|
|
17526
|
+
};
|
|
17527
|
+
export declare type ConfluenceUpdateTeamPresenceSiteConfigurationInput = {
|
|
17528
|
+
isEnabledOnContentView: Scalars['Boolean']['input'];
|
|
17529
|
+
};
|
|
17530
|
+
export declare type ConfluenceUpdateTeamPresenceSiteConfigurationPayload = Payload & {
|
|
17531
|
+
__typename?: 'ConfluenceUpdateTeamPresenceSiteConfigurationPayload';
|
|
17532
|
+
errors?: Maybe<Array<MutationError>>;
|
|
17533
|
+
success: Scalars['Boolean']['output'];
|
|
17534
|
+
};
|
|
17149
17535
|
export declare type ConfluenceUpdateTeamPresenceSpaceSettingsInput = {
|
|
17150
17536
|
isEnabledOnContentView: Scalars['Boolean']['input'];
|
|
17151
17537
|
spaceId: Scalars['Long']['input'];
|
|
@@ -17191,6 +17577,25 @@ export declare type ConfluenceUpdateValuePagePropertyPayload = Payload & {
|
|
|
17191
17577
|
pageProperty?: Maybe<ConfluencePageProperty>;
|
|
17192
17578
|
success: Scalars['Boolean']['output'];
|
|
17193
17579
|
};
|
|
17580
|
+
export declare type ConfluenceUpdateVoteInput = {
|
|
17581
|
+
contentId: Scalars['ID']['input'];
|
|
17582
|
+
userId: Scalars['ID']['input'];
|
|
17583
|
+
voteType: ConfluenceVoteType;
|
|
17584
|
+
};
|
|
17585
|
+
export declare type ConfluenceUpdateVotePayload = Payload & {
|
|
17586
|
+
__typename?: 'ConfluenceUpdateVotePayload';
|
|
17587
|
+
errors?: Maybe<Array<MutationError>>;
|
|
17588
|
+
success: Scalars['Boolean']['output'];
|
|
17589
|
+
vote?: Maybe<ConfluenceVote>;
|
|
17590
|
+
};
|
|
17591
|
+
export declare type ConfluenceUploadDefaultSpaceLogoInput = {
|
|
17592
|
+
fileStoreId: Scalars['ID']['input'];
|
|
17593
|
+
};
|
|
17594
|
+
export declare type ConfluenceUploadDefaultSpaceLogoPayload = Payload & {
|
|
17595
|
+
__typename?: 'ConfluenceUploadDefaultSpaceLogoPayload';
|
|
17596
|
+
errors?: Maybe<Array<MutationError>>;
|
|
17597
|
+
success: Scalars['Boolean']['output'];
|
|
17598
|
+
};
|
|
17194
17599
|
export declare type ConfluenceUsedPluginMacro = {
|
|
17195
17600
|
__typename?: 'ConfluenceUsedPluginMacro';
|
|
17196
17601
|
macros?: Maybe<Array<ConfluenceMacro>>;
|
|
@@ -17268,6 +17673,21 @@ export declare enum ConfluenceViewState {
|
|
|
17268
17673
|
Live = "LIVE",
|
|
17269
17674
|
Renderer = "RENDERER"
|
|
17270
17675
|
}
|
|
17676
|
+
export declare type ConfluenceVote = {
|
|
17677
|
+
__typename?: 'ConfluenceVote';
|
|
17678
|
+
contentId: Scalars['ID']['output'];
|
|
17679
|
+
userId: Scalars['ID']['output'];
|
|
17680
|
+
voteType: ConfluenceVoteType;
|
|
17681
|
+
};
|
|
17682
|
+
export declare type ConfluenceVotePropertyValue = {
|
|
17683
|
+
__typename?: 'ConfluenceVotePropertyValue';
|
|
17684
|
+
total: Scalars['Int']['output'];
|
|
17685
|
+
voteType: Scalars['String']['output'];
|
|
17686
|
+
};
|
|
17687
|
+
export declare enum ConfluenceVoteType {
|
|
17688
|
+
Downvote = "DOWNVOTE",
|
|
17689
|
+
Upvote = "UPVOTE"
|
|
17690
|
+
}
|
|
17271
17691
|
export declare type ConfluenceWacTemplate = {
|
|
17272
17692
|
__typename?: 'ConfluenceWacTemplate';
|
|
17273
17693
|
templateId?: Maybe<Scalars['String']['output']>;
|
|
@@ -19748,10 +20168,8 @@ export declare type CplsContributorWorkConnection = HasPageInfo & {
|
|
|
19748
20168
|
export declare type CplsContributorWorkEdge = {
|
|
19749
20169
|
__typename?: 'CplsContributorWorkEdge';
|
|
19750
20170
|
contributions: Array<CplsContribution>;
|
|
19751
|
-
contributorId: Scalars['ID']['output'];
|
|
19752
20171
|
cursor: Scalars['String']['output'];
|
|
19753
|
-
|
|
19754
|
-
workId: Scalars['ID']['output'];
|
|
20172
|
+
node?: Maybe<CplsWorkData>;
|
|
19755
20173
|
};
|
|
19756
20174
|
export declare type CplsCustomContributionTarget = {
|
|
19757
20175
|
__typename?: 'CplsCustomContributionTarget';
|
|
@@ -20679,6 +21097,17 @@ export declare type CsmAiAuthoredCoachingContentInput = {
|
|
|
20679
21097
|
triggerBehaviorByCoach?: InputMaybe<Scalars['String']['input']>;
|
|
20680
21098
|
triggerConditionByCoach?: InputMaybe<Scalars['String']['input']>;
|
|
20681
21099
|
};
|
|
21100
|
+
export declare type CsmAiByodContent = {
|
|
21101
|
+
__typename?: 'CsmAiByodContent';
|
|
21102
|
+
datasourceId: Scalars['String']['output'];
|
|
21103
|
+
workspaceName: Scalars['String']['output'];
|
|
21104
|
+
workspaceUrl: Scalars['String']['output'];
|
|
21105
|
+
};
|
|
21106
|
+
export declare type CsmAiByodContents = {
|
|
21107
|
+
__typename?: 'CsmAiByodContents';
|
|
21108
|
+
contents: Array<Maybe<CsmAiByodContent>>;
|
|
21109
|
+
};
|
|
21110
|
+
export declare type CsmAiByodContentsResult = CsmAiByodContents | QueryError;
|
|
20682
21111
|
export declare type CsmAiCoachingContentResult = CsmAiAgentCoachingContent | QueryError;
|
|
20683
21112
|
export declare type CsmAiConfluenceKnowledgeFilter = {
|
|
20684
21113
|
__typename?: 'CsmAiConfluenceKnowledgeFilter';
|
|
@@ -21159,7 +21588,7 @@ export declare enum CustomUserFieldInputComparators {
|
|
|
21159
21588
|
IsSet = "IS_SET",
|
|
21160
21589
|
NotSet = "NOT_SET"
|
|
21161
21590
|
}
|
|
21162
|
-
export declare type Customer360Customer = {
|
|
21591
|
+
export declare type Customer360Customer = Node & {
|
|
21163
21592
|
__typename?: 'Customer360Customer';
|
|
21164
21593
|
churnRisk?: Maybe<Scalars['String']['output']>;
|
|
21165
21594
|
countryName?: Maybe<Scalars['String']['output']>;
|
|
@@ -21332,7 +21761,6 @@ export declare type CustomerServiceBrandingTileInput = {
|
|
|
21332
21761
|
export declare type CustomerServiceBrandingUpsertInput = {
|
|
21333
21762
|
colors?: InputMaybe<CustomerServiceBrandingColorsInput>;
|
|
21334
21763
|
entityType: CustomerServiceBrandingEntityType;
|
|
21335
|
-
helpCenterId: Scalars['ID']['input'];
|
|
21336
21764
|
icon?: InputMaybe<CustomerServiceBrandingIconInput>;
|
|
21337
21765
|
logo?: InputMaybe<CustomerServiceBrandingLogoInput>;
|
|
21338
21766
|
tile?: InputMaybe<CustomerServiceBrandingTileInput>;
|
|
@@ -21816,6 +22244,7 @@ export declare type CustomerServiceMutationApiUpdateTemplateFormArgs = {
|
|
|
21816
22244
|
templateFormId: Scalars['ID']['input'];
|
|
21817
22245
|
};
|
|
21818
22246
|
export declare type CustomerServiceMutationApiUpsertBrandingArgs = {
|
|
22247
|
+
helpCenterId: Scalars['ID']['input'];
|
|
21819
22248
|
input: CustomerServiceBrandingUpsertInput;
|
|
21820
22249
|
};
|
|
21821
22250
|
export declare type CustomerServiceNote = {
|
|
@@ -23501,6 +23930,9 @@ export declare type DevAiRovoDevSession = Node & {
|
|
|
23501
23930
|
updatedAt?: Maybe<Scalars['DateTime']['output']>;
|
|
23502
23931
|
workspaceAri?: Maybe<Scalars['ID']['output']>;
|
|
23503
23932
|
};
|
|
23933
|
+
export declare type DevAiRovoDevSessionEditorPathArgs = {
|
|
23934
|
+
keepAlive?: InputMaybe<Scalars['Boolean']['input']>;
|
|
23935
|
+
};
|
|
23504
23936
|
export declare enum DevAiRovoDevSessionArchivedFilter {
|
|
23505
23937
|
All = "ALL",
|
|
23506
23938
|
ArchivedOnly = "ARCHIVED_ONLY",
|
|
@@ -24361,7 +24793,9 @@ export declare enum DevOpsMetricsCycleTimePhase {
|
|
|
24361
24793
|
}
|
|
24362
24794
|
export declare type DevOpsMetricsDailyReviewTimeData = {
|
|
24363
24795
|
__typename?: 'DevOpsMetricsDailyReviewTimeData';
|
|
24796
|
+
avgReviewTimeSeconds?: Maybe<Scalars['Float']['output']>;
|
|
24364
24797
|
medianReviewTimeSeconds?: Maybe<Scalars['Float']['output']>;
|
|
24798
|
+
p90ReviewTimeSeconds?: Maybe<Scalars['Float']['output']>;
|
|
24365
24799
|
};
|
|
24366
24800
|
export declare type DevOpsMetricsDeploymentFrequency = {
|
|
24367
24801
|
__typename?: 'DevOpsMetricsDeploymentFrequency';
|
|
@@ -24461,15 +24895,24 @@ export declare enum DevOpsMetricsPerPrCycleTimeBreakdownPhase {
|
|
|
24461
24895
|
}
|
|
24462
24896
|
export declare type DevOpsMetricsPerPrCycleTimeBreakdownPhaseMetrics = {
|
|
24463
24897
|
__typename?: 'DevOpsMetricsPerPRCycleTimeBreakdownPhaseMetrics';
|
|
24898
|
+
avgHistoricalPRCyclePhaseTime?: Maybe<Scalars['Float']['output']>;
|
|
24899
|
+
avgPRCyclePhaseTime?: Maybe<Scalars['Float']['output']>;
|
|
24464
24900
|
insights?: Maybe<Array<DevOpsMetricsCycleTimeInsight>>;
|
|
24465
24901
|
medianHistoricalPRCyclePhaseTime?: Maybe<Scalars['Float']['output']>;
|
|
24466
24902
|
medianPRCyclePhaseTime?: Maybe<Scalars['Float']['output']>;
|
|
24903
|
+
p90HistoricalPRCyclePhaseTime?: Maybe<Scalars['Float']['output']>;
|
|
24904
|
+
p90PRCyclePhaseTime?: Maybe<Scalars['Float']['output']>;
|
|
24467
24905
|
phase?: Maybe<DevOpsMetricsPerPrCycleTimeBreakdownPhase>;
|
|
24468
24906
|
};
|
|
24469
24907
|
export declare type DevOpsMetricsPerProjectPrCycleTimeMetrics = {
|
|
24470
24908
|
__typename?: 'DevOpsMetricsPerProjectPRCycleTimeMetrics';
|
|
24909
|
+
avgHistoricalPRCycleTime?: Maybe<Scalars['Float']['output']>;
|
|
24910
|
+
avgPRCycleTime?: Maybe<Scalars['Float']['output']>;
|
|
24911
|
+
datapoints: Array<Maybe<DevOpsMetricsDailyReviewTimeData>>;
|
|
24471
24912
|
medianHistoricalPRCycleTime: Scalars['Float']['output'];
|
|
24472
24913
|
medianPRCycleTime: Scalars['Float']['output'];
|
|
24914
|
+
p90HistoricalPRCycleTime?: Maybe<Scalars['Float']['output']>;
|
|
24915
|
+
p90PRCycleTime?: Maybe<Scalars['Float']['output']>;
|
|
24473
24916
|
perDayPRMetrics: Array<Maybe<DevOpsMetricsDailyReviewTimeData>>;
|
|
24474
24917
|
};
|
|
24475
24918
|
export declare type DevOpsMetricsPerProjectPrCycleTimeMetricsConnection = {
|
|
@@ -25242,7 +25685,7 @@ export declare enum DocumentRepresentation {
|
|
|
25242
25685
|
export declare type DraftContentProperties = {
|
|
25243
25686
|
__typename?: 'DraftContentProperties';
|
|
25244
25687
|
coverPictureWidth?: Maybe<Scalars['String']['output']>;
|
|
25245
|
-
generatedBy?: Maybe<
|
|
25688
|
+
generatedBy?: Maybe<Scalars['String']['output']>;
|
|
25246
25689
|
};
|
|
25247
25690
|
export declare type DvcsBitbucketWorkspaceConnection = {
|
|
25248
25691
|
__typename?: 'DvcsBitbucketWorkspaceConnection';
|
|
@@ -29801,7 +30244,7 @@ export declare type GraphIncidentLinkedJswIssueRelationshipEdge = {
|
|
|
29801
30244
|
export declare type GraphIntegrationDirectoryFilterDimension = {
|
|
29802
30245
|
__typename?: 'GraphIntegrationDirectoryFilterDimension';
|
|
29803
30246
|
displayName: Scalars['String']['output'];
|
|
29804
|
-
iconUrl?: Maybe<Scalars['
|
|
30247
|
+
iconUrl?: Maybe<Scalars['String']['output']>;
|
|
29805
30248
|
id: Scalars['ID']['output'];
|
|
29806
30249
|
relevantFor?: Maybe<GraphIntegrationDirectoryItemType>;
|
|
29807
30250
|
};
|
|
@@ -29827,6 +30270,7 @@ export declare type GraphIntegrationDirectoryItemEdge = {
|
|
|
29827
30270
|
node?: Maybe<GraphIntegrationDirectoryItem>;
|
|
29828
30271
|
};
|
|
29829
30272
|
export declare enum GraphIntegrationDirectoryItemType {
|
|
30273
|
+
McpServer = "MCP_SERVER",
|
|
29830
30274
|
McpTool = "MCP_TOOL"
|
|
29831
30275
|
}
|
|
29832
30276
|
export declare type GraphIntegrationMcpAdminManagementMcpServerConnection = {
|
|
@@ -29846,7 +30290,7 @@ export declare type GraphIntegrationMcpAdminManagementMcpServerNode = {
|
|
|
29846
30290
|
baseUrl: Scalars['URL']['output'];
|
|
29847
30291
|
displayName: Scalars['String']['output'];
|
|
29848
30292
|
endpointPath?: Maybe<Scalars['String']['output']>;
|
|
29849
|
-
iconUrl?: Maybe<Scalars['
|
|
30293
|
+
iconUrl?: Maybe<Scalars['String']['output']>;
|
|
29850
30294
|
id: Scalars['ID']['output'];
|
|
29851
30295
|
serverType: GraphIntegrationMcpAdminManagementMcpServerType;
|
|
29852
30296
|
status: GraphIntegrationMcpAdminManagementMcpServerStatus;
|
|
@@ -29885,7 +30329,7 @@ export declare type GraphIntegrationMcpAdminManagementMcpToolNode = {
|
|
|
29885
30329
|
configuration?: Maybe<GraphIntegrationMcpAdminManagementMcpToolConfiguration>;
|
|
29886
30330
|
description?: Maybe<Scalars['String']['output']>;
|
|
29887
30331
|
displayName: Scalars['String']['output'];
|
|
29888
|
-
iconUrl?: Maybe<Scalars['
|
|
30332
|
+
iconUrl?: Maybe<Scalars['String']['output']>;
|
|
29889
30333
|
id: Scalars['ID']['output'];
|
|
29890
30334
|
mcpServer: GraphIntegrationMcpAdminManagementMcpServerNode;
|
|
29891
30335
|
name: Scalars['String']['output'];
|
|
@@ -29953,18 +30397,23 @@ export declare type GraphIntegrationMcpAdminManagementUpdateMcpToolConfiguration
|
|
|
29953
30397
|
export declare type GraphIntegrationMcpServer = {
|
|
29954
30398
|
__typename?: 'GraphIntegrationMcpServer';
|
|
29955
30399
|
displayName: Scalars['String']['output'];
|
|
29956
|
-
iconUrl?: Maybe<Scalars['
|
|
30400
|
+
iconUrl?: Maybe<Scalars['String']['output']>;
|
|
29957
30401
|
id: Scalars['ID']['output'];
|
|
29958
30402
|
};
|
|
29959
30403
|
export declare type GraphIntegrationMcpTool = {
|
|
29960
30404
|
__typename?: 'GraphIntegrationMcpTool';
|
|
29961
30405
|
description?: Maybe<Scalars['String']['output']>;
|
|
29962
30406
|
displayName: Scalars['String']['output'];
|
|
29963
|
-
iconUrl?: Maybe<Scalars['
|
|
30407
|
+
iconUrl?: Maybe<Scalars['String']['output']>;
|
|
29964
30408
|
id: Scalars['ID']['output'];
|
|
29965
30409
|
mcpServer: GraphIntegrationMcpServer;
|
|
29966
30410
|
name: Scalars['String']['output'];
|
|
30411
|
+
status?: Maybe<GraphIntegrationStatus>;
|
|
29967
30412
|
};
|
|
30413
|
+
export declare enum GraphIntegrationStatus {
|
|
30414
|
+
Disabled = "DISABLED",
|
|
30415
|
+
Enabled = "ENABLED"
|
|
30416
|
+
}
|
|
29968
30417
|
export declare type GraphIssueAssociatedDesignPayload = Payload & {
|
|
29969
30418
|
__typename?: 'GraphIssueAssociatedDesignPayload';
|
|
29970
30419
|
errors?: Maybe<Array<MutationError>>;
|
|
@@ -32876,6 +33325,8 @@ export declare type GraphStore = {
|
|
|
32876
33325
|
issueHasChangedPriorityInverse?: Maybe<GraphStoreSimplifiedIssueHasChangedPriorityInverseConnection>;
|
|
32877
33326
|
issueHasChangedStatus?: Maybe<GraphStoreSimplifiedIssueHasChangedStatusConnection>;
|
|
32878
33327
|
issueHasChangedStatusInverse?: Maybe<GraphStoreSimplifiedIssueHasChangedStatusInverseConnection>;
|
|
33328
|
+
issueHasComment?: Maybe<GraphStoreSimplifiedIssueHasCommentConnection>;
|
|
33329
|
+
issueHasCommentInverse?: Maybe<GraphStoreSimplifiedIssueHasCommentInverseConnection>;
|
|
32879
33330
|
issueMentionedInConversation?: Maybe<GraphStoreSimplifiedIssueMentionedInConversationConnection>;
|
|
32880
33331
|
issueMentionedInConversationInverse?: Maybe<GraphStoreSimplifiedIssueMentionedInConversationInverseConnection>;
|
|
32881
33332
|
issueMentionedInMessage?: Maybe<GraphStoreSimplifiedIssueMentionedInMessageConnection>;
|
|
@@ -33218,24 +33669,16 @@ export declare type GraphStore = {
|
|
|
33218
33669
|
userCreatedCalendarEventInverse?: Maybe<GraphStoreSimplifiedUserCreatedCalendarEventInverseConnection>;
|
|
33219
33670
|
userCreatedConfluenceBlogpost?: Maybe<GraphStoreSimplifiedUserCreatedConfluenceBlogpostConnection>;
|
|
33220
33671
|
userCreatedConfluenceBlogpostInverse?: Maybe<GraphStoreSimplifiedUserCreatedConfluenceBlogpostInverseConnection>;
|
|
33221
|
-
userCreatedConfluenceBlogpostKamino?: Maybe<GraphStoreSimplifiedUserCreatedConfluenceBlogpostKaminoConnection>;
|
|
33222
|
-
userCreatedConfluenceBlogpostKaminoInverse?: Maybe<GraphStoreSimplifiedUserCreatedConfluenceBlogpostKaminoInverseConnection>;
|
|
33223
33672
|
userCreatedConfluenceComment?: Maybe<GraphStoreSimplifiedUserCreatedConfluenceCommentConnection>;
|
|
33224
33673
|
userCreatedConfluenceCommentInverse?: Maybe<GraphStoreSimplifiedUserCreatedConfluenceCommentInverseConnection>;
|
|
33225
|
-
userCreatedConfluenceCommentKamino?: Maybe<GraphStoreSimplifiedUserCreatedConfluenceCommentKaminoConnection>;
|
|
33226
|
-
userCreatedConfluenceCommentKaminoInverse?: Maybe<GraphStoreSimplifiedUserCreatedConfluenceCommentKaminoInverseConnection>;
|
|
33227
33674
|
userCreatedConfluenceDatabase?: Maybe<GraphStoreSimplifiedUserCreatedConfluenceDatabaseConnection>;
|
|
33228
33675
|
userCreatedConfluenceDatabaseInverse?: Maybe<GraphStoreSimplifiedUserCreatedConfluenceDatabaseInverseConnection>;
|
|
33229
33676
|
userCreatedConfluenceEmbed?: Maybe<GraphStoreSimplifiedUserCreatedConfluenceEmbedConnection>;
|
|
33230
33677
|
userCreatedConfluenceEmbedInverse?: Maybe<GraphStoreSimplifiedUserCreatedConfluenceEmbedInverseConnection>;
|
|
33231
33678
|
userCreatedConfluencePage?: Maybe<GraphStoreSimplifiedUserCreatedConfluencePageConnection>;
|
|
33232
33679
|
userCreatedConfluencePageInverse?: Maybe<GraphStoreSimplifiedUserCreatedConfluencePageInverseConnection>;
|
|
33233
|
-
userCreatedConfluencePageKamino?: Maybe<GraphStoreSimplifiedUserCreatedConfluencePageKaminoConnection>;
|
|
33234
|
-
userCreatedConfluencePageKaminoInverse?: Maybe<GraphStoreSimplifiedUserCreatedConfluencePageKaminoInverseConnection>;
|
|
33235
33680
|
userCreatedConfluenceSpace?: Maybe<GraphStoreSimplifiedUserCreatedConfluenceSpaceConnection>;
|
|
33236
33681
|
userCreatedConfluenceSpaceInverse?: Maybe<GraphStoreSimplifiedUserCreatedConfluenceSpaceInverseConnection>;
|
|
33237
|
-
userCreatedConfluenceSpaceKamino?: Maybe<GraphStoreSimplifiedUserCreatedConfluenceSpaceKaminoConnection>;
|
|
33238
|
-
userCreatedConfluenceSpaceKaminoInverse?: Maybe<GraphStoreSimplifiedUserCreatedConfluenceSpaceKaminoInverseConnection>;
|
|
33239
33682
|
userCreatedConfluenceWhiteboard?: Maybe<GraphStoreSimplifiedUserCreatedConfluenceWhiteboardConnection>;
|
|
33240
33683
|
userCreatedConfluenceWhiteboardInverse?: Maybe<GraphStoreSimplifiedUserCreatedConfluenceWhiteboardInverseConnection>;
|
|
33241
33684
|
userCreatedDesign?: Maybe<GraphStoreSimplifiedUserCreatedDesignConnection>;
|
|
@@ -33348,8 +33791,6 @@ export declare type GraphStore = {
|
|
|
33348
33791
|
userUpdatedCommentInverse?: Maybe<GraphStoreSimplifiedUserUpdatedCommentInverseConnection>;
|
|
33349
33792
|
userUpdatedConfluenceBlogpost?: Maybe<GraphStoreSimplifiedUserUpdatedConfluenceBlogpostConnection>;
|
|
33350
33793
|
userUpdatedConfluenceBlogpostInverse?: Maybe<GraphStoreSimplifiedUserUpdatedConfluenceBlogpostInverseConnection>;
|
|
33351
|
-
userUpdatedConfluenceBlogpostKamino?: Maybe<GraphStoreSimplifiedUserUpdatedConfluenceBlogpostKaminoConnection>;
|
|
33352
|
-
userUpdatedConfluenceBlogpostKaminoInverse?: Maybe<GraphStoreSimplifiedUserUpdatedConfluenceBlogpostKaminoInverseConnection>;
|
|
33353
33794
|
userUpdatedConfluencePage?: Maybe<GraphStoreSimplifiedUserUpdatedConfluencePageConnection>;
|
|
33354
33795
|
userUpdatedConfluencePageInverse?: Maybe<GraphStoreSimplifiedUserUpdatedConfluencePageInverseConnection>;
|
|
33355
33796
|
userUpdatedConfluenceSpace?: Maybe<GraphStoreSimplifiedUserUpdatedConfluenceSpaceConnection>;
|
|
@@ -35055,6 +35496,20 @@ export declare type GraphStoreIssueHasChangedStatusInverseArgs = {
|
|
|
35055
35496
|
id: Scalars['ID']['input'];
|
|
35056
35497
|
sort?: InputMaybe<GraphStoreIssueHasChangedStatusSortInput>;
|
|
35057
35498
|
};
|
|
35499
|
+
export declare type GraphStoreIssueHasCommentArgs = {
|
|
35500
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
35501
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
35502
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
35503
|
+
id: Scalars['ID']['input'];
|
|
35504
|
+
sort?: InputMaybe<GraphStoreIssueHasCommentSortInput>;
|
|
35505
|
+
};
|
|
35506
|
+
export declare type GraphStoreIssueHasCommentInverseArgs = {
|
|
35507
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
35508
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
35509
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
35510
|
+
id: Scalars['ID']['input'];
|
|
35511
|
+
sort?: InputMaybe<GraphStoreIssueHasCommentSortInput>;
|
|
35512
|
+
};
|
|
35058
35513
|
export declare type GraphStoreIssueMentionedInConversationArgs = {
|
|
35059
35514
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
35060
35515
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -37327,20 +37782,6 @@ export declare type GraphStoreUserCreatedConfluenceBlogpostInverseArgs = {
|
|
|
37327
37782
|
id: Scalars['ID']['input'];
|
|
37328
37783
|
sort?: InputMaybe<GraphStoreUserCreatedConfluenceBlogpostSortInput>;
|
|
37329
37784
|
};
|
|
37330
|
-
export declare type GraphStoreUserCreatedConfluenceBlogpostKaminoArgs = {
|
|
37331
|
-
after?: InputMaybe<Scalars['String']['input']>;
|
|
37332
|
-
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
37333
|
-
first?: InputMaybe<Scalars['Int']['input']>;
|
|
37334
|
-
id: Scalars['ID']['input'];
|
|
37335
|
-
sort?: InputMaybe<GraphStoreUserCreatedConfluenceBlogpostKaminoSortInput>;
|
|
37336
|
-
};
|
|
37337
|
-
export declare type GraphStoreUserCreatedConfluenceBlogpostKaminoInverseArgs = {
|
|
37338
|
-
after?: InputMaybe<Scalars['String']['input']>;
|
|
37339
|
-
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
37340
|
-
first?: InputMaybe<Scalars['Int']['input']>;
|
|
37341
|
-
id: Scalars['ID']['input'];
|
|
37342
|
-
sort?: InputMaybe<GraphStoreUserCreatedConfluenceBlogpostKaminoSortInput>;
|
|
37343
|
-
};
|
|
37344
37785
|
export declare type GraphStoreUserCreatedConfluenceCommentArgs = {
|
|
37345
37786
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
37346
37787
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -37355,20 +37796,6 @@ export declare type GraphStoreUserCreatedConfluenceCommentInverseArgs = {
|
|
|
37355
37796
|
id: Scalars['ID']['input'];
|
|
37356
37797
|
sort?: InputMaybe<GraphStoreUserCreatedConfluenceCommentSortInput>;
|
|
37357
37798
|
};
|
|
37358
|
-
export declare type GraphStoreUserCreatedConfluenceCommentKaminoArgs = {
|
|
37359
|
-
after?: InputMaybe<Scalars['String']['input']>;
|
|
37360
|
-
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
37361
|
-
first?: InputMaybe<Scalars['Int']['input']>;
|
|
37362
|
-
id: Scalars['ID']['input'];
|
|
37363
|
-
sort?: InputMaybe<GraphStoreUserCreatedConfluenceCommentKaminoSortInput>;
|
|
37364
|
-
};
|
|
37365
|
-
export declare type GraphStoreUserCreatedConfluenceCommentKaminoInverseArgs = {
|
|
37366
|
-
after?: InputMaybe<Scalars['String']['input']>;
|
|
37367
|
-
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
37368
|
-
first?: InputMaybe<Scalars['Int']['input']>;
|
|
37369
|
-
id: Scalars['ID']['input'];
|
|
37370
|
-
sort?: InputMaybe<GraphStoreUserCreatedConfluenceCommentKaminoSortInput>;
|
|
37371
|
-
};
|
|
37372
37799
|
export declare type GraphStoreUserCreatedConfluenceDatabaseArgs = {
|
|
37373
37800
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
37374
37801
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -37411,20 +37838,6 @@ export declare type GraphStoreUserCreatedConfluencePageInverseArgs = {
|
|
|
37411
37838
|
id: Scalars['ID']['input'];
|
|
37412
37839
|
sort?: InputMaybe<GraphStoreUserCreatedConfluencePageSortInput>;
|
|
37413
37840
|
};
|
|
37414
|
-
export declare type GraphStoreUserCreatedConfluencePageKaminoArgs = {
|
|
37415
|
-
after?: InputMaybe<Scalars['String']['input']>;
|
|
37416
|
-
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
37417
|
-
first?: InputMaybe<Scalars['Int']['input']>;
|
|
37418
|
-
id: Scalars['ID']['input'];
|
|
37419
|
-
sort?: InputMaybe<GraphStoreUserCreatedConfluencePageKaminoSortInput>;
|
|
37420
|
-
};
|
|
37421
|
-
export declare type GraphStoreUserCreatedConfluencePageKaminoInverseArgs = {
|
|
37422
|
-
after?: InputMaybe<Scalars['String']['input']>;
|
|
37423
|
-
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
37424
|
-
first?: InputMaybe<Scalars['Int']['input']>;
|
|
37425
|
-
id: Scalars['ID']['input'];
|
|
37426
|
-
sort?: InputMaybe<GraphStoreUserCreatedConfluencePageKaminoSortInput>;
|
|
37427
|
-
};
|
|
37428
37841
|
export declare type GraphStoreUserCreatedConfluenceSpaceArgs = {
|
|
37429
37842
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
37430
37843
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -37439,20 +37852,6 @@ export declare type GraphStoreUserCreatedConfluenceSpaceInverseArgs = {
|
|
|
37439
37852
|
id: Scalars['ID']['input'];
|
|
37440
37853
|
sort?: InputMaybe<GraphStoreUserCreatedConfluenceSpaceSortInput>;
|
|
37441
37854
|
};
|
|
37442
|
-
export declare type GraphStoreUserCreatedConfluenceSpaceKaminoArgs = {
|
|
37443
|
-
after?: InputMaybe<Scalars['String']['input']>;
|
|
37444
|
-
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
37445
|
-
first?: InputMaybe<Scalars['Int']['input']>;
|
|
37446
|
-
id: Scalars['ID']['input'];
|
|
37447
|
-
sort?: InputMaybe<GraphStoreUserCreatedConfluenceSpaceKaminoSortInput>;
|
|
37448
|
-
};
|
|
37449
|
-
export declare type GraphStoreUserCreatedConfluenceSpaceKaminoInverseArgs = {
|
|
37450
|
-
after?: InputMaybe<Scalars['String']['input']>;
|
|
37451
|
-
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
37452
|
-
first?: InputMaybe<Scalars['Int']['input']>;
|
|
37453
|
-
id: Scalars['ID']['input'];
|
|
37454
|
-
sort?: InputMaybe<GraphStoreUserCreatedConfluenceSpaceKaminoSortInput>;
|
|
37455
|
-
};
|
|
37456
37855
|
export declare type GraphStoreUserCreatedConfluenceWhiteboardArgs = {
|
|
37457
37856
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
37458
37857
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -38239,20 +38638,6 @@ export declare type GraphStoreUserUpdatedConfluenceBlogpostInverseArgs = {
|
|
|
38239
38638
|
id: Scalars['ID']['input'];
|
|
38240
38639
|
sort?: InputMaybe<GraphStoreUserUpdatedConfluenceBlogpostSortInput>;
|
|
38241
38640
|
};
|
|
38242
|
-
export declare type GraphStoreUserUpdatedConfluenceBlogpostKaminoArgs = {
|
|
38243
|
-
after?: InputMaybe<Scalars['String']['input']>;
|
|
38244
|
-
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
38245
|
-
first?: InputMaybe<Scalars['Int']['input']>;
|
|
38246
|
-
id: Scalars['ID']['input'];
|
|
38247
|
-
sort?: InputMaybe<GraphStoreUserUpdatedConfluenceBlogpostKaminoSortInput>;
|
|
38248
|
-
};
|
|
38249
|
-
export declare type GraphStoreUserUpdatedConfluenceBlogpostKaminoInverseArgs = {
|
|
38250
|
-
after?: InputMaybe<Scalars['String']['input']>;
|
|
38251
|
-
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
38252
|
-
first?: InputMaybe<Scalars['Int']['input']>;
|
|
38253
|
-
id: Scalars['ID']['input'];
|
|
38254
|
-
sort?: InputMaybe<GraphStoreUserUpdatedConfluenceBlogpostKaminoSortInput>;
|
|
38255
|
-
};
|
|
38256
38641
|
export declare type GraphStoreUserUpdatedConfluencePageArgs = {
|
|
38257
38642
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
38258
38643
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -40655,7 +41040,7 @@ export declare type GraphStoreCypherQueryRowItemNode = {
|
|
|
40655
41040
|
data?: Maybe<GraphStoreCypherQueryRowItemNodeNodeUnion>;
|
|
40656
41041
|
id: Scalars['ID']['output'];
|
|
40657
41042
|
};
|
|
40658
|
-
export declare type GraphStoreCypherQueryRowItemNodeNodeUnion = AppUser | AtlassianAccountUser | BitbucketRepository | CompassComponent | CompassLinkNode | CompassScorecard | ConfluenceBlogPost | ConfluenceDatabase | ConfluenceEmbed | ConfluenceFolder | ConfluenceFooterComment | ConfluenceInlineComment | ConfluencePage | ConfluenceSpace | ConfluenceWhiteboard | CustomerUser | DeploymentSummary | DevOpsDesign | DevOpsDocument | DevOpsFeatureFlag | DevOpsOperationsComponentDetails | DevOpsOperationsIncidentDetails | DevOpsOperationsPostIncidentReviewDetails | DevOpsProjectDetails | DevOpsPullRequestDetails | DevOpsRepository | DevOpsSecurityVulnerabilityDetails | DevOpsService | ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | ExternalComment | ExternalCommit | ExternalConversation | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalFeatureFlag | ExternalMessage | ExternalOrganisation | ExternalPosition | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalVideo | ExternalVulnerability | ExternalWorkItem | ExternalWorker | IdentityGroup | JiraAlignAggProject | JiraAutodevJob | JiraBoard | JiraConfluenceRemoteIssueLink | JiraCustomRemoteIssueLink | JiraIssue | JiraIssueRemoteIssueLink | JiraPlatformComment | JiraPostIncidentReviewLink | JiraPriority | JiraProject | JiraServiceManagementComment | JiraSprint | JiraStatus | JiraVersion | JiraWebRemoteIssueLink | JiraWorklog | KnowledgeDiscoveryTopicByAri | LoomComment | LoomMeeting | LoomMeetingRecurrence | LoomSpace | LoomVideo | MercuryChangeProposal | MercuryFocusArea | OpsgenieTeam | RadarPosition | RadarWorker | SpfAsk | TeamV2 | ThirdPartySecurityContainer | ThirdPartyUser | TownsquareComment | TownsquareGoal | TownsquareGoalUpdate | TownsquareProject | TownsquareProjectUpdate;
|
|
41043
|
+
export declare type GraphStoreCypherQueryRowItemNodeNodeUnion = AppUser | AtlassianAccountUser | BitbucketRepository | CompassComponent | CompassLinkNode | CompassScorecard | ConfluenceBlogPost | ConfluenceDatabase | ConfluenceEmbed | ConfluenceFolder | ConfluenceFooterComment | ConfluenceInlineComment | ConfluencePage | ConfluenceSpace | ConfluenceWhiteboard | Customer360Customer | CustomerUser | DeploymentSummary | DevOpsDesign | DevOpsDocument | DevOpsFeatureFlag | DevOpsOperationsComponentDetails | DevOpsOperationsIncidentDetails | DevOpsOperationsPostIncidentReviewDetails | DevOpsProjectDetails | DevOpsPullRequestDetails | DevOpsRepository | DevOpsSecurityVulnerabilityDetails | DevOpsService | ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | ExternalComment | ExternalCommit | ExternalConversation | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalFeatureFlag | ExternalMessage | ExternalOrganisation | ExternalPosition | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalVideo | ExternalVulnerability | ExternalWorkItem | ExternalWorker | IdentityGroup | JiraAlignAggProject | JiraAutodevJob | JiraBoard | JiraConfluenceRemoteIssueLink | JiraCustomRemoteIssueLink | JiraIssue | JiraIssueRemoteIssueLink | JiraPlatformComment | JiraPostIncidentReviewLink | JiraPriority | JiraProject | JiraServiceManagementComment | JiraSprint | JiraStatus | JiraVersion | JiraWebRemoteIssueLink | JiraWorklog | KnowledgeDiscoveryTopicByAri | LoomComment | LoomMeeting | LoomMeetingRecurrence | LoomSpace | LoomVideo | MercuryChangeProposal | MercuryFocusArea | OpsgenieTeam | RadarPosition | RadarWorker | SpfAsk | TeamV2 | ThirdPartySecurityContainer | ThirdPartyUser | TownsquareComment | TownsquareGoal | TownsquareGoalUpdate | TownsquareProject | TownsquareProjectUpdate;
|
|
40659
41044
|
export declare type GraphStoreCypherQueryStringObject = {
|
|
40660
41045
|
__typename?: 'GraphStoreCypherQueryStringObject';
|
|
40661
41046
|
value: Scalars['String']['output'];
|
|
@@ -40665,13 +41050,13 @@ export declare type GraphStoreCypherQueryV2AriNode = {
|
|
|
40665
41050
|
data?: Maybe<GraphStoreCypherQueryV2AriNodeUnion>;
|
|
40666
41051
|
id: Scalars['ID']['output'];
|
|
40667
41052
|
};
|
|
40668
|
-
export declare type GraphStoreCypherQueryV2AriNodeUnion = AppUser | AtlassianAccountUser | BitbucketRepository | CompassComponent | CompassLinkNode | CompassScorecard | ConfluenceBlogPost | ConfluenceDatabase | ConfluenceEmbed | ConfluenceFolder | ConfluenceFooterComment | ConfluenceInlineComment | ConfluencePage | ConfluenceSpace | ConfluenceWhiteboard | CustomerUser | DeploymentSummary | DevOpsDesign | DevOpsDocument | DevOpsFeatureFlag | DevOpsOperationsComponentDetails | DevOpsOperationsIncidentDetails | DevOpsOperationsPostIncidentReviewDetails | DevOpsProjectDetails | DevOpsPullRequestDetails | DevOpsRepository | DevOpsSecurityVulnerabilityDetails | DevOpsService | ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | ExternalComment | ExternalCommit | ExternalConversation | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalFeatureFlag | ExternalMessage | ExternalOrganisation | ExternalPosition | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalVideo | ExternalVulnerability | ExternalWorkItem | ExternalWorker | IdentityGroup | JiraAlignAggProject | JiraAutodevJob | JiraBoard | JiraConfluenceRemoteIssueLink | JiraCustomRemoteIssueLink | JiraIssue | JiraIssueRemoteIssueLink | JiraPlatformComment | JiraPostIncidentReviewLink | JiraPriority | JiraProject | JiraServiceManagementComment | JiraSprint | JiraStatus | JiraVersion | JiraWebRemoteIssueLink | JiraWorklog | KnowledgeDiscoveryTopicByAri | LoomComment | LoomMeeting | LoomMeetingRecurrence | LoomSpace | LoomVideo | MercuryChangeProposal | MercuryFocusArea | OpsgenieTeam | RadarPosition | RadarWorker | SpfAsk | TeamV2 | ThirdPartySecurityContainer | ThirdPartyUser | TownsquareComment | TownsquareGoal | TownsquareGoalUpdate | TownsquareProject | TownsquareProjectUpdate;
|
|
41053
|
+
export declare type GraphStoreCypherQueryV2AriNodeUnion = AppUser | AtlassianAccountUser | BitbucketRepository | CompassComponent | CompassLinkNode | CompassScorecard | ConfluenceBlogPost | ConfluenceDatabase | ConfluenceEmbed | ConfluenceFolder | ConfluenceFooterComment | ConfluenceInlineComment | ConfluencePage | ConfluenceSpace | ConfluenceWhiteboard | Customer360Customer | CustomerUser | DeploymentSummary | DevOpsDesign | DevOpsDocument | DevOpsFeatureFlag | DevOpsOperationsComponentDetails | DevOpsOperationsIncidentDetails | DevOpsOperationsPostIncidentReviewDetails | DevOpsProjectDetails | DevOpsPullRequestDetails | DevOpsRepository | DevOpsSecurityVulnerabilityDetails | DevOpsService | ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | ExternalComment | ExternalCommit | ExternalConversation | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalFeatureFlag | ExternalMessage | ExternalOrganisation | ExternalPosition | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalVideo | ExternalVulnerability | ExternalWorkItem | ExternalWorker | IdentityGroup | JiraAlignAggProject | JiraAutodevJob | JiraBoard | JiraConfluenceRemoteIssueLink | JiraCustomRemoteIssueLink | JiraIssue | JiraIssueRemoteIssueLink | JiraPlatformComment | JiraPostIncidentReviewLink | JiraPriority | JiraProject | JiraServiceManagementComment | JiraSprint | JiraStatus | JiraVersion | JiraWebRemoteIssueLink | JiraWorklog | KnowledgeDiscoveryTopicByAri | LoomComment | LoomMeeting | LoomMeetingRecurrence | LoomSpace | LoomVideo | MercuryChangeProposal | MercuryFocusArea | OpsgenieTeam | RadarPosition | RadarWorker | SpfAsk | TeamV2 | ThirdPartySecurityContainer | ThirdPartyUser | TownsquareComment | TownsquareGoal | TownsquareGoalUpdate | TownsquareProject | TownsquareProjectUpdate;
|
|
40669
41054
|
export declare type GraphStoreCypherQueryV2BatchAriNode = {
|
|
40670
41055
|
__typename?: 'GraphStoreCypherQueryV2BatchAriNode';
|
|
40671
41056
|
data?: Maybe<GraphStoreCypherQueryV2BatchAriNodeUnion>;
|
|
40672
41057
|
id: Scalars['ID']['output'];
|
|
40673
41058
|
};
|
|
40674
|
-
export declare type GraphStoreCypherQueryV2BatchAriNodeUnion = AppUser | AtlassianAccountUser | BitbucketRepository | CompassComponent | CompassLinkNode | CompassScorecard | ConfluenceBlogPost | ConfluenceDatabase | ConfluenceEmbed | ConfluenceFolder | ConfluenceFooterComment | ConfluenceInlineComment | ConfluencePage | ConfluenceSpace | ConfluenceWhiteboard | CustomerUser | DeploymentSummary | DevOpsDesign | DevOpsDocument | DevOpsFeatureFlag | DevOpsOperationsComponentDetails | DevOpsOperationsIncidentDetails | DevOpsOperationsPostIncidentReviewDetails | DevOpsProjectDetails | DevOpsPullRequestDetails | DevOpsRepository | DevOpsSecurityVulnerabilityDetails | DevOpsService | ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | ExternalComment | ExternalCommit | ExternalConversation | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalFeatureFlag | ExternalMessage | ExternalOrganisation | ExternalPosition | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalVideo | ExternalVulnerability | ExternalWorkItem | ExternalWorker | IdentityGroup | JiraAlignAggProject | JiraAutodevJob | JiraBoard | JiraConfluenceRemoteIssueLink | JiraCustomRemoteIssueLink | JiraIssue | JiraIssueRemoteIssueLink | JiraPlatformComment | JiraPostIncidentReviewLink | JiraPriority | JiraProject | JiraServiceManagementComment | JiraSprint | JiraStatus | JiraVersion | JiraWebRemoteIssueLink | JiraWorklog | KnowledgeDiscoveryTopicByAri | LoomComment | LoomMeeting | LoomMeetingRecurrence | LoomSpace | LoomVideo | MercuryChangeProposal | MercuryFocusArea | OpsgenieTeam | RadarPosition | RadarWorker | SpfAsk | TeamV2 | ThirdPartySecurityContainer | ThirdPartyUser | TownsquareComment | TownsquareGoal | TownsquareGoalUpdate | TownsquareProject | TownsquareProjectUpdate;
|
|
41059
|
+
export declare type GraphStoreCypherQueryV2BatchAriNodeUnion = AppUser | AtlassianAccountUser | BitbucketRepository | CompassComponent | CompassLinkNode | CompassScorecard | ConfluenceBlogPost | ConfluenceDatabase | ConfluenceEmbed | ConfluenceFolder | ConfluenceFooterComment | ConfluenceInlineComment | ConfluencePage | ConfluenceSpace | ConfluenceWhiteboard | Customer360Customer | CustomerUser | DeploymentSummary | DevOpsDesign | DevOpsDocument | DevOpsFeatureFlag | DevOpsOperationsComponentDetails | DevOpsOperationsIncidentDetails | DevOpsOperationsPostIncidentReviewDetails | DevOpsProjectDetails | DevOpsPullRequestDetails | DevOpsRepository | DevOpsSecurityVulnerabilityDetails | DevOpsService | ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | ExternalComment | ExternalCommit | ExternalConversation | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalFeatureFlag | ExternalMessage | ExternalOrganisation | ExternalPosition | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalVideo | ExternalVulnerability | ExternalWorkItem | ExternalWorker | IdentityGroup | JiraAlignAggProject | JiraAutodevJob | JiraBoard | JiraConfluenceRemoteIssueLink | JiraCustomRemoteIssueLink | JiraIssue | JiraIssueRemoteIssueLink | JiraPlatformComment | JiraPostIncidentReviewLink | JiraPriority | JiraProject | JiraServiceManagementComment | JiraSprint | JiraStatus | JiraVersion | JiraWebRemoteIssueLink | JiraWorklog | KnowledgeDiscoveryTopicByAri | LoomComment | LoomMeeting | LoomMeetingRecurrence | LoomSpace | LoomVideo | MercuryChangeProposal | MercuryFocusArea | OpsgenieTeam | RadarPosition | RadarWorker | SpfAsk | TeamV2 | ThirdPartySecurityContainer | ThirdPartyUser | TownsquareComment | TownsquareGoal | TownsquareGoalUpdate | TownsquareProject | TownsquareProjectUpdate;
|
|
40675
41060
|
export declare type GraphStoreCypherQueryV2BatchBooleanObject = {
|
|
40676
41061
|
__typename?: 'GraphStoreCypherQueryV2BatchBooleanObject';
|
|
40677
41062
|
value: Scalars['Boolean']['output'];
|
|
@@ -40772,7 +41157,7 @@ export declare enum GraphStoreCypherQueryV2VersionEnum {
|
|
|
40772
41157
|
V2 = "V2",
|
|
40773
41158
|
V3 = "V3"
|
|
40774
41159
|
}
|
|
40775
|
-
export declare type GraphStoreCypherQueryValueItemUnion = AppUser | AtlassianAccountUser | BitbucketRepository | CompassComponent | CompassLinkNode | CompassScorecard | ConfluenceBlogPost | ConfluenceDatabase | ConfluenceEmbed | ConfluenceFolder | ConfluenceFooterComment | ConfluenceInlineComment | ConfluencePage | ConfluenceSpace | ConfluenceWhiteboard | CustomerUser | DeploymentSummary | DevOpsDesign | DevOpsDocument | DevOpsFeatureFlag | DevOpsOperationsComponentDetails | DevOpsOperationsIncidentDetails | DevOpsOperationsPostIncidentReviewDetails | DevOpsProjectDetails | DevOpsPullRequestDetails | DevOpsRepository | DevOpsSecurityVulnerabilityDetails | DevOpsService | ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | ExternalComment | ExternalCommit | ExternalConversation | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalFeatureFlag | ExternalMessage | ExternalOrganisation | ExternalPosition | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalVideo | ExternalVulnerability | ExternalWorkItem | ExternalWorker | IdentityGroup | JiraAlignAggProject | JiraAutodevJob | JiraBoard | JiraConfluenceRemoteIssueLink | JiraCustomRemoteIssueLink | JiraIssue | JiraIssueRemoteIssueLink | JiraPlatformComment | JiraPostIncidentReviewLink | JiraPriority | JiraProject | JiraServiceManagementComment | JiraSprint | JiraStatus | JiraVersion | JiraWebRemoteIssueLink | JiraWorklog | KnowledgeDiscoveryTopicByAri | LoomComment | LoomMeeting | LoomMeetingRecurrence | LoomSpace | LoomVideo | MercuryChangeProposal | MercuryFocusArea | OpsgenieTeam | RadarPosition | RadarWorker | SpfAsk | TeamV2 | ThirdPartySecurityContainer | ThirdPartyUser | TownsquareComment | TownsquareGoal | TownsquareGoalUpdate | TownsquareProject | TownsquareProjectUpdate;
|
|
41160
|
+
export declare type GraphStoreCypherQueryValueItemUnion = AppUser | AtlassianAccountUser | BitbucketRepository | CompassComponent | CompassLinkNode | CompassScorecard | ConfluenceBlogPost | ConfluenceDatabase | ConfluenceEmbed | ConfluenceFolder | ConfluenceFooterComment | ConfluenceInlineComment | ConfluencePage | ConfluenceSpace | ConfluenceWhiteboard | Customer360Customer | CustomerUser | DeploymentSummary | DevOpsDesign | DevOpsDocument | DevOpsFeatureFlag | DevOpsOperationsComponentDetails | DevOpsOperationsIncidentDetails | DevOpsOperationsPostIncidentReviewDetails | DevOpsProjectDetails | DevOpsPullRequestDetails | DevOpsRepository | DevOpsSecurityVulnerabilityDetails | DevOpsService | ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | ExternalComment | ExternalCommit | ExternalConversation | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalFeatureFlag | ExternalMessage | ExternalOrganisation | ExternalPosition | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalVideo | ExternalVulnerability | ExternalWorkItem | ExternalWorker | IdentityGroup | JiraAlignAggProject | JiraAutodevJob | JiraBoard | JiraConfluenceRemoteIssueLink | JiraCustomRemoteIssueLink | JiraIssue | JiraIssueRemoteIssueLink | JiraPlatformComment | JiraPostIncidentReviewLink | JiraPriority | JiraProject | JiraServiceManagementComment | JiraSprint | JiraStatus | JiraVersion | JiraWebRemoteIssueLink | JiraWorklog | KnowledgeDiscoveryTopicByAri | LoomComment | LoomMeeting | LoomMeetingRecurrence | LoomSpace | LoomVideo | MercuryChangeProposal | MercuryFocusArea | OpsgenieTeam | RadarPosition | RadarWorker | SpfAsk | TeamV2 | ThirdPartySecurityContainer | ThirdPartyUser | TownsquareComment | TownsquareGoal | TownsquareGoalUpdate | TownsquareProject | TownsquareProjectUpdate;
|
|
40776
41161
|
export declare type GraphStoreCypherQueryValueNode = {
|
|
40777
41162
|
__typename?: 'GraphStoreCypherQueryValueNode';
|
|
40778
41163
|
data?: Maybe<GraphStoreCypherQueryValueItemUnion>;
|
|
@@ -44828,6 +45213,9 @@ export declare type GraphStoreIssueHasChangedPrioritySortInput = {
|
|
|
44828
45213
|
export declare type GraphStoreIssueHasChangedStatusSortInput = {
|
|
44829
45214
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
44830
45215
|
};
|
|
45216
|
+
export declare type GraphStoreIssueHasCommentSortInput = {
|
|
45217
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
45218
|
+
};
|
|
44831
45219
|
export declare type GraphStoreIssueMentionedInConversationSortInput = {
|
|
44832
45220
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
44833
45221
|
};
|
|
@@ -48301,6 +48689,34 @@ export declare type GraphStoreSimplifiedIssueHasChangedStatusInverseEdge = {
|
|
|
48301
48689
|
};
|
|
48302
48690
|
export declare type GraphStoreSimplifiedIssueHasChangedStatusInverseUnion = JiraIssue;
|
|
48303
48691
|
export declare type GraphStoreSimplifiedIssueHasChangedStatusUnion = JiraStatus;
|
|
48692
|
+
export declare type GraphStoreSimplifiedIssueHasCommentConnection = HasPageInfo & {
|
|
48693
|
+
__typename?: 'GraphStoreSimplifiedIssueHasCommentConnection';
|
|
48694
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedIssueHasCommentEdge>>>;
|
|
48695
|
+
pageInfo: PageInfo;
|
|
48696
|
+
};
|
|
48697
|
+
export declare type GraphStoreSimplifiedIssueHasCommentEdge = {
|
|
48698
|
+
__typename?: 'GraphStoreSimplifiedIssueHasCommentEdge';
|
|
48699
|
+
createdAt: Scalars['DateTime']['output'];
|
|
48700
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
48701
|
+
id: Scalars['ID']['output'];
|
|
48702
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
48703
|
+
node?: Maybe<GraphStoreSimplifiedIssueHasCommentUnion>;
|
|
48704
|
+
};
|
|
48705
|
+
export declare type GraphStoreSimplifiedIssueHasCommentInverseConnection = HasPageInfo & {
|
|
48706
|
+
__typename?: 'GraphStoreSimplifiedIssueHasCommentInverseConnection';
|
|
48707
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedIssueHasCommentInverseEdge>>>;
|
|
48708
|
+
pageInfo: PageInfo;
|
|
48709
|
+
};
|
|
48710
|
+
export declare type GraphStoreSimplifiedIssueHasCommentInverseEdge = {
|
|
48711
|
+
__typename?: 'GraphStoreSimplifiedIssueHasCommentInverseEdge';
|
|
48712
|
+
createdAt: Scalars['DateTime']['output'];
|
|
48713
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
48714
|
+
id: Scalars['ID']['output'];
|
|
48715
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
48716
|
+
node?: Maybe<GraphStoreSimplifiedIssueHasCommentInverseUnion>;
|
|
48717
|
+
};
|
|
48718
|
+
export declare type GraphStoreSimplifiedIssueHasCommentInverseUnion = JiraIssue;
|
|
48719
|
+
export declare type GraphStoreSimplifiedIssueHasCommentUnion = JiraPlatformComment | JiraServiceManagementComment;
|
|
48304
48720
|
export declare type GraphStoreSimplifiedIssueMentionedInConversationConnection = HasPageInfo & {
|
|
48305
48721
|
__typename?: 'GraphStoreSimplifiedIssueMentionedInConversationConnection';
|
|
48306
48722
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedIssueMentionedInConversationEdge>>>;
|
|
@@ -51692,34 +52108,6 @@ export declare type GraphStoreSimplifiedUserCreatedConfluenceBlogpostInverseEdge
|
|
|
51692
52108
|
node?: Maybe<GraphStoreSimplifiedUserCreatedConfluenceBlogpostInverseUnion>;
|
|
51693
52109
|
};
|
|
51694
52110
|
export declare type GraphStoreSimplifiedUserCreatedConfluenceBlogpostInverseUnion = AppUser | AtlassianAccountUser | CustomerUser;
|
|
51695
|
-
export declare type GraphStoreSimplifiedUserCreatedConfluenceBlogpostKaminoConnection = HasPageInfo & {
|
|
51696
|
-
__typename?: 'GraphStoreSimplifiedUserCreatedConfluenceBlogpostKaminoConnection';
|
|
51697
|
-
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserCreatedConfluenceBlogpostKaminoEdge>>>;
|
|
51698
|
-
pageInfo: PageInfo;
|
|
51699
|
-
};
|
|
51700
|
-
export declare type GraphStoreSimplifiedUserCreatedConfluenceBlogpostKaminoEdge = {
|
|
51701
|
-
__typename?: 'GraphStoreSimplifiedUserCreatedConfluenceBlogpostKaminoEdge';
|
|
51702
|
-
createdAt: Scalars['DateTime']['output'];
|
|
51703
|
-
cursor?: Maybe<Scalars['String']['output']>;
|
|
51704
|
-
id: Scalars['ID']['output'];
|
|
51705
|
-
lastUpdated: Scalars['DateTime']['output'];
|
|
51706
|
-
node?: Maybe<GraphStoreSimplifiedUserCreatedConfluenceBlogpostKaminoUnion>;
|
|
51707
|
-
};
|
|
51708
|
-
export declare type GraphStoreSimplifiedUserCreatedConfluenceBlogpostKaminoInverseConnection = HasPageInfo & {
|
|
51709
|
-
__typename?: 'GraphStoreSimplifiedUserCreatedConfluenceBlogpostKaminoInverseConnection';
|
|
51710
|
-
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserCreatedConfluenceBlogpostKaminoInverseEdge>>>;
|
|
51711
|
-
pageInfo: PageInfo;
|
|
51712
|
-
};
|
|
51713
|
-
export declare type GraphStoreSimplifiedUserCreatedConfluenceBlogpostKaminoInverseEdge = {
|
|
51714
|
-
__typename?: 'GraphStoreSimplifiedUserCreatedConfluenceBlogpostKaminoInverseEdge';
|
|
51715
|
-
createdAt: Scalars['DateTime']['output'];
|
|
51716
|
-
cursor?: Maybe<Scalars['String']['output']>;
|
|
51717
|
-
id: Scalars['ID']['output'];
|
|
51718
|
-
lastUpdated: Scalars['DateTime']['output'];
|
|
51719
|
-
node?: Maybe<GraphStoreSimplifiedUserCreatedConfluenceBlogpostKaminoInverseUnion>;
|
|
51720
|
-
};
|
|
51721
|
-
export declare type GraphStoreSimplifiedUserCreatedConfluenceBlogpostKaminoInverseUnion = AppUser | AtlassianAccountUser | CustomerUser;
|
|
51722
|
-
export declare type GraphStoreSimplifiedUserCreatedConfluenceBlogpostKaminoUnion = ConfluenceBlogPost;
|
|
51723
52111
|
export declare type GraphStoreSimplifiedUserCreatedConfluenceBlogpostUnion = ConfluenceBlogPost;
|
|
51724
52112
|
export declare type GraphStoreSimplifiedUserCreatedConfluenceCommentConnection = HasPageInfo & {
|
|
51725
52113
|
__typename?: 'GraphStoreSimplifiedUserCreatedConfluenceCommentConnection';
|
|
@@ -51748,34 +52136,6 @@ export declare type GraphStoreSimplifiedUserCreatedConfluenceCommentInverseEdge
|
|
|
51748
52136
|
node?: Maybe<GraphStoreSimplifiedUserCreatedConfluenceCommentInverseUnion>;
|
|
51749
52137
|
};
|
|
51750
52138
|
export declare type GraphStoreSimplifiedUserCreatedConfluenceCommentInverseUnion = AppUser | AtlassianAccountUser | CustomerUser;
|
|
51751
|
-
export declare type GraphStoreSimplifiedUserCreatedConfluenceCommentKaminoConnection = HasPageInfo & {
|
|
51752
|
-
__typename?: 'GraphStoreSimplifiedUserCreatedConfluenceCommentKaminoConnection';
|
|
51753
|
-
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserCreatedConfluenceCommentKaminoEdge>>>;
|
|
51754
|
-
pageInfo: PageInfo;
|
|
51755
|
-
};
|
|
51756
|
-
export declare type GraphStoreSimplifiedUserCreatedConfluenceCommentKaminoEdge = {
|
|
51757
|
-
__typename?: 'GraphStoreSimplifiedUserCreatedConfluenceCommentKaminoEdge';
|
|
51758
|
-
createdAt: Scalars['DateTime']['output'];
|
|
51759
|
-
cursor?: Maybe<Scalars['String']['output']>;
|
|
51760
|
-
id: Scalars['ID']['output'];
|
|
51761
|
-
lastUpdated: Scalars['DateTime']['output'];
|
|
51762
|
-
node?: Maybe<GraphStoreSimplifiedUserCreatedConfluenceCommentKaminoUnion>;
|
|
51763
|
-
};
|
|
51764
|
-
export declare type GraphStoreSimplifiedUserCreatedConfluenceCommentKaminoInverseConnection = HasPageInfo & {
|
|
51765
|
-
__typename?: 'GraphStoreSimplifiedUserCreatedConfluenceCommentKaminoInverseConnection';
|
|
51766
|
-
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserCreatedConfluenceCommentKaminoInverseEdge>>>;
|
|
51767
|
-
pageInfo: PageInfo;
|
|
51768
|
-
};
|
|
51769
|
-
export declare type GraphStoreSimplifiedUserCreatedConfluenceCommentKaminoInverseEdge = {
|
|
51770
|
-
__typename?: 'GraphStoreSimplifiedUserCreatedConfluenceCommentKaminoInverseEdge';
|
|
51771
|
-
createdAt: Scalars['DateTime']['output'];
|
|
51772
|
-
cursor?: Maybe<Scalars['String']['output']>;
|
|
51773
|
-
id: Scalars['ID']['output'];
|
|
51774
|
-
lastUpdated: Scalars['DateTime']['output'];
|
|
51775
|
-
node?: Maybe<GraphStoreSimplifiedUserCreatedConfluenceCommentKaminoInverseUnion>;
|
|
51776
|
-
};
|
|
51777
|
-
export declare type GraphStoreSimplifiedUserCreatedConfluenceCommentKaminoInverseUnion = AppUser | AtlassianAccountUser | CustomerUser;
|
|
51778
|
-
export declare type GraphStoreSimplifiedUserCreatedConfluenceCommentKaminoUnion = ConfluenceFooterComment | ConfluenceInlineComment;
|
|
51779
52139
|
export declare type GraphStoreSimplifiedUserCreatedConfluenceCommentUnion = ConfluenceFooterComment | ConfluenceInlineComment;
|
|
51780
52140
|
export declare type GraphStoreSimplifiedUserCreatedConfluenceDatabaseConnection = HasPageInfo & {
|
|
51781
52141
|
__typename?: 'GraphStoreSimplifiedUserCreatedConfluenceDatabaseConnection';
|
|
@@ -51860,34 +52220,6 @@ export declare type GraphStoreSimplifiedUserCreatedConfluencePageInverseEdge = {
|
|
|
51860
52220
|
node?: Maybe<GraphStoreSimplifiedUserCreatedConfluencePageInverseUnion>;
|
|
51861
52221
|
};
|
|
51862
52222
|
export declare type GraphStoreSimplifiedUserCreatedConfluencePageInverseUnion = AppUser | AtlassianAccountUser | CustomerUser;
|
|
51863
|
-
export declare type GraphStoreSimplifiedUserCreatedConfluencePageKaminoConnection = HasPageInfo & {
|
|
51864
|
-
__typename?: 'GraphStoreSimplifiedUserCreatedConfluencePageKaminoConnection';
|
|
51865
|
-
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserCreatedConfluencePageKaminoEdge>>>;
|
|
51866
|
-
pageInfo: PageInfo;
|
|
51867
|
-
};
|
|
51868
|
-
export declare type GraphStoreSimplifiedUserCreatedConfluencePageKaminoEdge = {
|
|
51869
|
-
__typename?: 'GraphStoreSimplifiedUserCreatedConfluencePageKaminoEdge';
|
|
51870
|
-
createdAt: Scalars['DateTime']['output'];
|
|
51871
|
-
cursor?: Maybe<Scalars['String']['output']>;
|
|
51872
|
-
id: Scalars['ID']['output'];
|
|
51873
|
-
lastUpdated: Scalars['DateTime']['output'];
|
|
51874
|
-
node?: Maybe<GraphStoreSimplifiedUserCreatedConfluencePageKaminoUnion>;
|
|
51875
|
-
};
|
|
51876
|
-
export declare type GraphStoreSimplifiedUserCreatedConfluencePageKaminoInverseConnection = HasPageInfo & {
|
|
51877
|
-
__typename?: 'GraphStoreSimplifiedUserCreatedConfluencePageKaminoInverseConnection';
|
|
51878
|
-
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserCreatedConfluencePageKaminoInverseEdge>>>;
|
|
51879
|
-
pageInfo: PageInfo;
|
|
51880
|
-
};
|
|
51881
|
-
export declare type GraphStoreSimplifiedUserCreatedConfluencePageKaminoInverseEdge = {
|
|
51882
|
-
__typename?: 'GraphStoreSimplifiedUserCreatedConfluencePageKaminoInverseEdge';
|
|
51883
|
-
createdAt: Scalars['DateTime']['output'];
|
|
51884
|
-
cursor?: Maybe<Scalars['String']['output']>;
|
|
51885
|
-
id: Scalars['ID']['output'];
|
|
51886
|
-
lastUpdated: Scalars['DateTime']['output'];
|
|
51887
|
-
node?: Maybe<GraphStoreSimplifiedUserCreatedConfluencePageKaminoInverseUnion>;
|
|
51888
|
-
};
|
|
51889
|
-
export declare type GraphStoreSimplifiedUserCreatedConfluencePageKaminoInverseUnion = AppUser | AtlassianAccountUser | CustomerUser;
|
|
51890
|
-
export declare type GraphStoreSimplifiedUserCreatedConfluencePageKaminoUnion = ConfluencePage;
|
|
51891
52223
|
export declare type GraphStoreSimplifiedUserCreatedConfluencePageUnion = ConfluencePage;
|
|
51892
52224
|
export declare type GraphStoreSimplifiedUserCreatedConfluenceSpaceConnection = HasPageInfo & {
|
|
51893
52225
|
__typename?: 'GraphStoreSimplifiedUserCreatedConfluenceSpaceConnection';
|
|
@@ -51916,34 +52248,6 @@ export declare type GraphStoreSimplifiedUserCreatedConfluenceSpaceInverseEdge =
|
|
|
51916
52248
|
node?: Maybe<GraphStoreSimplifiedUserCreatedConfluenceSpaceInverseUnion>;
|
|
51917
52249
|
};
|
|
51918
52250
|
export declare type GraphStoreSimplifiedUserCreatedConfluenceSpaceInverseUnion = AppUser | AtlassianAccountUser | CustomerUser;
|
|
51919
|
-
export declare type GraphStoreSimplifiedUserCreatedConfluenceSpaceKaminoConnection = HasPageInfo & {
|
|
51920
|
-
__typename?: 'GraphStoreSimplifiedUserCreatedConfluenceSpaceKaminoConnection';
|
|
51921
|
-
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserCreatedConfluenceSpaceKaminoEdge>>>;
|
|
51922
|
-
pageInfo: PageInfo;
|
|
51923
|
-
};
|
|
51924
|
-
export declare type GraphStoreSimplifiedUserCreatedConfluenceSpaceKaminoEdge = {
|
|
51925
|
-
__typename?: 'GraphStoreSimplifiedUserCreatedConfluenceSpaceKaminoEdge';
|
|
51926
|
-
createdAt: Scalars['DateTime']['output'];
|
|
51927
|
-
cursor?: Maybe<Scalars['String']['output']>;
|
|
51928
|
-
id: Scalars['ID']['output'];
|
|
51929
|
-
lastUpdated: Scalars['DateTime']['output'];
|
|
51930
|
-
node?: Maybe<GraphStoreSimplifiedUserCreatedConfluenceSpaceKaminoUnion>;
|
|
51931
|
-
};
|
|
51932
|
-
export declare type GraphStoreSimplifiedUserCreatedConfluenceSpaceKaminoInverseConnection = HasPageInfo & {
|
|
51933
|
-
__typename?: 'GraphStoreSimplifiedUserCreatedConfluenceSpaceKaminoInverseConnection';
|
|
51934
|
-
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserCreatedConfluenceSpaceKaminoInverseEdge>>>;
|
|
51935
|
-
pageInfo: PageInfo;
|
|
51936
|
-
};
|
|
51937
|
-
export declare type GraphStoreSimplifiedUserCreatedConfluenceSpaceKaminoInverseEdge = {
|
|
51938
|
-
__typename?: 'GraphStoreSimplifiedUserCreatedConfluenceSpaceKaminoInverseEdge';
|
|
51939
|
-
createdAt: Scalars['DateTime']['output'];
|
|
51940
|
-
cursor?: Maybe<Scalars['String']['output']>;
|
|
51941
|
-
id: Scalars['ID']['output'];
|
|
51942
|
-
lastUpdated: Scalars['DateTime']['output'];
|
|
51943
|
-
node?: Maybe<GraphStoreSimplifiedUserCreatedConfluenceSpaceKaminoInverseUnion>;
|
|
51944
|
-
};
|
|
51945
|
-
export declare type GraphStoreSimplifiedUserCreatedConfluenceSpaceKaminoInverseUnion = AppUser | AtlassianAccountUser | CustomerUser;
|
|
51946
|
-
export declare type GraphStoreSimplifiedUserCreatedConfluenceSpaceKaminoUnion = ConfluenceSpace;
|
|
51947
52251
|
export declare type GraphStoreSimplifiedUserCreatedConfluenceSpaceUnion = ConfluenceSpace;
|
|
51948
52252
|
export declare type GraphStoreSimplifiedUserCreatedConfluenceWhiteboardConnection = HasPageInfo & {
|
|
51949
52253
|
__typename?: 'GraphStoreSimplifiedUserCreatedConfluenceWhiteboardConnection';
|
|
@@ -53500,34 +53804,6 @@ export declare type GraphStoreSimplifiedUserUpdatedConfluenceBlogpostInverseEdge
|
|
|
53500
53804
|
node?: Maybe<GraphStoreSimplifiedUserUpdatedConfluenceBlogpostInverseUnion>;
|
|
53501
53805
|
};
|
|
53502
53806
|
export declare type GraphStoreSimplifiedUserUpdatedConfluenceBlogpostInverseUnion = AppUser | AtlassianAccountUser | CustomerUser;
|
|
53503
|
-
export declare type GraphStoreSimplifiedUserUpdatedConfluenceBlogpostKaminoConnection = HasPageInfo & {
|
|
53504
|
-
__typename?: 'GraphStoreSimplifiedUserUpdatedConfluenceBlogpostKaminoConnection';
|
|
53505
|
-
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserUpdatedConfluenceBlogpostKaminoEdge>>>;
|
|
53506
|
-
pageInfo: PageInfo;
|
|
53507
|
-
};
|
|
53508
|
-
export declare type GraphStoreSimplifiedUserUpdatedConfluenceBlogpostKaminoEdge = {
|
|
53509
|
-
__typename?: 'GraphStoreSimplifiedUserUpdatedConfluenceBlogpostKaminoEdge';
|
|
53510
|
-
createdAt: Scalars['DateTime']['output'];
|
|
53511
|
-
cursor?: Maybe<Scalars['String']['output']>;
|
|
53512
|
-
id: Scalars['ID']['output'];
|
|
53513
|
-
lastUpdated: Scalars['DateTime']['output'];
|
|
53514
|
-
node?: Maybe<GraphStoreSimplifiedUserUpdatedConfluenceBlogpostKaminoUnion>;
|
|
53515
|
-
};
|
|
53516
|
-
export declare type GraphStoreSimplifiedUserUpdatedConfluenceBlogpostKaminoInverseConnection = HasPageInfo & {
|
|
53517
|
-
__typename?: 'GraphStoreSimplifiedUserUpdatedConfluenceBlogpostKaminoInverseConnection';
|
|
53518
|
-
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserUpdatedConfluenceBlogpostKaminoInverseEdge>>>;
|
|
53519
|
-
pageInfo: PageInfo;
|
|
53520
|
-
};
|
|
53521
|
-
export declare type GraphStoreSimplifiedUserUpdatedConfluenceBlogpostKaminoInverseEdge = {
|
|
53522
|
-
__typename?: 'GraphStoreSimplifiedUserUpdatedConfluenceBlogpostKaminoInverseEdge';
|
|
53523
|
-
createdAt: Scalars['DateTime']['output'];
|
|
53524
|
-
cursor?: Maybe<Scalars['String']['output']>;
|
|
53525
|
-
id: Scalars['ID']['output'];
|
|
53526
|
-
lastUpdated: Scalars['DateTime']['output'];
|
|
53527
|
-
node?: Maybe<GraphStoreSimplifiedUserUpdatedConfluenceBlogpostKaminoInverseUnion>;
|
|
53528
|
-
};
|
|
53529
|
-
export declare type GraphStoreSimplifiedUserUpdatedConfluenceBlogpostKaminoInverseUnion = AppUser | AtlassianAccountUser | CustomerUser;
|
|
53530
|
-
export declare type GraphStoreSimplifiedUserUpdatedConfluenceBlogpostKaminoUnion = ConfluenceBlogPost;
|
|
53531
53807
|
export declare type GraphStoreSimplifiedUserUpdatedConfluenceBlogpostUnion = ConfluenceBlogPost;
|
|
53532
53808
|
export declare type GraphStoreSimplifiedUserUpdatedConfluencePageConnection = HasPageInfo & {
|
|
53533
53809
|
__typename?: 'GraphStoreSimplifiedUserUpdatedConfluencePageConnection';
|
|
@@ -54837,15 +55113,9 @@ export declare type GraphStoreUserCreatedCalendarEventSortInput = {
|
|
|
54837
55113
|
to_eventEndTime?: InputMaybe<GraphStoreSortInput>;
|
|
54838
55114
|
to_eventStartTime?: InputMaybe<GraphStoreSortInput>;
|
|
54839
55115
|
};
|
|
54840
|
-
export declare type GraphStoreUserCreatedConfluenceBlogpostKaminoSortInput = {
|
|
54841
|
-
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
54842
|
-
};
|
|
54843
55116
|
export declare type GraphStoreUserCreatedConfluenceBlogpostSortInput = {
|
|
54844
55117
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
54845
55118
|
};
|
|
54846
|
-
export declare type GraphStoreUserCreatedConfluenceCommentKaminoSortInput = {
|
|
54847
|
-
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
54848
|
-
};
|
|
54849
55119
|
export declare type GraphStoreUserCreatedConfluenceCommentSortInput = {
|
|
54850
55120
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
54851
55121
|
};
|
|
@@ -54855,15 +55125,9 @@ export declare type GraphStoreUserCreatedConfluenceDatabaseSortInput = {
|
|
|
54855
55125
|
export declare type GraphStoreUserCreatedConfluenceEmbedSortInput = {
|
|
54856
55126
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
54857
55127
|
};
|
|
54858
|
-
export declare type GraphStoreUserCreatedConfluencePageKaminoSortInput = {
|
|
54859
|
-
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
54860
|
-
};
|
|
54861
55128
|
export declare type GraphStoreUserCreatedConfluencePageSortInput = {
|
|
54862
55129
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
54863
55130
|
};
|
|
54864
|
-
export declare type GraphStoreUserCreatedConfluenceSpaceKaminoSortInput = {
|
|
54865
|
-
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
54866
|
-
};
|
|
54867
55131
|
export declare type GraphStoreUserCreatedConfluenceSpaceSortInput = {
|
|
54868
55132
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
54869
55133
|
};
|
|
@@ -55069,9 +55333,6 @@ export declare type GraphStoreUserUpdatedAtlasProjectSortInput = {
|
|
|
55069
55333
|
export declare type GraphStoreUserUpdatedCommentSortInput = {
|
|
55070
55334
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
55071
55335
|
};
|
|
55072
|
-
export declare type GraphStoreUserUpdatedConfluenceBlogpostKaminoSortInput = {
|
|
55073
|
-
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
55074
|
-
};
|
|
55075
55336
|
export declare type GraphStoreUserUpdatedConfluenceBlogpostSortInput = {
|
|
55076
55337
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
55077
55338
|
};
|
|
@@ -58170,6 +58431,7 @@ export declare type InfluentsNotificationDocument = {
|
|
|
58170
58431
|
};
|
|
58171
58432
|
export declare type InfluentsNotificationEntity = {
|
|
58172
58433
|
__typename?: 'InfluentsNotificationEntity';
|
|
58434
|
+
contentSubtype?: Maybe<Scalars['String']['output']>;
|
|
58173
58435
|
iconUrl?: Maybe<Scalars['String']['output']>;
|
|
58174
58436
|
title?: Maybe<Scalars['String']['output']>;
|
|
58175
58437
|
url?: Maybe<Scalars['String']['output']>;
|
|
@@ -58194,6 +58456,7 @@ export declare type InfluentsNotificationFeedEdge = {
|
|
|
58194
58456
|
};
|
|
58195
58457
|
export declare type InfluentsNotificationFilter = {
|
|
58196
58458
|
categoryFilter?: InputMaybe<InfluentsNotificationCategory>;
|
|
58459
|
+
eventTypeFilter?: InputMaybe<Scalars['String']['input']>;
|
|
58197
58460
|
productFilter?: InputMaybe<Scalars['String']['input']>;
|
|
58198
58461
|
readStateFilter?: InputMaybe<InfluentsNotificationReadState>;
|
|
58199
58462
|
workspaceId?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -58642,6 +58905,9 @@ export declare enum InvitationUrlsStatus {
|
|
|
58642
58905
|
export declare type InvocationMetrics = {
|
|
58643
58906
|
__typename?: 'InvocationMetrics';
|
|
58644
58907
|
appExecutionRegion?: Maybe<Scalars['String']['output']>;
|
|
58908
|
+
appRuntimeDeprecated?: Maybe<Scalars['Boolean']['output']>;
|
|
58909
|
+
appRuntimeType?: Maybe<Scalars['String']['output']>;
|
|
58910
|
+
appRuntimeVersion?: Maybe<Scalars['String']['output']>;
|
|
58645
58911
|
appTimeMs?: Maybe<Scalars['Float']['output']>;
|
|
58646
58912
|
};
|
|
58647
58913
|
export declare type InvocationResponsePayload = {
|
|
@@ -59478,6 +59744,18 @@ export declare type JiraApplicationProperty = Node & {
|
|
|
59478
59744
|
type: Scalars['String']['output'];
|
|
59479
59745
|
value: Scalars['String']['output'];
|
|
59480
59746
|
};
|
|
59747
|
+
export declare type JiraApplySuggestionActionInput = {
|
|
59748
|
+
actionId: Scalars['String']['input'];
|
|
59749
|
+
cloudId: Scalars['ID']['input'];
|
|
59750
|
+
id: Scalars['ID']['input'];
|
|
59751
|
+
input?: InputMaybe<Scalars['JSON']['input']>;
|
|
59752
|
+
};
|
|
59753
|
+
export declare type JiraApplySuggestionActionsPayload = Payload & {
|
|
59754
|
+
__typename?: 'JiraApplySuggestionActionsPayload';
|
|
59755
|
+
errors?: Maybe<Array<MutationError>>;
|
|
59756
|
+
ids?: Maybe<Array<Maybe<Scalars['ID']['output']>>>;
|
|
59757
|
+
success: Scalars['Boolean']['output'];
|
|
59758
|
+
};
|
|
59481
59759
|
export declare enum JiraApprovalDecision {
|
|
59482
59760
|
Approved = "APPROVED",
|
|
59483
59761
|
Rejected = "REJECTED"
|
|
@@ -59633,11 +59911,6 @@ export declare type JiraAssignableUsersEdge = {
|
|
|
59633
59911
|
cursor: Scalars['String']['output'];
|
|
59634
59912
|
node?: Maybe<User>;
|
|
59635
59913
|
};
|
|
59636
|
-
export declare type JiraAssociateProjectToFieldSchemeInput = {
|
|
59637
|
-
fieldConfigSchemeId?: InputMaybe<Scalars['ID']['input']>;
|
|
59638
|
-
fieldSchemeId?: InputMaybe<Scalars['ID']['input']>;
|
|
59639
|
-
projectId: Scalars['ID']['input'];
|
|
59640
|
-
};
|
|
59641
59914
|
export declare type JiraAtlassianIntelligenceAction = JiraAccessAtlassianIntelligenceFeature | JiraContactOrgAdminToEnableAtlassianIntelligence | JiraEnableAtlassianIntelligenceDeepLink;
|
|
59642
59915
|
export declare enum JiraAtlassianIntelligenceFeatureEnum {
|
|
59643
59916
|
AiMate = "AI_MATE",
|
|
@@ -62645,6 +62918,7 @@ export declare type JiraCustomFieldType = {
|
|
|
62645
62918
|
description?: Maybe<Scalars['String']['output']>;
|
|
62646
62919
|
hasCascadingOptions?: Maybe<Scalars['Boolean']['output']>;
|
|
62647
62920
|
hasOptions?: Maybe<Scalars['Boolean']['output']>;
|
|
62921
|
+
isForge?: Maybe<Scalars['Boolean']['output']>;
|
|
62648
62922
|
isManaged?: Maybe<Scalars['Boolean']['output']>;
|
|
62649
62923
|
key?: Maybe<Scalars['String']['output']>;
|
|
62650
62924
|
name?: Maybe<Scalars['String']['output']>;
|
|
@@ -63531,6 +63805,16 @@ export declare type JiraDismissInContextConfigPromptPayload = Payload & {
|
|
|
63531
63805
|
errors?: Maybe<Array<MutationError>>;
|
|
63532
63806
|
success: Scalars['Boolean']['output'];
|
|
63533
63807
|
};
|
|
63808
|
+
export declare type JiraDismissSuggestionActionsPayload = Payload & {
|
|
63809
|
+
__typename?: 'JiraDismissSuggestionActionsPayload';
|
|
63810
|
+
errors?: Maybe<Array<MutationError>>;
|
|
63811
|
+
ids?: Maybe<Array<Maybe<Scalars['ID']['output']>>>;
|
|
63812
|
+
success: Scalars['Boolean']['output'];
|
|
63813
|
+
};
|
|
63814
|
+
export declare type JiraDismissSuggestionsInput = {
|
|
63815
|
+
cloudId: Scalars['ID']['input'];
|
|
63816
|
+
ids: Array<Scalars['ID']['input']>;
|
|
63817
|
+
};
|
|
63534
63818
|
export declare type JiraDragAndDropBoardViewIssueInput = {
|
|
63535
63819
|
destinationCellId?: InputMaybe<Scalars['ID']['input']>;
|
|
63536
63820
|
id: Scalars['ID']['input'];
|
|
@@ -63546,6 +63830,18 @@ export declare type JiraDragAndDropBoardViewIssuePayload = {
|
|
|
63546
63830
|
export declare type JiraDuplicateJourneyConfigurationInput = {
|
|
63547
63831
|
id: Scalars['ID']['input'];
|
|
63548
63832
|
};
|
|
63833
|
+
export declare type JiraDuplicateWorkItemsSuggestion = JiraSuggestion & {
|
|
63834
|
+
__typename?: 'JiraDuplicateWorkItemsSuggestion';
|
|
63835
|
+
actions?: Maybe<Array<Maybe<JiraSuggestionAction>>>;
|
|
63836
|
+
entityId?: Maybe<Scalars['String']['output']>;
|
|
63837
|
+
id?: Maybe<Scalars['ID']['output']>;
|
|
63838
|
+
relatedEntityId?: Maybe<Scalars['String']['output']>;
|
|
63839
|
+
relatedWorkItem?: Maybe<JiraIssue>;
|
|
63840
|
+
score?: Maybe<Scalars['Float']['output']>;
|
|
63841
|
+
status?: Maybe<JiraSuggestionStatus>;
|
|
63842
|
+
type?: Maybe<JiraSuggestionType>;
|
|
63843
|
+
workItem?: Maybe<JiraIssue>;
|
|
63844
|
+
};
|
|
63549
63845
|
export declare type JiraDurationField = JiraIssueField & JiraIssueFieldConfiguration & JiraUserIssueFieldConfiguration & Node & {
|
|
63550
63846
|
__typename?: 'JiraDurationField';
|
|
63551
63847
|
aliasFieldId?: Maybe<Scalars['ID']['output']>;
|
|
@@ -63841,7 +64137,7 @@ export declare type JiraFieldAssociationWithIssueTypesInput = {
|
|
|
63841
64137
|
};
|
|
63842
64138
|
export declare type JiraFieldAvailableWorkTypesInput = {
|
|
63843
64139
|
nameFilter?: InputMaybe<Scalars['String']['input']>;
|
|
63844
|
-
schemeId
|
|
64140
|
+
schemeId?: InputMaybe<Scalars['ID']['input']>;
|
|
63845
64141
|
};
|
|
63846
64142
|
export declare enum JiraFieldCategoryType {
|
|
63847
64143
|
Custom = "CUSTOM",
|
|
@@ -65185,6 +65481,7 @@ export declare type JiraIssue = HasMercuryProjectFields & JiraScenarioIssueLike
|
|
|
65185
65481
|
incidentActionItems?: Maybe<GraphIncidentHasActionItemRelationshipConnection>;
|
|
65186
65482
|
incidentLinkedJswIssues?: Maybe<GraphIncidentLinkedJswIssueRelationshipConnection>;
|
|
65187
65483
|
isArchived?: Maybe<Scalars['Boolean']['output']>;
|
|
65484
|
+
isRemoteIssue?: Maybe<Scalars['Boolean']['output']>;
|
|
65188
65485
|
isResolved?: Maybe<Scalars['Boolean']['output']>;
|
|
65189
65486
|
issueColorField?: Maybe<JiraColorField>;
|
|
65190
65487
|
issueId: Scalars['String']['output'];
|
|
@@ -65873,6 +66170,7 @@ export declare type JiraIssueFieldConfig = Node & {
|
|
|
65873
66170
|
associatedScreensCount?: Maybe<Scalars['Int']['output']>;
|
|
65874
66171
|
associatedScreensV2?: Maybe<JiraScreenConnection>;
|
|
65875
66172
|
availableFieldConfigSchemes?: Maybe<JiraFieldConfigSchemesConnection>;
|
|
66173
|
+
availableWorkTypes?: Maybe<JiraIssueTypeConnection>;
|
|
65876
66174
|
availableWorkTypesFromSchemesProjects?: Maybe<JiraIssueTypeConnection>;
|
|
65877
66175
|
availableWorkTypesJiraWide?: Maybe<JiraIssueTypeConnection>;
|
|
65878
66176
|
customId?: Maybe<Scalars['Int']['output']>;
|
|
@@ -65957,6 +66255,11 @@ export declare type JiraIssueFieldConfigAvailableFieldConfigSchemesArgs = {
|
|
|
65957
66255
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
65958
66256
|
input?: InputMaybe<JiraFieldConfigSchemesInput>;
|
|
65959
66257
|
};
|
|
66258
|
+
export declare type JiraIssueFieldConfigAvailableWorkTypesArgs = {
|
|
66259
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
66260
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
66261
|
+
input?: InputMaybe<JiraFieldAvailableWorkTypesInput>;
|
|
66262
|
+
};
|
|
65960
66263
|
export declare type JiraIssueFieldConfigAvailableWorkTypesFromSchemesProjectsArgs = {
|
|
65961
66264
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
65962
66265
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
@@ -66055,6 +66358,7 @@ export declare type JiraIssueFieldsInput = {
|
|
|
66055
66358
|
dateTimePickerFields?: InputMaybe<Array<JiraDateTimeFieldInput>>;
|
|
66056
66359
|
entitlementField?: InputMaybe<JiraEntitlementFieldInput>;
|
|
66057
66360
|
epicLinkField?: InputMaybe<JiraEpicLinkFieldInput>;
|
|
66361
|
+
issueLinks?: InputMaybe<JiraIssueLinksFieldInput>;
|
|
66058
66362
|
issueType?: InputMaybe<JiraIssueTypeInput>;
|
|
66059
66363
|
jiraForgeGroupsFields?: InputMaybe<Array<JiraForgeGroupsFieldInput>>;
|
|
66060
66364
|
jiraForgeStringsFields?: InputMaybe<Array<JiraForgeStringsFieldInput>>;
|
|
@@ -66381,6 +66685,12 @@ export declare type JiraIssueLinkTypeRelationEdge = {
|
|
|
66381
66685
|
cursor: Scalars['String']['output'];
|
|
66382
66686
|
node?: Maybe<JiraIssueLinkTypeRelation>;
|
|
66383
66687
|
};
|
|
66688
|
+
export declare type JiraIssueLinksFieldInput = {
|
|
66689
|
+
direction?: InputMaybe<JiraIssueLinkDirection>;
|
|
66690
|
+
linkTypeId?: InputMaybe<Scalars['String']['input']>;
|
|
66691
|
+
linkTypeName?: InputMaybe<Scalars['String']['input']>;
|
|
66692
|
+
linkedIssueKeys?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
66693
|
+
};
|
|
66384
66694
|
export declare enum JiraIssueModuleType {
|
|
66385
66695
|
IssueModule = "ISSUE_MODULE",
|
|
66386
66696
|
WebPanel = "WEB_PANEL"
|
|
@@ -67205,15 +67515,6 @@ export declare type JiraJqlHistoryEdge = {
|
|
|
67205
67515
|
__typename?: 'JiraJQLHistoryEdge';
|
|
67206
67516
|
node?: Maybe<JiraJqlHistory>;
|
|
67207
67517
|
};
|
|
67208
|
-
export declare type JiraJirtBoardScoreIssueEventPayload = {
|
|
67209
|
-
__typename?: 'JiraJirtBoardScoreIssueEventPayload';
|
|
67210
|
-
boardId?: Maybe<Scalars['String']['output']>;
|
|
67211
|
-
cloudId: Scalars['ID']['output'];
|
|
67212
|
-
issueId?: Maybe<Scalars['String']['output']>;
|
|
67213
|
-
projectId?: Maybe<Scalars['String']['output']>;
|
|
67214
|
-
resource: Scalars['String']['output'];
|
|
67215
|
-
type: Scalars['String']['output'];
|
|
67216
|
-
};
|
|
67217
67518
|
export declare type JiraJirtEventPayload = {
|
|
67218
67519
|
__typename?: 'JiraJirtEventPayload';
|
|
67219
67520
|
actionerAccountId?: Maybe<Scalars['String']['output']>;
|
|
@@ -67229,6 +67530,7 @@ export declare enum JiraJourneyActiveState {
|
|
|
67229
67530
|
export declare type JiraJourneyAssociations = {
|
|
67230
67531
|
__typename?: 'JiraJourneyAssociations';
|
|
67231
67532
|
migrationStatus?: Maybe<JiraJourneyRulesMigrationStatus>;
|
|
67533
|
+
ruleId?: Maybe<Scalars['String']['output']>;
|
|
67232
67534
|
};
|
|
67233
67535
|
export declare type JiraJourneyBuilderAssociatedAutomationRule = {
|
|
67234
67536
|
__typename?: 'JiraJourneyBuilderAssociatedAutomationRule';
|
|
@@ -72164,6 +72466,7 @@ export declare type JiraQuery = {
|
|
|
72164
72466
|
jwmViewItems?: Maybe<JiraWorkManagementViewItemConnectionResult>;
|
|
72165
72467
|
labelsFieldOptions?: Maybe<JiraLabelConnection>;
|
|
72166
72468
|
labelsInBoard?: Maybe<JiraLabelConnection>;
|
|
72469
|
+
linkedWorkItems?: Maybe<JiraIssueConnection>;
|
|
72167
72470
|
lockedIssueTypeIds?: Maybe<Array<Scalars['ID']['output']>>;
|
|
72168
72471
|
mediaClientId?: Maybe<Scalars['String']['output']>;
|
|
72169
72472
|
mediaExternalEndpointUrl?: Maybe<Scalars['String']['output']>;
|
|
@@ -72902,6 +73205,16 @@ export declare type JiraQueryLabelsFieldOptionsArgs = {
|
|
|
72902
73205
|
export declare type JiraQueryLabelsInBoardArgs = {
|
|
72903
73206
|
boardId: Scalars['ID']['input'];
|
|
72904
73207
|
};
|
|
73208
|
+
export declare type JiraQueryLinkedWorkItemsArgs = {
|
|
73209
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
73210
|
+
before?: InputMaybe<Scalars['String']['input']>;
|
|
73211
|
+
cloudId: Scalars['ID']['input'];
|
|
73212
|
+
fieldSetsInput?: InputMaybe<JiraIssueSearchFieldSetsInput>;
|
|
73213
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
73214
|
+
last?: InputMaybe<Scalars['Int']['input']>;
|
|
73215
|
+
shouldIncludeRemoteIssues?: InputMaybe<Scalars['Boolean']['input']>;
|
|
73216
|
+
viewConfigInput?: InputMaybe<JiraIssueSearchViewConfigInput>;
|
|
73217
|
+
};
|
|
72905
73218
|
export declare type JiraQueryLockedIssueTypeIdsArgs = {
|
|
72906
73219
|
cloudId: Scalars['ID']['input'];
|
|
72907
73220
|
};
|
|
@@ -76335,6 +76648,15 @@ export declare type JiraSprintUpdateInput = {
|
|
|
76335
76648
|
sprintId: Scalars['ID']['input'];
|
|
76336
76649
|
startDate?: InputMaybe<Scalars['String']['input']>;
|
|
76337
76650
|
};
|
|
76651
|
+
export declare type JiraStaleWorkItemsSuggestion = JiraSuggestion & {
|
|
76652
|
+
__typename?: 'JiraStaleWorkItemsSuggestion';
|
|
76653
|
+
actions?: Maybe<Array<Maybe<JiraSuggestionAction>>>;
|
|
76654
|
+
entityId?: Maybe<Scalars['String']['output']>;
|
|
76655
|
+
id?: Maybe<Scalars['ID']['output']>;
|
|
76656
|
+
status?: Maybe<JiraSuggestionStatus>;
|
|
76657
|
+
type?: Maybe<JiraSuggestionType>;
|
|
76658
|
+
workItem?: Maybe<JiraIssue>;
|
|
76659
|
+
};
|
|
76338
76660
|
export declare type JiraStatus = MercuryOriginalProjectStatus & Node & {
|
|
76339
76661
|
__typename?: 'JiraStatus';
|
|
76340
76662
|
description?: Maybe<Scalars['String']['output']>;
|
|
@@ -76484,7 +76806,6 @@ export declare type JiraSubscription = {
|
|
|
76484
76806
|
onIssueUpdatedByProject?: Maybe<JiraIssue>;
|
|
76485
76807
|
onIssueUpdatedByProjectNoEnrichment?: Maybe<JiraIssueUpdatedStreamHubPayload>;
|
|
76486
76808
|
onIssueUpdatedByProjectsNoEnrichment?: Maybe<JiraIssueUpdatedStreamHubPayload>;
|
|
76487
|
-
onJirtBoardIssueSubscription?: Maybe<JiraJirtBoardScoreIssueEventPayload>;
|
|
76488
76809
|
onJirtIssueSubscription?: Maybe<JiraJirtEventPayload>;
|
|
76489
76810
|
onJpdIssueSubscription?: Maybe<JiraProductDiscoveryIssueEventPayload>;
|
|
76490
76811
|
onJwmFieldMutation?: Maybe<JiraJwmField>;
|
|
@@ -76569,12 +76890,6 @@ export declare type JiraSubscriptionOnIssueUpdatedByProjectsNoEnrichmentArgs = {
|
|
|
76569
76890
|
cloudId: Scalars['ID']['input'];
|
|
76570
76891
|
projectIds?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
76571
76892
|
};
|
|
76572
|
-
export declare type JiraSubscriptionOnJirtBoardIssueSubscriptionArgs = {
|
|
76573
|
-
atlassianAccountId?: InputMaybe<Scalars['String']['input']>;
|
|
76574
|
-
cloudId: Scalars['ID']['input'];
|
|
76575
|
-
events: Array<Scalars['String']['input']>;
|
|
76576
|
-
projectIds: Array<Scalars['String']['input']>;
|
|
76577
|
-
};
|
|
76578
76893
|
export declare type JiraSubscriptionOnJirtIssueSubscriptionArgs = {
|
|
76579
76894
|
atlassianAccountId?: InputMaybe<Scalars['String']['input']>;
|
|
76580
76895
|
cloudId: Scalars['ID']['input'];
|
|
@@ -76691,6 +77006,53 @@ export declare type JiraSuggestedIssueInput = {
|
|
|
76691
77006
|
description?: InputMaybe<Scalars['String']['input']>;
|
|
76692
77007
|
summary?: InputMaybe<Scalars['String']['input']>;
|
|
76693
77008
|
};
|
|
77009
|
+
export declare type JiraSuggestion = {
|
|
77010
|
+
actions?: Maybe<Array<Maybe<JiraSuggestionAction>>>;
|
|
77011
|
+
entityId?: Maybe<Scalars['String']['output']>;
|
|
77012
|
+
id?: Maybe<Scalars['ID']['output']>;
|
|
77013
|
+
status?: Maybe<JiraSuggestionStatus>;
|
|
77014
|
+
type?: Maybe<JiraSuggestionType>;
|
|
77015
|
+
};
|
|
77016
|
+
export declare type JiraSuggestionAction = {
|
|
77017
|
+
__typename?: 'JiraSuggestionAction';
|
|
77018
|
+
default?: Maybe<Scalars['Boolean']['output']>;
|
|
77019
|
+
id?: Maybe<Scalars['String']['output']>;
|
|
77020
|
+
inputSchema?: Maybe<Scalars['JSON']['output']>;
|
|
77021
|
+
type?: Maybe<JiraSuggestionActionType>;
|
|
77022
|
+
};
|
|
77023
|
+
export declare enum JiraSuggestionActionType {
|
|
77024
|
+
ChangeDuplicateWorkItemStatus = "CHANGE_DUPLICATE_WORK_ITEM_STATUS",
|
|
77025
|
+
ChangeStaleWorkItemStatus = "CHANGE_STALE_WORK_ITEM_STATUS",
|
|
77026
|
+
LinkDuplicateWorkItems = "LINK_DUPLICATE_WORK_ITEMS"
|
|
77027
|
+
}
|
|
77028
|
+
export declare type JiraSuggestionEdge = {
|
|
77029
|
+
__typename?: 'JiraSuggestionEdge';
|
|
77030
|
+
cursor: Scalars['String']['output'];
|
|
77031
|
+
node: JiraSuggestion;
|
|
77032
|
+
};
|
|
77033
|
+
export declare enum JiraSuggestionStatus {
|
|
77034
|
+
Dismissed = "DISMISSED",
|
|
77035
|
+
Done = "DONE",
|
|
77036
|
+
Pending = "PENDING"
|
|
77037
|
+
}
|
|
77038
|
+
export declare enum JiraSuggestionType {
|
|
77039
|
+
DuplicateWorkItems = "DUPLICATE_WORK_ITEMS",
|
|
77040
|
+
StaleWorkItems = "STALE_WORK_ITEMS"
|
|
77041
|
+
}
|
|
77042
|
+
export declare type JiraSuggestionsByContextInput = {
|
|
77043
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
77044
|
+
cloudId: Scalars['ID']['input'];
|
|
77045
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
77046
|
+
id: Scalars['ID']['input'];
|
|
77047
|
+
status?: InputMaybe<Array<JiraSuggestionStatus>>;
|
|
77048
|
+
types: Array<JiraSuggestionType>;
|
|
77049
|
+
};
|
|
77050
|
+
export declare type JiraSuggestionsConnection = HasPageInfo & {
|
|
77051
|
+
__typename?: 'JiraSuggestionsConnection';
|
|
77052
|
+
edges?: Maybe<Array<Maybe<JiraSuggestionEdge>>>;
|
|
77053
|
+
errors?: Maybe<Array<QueryError>>;
|
|
77054
|
+
pageInfo: PageInfo;
|
|
77055
|
+
};
|
|
76694
77056
|
export declare enum JiraSyntheticFieldCardOptionType {
|
|
76695
77057
|
CardCover = "CARD_COVER",
|
|
76696
77058
|
Pages = "PAGES"
|
|
@@ -79087,7 +79449,77 @@ export declare type JiraWorklogPayload = Payload & {
|
|
|
79087
79449
|
export declare type JiraWorklogSortInput = {
|
|
79088
79450
|
order: SortDirection;
|
|
79089
79451
|
};
|
|
79452
|
+
export declare type JpdSubscriptions = {
|
|
79453
|
+
__typename?: 'JpdSubscriptions';
|
|
79454
|
+
onViewCreated?: Maybe<JpdViewCreatedEvent>;
|
|
79455
|
+
onViewDeleted?: Maybe<JpdViewDeletedEvent>;
|
|
79456
|
+
onViewUpdated?: Maybe<JpdViewUpdatedEvent>;
|
|
79457
|
+
};
|
|
79458
|
+
export declare type JpdSubscriptionsOnViewCreatedArgs = {
|
|
79459
|
+
projectAri: Scalars['ID']['input'];
|
|
79460
|
+
};
|
|
79461
|
+
export declare type JpdSubscriptionsOnViewDeletedArgs = {
|
|
79462
|
+
projectAri: Scalars['ID']['input'];
|
|
79463
|
+
};
|
|
79464
|
+
export declare type JpdSubscriptionsOnViewUpdatedArgs = {
|
|
79465
|
+
projectAri: Scalars['ID']['input'];
|
|
79466
|
+
};
|
|
79467
|
+
export declare type JpdViewCreatedDetails = {
|
|
79468
|
+
__typename?: 'JpdViewCreatedDetails';
|
|
79469
|
+
emoji?: Maybe<Scalars['String']['output']>;
|
|
79470
|
+
id: Scalars['Int']['output'];
|
|
79471
|
+
name: Scalars['String']['output'];
|
|
79472
|
+
projectAri: Scalars['ID']['output'];
|
|
79473
|
+
uuid: Scalars['ID']['output'];
|
|
79474
|
+
visualizationType?: Maybe<PolarisVisualizationType>;
|
|
79475
|
+
};
|
|
79476
|
+
export declare type JpdViewCreatedEvent = {
|
|
79477
|
+
__typename?: 'JpdViewCreatedEvent';
|
|
79478
|
+
createdByUserId: Scalars['ID']['output'];
|
|
79479
|
+
type: Scalars['String']['output'];
|
|
79480
|
+
view?: Maybe<JpdViewCreatedDetails>;
|
|
79481
|
+
viewAri: Scalars['ID']['output'];
|
|
79482
|
+
viewId: Scalars['Int']['output'];
|
|
79483
|
+
viewUuid: Scalars['ID']['output'];
|
|
79484
|
+
};
|
|
79485
|
+
export declare type JpdViewDeletedEvent = {
|
|
79486
|
+
__typename?: 'JpdViewDeletedEvent';
|
|
79487
|
+
deletedByUserId: Scalars['ID']['output'];
|
|
79488
|
+
projectAri: Scalars['ID']['output'];
|
|
79489
|
+
type: Scalars['String']['output'];
|
|
79490
|
+
viewAri: Scalars['ID']['output'];
|
|
79491
|
+
viewId: Scalars['Int']['output'];
|
|
79492
|
+
viewUuid: Scalars['ID']['output'];
|
|
79493
|
+
};
|
|
79494
|
+
export declare type JpdViewUpdatedEvent = {
|
|
79495
|
+
__typename?: 'JpdViewUpdatedEvent';
|
|
79496
|
+
changes?: Maybe<Array<Scalars['String']['output']>>;
|
|
79497
|
+
projectAri: Scalars['ID']['output'];
|
|
79498
|
+
type: Scalars['String']['output'];
|
|
79499
|
+
updatedByUserId: Scalars['ID']['output'];
|
|
79500
|
+
viewAri: Scalars['ID']['output'];
|
|
79501
|
+
viewId: Scalars['Int']['output'];
|
|
79502
|
+
viewUuid: Scalars['ID']['output'];
|
|
79503
|
+
};
|
|
79090
79504
|
export declare type JsmChannelsConversationsByContainerAriResult = JsmChannelsOrchestratorConversationsConnection | QueryError;
|
|
79505
|
+
export declare enum JsmChannelsExperience {
|
|
79506
|
+
EmployeeOnboardingAgent = "EMPLOYEE_ONBOARDING_AGENT",
|
|
79507
|
+
EmployeeServiceAgent = "EMPLOYEE_SERVICE_AGENT"
|
|
79508
|
+
}
|
|
79509
|
+
export declare type JsmChannelsExperienceConfiguration = {
|
|
79510
|
+
__typename?: 'JsmChannelsExperienceConfiguration';
|
|
79511
|
+
isEnabled: Scalars['Boolean']['output'];
|
|
79512
|
+
};
|
|
79513
|
+
export declare type JsmChannelsExperienceConfigurationInput = {
|
|
79514
|
+
isEnabled: Scalars['Boolean']['input'];
|
|
79515
|
+
};
|
|
79516
|
+
export declare type JsmChannelsExperienceConfigurationPayload = Payload & {
|
|
79517
|
+
__typename?: 'JsmChannelsExperienceConfigurationPayload';
|
|
79518
|
+
errors?: Maybe<Array<MutationError>>;
|
|
79519
|
+
jsmChannelsExperienceConfiguration?: Maybe<JsmChannelsExperienceConfiguration>;
|
|
79520
|
+
success: Scalars['Boolean']['output'];
|
|
79521
|
+
};
|
|
79522
|
+
export declare type JsmChannelsExperienceConfigurationResult = JsmChannelsExperienceConfiguration | QueryError;
|
|
79091
79523
|
export declare type JsmChannelsOrchestratorConversation = Node & {
|
|
79092
79524
|
__typename?: 'JsmChannelsOrchestratorConversation';
|
|
79093
79525
|
action?: Maybe<JsmChannelsOrchestratorConversationActionType>;
|
|
@@ -84317,6 +84749,7 @@ export declare type MercuryChangeProposal = Node & {
|
|
|
84317
84749
|
funding?: Maybe<MercuryChangeProposalFunding>;
|
|
84318
84750
|
id: Scalars['ID']['output'];
|
|
84319
84751
|
impact?: Maybe<MercuryChangeProposalImpact>;
|
|
84752
|
+
linkedGoals?: Maybe<GraphStoreSimplifiedChangeProposalHasAtlasGoalConnection>;
|
|
84320
84753
|
name: Scalars['String']['output'];
|
|
84321
84754
|
owner?: Maybe<User>;
|
|
84322
84755
|
positionDetails?: Maybe<MercuryChangeProposalPositionDetails>;
|
|
@@ -84330,6 +84763,12 @@ export declare type MercuryChangeProposalCommentsArgs = {
|
|
|
84330
84763
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
84331
84764
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
84332
84765
|
};
|
|
84766
|
+
export declare type MercuryChangeProposalLinkedGoalsArgs = {
|
|
84767
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
84768
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
84769
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
84770
|
+
sort?: InputMaybe<GraphStoreChangeProposalHasAtlasGoalSortInput>;
|
|
84771
|
+
};
|
|
84333
84772
|
export declare type MercuryChangeProposalTagsArgs = {
|
|
84334
84773
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
84335
84774
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
@@ -84394,6 +84833,17 @@ export declare type MercuryChangeProposalPositionSummary = {
|
|
|
84394
84833
|
movedCount?: Maybe<Scalars['Int']['output']>;
|
|
84395
84834
|
newCount?: Maybe<Scalars['Int']['output']>;
|
|
84396
84835
|
};
|
|
84836
|
+
export declare type MercuryChangeProposalRankConnection = {
|
|
84837
|
+
__typename?: 'MercuryChangeProposalRankConnection';
|
|
84838
|
+
edges?: Maybe<Array<MercuryChangeProposalRankEdge>>;
|
|
84839
|
+
pageInfo: PageInfo;
|
|
84840
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
84841
|
+
};
|
|
84842
|
+
export declare type MercuryChangeProposalRankEdge = {
|
|
84843
|
+
__typename?: 'MercuryChangeProposalRankEdge';
|
|
84844
|
+
cursor: Scalars['String']['output'];
|
|
84845
|
+
node?: Maybe<MercuryRankedChangeProposal>;
|
|
84846
|
+
};
|
|
84397
84847
|
export declare type MercuryChangeProposalSort = {
|
|
84398
84848
|
field: MercuryChangeProposalSortField;
|
|
84399
84849
|
order: SortOrder;
|
|
@@ -84456,15 +84906,19 @@ export declare type MercuryChangeProposalUpdate = {
|
|
|
84456
84906
|
};
|
|
84457
84907
|
export declare type MercuryChangeProposalsView = MercuryView & {
|
|
84458
84908
|
__typename?: 'MercuryChangeProposalsView';
|
|
84459
|
-
createdBy?: Maybe<
|
|
84909
|
+
createdBy?: Maybe<User>;
|
|
84460
84910
|
createdDate?: Maybe<Scalars['String']['output']>;
|
|
84461
84911
|
id: Scalars['ID']['output'];
|
|
84462
84912
|
name: Scalars['String']['output'];
|
|
84463
|
-
priorities?: Maybe<
|
|
84913
|
+
priorities?: Maybe<MercuryChangeProposalRankConnection>;
|
|
84464
84914
|
settings?: Maybe<Array<Maybe<MercuryViewSetting>>>;
|
|
84465
|
-
updatedBy?: Maybe<
|
|
84915
|
+
updatedBy?: Maybe<User>;
|
|
84466
84916
|
updatedDate?: Maybe<Scalars['String']['output']>;
|
|
84467
84917
|
};
|
|
84918
|
+
export declare type MercuryChangeProposalsViewPrioritiesArgs = {
|
|
84919
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
84920
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
84921
|
+
};
|
|
84468
84922
|
export declare type MercuryChangeProposalsViewConnection = {
|
|
84469
84923
|
__typename?: 'MercuryChangeProposalsViewConnection';
|
|
84470
84924
|
edges?: Maybe<Array<MercuryChangeProposalsViewEdge>>;
|
|
@@ -86045,6 +86499,12 @@ export declare type MercuryQueryApiTeamsArgs = {
|
|
|
86045
86499
|
export declare type MercuryQueryApiWorkspaceContextArgs = {
|
|
86046
86500
|
cloudId: Scalars['ID']['input'];
|
|
86047
86501
|
};
|
|
86502
|
+
export declare type MercuryRankedChangeProposal = {
|
|
86503
|
+
__typename?: 'MercuryRankedChangeProposal';
|
|
86504
|
+
changeProposal?: Maybe<MercuryChangeProposal>;
|
|
86505
|
+
changeProposalsViewId: Scalars['ID']['output'];
|
|
86506
|
+
rank?: Maybe<Scalars['Int']['output']>;
|
|
86507
|
+
};
|
|
86048
86508
|
export declare type MercuryRecreatePortfolioFocusAreasInput = {
|
|
86049
86509
|
cloudId: Scalars['ID']['input'];
|
|
86050
86510
|
focusAreaIds: Array<Scalars['ID']['input']>;
|
|
@@ -86258,12 +86718,14 @@ export declare type MercuryStrategicEventsMutationApi = {
|
|
|
86258
86718
|
transitionChangeProposalStatus?: Maybe<MercuryTransitionChangeProposalPayload>;
|
|
86259
86719
|
transitionStrategicEventStatus?: Maybe<MercuryTransitionStrategicEventPayload>;
|
|
86260
86720
|
unlinkGoalsFromChangeProposal?: Maybe<MercuryUnlinkGoalsFromChangeProposalPayload>;
|
|
86721
|
+
unrankChangeProposalInView?: Maybe<MercuryUnrankChangeProposalInViewPayload>;
|
|
86261
86722
|
updateChangeProposalComment?: Maybe<MercuryUpdateChangeProposalCommentPayload>;
|
|
86262
86723
|
updateChangeProposalDescription?: Maybe<MercuryUpdateChangeProposalPayload>;
|
|
86263
86724
|
updateChangeProposalFocusArea?: Maybe<MercuryUpdateChangeProposalPayload>;
|
|
86264
86725
|
updateChangeProposalImpact?: Maybe<MercuryUpdateChangeProposalPayload>;
|
|
86265
86726
|
updateChangeProposalName?: Maybe<MercuryUpdateChangeProposalPayload>;
|
|
86266
86727
|
updateChangeProposalOwner?: Maybe<MercuryUpdateChangeProposalPayload>;
|
|
86728
|
+
updateChangeProposalRankInView?: Maybe<MercuryUpdateChangeProposalRankInViewPayload>;
|
|
86267
86729
|
updateChangeProposalsView?: Maybe<MercuryUpdateChangeProposalsViewPayload>;
|
|
86268
86730
|
updateChangeProposalsViewSettings?: Maybe<MercuryUpdateChangeProposalsViewSettingsPayload>;
|
|
86269
86731
|
updateMoveFundsChange: MercuryUpdateChangePayload;
|
|
@@ -86331,6 +86793,9 @@ export declare type MercuryStrategicEventsMutationApiTransitionStrategicEventSta
|
|
|
86331
86793
|
export declare type MercuryStrategicEventsMutationApiUnlinkGoalsFromChangeProposalArgs = {
|
|
86332
86794
|
input: MercuryUnlinkGoalsFromChangeProposalInput;
|
|
86333
86795
|
};
|
|
86796
|
+
export declare type MercuryStrategicEventsMutationApiUnrankChangeProposalInViewArgs = {
|
|
86797
|
+
input: MercuryUnrankChangeProposalInViewInput;
|
|
86798
|
+
};
|
|
86334
86799
|
export declare type MercuryStrategicEventsMutationApiUpdateChangeProposalCommentArgs = {
|
|
86335
86800
|
input: MercuryUpdateChangeProposalCommentInput;
|
|
86336
86801
|
};
|
|
@@ -86349,6 +86814,9 @@ export declare type MercuryStrategicEventsMutationApiUpdateChangeProposalNameArg
|
|
|
86349
86814
|
export declare type MercuryStrategicEventsMutationApiUpdateChangeProposalOwnerArgs = {
|
|
86350
86815
|
input: MercuryUpdateChangeProposalOwnerInput;
|
|
86351
86816
|
};
|
|
86817
|
+
export declare type MercuryStrategicEventsMutationApiUpdateChangeProposalRankInViewArgs = {
|
|
86818
|
+
input: MercuryUpdateChangeProposalRankInViewInput;
|
|
86819
|
+
};
|
|
86352
86820
|
export declare type MercuryStrategicEventsMutationApiUpdateChangeProposalsViewArgs = {
|
|
86353
86821
|
input: MercuryUpdateChangeProposalsViewInput;
|
|
86354
86822
|
};
|
|
@@ -86625,6 +87093,15 @@ export declare type MercuryUnlinkGoalsFromChangeProposalPayload = Payload & {
|
|
|
86625
87093
|
errors?: Maybe<Array<MutationError>>;
|
|
86626
87094
|
success: Scalars['Boolean']['output'];
|
|
86627
87095
|
};
|
|
87096
|
+
export declare type MercuryUnrankChangeProposalInViewInput = {
|
|
87097
|
+
changeProposalId: Scalars['ID']['input'];
|
|
87098
|
+
changeProposalsViewId: Scalars['ID']['input'];
|
|
87099
|
+
};
|
|
87100
|
+
export declare type MercuryUnrankChangeProposalInViewPayload = Payload & {
|
|
87101
|
+
__typename?: 'MercuryUnrankChangeProposalInViewPayload';
|
|
87102
|
+
errors?: Maybe<Array<MutationError>>;
|
|
87103
|
+
success: Scalars['Boolean']['output'];
|
|
87104
|
+
};
|
|
86628
87105
|
export declare type MercuryUpdateChangeFocusAreaInput = {
|
|
86629
87106
|
focusAreaId?: InputMaybe<Scalars['ID']['input']>;
|
|
86630
87107
|
};
|
|
@@ -86677,6 +87154,16 @@ export declare type MercuryUpdateChangeProposalPayload = Payload & {
|
|
|
86677
87154
|
success: Scalars['Boolean']['output'];
|
|
86678
87155
|
updatedChangeProposal?: Maybe<MercuryChangeProposal>;
|
|
86679
87156
|
};
|
|
87157
|
+
export declare type MercuryUpdateChangeProposalRankInViewInput = {
|
|
87158
|
+
changeProposalId: Scalars['ID']['input'];
|
|
87159
|
+
changeProposalsViewId: Scalars['ID']['input'];
|
|
87160
|
+
markerChangeProposalId?: InputMaybe<Scalars['ID']['input']>;
|
|
87161
|
+
};
|
|
87162
|
+
export declare type MercuryUpdateChangeProposalRankInViewPayload = Payload & {
|
|
87163
|
+
__typename?: 'MercuryUpdateChangeProposalRankInViewPayload';
|
|
87164
|
+
errors?: Maybe<Array<MutationError>>;
|
|
87165
|
+
success: Scalars['Boolean']['output'];
|
|
87166
|
+
};
|
|
86680
87167
|
export declare type MercuryUpdateChangeProposalsViewInput = {
|
|
86681
87168
|
id: Scalars['ID']['input'];
|
|
86682
87169
|
name?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -87205,18 +87692,25 @@ export declare type Mutation = {
|
|
|
87205
87692
|
compass?: Maybe<CompassCatalogMutationApi>;
|
|
87206
87693
|
completeSprint?: Maybe<CompleteSprintResponse>;
|
|
87207
87694
|
confluence?: Maybe<ConfluenceMutationApi>;
|
|
87695
|
+
confluence_acceptAnswer?: Maybe<ConfluenceAcceptAnswerPayload>;
|
|
87208
87696
|
confluence_addReaction?: Maybe<ConfluenceReactionPayload>;
|
|
87209
87697
|
confluence_bulkNestedConvertToLiveDocs?: Maybe<ConfluenceBulkNestedConvertToLiveDocsPayload>;
|
|
87210
87698
|
confluence_convertNote?: Maybe<ConfluenceConvertNotePayload>;
|
|
87211
87699
|
confluence_copyNote?: Maybe<ConfluenceCopyNotePayload>;
|
|
87212
87700
|
confluence_copySpaceSecurityConfiguration?: Maybe<ConfluenceCopySpaceSecurityConfigurationPayload>;
|
|
87701
|
+
confluence_createAnswer?: Maybe<ConfluenceCreateAnswerPayload>;
|
|
87702
|
+
confluence_createCommentOnAnswer?: Maybe<ConfluenceCreateCommentOnAnswerPayload>;
|
|
87703
|
+
confluence_createCommentOnQuestion?: Maybe<ConfluenceCreateCommentOnQuestionPayload>;
|
|
87213
87704
|
confluence_createCsvExportTask?: Maybe<ConfluenceCreateCsvExportTaskPayload>;
|
|
87214
87705
|
confluence_createCustomRole?: Maybe<ConfluenceCreateCustomRolePayload>;
|
|
87215
87706
|
confluence_createPdfExportTaskForBulkContent?: Maybe<ConfluenceCreatePdfExportTaskForBulkContentPayload>;
|
|
87216
87707
|
confluence_createPdfExportTaskForSingleContent?: Maybe<ConfluenceCreatePdfExportTaskForSingleContentPayload>;
|
|
87708
|
+
confluence_createQuestion?: Maybe<ConfluenceCreateQuestionPayload>;
|
|
87217
87709
|
confluence_createTopic?: Maybe<ConfluenceCreateTopicPayload>;
|
|
87710
|
+
confluence_deleteAnswer?: Maybe<ConfluenceDeleteAnswerPayload>;
|
|
87218
87711
|
confluence_deleteCalendarCustomEventType?: Maybe<ConfluenceDeleteCalendarCustomEventTypePayload>;
|
|
87219
87712
|
confluence_deleteCustomRole?: Maybe<ConfluenceDeleteCustomRolePayload>;
|
|
87713
|
+
confluence_deleteQuestion?: Maybe<ConfluenceDeleteQuestionPayload>;
|
|
87220
87714
|
confluence_deleteReaction?: Maybe<ConfluenceReactionPayload>;
|
|
87221
87715
|
confluence_deleteSubCalendarAllFutureEvents?: Maybe<ConfluenceDeleteSubCalendarAllFutureEventsPayload>;
|
|
87222
87716
|
confluence_deleteSubCalendarEvent?: Maybe<ConfluenceDeleteSubCalendarEventPayload>;
|
|
@@ -87231,22 +87725,28 @@ export declare type Mutation = {
|
|
|
87231
87725
|
confluence_makeSubCalendarPrivateUrl?: Maybe<ConfluenceMakeSubCalendarPrivateUrlPayload>;
|
|
87232
87726
|
confluence_markAllCommentsAsRead?: Maybe<ConfluenceMarkAllCommentsAsReadPayload>;
|
|
87233
87727
|
confluence_markCommentAsDangling?: Maybe<ConfluenceMarkCommentAsDanglingPayload>;
|
|
87728
|
+
confluence_nbmBulkUpdateVerificationEntry?: Maybe<ConfluenceNbmBulkUpdateVerificationEntryPayload>;
|
|
87234
87729
|
confluence_nbmStartScanLongTask?: Maybe<ConfluenceNbmStartScanLongTaskPayload>;
|
|
87235
87730
|
confluence_reopenComment?: Maybe<ConfluenceReopenCommentPayload>;
|
|
87236
87731
|
confluence_resolveComments?: Maybe<ConfluenceResolveCommentsPayload>;
|
|
87237
87732
|
confluence_resolveCommentsByContentId?: Maybe<ConfluenceResolveCommentByContentIdPayload>;
|
|
87238
87733
|
confluence_setSubCalendarReminder?: Maybe<ConfluenceSetSubCalendarReminderPayload>;
|
|
87239
87734
|
confluence_unmarkCommentAsDangling?: Maybe<ConfluenceUnmarkCommentAsDanglingPayload>;
|
|
87735
|
+
confluence_unschedulePublish?: Maybe<ConfluenceUnschedulePublishPayload>;
|
|
87240
87736
|
confluence_unwatchLabel?: Maybe<ConfluenceLabelWatchStatus>;
|
|
87241
87737
|
confluence_unwatchSubCalendar?: Maybe<ConfluenceUnwatchSubCalendarPayload>;
|
|
87738
|
+
confluence_updateAnswer?: Maybe<ConfluenceUpdateAnswerPayload>;
|
|
87242
87739
|
confluence_updateCalendarView?: Maybe<ConfluenceUpdateCalendarViewPayload>;
|
|
87243
87740
|
confluence_updateContentAccessRequest?: Maybe<ConfluenceUpdateContentAccessRequestPayload>;
|
|
87741
|
+
confluence_updateCustomContentPermissions?: Maybe<ConfluenceUpdateCustomContentPermissionsPayload>;
|
|
87244
87742
|
confluence_updateCustomRole?: Maybe<ConfluenceUpdateCustomRolePayload>;
|
|
87245
87743
|
confluence_updateDefaultTitleEmoji?: Maybe<ConfluenceUpdateDefaultTitleEmojiPayload>;
|
|
87246
87744
|
confluence_updateNav4OptIn?: Maybe<ConfluenceUpdateNav4OptInPayload>;
|
|
87745
|
+
confluence_updateQuestion?: Maybe<ConfluenceUpdateQuestionPayload>;
|
|
87247
87746
|
confluence_updateSubCalendarHiddenEvents?: Maybe<ConfluenceUpdateSubCalendarHiddenEventsPayload>;
|
|
87248
87747
|
confluence_updateTeamPresenceSpaceSettings?: Maybe<ConfluenceUpdateTeamPresenceSpaceSettingsPayload>;
|
|
87249
87748
|
confluence_updateTopic?: Maybe<ConfluenceUpdateTopicPayload>;
|
|
87749
|
+
confluence_updateVote?: Maybe<ConfluenceUpdateVotePayload>;
|
|
87250
87750
|
confluence_watchLabel?: Maybe<ConfluenceLabelWatchStatus>;
|
|
87251
87751
|
confluence_watchSubCalendar?: Maybe<ConfluenceWatchSubCalendarPayload>;
|
|
87252
87752
|
connectionManager_createApiTokenConnectionForJiraProject?: Maybe<ConnectionManagerCreateApiTokenConnectionForJiraProjectPayload>;
|
|
@@ -87432,6 +87932,7 @@ export declare type Mutation = {
|
|
|
87432
87932
|
jiraOAuthApps?: Maybe<JiraOAuthAppsMutation>;
|
|
87433
87933
|
jira_addFieldsToFieldScheme?: Maybe<JiraAddFieldsToFieldSchemePayload>;
|
|
87434
87934
|
jira_addTimelineIssueLink?: Maybe<JiraTimelineIssueLinkOperationPayload>;
|
|
87935
|
+
jira_applySuggestionActions?: Maybe<JiraApplySuggestionActionsPayload>;
|
|
87435
87936
|
jira_bulkSetBoardViewColumnState?: Maybe<JiraBulkSetBoardViewColumnStatePayload>;
|
|
87436
87937
|
jira_createBoardViewStatusColumn?: Maybe<JiraCreateBoardViewStatusColumnPayload>;
|
|
87437
87938
|
jira_createCustomBackground?: Maybe<JiraProjectCreateCustomBackgroundMutationPayload>;
|
|
@@ -87449,6 +87950,7 @@ export declare type Mutation = {
|
|
|
87449
87950
|
jira_deleteIssueType?: Maybe<JiraDeleteIssueTypePayload>;
|
|
87450
87951
|
jira_discardUserBoardViewConfig?: Maybe<JiraDiscardUserBoardViewConfigPayload>;
|
|
87451
87952
|
jira_discardUserIssueSearchConfig?: Maybe<JiraDiscardUserIssueSearchConfigPayload>;
|
|
87953
|
+
jira_dismissSuggestions?: Maybe<JiraDismissSuggestionActionsPayload>;
|
|
87452
87954
|
jira_dragAndDropBoardViewIssue?: Maybe<JiraDragAndDropBoardViewIssuePayload>;
|
|
87453
87955
|
jira_editFieldScheme?: Maybe<JiraFieldSchemePayload>;
|
|
87454
87956
|
jira_orderIssueSearchFormattingRule?: Maybe<JiraOrderIssueSearchFormattingRulePayload>;
|
|
@@ -87489,6 +87991,7 @@ export declare type Mutation = {
|
|
|
87489
87991
|
jira_updateProjectBackground?: Maybe<JiraProjectUpdateBackgroundMutationPayload>;
|
|
87490
87992
|
jira_updateProjectsSidebarMenu?: Maybe<JiraProjectsSidebarMenu>;
|
|
87491
87993
|
jira_updateSchemeFieldPerWorkTypeCustomizations?: Maybe<JiraFieldWorkTypeConfigurationPayload>;
|
|
87994
|
+
jsmChannels_updateExperienceConfiguration: JsmChannelsExperienceConfigurationPayload;
|
|
87492
87995
|
jsmChat?: Maybe<JsmChatMutation>;
|
|
87493
87996
|
jsw?: Maybe<JswMutation>;
|
|
87494
87997
|
knowledgeBase?: Maybe<KnowledgeBaseMutationApi>;
|
|
@@ -88072,6 +88575,10 @@ export declare type MutationCompleteSprintArgs = {
|
|
|
88072
88575
|
export declare type MutationConfluenceArgs = {
|
|
88073
88576
|
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
88074
88577
|
};
|
|
88578
|
+
export declare type MutationConfluence_AcceptAnswerArgs = {
|
|
88579
|
+
cloudId: Scalars['ID']['input'];
|
|
88580
|
+
input: ConfluenceAcceptAnswerInput;
|
|
88581
|
+
};
|
|
88075
88582
|
export declare type MutationConfluence_AddReactionArgs = {
|
|
88076
88583
|
cloudId: Scalars['ID']['input'];
|
|
88077
88584
|
input: ConfluenceReactionInput;
|
|
@@ -88090,6 +88597,18 @@ export declare type MutationConfluence_CopySpaceSecurityConfigurationArgs = {
|
|
|
88090
88597
|
cloudId: Scalars['ID']['input'];
|
|
88091
88598
|
input: ConfluenceCopySpaceSecurityConfigurationInput;
|
|
88092
88599
|
};
|
|
88600
|
+
export declare type MutationConfluence_CreateAnswerArgs = {
|
|
88601
|
+
cloudId: Scalars['ID']['input'];
|
|
88602
|
+
input: ConfluenceCreateAnswerInput;
|
|
88603
|
+
};
|
|
88604
|
+
export declare type MutationConfluence_CreateCommentOnAnswerArgs = {
|
|
88605
|
+
cloudId: Scalars['ID']['input'];
|
|
88606
|
+
input: ConfluenceCreateCommentOnAnswerInput;
|
|
88607
|
+
};
|
|
88608
|
+
export declare type MutationConfluence_CreateCommentOnQuestionArgs = {
|
|
88609
|
+
cloudId: Scalars['ID']['input'];
|
|
88610
|
+
input: ConfluenceCreateCommentOnQuestionInput;
|
|
88611
|
+
};
|
|
88093
88612
|
export declare type MutationConfluence_CreateCsvExportTaskArgs = {
|
|
88094
88613
|
cloudId: Scalars['ID']['input'];
|
|
88095
88614
|
input: ConfluenceCreateCsvExportTaskInput;
|
|
@@ -88104,10 +88623,18 @@ export declare type MutationConfluence_CreatePdfExportTaskForBulkContentArgs = {
|
|
|
88104
88623
|
export declare type MutationConfluence_CreatePdfExportTaskForSingleContentArgs = {
|
|
88105
88624
|
input: ConfluenceCreatePdfExportTaskForSingleContentInput;
|
|
88106
88625
|
};
|
|
88626
|
+
export declare type MutationConfluence_CreateQuestionArgs = {
|
|
88627
|
+
cloudId: Scalars['ID']['input'];
|
|
88628
|
+
input: ConfluenceCreateQuestionInput;
|
|
88629
|
+
};
|
|
88107
88630
|
export declare type MutationConfluence_CreateTopicArgs = {
|
|
88108
88631
|
cloudId: Scalars['ID']['input'];
|
|
88109
88632
|
input: ConfluenceCreateTopicInput;
|
|
88110
88633
|
};
|
|
88634
|
+
export declare type MutationConfluence_DeleteAnswerArgs = {
|
|
88635
|
+
cloudId: Scalars['ID']['input'];
|
|
88636
|
+
input: ConfluenceDeleteAnswerInput;
|
|
88637
|
+
};
|
|
88111
88638
|
export declare type MutationConfluence_DeleteCalendarCustomEventTypeArgs = {
|
|
88112
88639
|
cloudId: Scalars['ID']['input'];
|
|
88113
88640
|
input: ConfluenceDeleteCalendarCustomEventTypeInput;
|
|
@@ -88116,6 +88643,10 @@ export declare type MutationConfluence_DeleteCustomRoleArgs = {
|
|
|
88116
88643
|
cloudId: Scalars['ID']['input'];
|
|
88117
88644
|
input: ConfluenceDeleteCustomRoleInput;
|
|
88118
88645
|
};
|
|
88646
|
+
export declare type MutationConfluence_DeleteQuestionArgs = {
|
|
88647
|
+
cloudId: Scalars['ID']['input'];
|
|
88648
|
+
input: ConfluenceDeleteQuestionInput;
|
|
88649
|
+
};
|
|
88119
88650
|
export declare type MutationConfluence_DeleteReactionArgs = {
|
|
88120
88651
|
cloudId: Scalars['ID']['input'];
|
|
88121
88652
|
input: ConfluenceReactionInput;
|
|
@@ -88171,6 +88702,10 @@ export declare type MutationConfluence_MarkCommentAsDanglingArgs = {
|
|
|
88171
88702
|
cloudId: Scalars['ID']['input'];
|
|
88172
88703
|
input: ConfluenceMarkCommentAsDanglingInput;
|
|
88173
88704
|
};
|
|
88705
|
+
export declare type MutationConfluence_NbmBulkUpdateVerificationEntryArgs = {
|
|
88706
|
+
cloudId: Scalars['ID']['input'];
|
|
88707
|
+
input: ConfluenceNbmBulkUpdateVerificationEntryInput;
|
|
88708
|
+
};
|
|
88174
88709
|
export declare type MutationConfluence_NbmStartScanLongTaskArgs = {
|
|
88175
88710
|
cloudId: Scalars['ID']['input'];
|
|
88176
88711
|
input: ConfluenceNbmStartScanLongTaskInput;
|
|
@@ -88196,6 +88731,10 @@ export declare type MutationConfluence_UnmarkCommentAsDanglingArgs = {
|
|
|
88196
88731
|
cloudId: Scalars['ID']['input'];
|
|
88197
88732
|
input: ConfluenceUnmarkCommentAsDanglingInput;
|
|
88198
88733
|
};
|
|
88734
|
+
export declare type MutationConfluence_UnschedulePublishArgs = {
|
|
88735
|
+
cloudId: Scalars['ID']['input'];
|
|
88736
|
+
input: ConfluenceUnschedulePublishInput;
|
|
88737
|
+
};
|
|
88199
88738
|
export declare type MutationConfluence_UnwatchLabelArgs = {
|
|
88200
88739
|
cloudId: Scalars['ID']['input'];
|
|
88201
88740
|
input: ConfluenceLabelWatchInput;
|
|
@@ -88204,6 +88743,10 @@ export declare type MutationConfluence_UnwatchSubCalendarArgs = {
|
|
|
88204
88743
|
cloudId: Scalars['ID']['input'];
|
|
88205
88744
|
input: ConfluenceUnwatchSubCalendarInput;
|
|
88206
88745
|
};
|
|
88746
|
+
export declare type MutationConfluence_UpdateAnswerArgs = {
|
|
88747
|
+
cloudId: Scalars['ID']['input'];
|
|
88748
|
+
input: ConfluenceUpdateAnswerInput;
|
|
88749
|
+
};
|
|
88207
88750
|
export declare type MutationConfluence_UpdateCalendarViewArgs = {
|
|
88208
88751
|
cloudId: Scalars['ID']['input'];
|
|
88209
88752
|
input: ConfluenceUpdateCalendarViewInput;
|
|
@@ -88212,6 +88755,10 @@ export declare type MutationConfluence_UpdateContentAccessRequestArgs = {
|
|
|
88212
88755
|
cloudId: Scalars['ID']['input'];
|
|
88213
88756
|
updateContentAccessRequestInput: ConfluenceUpdateContentAccessRequestInput;
|
|
88214
88757
|
};
|
|
88758
|
+
export declare type MutationConfluence_UpdateCustomContentPermissionsArgs = {
|
|
88759
|
+
cloudId: Scalars['ID']['input'];
|
|
88760
|
+
input: ConfluenceUpdateCustomContentPermissionsInput;
|
|
88761
|
+
};
|
|
88215
88762
|
export declare type MutationConfluence_UpdateCustomRoleArgs = {
|
|
88216
88763
|
cloudId: Scalars['ID']['input'];
|
|
88217
88764
|
input: ConfluenceUpdateCustomRoleInput;
|
|
@@ -88224,6 +88771,10 @@ export declare type MutationConfluence_UpdateNav4OptInArgs = {
|
|
|
88224
88771
|
cloudId: Scalars['ID']['input'];
|
|
88225
88772
|
input: ConfluenceUpdateNav4OptInInput;
|
|
88226
88773
|
};
|
|
88774
|
+
export declare type MutationConfluence_UpdateQuestionArgs = {
|
|
88775
|
+
cloudId: Scalars['ID']['input'];
|
|
88776
|
+
input: ConfluenceUpdateQuestionInput;
|
|
88777
|
+
};
|
|
88227
88778
|
export declare type MutationConfluence_UpdateSubCalendarHiddenEventsArgs = {
|
|
88228
88779
|
cloudId: Scalars['ID']['input'];
|
|
88229
88780
|
input: Array<ConfluenceUpdateSubCalendarHiddenEventsInput>;
|
|
@@ -88236,6 +88787,10 @@ export declare type MutationConfluence_UpdateTopicArgs = {
|
|
|
88236
88787
|
cloudId: Scalars['ID']['input'];
|
|
88237
88788
|
input: ConfluenceUpdateTopicInput;
|
|
88238
88789
|
};
|
|
88790
|
+
export declare type MutationConfluence_UpdateVoteArgs = {
|
|
88791
|
+
cloudId: Scalars['ID']['input'];
|
|
88792
|
+
input: ConfluenceUpdateVoteInput;
|
|
88793
|
+
};
|
|
88239
88794
|
export declare type MutationConfluence_WatchLabelArgs = {
|
|
88240
88795
|
cloudId: Scalars['ID']['input'];
|
|
88241
88796
|
input: ConfluenceLabelWatchInput;
|
|
@@ -88839,6 +89394,9 @@ export declare type MutationJira_AddTimelineIssueLinkArgs = {
|
|
|
88839
89394
|
cloudId: Scalars['ID']['input'];
|
|
88840
89395
|
input: JiraAddTimelineIssueLinkInput;
|
|
88841
89396
|
};
|
|
89397
|
+
export declare type MutationJira_ApplySuggestionActionsArgs = {
|
|
89398
|
+
input: Array<JiraApplySuggestionActionInput>;
|
|
89399
|
+
};
|
|
88842
89400
|
export declare type MutationJira_BulkSetBoardViewColumnStateArgs = {
|
|
88843
89401
|
input: JiraBulkSetBoardViewColumnStateInput;
|
|
88844
89402
|
};
|
|
@@ -88894,6 +89452,9 @@ export declare type MutationJira_DiscardUserBoardViewConfigArgs = {
|
|
|
88894
89452
|
export declare type MutationJira_DiscardUserIssueSearchConfigArgs = {
|
|
88895
89453
|
input: JiraDiscardUserIssueSearchConfigInput;
|
|
88896
89454
|
};
|
|
89455
|
+
export declare type MutationJira_DismissSuggestionsArgs = {
|
|
89456
|
+
input: JiraDismissSuggestionsInput;
|
|
89457
|
+
};
|
|
88897
89458
|
export declare type MutationJira_DragAndDropBoardViewIssueArgs = {
|
|
88898
89459
|
input: JiraDragAndDropBoardViewIssueInput;
|
|
88899
89460
|
};
|
|
@@ -89024,6 +89585,11 @@ export declare type MutationJira_UpdateSchemeFieldPerWorkTypeCustomizationsArgs
|
|
|
89024
89585
|
cloudId: Scalars['ID']['input'];
|
|
89025
89586
|
input?: InputMaybe<JiraFieldWorkTypeCustomizationsInput>;
|
|
89026
89587
|
};
|
|
89588
|
+
export declare type MutationJsmChannels_UpdateExperienceConfigurationArgs = {
|
|
89589
|
+
experience: JsmChannelsExperience;
|
|
89590
|
+
input: JsmChannelsExperienceConfigurationInput;
|
|
89591
|
+
jiraProjectAri: Scalars['ID']['input'];
|
|
89592
|
+
};
|
|
89027
89593
|
export declare type MutationKnowledgeBaseArgs = {
|
|
89028
89594
|
cloudId: Scalars['ID']['input'];
|
|
89029
89595
|
};
|
|
@@ -92303,7 +92869,6 @@ export declare enum PrincipalFilterType {
|
|
|
92303
92869
|
App = "APP",
|
|
92304
92870
|
Group = "GROUP",
|
|
92305
92871
|
Guest = "GUEST",
|
|
92306
|
-
Team = "TEAM",
|
|
92307
92872
|
User = "USER",
|
|
92308
92873
|
UserClass = "USER_CLASS"
|
|
92309
92874
|
}
|
|
@@ -92595,7 +93160,7 @@ export declare type PublishedContentProperties = {
|
|
|
92595
93160
|
coverPictureWidth?: Maybe<Scalars['String']['output']>;
|
|
92596
93161
|
defaultTitleEmoji?: Maybe<Scalars['String']['output']>;
|
|
92597
93162
|
externalVersionId?: Maybe<Scalars['String']['output']>;
|
|
92598
|
-
generatedBy?: Maybe<
|
|
93163
|
+
generatedBy?: Maybe<Scalars['String']['output']>;
|
|
92599
93164
|
versionContainsAIContent?: Maybe<Scalars['Boolean']['output']>;
|
|
92600
93165
|
};
|
|
92601
93166
|
export declare type PullRequestStatusInTimeRangeQueryFilter = {
|
|
@@ -92803,7 +93368,11 @@ export declare type Query = {
|
|
|
92803
93368
|
compass?: Maybe<CompassCatalogQueryApi>;
|
|
92804
93369
|
confluence?: Maybe<ConfluenceQueryApi>;
|
|
92805
93370
|
confluenceUsers?: Maybe<PaginatedPersonList>;
|
|
93371
|
+
confluence_answer?: Maybe<ConfluenceAnswer>;
|
|
93372
|
+
confluence_answers?: Maybe<Array<Maybe<ConfluenceAnswer>>>;
|
|
93373
|
+
confluence_answersForQuestion?: Maybe<ConfluenceAnswerConnection>;
|
|
92806
93374
|
confluence_applicationLinkByOauth2ClientId?: Maybe<ConfluenceApplicationLink>;
|
|
93375
|
+
confluence_applicationLinksByTypeId?: Maybe<Array<Maybe<ConfluenceApplicationLink>>>;
|
|
92807
93376
|
confluence_assignableSpaceRoles?: Maybe<Array<Maybe<ConfluenceAssignableSpaceRole>>>;
|
|
92808
93377
|
confluence_atlassianUser?: Maybe<AtlassianUser>;
|
|
92809
93378
|
confluence_calendarJiraDateFieldsByJql?: Maybe<Array<Maybe<ConfluenceCalendarJiraDateField>>>;
|
|
@@ -92831,11 +93400,13 @@ export declare type Query = {
|
|
|
92831
93400
|
confluence_externalCollaboratorsByCriteria?: Maybe<ConfluencePersonConnection>;
|
|
92832
93401
|
confluence_forgeExtensionsByType?: Maybe<Array<Maybe<ConfluenceForgeExtension>>>;
|
|
92833
93402
|
confluence_generateSpaceKey?: Maybe<ConfluenceGeneratedSpaceKey>;
|
|
93403
|
+
confluence_getAllApps?: Maybe<ConfluenceAppConnection>;
|
|
92834
93404
|
confluence_getWacTemplate?: Maybe<ConfluenceWacTemplate>;
|
|
92835
93405
|
confluence_hasClearPermissionForSpace?: Maybe<Scalars['Boolean']['output']>;
|
|
92836
93406
|
confluence_hasDivergedFromDefaultSpacePermissions?: Maybe<Scalars['Boolean']['output']>;
|
|
92837
93407
|
confluence_importsAll?: Maybe<Array<Maybe<ConfluenceImport>>>;
|
|
92838
93408
|
confluence_isPrivacyModeEnabled?: Maybe<ConfluencePrivacyMode>;
|
|
93409
|
+
confluence_isSpaceRoleAssignedToUserTypes?: Maybe<ConfluenceSpaceRoleAssigned>;
|
|
92839
93410
|
confluence_isWatchingLabel?: Maybe<ConfluenceLabelWatchStatus>;
|
|
92840
93411
|
confluence_latestKnowledgeGraphObjectV2?: Maybe<KnowledgeGraphObjectResponseV2>;
|
|
92841
93412
|
confluence_loomEntryPoints?: Maybe<ConfluenceLoomEntryPoints>;
|
|
@@ -92843,13 +93414,17 @@ export declare type Query = {
|
|
|
92843
93414
|
confluence_mediaTokenData?: Maybe<ConfluenceMediaTokenData>;
|
|
92844
93415
|
confluence_nbmScanList?: Maybe<ConfluenceNbmScanConnection>;
|
|
92845
93416
|
confluence_nbmScanResult?: Maybe<ConfluenceNbmScanResult>;
|
|
93417
|
+
confluence_nbmVerificationResult?: Maybe<ConfluenceNbmVerificationResultConnection>;
|
|
92846
93418
|
confluence_note?: Maybe<NoteResponse>;
|
|
92847
93419
|
confluence_notesByProductLink?: Maybe<NoteConnection>;
|
|
92848
93420
|
confluence_pdfExportDownloadLink?: Maybe<ConfluencePdfExportDownloadLink>;
|
|
92849
93421
|
confluence_pdfExportTask?: Maybe<ConfluencePdfExportTask>;
|
|
92850
93422
|
confluence_pendingRequestExists?: Maybe<ConfluencePendingAccessRequest>;
|
|
92851
93423
|
confluence_publicLinkSpaceHomePage?: Maybe<PublicLinkPage>;
|
|
93424
|
+
confluence_question?: Maybe<ConfluenceQuestion>;
|
|
93425
|
+
confluence_questions?: Maybe<Array<Maybe<ConfluenceQuestion>>>;
|
|
92852
93426
|
confluence_questionsConfiguration?: Maybe<ConfluenceQuestionsConfiguration>;
|
|
93427
|
+
confluence_questionsForSpace?: Maybe<ConfluenceQuestionConnection>;
|
|
92853
93428
|
confluence_reactedUsers?: Maybe<ConfluenceReactedUsersResponsePayload>;
|
|
92854
93429
|
confluence_reactionsSummary?: Maybe<ConfluenceReactionSummary>;
|
|
92855
93430
|
confluence_refreshMigrationMediaSession?: Maybe<ContentMediaSession>;
|
|
@@ -92917,11 +93492,21 @@ export declare type Query = {
|
|
|
92917
93492
|
cpls_capacityPlanningPeopleView?: Maybe<CplsCapacityPlanningPeopleView>;
|
|
92918
93493
|
cpls_customContributionTargets: Array<CplsCustomContributionTarget>;
|
|
92919
93494
|
cqlMetaData?: Maybe<Confluence_CqlMetaData>;
|
|
93495
|
+
crossProjectIssueMentionsInComments?: Maybe<GraphStoreCypherQueryV2Connection>;
|
|
93496
|
+
crossProjectIssuesLinkedToSamePullRequest?: Maybe<GraphStoreCypherQueryV2Connection>;
|
|
93497
|
+
crossProjectIssuesMentionedInExternalConversations?: Maybe<GraphStoreCypherQueryV2Connection>;
|
|
93498
|
+
crossProjectIssuesMentionedInExternalMessages?: Maybe<GraphStoreCypherQueryV2Connection>;
|
|
93499
|
+
crossProjectIssuesMentionedTogetherInConfluence?: Maybe<GraphStoreCypherQueryV2Connection>;
|
|
93500
|
+
crossProjectIssuesShareBlockerIssue?: Maybe<GraphStoreCypherQueryV2Connection>;
|
|
93501
|
+
crossProjectIssuesShareRelatedIssue?: Maybe<GraphStoreCypherQueryV2Connection>;
|
|
92920
93502
|
csmAi_generateCoachingTriggeringCondition: Scalars['String']['output'];
|
|
92921
93503
|
csmAi_getAgentVersion?: Maybe<CsmAiAgentVersionResult>;
|
|
92922
93504
|
csmAi_getAiHubByHelpCenterAri?: Maybe<CsmAiHubResult>;
|
|
93505
|
+
csmAi_getAvailableByod?: Maybe<CsmAiByodContentsResult>;
|
|
93506
|
+
csmAi_getSupportWidget?: Maybe<CsmAiWidgetConfigResult>;
|
|
92923
93507
|
currentConfluenceUser?: Maybe<CurrentConfluenceUser>;
|
|
92924
93508
|
customer360_customer?: Maybe<Customer360Customer>;
|
|
93509
|
+
customer360_customersById?: Maybe<Array<Maybe<Customer360Customer>>>;
|
|
92925
93510
|
customerService?: Maybe<CustomerServiceQueryApi>;
|
|
92926
93511
|
customerStories: ContentPlatformCustomerStorySearchConnection;
|
|
92927
93512
|
customerStory?: Maybe<ContentPlatformCustomerStory>;
|
|
@@ -93114,8 +93699,10 @@ export declare type Query = {
|
|
|
93114
93699
|
jira_projectLevelSidebarMenuCustomization?: Maybe<JiraProjectLevelSidebarMenuCustomizationResult>;
|
|
93115
93700
|
jira_projectTypesByIds?: Maybe<Array<Maybe<JiraProjectTypeDetails>>>;
|
|
93116
93701
|
jira_projectsSidebarMenu?: Maybe<JiraProjectsSidebarMenu>;
|
|
93702
|
+
jira_suggestionsByContext?: Maybe<JiraSuggestionsConnection>;
|
|
93117
93703
|
jsmChannels_conversationsByContainerAri?: Maybe<JsmChannelsConversationsByContainerAriResult>;
|
|
93118
93704
|
jsmChannels_conversationsByIds?: Maybe<Array<Maybe<JsmChannelsOrchestratorConversation>>>;
|
|
93705
|
+
jsmChannels_getExperienceConfigurationByProjectId: JsmChannelsExperienceConfigurationResult;
|
|
93119
93706
|
jsmChat?: Maybe<JsmChatQuery>;
|
|
93120
93707
|
jsw?: Maybe<JswQuery>;
|
|
93121
93708
|
knowledgeBase?: Maybe<KnowledgeBaseQueryApi>;
|
|
@@ -93884,6 +94471,7 @@ export declare type QueryCatchupEditMetadataForContentArgs = {
|
|
|
93884
94471
|
contentId: Scalars['ID']['input'];
|
|
93885
94472
|
contentType: CatchupContentType;
|
|
93886
94473
|
endTimeMs: Scalars['Long']['input'];
|
|
94474
|
+
timeframeLength?: InputMaybe<ConfluenceCatchupOverviewTimeframeLength>;
|
|
93887
94475
|
updateType?: InputMaybe<CatchupOverviewUpdateType>;
|
|
93888
94476
|
};
|
|
93889
94477
|
export declare type QueryCatchupGetLastViewedTimeArgs = {
|
|
@@ -93991,10 +94579,29 @@ export declare type QueryConfluenceUsersArgs = {
|
|
|
93991
94579
|
limit?: InputMaybe<Scalars['Int']['input']>;
|
|
93992
94580
|
start?: InputMaybe<Scalars['Int']['input']>;
|
|
93993
94581
|
};
|
|
94582
|
+
export declare type QueryConfluence_AnswerArgs = {
|
|
94583
|
+
cloudId: Scalars['ID']['input'];
|
|
94584
|
+
id: Scalars['Long']['input'];
|
|
94585
|
+
};
|
|
94586
|
+
export declare type QueryConfluence_AnswersArgs = {
|
|
94587
|
+
cloudId: Scalars['ID']['input'];
|
|
94588
|
+
ids: Array<InputMaybe<Scalars['Long']['input']>>;
|
|
94589
|
+
};
|
|
94590
|
+
export declare type QueryConfluence_AnswersForQuestionArgs = {
|
|
94591
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
94592
|
+
cloudId: Scalars['ID']['input'];
|
|
94593
|
+
filters?: InputMaybe<ConfluenceAnswerFilters>;
|
|
94594
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
94595
|
+
questionId: Scalars['Long']['input'];
|
|
94596
|
+
};
|
|
93994
94597
|
export declare type QueryConfluence_ApplicationLinkByOauth2ClientIdArgs = {
|
|
93995
94598
|
cloudId: Scalars['ID']['input'];
|
|
93996
94599
|
oauthClientId: Scalars['String']['input'];
|
|
93997
94600
|
};
|
|
94601
|
+
export declare type QueryConfluence_ApplicationLinksByTypeIdArgs = {
|
|
94602
|
+
cloudId: Scalars['ID']['input'];
|
|
94603
|
+
typeId: Scalars['String']['input'];
|
|
94604
|
+
};
|
|
93998
94605
|
export declare type QueryConfluence_AssignableSpaceRolesArgs = {
|
|
93999
94606
|
cloudId: Scalars['ID']['input'];
|
|
94000
94607
|
types: Array<InputMaybe<ConfluenceAssignableSpaceRolePrincipalType>>;
|
|
@@ -94131,6 +94738,11 @@ export declare type QueryConfluence_GenerateSpaceKeyArgs = {
|
|
|
94131
94738
|
cloudId: Scalars['ID']['input'];
|
|
94132
94739
|
spaceName?: InputMaybe<Scalars['String']['input']>;
|
|
94133
94740
|
};
|
|
94741
|
+
export declare type QueryConfluence_GetAllAppsArgs = {
|
|
94742
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
94743
|
+
cloudId: Scalars['ID']['input'];
|
|
94744
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
94745
|
+
};
|
|
94134
94746
|
export declare type QueryConfluence_GetWacTemplateArgs = {
|
|
94135
94747
|
cloudId: Scalars['ID']['input'];
|
|
94136
94748
|
};
|
|
@@ -94148,6 +94760,10 @@ export declare type QueryConfluence_ImportsAllArgs = {
|
|
|
94148
94760
|
export declare type QueryConfluence_IsPrivacyModeEnabledArgs = {
|
|
94149
94761
|
cloudId: Scalars['ID']['input'];
|
|
94150
94762
|
};
|
|
94763
|
+
export declare type QueryConfluence_IsSpaceRoleAssignedToUserTypesArgs = {
|
|
94764
|
+
cloudId: Scalars['ID']['input'];
|
|
94765
|
+
spaceRoleId: Scalars['String']['input'];
|
|
94766
|
+
};
|
|
94151
94767
|
export declare type QueryConfluence_IsWatchingLabelArgs = {
|
|
94152
94768
|
cloudId: Scalars['ID']['input'];
|
|
94153
94769
|
input: ConfluenceLabelWatchInput;
|
|
@@ -94179,6 +94795,12 @@ export declare type QueryConfluence_NbmScanResultArgs = {
|
|
|
94179
94795
|
cloudId: Scalars['ID']['input'];
|
|
94180
94796
|
scanId: Scalars['ID']['input'];
|
|
94181
94797
|
};
|
|
94798
|
+
export declare type QueryConfluence_NbmVerificationResultArgs = {
|
|
94799
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
94800
|
+
cloudId: Scalars['ID']['input'];
|
|
94801
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
94802
|
+
scanId: Scalars['ID']['input'];
|
|
94803
|
+
};
|
|
94182
94804
|
export declare type QueryConfluence_NoteArgs = {
|
|
94183
94805
|
id: Scalars['ID']['input'];
|
|
94184
94806
|
};
|
|
@@ -94205,9 +94827,24 @@ export declare type QueryConfluence_PublicLinkSpaceHomePageArgs = {
|
|
|
94205
94827
|
cloudId: Scalars['ID']['input'];
|
|
94206
94828
|
spaceKey: Scalars['String']['input'];
|
|
94207
94829
|
};
|
|
94830
|
+
export declare type QueryConfluence_QuestionArgs = {
|
|
94831
|
+
cloudId: Scalars['ID']['input'];
|
|
94832
|
+
id: Scalars['Long']['input'];
|
|
94833
|
+
};
|
|
94834
|
+
export declare type QueryConfluence_QuestionsArgs = {
|
|
94835
|
+
cloudId: Scalars['ID']['input'];
|
|
94836
|
+
ids: Array<InputMaybe<Scalars['Long']['input']>>;
|
|
94837
|
+
};
|
|
94208
94838
|
export declare type QueryConfluence_QuestionsConfigurationArgs = {
|
|
94209
94839
|
cloudId: Scalars['ID']['input'];
|
|
94210
94840
|
};
|
|
94841
|
+
export declare type QueryConfluence_QuestionsForSpaceArgs = {
|
|
94842
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
94843
|
+
cloudId: Scalars['ID']['input'];
|
|
94844
|
+
filters?: InputMaybe<ConfluenceQuestionFilters>;
|
|
94845
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
94846
|
+
spaceId: Scalars['Long']['input'];
|
|
94847
|
+
};
|
|
94211
94848
|
export declare type QueryConfluence_ReactedUsersArgs = {
|
|
94212
94849
|
cloudId: Scalars['ID']['input'];
|
|
94213
94850
|
input: ConfluenceReactedUsersInput;
|
|
@@ -94591,6 +95228,41 @@ export declare type QueryCpls_CapacityPlanningPeopleViewArgs = {
|
|
|
94591
95228
|
export declare type QueryCpls_CustomContributionTargetsArgs = {
|
|
94592
95229
|
ids: Array<Scalars['ID']['input']>;
|
|
94593
95230
|
};
|
|
95231
|
+
export declare type QueryCrossProjectIssueMentionsInCommentsArgs = {
|
|
95232
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
95233
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
95234
|
+
projectId: Scalars['ID']['input'];
|
|
95235
|
+
};
|
|
95236
|
+
export declare type QueryCrossProjectIssuesLinkedToSamePullRequestArgs = {
|
|
95237
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
95238
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
95239
|
+
projectId: Scalars['ID']['input'];
|
|
95240
|
+
};
|
|
95241
|
+
export declare type QueryCrossProjectIssuesMentionedInExternalConversationsArgs = {
|
|
95242
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
95243
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
95244
|
+
projectId: Scalars['ID']['input'];
|
|
95245
|
+
};
|
|
95246
|
+
export declare type QueryCrossProjectIssuesMentionedInExternalMessagesArgs = {
|
|
95247
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
95248
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
95249
|
+
projectId: Scalars['ID']['input'];
|
|
95250
|
+
};
|
|
95251
|
+
export declare type QueryCrossProjectIssuesMentionedTogetherInConfluenceArgs = {
|
|
95252
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
95253
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
95254
|
+
projectId: Scalars['ID']['input'];
|
|
95255
|
+
};
|
|
95256
|
+
export declare type QueryCrossProjectIssuesShareBlockerIssueArgs = {
|
|
95257
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
95258
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
95259
|
+
projectId: Scalars['ID']['input'];
|
|
95260
|
+
};
|
|
95261
|
+
export declare type QueryCrossProjectIssuesShareRelatedIssueArgs = {
|
|
95262
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
95263
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
95264
|
+
projectId: Scalars['ID']['input'];
|
|
95265
|
+
};
|
|
94594
95266
|
export declare type QueryCsmAi_GenerateCoachingTriggeringConditionArgs = {
|
|
94595
95267
|
conversationId: Scalars['ID']['input'];
|
|
94596
95268
|
helpCenterAri: Scalars['ID']['input'];
|
|
@@ -94604,9 +95276,18 @@ export declare type QueryCsmAi_GetAgentVersionArgs = {
|
|
|
94604
95276
|
export declare type QueryCsmAi_GetAiHubByHelpCenterAriArgs = {
|
|
94605
95277
|
helpCenterAri: Scalars['ID']['input'];
|
|
94606
95278
|
};
|
|
95279
|
+
export declare type QueryCsmAi_GetAvailableByodArgs = {
|
|
95280
|
+
helpCenterAri: Scalars['ID']['input'];
|
|
95281
|
+
};
|
|
95282
|
+
export declare type QueryCsmAi_GetSupportWidgetArgs = {
|
|
95283
|
+
helpCenterAri: Scalars['ID']['input'];
|
|
95284
|
+
};
|
|
94607
95285
|
export declare type QueryCustomer360_CustomerArgs = {
|
|
94608
95286
|
domain: Scalars['String']['input'];
|
|
94609
95287
|
};
|
|
95288
|
+
export declare type QueryCustomer360_CustomersByIdArgs = {
|
|
95289
|
+
ids: Array<Scalars['ID']['input']>;
|
|
95290
|
+
};
|
|
94610
95291
|
export declare type QueryCustomerServiceArgs = {
|
|
94611
95292
|
cloudId: Scalars['ID']['input'];
|
|
94612
95293
|
};
|
|
@@ -95311,6 +95992,9 @@ export declare type QueryJira_ProjectsSidebarMenuArgs = {
|
|
|
95311
95992
|
cloudId: Scalars['ID']['input'];
|
|
95312
95993
|
currentURL?: InputMaybe<Scalars['URL']['input']>;
|
|
95313
95994
|
};
|
|
95995
|
+
export declare type QueryJira_SuggestionsByContextArgs = {
|
|
95996
|
+
input: JiraSuggestionsByContextInput;
|
|
95997
|
+
};
|
|
95314
95998
|
export declare type QueryJsmChannels_ConversationsByContainerAriArgs = {
|
|
95315
95999
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
95316
96000
|
containerAri: Scalars['ID']['input'];
|
|
@@ -95320,6 +96004,10 @@ export declare type QueryJsmChannels_ConversationsByContainerAriArgs = {
|
|
|
95320
96004
|
export declare type QueryJsmChannels_ConversationsByIdsArgs = {
|
|
95321
96005
|
ids: Array<Scalars['ID']['input']>;
|
|
95322
96006
|
};
|
|
96007
|
+
export declare type QueryJsmChannels_GetExperienceConfigurationByProjectIdArgs = {
|
|
96008
|
+
experience: JsmChannelsExperience;
|
|
96009
|
+
jiraProjectAri: Scalars['ID']['input'];
|
|
96010
|
+
};
|
|
95323
96011
|
export declare type QueryKnowledgeBaseArgs = {
|
|
95324
96012
|
cloudId: Scalars['ID']['input'];
|
|
95325
96013
|
};
|
|
@@ -95964,6 +96652,7 @@ export declare type QuerySpacePopularFeedArgs = {
|
|
|
95964
96652
|
};
|
|
95965
96653
|
export declare type QuerySpaceRoleAssignmentsByCriteriaArgs = {
|
|
95966
96654
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
96655
|
+
filterOutGroupTypes?: InputMaybe<Array<InputMaybe<ConfluenceGroupUsageType>>>;
|
|
95967
96656
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
95968
96657
|
principalTypes?: InputMaybe<Array<InputMaybe<PrincipalFilterType>>>;
|
|
95969
96658
|
spaceId: Scalars['Long']['input'];
|
|
@@ -98035,7 +98724,6 @@ export declare enum RoleAssignmentPrincipalType {
|
|
|
98035
98724
|
AccessClass = "ACCESS_CLASS",
|
|
98036
98725
|
App = "APP",
|
|
98037
98726
|
Group = "GROUP",
|
|
98038
|
-
Team = "TEAM",
|
|
98039
98727
|
User = "USER"
|
|
98040
98728
|
}
|
|
98041
98729
|
export declare type RunImportError = {
|
|
@@ -100694,6 +101382,7 @@ export declare type ShepherdQuery = {
|
|
|
100694
101382
|
classifications?: Maybe<ShepherdClassificationsQueries>;
|
|
100695
101383
|
enabledWorkspaceByUserContext?: Maybe<ShepherdEnabledWorkspaceByUserContext>;
|
|
100696
101384
|
exclusions?: Maybe<ShepherdExclusionsQueries>;
|
|
101385
|
+
serviceShardAppInfo?: Maybe<ShepherdServiceShardAppInfoResult>;
|
|
100697
101386
|
shepherdActivity?: Maybe<ShepherdActivityResult>;
|
|
100698
101387
|
shepherdActor?: Maybe<ShepherdActorResult>;
|
|
100699
101388
|
shepherdAlert?: Maybe<ShepherdAlertResult>;
|
|
@@ -100704,6 +101393,9 @@ export declare type ShepherdQuery = {
|
|
|
100704
101393
|
workspaceByOrgId?: Maybe<ShepherdWorkspaceByOrgId>;
|
|
100705
101394
|
workspacesByUserContext?: Maybe<ShepherdWorkspaceResult>;
|
|
100706
101395
|
};
|
|
101396
|
+
export declare type ShepherdQueryServiceShardAppInfoArgs = {
|
|
101397
|
+
workspaceAri: Scalars['ID']['input'];
|
|
101398
|
+
};
|
|
100707
101399
|
export declare type ShepherdQueryShepherdActivityArgs = {
|
|
100708
101400
|
actions?: InputMaybe<Array<InputMaybe<ShepherdActionType>>>;
|
|
100709
101401
|
actor?: InputMaybe<Scalars['ID']['input']>;
|
|
@@ -100926,6 +101618,14 @@ export declare type ShepherdSearchQuery = {
|
|
|
100926
101618
|
searchOrigin?: Maybe<ShepherdSearchOrigin>;
|
|
100927
101619
|
suspiciousSearchTerms?: Maybe<Array<ShepherdSuspiciousSearchTerm>>;
|
|
100928
101620
|
};
|
|
101621
|
+
export declare type ShepherdServiceShardAppInfo = {
|
|
101622
|
+
__typename?: 'ShepherdServiceShardAppInfo';
|
|
101623
|
+
apiVersion: Scalars['Int']['output'];
|
|
101624
|
+
commitHash?: Maybe<Scalars['String']['output']>;
|
|
101625
|
+
microsEnvironment: Scalars['String']['output'];
|
|
101626
|
+
workspaceAri: Scalars['ID']['output'];
|
|
101627
|
+
};
|
|
101628
|
+
export declare type ShepherdServiceShardAppInfoResult = QueryError | ShepherdServiceShardAppInfo;
|
|
100929
101629
|
export declare type ShepherdSite = {
|
|
100930
101630
|
__typename?: 'ShepherdSite';
|
|
100931
101631
|
cloudId: Scalars['ID']['output'];
|
|
@@ -102201,6 +102901,7 @@ export declare type SpaceRoleGroupPrincipal = SpaceRolePrincipal & {
|
|
|
102201
102901
|
__typename?: 'SpaceRoleGroupPrincipal';
|
|
102202
102902
|
displayName: Scalars['String']['output'];
|
|
102203
102903
|
principalId: Scalars['ID']['output'];
|
|
102904
|
+
usageType?: Maybe<ConfluenceGroupUsageType>;
|
|
102204
102905
|
};
|
|
102205
102906
|
export declare type SpaceRoleGuestPrincipal = SpaceRolePrincipal & {
|
|
102206
102907
|
__typename?: 'SpaceRoleGuestPrincipal';
|
|
@@ -103588,11 +104289,13 @@ export declare type Subscription = {
|
|
|
103588
104289
|
devai_onAutodevJobLogGroupsUpdated?: Maybe<DevAiAutodevLogGroupConnection>;
|
|
103589
104290
|
devai_onAutodevJobLogsListUpdated?: Maybe<DevAiAutodevLogConnection>;
|
|
103590
104291
|
devai_onAutodevJobLogsUpdated?: Maybe<DevAiAutodevLogEdge>;
|
|
104292
|
+
devai_onBoysenberrySessionCreatedByIssueKeyAndCloudId?: Maybe<DevAiRovoDevSession>;
|
|
103591
104293
|
devai_onBoysenberrySessionCreatedOnJiraIssue?: Maybe<DevAiRovoDevSessionConnection>;
|
|
103592
104294
|
devai_onBoysenberrySessionUpdated?: Maybe<DevAiRovoDevSession>;
|
|
103593
104295
|
devai_onTechnicalPlannerJobUpdated?: Maybe<DevAiTechnicalPlannerJob>;
|
|
103594
104296
|
ecosystem?: Maybe<EcosystemSubscription>;
|
|
103595
104297
|
jira?: Maybe<JiraSubscription>;
|
|
104298
|
+
jiraProductDiscovery?: Maybe<JpdSubscriptions>;
|
|
103596
104299
|
jsmChat?: Maybe<JsmChatSubscription>;
|
|
103597
104300
|
mercury?: Maybe<MercurySubscriptionApi>;
|
|
103598
104301
|
migration: MigrationSubscription;
|
|
@@ -103617,8 +104320,14 @@ export declare type SubscriptionDevai_OnAutodevJobLogsUpdatedArgs = {
|
|
|
103617
104320
|
cloudId: Scalars['ID']['input'];
|
|
103618
104321
|
jobId: Scalars['ID']['input'];
|
|
103619
104322
|
};
|
|
104323
|
+
export declare type SubscriptionDevai_OnBoysenberrySessionCreatedByIssueKeyAndCloudIdArgs = {
|
|
104324
|
+
cloudId: Scalars['ID']['input'];
|
|
104325
|
+
issueKey: Scalars['String']['input'];
|
|
104326
|
+
};
|
|
103620
104327
|
export declare type SubscriptionDevai_OnBoysenberrySessionCreatedOnJiraIssueArgs = {
|
|
104328
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
103621
104329
|
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
104330
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
103622
104331
|
issueKey?: InputMaybe<Scalars['String']['input']>;
|
|
103623
104332
|
};
|
|
103624
104333
|
export declare type SubscriptionDevai_OnBoysenberrySessionUpdatedArgs = {
|
|
@@ -104306,6 +105015,11 @@ export declare type TeamMutationUpdateRoleAssignmentsArgs = {
|
|
|
104306
105015
|
principalsToRemove: Array<InputMaybe<Scalars['ID']['input']>>;
|
|
104307
105016
|
role: TeamRole;
|
|
104308
105017
|
};
|
|
105018
|
+
export declare enum TeamPermission {
|
|
105019
|
+
FullRead = "FULL_READ",
|
|
105020
|
+
FullWrite = "FULL_WRITE",
|
|
105021
|
+
None = "NONE"
|
|
105022
|
+
}
|
|
104309
105023
|
export declare type TeamPrincipal = {
|
|
104310
105024
|
__typename?: 'TeamPrincipal';
|
|
104311
105025
|
principalId?: Maybe<Scalars['ID']['output']>;
|
|
@@ -104447,6 +105161,7 @@ export declare type TeamV2 = Node & {
|
|
|
104447
105161
|
members?: Maybe<TeamMemberConnectionV2>;
|
|
104448
105162
|
membershipSettings?: Maybe<TeamMembershipSettings>;
|
|
104449
105163
|
organizationId?: Maybe<Scalars['ID']['output']>;
|
|
105164
|
+
permission?: Maybe<TeamPermission>;
|
|
104450
105165
|
profileUrl?: Maybe<Scalars['String']['output']>;
|
|
104451
105166
|
smallAvatarImageUrl?: Maybe<Scalars['String']['output']>;
|
|
104452
105167
|
smallHeaderImageUrl?: Maybe<Scalars['String']['output']>;
|
|
@@ -107000,7 +107715,7 @@ export declare type TrelloApplication = {
|
|
|
107000
107715
|
objectId: Scalars['ID']['output'];
|
|
107001
107716
|
privacyUrl?: Maybe<Scalars['URL']['output']>;
|
|
107002
107717
|
public?: Maybe<Scalars['Boolean']['output']>;
|
|
107003
|
-
|
|
107718
|
+
supportContact?: Maybe<Scalars['String']['output']>;
|
|
107004
107719
|
tags?: Maybe<Array<Scalars['String']['output']>>;
|
|
107005
107720
|
usage?: Maybe<TrelloApplicationUsage>;
|
|
107006
107721
|
workspaceId?: Maybe<Scalars['ID']['output']>;
|
|
@@ -107127,6 +107842,10 @@ export declare type TrelloAttachmentUpdated = {
|
|
|
107127
107842
|
__typename?: 'TrelloAttachmentUpdated';
|
|
107128
107843
|
id: Scalars['ID']['output'];
|
|
107129
107844
|
};
|
|
107845
|
+
export declare type TrelloBaseBoardPrefs = {
|
|
107846
|
+
autoArchive?: Maybe<Scalars['Boolean']['output']>;
|
|
107847
|
+
background?: Maybe<TrelloBoardBackground>;
|
|
107848
|
+
};
|
|
107130
107849
|
export declare type TrelloBoard = Node & {
|
|
107131
107850
|
__typename?: 'TrelloBoard';
|
|
107132
107851
|
closed: Scalars['Boolean']['output'];
|
|
@@ -107335,7 +108054,7 @@ export declare type TrelloBoardPowerUpEdgeUpdated = {
|
|
|
107335
108054
|
export declare type TrelloBoardPowerUpFilterInput = {
|
|
107336
108055
|
access?: InputMaybe<Scalars['String']['input']>;
|
|
107337
108056
|
};
|
|
107338
|
-
export declare type TrelloBoardPrefs = {
|
|
108057
|
+
export declare type TrelloBoardPrefs = TrelloBaseBoardPrefs & {
|
|
107339
108058
|
__typename?: 'TrelloBoardPrefs';
|
|
107340
108059
|
autoArchive?: Maybe<Scalars['Boolean']['output']>;
|
|
107341
108060
|
background?: Maybe<TrelloBoardBackground>;
|
|
@@ -107406,6 +108125,7 @@ export declare type TrelloBoardUpdatedEdge = {
|
|
|
107406
108125
|
};
|
|
107407
108126
|
export declare type TrelloBoardViewer = {
|
|
107408
108127
|
__typename?: 'TrelloBoardViewer';
|
|
108128
|
+
aiBrowserExtensionEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
107409
108129
|
aiEmailEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
107410
108130
|
aiMSTeamsEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
107411
108131
|
aiSlackEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -108455,14 +109175,21 @@ export declare type TrelloInboxCardChecklistsArgs = {
|
|
|
108455
109175
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
108456
109176
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
108457
109177
|
};
|
|
108458
|
-
export declare type TrelloInboxPrefs = {
|
|
109178
|
+
export declare type TrelloInboxPrefs = TrelloBaseBoardPrefs & {
|
|
108459
109179
|
__typename?: 'TrelloInboxPrefs';
|
|
108460
109180
|
autoArchive?: Maybe<Scalars['Boolean']['output']>;
|
|
108461
109181
|
background?: Maybe<TrelloBoardBackground>;
|
|
108462
109182
|
};
|
|
108463
109183
|
export declare type TrelloInboxUpdated = {
|
|
108464
109184
|
__typename?: 'TrelloInboxUpdated';
|
|
109185
|
+
_deltas?: Maybe<Array<Scalars['String']['output']>>;
|
|
108465
109186
|
board: TrelloBoardUpdated;
|
|
109187
|
+
enterprise?: Maybe<TrelloEnterprise>;
|
|
109188
|
+
id?: Maybe<Scalars['ID']['output']>;
|
|
109189
|
+
lists?: Maybe<TrelloListUpdatedConnection>;
|
|
109190
|
+
objectId?: Maybe<Scalars['ID']['output']>;
|
|
109191
|
+
prefs?: Maybe<TrelloInboxPrefs>;
|
|
109192
|
+
workspace?: Maybe<TrelloBoardWorkspaceUpdated>;
|
|
108466
109193
|
};
|
|
108467
109194
|
export declare type TrelloJwmWorkspaceLink = {
|
|
108468
109195
|
__typename?: 'TrelloJwmWorkspaceLink';
|
|
@@ -108831,8 +109558,10 @@ export declare type TrelloMutationApi = {
|
|
|
108831
109558
|
unarchiveCard?: Maybe<TrelloUnarchiveCardPayload>;
|
|
108832
109559
|
unwatchCard?: Maybe<TrelloWatchCardPayload>;
|
|
108833
109560
|
updateAiRule?: Maybe<TrelloUpdateAiRulePayload>;
|
|
109561
|
+
updateApplicationBasicInformation?: Maybe<TrelloUpdateApplicationBasicInformationPayload>;
|
|
108834
109562
|
updateBoardIsTemplate?: Maybe<TrelloUpdateBoardIsTemplatePayload>;
|
|
108835
109563
|
updateBoardName?: Maybe<TrelloUpdateBoardNamePayload>;
|
|
109564
|
+
updateBoardViewerAIBrowserExtension?: Maybe<TrelloUpdateBoardViewerAiBrowserExtensionPayload>;
|
|
108836
109565
|
updateBoardViewerAIEmail?: Maybe<TrelloUpdateBoardViewerAiEmailPayload>;
|
|
108837
109566
|
updateBoardViewerAIMSTeams?: Maybe<TrelloUpdateBoardViewerAimsTeamsPayload>;
|
|
108838
109567
|
updateBoardViewerAISlack?: Maybe<TrelloUpdateBoardViewerAiSlackPayload>;
|
|
@@ -108842,6 +109571,7 @@ export declare type TrelloMutationApi = {
|
|
|
108842
109571
|
updateCardPositionOnPlannerCalendarEvent?: Maybe<TrelloUpdateCardPositionOnPlannerCalendarEventPayload>;
|
|
108843
109572
|
updateKeyboardShortcutsPref?: Maybe<TrelloUpdateKeyboardShortcutsPrefPayload>;
|
|
108844
109573
|
updateOAuth2Client?: Maybe<TrelloUpdateOAuth2ClientPayload>;
|
|
109574
|
+
updateWorkspaceTag?: Maybe<TrelloUpdateWorkspaceTagPayload>;
|
|
108845
109575
|
watchCard?: Maybe<TrelloWatchCardPayload>;
|
|
108846
109576
|
};
|
|
108847
109577
|
export declare type TrelloMutationApiAddBoardStarArgs = {
|
|
@@ -108919,12 +109649,18 @@ export declare type TrelloMutationApiUnwatchCardArgs = {
|
|
|
108919
109649
|
export declare type TrelloMutationApiUpdateAiRuleArgs = {
|
|
108920
109650
|
input: TrelloUpdateAiRuleInput;
|
|
108921
109651
|
};
|
|
109652
|
+
export declare type TrelloMutationApiUpdateApplicationBasicInformationArgs = {
|
|
109653
|
+
input: TrelloUpdateApplicationBasicInformationInput;
|
|
109654
|
+
};
|
|
108922
109655
|
export declare type TrelloMutationApiUpdateBoardIsTemplateArgs = {
|
|
108923
109656
|
input: TrelloUpdateBoardIsTemplateInput;
|
|
108924
109657
|
};
|
|
108925
109658
|
export declare type TrelloMutationApiUpdateBoardNameArgs = {
|
|
108926
109659
|
input: TrelloUpdateBoardNameInput;
|
|
108927
109660
|
};
|
|
109661
|
+
export declare type TrelloMutationApiUpdateBoardViewerAiBrowserExtensionArgs = {
|
|
109662
|
+
input: TrelloUpdateBoardViewerAiBrowserExtensionInput;
|
|
109663
|
+
};
|
|
108928
109664
|
export declare type TrelloMutationApiUpdateBoardViewerAiEmailArgs = {
|
|
108929
109665
|
input: TrelloUpdateBoardViewerAiEmailInput;
|
|
108930
109666
|
};
|
|
@@ -108952,6 +109688,9 @@ export declare type TrelloMutationApiUpdateKeyboardShortcutsPrefArgs = {
|
|
|
108952
109688
|
export declare type TrelloMutationApiUpdateOAuth2ClientArgs = {
|
|
108953
109689
|
input: TrelloUpdateOAuth2ClientInput;
|
|
108954
109690
|
};
|
|
109691
|
+
export declare type TrelloMutationApiUpdateWorkspaceTagArgs = {
|
|
109692
|
+
input: TrelloUpdateWorkspaceTagInput;
|
|
109693
|
+
};
|
|
108955
109694
|
export declare type TrelloMutationApiWatchCardArgs = {
|
|
108956
109695
|
input: TrelloWatchCardInput;
|
|
108957
109696
|
};
|
|
@@ -109434,6 +110173,7 @@ export declare type TrelloQueryApi = {
|
|
|
109434
110173
|
boardMirrorCardInfo?: Maybe<TrelloBoardMirrorCards>;
|
|
109435
110174
|
card?: Maybe<TrelloCard>;
|
|
109436
110175
|
cardBatch?: Maybe<TrelloCardBatch>;
|
|
110176
|
+
cardByShortLink?: Maybe<TrelloCard>;
|
|
109437
110177
|
echo?: Maybe<Scalars['String']['output']>;
|
|
109438
110178
|
echos?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
|
|
109439
110179
|
enabledPlannerCalendarsByAccountId?: Maybe<TrelloPlannerCalendarConnection>;
|
|
@@ -109482,6 +110222,9 @@ export declare type TrelloQueryApiCardArgs = {
|
|
|
109482
110222
|
export declare type TrelloQueryApiCardBatchArgs = {
|
|
109483
110223
|
id: Scalars['ID']['input'];
|
|
109484
110224
|
};
|
|
110225
|
+
export declare type TrelloQueryApiCardByShortLinkArgs = {
|
|
110226
|
+
shortLink: Scalars['TrelloShortLink']['input'];
|
|
110227
|
+
};
|
|
109485
110228
|
export declare type TrelloQueryApiEchosArgs = {
|
|
109486
110229
|
echo: Array<Scalars['String']['input']>;
|
|
109487
110230
|
};
|
|
@@ -109811,6 +110554,21 @@ export declare type TrelloUpdateAiRulePayload = Payload & {
|
|
|
109811
110554
|
errors?: Maybe<Array<MutationError>>;
|
|
109812
110555
|
success: Scalars['Boolean']['output'];
|
|
109813
110556
|
};
|
|
110557
|
+
export declare type TrelloUpdateApplicationBasicInformationInput = {
|
|
110558
|
+
author?: InputMaybe<Scalars['String']['input']>;
|
|
110559
|
+
categories?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
110560
|
+
email?: InputMaybe<Scalars['String']['input']>;
|
|
110561
|
+
icon?: InputMaybe<Scalars['String']['input']>;
|
|
110562
|
+
id: Scalars['ID']['input'];
|
|
110563
|
+
iframeConnectorUrl?: InputMaybe<Scalars['String']['input']>;
|
|
110564
|
+
supportContact?: InputMaybe<Scalars['String']['input']>;
|
|
110565
|
+
};
|
|
110566
|
+
export declare type TrelloUpdateApplicationBasicInformationPayload = Payload & {
|
|
110567
|
+
__typename?: 'TrelloUpdateApplicationBasicInformationPayload';
|
|
110568
|
+
application?: Maybe<TrelloApplication>;
|
|
110569
|
+
errors?: Maybe<Array<MutationError>>;
|
|
110570
|
+
success: Scalars['Boolean']['output'];
|
|
110571
|
+
};
|
|
109814
110572
|
export declare type TrelloUpdateBoardIsTemplateInput = {
|
|
109815
110573
|
boardId: Scalars['ID']['input'];
|
|
109816
110574
|
value: Scalars['Boolean']['input'];
|
|
@@ -109831,6 +110589,16 @@ export declare type TrelloUpdateBoardNamePayload = Payload & {
|
|
|
109831
110589
|
errors?: Maybe<Array<MutationError>>;
|
|
109832
110590
|
success: Scalars['Boolean']['output'];
|
|
109833
110591
|
};
|
|
110592
|
+
export declare type TrelloUpdateBoardViewerAiBrowserExtensionInput = {
|
|
110593
|
+
boardId: Scalars['ID']['input'];
|
|
110594
|
+
value: Scalars['Boolean']['input'];
|
|
110595
|
+
};
|
|
110596
|
+
export declare type TrelloUpdateBoardViewerAiBrowserExtensionPayload = Payload & {
|
|
110597
|
+
__typename?: 'TrelloUpdateBoardViewerAIBrowserExtensionPayload';
|
|
110598
|
+
errors?: Maybe<Array<MutationError>>;
|
|
110599
|
+
success: Scalars['Boolean']['output'];
|
|
110600
|
+
viewer?: Maybe<TrelloBoardViewer>;
|
|
110601
|
+
};
|
|
109834
110602
|
export declare type TrelloUpdateBoardViewerAiEmailInput = {
|
|
109835
110603
|
boardId: Scalars['ID']['input'];
|
|
109836
110604
|
value: Scalars['Boolean']['input'];
|
|
@@ -110035,6 +110803,17 @@ export declare type TrelloUpdateOAuth2ClientPayload = Payload & {
|
|
|
110035
110803
|
scopes?: Maybe<Array<Scalars['String']['output']>>;
|
|
110036
110804
|
success: Scalars['Boolean']['output'];
|
|
110037
110805
|
};
|
|
110806
|
+
export declare type TrelloUpdateWorkspaceTagInput = {
|
|
110807
|
+
name: Scalars['String']['input'];
|
|
110808
|
+
tagId: Scalars['ID']['input'];
|
|
110809
|
+
workspaceId: Scalars['ID']['input'];
|
|
110810
|
+
};
|
|
110811
|
+
export declare type TrelloUpdateWorkspaceTagPayload = Payload & {
|
|
110812
|
+
__typename?: 'TrelloUpdateWorkspaceTagPayload';
|
|
110813
|
+
errors?: Maybe<Array<MutationError>>;
|
|
110814
|
+
success: Scalars['Boolean']['output'];
|
|
110815
|
+
workspace?: Maybe<TrelloWorkspace>;
|
|
110816
|
+
};
|
|
110038
110817
|
export declare type TrelloUploadedBackground = {
|
|
110039
110818
|
__typename?: 'TrelloUploadedBackground';
|
|
110040
110819
|
objectId: Scalars['ID']['output'];
|