@forge/cli-shared 8.5.0-next.6 → 8.5.0-next.8
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 +18 -0
- package/out/graphql/graphql-types.d.ts +1204 -287
- package/out/graphql/graphql-types.d.ts.map +1 -1
- package/out/graphql/graphql-types.js +121 -31
- 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/assistant-cli.d.ts +14 -0
- package/out/shared/assistant-cli.d.ts.map +1 -0
- package/out/shared/assistant-cli.js +73 -0
- package/out/shared/error-handling.d.ts +5 -1
- package/out/shared/error-handling.d.ts.map +1 -1
- package/out/shared/error-handling.js +5 -1
- package/out/shared/index.d.ts +1 -0
- package/out/shared/index.d.ts.map +1 -1
- package/out/shared/index.js +1 -0
- package/out/shared/test.d.ts.map +1 -1
- package/out/shared/test.js +1 -2
- package/out/tunnel/tunnel-options.d.ts +1 -0
- package/out/tunnel/tunnel-options.d.ts.map +1 -1
- package/out/ui/text.d.ts +15 -1
- package/out/ui/text.d.ts.map +1 -1
- package/out/ui/text.js +41 -25
- 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'];
|
|
@@ -1992,6 +1994,7 @@ export declare type AgentStudioActionConfiguration = {
|
|
|
1992
1994
|
};
|
|
1993
1995
|
export declare type AgentStudioActionConfigurationInput = {
|
|
1994
1996
|
actions?: InputMaybe<Array<AgentStudioActionInput>>;
|
|
1997
|
+
etag?: InputMaybe<Scalars['String']['input']>;
|
|
1995
1998
|
};
|
|
1996
1999
|
export declare type AgentStudioActionInput = {
|
|
1997
2000
|
actionKey: Scalars['String']['input'];
|
|
@@ -2027,6 +2030,7 @@ export declare type AgentStudioAddGroupsToCreatePermissionPayload = Payload & {
|
|
|
2027
2030
|
export declare type AgentStudioAgent = {
|
|
2028
2031
|
connectedChannels?: Maybe<AgentStudioConnectedChannels>;
|
|
2029
2032
|
description?: Maybe<Scalars['String']['output']>;
|
|
2033
|
+
etag?: Maybe<Scalars['String']['output']>;
|
|
2030
2034
|
id: Scalars['ID']['output'];
|
|
2031
2035
|
knowledgeSources?: Maybe<AgentStudioKnowledgeConfiguration>;
|
|
2032
2036
|
name?: Maybe<Scalars['String']['output']>;
|
|
@@ -2089,6 +2093,7 @@ export declare type AgentStudioAssistant = AgentStudioAgent & Node & {
|
|
|
2089
2093
|
creator?: Maybe<User>;
|
|
2090
2094
|
creatorType?: Maybe<Scalars['String']['output']>;
|
|
2091
2095
|
description?: Maybe<Scalars['String']['output']>;
|
|
2096
|
+
etag?: Maybe<Scalars['String']['output']>;
|
|
2092
2097
|
externalConfigReference?: Maybe<Scalars['String']['output']>;
|
|
2093
2098
|
icon?: Maybe<Scalars['String']['output']>;
|
|
2094
2099
|
id: Scalars['ID']['output'];
|
|
@@ -2113,6 +2118,7 @@ export declare type AgentStudioAssistantScenario = AgentStudioScenario & Node &
|
|
|
2113
2118
|
isValid: AgentStudioScenarioValidation;
|
|
2114
2119
|
knowledgeSources?: Maybe<AgentStudioKnowledgeConfiguration>;
|
|
2115
2120
|
name: Scalars['String']['output'];
|
|
2121
|
+
tools?: Maybe<Array<AgentStudioTool>>;
|
|
2116
2122
|
};
|
|
2117
2123
|
export declare type AgentStudioChannel = {
|
|
2118
2124
|
connected?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -2235,6 +2241,7 @@ export declare type AgentStudioKnowledgeConfiguration = {
|
|
|
2235
2241
|
};
|
|
2236
2242
|
export declare type AgentStudioKnowledgeConfigurationInput = {
|
|
2237
2243
|
enabled?: InputMaybe<Scalars['Boolean']['input']>;
|
|
2244
|
+
etag?: InputMaybe<Scalars['String']['input']>;
|
|
2238
2245
|
sources?: InputMaybe<Array<AgentStudioKnowledgeSourceInput>>;
|
|
2239
2246
|
};
|
|
2240
2247
|
export declare type AgentStudioKnowledgeFilter = AgentStudioConfluenceKnowledgeFilter | AgentStudioJiraKnowledgeFilter | AgentStudioJsmKnowledgeFilter | AgentStudioSlackKnowledgeFilter;
|
|
@@ -2278,6 +2285,7 @@ export declare type AgentStudioScenario = {
|
|
|
2278
2285
|
isValid: AgentStudioScenarioValidation;
|
|
2279
2286
|
knowledgeSources?: Maybe<AgentStudioKnowledgeConfiguration>;
|
|
2280
2287
|
name: Scalars['String']['output'];
|
|
2288
|
+
tools?: Maybe<Array<AgentStudioTool>>;
|
|
2281
2289
|
};
|
|
2282
2290
|
export declare type AgentStudioScenarioInput = {
|
|
2283
2291
|
actions?: InputMaybe<Array<InputMaybe<AgentStudioActionInput>>>;
|
|
@@ -2287,6 +2295,7 @@ export declare type AgentStudioScenarioInput = {
|
|
|
2287
2295
|
isDefault?: InputMaybe<Scalars['Boolean']['input']>;
|
|
2288
2296
|
knowledgeSources?: InputMaybe<AgentStudioKnowledgeConfigurationInput>;
|
|
2289
2297
|
name?: InputMaybe<Scalars['String']['input']>;
|
|
2298
|
+
tools?: InputMaybe<Array<AgentStudioToolInput>>;
|
|
2290
2299
|
};
|
|
2291
2300
|
export declare type AgentStudioScenarioResult = AgentStudioAssistantScenario | QueryError;
|
|
2292
2301
|
export declare type AgentStudioScenarioValidateInput = {
|
|
@@ -2344,6 +2353,7 @@ export declare type AgentStudioServiceAgent = AgentStudioAgent & Node & {
|
|
|
2344
2353
|
connectedChannels?: Maybe<AgentStudioConnectedChannels>;
|
|
2345
2354
|
defaultJiraRequestTypeId?: Maybe<Scalars['String']['output']>;
|
|
2346
2355
|
description?: Maybe<Scalars['String']['output']>;
|
|
2356
|
+
etag?: Maybe<Scalars['String']['output']>;
|
|
2347
2357
|
id: Scalars['ID']['output'];
|
|
2348
2358
|
knowledgeSources?: Maybe<AgentStudioKnowledgeConfiguration>;
|
|
2349
2359
|
linkedJiraProject?: Maybe<JiraProject>;
|
|
@@ -2390,6 +2400,8 @@ export declare type AgentStudioTeamsChannelDetails = {
|
|
|
2390
2400
|
};
|
|
2391
2401
|
export declare type AgentStudioTool = {
|
|
2392
2402
|
__typename?: 'AgentStudioTool';
|
|
2403
|
+
definitionId?: Maybe<Scalars['String']['output']>;
|
|
2404
|
+
definitionSource?: Maybe<AgentStudioToolDefinitionSource>;
|
|
2393
2405
|
description?: Maybe<Scalars['String']['output']>;
|
|
2394
2406
|
displayName?: Maybe<Scalars['String']['output']>;
|
|
2395
2407
|
iconUrl?: Maybe<Scalars['String']['output']>;
|
|
@@ -2409,9 +2421,9 @@ export declare type AgentStudioToolEdge = {
|
|
|
2409
2421
|
node?: Maybe<AgentStudioTool>;
|
|
2410
2422
|
};
|
|
2411
2423
|
export declare type AgentStudioToolInput = {
|
|
2412
|
-
configId?: InputMaybe<Scalars['String']['input']>;
|
|
2413
2424
|
definitionId: Scalars['String']['input'];
|
|
2414
2425
|
definitionSource: AgentStudioToolDefinitionSource;
|
|
2426
|
+
toolId?: InputMaybe<Scalars['String']['input']>;
|
|
2415
2427
|
};
|
|
2416
2428
|
export declare type AgentStudioToolIntegration = {
|
|
2417
2429
|
__typename?: 'AgentStudioToolIntegration';
|
|
@@ -2452,6 +2464,7 @@ export declare type AgentStudioUpdateAgentDetailsInput = {
|
|
|
2452
2464
|
creatorId?: InputMaybe<Scalars['ID']['input']>;
|
|
2453
2465
|
defaultJiraRequestTypeId?: InputMaybe<Scalars['String']['input']>;
|
|
2454
2466
|
description?: InputMaybe<Scalars['String']['input']>;
|
|
2467
|
+
etag?: InputMaybe<Scalars['String']['input']>;
|
|
2455
2468
|
instructions?: InputMaybe<Scalars['String']['input']>;
|
|
2456
2469
|
name?: InputMaybe<Scalars['String']['input']>;
|
|
2457
2470
|
};
|
|
@@ -2479,6 +2492,7 @@ export declare type AgentStudioUpdateAgentPermissionPayload = Payload & {
|
|
|
2479
2492
|
};
|
|
2480
2493
|
export declare type AgentStudioUpdateConversationStartersInput = {
|
|
2481
2494
|
conversationStarters?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
2495
|
+
etag?: InputMaybe<Scalars['String']['input']>;
|
|
2482
2496
|
};
|
|
2483
2497
|
export declare type AgentStudioUpdateConversationStartersPayload = Payload & {
|
|
2484
2498
|
__typename?: 'AgentStudioUpdateConversationStartersPayload';
|
|
@@ -5895,7 +5909,8 @@ export declare type CatchupLastViewedTimeResponse = {
|
|
|
5895
5909
|
};
|
|
5896
5910
|
export declare enum CatchupOverviewUpdateType {
|
|
5897
5911
|
SinceLastViewed = "SINCE_LAST_VIEWED",
|
|
5898
|
-
SinceLastViewedMarkdown = "SINCE_LAST_VIEWED_MARKDOWN"
|
|
5912
|
+
SinceLastViewedMarkdown = "SINCE_LAST_VIEWED_MARKDOWN",
|
|
5913
|
+
SinceXDays = "SINCE_X_DAYS"
|
|
5899
5914
|
}
|
|
5900
5915
|
export declare type CatchupVersionDiffMetadataResponse = {
|
|
5901
5916
|
__typename?: 'CatchupVersionDiffMetadataResponse';
|
|
@@ -6389,6 +6404,24 @@ export declare type CcpExperienceCapability = CommerceExperienceCapability & {
|
|
|
6389
6404
|
experienceUrl?: Maybe<Scalars['String']['output']>;
|
|
6390
6405
|
isAvailableToUser?: Maybe<Scalars['Boolean']['output']>;
|
|
6391
6406
|
};
|
|
6407
|
+
export declare type CcpExtension = {
|
|
6408
|
+
__typename?: 'CcpExtension';
|
|
6409
|
+
ari?: Maybe<Scalars['String']['output']>;
|
|
6410
|
+
catalogAccountId?: Maybe<Scalars['String']['output']>;
|
|
6411
|
+
createdAt?: Maybe<Scalars['Float']['output']>;
|
|
6412
|
+
data?: Maybe<Array<Maybe<CcpMapEntry>>>;
|
|
6413
|
+
entityKey?: Maybe<Scalars['String']['output']>;
|
|
6414
|
+
entityType?: Maybe<CcpExtensionEntityType>;
|
|
6415
|
+
key?: Maybe<Scalars['String']['output']>;
|
|
6416
|
+
revisionKey?: Maybe<Scalars['String']['output']>;
|
|
6417
|
+
updatedAt?: Maybe<Scalars['Float']['output']>;
|
|
6418
|
+
version?: Maybe<Scalars['Int']['output']>;
|
|
6419
|
+
};
|
|
6420
|
+
export declare enum CcpExtensionEntityType {
|
|
6421
|
+
Offering = "OFFERING",
|
|
6422
|
+
PricingPlan = "PRICING_PLAN",
|
|
6423
|
+
Product = "PRODUCT"
|
|
6424
|
+
}
|
|
6392
6425
|
export declare type CcpInvoiceGroup = CommerceInvoiceGroup & {
|
|
6393
6426
|
__typename?: 'CcpInvoiceGroup';
|
|
6394
6427
|
experienceCapabilities?: Maybe<CcpInvoiceGroupExperienceCapabilities>;
|
|
@@ -6925,6 +6958,7 @@ export declare enum CcpPricingType {
|
|
|
6925
6958
|
export declare type CcpProduct = Node & {
|
|
6926
6959
|
__typename?: 'CcpProduct';
|
|
6927
6960
|
catalogAccountId?: Maybe<Scalars['ID']['output']>;
|
|
6961
|
+
extensions?: Maybe<Array<Maybe<CcpExtension>>>;
|
|
6928
6962
|
id: Scalars['ID']['output'];
|
|
6929
6963
|
name?: Maybe<Scalars['String']['output']>;
|
|
6930
6964
|
offerings?: Maybe<Array<Maybe<CcpOffering>>>;
|
|
@@ -6932,6 +6966,9 @@ export declare type CcpProduct = Node & {
|
|
|
6932
6966
|
supportedBillingSystems?: Maybe<Array<Maybe<CcpSupportedBillingSystems>>>;
|
|
6933
6967
|
version?: Maybe<Scalars['Int']['output']>;
|
|
6934
6968
|
};
|
|
6969
|
+
export declare type CcpProductExtensionsArgs = {
|
|
6970
|
+
revisionKeys?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
|
|
6971
|
+
};
|
|
6935
6972
|
export declare enum CcpProductStatus {
|
|
6936
6973
|
Active = "ACTIVE",
|
|
6937
6974
|
AtNotice = "AT_NOTICE",
|
|
@@ -13714,6 +13751,16 @@ export declare enum ComponentSyncEventStatus {
|
|
|
13714
13751
|
Success = "SUCCESS",
|
|
13715
13752
|
UserError = "USER_ERROR"
|
|
13716
13753
|
}
|
|
13754
|
+
export declare type ConfluenceAcceptAnswerInput = {
|
|
13755
|
+
accept: Scalars['Boolean']['input'];
|
|
13756
|
+
answerId: Scalars['ID']['input'];
|
|
13757
|
+
questionId: Scalars['ID']['input'];
|
|
13758
|
+
};
|
|
13759
|
+
export declare type ConfluenceAcceptAnswerPayload = Payload & {
|
|
13760
|
+
__typename?: 'ConfluenceAcceptAnswerPayload';
|
|
13761
|
+
errors?: Maybe<Array<MutationError>>;
|
|
13762
|
+
success: Scalars['Boolean']['output'];
|
|
13763
|
+
};
|
|
13717
13764
|
export declare type ConfluenceAddCustomApplicationLinkInput = {
|
|
13718
13765
|
allowedGroups?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
|
|
13719
13766
|
displayName: Scalars['String']['input'];
|
|
@@ -13787,6 +13834,52 @@ export declare enum ConfluenceAnalyticsCommentContentType {
|
|
|
13787
13834
|
Whiteboard = "whiteboard"
|
|
13788
13835
|
}
|
|
13789
13836
|
export declare type ConfluenceAncestor = ConfluenceDatabase | ConfluenceEmbed | ConfluenceFolder | ConfluencePage | ConfluenceWhiteboard;
|
|
13837
|
+
export declare type ConfluenceAnswer = {
|
|
13838
|
+
__typename?: 'ConfluenceAnswer';
|
|
13839
|
+
author?: Maybe<ConfluenceUserInfo>;
|
|
13840
|
+
body?: Maybe<ConfluenceBodies>;
|
|
13841
|
+
comments?: Maybe<ConfluenceCommentConnection>;
|
|
13842
|
+
createdAt?: Maybe<Scalars['String']['output']>;
|
|
13843
|
+
id: Scalars['ID']['output'];
|
|
13844
|
+
isAccepted: Scalars['Boolean']['output'];
|
|
13845
|
+
latestVersion?: Maybe<ConfluenceContentVersion>;
|
|
13846
|
+
voteProperties: ConfluenceVotePropertyValue;
|
|
13847
|
+
};
|
|
13848
|
+
export declare type ConfluenceAnswerCommentsArgs = {
|
|
13849
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
13850
|
+
};
|
|
13851
|
+
export declare type ConfluenceAnswerConnection = {
|
|
13852
|
+
__typename?: 'ConfluenceAnswerConnection';
|
|
13853
|
+
edges?: Maybe<Array<Maybe<ConfluenceAnswerEdge>>>;
|
|
13854
|
+
nodes?: Maybe<Array<Maybe<ConfluenceAnswer>>>;
|
|
13855
|
+
pageInfo: ConfluencePageInfo;
|
|
13856
|
+
};
|
|
13857
|
+
export declare type ConfluenceAnswerEdge = {
|
|
13858
|
+
__typename?: 'ConfluenceAnswerEdge';
|
|
13859
|
+
cursor: Scalars['String']['output'];
|
|
13860
|
+
node?: Maybe<ConfluenceAnswer>;
|
|
13861
|
+
};
|
|
13862
|
+
export declare type ConfluenceAnswerFilters = {
|
|
13863
|
+
exampleFilter?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
|
|
13864
|
+
};
|
|
13865
|
+
export declare type ConfluenceAppConnection = {
|
|
13866
|
+
__typename?: 'ConfluenceAppConnection';
|
|
13867
|
+
edges?: Maybe<Array<Maybe<ConfluenceAppInfoEdge>>>;
|
|
13868
|
+
nodes?: Maybe<Array<Maybe<ConfluenceAppInfo>>>;
|
|
13869
|
+
pageInfo: ConfluencePageInfo;
|
|
13870
|
+
};
|
|
13871
|
+
export declare type ConfluenceAppInfo = {
|
|
13872
|
+
__typename?: 'ConfluenceAppInfo';
|
|
13873
|
+
customContentInfo?: Maybe<Array<Maybe<ConfluenceCustomContentInfo>>>;
|
|
13874
|
+
id: Scalars['ID']['output'];
|
|
13875
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
13876
|
+
type?: Maybe<ConfluenceAppType>;
|
|
13877
|
+
};
|
|
13878
|
+
export declare type ConfluenceAppInfoEdge = {
|
|
13879
|
+
__typename?: 'ConfluenceAppInfoEdge';
|
|
13880
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
13881
|
+
node?: Maybe<ConfluenceAppInfo>;
|
|
13882
|
+
};
|
|
13790
13883
|
export declare type ConfluenceAppInstallationLicense = {
|
|
13791
13884
|
__typename?: 'ConfluenceAppInstallationLicense';
|
|
13792
13885
|
active: Scalars['Boolean']['output'];
|
|
@@ -13816,6 +13909,10 @@ export declare type ConfluenceAppLinkMetadataInput = {
|
|
|
13816
13909
|
serverId: Scalars['ID']['input'];
|
|
13817
13910
|
serverName: Scalars['String']['input'];
|
|
13818
13911
|
};
|
|
13912
|
+
export declare enum ConfluenceAppType {
|
|
13913
|
+
Connect = "CONNECT",
|
|
13914
|
+
Forge = "FORGE"
|
|
13915
|
+
}
|
|
13819
13916
|
export declare enum ConfluenceApplication {
|
|
13820
13917
|
Html = "HTML",
|
|
13821
13918
|
Miro = "MIRO",
|
|
@@ -14001,6 +14098,13 @@ export declare type ConfluenceCalendarTimezones = {
|
|
|
14001
14098
|
__typename?: 'ConfluenceCalendarTimezones';
|
|
14002
14099
|
timezones?: Maybe<Array<Maybe<ConfluenceCalendarTimeZone>>>;
|
|
14003
14100
|
};
|
|
14101
|
+
export declare enum ConfluenceCatchupOverviewTimeframeLength {
|
|
14102
|
+
AllTime = "ALL_TIME",
|
|
14103
|
+
OneDayAgo = "ONE_DAY_AGO",
|
|
14104
|
+
OneMonthAgo = "ONE_MONTH_AGO",
|
|
14105
|
+
OneWeekAgo = "ONE_WEEK_AGO",
|
|
14106
|
+
TwoWeeksAgo = "TWO_WEEKS_AGO"
|
|
14107
|
+
}
|
|
14004
14108
|
export declare type ConfluenceCategorizeNbmCategory = {
|
|
14005
14109
|
__typename?: 'ConfluenceCategorizeNbmCategory';
|
|
14006
14110
|
nbmChains?: Maybe<Array<Maybe<Array<Maybe<Scalars['String']['output']>>>>>;
|
|
@@ -14069,6 +14173,12 @@ export declare type ConfluenceComment = {
|
|
|
14069
14173
|
name?: Maybe<Scalars['String']['output']>;
|
|
14070
14174
|
status?: Maybe<ConfluenceCommentStatus>;
|
|
14071
14175
|
};
|
|
14176
|
+
export declare type ConfluenceCommentConnection = {
|
|
14177
|
+
__typename?: 'ConfluenceCommentConnection';
|
|
14178
|
+
edges?: Maybe<Array<Maybe<ConfluenceCommentEdge>>>;
|
|
14179
|
+
nodes?: Maybe<Array<Maybe<ConfluenceComment>>>;
|
|
14180
|
+
pageInfo: ConfluencePageInfo;
|
|
14181
|
+
};
|
|
14072
14182
|
export declare type ConfluenceCommentContainer = ConfluenceBlogPost | ConfluencePage | ConfluenceWhiteboard;
|
|
14073
14183
|
export declare type ConfluenceCommentCountSummary = {
|
|
14074
14184
|
__typename?: 'ConfluenceCommentCountSummary';
|
|
@@ -14081,6 +14191,11 @@ export declare type ConfluenceCommentCreated = {
|
|
|
14081
14191
|
pageCommentType?: Maybe<ConfluenceCommentLevel>;
|
|
14082
14192
|
replies?: Maybe<Array<Scalars['String']['output']>>;
|
|
14083
14193
|
};
|
|
14194
|
+
export declare type ConfluenceCommentEdge = {
|
|
14195
|
+
__typename?: 'ConfluenceCommentEdge';
|
|
14196
|
+
cursor: Scalars['String']['output'];
|
|
14197
|
+
node?: Maybe<ConfluenceComment>;
|
|
14198
|
+
};
|
|
14084
14199
|
export declare type ConfluenceCommentFilter = {
|
|
14085
14200
|
commentState?: InputMaybe<Array<InputMaybe<ConfluenceCommentState>>>;
|
|
14086
14201
|
commentType?: InputMaybe<Array<InputMaybe<CommentType>>>;
|
|
@@ -14374,6 +14489,16 @@ export declare type ConfluenceCreateAdminAnnouncementBannerInput = {
|
|
|
14374
14489
|
title?: InputMaybe<Scalars['String']['input']>;
|
|
14375
14490
|
visibility: ConfluenceAdminAnnouncementBannerVisibilityType;
|
|
14376
14491
|
};
|
|
14492
|
+
export declare type ConfluenceCreateAnswerInput = {
|
|
14493
|
+
body?: InputMaybe<ConfluenceContentBodyInput>;
|
|
14494
|
+
questionId: Scalars['ID']['input'];
|
|
14495
|
+
};
|
|
14496
|
+
export declare type ConfluenceCreateAnswerPayload = Payload & {
|
|
14497
|
+
__typename?: 'ConfluenceCreateAnswerPayload';
|
|
14498
|
+
answer?: Maybe<ConfluenceAnswer>;
|
|
14499
|
+
errors?: Maybe<Array<MutationError>>;
|
|
14500
|
+
success: Scalars['Boolean']['output'];
|
|
14501
|
+
};
|
|
14377
14502
|
export declare type ConfluenceCreateBlogPostInput = {
|
|
14378
14503
|
body?: InputMaybe<ConfluenceContentBodyInput>;
|
|
14379
14504
|
spaceId: Scalars['ID']['input'];
|
|
@@ -14397,6 +14522,26 @@ export declare type ConfluenceCreateBlogPostPropertyPayload = Payload & {
|
|
|
14397
14522
|
errors?: Maybe<Array<MutationError>>;
|
|
14398
14523
|
success: Scalars['Boolean']['output'];
|
|
14399
14524
|
};
|
|
14525
|
+
export declare type ConfluenceCreateCommentOnAnswerInput = {
|
|
14526
|
+
answerId: Scalars['ID']['input'];
|
|
14527
|
+
body: ConfluenceContentBodyInput;
|
|
14528
|
+
};
|
|
14529
|
+
export declare type ConfluenceCreateCommentOnAnswerPayload = {
|
|
14530
|
+
__typename?: 'ConfluenceCreateCommentOnAnswerPayload';
|
|
14531
|
+
comment?: Maybe<ConfluenceFooterComment>;
|
|
14532
|
+
errors?: Maybe<Array<MutationError>>;
|
|
14533
|
+
success: Scalars['Boolean']['output'];
|
|
14534
|
+
};
|
|
14535
|
+
export declare type ConfluenceCreateCommentOnQuestionInput = {
|
|
14536
|
+
body: ConfluenceContentBodyInput;
|
|
14537
|
+
questionId: Scalars['ID']['input'];
|
|
14538
|
+
};
|
|
14539
|
+
export declare type ConfluenceCreateCommentOnQuestionPayload = {
|
|
14540
|
+
__typename?: 'ConfluenceCreateCommentOnQuestionPayload';
|
|
14541
|
+
comment?: Maybe<ConfluenceFooterComment>;
|
|
14542
|
+
errors?: Maybe<Array<MutationError>>;
|
|
14543
|
+
success: Scalars['Boolean']['output'];
|
|
14544
|
+
};
|
|
14400
14545
|
export declare type ConfluenceCreateCsvExportTaskInput = {
|
|
14401
14546
|
spaceAri: Scalars['String']['input'];
|
|
14402
14547
|
};
|
|
@@ -14479,6 +14624,18 @@ export declare type ConfluenceCreatePdfExportTaskForSingleContentPayload = Paylo
|
|
|
14479
14624
|
exportTaskId: Scalars['ID']['output'];
|
|
14480
14625
|
success: Scalars['Boolean']['output'];
|
|
14481
14626
|
};
|
|
14627
|
+
export declare type ConfluenceCreateQuestionInput = {
|
|
14628
|
+
body?: InputMaybe<ConfluenceContentBodyInput>;
|
|
14629
|
+
labels?: InputMaybe<Array<InputMaybe<LabelInput>>>;
|
|
14630
|
+
spaceId: Scalars['ID']['input'];
|
|
14631
|
+
title?: InputMaybe<Scalars['String']['input']>;
|
|
14632
|
+
};
|
|
14633
|
+
export declare type ConfluenceCreateQuestionPayload = Payload & {
|
|
14634
|
+
__typename?: 'ConfluenceCreateQuestionPayload';
|
|
14635
|
+
errors?: Maybe<Array<MutationError>>;
|
|
14636
|
+
question?: Maybe<ConfluenceQuestion>;
|
|
14637
|
+
success: Scalars['Boolean']['output'];
|
|
14638
|
+
};
|
|
14482
14639
|
export declare type ConfluenceCreateSpaceInput = {
|
|
14483
14640
|
key: Scalars['String']['input'];
|
|
14484
14641
|
name: Scalars['String']['input'];
|
|
@@ -14519,6 +14676,54 @@ export declare type ConfluenceCustomApplicationLink = {
|
|
|
14519
14676
|
sourceApplicationUrl?: Maybe<Scalars['String']['output']>;
|
|
14520
14677
|
url: Scalars['String']['output'];
|
|
14521
14678
|
};
|
|
14679
|
+
export declare type ConfluenceCustomContentInfo = {
|
|
14680
|
+
__typename?: 'ConfluenceCustomContentInfo';
|
|
14681
|
+
customContentTypeKey: Scalars['String']['output'];
|
|
14682
|
+
customContentTypeName: Scalars['String']['output'];
|
|
14683
|
+
supportedPermissions: Array<Maybe<ConfluenceCustomContentPermissionType>>;
|
|
14684
|
+
};
|
|
14685
|
+
export declare type ConfluenceCustomContentPermissionAssignment = {
|
|
14686
|
+
__typename?: 'ConfluenceCustomContentPermissionAssignment';
|
|
14687
|
+
confluenceCustomContentPrincipal?: Maybe<ConfluenceCustomContentPrincipal>;
|
|
14688
|
+
customContentTypeKey?: Maybe<Scalars['String']['output']>;
|
|
14689
|
+
customContentTypeName?: Maybe<Scalars['String']['output']>;
|
|
14690
|
+
permissionType?: Maybe<ConfluenceCustomContentPermissionType>;
|
|
14691
|
+
};
|
|
14692
|
+
export declare type ConfluenceCustomContentPermissionAssignmentConnection = {
|
|
14693
|
+
__typename?: 'ConfluenceCustomContentPermissionAssignmentConnection';
|
|
14694
|
+
edges?: Maybe<Array<Maybe<ConfluenceCustomContentPermissionAssignmentEdge>>>;
|
|
14695
|
+
nodes?: Maybe<Array<Maybe<ConfluenceCustomContentPermissionAssignment>>>;
|
|
14696
|
+
pageInfo: ConfluencePageInfo;
|
|
14697
|
+
};
|
|
14698
|
+
export declare type ConfluenceCustomContentPermissionAssignmentEdge = {
|
|
14699
|
+
__typename?: 'ConfluenceCustomContentPermissionAssignmentEdge';
|
|
14700
|
+
cursor: Scalars['String']['output'];
|
|
14701
|
+
node?: Maybe<ConfluenceCustomContentPermissionAssignment>;
|
|
14702
|
+
};
|
|
14703
|
+
export declare type ConfluenceCustomContentPermissionInput = {
|
|
14704
|
+
customContentTypeKey: Scalars['String']['input'];
|
|
14705
|
+
permission: ConfluenceCustomContentPermissionType;
|
|
14706
|
+
};
|
|
14707
|
+
export declare enum ConfluenceCustomContentPermissionPrincipalType {
|
|
14708
|
+
Group = "GROUP",
|
|
14709
|
+
Guests = "GUESTS",
|
|
14710
|
+
User = "USER",
|
|
14711
|
+
UserClass = "USER_CLASS"
|
|
14712
|
+
}
|
|
14713
|
+
export declare enum ConfluenceCustomContentPermissionType {
|
|
14714
|
+
Create = "CREATE",
|
|
14715
|
+
Delete = "DELETE",
|
|
14716
|
+
Read = "READ"
|
|
14717
|
+
}
|
|
14718
|
+
export declare type ConfluenceCustomContentPrincipal = {
|
|
14719
|
+
__typename?: 'ConfluenceCustomContentPrincipal';
|
|
14720
|
+
principalId: Scalars['ID']['output'];
|
|
14721
|
+
principalType: ConfluenceCustomContentPermissionPrincipalType;
|
|
14722
|
+
};
|
|
14723
|
+
export declare type ConfluenceCustomContentPrincipalInput = {
|
|
14724
|
+
principalId: Scalars['ID']['input'];
|
|
14725
|
+
principalType: ConfluenceCustomContentPermissionPrincipalType;
|
|
14726
|
+
};
|
|
14522
14727
|
export declare type ConfluenceCustomPageSettings = {
|
|
14523
14728
|
__typename?: 'ConfluenceCustomPageSettings';
|
|
14524
14729
|
footerText?: Maybe<Scalars['String']['output']>;
|
|
@@ -14576,6 +14781,15 @@ export declare type ConfluenceDeleteAllTeamCalendarSubscriptionsPayload = {
|
|
|
14576
14781
|
errors?: Maybe<Array<MutationError>>;
|
|
14577
14782
|
success: Scalars['Boolean']['output'];
|
|
14578
14783
|
};
|
|
14784
|
+
export declare type ConfluenceDeleteAnswerInput = {
|
|
14785
|
+
answerId: Scalars['ID']['input'];
|
|
14786
|
+
questionId: Scalars['ID']['input'];
|
|
14787
|
+
};
|
|
14788
|
+
export declare type ConfluenceDeleteAnswerPayload = Payload & {
|
|
14789
|
+
__typename?: 'ConfluenceDeleteAnswerPayload';
|
|
14790
|
+
errors?: Maybe<Array<MutationError>>;
|
|
14791
|
+
success: Scalars['Boolean']['output'];
|
|
14792
|
+
};
|
|
14579
14793
|
export declare type ConfluenceDeleteBlogPostPropertyInput = {
|
|
14580
14794
|
blogPostId: Scalars['ID']['input'];
|
|
14581
14795
|
key: Scalars['String']['input'];
|
|
@@ -14655,6 +14869,14 @@ export declare type ConfluenceDeletePagePropertyPayload = Payload & {
|
|
|
14655
14869
|
errors?: Maybe<Array<MutationError>>;
|
|
14656
14870
|
success: Scalars['Boolean']['output'];
|
|
14657
14871
|
};
|
|
14872
|
+
export declare type ConfluenceDeleteQuestionInput = {
|
|
14873
|
+
id: Scalars['ID']['input'];
|
|
14874
|
+
};
|
|
14875
|
+
export declare type ConfluenceDeleteQuestionPayload = Payload & {
|
|
14876
|
+
__typename?: 'ConfluenceDeleteQuestionPayload';
|
|
14877
|
+
errors?: Maybe<Array<MutationError>>;
|
|
14878
|
+
success: Scalars['Boolean']['output'];
|
|
14879
|
+
};
|
|
14658
14880
|
export declare type ConfluenceDeleteSpacePageTemplateInput = {
|
|
14659
14881
|
id: Scalars['ID']['input'];
|
|
14660
14882
|
spaceId: Scalars['Long']['input'];
|
|
@@ -14798,6 +15020,11 @@ export declare type ConfluenceEnableBlueprintPayload = Payload & {
|
|
|
14798
15020
|
errors?: Maybe<Array<MutationError>>;
|
|
14799
15021
|
success: Scalars['Boolean']['output'];
|
|
14800
15022
|
};
|
|
15023
|
+
export declare type ConfluenceEnableDefaultSpaceLogoPayload = Payload & {
|
|
15024
|
+
__typename?: 'ConfluenceEnableDefaultSpaceLogoPayload';
|
|
15025
|
+
errors?: Maybe<Array<MutationError>>;
|
|
15026
|
+
success: Scalars['Boolean']['output'];
|
|
15027
|
+
};
|
|
14801
15028
|
export declare type ConfluenceEnableGlobalPageBlueprintInput = {
|
|
14802
15029
|
id: Scalars['ID']['input'];
|
|
14803
15030
|
};
|
|
@@ -14991,9 +15218,6 @@ export declare type ConfluenceFormattingSettings = {
|
|
|
14991
15218
|
longNumberFormat?: Maybe<Scalars['String']['output']>;
|
|
14992
15219
|
timeFormat?: Maybe<Scalars['String']['output']>;
|
|
14993
15220
|
};
|
|
14994
|
-
export declare enum ConfluenceGeneratedBy {
|
|
14995
|
-
Onboarding = "ONBOARDING"
|
|
14996
|
-
}
|
|
14997
15221
|
export declare type ConfluenceGeneratedSpaceKey = {
|
|
14998
15222
|
__typename?: 'ConfluenceGeneratedSpaceKey';
|
|
14999
15223
|
key?: Maybe<Scalars['String']['output']>;
|
|
@@ -15405,6 +15629,7 @@ export declare type ConfluenceMutationApi = {
|
|
|
15405
15629
|
disableDefaultSpaceLogo?: Maybe<ConfluenceDisableDefaultSpaceLogoPayload>;
|
|
15406
15630
|
disableGlobalBlueprint?: Maybe<ConfluenceDisableGlobalPageBlueprintPayload>;
|
|
15407
15631
|
enableBlueprint?: Maybe<ConfluenceEnableBlueprintPayload>;
|
|
15632
|
+
enableDefaultSpaceLogo?: Maybe<ConfluenceEnableDefaultSpaceLogoPayload>;
|
|
15408
15633
|
enableGlobalBlueprint?: Maybe<ConfluenceEnableGlobalPageBlueprintPayload>;
|
|
15409
15634
|
importSpace?: Maybe<ConfluenceImportSpacePayload>;
|
|
15410
15635
|
promoteBlueprint?: Maybe<ConfluencePromoteBlueprintPayload>;
|
|
@@ -15417,6 +15642,8 @@ export declare type ConfluenceMutationApi = {
|
|
|
15417
15642
|
repairJiraMacroAppLinks?: Maybe<ConfluenceRepairJiraMacroAppLinksPayload>;
|
|
15418
15643
|
replyToComment?: Maybe<ConfluenceReplyToCommentPayload>;
|
|
15419
15644
|
requestSpaceAccess?: Maybe<ConfluenceRequestSpaceAccessPayload>;
|
|
15645
|
+
resetDefaultSpaceLogo?: Maybe<ConfluenceResetDefaultSpaceLogoPayload>;
|
|
15646
|
+
resetJiraMacroAppLinksScanStatus?: Maybe<ConfluenceResetJiraMacroAppLinksScanStatusPayload>;
|
|
15420
15647
|
resolveInlineComment?: Maybe<ConfluenceResolveInlineCommentPayload>;
|
|
15421
15648
|
saveOrUpdateSpaceOwner?: Maybe<ConfluenceSaveOrUpdateSpaceOwnerPayload>;
|
|
15422
15649
|
scanJiraMacroAppLinks?: Maybe<ConfluenceScanJiraMacroAppLinksPayload>;
|
|
@@ -15438,6 +15665,7 @@ export declare type ConfluenceMutationApi = {
|
|
|
15438
15665
|
updateGlobalPageTemplateDescription?: Maybe<ConfluenceUpdateGlobalPageTemplateDescriptionPayload>;
|
|
15439
15666
|
updateGlobalTheme?: Maybe<ConfluenceUpdateGlobalThemePayload>;
|
|
15440
15667
|
updateIndexingLanguageConfiguration?: Maybe<ConfluenceUpdateIndexingLanguageConfigurationPayload>;
|
|
15668
|
+
updateLoomEntryPointsConfiguration?: Maybe<ConfluenceUpdateLoomEntryPointsConfigurationPayload>;
|
|
15441
15669
|
updateNewCodeMacro?: Maybe<ConfluenceUpdateNewCodeMacroPayload>;
|
|
15442
15670
|
updatePdfExportConfiguration?: Maybe<ConfluenceUpdatePdfExportConfigurationPayload>;
|
|
15443
15671
|
updatePdfExportSpaceConfiguration?: Maybe<ConfluenceUpdatePdfExportConfigurationPayload>;
|
|
@@ -15448,8 +15676,11 @@ export declare type ConfluenceMutationApi = {
|
|
|
15448
15676
|
updateSpacePageTemplateDescription?: Maybe<ConfluenceUpdateGlobalPageTemplateDescriptionPayload>;
|
|
15449
15677
|
updateSpaceSettings?: Maybe<ConfluenceUpdateSpaceSettingsPayload>;
|
|
15450
15678
|
updateSpaceTheme?: Maybe<ConfluenceUpdateSpaceThemePayload>;
|
|
15679
|
+
updateTeamCalendarGlobalSettings?: Maybe<ConfluenceUpdateTeamCalendarGlobalSettingsPayload>;
|
|
15680
|
+
updateTeamPresenceSiteConfiguration?: Maybe<ConfluenceUpdateTeamPresenceSiteConfigurationPayload>;
|
|
15451
15681
|
updateValueBlogPostProperty?: Maybe<ConfluenceUpdateValueBlogPostPropertyPayload>;
|
|
15452
15682
|
updateValuePageProperty?: Maybe<ConfluenceUpdateValuePagePropertyPayload>;
|
|
15683
|
+
uploadDefaultSpaceLogo?: Maybe<ConfluenceUploadDefaultSpaceLogoPayload>;
|
|
15453
15684
|
};
|
|
15454
15685
|
export declare type ConfluenceMutationApiAddCustomApplicationLinkArgs = {
|
|
15455
15686
|
input: ConfluenceAddCustomApplicationLinkInput;
|
|
@@ -15608,6 +15839,9 @@ export declare type ConfluenceMutationApiUpdateGlobalThemeArgs = {
|
|
|
15608
15839
|
export declare type ConfluenceMutationApiUpdateIndexingLanguageConfigurationArgs = {
|
|
15609
15840
|
input: ConfluenceUpdateIndexingLanguageConfigurationInput;
|
|
15610
15841
|
};
|
|
15842
|
+
export declare type ConfluenceMutationApiUpdateLoomEntryPointsConfigurationArgs = {
|
|
15843
|
+
input: ConfluenceUpdateLoomEntryPointsConfigurationInput;
|
|
15844
|
+
};
|
|
15611
15845
|
export declare type ConfluenceMutationApiUpdateNewCodeMacroArgs = {
|
|
15612
15846
|
input: ConfluenceUpdateNewCodeMacroInput;
|
|
15613
15847
|
};
|
|
@@ -15638,16 +15872,34 @@ export declare type ConfluenceMutationApiUpdateSpaceSettingsArgs = {
|
|
|
15638
15872
|
export declare type ConfluenceMutationApiUpdateSpaceThemeArgs = {
|
|
15639
15873
|
input: ConfluenceUpdateSpaceThemeInput;
|
|
15640
15874
|
};
|
|
15875
|
+
export declare type ConfluenceMutationApiUpdateTeamCalendarGlobalSettingsArgs = {
|
|
15876
|
+
input: ConfluenceUpdateTeamCalendarGlobalSettingsInput;
|
|
15877
|
+
};
|
|
15878
|
+
export declare type ConfluenceMutationApiUpdateTeamPresenceSiteConfigurationArgs = {
|
|
15879
|
+
input: ConfluenceUpdateTeamPresenceSiteConfigurationInput;
|
|
15880
|
+
};
|
|
15641
15881
|
export declare type ConfluenceMutationApiUpdateValueBlogPostPropertyArgs = {
|
|
15642
15882
|
input: ConfluenceUpdateValueBlogPostPropertyInput;
|
|
15643
15883
|
};
|
|
15644
15884
|
export declare type ConfluenceMutationApiUpdateValuePagePropertyArgs = {
|
|
15645
15885
|
input: ConfluenceUpdateValuePagePropertyInput;
|
|
15646
15886
|
};
|
|
15887
|
+
export declare type ConfluenceMutationApiUploadDefaultSpaceLogoArgs = {
|
|
15888
|
+
input: ConfluenceUploadDefaultSpaceLogoInput;
|
|
15889
|
+
};
|
|
15647
15890
|
export declare enum ConfluenceMutationContentStatus {
|
|
15648
15891
|
Current = "CURRENT",
|
|
15649
15892
|
Draft = "DRAFT"
|
|
15650
15893
|
}
|
|
15894
|
+
export declare type ConfluenceNbmBulkUpdateVerificationEntryInput = {
|
|
15895
|
+
scanId: Scalars['ID']['input'];
|
|
15896
|
+
verificationEntries: Array<InputMaybe<ConfluenceNbmVerificationEntryInput>>;
|
|
15897
|
+
};
|
|
15898
|
+
export declare type ConfluenceNbmBulkUpdateVerificationEntryPayload = Payload & {
|
|
15899
|
+
__typename?: 'ConfluenceNbmBulkUpdateVerificationEntryPayload';
|
|
15900
|
+
errors?: Maybe<Array<MutationError>>;
|
|
15901
|
+
success: Scalars['Boolean']['output'];
|
|
15902
|
+
};
|
|
15651
15903
|
export declare type ConfluenceNbmCategory = {
|
|
15652
15904
|
__typename?: 'ConfluenceNbmCategory';
|
|
15653
15905
|
details?: Maybe<Array<Maybe<ConfluenceNbmCategoryDetail>>>;
|
|
@@ -15663,7 +15915,12 @@ export declare type ConfluenceNbmCategoryDetail = {
|
|
|
15663
15915
|
pages?: Maybe<Array<Maybe<ConfluenceNbmPageReference>>>;
|
|
15664
15916
|
};
|
|
15665
15917
|
export declare enum ConfluenceNbmCategoryTypes {
|
|
15918
|
+
NotSupported = "NOT_SUPPORTED",
|
|
15919
|
+
Supported = "SUPPORTED",
|
|
15920
|
+
SupportedWithMitigation = "SUPPORTED_WITH_MITIGATION",
|
|
15921
|
+
Unknown = "UNKNOWN",
|
|
15666
15922
|
UnknownMacros = "UNKNOWN_MACROS",
|
|
15923
|
+
Unverified = "UNVERIFIED",
|
|
15667
15924
|
UnverifiedNbm = "UNVERIFIED_NBM",
|
|
15668
15925
|
VerifiedNotSupported = "VERIFIED_NOT_SUPPORTED",
|
|
15669
15926
|
VerifiedSupported = "VERIFIED_SUPPORTED",
|
|
@@ -15737,6 +15994,42 @@ export declare type ConfluenceNbmStartScanLongTaskPayload = Payload & {
|
|
|
15737
15994
|
success: Scalars['Boolean']['output'];
|
|
15738
15995
|
taskId: Scalars['String']['output'];
|
|
15739
15996
|
};
|
|
15997
|
+
export declare enum ConfluenceNbmVerificationAiState {
|
|
15998
|
+
Broken = "BROKEN",
|
|
15999
|
+
Unknown = "UNKNOWN",
|
|
16000
|
+
Working = "WORKING"
|
|
16001
|
+
}
|
|
16002
|
+
export declare type ConfluenceNbmVerificationEntry = {
|
|
16003
|
+
__typename?: 'ConfluenceNbmVerificationEntry';
|
|
16004
|
+
aiCategory?: Maybe<Scalars['String']['output']>;
|
|
16005
|
+
aiReason?: Maybe<Scalars['String']['output']>;
|
|
16006
|
+
aiState?: Maybe<ConfluenceNbmVerificationAiState>;
|
|
16007
|
+
approved?: Maybe<Scalars['Boolean']['output']>;
|
|
16008
|
+
chain?: Maybe<Scalars['String']['output']>;
|
|
16009
|
+
error?: Maybe<Scalars['String']['output']>;
|
|
16010
|
+
id: Scalars['ID']['output'];
|
|
16011
|
+
manualState?: Maybe<ConfluenceNbmCategoryTypes>;
|
|
16012
|
+
originalPageId?: Maybe<Scalars['ID']['output']>;
|
|
16013
|
+
pageCount?: Maybe<Scalars['Int']['output']>;
|
|
16014
|
+
screenshotId?: Maybe<Scalars['ID']['output']>;
|
|
16015
|
+
screenshotPageId?: Maybe<Scalars['ID']['output']>;
|
|
16016
|
+
};
|
|
16017
|
+
export declare type ConfluenceNbmVerificationEntryInput = {
|
|
16018
|
+
id: Scalars['ID']['input'];
|
|
16019
|
+
isApproved: Scalars['Boolean']['input'];
|
|
16020
|
+
manualState?: InputMaybe<ConfluenceNbmCategoryTypes>;
|
|
16021
|
+
};
|
|
16022
|
+
export declare type ConfluenceNbmVerificationResultConnection = {
|
|
16023
|
+
__typename?: 'ConfluenceNbmVerificationResultConnection';
|
|
16024
|
+
edges?: Maybe<Array<Maybe<ConfluenceNbmVerificationResultEdge>>>;
|
|
16025
|
+
nodes?: Maybe<Array<Maybe<ConfluenceNbmVerificationEntry>>>;
|
|
16026
|
+
pageInfo: ConfluencePageInfo;
|
|
16027
|
+
};
|
|
16028
|
+
export declare type ConfluenceNbmVerificationResultEdge = {
|
|
16029
|
+
__typename?: 'ConfluenceNbmVerificationResultEdge';
|
|
16030
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
16031
|
+
node?: Maybe<ConfluenceNbmVerificationEntry>;
|
|
16032
|
+
};
|
|
15740
16033
|
export declare type ConfluenceNewCodeMacro = {
|
|
15741
16034
|
__typename?: 'ConfluenceNewCodeMacro';
|
|
15742
16035
|
languages?: Maybe<Array<Maybe<ConfluenceNewCodeMacroLanguage>>>;
|
|
@@ -16171,6 +16464,36 @@ export declare type ConfluenceQueryApiWhiteboardArgs = {
|
|
|
16171
16464
|
export declare type ConfluenceQueryApiWhiteboardsArgs = {
|
|
16172
16465
|
ids: Array<InputMaybe<Scalars['ID']['input']>>;
|
|
16173
16466
|
};
|
|
16467
|
+
export declare type ConfluenceQuestion = {
|
|
16468
|
+
__typename?: 'ConfluenceQuestion';
|
|
16469
|
+
answersTotalCount?: Maybe<Scalars['Int']['output']>;
|
|
16470
|
+
author?: Maybe<ConfluenceUserInfo>;
|
|
16471
|
+
body?: Maybe<ConfluenceBodies>;
|
|
16472
|
+
comments?: Maybe<ConfluenceCommentConnection>;
|
|
16473
|
+
createdAt?: Maybe<Scalars['String']['output']>;
|
|
16474
|
+
id: Scalars['ID']['output'];
|
|
16475
|
+
labels?: Maybe<Array<Maybe<ConfluenceLabel>>>;
|
|
16476
|
+
latestVersion?: Maybe<ConfluenceContentVersion>;
|
|
16477
|
+
title?: Maybe<Scalars['String']['output']>;
|
|
16478
|
+
voteProperties: ConfluenceVotePropertyValue;
|
|
16479
|
+
};
|
|
16480
|
+
export declare type ConfluenceQuestionCommentsArgs = {
|
|
16481
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
16482
|
+
};
|
|
16483
|
+
export declare type ConfluenceQuestionConnection = {
|
|
16484
|
+
__typename?: 'ConfluenceQuestionConnection';
|
|
16485
|
+
edges?: Maybe<Array<Maybe<ConfluenceQuestionEdge>>>;
|
|
16486
|
+
nodes?: Maybe<Array<Maybe<ConfluenceQuestion>>>;
|
|
16487
|
+
pageInfo: ConfluencePageInfo;
|
|
16488
|
+
};
|
|
16489
|
+
export declare type ConfluenceQuestionEdge = {
|
|
16490
|
+
__typename?: 'ConfluenceQuestionEdge';
|
|
16491
|
+
cursor: Scalars['String']['output'];
|
|
16492
|
+
node?: Maybe<ConfluenceQuestion>;
|
|
16493
|
+
};
|
|
16494
|
+
export declare type ConfluenceQuestionFilters = {
|
|
16495
|
+
answered?: InputMaybe<Scalars['Boolean']['input']>;
|
|
16496
|
+
};
|
|
16174
16497
|
export declare type ConfluenceQuestionsConfiguration = {
|
|
16175
16498
|
__typename?: 'ConfluenceQuestionsConfiguration';
|
|
16176
16499
|
confluenceQuestionsGlobalSpaceId?: Maybe<Scalars['ID']['output']>;
|
|
@@ -16228,6 +16551,12 @@ export declare type ConfluenceReactionSummary = {
|
|
|
16228
16551
|
__typename?: 'ConfluenceReactionSummary';
|
|
16229
16552
|
reactionsSummary?: Maybe<Array<Maybe<ConfluenceReactionsSummaryResponse>>>;
|
|
16230
16553
|
};
|
|
16554
|
+
export declare type ConfluenceReactionSummaryInput = {
|
|
16555
|
+
containerId?: InputMaybe<Scalars['Long']['input']>;
|
|
16556
|
+
containerType?: InputMaybe<ContainerType>;
|
|
16557
|
+
contentId?: InputMaybe<Scalars['Long']['input']>;
|
|
16558
|
+
contentType?: InputMaybe<GraphQlReactionContentType>;
|
|
16559
|
+
};
|
|
16231
16560
|
export declare type ConfluenceReactionsSummaryForEmoji = {
|
|
16232
16561
|
__typename?: 'ConfluenceReactionsSummaryForEmoji';
|
|
16233
16562
|
count?: Maybe<Scalars['Int']['output']>;
|
|
@@ -16316,6 +16645,17 @@ export declare type ConfluenceRequestSpaceAccessPayload = Payload & {
|
|
|
16316
16645
|
spaceKey: Scalars['String']['output'];
|
|
16317
16646
|
success: Scalars['Boolean']['output'];
|
|
16318
16647
|
};
|
|
16648
|
+
export declare type ConfluenceResetDefaultSpaceLogoPayload = Payload & {
|
|
16649
|
+
__typename?: 'ConfluenceResetDefaultSpaceLogoPayload';
|
|
16650
|
+
errors?: Maybe<Array<MutationError>>;
|
|
16651
|
+
success: Scalars['Boolean']['output'];
|
|
16652
|
+
};
|
|
16653
|
+
export declare type ConfluenceResetJiraMacroAppLinksScanStatusPayload = Payload & {
|
|
16654
|
+
__typename?: 'ConfluenceResetJiraMacroAppLinksScanStatusPayload';
|
|
16655
|
+
errors?: Maybe<Array<MutationError>>;
|
|
16656
|
+
scanningStatus?: Maybe<ConfluenceJiraMacroAppLinksScanningStatus>;
|
|
16657
|
+
success: Scalars['Boolean']['output'];
|
|
16658
|
+
};
|
|
16319
16659
|
export declare type ConfluenceResolveCommentByContentIdPayload = Payload & {
|
|
16320
16660
|
__typename?: 'ConfluenceResolveCommentByContentIdPayload';
|
|
16321
16661
|
errors?: Maybe<Array<MutationError>>;
|
|
@@ -16561,6 +16901,13 @@ export declare type ConfluenceSpaceRoleAppPrincipal = SpaceRolePrincipal & {
|
|
|
16561
16901
|
displayName: Scalars['String']['output'];
|
|
16562
16902
|
principalId: Scalars['ID']['output'];
|
|
16563
16903
|
};
|
|
16904
|
+
export declare type ConfluenceSpaceRoleAssigned = {
|
|
16905
|
+
__typename?: 'ConfluenceSpaceRoleAssigned';
|
|
16906
|
+
isSpaceRoleAssignedToAnonymous: Scalars['Boolean']['output'];
|
|
16907
|
+
isSpaceRoleAssignedToGuests: Scalars['Boolean']['output'];
|
|
16908
|
+
isSpaceRoleAssignedToRegularUsers: Scalars['Boolean']['output'];
|
|
16909
|
+
spaceRoleId: Scalars['String']['output'];
|
|
16910
|
+
};
|
|
16564
16911
|
export declare enum ConfluenceSpaceRoleMode {
|
|
16565
16912
|
PreRoles = "PRE_ROLES",
|
|
16566
16913
|
Roles = "ROLES",
|
|
@@ -16628,6 +16975,11 @@ export declare type ConfluenceSubCalendarWatchingStatus = {
|
|
|
16628
16975
|
watched: Scalars['Boolean']['output'];
|
|
16629
16976
|
watchedViaContent: Scalars['Boolean']['output'];
|
|
16630
16977
|
};
|
|
16978
|
+
export declare type ConfluenceSubjectCustomContentPermissionDelta = {
|
|
16979
|
+
permissionsToAdd: Array<InputMaybe<ConfluenceCustomContentPermissionInput>>;
|
|
16980
|
+
permissionsToRemove: Array<InputMaybe<ConfluenceCustomContentPermissionInput>>;
|
|
16981
|
+
principal: ConfluenceCustomContentPrincipalInput;
|
|
16982
|
+
};
|
|
16631
16983
|
export declare enum ConfluenceSubscriptionContentType {
|
|
16632
16984
|
Blogpost = "BLOGPOST",
|
|
16633
16985
|
Comment = "COMMENT",
|
|
@@ -16799,6 +17151,15 @@ export declare type ConfluenceUnpromotePageTemplatePayload = Payload & {
|
|
|
16799
17151
|
errors?: Maybe<Array<MutationError>>;
|
|
16800
17152
|
success: Scalars['Boolean']['output'];
|
|
16801
17153
|
};
|
|
17154
|
+
export declare type ConfluenceUnschedulePublishInput = {
|
|
17155
|
+
contentId: Scalars['String']['input'];
|
|
17156
|
+
};
|
|
17157
|
+
export declare type ConfluenceUnschedulePublishPayload = {
|
|
17158
|
+
__typename?: 'ConfluenceUnschedulePublishPayload';
|
|
17159
|
+
contentId: Scalars['String']['output'];
|
|
17160
|
+
errors?: Maybe<Array<MutationError>>;
|
|
17161
|
+
success: Scalars['Boolean']['output'];
|
|
17162
|
+
};
|
|
16802
17163
|
export declare type ConfluenceUnusedPluginMacro = {
|
|
16803
17164
|
__typename?: 'ConfluenceUnusedPluginMacro';
|
|
16804
17165
|
macroNames?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
|
|
@@ -16825,6 +17186,17 @@ export declare type ConfluenceUpdateAdminAnnouncementBannerInput = {
|
|
|
16825
17186
|
title?: InputMaybe<Scalars['String']['input']>;
|
|
16826
17187
|
visibility?: InputMaybe<ConfluenceAdminAnnouncementBannerVisibilityType>;
|
|
16827
17188
|
};
|
|
17189
|
+
export declare type ConfluenceUpdateAnswerInput = {
|
|
17190
|
+
body?: InputMaybe<ConfluenceContentBodyInput>;
|
|
17191
|
+
id: Scalars['ID']['input'];
|
|
17192
|
+
version: Scalars['Int']['input'];
|
|
17193
|
+
};
|
|
17194
|
+
export declare type ConfluenceUpdateAnswerPayload = Payload & {
|
|
17195
|
+
__typename?: 'ConfluenceUpdateAnswerPayload';
|
|
17196
|
+
answer?: Maybe<ConfluenceAnswer>;
|
|
17197
|
+
errors?: Maybe<Array<MutationError>>;
|
|
17198
|
+
success: Scalars['Boolean']['output'];
|
|
17199
|
+
};
|
|
16828
17200
|
export declare type ConfluenceUpdateCalendarViewInput = {
|
|
16829
17201
|
view: Scalars['String']['input'];
|
|
16830
17202
|
};
|
|
@@ -16898,6 +17270,24 @@ export declare type ConfluenceUpdateCustomApplicationLinkPayload = Payload & {
|
|
|
16898
17270
|
errors?: Maybe<Array<MutationError>>;
|
|
16899
17271
|
success: Scalars['Boolean']['output'];
|
|
16900
17272
|
};
|
|
17273
|
+
export declare type ConfluenceUpdateCustomContentPermissionsInput = {
|
|
17274
|
+
spaceId: Scalars['Long']['input'];
|
|
17275
|
+
subjectPermissionDeltasList: Array<InputMaybe<ConfluenceSubjectCustomContentPermissionDelta>>;
|
|
17276
|
+
};
|
|
17277
|
+
export declare type ConfluenceUpdateCustomContentPermissionsMutationErrorExtension = MutationErrorExtension & {
|
|
17278
|
+
__typename?: 'ConfluenceUpdateCustomContentPermissionsMutationErrorExtension';
|
|
17279
|
+
errorType?: Maybe<Scalars['String']['output']>;
|
|
17280
|
+
permissionType?: Maybe<Scalars['String']['output']>;
|
|
17281
|
+
spaceId?: Maybe<Scalars['Long']['output']>;
|
|
17282
|
+
statusCode?: Maybe<Scalars['Int']['output']>;
|
|
17283
|
+
subjectId?: Maybe<Scalars['String']['output']>;
|
|
17284
|
+
};
|
|
17285
|
+
export declare type ConfluenceUpdateCustomContentPermissionsPayload = Payload & {
|
|
17286
|
+
__typename?: 'ConfluenceUpdateCustomContentPermissionsPayload';
|
|
17287
|
+
errors?: Maybe<Array<MutationError>>;
|
|
17288
|
+
spaceId: Scalars['Long']['output'];
|
|
17289
|
+
success: Scalars['Boolean']['output'];
|
|
17290
|
+
};
|
|
16901
17291
|
export declare type ConfluenceUpdateCustomPageConfigurationInput = {
|
|
16902
17292
|
footerText: Scalars['String']['input'];
|
|
16903
17293
|
headerText: Scalars['String']['input'];
|
|
@@ -17002,6 +17392,14 @@ export declare type ConfluenceUpdateIndexingLanguageConfigurationPayload = Paylo
|
|
|
17002
17392
|
errors?: Maybe<Array<MutationError>>;
|
|
17003
17393
|
success: Scalars['Boolean']['output'];
|
|
17004
17394
|
};
|
|
17395
|
+
export declare type ConfluenceUpdateLoomEntryPointsConfigurationInput = {
|
|
17396
|
+
isEnabled: Scalars['Boolean']['input'];
|
|
17397
|
+
};
|
|
17398
|
+
export declare type ConfluenceUpdateLoomEntryPointsConfigurationPayload = Payload & {
|
|
17399
|
+
__typename?: 'ConfluenceUpdateLoomEntryPointsConfigurationPayload';
|
|
17400
|
+
errors?: Maybe<Array<MutationError>>;
|
|
17401
|
+
success: Scalars['Boolean']['output'];
|
|
17402
|
+
};
|
|
17005
17403
|
export declare type ConfluenceUpdateNav4OptInInput = {
|
|
17006
17404
|
enableNav4: Scalars['Boolean']['input'];
|
|
17007
17405
|
};
|
|
@@ -17038,6 +17436,19 @@ export declare type ConfluenceUpdatePdfExportSpaceConfigurationInput = {
|
|
|
17038
17436
|
style: Scalars['String']['input'];
|
|
17039
17437
|
titlePage: Scalars['String']['input'];
|
|
17040
17438
|
};
|
|
17439
|
+
export declare type ConfluenceUpdateQuestionInput = {
|
|
17440
|
+
body?: InputMaybe<ConfluenceContentBodyInput>;
|
|
17441
|
+
id: Scalars['ID']['input'];
|
|
17442
|
+
labels?: InputMaybe<Array<InputMaybe<LabelInput>>>;
|
|
17443
|
+
title?: InputMaybe<Scalars['String']['input']>;
|
|
17444
|
+
version: Scalars['Int']['input'];
|
|
17445
|
+
};
|
|
17446
|
+
export declare type ConfluenceUpdateQuestionPayload = Payload & {
|
|
17447
|
+
__typename?: 'ConfluenceUpdateQuestionPayload';
|
|
17448
|
+
errors?: Maybe<Array<MutationError>>;
|
|
17449
|
+
question?: Maybe<ConfluenceQuestion>;
|
|
17450
|
+
success: Scalars['Boolean']['output'];
|
|
17451
|
+
};
|
|
17041
17452
|
export declare type ConfluenceUpdateSiteConfigurationInput = {
|
|
17042
17453
|
connectionTimeout: Scalars['Int']['input'];
|
|
17043
17454
|
customContactMessage: Scalars['String']['input'];
|
|
@@ -17062,6 +17473,13 @@ export declare type ConfluenceUpdateSiteConfigurationInput = {
|
|
|
17062
17473
|
socketTimeout: Scalars['Int']['input'];
|
|
17063
17474
|
timeFormat: Scalars['String']['input'];
|
|
17064
17475
|
};
|
|
17476
|
+
export declare type ConfluenceUpdateSiteConfigurationMutationErrorExtension = MutationErrorExtension & {
|
|
17477
|
+
__typename?: 'ConfluenceUpdateSiteConfigurationMutationErrorExtension';
|
|
17478
|
+
errorType?: Maybe<Scalars['String']['output']>;
|
|
17479
|
+
groupName?: Maybe<Scalars['String']['output']>;
|
|
17480
|
+
spaceName?: Maybe<Scalars['String']['output']>;
|
|
17481
|
+
statusCode?: Maybe<Scalars['Int']['output']>;
|
|
17482
|
+
};
|
|
17065
17483
|
export declare type ConfluenceUpdateSiteConfigurationPayload = Payload & {
|
|
17066
17484
|
__typename?: 'ConfluenceUpdateSiteConfigurationPayload';
|
|
17067
17485
|
errors?: Maybe<Array<MutationError>>;
|
|
@@ -17146,6 +17564,26 @@ export declare type ConfluenceUpdateSubCalendarHiddenEventsPayload = Payload & {
|
|
|
17146
17564
|
subCalendarIds?: Maybe<Array<Maybe<Scalars['ID']['output']>>>;
|
|
17147
17565
|
success: Scalars['Boolean']['output'];
|
|
17148
17566
|
};
|
|
17567
|
+
export declare type ConfluenceUpdateTeamCalendarGlobalSettingsInput = {
|
|
17568
|
+
allowSiteAdmin: Scalars['Boolean']['input'];
|
|
17569
|
+
disablePrivateUrls: Scalars['Boolean']['input'];
|
|
17570
|
+
displayWeekNumbers: Scalars['Boolean']['input'];
|
|
17571
|
+
startDayOfWeek: ConfluenceTeamCalendarWeekValues;
|
|
17572
|
+
timeFormat: ConfluenceTeamCalendarTimeFormatTypes;
|
|
17573
|
+
};
|
|
17574
|
+
export declare type ConfluenceUpdateTeamCalendarGlobalSettingsPayload = {
|
|
17575
|
+
__typename?: 'ConfluenceUpdateTeamCalendarGlobalSettingsPayload';
|
|
17576
|
+
errors?: Maybe<Array<MutationError>>;
|
|
17577
|
+
success: Scalars['Boolean']['output'];
|
|
17578
|
+
};
|
|
17579
|
+
export declare type ConfluenceUpdateTeamPresenceSiteConfigurationInput = {
|
|
17580
|
+
isEnabledOnContentView: Scalars['Boolean']['input'];
|
|
17581
|
+
};
|
|
17582
|
+
export declare type ConfluenceUpdateTeamPresenceSiteConfigurationPayload = Payload & {
|
|
17583
|
+
__typename?: 'ConfluenceUpdateTeamPresenceSiteConfigurationPayload';
|
|
17584
|
+
errors?: Maybe<Array<MutationError>>;
|
|
17585
|
+
success: Scalars['Boolean']['output'];
|
|
17586
|
+
};
|
|
17149
17587
|
export declare type ConfluenceUpdateTeamPresenceSpaceSettingsInput = {
|
|
17150
17588
|
isEnabledOnContentView: Scalars['Boolean']['input'];
|
|
17151
17589
|
spaceId: Scalars['Long']['input'];
|
|
@@ -17191,6 +17629,25 @@ export declare type ConfluenceUpdateValuePagePropertyPayload = Payload & {
|
|
|
17191
17629
|
pageProperty?: Maybe<ConfluencePageProperty>;
|
|
17192
17630
|
success: Scalars['Boolean']['output'];
|
|
17193
17631
|
};
|
|
17632
|
+
export declare type ConfluenceUpdateVoteInput = {
|
|
17633
|
+
contentId: Scalars['ID']['input'];
|
|
17634
|
+
userId: Scalars['ID']['input'];
|
|
17635
|
+
voteType: ConfluenceVoteType;
|
|
17636
|
+
};
|
|
17637
|
+
export declare type ConfluenceUpdateVotePayload = Payload & {
|
|
17638
|
+
__typename?: 'ConfluenceUpdateVotePayload';
|
|
17639
|
+
errors?: Maybe<Array<MutationError>>;
|
|
17640
|
+
success: Scalars['Boolean']['output'];
|
|
17641
|
+
vote?: Maybe<ConfluenceVote>;
|
|
17642
|
+
};
|
|
17643
|
+
export declare type ConfluenceUploadDefaultSpaceLogoInput = {
|
|
17644
|
+
fileStoreId: Scalars['ID']['input'];
|
|
17645
|
+
};
|
|
17646
|
+
export declare type ConfluenceUploadDefaultSpaceLogoPayload = Payload & {
|
|
17647
|
+
__typename?: 'ConfluenceUploadDefaultSpaceLogoPayload';
|
|
17648
|
+
errors?: Maybe<Array<MutationError>>;
|
|
17649
|
+
success: Scalars['Boolean']['output'];
|
|
17650
|
+
};
|
|
17194
17651
|
export declare type ConfluenceUsedPluginMacro = {
|
|
17195
17652
|
__typename?: 'ConfluenceUsedPluginMacro';
|
|
17196
17653
|
macros?: Maybe<Array<ConfluenceMacro>>;
|
|
@@ -17268,6 +17725,21 @@ export declare enum ConfluenceViewState {
|
|
|
17268
17725
|
Live = "LIVE",
|
|
17269
17726
|
Renderer = "RENDERER"
|
|
17270
17727
|
}
|
|
17728
|
+
export declare type ConfluenceVote = {
|
|
17729
|
+
__typename?: 'ConfluenceVote';
|
|
17730
|
+
contentId: Scalars['ID']['output'];
|
|
17731
|
+
userId: Scalars['ID']['output'];
|
|
17732
|
+
voteType: ConfluenceVoteType;
|
|
17733
|
+
};
|
|
17734
|
+
export declare type ConfluenceVotePropertyValue = {
|
|
17735
|
+
__typename?: 'ConfluenceVotePropertyValue';
|
|
17736
|
+
total: Scalars['Int']['output'];
|
|
17737
|
+
voteType: Scalars['String']['output'];
|
|
17738
|
+
};
|
|
17739
|
+
export declare enum ConfluenceVoteType {
|
|
17740
|
+
Downvote = "DOWNVOTE",
|
|
17741
|
+
Upvote = "UPVOTE"
|
|
17742
|
+
}
|
|
17271
17743
|
export declare type ConfluenceWacTemplate = {
|
|
17272
17744
|
__typename?: 'ConfluenceWacTemplate';
|
|
17273
17745
|
templateId?: Maybe<Scalars['String']['output']>;
|
|
@@ -19669,6 +20141,7 @@ export declare type CplsAddContributionInput = {
|
|
|
19669
20141
|
export declare type CplsAddContributionsInput = {
|
|
19670
20142
|
cloudId: Scalars['ID']['input'];
|
|
19671
20143
|
contributions: Array<CplsAddContributionInput>;
|
|
20144
|
+
scopeId: Scalars['ID']['input'];
|
|
19672
20145
|
};
|
|
19673
20146
|
export declare type CplsAddContributionsPayload = {
|
|
19674
20147
|
__typename?: 'CplsAddContributionsPayload';
|
|
@@ -19748,10 +20221,8 @@ export declare type CplsContributorWorkConnection = HasPageInfo & {
|
|
|
19748
20221
|
export declare type CplsContributorWorkEdge = {
|
|
19749
20222
|
__typename?: 'CplsContributorWorkEdge';
|
|
19750
20223
|
contributions: Array<CplsContribution>;
|
|
19751
|
-
contributorId: Scalars['ID']['output'];
|
|
19752
20224
|
cursor: Scalars['String']['output'];
|
|
19753
|
-
|
|
19754
|
-
workId: Scalars['ID']['output'];
|
|
20225
|
+
node?: Maybe<CplsWorkData>;
|
|
19755
20226
|
};
|
|
19756
20227
|
export declare type CplsCustomContributionTarget = {
|
|
19757
20228
|
__typename?: 'CplsCustomContributionTarget';
|
|
@@ -20679,6 +21150,17 @@ export declare type CsmAiAuthoredCoachingContentInput = {
|
|
|
20679
21150
|
triggerBehaviorByCoach?: InputMaybe<Scalars['String']['input']>;
|
|
20680
21151
|
triggerConditionByCoach?: InputMaybe<Scalars['String']['input']>;
|
|
20681
21152
|
};
|
|
21153
|
+
export declare type CsmAiByodContent = {
|
|
21154
|
+
__typename?: 'CsmAiByodContent';
|
|
21155
|
+
datasourceId: Scalars['String']['output'];
|
|
21156
|
+
workspaceName: Scalars['String']['output'];
|
|
21157
|
+
workspaceUrl: Scalars['String']['output'];
|
|
21158
|
+
};
|
|
21159
|
+
export declare type CsmAiByodContents = {
|
|
21160
|
+
__typename?: 'CsmAiByodContents';
|
|
21161
|
+
contents: Array<Maybe<CsmAiByodContent>>;
|
|
21162
|
+
};
|
|
21163
|
+
export declare type CsmAiByodContentsResult = CsmAiByodContents | QueryError;
|
|
20682
21164
|
export declare type CsmAiCoachingContentResult = CsmAiAgentCoachingContent | QueryError;
|
|
20683
21165
|
export declare type CsmAiConfluenceKnowledgeFilter = {
|
|
20684
21166
|
__typename?: 'CsmAiConfluenceKnowledgeFilter';
|
|
@@ -21159,7 +21641,7 @@ export declare enum CustomUserFieldInputComparators {
|
|
|
21159
21641
|
IsSet = "IS_SET",
|
|
21160
21642
|
NotSet = "NOT_SET"
|
|
21161
21643
|
}
|
|
21162
|
-
export declare type Customer360Customer = {
|
|
21644
|
+
export declare type Customer360Customer = Node & {
|
|
21163
21645
|
__typename?: 'Customer360Customer';
|
|
21164
21646
|
churnRisk?: Maybe<Scalars['String']['output']>;
|
|
21165
21647
|
countryName?: Maybe<Scalars['String']['output']>;
|
|
@@ -21332,7 +21814,6 @@ export declare type CustomerServiceBrandingTileInput = {
|
|
|
21332
21814
|
export declare type CustomerServiceBrandingUpsertInput = {
|
|
21333
21815
|
colors?: InputMaybe<CustomerServiceBrandingColorsInput>;
|
|
21334
21816
|
entityType: CustomerServiceBrandingEntityType;
|
|
21335
|
-
helpCenterId: Scalars['ID']['input'];
|
|
21336
21817
|
icon?: InputMaybe<CustomerServiceBrandingIconInput>;
|
|
21337
21818
|
logo?: InputMaybe<CustomerServiceBrandingLogoInput>;
|
|
21338
21819
|
tile?: InputMaybe<CustomerServiceBrandingTileInput>;
|
|
@@ -21816,6 +22297,7 @@ export declare type CustomerServiceMutationApiUpdateTemplateFormArgs = {
|
|
|
21816
22297
|
templateFormId: Scalars['ID']['input'];
|
|
21817
22298
|
};
|
|
21818
22299
|
export declare type CustomerServiceMutationApiUpsertBrandingArgs = {
|
|
22300
|
+
helpCenterId: Scalars['ID']['input'];
|
|
21819
22301
|
input: CustomerServiceBrandingUpsertInput;
|
|
21820
22302
|
};
|
|
21821
22303
|
export declare type CustomerServiceNote = {
|
|
@@ -23501,6 +23983,9 @@ export declare type DevAiRovoDevSession = Node & {
|
|
|
23501
23983
|
updatedAt?: Maybe<Scalars['DateTime']['output']>;
|
|
23502
23984
|
workspaceAri?: Maybe<Scalars['ID']['output']>;
|
|
23503
23985
|
};
|
|
23986
|
+
export declare type DevAiRovoDevSessionEditorPathArgs = {
|
|
23987
|
+
keepAlive?: InputMaybe<Scalars['Boolean']['input']>;
|
|
23988
|
+
};
|
|
23504
23989
|
export declare enum DevAiRovoDevSessionArchivedFilter {
|
|
23505
23990
|
All = "ALL",
|
|
23506
23991
|
ArchivedOnly = "ARCHIVED_ONLY",
|
|
@@ -24361,7 +24846,9 @@ export declare enum DevOpsMetricsCycleTimePhase {
|
|
|
24361
24846
|
}
|
|
24362
24847
|
export declare type DevOpsMetricsDailyReviewTimeData = {
|
|
24363
24848
|
__typename?: 'DevOpsMetricsDailyReviewTimeData';
|
|
24849
|
+
avgReviewTimeSeconds?: Maybe<Scalars['Float']['output']>;
|
|
24364
24850
|
medianReviewTimeSeconds?: Maybe<Scalars['Float']['output']>;
|
|
24851
|
+
p90ReviewTimeSeconds?: Maybe<Scalars['Float']['output']>;
|
|
24365
24852
|
};
|
|
24366
24853
|
export declare type DevOpsMetricsDeploymentFrequency = {
|
|
24367
24854
|
__typename?: 'DevOpsMetricsDeploymentFrequency';
|
|
@@ -24461,15 +24948,24 @@ export declare enum DevOpsMetricsPerPrCycleTimeBreakdownPhase {
|
|
|
24461
24948
|
}
|
|
24462
24949
|
export declare type DevOpsMetricsPerPrCycleTimeBreakdownPhaseMetrics = {
|
|
24463
24950
|
__typename?: 'DevOpsMetricsPerPRCycleTimeBreakdownPhaseMetrics';
|
|
24951
|
+
avgHistoricalPRCyclePhaseTime?: Maybe<Scalars['Float']['output']>;
|
|
24952
|
+
avgPRCyclePhaseTime?: Maybe<Scalars['Float']['output']>;
|
|
24464
24953
|
insights?: Maybe<Array<DevOpsMetricsCycleTimeInsight>>;
|
|
24465
24954
|
medianHistoricalPRCyclePhaseTime?: Maybe<Scalars['Float']['output']>;
|
|
24466
24955
|
medianPRCyclePhaseTime?: Maybe<Scalars['Float']['output']>;
|
|
24956
|
+
p90HistoricalPRCyclePhaseTime?: Maybe<Scalars['Float']['output']>;
|
|
24957
|
+
p90PRCyclePhaseTime?: Maybe<Scalars['Float']['output']>;
|
|
24467
24958
|
phase?: Maybe<DevOpsMetricsPerPrCycleTimeBreakdownPhase>;
|
|
24468
24959
|
};
|
|
24469
24960
|
export declare type DevOpsMetricsPerProjectPrCycleTimeMetrics = {
|
|
24470
24961
|
__typename?: 'DevOpsMetricsPerProjectPRCycleTimeMetrics';
|
|
24962
|
+
avgHistoricalPRCycleTime?: Maybe<Scalars['Float']['output']>;
|
|
24963
|
+
avgPRCycleTime?: Maybe<Scalars['Float']['output']>;
|
|
24964
|
+
datapoints: Array<Maybe<DevOpsMetricsDailyReviewTimeData>>;
|
|
24471
24965
|
medianHistoricalPRCycleTime: Scalars['Float']['output'];
|
|
24472
24966
|
medianPRCycleTime: Scalars['Float']['output'];
|
|
24967
|
+
p90HistoricalPRCycleTime?: Maybe<Scalars['Float']['output']>;
|
|
24968
|
+
p90PRCycleTime?: Maybe<Scalars['Float']['output']>;
|
|
24473
24969
|
perDayPRMetrics: Array<Maybe<DevOpsMetricsDailyReviewTimeData>>;
|
|
24474
24970
|
};
|
|
24475
24971
|
export declare type DevOpsMetricsPerProjectPrCycleTimeMetricsConnection = {
|
|
@@ -25242,7 +25738,7 @@ export declare enum DocumentRepresentation {
|
|
|
25242
25738
|
export declare type DraftContentProperties = {
|
|
25243
25739
|
__typename?: 'DraftContentProperties';
|
|
25244
25740
|
coverPictureWidth?: Maybe<Scalars['String']['output']>;
|
|
25245
|
-
generatedBy?: Maybe<
|
|
25741
|
+
generatedBy?: Maybe<Scalars['String']['output']>;
|
|
25246
25742
|
};
|
|
25247
25743
|
export declare type DvcsBitbucketWorkspaceConnection = {
|
|
25248
25744
|
__typename?: 'DvcsBitbucketWorkspaceConnection';
|
|
@@ -25597,6 +26093,7 @@ export declare type EcosystemMutationPublishRealtimeChannelArgs = {
|
|
|
25597
26093
|
isGlobal?: InputMaybe<Scalars['Boolean']['input']>;
|
|
25598
26094
|
name: Scalars['String']['input'];
|
|
25599
26095
|
payload: Scalars['String']['input'];
|
|
26096
|
+
token?: InputMaybe<Scalars['String']['input']>;
|
|
25600
26097
|
};
|
|
25601
26098
|
export declare type EcosystemMutationRemoveAppContributorsArgs = {
|
|
25602
26099
|
input: RemoveAppContributorsInput;
|
|
@@ -25765,6 +26262,7 @@ export declare type EcosystemSubscriptionRealtimeChannelArgs = {
|
|
|
25765
26262
|
installationId: Scalars['ID']['input'];
|
|
25766
26263
|
isGlobal?: InputMaybe<Scalars['Boolean']['input']>;
|
|
25767
26264
|
name: Scalars['String']['input'];
|
|
26265
|
+
token?: InputMaybe<Scalars['String']['input']>;
|
|
25768
26266
|
};
|
|
25769
26267
|
export declare type EcosystemUpdateAppOAuthClientResult = Payload & {
|
|
25770
26268
|
__typename?: 'EcosystemUpdateAppOAuthClientResult';
|
|
@@ -29801,7 +30299,7 @@ export declare type GraphIncidentLinkedJswIssueRelationshipEdge = {
|
|
|
29801
30299
|
export declare type GraphIntegrationDirectoryFilterDimension = {
|
|
29802
30300
|
__typename?: 'GraphIntegrationDirectoryFilterDimension';
|
|
29803
30301
|
displayName: Scalars['String']['output'];
|
|
29804
|
-
iconUrl?: Maybe<Scalars['
|
|
30302
|
+
iconUrl?: Maybe<Scalars['String']['output']>;
|
|
29805
30303
|
id: Scalars['ID']['output'];
|
|
29806
30304
|
relevantFor?: Maybe<GraphIntegrationDirectoryItemType>;
|
|
29807
30305
|
};
|
|
@@ -29827,6 +30325,7 @@ export declare type GraphIntegrationDirectoryItemEdge = {
|
|
|
29827
30325
|
node?: Maybe<GraphIntegrationDirectoryItem>;
|
|
29828
30326
|
};
|
|
29829
30327
|
export declare enum GraphIntegrationDirectoryItemType {
|
|
30328
|
+
McpServer = "MCP_SERVER",
|
|
29830
30329
|
McpTool = "MCP_TOOL"
|
|
29831
30330
|
}
|
|
29832
30331
|
export declare type GraphIntegrationMcpAdminManagementMcpServerConnection = {
|
|
@@ -29846,7 +30345,7 @@ export declare type GraphIntegrationMcpAdminManagementMcpServerNode = {
|
|
|
29846
30345
|
baseUrl: Scalars['URL']['output'];
|
|
29847
30346
|
displayName: Scalars['String']['output'];
|
|
29848
30347
|
endpointPath?: Maybe<Scalars['String']['output']>;
|
|
29849
|
-
iconUrl?: Maybe<Scalars['
|
|
30348
|
+
iconUrl?: Maybe<Scalars['String']['output']>;
|
|
29850
30349
|
id: Scalars['ID']['output'];
|
|
29851
30350
|
serverType: GraphIntegrationMcpAdminManagementMcpServerType;
|
|
29852
30351
|
status: GraphIntegrationMcpAdminManagementMcpServerStatus;
|
|
@@ -29885,7 +30384,7 @@ export declare type GraphIntegrationMcpAdminManagementMcpToolNode = {
|
|
|
29885
30384
|
configuration?: Maybe<GraphIntegrationMcpAdminManagementMcpToolConfiguration>;
|
|
29886
30385
|
description?: Maybe<Scalars['String']['output']>;
|
|
29887
30386
|
displayName: Scalars['String']['output'];
|
|
29888
|
-
iconUrl?: Maybe<Scalars['
|
|
30387
|
+
iconUrl?: Maybe<Scalars['String']['output']>;
|
|
29889
30388
|
id: Scalars['ID']['output'];
|
|
29890
30389
|
mcpServer: GraphIntegrationMcpAdminManagementMcpServerNode;
|
|
29891
30390
|
name: Scalars['String']['output'];
|
|
@@ -29953,18 +30452,23 @@ export declare type GraphIntegrationMcpAdminManagementUpdateMcpToolConfiguration
|
|
|
29953
30452
|
export declare type GraphIntegrationMcpServer = {
|
|
29954
30453
|
__typename?: 'GraphIntegrationMcpServer';
|
|
29955
30454
|
displayName: Scalars['String']['output'];
|
|
29956
|
-
iconUrl?: Maybe<Scalars['
|
|
30455
|
+
iconUrl?: Maybe<Scalars['String']['output']>;
|
|
29957
30456
|
id: Scalars['ID']['output'];
|
|
29958
30457
|
};
|
|
29959
30458
|
export declare type GraphIntegrationMcpTool = {
|
|
29960
30459
|
__typename?: 'GraphIntegrationMcpTool';
|
|
29961
30460
|
description?: Maybe<Scalars['String']['output']>;
|
|
29962
30461
|
displayName: Scalars['String']['output'];
|
|
29963
|
-
iconUrl?: Maybe<Scalars['
|
|
30462
|
+
iconUrl?: Maybe<Scalars['String']['output']>;
|
|
29964
30463
|
id: Scalars['ID']['output'];
|
|
29965
30464
|
mcpServer: GraphIntegrationMcpServer;
|
|
29966
30465
|
name: Scalars['String']['output'];
|
|
30466
|
+
status?: Maybe<GraphIntegrationStatus>;
|
|
29967
30467
|
};
|
|
30468
|
+
export declare enum GraphIntegrationStatus {
|
|
30469
|
+
Disabled = "DISABLED",
|
|
30470
|
+
Enabled = "ENABLED"
|
|
30471
|
+
}
|
|
29968
30472
|
export declare type GraphIssueAssociatedDesignPayload = Payload & {
|
|
29969
30473
|
__typename?: 'GraphIssueAssociatedDesignPayload';
|
|
29970
30474
|
errors?: Maybe<Array<MutationError>>;
|
|
@@ -32742,6 +33246,8 @@ export declare type GraphStore = {
|
|
|
32742
33246
|
contentReferencedEntityRelationship?: Maybe<GraphStoreFullContentReferencedEntityConnection>;
|
|
32743
33247
|
conversationHasMessage?: Maybe<GraphStoreSimplifiedConversationHasMessageConnection>;
|
|
32744
33248
|
conversationHasMessageInverse?: Maybe<GraphStoreSimplifiedConversationHasMessageInverseConnection>;
|
|
33249
|
+
customerAssociatedIssue?: Maybe<GraphStoreSimplifiedCustomerAssociatedIssueConnection>;
|
|
33250
|
+
customerAssociatedIssueInverse?: Maybe<GraphStoreSimplifiedCustomerAssociatedIssueInverseConnection>;
|
|
32745
33251
|
cypherQuery: GraphStoreCypherQueryConnection;
|
|
32746
33252
|
cypherQueryV2: GraphStoreCypherQueryV2Connection;
|
|
32747
33253
|
cypherQueryV2Batch: GraphStoreCypherQueryV2BatchConnection;
|
|
@@ -32876,6 +33382,8 @@ export declare type GraphStore = {
|
|
|
32876
33382
|
issueHasChangedPriorityInverse?: Maybe<GraphStoreSimplifiedIssueHasChangedPriorityInverseConnection>;
|
|
32877
33383
|
issueHasChangedStatus?: Maybe<GraphStoreSimplifiedIssueHasChangedStatusConnection>;
|
|
32878
33384
|
issueHasChangedStatusInverse?: Maybe<GraphStoreSimplifiedIssueHasChangedStatusInverseConnection>;
|
|
33385
|
+
issueHasComment?: Maybe<GraphStoreSimplifiedIssueHasCommentConnection>;
|
|
33386
|
+
issueHasCommentInverse?: Maybe<GraphStoreSimplifiedIssueHasCommentInverseConnection>;
|
|
32879
33387
|
issueMentionedInConversation?: Maybe<GraphStoreSimplifiedIssueMentionedInConversationConnection>;
|
|
32880
33388
|
issueMentionedInConversationInverse?: Maybe<GraphStoreSimplifiedIssueMentionedInConversationInverseConnection>;
|
|
32881
33389
|
issueMentionedInMessage?: Maybe<GraphStoreSimplifiedIssueMentionedInMessageConnection>;
|
|
@@ -33218,24 +33726,16 @@ export declare type GraphStore = {
|
|
|
33218
33726
|
userCreatedCalendarEventInverse?: Maybe<GraphStoreSimplifiedUserCreatedCalendarEventInverseConnection>;
|
|
33219
33727
|
userCreatedConfluenceBlogpost?: Maybe<GraphStoreSimplifiedUserCreatedConfluenceBlogpostConnection>;
|
|
33220
33728
|
userCreatedConfluenceBlogpostInverse?: Maybe<GraphStoreSimplifiedUserCreatedConfluenceBlogpostInverseConnection>;
|
|
33221
|
-
userCreatedConfluenceBlogpostKamino?: Maybe<GraphStoreSimplifiedUserCreatedConfluenceBlogpostKaminoConnection>;
|
|
33222
|
-
userCreatedConfluenceBlogpostKaminoInverse?: Maybe<GraphStoreSimplifiedUserCreatedConfluenceBlogpostKaminoInverseConnection>;
|
|
33223
33729
|
userCreatedConfluenceComment?: Maybe<GraphStoreSimplifiedUserCreatedConfluenceCommentConnection>;
|
|
33224
33730
|
userCreatedConfluenceCommentInverse?: Maybe<GraphStoreSimplifiedUserCreatedConfluenceCommentInverseConnection>;
|
|
33225
|
-
userCreatedConfluenceCommentKamino?: Maybe<GraphStoreSimplifiedUserCreatedConfluenceCommentKaminoConnection>;
|
|
33226
|
-
userCreatedConfluenceCommentKaminoInverse?: Maybe<GraphStoreSimplifiedUserCreatedConfluenceCommentKaminoInverseConnection>;
|
|
33227
33731
|
userCreatedConfluenceDatabase?: Maybe<GraphStoreSimplifiedUserCreatedConfluenceDatabaseConnection>;
|
|
33228
33732
|
userCreatedConfluenceDatabaseInverse?: Maybe<GraphStoreSimplifiedUserCreatedConfluenceDatabaseInverseConnection>;
|
|
33229
33733
|
userCreatedConfluenceEmbed?: Maybe<GraphStoreSimplifiedUserCreatedConfluenceEmbedConnection>;
|
|
33230
33734
|
userCreatedConfluenceEmbedInverse?: Maybe<GraphStoreSimplifiedUserCreatedConfluenceEmbedInverseConnection>;
|
|
33231
33735
|
userCreatedConfluencePage?: Maybe<GraphStoreSimplifiedUserCreatedConfluencePageConnection>;
|
|
33232
33736
|
userCreatedConfluencePageInverse?: Maybe<GraphStoreSimplifiedUserCreatedConfluencePageInverseConnection>;
|
|
33233
|
-
userCreatedConfluencePageKamino?: Maybe<GraphStoreSimplifiedUserCreatedConfluencePageKaminoConnection>;
|
|
33234
|
-
userCreatedConfluencePageKaminoInverse?: Maybe<GraphStoreSimplifiedUserCreatedConfluencePageKaminoInverseConnection>;
|
|
33235
33737
|
userCreatedConfluenceSpace?: Maybe<GraphStoreSimplifiedUserCreatedConfluenceSpaceConnection>;
|
|
33236
33738
|
userCreatedConfluenceSpaceInverse?: Maybe<GraphStoreSimplifiedUserCreatedConfluenceSpaceInverseConnection>;
|
|
33237
|
-
userCreatedConfluenceSpaceKamino?: Maybe<GraphStoreSimplifiedUserCreatedConfluenceSpaceKaminoConnection>;
|
|
33238
|
-
userCreatedConfluenceSpaceKaminoInverse?: Maybe<GraphStoreSimplifiedUserCreatedConfluenceSpaceKaminoInverseConnection>;
|
|
33239
33739
|
userCreatedConfluenceWhiteboard?: Maybe<GraphStoreSimplifiedUserCreatedConfluenceWhiteboardConnection>;
|
|
33240
33740
|
userCreatedConfluenceWhiteboardInverse?: Maybe<GraphStoreSimplifiedUserCreatedConfluenceWhiteboardInverseConnection>;
|
|
33241
33741
|
userCreatedDesign?: Maybe<GraphStoreSimplifiedUserCreatedDesignConnection>;
|
|
@@ -33348,8 +33848,6 @@ export declare type GraphStore = {
|
|
|
33348
33848
|
userUpdatedCommentInverse?: Maybe<GraphStoreSimplifiedUserUpdatedCommentInverseConnection>;
|
|
33349
33849
|
userUpdatedConfluenceBlogpost?: Maybe<GraphStoreSimplifiedUserUpdatedConfluenceBlogpostConnection>;
|
|
33350
33850
|
userUpdatedConfluenceBlogpostInverse?: Maybe<GraphStoreSimplifiedUserUpdatedConfluenceBlogpostInverseConnection>;
|
|
33351
|
-
userUpdatedConfluenceBlogpostKamino?: Maybe<GraphStoreSimplifiedUserUpdatedConfluenceBlogpostKaminoConnection>;
|
|
33352
|
-
userUpdatedConfluenceBlogpostKaminoInverse?: Maybe<GraphStoreSimplifiedUserUpdatedConfluenceBlogpostKaminoInverseConnection>;
|
|
33353
33851
|
userUpdatedConfluencePage?: Maybe<GraphStoreSimplifiedUserUpdatedConfluencePageConnection>;
|
|
33354
33852
|
userUpdatedConfluencePageInverse?: Maybe<GraphStoreSimplifiedUserUpdatedConfluencePageInverseConnection>;
|
|
33355
33853
|
userUpdatedConfluenceSpace?: Maybe<GraphStoreSimplifiedUserUpdatedConfluenceSpaceConnection>;
|
|
@@ -34188,6 +34686,20 @@ export declare type GraphStoreConversationHasMessageInverseArgs = {
|
|
|
34188
34686
|
id: Scalars['ID']['input'];
|
|
34189
34687
|
sort?: InputMaybe<GraphStoreConversationHasMessageSortInput>;
|
|
34190
34688
|
};
|
|
34689
|
+
export declare type GraphStoreCustomerAssociatedIssueArgs = {
|
|
34690
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
34691
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
34692
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
34693
|
+
id: Scalars['ID']['input'];
|
|
34694
|
+
sort?: InputMaybe<GraphStoreCustomerAssociatedIssueSortInput>;
|
|
34695
|
+
};
|
|
34696
|
+
export declare type GraphStoreCustomerAssociatedIssueInverseArgs = {
|
|
34697
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
34698
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
34699
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
34700
|
+
id: Scalars['ID']['input'];
|
|
34701
|
+
sort?: InputMaybe<GraphStoreCustomerAssociatedIssueSortInput>;
|
|
34702
|
+
};
|
|
34191
34703
|
export declare type GraphStoreCypherQueryArgs = {
|
|
34192
34704
|
additionalInputs?: InputMaybe<Scalars['JSON']['input']>;
|
|
34193
34705
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -35055,6 +35567,20 @@ export declare type GraphStoreIssueHasChangedStatusInverseArgs = {
|
|
|
35055
35567
|
id: Scalars['ID']['input'];
|
|
35056
35568
|
sort?: InputMaybe<GraphStoreIssueHasChangedStatusSortInput>;
|
|
35057
35569
|
};
|
|
35570
|
+
export declare type GraphStoreIssueHasCommentArgs = {
|
|
35571
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
35572
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
35573
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
35574
|
+
id: Scalars['ID']['input'];
|
|
35575
|
+
sort?: InputMaybe<GraphStoreIssueHasCommentSortInput>;
|
|
35576
|
+
};
|
|
35577
|
+
export declare type GraphStoreIssueHasCommentInverseArgs = {
|
|
35578
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
35579
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
35580
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
35581
|
+
id: Scalars['ID']['input'];
|
|
35582
|
+
sort?: InputMaybe<GraphStoreIssueHasCommentSortInput>;
|
|
35583
|
+
};
|
|
35058
35584
|
export declare type GraphStoreIssueMentionedInConversationArgs = {
|
|
35059
35585
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
35060
35586
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -37327,20 +37853,6 @@ export declare type GraphStoreUserCreatedConfluenceBlogpostInverseArgs = {
|
|
|
37327
37853
|
id: Scalars['ID']['input'];
|
|
37328
37854
|
sort?: InputMaybe<GraphStoreUserCreatedConfluenceBlogpostSortInput>;
|
|
37329
37855
|
};
|
|
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
37856
|
export declare type GraphStoreUserCreatedConfluenceCommentArgs = {
|
|
37345
37857
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
37346
37858
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -37355,20 +37867,6 @@ export declare type GraphStoreUserCreatedConfluenceCommentInverseArgs = {
|
|
|
37355
37867
|
id: Scalars['ID']['input'];
|
|
37356
37868
|
sort?: InputMaybe<GraphStoreUserCreatedConfluenceCommentSortInput>;
|
|
37357
37869
|
};
|
|
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
37870
|
export declare type GraphStoreUserCreatedConfluenceDatabaseArgs = {
|
|
37373
37871
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
37374
37872
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -37411,20 +37909,6 @@ export declare type GraphStoreUserCreatedConfluencePageInverseArgs = {
|
|
|
37411
37909
|
id: Scalars['ID']['input'];
|
|
37412
37910
|
sort?: InputMaybe<GraphStoreUserCreatedConfluencePageSortInput>;
|
|
37413
37911
|
};
|
|
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
37912
|
export declare type GraphStoreUserCreatedConfluenceSpaceArgs = {
|
|
37429
37913
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
37430
37914
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -37439,20 +37923,6 @@ export declare type GraphStoreUserCreatedConfluenceSpaceInverseArgs = {
|
|
|
37439
37923
|
id: Scalars['ID']['input'];
|
|
37440
37924
|
sort?: InputMaybe<GraphStoreUserCreatedConfluenceSpaceSortInput>;
|
|
37441
37925
|
};
|
|
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
37926
|
export declare type GraphStoreUserCreatedConfluenceWhiteboardArgs = {
|
|
37457
37927
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
37458
37928
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -38239,20 +38709,6 @@ export declare type GraphStoreUserUpdatedConfluenceBlogpostInverseArgs = {
|
|
|
38239
38709
|
id: Scalars['ID']['input'];
|
|
38240
38710
|
sort?: InputMaybe<GraphStoreUserUpdatedConfluenceBlogpostSortInput>;
|
|
38241
38711
|
};
|
|
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
38712
|
export declare type GraphStoreUserUpdatedConfluencePageArgs = {
|
|
38257
38713
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
38258
38714
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -40613,6 +41069,9 @@ export declare enum GraphStoreCreateVulnerabilityAssociatedIssueVulnerabilityTyp
|
|
|
40613
41069
|
Sca = "SCA",
|
|
40614
41070
|
Unknown = "UNKNOWN"
|
|
40615
41071
|
}
|
|
41072
|
+
export declare type GraphStoreCustomerAssociatedIssueSortInput = {
|
|
41073
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
41074
|
+
};
|
|
40616
41075
|
export declare type GraphStoreCypherQueryBooleanObject = {
|
|
40617
41076
|
__typename?: 'GraphStoreCypherQueryBooleanObject';
|
|
40618
41077
|
value: Scalars['Boolean']['output'];
|
|
@@ -40655,7 +41114,7 @@ export declare type GraphStoreCypherQueryRowItemNode = {
|
|
|
40655
41114
|
data?: Maybe<GraphStoreCypherQueryRowItemNodeNodeUnion>;
|
|
40656
41115
|
id: Scalars['ID']['output'];
|
|
40657
41116
|
};
|
|
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;
|
|
41117
|
+
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
41118
|
export declare type GraphStoreCypherQueryStringObject = {
|
|
40660
41119
|
__typename?: 'GraphStoreCypherQueryStringObject';
|
|
40661
41120
|
value: Scalars['String']['output'];
|
|
@@ -40665,13 +41124,13 @@ export declare type GraphStoreCypherQueryV2AriNode = {
|
|
|
40665
41124
|
data?: Maybe<GraphStoreCypherQueryV2AriNodeUnion>;
|
|
40666
41125
|
id: Scalars['ID']['output'];
|
|
40667
41126
|
};
|
|
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;
|
|
41127
|
+
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
41128
|
export declare type GraphStoreCypherQueryV2BatchAriNode = {
|
|
40670
41129
|
__typename?: 'GraphStoreCypherQueryV2BatchAriNode';
|
|
40671
41130
|
data?: Maybe<GraphStoreCypherQueryV2BatchAriNodeUnion>;
|
|
40672
41131
|
id: Scalars['ID']['output'];
|
|
40673
41132
|
};
|
|
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;
|
|
41133
|
+
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
41134
|
export declare type GraphStoreCypherQueryV2BatchBooleanObject = {
|
|
40676
41135
|
__typename?: 'GraphStoreCypherQueryV2BatchBooleanObject';
|
|
40677
41136
|
value: Scalars['Boolean']['output'];
|
|
@@ -40772,7 +41231,7 @@ export declare enum GraphStoreCypherQueryV2VersionEnum {
|
|
|
40772
41231
|
V2 = "V2",
|
|
40773
41232
|
V3 = "V3"
|
|
40774
41233
|
}
|
|
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;
|
|
41234
|
+
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
41235
|
export declare type GraphStoreCypherQueryValueNode = {
|
|
40777
41236
|
__typename?: 'GraphStoreCypherQueryValueNode';
|
|
40778
41237
|
data?: Maybe<GraphStoreCypherQueryValueItemUnion>;
|
|
@@ -44828,6 +45287,9 @@ export declare type GraphStoreIssueHasChangedPrioritySortInput = {
|
|
|
44828
45287
|
export declare type GraphStoreIssueHasChangedStatusSortInput = {
|
|
44829
45288
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
44830
45289
|
};
|
|
45290
|
+
export declare type GraphStoreIssueHasCommentSortInput = {
|
|
45291
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
45292
|
+
};
|
|
44831
45293
|
export declare type GraphStoreIssueMentionedInConversationSortInput = {
|
|
44832
45294
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
44833
45295
|
};
|
|
@@ -47149,6 +47611,34 @@ export declare type GraphStoreSimplifiedConversationHasMessageInverseEdge = {
|
|
|
47149
47611
|
};
|
|
47150
47612
|
export declare type GraphStoreSimplifiedConversationHasMessageInverseUnion = ExternalConversation;
|
|
47151
47613
|
export declare type GraphStoreSimplifiedConversationHasMessageUnion = ExternalMessage;
|
|
47614
|
+
export declare type GraphStoreSimplifiedCustomerAssociatedIssueConnection = HasPageInfo & {
|
|
47615
|
+
__typename?: 'GraphStoreSimplifiedCustomerAssociatedIssueConnection';
|
|
47616
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedCustomerAssociatedIssueEdge>>>;
|
|
47617
|
+
pageInfo: PageInfo;
|
|
47618
|
+
};
|
|
47619
|
+
export declare type GraphStoreSimplifiedCustomerAssociatedIssueEdge = {
|
|
47620
|
+
__typename?: 'GraphStoreSimplifiedCustomerAssociatedIssueEdge';
|
|
47621
|
+
createdAt: Scalars['DateTime']['output'];
|
|
47622
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
47623
|
+
id: Scalars['ID']['output'];
|
|
47624
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
47625
|
+
node?: Maybe<GraphStoreSimplifiedCustomerAssociatedIssueUnion>;
|
|
47626
|
+
};
|
|
47627
|
+
export declare type GraphStoreSimplifiedCustomerAssociatedIssueInverseConnection = HasPageInfo & {
|
|
47628
|
+
__typename?: 'GraphStoreSimplifiedCustomerAssociatedIssueInverseConnection';
|
|
47629
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedCustomerAssociatedIssueInverseEdge>>>;
|
|
47630
|
+
pageInfo: PageInfo;
|
|
47631
|
+
};
|
|
47632
|
+
export declare type GraphStoreSimplifiedCustomerAssociatedIssueInverseEdge = {
|
|
47633
|
+
__typename?: 'GraphStoreSimplifiedCustomerAssociatedIssueInverseEdge';
|
|
47634
|
+
createdAt: Scalars['DateTime']['output'];
|
|
47635
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
47636
|
+
id: Scalars['ID']['output'];
|
|
47637
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
47638
|
+
node?: Maybe<GraphStoreSimplifiedCustomerAssociatedIssueInverseUnion>;
|
|
47639
|
+
};
|
|
47640
|
+
export declare type GraphStoreSimplifiedCustomerAssociatedIssueInverseUnion = Customer360Customer;
|
|
47641
|
+
export declare type GraphStoreSimplifiedCustomerAssociatedIssueUnion = JiraIssue;
|
|
47152
47642
|
export declare type GraphStoreSimplifiedDeploymentAssociatedDeploymentConnection = HasPageInfo & {
|
|
47153
47643
|
__typename?: 'GraphStoreSimplifiedDeploymentAssociatedDeploymentConnection';
|
|
47154
47644
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedDeploymentAssociatedDeploymentEdge>>>;
|
|
@@ -48301,6 +48791,34 @@ export declare type GraphStoreSimplifiedIssueHasChangedStatusInverseEdge = {
|
|
|
48301
48791
|
};
|
|
48302
48792
|
export declare type GraphStoreSimplifiedIssueHasChangedStatusInverseUnion = JiraIssue;
|
|
48303
48793
|
export declare type GraphStoreSimplifiedIssueHasChangedStatusUnion = JiraStatus;
|
|
48794
|
+
export declare type GraphStoreSimplifiedIssueHasCommentConnection = HasPageInfo & {
|
|
48795
|
+
__typename?: 'GraphStoreSimplifiedIssueHasCommentConnection';
|
|
48796
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedIssueHasCommentEdge>>>;
|
|
48797
|
+
pageInfo: PageInfo;
|
|
48798
|
+
};
|
|
48799
|
+
export declare type GraphStoreSimplifiedIssueHasCommentEdge = {
|
|
48800
|
+
__typename?: 'GraphStoreSimplifiedIssueHasCommentEdge';
|
|
48801
|
+
createdAt: Scalars['DateTime']['output'];
|
|
48802
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
48803
|
+
id: Scalars['ID']['output'];
|
|
48804
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
48805
|
+
node?: Maybe<GraphStoreSimplifiedIssueHasCommentUnion>;
|
|
48806
|
+
};
|
|
48807
|
+
export declare type GraphStoreSimplifiedIssueHasCommentInverseConnection = HasPageInfo & {
|
|
48808
|
+
__typename?: 'GraphStoreSimplifiedIssueHasCommentInverseConnection';
|
|
48809
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedIssueHasCommentInverseEdge>>>;
|
|
48810
|
+
pageInfo: PageInfo;
|
|
48811
|
+
};
|
|
48812
|
+
export declare type GraphStoreSimplifiedIssueHasCommentInverseEdge = {
|
|
48813
|
+
__typename?: 'GraphStoreSimplifiedIssueHasCommentInverseEdge';
|
|
48814
|
+
createdAt: Scalars['DateTime']['output'];
|
|
48815
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
48816
|
+
id: Scalars['ID']['output'];
|
|
48817
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
48818
|
+
node?: Maybe<GraphStoreSimplifiedIssueHasCommentInverseUnion>;
|
|
48819
|
+
};
|
|
48820
|
+
export declare type GraphStoreSimplifiedIssueHasCommentInverseUnion = JiraIssue;
|
|
48821
|
+
export declare type GraphStoreSimplifiedIssueHasCommentUnion = JiraPlatformComment | JiraServiceManagementComment;
|
|
48304
48822
|
export declare type GraphStoreSimplifiedIssueMentionedInConversationConnection = HasPageInfo & {
|
|
48305
48823
|
__typename?: 'GraphStoreSimplifiedIssueMentionedInConversationConnection';
|
|
48306
48824
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedIssueMentionedInConversationEdge>>>;
|
|
@@ -51692,34 +52210,6 @@ export declare type GraphStoreSimplifiedUserCreatedConfluenceBlogpostInverseEdge
|
|
|
51692
52210
|
node?: Maybe<GraphStoreSimplifiedUserCreatedConfluenceBlogpostInverseUnion>;
|
|
51693
52211
|
};
|
|
51694
52212
|
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
52213
|
export declare type GraphStoreSimplifiedUserCreatedConfluenceBlogpostUnion = ConfluenceBlogPost;
|
|
51724
52214
|
export declare type GraphStoreSimplifiedUserCreatedConfluenceCommentConnection = HasPageInfo & {
|
|
51725
52215
|
__typename?: 'GraphStoreSimplifiedUserCreatedConfluenceCommentConnection';
|
|
@@ -51748,34 +52238,6 @@ export declare type GraphStoreSimplifiedUserCreatedConfluenceCommentInverseEdge
|
|
|
51748
52238
|
node?: Maybe<GraphStoreSimplifiedUserCreatedConfluenceCommentInverseUnion>;
|
|
51749
52239
|
};
|
|
51750
52240
|
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
52241
|
export declare type GraphStoreSimplifiedUserCreatedConfluenceCommentUnion = ConfluenceFooterComment | ConfluenceInlineComment;
|
|
51780
52242
|
export declare type GraphStoreSimplifiedUserCreatedConfluenceDatabaseConnection = HasPageInfo & {
|
|
51781
52243
|
__typename?: 'GraphStoreSimplifiedUserCreatedConfluenceDatabaseConnection';
|
|
@@ -51860,34 +52322,6 @@ export declare type GraphStoreSimplifiedUserCreatedConfluencePageInverseEdge = {
|
|
|
51860
52322
|
node?: Maybe<GraphStoreSimplifiedUserCreatedConfluencePageInverseUnion>;
|
|
51861
52323
|
};
|
|
51862
52324
|
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
52325
|
export declare type GraphStoreSimplifiedUserCreatedConfluencePageUnion = ConfluencePage;
|
|
51892
52326
|
export declare type GraphStoreSimplifiedUserCreatedConfluenceSpaceConnection = HasPageInfo & {
|
|
51893
52327
|
__typename?: 'GraphStoreSimplifiedUserCreatedConfluenceSpaceConnection';
|
|
@@ -51916,34 +52350,6 @@ export declare type GraphStoreSimplifiedUserCreatedConfluenceSpaceInverseEdge =
|
|
|
51916
52350
|
node?: Maybe<GraphStoreSimplifiedUserCreatedConfluenceSpaceInverseUnion>;
|
|
51917
52351
|
};
|
|
51918
52352
|
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
52353
|
export declare type GraphStoreSimplifiedUserCreatedConfluenceSpaceUnion = ConfluenceSpace;
|
|
51948
52354
|
export declare type GraphStoreSimplifiedUserCreatedConfluenceWhiteboardConnection = HasPageInfo & {
|
|
51949
52355
|
__typename?: 'GraphStoreSimplifiedUserCreatedConfluenceWhiteboardConnection';
|
|
@@ -53500,34 +53906,6 @@ export declare type GraphStoreSimplifiedUserUpdatedConfluenceBlogpostInverseEdge
|
|
|
53500
53906
|
node?: Maybe<GraphStoreSimplifiedUserUpdatedConfluenceBlogpostInverseUnion>;
|
|
53501
53907
|
};
|
|
53502
53908
|
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
53909
|
export declare type GraphStoreSimplifiedUserUpdatedConfluenceBlogpostUnion = ConfluenceBlogPost;
|
|
53532
53910
|
export declare type GraphStoreSimplifiedUserUpdatedConfluencePageConnection = HasPageInfo & {
|
|
53533
53911
|
__typename?: 'GraphStoreSimplifiedUserUpdatedConfluencePageConnection';
|
|
@@ -54837,15 +55215,9 @@ export declare type GraphStoreUserCreatedCalendarEventSortInput = {
|
|
|
54837
55215
|
to_eventEndTime?: InputMaybe<GraphStoreSortInput>;
|
|
54838
55216
|
to_eventStartTime?: InputMaybe<GraphStoreSortInput>;
|
|
54839
55217
|
};
|
|
54840
|
-
export declare type GraphStoreUserCreatedConfluenceBlogpostKaminoSortInput = {
|
|
54841
|
-
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
54842
|
-
};
|
|
54843
55218
|
export declare type GraphStoreUserCreatedConfluenceBlogpostSortInput = {
|
|
54844
55219
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
54845
55220
|
};
|
|
54846
|
-
export declare type GraphStoreUserCreatedConfluenceCommentKaminoSortInput = {
|
|
54847
|
-
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
54848
|
-
};
|
|
54849
55221
|
export declare type GraphStoreUserCreatedConfluenceCommentSortInput = {
|
|
54850
55222
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
54851
55223
|
};
|
|
@@ -54855,15 +55227,9 @@ export declare type GraphStoreUserCreatedConfluenceDatabaseSortInput = {
|
|
|
54855
55227
|
export declare type GraphStoreUserCreatedConfluenceEmbedSortInput = {
|
|
54856
55228
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
54857
55229
|
};
|
|
54858
|
-
export declare type GraphStoreUserCreatedConfluencePageKaminoSortInput = {
|
|
54859
|
-
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
54860
|
-
};
|
|
54861
55230
|
export declare type GraphStoreUserCreatedConfluencePageSortInput = {
|
|
54862
55231
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
54863
55232
|
};
|
|
54864
|
-
export declare type GraphStoreUserCreatedConfluenceSpaceKaminoSortInput = {
|
|
54865
|
-
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
54866
|
-
};
|
|
54867
55233
|
export declare type GraphStoreUserCreatedConfluenceSpaceSortInput = {
|
|
54868
55234
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
54869
55235
|
};
|
|
@@ -55069,9 +55435,6 @@ export declare type GraphStoreUserUpdatedAtlasProjectSortInput = {
|
|
|
55069
55435
|
export declare type GraphStoreUserUpdatedCommentSortInput = {
|
|
55070
55436
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
55071
55437
|
};
|
|
55072
|
-
export declare type GraphStoreUserUpdatedConfluenceBlogpostKaminoSortInput = {
|
|
55073
|
-
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
55074
|
-
};
|
|
55075
55438
|
export declare type GraphStoreUserUpdatedConfluenceBlogpostSortInput = {
|
|
55076
55439
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
55077
55440
|
};
|
|
@@ -55868,7 +56231,9 @@ export declare type GrowthUnifiedProfileTrialContextInput = {
|
|
|
55868
56231
|
};
|
|
55869
56232
|
export declare enum GrowthUnifiedProfileTrialTrigger {
|
|
55870
56233
|
AutoUpgradeUserLimit = "AUTO_UPGRADE_USER_LIMIT",
|
|
56234
|
+
CrossflowUserLimit = "CROSSFLOW_USER_LIMIT",
|
|
55871
56235
|
EditionParity = "EDITION_PARITY",
|
|
56236
|
+
Reactivation = "REACTIVATION",
|
|
55872
56237
|
ReverseTrial = "REVERSE_TRIAL",
|
|
55873
56238
|
Ui = "UI"
|
|
55874
56239
|
}
|
|
@@ -58170,6 +58535,7 @@ export declare type InfluentsNotificationDocument = {
|
|
|
58170
58535
|
};
|
|
58171
58536
|
export declare type InfluentsNotificationEntity = {
|
|
58172
58537
|
__typename?: 'InfluentsNotificationEntity';
|
|
58538
|
+
contentSubtype?: Maybe<Scalars['String']['output']>;
|
|
58173
58539
|
iconUrl?: Maybe<Scalars['String']['output']>;
|
|
58174
58540
|
title?: Maybe<Scalars['String']['output']>;
|
|
58175
58541
|
url?: Maybe<Scalars['String']['output']>;
|
|
@@ -58194,6 +58560,7 @@ export declare type InfluentsNotificationFeedEdge = {
|
|
|
58194
58560
|
};
|
|
58195
58561
|
export declare type InfluentsNotificationFilter = {
|
|
58196
58562
|
categoryFilter?: InputMaybe<InfluentsNotificationCategory>;
|
|
58563
|
+
eventTypeFilter?: InputMaybe<Scalars['String']['input']>;
|
|
58197
58564
|
productFilter?: InputMaybe<Scalars['String']['input']>;
|
|
58198
58565
|
readStateFilter?: InputMaybe<InfluentsNotificationReadState>;
|
|
58199
58566
|
workspaceId?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -58642,6 +59009,9 @@ export declare enum InvitationUrlsStatus {
|
|
|
58642
59009
|
export declare type InvocationMetrics = {
|
|
58643
59010
|
__typename?: 'InvocationMetrics';
|
|
58644
59011
|
appExecutionRegion?: Maybe<Scalars['String']['output']>;
|
|
59012
|
+
appRuntimeDeprecated?: Maybe<Scalars['Boolean']['output']>;
|
|
59013
|
+
appRuntimeType?: Maybe<Scalars['String']['output']>;
|
|
59014
|
+
appRuntimeVersion?: Maybe<Scalars['String']['output']>;
|
|
58645
59015
|
appTimeMs?: Maybe<Scalars['Float']['output']>;
|
|
58646
59016
|
};
|
|
58647
59017
|
export declare type InvocationResponsePayload = {
|
|
@@ -59478,6 +59848,18 @@ export declare type JiraApplicationProperty = Node & {
|
|
|
59478
59848
|
type: Scalars['String']['output'];
|
|
59479
59849
|
value: Scalars['String']['output'];
|
|
59480
59850
|
};
|
|
59851
|
+
export declare type JiraApplySuggestionActionInput = {
|
|
59852
|
+
actionId: Scalars['String']['input'];
|
|
59853
|
+
cloudId: Scalars['ID']['input'];
|
|
59854
|
+
id: Scalars['ID']['input'];
|
|
59855
|
+
input?: InputMaybe<Scalars['JSON']['input']>;
|
|
59856
|
+
};
|
|
59857
|
+
export declare type JiraApplySuggestionActionsPayload = Payload & {
|
|
59858
|
+
__typename?: 'JiraApplySuggestionActionsPayload';
|
|
59859
|
+
errors?: Maybe<Array<MutationError>>;
|
|
59860
|
+
ids?: Maybe<Array<Maybe<Scalars['ID']['output']>>>;
|
|
59861
|
+
success: Scalars['Boolean']['output'];
|
|
59862
|
+
};
|
|
59481
59863
|
export declare enum JiraApprovalDecision {
|
|
59482
59864
|
Approved = "APPROVED",
|
|
59483
59865
|
Rejected = "REJECTED"
|
|
@@ -59633,11 +60015,6 @@ export declare type JiraAssignableUsersEdge = {
|
|
|
59633
60015
|
cursor: Scalars['String']['output'];
|
|
59634
60016
|
node?: Maybe<User>;
|
|
59635
60017
|
};
|
|
59636
|
-
export declare type JiraAssociateProjectToFieldSchemeInput = {
|
|
59637
|
-
fieldConfigSchemeId?: InputMaybe<Scalars['ID']['input']>;
|
|
59638
|
-
fieldSchemeId?: InputMaybe<Scalars['ID']['input']>;
|
|
59639
|
-
projectId: Scalars['ID']['input'];
|
|
59640
|
-
};
|
|
59641
60018
|
export declare type JiraAtlassianIntelligenceAction = JiraAccessAtlassianIntelligenceFeature | JiraContactOrgAdminToEnableAtlassianIntelligence | JiraEnableAtlassianIntelligenceDeepLink;
|
|
59642
60019
|
export declare enum JiraAtlassianIntelligenceFeatureEnum {
|
|
59643
60020
|
AiMate = "AI_MATE",
|
|
@@ -62645,6 +63022,7 @@ export declare type JiraCustomFieldType = {
|
|
|
62645
63022
|
description?: Maybe<Scalars['String']['output']>;
|
|
62646
63023
|
hasCascadingOptions?: Maybe<Scalars['Boolean']['output']>;
|
|
62647
63024
|
hasOptions?: Maybe<Scalars['Boolean']['output']>;
|
|
63025
|
+
isForge?: Maybe<Scalars['Boolean']['output']>;
|
|
62648
63026
|
isManaged?: Maybe<Scalars['Boolean']['output']>;
|
|
62649
63027
|
key?: Maybe<Scalars['String']['output']>;
|
|
62650
63028
|
name?: Maybe<Scalars['String']['output']>;
|
|
@@ -63531,6 +63909,16 @@ export declare type JiraDismissInContextConfigPromptPayload = Payload & {
|
|
|
63531
63909
|
errors?: Maybe<Array<MutationError>>;
|
|
63532
63910
|
success: Scalars['Boolean']['output'];
|
|
63533
63911
|
};
|
|
63912
|
+
export declare type JiraDismissSuggestionActionsPayload = Payload & {
|
|
63913
|
+
__typename?: 'JiraDismissSuggestionActionsPayload';
|
|
63914
|
+
errors?: Maybe<Array<MutationError>>;
|
|
63915
|
+
ids?: Maybe<Array<Maybe<Scalars['ID']['output']>>>;
|
|
63916
|
+
success: Scalars['Boolean']['output'];
|
|
63917
|
+
};
|
|
63918
|
+
export declare type JiraDismissSuggestionsInput = {
|
|
63919
|
+
cloudId: Scalars['ID']['input'];
|
|
63920
|
+
ids: Array<Scalars['ID']['input']>;
|
|
63921
|
+
};
|
|
63534
63922
|
export declare type JiraDragAndDropBoardViewIssueInput = {
|
|
63535
63923
|
destinationCellId?: InputMaybe<Scalars['ID']['input']>;
|
|
63536
63924
|
id: Scalars['ID']['input'];
|
|
@@ -63546,6 +63934,18 @@ export declare type JiraDragAndDropBoardViewIssuePayload = {
|
|
|
63546
63934
|
export declare type JiraDuplicateJourneyConfigurationInput = {
|
|
63547
63935
|
id: Scalars['ID']['input'];
|
|
63548
63936
|
};
|
|
63937
|
+
export declare type JiraDuplicateWorkItemsSuggestion = JiraSuggestion & {
|
|
63938
|
+
__typename?: 'JiraDuplicateWorkItemsSuggestion';
|
|
63939
|
+
actions?: Maybe<Array<Maybe<JiraSuggestionAction>>>;
|
|
63940
|
+
entityId?: Maybe<Scalars['String']['output']>;
|
|
63941
|
+
id?: Maybe<Scalars['ID']['output']>;
|
|
63942
|
+
relatedEntityId?: Maybe<Scalars['String']['output']>;
|
|
63943
|
+
relatedWorkItem?: Maybe<JiraIssue>;
|
|
63944
|
+
score?: Maybe<Scalars['Float']['output']>;
|
|
63945
|
+
status?: Maybe<JiraSuggestionStatus>;
|
|
63946
|
+
type?: Maybe<JiraSuggestionType>;
|
|
63947
|
+
workItem?: Maybe<JiraIssue>;
|
|
63948
|
+
};
|
|
63549
63949
|
export declare type JiraDurationField = JiraIssueField & JiraIssueFieldConfiguration & JiraUserIssueFieldConfiguration & Node & {
|
|
63550
63950
|
__typename?: 'JiraDurationField';
|
|
63551
63951
|
aliasFieldId?: Maybe<Scalars['ID']['output']>;
|
|
@@ -63841,7 +64241,7 @@ export declare type JiraFieldAssociationWithIssueTypesInput = {
|
|
|
63841
64241
|
};
|
|
63842
64242
|
export declare type JiraFieldAvailableWorkTypesInput = {
|
|
63843
64243
|
nameFilter?: InputMaybe<Scalars['String']['input']>;
|
|
63844
|
-
schemeId
|
|
64244
|
+
schemeId?: InputMaybe<Scalars['ID']['input']>;
|
|
63845
64245
|
};
|
|
63846
64246
|
export declare enum JiraFieldCategoryType {
|
|
63847
64247
|
Custom = "CUSTOM",
|
|
@@ -65185,6 +65585,7 @@ export declare type JiraIssue = HasMercuryProjectFields & JiraScenarioIssueLike
|
|
|
65185
65585
|
incidentActionItems?: Maybe<GraphIncidentHasActionItemRelationshipConnection>;
|
|
65186
65586
|
incidentLinkedJswIssues?: Maybe<GraphIncidentLinkedJswIssueRelationshipConnection>;
|
|
65187
65587
|
isArchived?: Maybe<Scalars['Boolean']['output']>;
|
|
65588
|
+
isRemoteIssue?: Maybe<Scalars['Boolean']['output']>;
|
|
65188
65589
|
isResolved?: Maybe<Scalars['Boolean']['output']>;
|
|
65189
65590
|
issueColorField?: Maybe<JiraColorField>;
|
|
65190
65591
|
issueId: Scalars['String']['output'];
|
|
@@ -65873,6 +66274,7 @@ export declare type JiraIssueFieldConfig = Node & {
|
|
|
65873
66274
|
associatedScreensCount?: Maybe<Scalars['Int']['output']>;
|
|
65874
66275
|
associatedScreensV2?: Maybe<JiraScreenConnection>;
|
|
65875
66276
|
availableFieldConfigSchemes?: Maybe<JiraFieldConfigSchemesConnection>;
|
|
66277
|
+
availableWorkTypes?: Maybe<JiraIssueTypeConnection>;
|
|
65876
66278
|
availableWorkTypesFromSchemesProjects?: Maybe<JiraIssueTypeConnection>;
|
|
65877
66279
|
availableWorkTypesJiraWide?: Maybe<JiraIssueTypeConnection>;
|
|
65878
66280
|
customId?: Maybe<Scalars['Int']['output']>;
|
|
@@ -65957,6 +66359,11 @@ export declare type JiraIssueFieldConfigAvailableFieldConfigSchemesArgs = {
|
|
|
65957
66359
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
65958
66360
|
input?: InputMaybe<JiraFieldConfigSchemesInput>;
|
|
65959
66361
|
};
|
|
66362
|
+
export declare type JiraIssueFieldConfigAvailableWorkTypesArgs = {
|
|
66363
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
66364
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
66365
|
+
input?: InputMaybe<JiraFieldAvailableWorkTypesInput>;
|
|
66366
|
+
};
|
|
65960
66367
|
export declare type JiraIssueFieldConfigAvailableWorkTypesFromSchemesProjectsArgs = {
|
|
65961
66368
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
65962
66369
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
@@ -66055,6 +66462,7 @@ export declare type JiraIssueFieldsInput = {
|
|
|
66055
66462
|
dateTimePickerFields?: InputMaybe<Array<JiraDateTimeFieldInput>>;
|
|
66056
66463
|
entitlementField?: InputMaybe<JiraEntitlementFieldInput>;
|
|
66057
66464
|
epicLinkField?: InputMaybe<JiraEpicLinkFieldInput>;
|
|
66465
|
+
issueLinks?: InputMaybe<JiraIssueLinksFieldInput>;
|
|
66058
66466
|
issueType?: InputMaybe<JiraIssueTypeInput>;
|
|
66059
66467
|
jiraForgeGroupsFields?: InputMaybe<Array<JiraForgeGroupsFieldInput>>;
|
|
66060
66468
|
jiraForgeStringsFields?: InputMaybe<Array<JiraForgeStringsFieldInput>>;
|
|
@@ -66381,6 +66789,12 @@ export declare type JiraIssueLinkTypeRelationEdge = {
|
|
|
66381
66789
|
cursor: Scalars['String']['output'];
|
|
66382
66790
|
node?: Maybe<JiraIssueLinkTypeRelation>;
|
|
66383
66791
|
};
|
|
66792
|
+
export declare type JiraIssueLinksFieldInput = {
|
|
66793
|
+
direction?: InputMaybe<JiraIssueLinkDirection>;
|
|
66794
|
+
linkTypeId?: InputMaybe<Scalars['String']['input']>;
|
|
66795
|
+
linkTypeName?: InputMaybe<Scalars['String']['input']>;
|
|
66796
|
+
linkedIssueKeys?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
66797
|
+
};
|
|
66384
66798
|
export declare enum JiraIssueModuleType {
|
|
66385
66799
|
IssueModule = "ISSUE_MODULE",
|
|
66386
66800
|
WebPanel = "WEB_PANEL"
|
|
@@ -66718,7 +67132,8 @@ export declare enum JiraIssueSearchOperationScope {
|
|
|
66718
67132
|
NinGlobalShadowRequest = "NIN_GLOBAL_SHADOW_REQUEST",
|
|
66719
67133
|
NinProject = "NIN_PROJECT",
|
|
66720
67134
|
NinProjectSchemaRefactor = "NIN_PROJECT_SCHEMA_REFACTOR",
|
|
66721
|
-
NinProjectShadowRequest = "NIN_PROJECT_SHADOW_REQUEST"
|
|
67135
|
+
NinProjectShadowRequest = "NIN_PROJECT_SHADOW_REQUEST",
|
|
67136
|
+
TimelineProject = "TIMELINE_PROJECT"
|
|
66722
67137
|
}
|
|
66723
67138
|
export declare type JiraIssueSearchOptions = {
|
|
66724
67139
|
issueKey?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -67205,15 +67620,6 @@ export declare type JiraJqlHistoryEdge = {
|
|
|
67205
67620
|
__typename?: 'JiraJQLHistoryEdge';
|
|
67206
67621
|
node?: Maybe<JiraJqlHistory>;
|
|
67207
67622
|
};
|
|
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
67623
|
export declare type JiraJirtEventPayload = {
|
|
67218
67624
|
__typename?: 'JiraJirtEventPayload';
|
|
67219
67625
|
actionerAccountId?: Maybe<Scalars['String']['output']>;
|
|
@@ -67229,6 +67635,7 @@ export declare enum JiraJourneyActiveState {
|
|
|
67229
67635
|
export declare type JiraJourneyAssociations = {
|
|
67230
67636
|
__typename?: 'JiraJourneyAssociations';
|
|
67231
67637
|
migrationStatus?: Maybe<JiraJourneyRulesMigrationStatus>;
|
|
67638
|
+
ruleId?: Maybe<Scalars['String']['output']>;
|
|
67232
67639
|
};
|
|
67233
67640
|
export declare type JiraJourneyBuilderAssociatedAutomationRule = {
|
|
67234
67641
|
__typename?: 'JiraJourneyBuilderAssociatedAutomationRule';
|
|
@@ -72164,6 +72571,7 @@ export declare type JiraQuery = {
|
|
|
72164
72571
|
jwmViewItems?: Maybe<JiraWorkManagementViewItemConnectionResult>;
|
|
72165
72572
|
labelsFieldOptions?: Maybe<JiraLabelConnection>;
|
|
72166
72573
|
labelsInBoard?: Maybe<JiraLabelConnection>;
|
|
72574
|
+
linkedWorkItems?: Maybe<JiraIssueConnection>;
|
|
72167
72575
|
lockedIssueTypeIds?: Maybe<Array<Scalars['ID']['output']>>;
|
|
72168
72576
|
mediaClientId?: Maybe<Scalars['String']['output']>;
|
|
72169
72577
|
mediaExternalEndpointUrl?: Maybe<Scalars['String']['output']>;
|
|
@@ -72902,6 +73310,16 @@ export declare type JiraQueryLabelsFieldOptionsArgs = {
|
|
|
72902
73310
|
export declare type JiraQueryLabelsInBoardArgs = {
|
|
72903
73311
|
boardId: Scalars['ID']['input'];
|
|
72904
73312
|
};
|
|
73313
|
+
export declare type JiraQueryLinkedWorkItemsArgs = {
|
|
73314
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
73315
|
+
before?: InputMaybe<Scalars['String']['input']>;
|
|
73316
|
+
cloudId: Scalars['ID']['input'];
|
|
73317
|
+
fieldSetsInput?: InputMaybe<JiraIssueSearchFieldSetsInput>;
|
|
73318
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
73319
|
+
last?: InputMaybe<Scalars['Int']['input']>;
|
|
73320
|
+
shouldIncludeRemoteIssues?: InputMaybe<Scalars['Boolean']['input']>;
|
|
73321
|
+
viewConfigInput?: InputMaybe<JiraIssueSearchViewConfigInput>;
|
|
73322
|
+
};
|
|
72905
73323
|
export declare type JiraQueryLockedIssueTypeIdsArgs = {
|
|
72906
73324
|
cloudId: Scalars['ID']['input'];
|
|
72907
73325
|
};
|
|
@@ -76335,6 +76753,15 @@ export declare type JiraSprintUpdateInput = {
|
|
|
76335
76753
|
sprintId: Scalars['ID']['input'];
|
|
76336
76754
|
startDate?: InputMaybe<Scalars['String']['input']>;
|
|
76337
76755
|
};
|
|
76756
|
+
export declare type JiraStaleWorkItemsSuggestion = JiraSuggestion & {
|
|
76757
|
+
__typename?: 'JiraStaleWorkItemsSuggestion';
|
|
76758
|
+
actions?: Maybe<Array<Maybe<JiraSuggestionAction>>>;
|
|
76759
|
+
entityId?: Maybe<Scalars['String']['output']>;
|
|
76760
|
+
id?: Maybe<Scalars['ID']['output']>;
|
|
76761
|
+
status?: Maybe<JiraSuggestionStatus>;
|
|
76762
|
+
type?: Maybe<JiraSuggestionType>;
|
|
76763
|
+
workItem?: Maybe<JiraIssue>;
|
|
76764
|
+
};
|
|
76338
76765
|
export declare type JiraStatus = MercuryOriginalProjectStatus & Node & {
|
|
76339
76766
|
__typename?: 'JiraStatus';
|
|
76340
76767
|
description?: Maybe<Scalars['String']['output']>;
|
|
@@ -76484,7 +76911,6 @@ export declare type JiraSubscription = {
|
|
|
76484
76911
|
onIssueUpdatedByProject?: Maybe<JiraIssue>;
|
|
76485
76912
|
onIssueUpdatedByProjectNoEnrichment?: Maybe<JiraIssueUpdatedStreamHubPayload>;
|
|
76486
76913
|
onIssueUpdatedByProjectsNoEnrichment?: Maybe<JiraIssueUpdatedStreamHubPayload>;
|
|
76487
|
-
onJirtBoardIssueSubscription?: Maybe<JiraJirtBoardScoreIssueEventPayload>;
|
|
76488
76914
|
onJirtIssueSubscription?: Maybe<JiraJirtEventPayload>;
|
|
76489
76915
|
onJpdIssueSubscription?: Maybe<JiraProductDiscoveryIssueEventPayload>;
|
|
76490
76916
|
onJwmFieldMutation?: Maybe<JiraJwmField>;
|
|
@@ -76569,12 +76995,6 @@ export declare type JiraSubscriptionOnIssueUpdatedByProjectsNoEnrichmentArgs = {
|
|
|
76569
76995
|
cloudId: Scalars['ID']['input'];
|
|
76570
76996
|
projectIds?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
76571
76997
|
};
|
|
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
76998
|
export declare type JiraSubscriptionOnJirtIssueSubscriptionArgs = {
|
|
76579
76999
|
atlassianAccountId?: InputMaybe<Scalars['String']['input']>;
|
|
76580
77000
|
cloudId: Scalars['ID']['input'];
|
|
@@ -76691,6 +77111,53 @@ export declare type JiraSuggestedIssueInput = {
|
|
|
76691
77111
|
description?: InputMaybe<Scalars['String']['input']>;
|
|
76692
77112
|
summary?: InputMaybe<Scalars['String']['input']>;
|
|
76693
77113
|
};
|
|
77114
|
+
export declare type JiraSuggestion = {
|
|
77115
|
+
actions?: Maybe<Array<Maybe<JiraSuggestionAction>>>;
|
|
77116
|
+
entityId?: Maybe<Scalars['String']['output']>;
|
|
77117
|
+
id?: Maybe<Scalars['ID']['output']>;
|
|
77118
|
+
status?: Maybe<JiraSuggestionStatus>;
|
|
77119
|
+
type?: Maybe<JiraSuggestionType>;
|
|
77120
|
+
};
|
|
77121
|
+
export declare type JiraSuggestionAction = {
|
|
77122
|
+
__typename?: 'JiraSuggestionAction';
|
|
77123
|
+
default?: Maybe<Scalars['Boolean']['output']>;
|
|
77124
|
+
id?: Maybe<Scalars['String']['output']>;
|
|
77125
|
+
inputSchema?: Maybe<Scalars['JSON']['output']>;
|
|
77126
|
+
type?: Maybe<JiraSuggestionActionType>;
|
|
77127
|
+
};
|
|
77128
|
+
export declare enum JiraSuggestionActionType {
|
|
77129
|
+
ChangeDuplicateWorkItemStatus = "CHANGE_DUPLICATE_WORK_ITEM_STATUS",
|
|
77130
|
+
ChangeStaleWorkItemStatus = "CHANGE_STALE_WORK_ITEM_STATUS",
|
|
77131
|
+
LinkDuplicateWorkItems = "LINK_DUPLICATE_WORK_ITEMS"
|
|
77132
|
+
}
|
|
77133
|
+
export declare type JiraSuggestionEdge = {
|
|
77134
|
+
__typename?: 'JiraSuggestionEdge';
|
|
77135
|
+
cursor: Scalars['String']['output'];
|
|
77136
|
+
node: JiraSuggestion;
|
|
77137
|
+
};
|
|
77138
|
+
export declare enum JiraSuggestionStatus {
|
|
77139
|
+
Dismissed = "DISMISSED",
|
|
77140
|
+
Done = "DONE",
|
|
77141
|
+
Pending = "PENDING"
|
|
77142
|
+
}
|
|
77143
|
+
export declare enum JiraSuggestionType {
|
|
77144
|
+
DuplicateWorkItems = "DUPLICATE_WORK_ITEMS",
|
|
77145
|
+
StaleWorkItems = "STALE_WORK_ITEMS"
|
|
77146
|
+
}
|
|
77147
|
+
export declare type JiraSuggestionsByContextInput = {
|
|
77148
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
77149
|
+
cloudId: Scalars['ID']['input'];
|
|
77150
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
77151
|
+
id: Scalars['ID']['input'];
|
|
77152
|
+
status?: InputMaybe<Array<JiraSuggestionStatus>>;
|
|
77153
|
+
types: Array<JiraSuggestionType>;
|
|
77154
|
+
};
|
|
77155
|
+
export declare type JiraSuggestionsConnection = HasPageInfo & {
|
|
77156
|
+
__typename?: 'JiraSuggestionsConnection';
|
|
77157
|
+
edges?: Maybe<Array<Maybe<JiraSuggestionEdge>>>;
|
|
77158
|
+
errors?: Maybe<Array<QueryError>>;
|
|
77159
|
+
pageInfo: PageInfo;
|
|
77160
|
+
};
|
|
76694
77161
|
export declare enum JiraSyntheticFieldCardOptionType {
|
|
76695
77162
|
CardCover = "CARD_COVER",
|
|
76696
77163
|
Pages = "PAGES"
|
|
@@ -79087,7 +79554,77 @@ export declare type JiraWorklogPayload = Payload & {
|
|
|
79087
79554
|
export declare type JiraWorklogSortInput = {
|
|
79088
79555
|
order: SortDirection;
|
|
79089
79556
|
};
|
|
79557
|
+
export declare type JpdSubscriptions = {
|
|
79558
|
+
__typename?: 'JpdSubscriptions';
|
|
79559
|
+
onViewCreated?: Maybe<JpdViewCreatedEvent>;
|
|
79560
|
+
onViewDeleted?: Maybe<JpdViewDeletedEvent>;
|
|
79561
|
+
onViewUpdated?: Maybe<JpdViewUpdatedEvent>;
|
|
79562
|
+
};
|
|
79563
|
+
export declare type JpdSubscriptionsOnViewCreatedArgs = {
|
|
79564
|
+
projectAri: Scalars['ID']['input'];
|
|
79565
|
+
};
|
|
79566
|
+
export declare type JpdSubscriptionsOnViewDeletedArgs = {
|
|
79567
|
+
projectAri: Scalars['ID']['input'];
|
|
79568
|
+
};
|
|
79569
|
+
export declare type JpdSubscriptionsOnViewUpdatedArgs = {
|
|
79570
|
+
projectAri: Scalars['ID']['input'];
|
|
79571
|
+
};
|
|
79572
|
+
export declare type JpdViewCreatedDetails = {
|
|
79573
|
+
__typename?: 'JpdViewCreatedDetails';
|
|
79574
|
+
emoji?: Maybe<Scalars['String']['output']>;
|
|
79575
|
+
id: Scalars['Int']['output'];
|
|
79576
|
+
name: Scalars['String']['output'];
|
|
79577
|
+
projectAri: Scalars['ID']['output'];
|
|
79578
|
+
uuid: Scalars['ID']['output'];
|
|
79579
|
+
visualizationType?: Maybe<PolarisVisualizationType>;
|
|
79580
|
+
};
|
|
79581
|
+
export declare type JpdViewCreatedEvent = {
|
|
79582
|
+
__typename?: 'JpdViewCreatedEvent';
|
|
79583
|
+
createdByUserId: Scalars['ID']['output'];
|
|
79584
|
+
type: Scalars['String']['output'];
|
|
79585
|
+
view?: Maybe<JpdViewCreatedDetails>;
|
|
79586
|
+
viewAri: Scalars['ID']['output'];
|
|
79587
|
+
viewId: Scalars['Int']['output'];
|
|
79588
|
+
viewUuid: Scalars['ID']['output'];
|
|
79589
|
+
};
|
|
79590
|
+
export declare type JpdViewDeletedEvent = {
|
|
79591
|
+
__typename?: 'JpdViewDeletedEvent';
|
|
79592
|
+
deletedByUserId: Scalars['ID']['output'];
|
|
79593
|
+
projectAri: Scalars['ID']['output'];
|
|
79594
|
+
type: Scalars['String']['output'];
|
|
79595
|
+
viewAri: Scalars['ID']['output'];
|
|
79596
|
+
viewId: Scalars['Int']['output'];
|
|
79597
|
+
viewUuid: Scalars['ID']['output'];
|
|
79598
|
+
};
|
|
79599
|
+
export declare type JpdViewUpdatedEvent = {
|
|
79600
|
+
__typename?: 'JpdViewUpdatedEvent';
|
|
79601
|
+
changes?: Maybe<Array<Scalars['String']['output']>>;
|
|
79602
|
+
projectAri: Scalars['ID']['output'];
|
|
79603
|
+
type: Scalars['String']['output'];
|
|
79604
|
+
updatedByUserId: Scalars['ID']['output'];
|
|
79605
|
+
viewAri: Scalars['ID']['output'];
|
|
79606
|
+
viewId: Scalars['Int']['output'];
|
|
79607
|
+
viewUuid: Scalars['ID']['output'];
|
|
79608
|
+
};
|
|
79090
79609
|
export declare type JsmChannelsConversationsByContainerAriResult = JsmChannelsOrchestratorConversationsConnection | QueryError;
|
|
79610
|
+
export declare enum JsmChannelsExperience {
|
|
79611
|
+
EmployeeOnboardingAgent = "EMPLOYEE_ONBOARDING_AGENT",
|
|
79612
|
+
EmployeeServiceAgent = "EMPLOYEE_SERVICE_AGENT"
|
|
79613
|
+
}
|
|
79614
|
+
export declare type JsmChannelsExperienceConfiguration = {
|
|
79615
|
+
__typename?: 'JsmChannelsExperienceConfiguration';
|
|
79616
|
+
isEnabled: Scalars['Boolean']['output'];
|
|
79617
|
+
};
|
|
79618
|
+
export declare type JsmChannelsExperienceConfigurationInput = {
|
|
79619
|
+
isEnabled: Scalars['Boolean']['input'];
|
|
79620
|
+
};
|
|
79621
|
+
export declare type JsmChannelsExperienceConfigurationPayload = Payload & {
|
|
79622
|
+
__typename?: 'JsmChannelsExperienceConfigurationPayload';
|
|
79623
|
+
errors?: Maybe<Array<MutationError>>;
|
|
79624
|
+
jsmChannelsExperienceConfiguration?: Maybe<JsmChannelsExperienceConfiguration>;
|
|
79625
|
+
success: Scalars['Boolean']['output'];
|
|
79626
|
+
};
|
|
79627
|
+
export declare type JsmChannelsExperienceConfigurationResult = JsmChannelsExperienceConfiguration | QueryError;
|
|
79091
79628
|
export declare type JsmChannelsOrchestratorConversation = Node & {
|
|
79092
79629
|
__typename?: 'JsmChannelsOrchestratorConversation';
|
|
79093
79630
|
action?: Maybe<JsmChannelsOrchestratorConversationActionType>;
|
|
@@ -84317,6 +84854,7 @@ export declare type MercuryChangeProposal = Node & {
|
|
|
84317
84854
|
funding?: Maybe<MercuryChangeProposalFunding>;
|
|
84318
84855
|
id: Scalars['ID']['output'];
|
|
84319
84856
|
impact?: Maybe<MercuryChangeProposalImpact>;
|
|
84857
|
+
linkedGoals?: Maybe<GraphStoreSimplifiedChangeProposalHasAtlasGoalConnection>;
|
|
84320
84858
|
name: Scalars['String']['output'];
|
|
84321
84859
|
owner?: Maybe<User>;
|
|
84322
84860
|
positionDetails?: Maybe<MercuryChangeProposalPositionDetails>;
|
|
@@ -84330,6 +84868,12 @@ export declare type MercuryChangeProposalCommentsArgs = {
|
|
|
84330
84868
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
84331
84869
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
84332
84870
|
};
|
|
84871
|
+
export declare type MercuryChangeProposalLinkedGoalsArgs = {
|
|
84872
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
84873
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
84874
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
84875
|
+
sort?: InputMaybe<GraphStoreChangeProposalHasAtlasGoalSortInput>;
|
|
84876
|
+
};
|
|
84333
84877
|
export declare type MercuryChangeProposalTagsArgs = {
|
|
84334
84878
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
84335
84879
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
@@ -84394,6 +84938,17 @@ export declare type MercuryChangeProposalPositionSummary = {
|
|
|
84394
84938
|
movedCount?: Maybe<Scalars['Int']['output']>;
|
|
84395
84939
|
newCount?: Maybe<Scalars['Int']['output']>;
|
|
84396
84940
|
};
|
|
84941
|
+
export declare type MercuryChangeProposalRankConnection = {
|
|
84942
|
+
__typename?: 'MercuryChangeProposalRankConnection';
|
|
84943
|
+
edges?: Maybe<Array<MercuryChangeProposalRankEdge>>;
|
|
84944
|
+
pageInfo: PageInfo;
|
|
84945
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
84946
|
+
};
|
|
84947
|
+
export declare type MercuryChangeProposalRankEdge = {
|
|
84948
|
+
__typename?: 'MercuryChangeProposalRankEdge';
|
|
84949
|
+
cursor: Scalars['String']['output'];
|
|
84950
|
+
node?: Maybe<MercuryRankedChangeProposal>;
|
|
84951
|
+
};
|
|
84397
84952
|
export declare type MercuryChangeProposalSort = {
|
|
84398
84953
|
field: MercuryChangeProposalSortField;
|
|
84399
84954
|
order: SortOrder;
|
|
@@ -84456,15 +85011,19 @@ export declare type MercuryChangeProposalUpdate = {
|
|
|
84456
85011
|
};
|
|
84457
85012
|
export declare type MercuryChangeProposalsView = MercuryView & {
|
|
84458
85013
|
__typename?: 'MercuryChangeProposalsView';
|
|
84459
|
-
createdBy?: Maybe<
|
|
85014
|
+
createdBy?: Maybe<User>;
|
|
84460
85015
|
createdDate?: Maybe<Scalars['String']['output']>;
|
|
84461
85016
|
id: Scalars['ID']['output'];
|
|
84462
85017
|
name: Scalars['String']['output'];
|
|
84463
|
-
priorities?: Maybe<
|
|
85018
|
+
priorities?: Maybe<MercuryChangeProposalRankConnection>;
|
|
84464
85019
|
settings?: Maybe<Array<Maybe<MercuryViewSetting>>>;
|
|
84465
|
-
updatedBy?: Maybe<
|
|
85020
|
+
updatedBy?: Maybe<User>;
|
|
84466
85021
|
updatedDate?: Maybe<Scalars['String']['output']>;
|
|
84467
85022
|
};
|
|
85023
|
+
export declare type MercuryChangeProposalsViewPrioritiesArgs = {
|
|
85024
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
85025
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
85026
|
+
};
|
|
84468
85027
|
export declare type MercuryChangeProposalsViewConnection = {
|
|
84469
85028
|
__typename?: 'MercuryChangeProposalsViewConnection';
|
|
84470
85029
|
edges?: Maybe<Array<MercuryChangeProposalsViewEdge>>;
|
|
@@ -86045,6 +86604,12 @@ export declare type MercuryQueryApiTeamsArgs = {
|
|
|
86045
86604
|
export declare type MercuryQueryApiWorkspaceContextArgs = {
|
|
86046
86605
|
cloudId: Scalars['ID']['input'];
|
|
86047
86606
|
};
|
|
86607
|
+
export declare type MercuryRankedChangeProposal = {
|
|
86608
|
+
__typename?: 'MercuryRankedChangeProposal';
|
|
86609
|
+
changeProposal?: Maybe<MercuryChangeProposal>;
|
|
86610
|
+
changeProposalsViewId: Scalars['ID']['output'];
|
|
86611
|
+
rank?: Maybe<Scalars['Int']['output']>;
|
|
86612
|
+
};
|
|
86048
86613
|
export declare type MercuryRecreatePortfolioFocusAreasInput = {
|
|
86049
86614
|
cloudId: Scalars['ID']['input'];
|
|
86050
86615
|
focusAreaIds: Array<Scalars['ID']['input']>;
|
|
@@ -86258,12 +86823,14 @@ export declare type MercuryStrategicEventsMutationApi = {
|
|
|
86258
86823
|
transitionChangeProposalStatus?: Maybe<MercuryTransitionChangeProposalPayload>;
|
|
86259
86824
|
transitionStrategicEventStatus?: Maybe<MercuryTransitionStrategicEventPayload>;
|
|
86260
86825
|
unlinkGoalsFromChangeProposal?: Maybe<MercuryUnlinkGoalsFromChangeProposalPayload>;
|
|
86826
|
+
unrankChangeProposalInView?: Maybe<MercuryUnrankChangeProposalInViewPayload>;
|
|
86261
86827
|
updateChangeProposalComment?: Maybe<MercuryUpdateChangeProposalCommentPayload>;
|
|
86262
86828
|
updateChangeProposalDescription?: Maybe<MercuryUpdateChangeProposalPayload>;
|
|
86263
86829
|
updateChangeProposalFocusArea?: Maybe<MercuryUpdateChangeProposalPayload>;
|
|
86264
86830
|
updateChangeProposalImpact?: Maybe<MercuryUpdateChangeProposalPayload>;
|
|
86265
86831
|
updateChangeProposalName?: Maybe<MercuryUpdateChangeProposalPayload>;
|
|
86266
86832
|
updateChangeProposalOwner?: Maybe<MercuryUpdateChangeProposalPayload>;
|
|
86833
|
+
updateChangeProposalRankInView?: Maybe<MercuryUpdateChangeProposalRankInViewPayload>;
|
|
86267
86834
|
updateChangeProposalsView?: Maybe<MercuryUpdateChangeProposalsViewPayload>;
|
|
86268
86835
|
updateChangeProposalsViewSettings?: Maybe<MercuryUpdateChangeProposalsViewSettingsPayload>;
|
|
86269
86836
|
updateMoveFundsChange: MercuryUpdateChangePayload;
|
|
@@ -86331,6 +86898,9 @@ export declare type MercuryStrategicEventsMutationApiTransitionStrategicEventSta
|
|
|
86331
86898
|
export declare type MercuryStrategicEventsMutationApiUnlinkGoalsFromChangeProposalArgs = {
|
|
86332
86899
|
input: MercuryUnlinkGoalsFromChangeProposalInput;
|
|
86333
86900
|
};
|
|
86901
|
+
export declare type MercuryStrategicEventsMutationApiUnrankChangeProposalInViewArgs = {
|
|
86902
|
+
input: MercuryUnrankChangeProposalInViewInput;
|
|
86903
|
+
};
|
|
86334
86904
|
export declare type MercuryStrategicEventsMutationApiUpdateChangeProposalCommentArgs = {
|
|
86335
86905
|
input: MercuryUpdateChangeProposalCommentInput;
|
|
86336
86906
|
};
|
|
@@ -86349,6 +86919,9 @@ export declare type MercuryStrategicEventsMutationApiUpdateChangeProposalNameArg
|
|
|
86349
86919
|
export declare type MercuryStrategicEventsMutationApiUpdateChangeProposalOwnerArgs = {
|
|
86350
86920
|
input: MercuryUpdateChangeProposalOwnerInput;
|
|
86351
86921
|
};
|
|
86922
|
+
export declare type MercuryStrategicEventsMutationApiUpdateChangeProposalRankInViewArgs = {
|
|
86923
|
+
input: MercuryUpdateChangeProposalRankInViewInput;
|
|
86924
|
+
};
|
|
86352
86925
|
export declare type MercuryStrategicEventsMutationApiUpdateChangeProposalsViewArgs = {
|
|
86353
86926
|
input: MercuryUpdateChangeProposalsViewInput;
|
|
86354
86927
|
};
|
|
@@ -86625,6 +87198,15 @@ export declare type MercuryUnlinkGoalsFromChangeProposalPayload = Payload & {
|
|
|
86625
87198
|
errors?: Maybe<Array<MutationError>>;
|
|
86626
87199
|
success: Scalars['Boolean']['output'];
|
|
86627
87200
|
};
|
|
87201
|
+
export declare type MercuryUnrankChangeProposalInViewInput = {
|
|
87202
|
+
changeProposalId: Scalars['ID']['input'];
|
|
87203
|
+
changeProposalsViewId: Scalars['ID']['input'];
|
|
87204
|
+
};
|
|
87205
|
+
export declare type MercuryUnrankChangeProposalInViewPayload = Payload & {
|
|
87206
|
+
__typename?: 'MercuryUnrankChangeProposalInViewPayload';
|
|
87207
|
+
errors?: Maybe<Array<MutationError>>;
|
|
87208
|
+
success: Scalars['Boolean']['output'];
|
|
87209
|
+
};
|
|
86628
87210
|
export declare type MercuryUpdateChangeFocusAreaInput = {
|
|
86629
87211
|
focusAreaId?: InputMaybe<Scalars['ID']['input']>;
|
|
86630
87212
|
};
|
|
@@ -86677,6 +87259,16 @@ export declare type MercuryUpdateChangeProposalPayload = Payload & {
|
|
|
86677
87259
|
success: Scalars['Boolean']['output'];
|
|
86678
87260
|
updatedChangeProposal?: Maybe<MercuryChangeProposal>;
|
|
86679
87261
|
};
|
|
87262
|
+
export declare type MercuryUpdateChangeProposalRankInViewInput = {
|
|
87263
|
+
changeProposalId: Scalars['ID']['input'];
|
|
87264
|
+
changeProposalsViewId: Scalars['ID']['input'];
|
|
87265
|
+
markerChangeProposalId?: InputMaybe<Scalars['ID']['input']>;
|
|
87266
|
+
};
|
|
87267
|
+
export declare type MercuryUpdateChangeProposalRankInViewPayload = Payload & {
|
|
87268
|
+
__typename?: 'MercuryUpdateChangeProposalRankInViewPayload';
|
|
87269
|
+
errors?: Maybe<Array<MutationError>>;
|
|
87270
|
+
success: Scalars['Boolean']['output'];
|
|
87271
|
+
};
|
|
86680
87272
|
export declare type MercuryUpdateChangeProposalsViewInput = {
|
|
86681
87273
|
id: Scalars['ID']['input'];
|
|
86682
87274
|
name?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -87205,18 +87797,25 @@ export declare type Mutation = {
|
|
|
87205
87797
|
compass?: Maybe<CompassCatalogMutationApi>;
|
|
87206
87798
|
completeSprint?: Maybe<CompleteSprintResponse>;
|
|
87207
87799
|
confluence?: Maybe<ConfluenceMutationApi>;
|
|
87800
|
+
confluence_acceptAnswer?: Maybe<ConfluenceAcceptAnswerPayload>;
|
|
87208
87801
|
confluence_addReaction?: Maybe<ConfluenceReactionPayload>;
|
|
87209
87802
|
confluence_bulkNestedConvertToLiveDocs?: Maybe<ConfluenceBulkNestedConvertToLiveDocsPayload>;
|
|
87210
87803
|
confluence_convertNote?: Maybe<ConfluenceConvertNotePayload>;
|
|
87211
87804
|
confluence_copyNote?: Maybe<ConfluenceCopyNotePayload>;
|
|
87212
87805
|
confluence_copySpaceSecurityConfiguration?: Maybe<ConfluenceCopySpaceSecurityConfigurationPayload>;
|
|
87806
|
+
confluence_createAnswer?: Maybe<ConfluenceCreateAnswerPayload>;
|
|
87807
|
+
confluence_createCommentOnAnswer?: Maybe<ConfluenceCreateCommentOnAnswerPayload>;
|
|
87808
|
+
confluence_createCommentOnQuestion?: Maybe<ConfluenceCreateCommentOnQuestionPayload>;
|
|
87213
87809
|
confluence_createCsvExportTask?: Maybe<ConfluenceCreateCsvExportTaskPayload>;
|
|
87214
87810
|
confluence_createCustomRole?: Maybe<ConfluenceCreateCustomRolePayload>;
|
|
87215
87811
|
confluence_createPdfExportTaskForBulkContent?: Maybe<ConfluenceCreatePdfExportTaskForBulkContentPayload>;
|
|
87216
87812
|
confluence_createPdfExportTaskForSingleContent?: Maybe<ConfluenceCreatePdfExportTaskForSingleContentPayload>;
|
|
87813
|
+
confluence_createQuestion?: Maybe<ConfluenceCreateQuestionPayload>;
|
|
87217
87814
|
confluence_createTopic?: Maybe<ConfluenceCreateTopicPayload>;
|
|
87815
|
+
confluence_deleteAnswer?: Maybe<ConfluenceDeleteAnswerPayload>;
|
|
87218
87816
|
confluence_deleteCalendarCustomEventType?: Maybe<ConfluenceDeleteCalendarCustomEventTypePayload>;
|
|
87219
87817
|
confluence_deleteCustomRole?: Maybe<ConfluenceDeleteCustomRolePayload>;
|
|
87818
|
+
confluence_deleteQuestion?: Maybe<ConfluenceDeleteQuestionPayload>;
|
|
87220
87819
|
confluence_deleteReaction?: Maybe<ConfluenceReactionPayload>;
|
|
87221
87820
|
confluence_deleteSubCalendarAllFutureEvents?: Maybe<ConfluenceDeleteSubCalendarAllFutureEventsPayload>;
|
|
87222
87821
|
confluence_deleteSubCalendarEvent?: Maybe<ConfluenceDeleteSubCalendarEventPayload>;
|
|
@@ -87231,22 +87830,28 @@ export declare type Mutation = {
|
|
|
87231
87830
|
confluence_makeSubCalendarPrivateUrl?: Maybe<ConfluenceMakeSubCalendarPrivateUrlPayload>;
|
|
87232
87831
|
confluence_markAllCommentsAsRead?: Maybe<ConfluenceMarkAllCommentsAsReadPayload>;
|
|
87233
87832
|
confluence_markCommentAsDangling?: Maybe<ConfluenceMarkCommentAsDanglingPayload>;
|
|
87833
|
+
confluence_nbmBulkUpdateVerificationEntry?: Maybe<ConfluenceNbmBulkUpdateVerificationEntryPayload>;
|
|
87234
87834
|
confluence_nbmStartScanLongTask?: Maybe<ConfluenceNbmStartScanLongTaskPayload>;
|
|
87235
87835
|
confluence_reopenComment?: Maybe<ConfluenceReopenCommentPayload>;
|
|
87236
87836
|
confluence_resolveComments?: Maybe<ConfluenceResolveCommentsPayload>;
|
|
87237
87837
|
confluence_resolveCommentsByContentId?: Maybe<ConfluenceResolveCommentByContentIdPayload>;
|
|
87238
87838
|
confluence_setSubCalendarReminder?: Maybe<ConfluenceSetSubCalendarReminderPayload>;
|
|
87239
87839
|
confluence_unmarkCommentAsDangling?: Maybe<ConfluenceUnmarkCommentAsDanglingPayload>;
|
|
87840
|
+
confluence_unschedulePublish?: Maybe<ConfluenceUnschedulePublishPayload>;
|
|
87240
87841
|
confluence_unwatchLabel?: Maybe<ConfluenceLabelWatchStatus>;
|
|
87241
87842
|
confluence_unwatchSubCalendar?: Maybe<ConfluenceUnwatchSubCalendarPayload>;
|
|
87843
|
+
confluence_updateAnswer?: Maybe<ConfluenceUpdateAnswerPayload>;
|
|
87242
87844
|
confluence_updateCalendarView?: Maybe<ConfluenceUpdateCalendarViewPayload>;
|
|
87243
87845
|
confluence_updateContentAccessRequest?: Maybe<ConfluenceUpdateContentAccessRequestPayload>;
|
|
87846
|
+
confluence_updateCustomContentPermissions?: Maybe<ConfluenceUpdateCustomContentPermissionsPayload>;
|
|
87244
87847
|
confluence_updateCustomRole?: Maybe<ConfluenceUpdateCustomRolePayload>;
|
|
87245
87848
|
confluence_updateDefaultTitleEmoji?: Maybe<ConfluenceUpdateDefaultTitleEmojiPayload>;
|
|
87246
87849
|
confluence_updateNav4OptIn?: Maybe<ConfluenceUpdateNav4OptInPayload>;
|
|
87850
|
+
confluence_updateQuestion?: Maybe<ConfluenceUpdateQuestionPayload>;
|
|
87247
87851
|
confluence_updateSubCalendarHiddenEvents?: Maybe<ConfluenceUpdateSubCalendarHiddenEventsPayload>;
|
|
87248
87852
|
confluence_updateTeamPresenceSpaceSettings?: Maybe<ConfluenceUpdateTeamPresenceSpaceSettingsPayload>;
|
|
87249
87853
|
confluence_updateTopic?: Maybe<ConfluenceUpdateTopicPayload>;
|
|
87854
|
+
confluence_updateVote?: Maybe<ConfluenceUpdateVotePayload>;
|
|
87250
87855
|
confluence_watchLabel?: Maybe<ConfluenceLabelWatchStatus>;
|
|
87251
87856
|
confluence_watchSubCalendar?: Maybe<ConfluenceWatchSubCalendarPayload>;
|
|
87252
87857
|
connectionManager_createApiTokenConnectionForJiraProject?: Maybe<ConnectionManagerCreateApiTokenConnectionForJiraProjectPayload>;
|
|
@@ -87421,6 +88026,7 @@ export declare type Mutation = {
|
|
|
87421
88026
|
helpObjectStore?: Maybe<HelpObjectStoreMutationApi>;
|
|
87422
88027
|
home_addTagsById?: Maybe<TownsquareAddTagToEntityPayload>;
|
|
87423
88028
|
home_addTagsByName?: Maybe<TownsquareAddTagsByNamePayload>;
|
|
88029
|
+
home_createTag?: Maybe<TownsquareCreateTagPayload>;
|
|
87424
88030
|
home_removeTags?: Maybe<TownsquareRemoveTagsPayload>;
|
|
87425
88031
|
insightsMutation?: Maybe<InsightsMutation>;
|
|
87426
88032
|
installApp?: Maybe<AppInstallationResponse>;
|
|
@@ -87432,6 +88038,7 @@ export declare type Mutation = {
|
|
|
87432
88038
|
jiraOAuthApps?: Maybe<JiraOAuthAppsMutation>;
|
|
87433
88039
|
jira_addFieldsToFieldScheme?: Maybe<JiraAddFieldsToFieldSchemePayload>;
|
|
87434
88040
|
jira_addTimelineIssueLink?: Maybe<JiraTimelineIssueLinkOperationPayload>;
|
|
88041
|
+
jira_applySuggestionActions?: Maybe<JiraApplySuggestionActionsPayload>;
|
|
87435
88042
|
jira_bulkSetBoardViewColumnState?: Maybe<JiraBulkSetBoardViewColumnStatePayload>;
|
|
87436
88043
|
jira_createBoardViewStatusColumn?: Maybe<JiraCreateBoardViewStatusColumnPayload>;
|
|
87437
88044
|
jira_createCustomBackground?: Maybe<JiraProjectCreateCustomBackgroundMutationPayload>;
|
|
@@ -87449,6 +88056,7 @@ export declare type Mutation = {
|
|
|
87449
88056
|
jira_deleteIssueType?: Maybe<JiraDeleteIssueTypePayload>;
|
|
87450
88057
|
jira_discardUserBoardViewConfig?: Maybe<JiraDiscardUserBoardViewConfigPayload>;
|
|
87451
88058
|
jira_discardUserIssueSearchConfig?: Maybe<JiraDiscardUserIssueSearchConfigPayload>;
|
|
88059
|
+
jira_dismissSuggestions?: Maybe<JiraDismissSuggestionActionsPayload>;
|
|
87452
88060
|
jira_dragAndDropBoardViewIssue?: Maybe<JiraDragAndDropBoardViewIssuePayload>;
|
|
87453
88061
|
jira_editFieldScheme?: Maybe<JiraFieldSchemePayload>;
|
|
87454
88062
|
jira_orderIssueSearchFormattingRule?: Maybe<JiraOrderIssueSearchFormattingRulePayload>;
|
|
@@ -87489,6 +88097,7 @@ export declare type Mutation = {
|
|
|
87489
88097
|
jira_updateProjectBackground?: Maybe<JiraProjectUpdateBackgroundMutationPayload>;
|
|
87490
88098
|
jira_updateProjectsSidebarMenu?: Maybe<JiraProjectsSidebarMenu>;
|
|
87491
88099
|
jira_updateSchemeFieldPerWorkTypeCustomizations?: Maybe<JiraFieldWorkTypeConfigurationPayload>;
|
|
88100
|
+
jsmChannels_updateExperienceConfiguration: JsmChannelsExperienceConfigurationPayload;
|
|
87492
88101
|
jsmChat?: Maybe<JsmChatMutation>;
|
|
87493
88102
|
jsw?: Maybe<JswMutation>;
|
|
87494
88103
|
knowledgeBase?: Maybe<KnowledgeBaseMutationApi>;
|
|
@@ -88072,6 +88681,10 @@ export declare type MutationCompleteSprintArgs = {
|
|
|
88072
88681
|
export declare type MutationConfluenceArgs = {
|
|
88073
88682
|
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
88074
88683
|
};
|
|
88684
|
+
export declare type MutationConfluence_AcceptAnswerArgs = {
|
|
88685
|
+
cloudId: Scalars['ID']['input'];
|
|
88686
|
+
input: ConfluenceAcceptAnswerInput;
|
|
88687
|
+
};
|
|
88075
88688
|
export declare type MutationConfluence_AddReactionArgs = {
|
|
88076
88689
|
cloudId: Scalars['ID']['input'];
|
|
88077
88690
|
input: ConfluenceReactionInput;
|
|
@@ -88090,6 +88703,18 @@ export declare type MutationConfluence_CopySpaceSecurityConfigurationArgs = {
|
|
|
88090
88703
|
cloudId: Scalars['ID']['input'];
|
|
88091
88704
|
input: ConfluenceCopySpaceSecurityConfigurationInput;
|
|
88092
88705
|
};
|
|
88706
|
+
export declare type MutationConfluence_CreateAnswerArgs = {
|
|
88707
|
+
cloudId: Scalars['ID']['input'];
|
|
88708
|
+
input: ConfluenceCreateAnswerInput;
|
|
88709
|
+
};
|
|
88710
|
+
export declare type MutationConfluence_CreateCommentOnAnswerArgs = {
|
|
88711
|
+
cloudId: Scalars['ID']['input'];
|
|
88712
|
+
input: ConfluenceCreateCommentOnAnswerInput;
|
|
88713
|
+
};
|
|
88714
|
+
export declare type MutationConfluence_CreateCommentOnQuestionArgs = {
|
|
88715
|
+
cloudId: Scalars['ID']['input'];
|
|
88716
|
+
input: ConfluenceCreateCommentOnQuestionInput;
|
|
88717
|
+
};
|
|
88093
88718
|
export declare type MutationConfluence_CreateCsvExportTaskArgs = {
|
|
88094
88719
|
cloudId: Scalars['ID']['input'];
|
|
88095
88720
|
input: ConfluenceCreateCsvExportTaskInput;
|
|
@@ -88104,10 +88729,18 @@ export declare type MutationConfluence_CreatePdfExportTaskForBulkContentArgs = {
|
|
|
88104
88729
|
export declare type MutationConfluence_CreatePdfExportTaskForSingleContentArgs = {
|
|
88105
88730
|
input: ConfluenceCreatePdfExportTaskForSingleContentInput;
|
|
88106
88731
|
};
|
|
88732
|
+
export declare type MutationConfluence_CreateQuestionArgs = {
|
|
88733
|
+
cloudId: Scalars['ID']['input'];
|
|
88734
|
+
input: ConfluenceCreateQuestionInput;
|
|
88735
|
+
};
|
|
88107
88736
|
export declare type MutationConfluence_CreateTopicArgs = {
|
|
88108
88737
|
cloudId: Scalars['ID']['input'];
|
|
88109
88738
|
input: ConfluenceCreateTopicInput;
|
|
88110
88739
|
};
|
|
88740
|
+
export declare type MutationConfluence_DeleteAnswerArgs = {
|
|
88741
|
+
cloudId: Scalars['ID']['input'];
|
|
88742
|
+
input: ConfluenceDeleteAnswerInput;
|
|
88743
|
+
};
|
|
88111
88744
|
export declare type MutationConfluence_DeleteCalendarCustomEventTypeArgs = {
|
|
88112
88745
|
cloudId: Scalars['ID']['input'];
|
|
88113
88746
|
input: ConfluenceDeleteCalendarCustomEventTypeInput;
|
|
@@ -88116,6 +88749,10 @@ export declare type MutationConfluence_DeleteCustomRoleArgs = {
|
|
|
88116
88749
|
cloudId: Scalars['ID']['input'];
|
|
88117
88750
|
input: ConfluenceDeleteCustomRoleInput;
|
|
88118
88751
|
};
|
|
88752
|
+
export declare type MutationConfluence_DeleteQuestionArgs = {
|
|
88753
|
+
cloudId: Scalars['ID']['input'];
|
|
88754
|
+
input: ConfluenceDeleteQuestionInput;
|
|
88755
|
+
};
|
|
88119
88756
|
export declare type MutationConfluence_DeleteReactionArgs = {
|
|
88120
88757
|
cloudId: Scalars['ID']['input'];
|
|
88121
88758
|
input: ConfluenceReactionInput;
|
|
@@ -88171,6 +88808,10 @@ export declare type MutationConfluence_MarkCommentAsDanglingArgs = {
|
|
|
88171
88808
|
cloudId: Scalars['ID']['input'];
|
|
88172
88809
|
input: ConfluenceMarkCommentAsDanglingInput;
|
|
88173
88810
|
};
|
|
88811
|
+
export declare type MutationConfluence_NbmBulkUpdateVerificationEntryArgs = {
|
|
88812
|
+
cloudId: Scalars['ID']['input'];
|
|
88813
|
+
input: ConfluenceNbmBulkUpdateVerificationEntryInput;
|
|
88814
|
+
};
|
|
88174
88815
|
export declare type MutationConfluence_NbmStartScanLongTaskArgs = {
|
|
88175
88816
|
cloudId: Scalars['ID']['input'];
|
|
88176
88817
|
input: ConfluenceNbmStartScanLongTaskInput;
|
|
@@ -88196,6 +88837,10 @@ export declare type MutationConfluence_UnmarkCommentAsDanglingArgs = {
|
|
|
88196
88837
|
cloudId: Scalars['ID']['input'];
|
|
88197
88838
|
input: ConfluenceUnmarkCommentAsDanglingInput;
|
|
88198
88839
|
};
|
|
88840
|
+
export declare type MutationConfluence_UnschedulePublishArgs = {
|
|
88841
|
+
cloudId: Scalars['ID']['input'];
|
|
88842
|
+
input: ConfluenceUnschedulePublishInput;
|
|
88843
|
+
};
|
|
88199
88844
|
export declare type MutationConfluence_UnwatchLabelArgs = {
|
|
88200
88845
|
cloudId: Scalars['ID']['input'];
|
|
88201
88846
|
input: ConfluenceLabelWatchInput;
|
|
@@ -88204,6 +88849,10 @@ export declare type MutationConfluence_UnwatchSubCalendarArgs = {
|
|
|
88204
88849
|
cloudId: Scalars['ID']['input'];
|
|
88205
88850
|
input: ConfluenceUnwatchSubCalendarInput;
|
|
88206
88851
|
};
|
|
88852
|
+
export declare type MutationConfluence_UpdateAnswerArgs = {
|
|
88853
|
+
cloudId: Scalars['ID']['input'];
|
|
88854
|
+
input: ConfluenceUpdateAnswerInput;
|
|
88855
|
+
};
|
|
88207
88856
|
export declare type MutationConfluence_UpdateCalendarViewArgs = {
|
|
88208
88857
|
cloudId: Scalars['ID']['input'];
|
|
88209
88858
|
input: ConfluenceUpdateCalendarViewInput;
|
|
@@ -88212,6 +88861,10 @@ export declare type MutationConfluence_UpdateContentAccessRequestArgs = {
|
|
|
88212
88861
|
cloudId: Scalars['ID']['input'];
|
|
88213
88862
|
updateContentAccessRequestInput: ConfluenceUpdateContentAccessRequestInput;
|
|
88214
88863
|
};
|
|
88864
|
+
export declare type MutationConfluence_UpdateCustomContentPermissionsArgs = {
|
|
88865
|
+
cloudId: Scalars['ID']['input'];
|
|
88866
|
+
input: ConfluenceUpdateCustomContentPermissionsInput;
|
|
88867
|
+
};
|
|
88215
88868
|
export declare type MutationConfluence_UpdateCustomRoleArgs = {
|
|
88216
88869
|
cloudId: Scalars['ID']['input'];
|
|
88217
88870
|
input: ConfluenceUpdateCustomRoleInput;
|
|
@@ -88224,6 +88877,10 @@ export declare type MutationConfluence_UpdateNav4OptInArgs = {
|
|
|
88224
88877
|
cloudId: Scalars['ID']['input'];
|
|
88225
88878
|
input: ConfluenceUpdateNav4OptInInput;
|
|
88226
88879
|
};
|
|
88880
|
+
export declare type MutationConfluence_UpdateQuestionArgs = {
|
|
88881
|
+
cloudId: Scalars['ID']['input'];
|
|
88882
|
+
input: ConfluenceUpdateQuestionInput;
|
|
88883
|
+
};
|
|
88227
88884
|
export declare type MutationConfluence_UpdateSubCalendarHiddenEventsArgs = {
|
|
88228
88885
|
cloudId: Scalars['ID']['input'];
|
|
88229
88886
|
input: Array<ConfluenceUpdateSubCalendarHiddenEventsInput>;
|
|
@@ -88236,6 +88893,10 @@ export declare type MutationConfluence_UpdateTopicArgs = {
|
|
|
88236
88893
|
cloudId: Scalars['ID']['input'];
|
|
88237
88894
|
input: ConfluenceUpdateTopicInput;
|
|
88238
88895
|
};
|
|
88896
|
+
export declare type MutationConfluence_UpdateVoteArgs = {
|
|
88897
|
+
cloudId: Scalars['ID']['input'];
|
|
88898
|
+
input: ConfluenceUpdateVoteInput;
|
|
88899
|
+
};
|
|
88239
88900
|
export declare type MutationConfluence_WatchLabelArgs = {
|
|
88240
88901
|
cloudId: Scalars['ID']['input'];
|
|
88241
88902
|
input: ConfluenceLabelWatchInput;
|
|
@@ -88816,6 +89477,9 @@ export declare type MutationHome_AddTagsByIdArgs = {
|
|
|
88816
89477
|
export declare type MutationHome_AddTagsByNameArgs = {
|
|
88817
89478
|
input: TownsquareAddTagsByNameInput;
|
|
88818
89479
|
};
|
|
89480
|
+
export declare type MutationHome_CreateTagArgs = {
|
|
89481
|
+
input: TownsquareCreateTagInput;
|
|
89482
|
+
};
|
|
88819
89483
|
export declare type MutationHome_RemoveTagsArgs = {
|
|
88820
89484
|
input: TownsquareRemoveTagsInput;
|
|
88821
89485
|
};
|
|
@@ -88839,6 +89503,9 @@ export declare type MutationJira_AddTimelineIssueLinkArgs = {
|
|
|
88839
89503
|
cloudId: Scalars['ID']['input'];
|
|
88840
89504
|
input: JiraAddTimelineIssueLinkInput;
|
|
88841
89505
|
};
|
|
89506
|
+
export declare type MutationJira_ApplySuggestionActionsArgs = {
|
|
89507
|
+
input: Array<JiraApplySuggestionActionInput>;
|
|
89508
|
+
};
|
|
88842
89509
|
export declare type MutationJira_BulkSetBoardViewColumnStateArgs = {
|
|
88843
89510
|
input: JiraBulkSetBoardViewColumnStateInput;
|
|
88844
89511
|
};
|
|
@@ -88894,6 +89561,9 @@ export declare type MutationJira_DiscardUserBoardViewConfigArgs = {
|
|
|
88894
89561
|
export declare type MutationJira_DiscardUserIssueSearchConfigArgs = {
|
|
88895
89562
|
input: JiraDiscardUserIssueSearchConfigInput;
|
|
88896
89563
|
};
|
|
89564
|
+
export declare type MutationJira_DismissSuggestionsArgs = {
|
|
89565
|
+
input: JiraDismissSuggestionsInput;
|
|
89566
|
+
};
|
|
88897
89567
|
export declare type MutationJira_DragAndDropBoardViewIssueArgs = {
|
|
88898
89568
|
input: JiraDragAndDropBoardViewIssueInput;
|
|
88899
89569
|
};
|
|
@@ -89024,6 +89694,11 @@ export declare type MutationJira_UpdateSchemeFieldPerWorkTypeCustomizationsArgs
|
|
|
89024
89694
|
cloudId: Scalars['ID']['input'];
|
|
89025
89695
|
input?: InputMaybe<JiraFieldWorkTypeCustomizationsInput>;
|
|
89026
89696
|
};
|
|
89697
|
+
export declare type MutationJsmChannels_UpdateExperienceConfigurationArgs = {
|
|
89698
|
+
experience: JsmChannelsExperience;
|
|
89699
|
+
input: JsmChannelsExperienceConfigurationInput;
|
|
89700
|
+
jiraProjectAri: Scalars['ID']['input'];
|
|
89701
|
+
};
|
|
89027
89702
|
export declare type MutationKnowledgeBaseArgs = {
|
|
89028
89703
|
cloudId: Scalars['ID']['input'];
|
|
89029
89704
|
};
|
|
@@ -92303,7 +92978,6 @@ export declare enum PrincipalFilterType {
|
|
|
92303
92978
|
App = "APP",
|
|
92304
92979
|
Group = "GROUP",
|
|
92305
92980
|
Guest = "GUEST",
|
|
92306
|
-
Team = "TEAM",
|
|
92307
92981
|
User = "USER",
|
|
92308
92982
|
UserClass = "USER_CLASS"
|
|
92309
92983
|
}
|
|
@@ -92595,7 +93269,7 @@ export declare type PublishedContentProperties = {
|
|
|
92595
93269
|
coverPictureWidth?: Maybe<Scalars['String']['output']>;
|
|
92596
93270
|
defaultTitleEmoji?: Maybe<Scalars['String']['output']>;
|
|
92597
93271
|
externalVersionId?: Maybe<Scalars['String']['output']>;
|
|
92598
|
-
generatedBy?: Maybe<
|
|
93272
|
+
generatedBy?: Maybe<Scalars['String']['output']>;
|
|
92599
93273
|
versionContainsAIContent?: Maybe<Scalars['Boolean']['output']>;
|
|
92600
93274
|
};
|
|
92601
93275
|
export declare type PullRequestStatusInTimeRangeQueryFilter = {
|
|
@@ -92803,7 +93477,11 @@ export declare type Query = {
|
|
|
92803
93477
|
compass?: Maybe<CompassCatalogQueryApi>;
|
|
92804
93478
|
confluence?: Maybe<ConfluenceQueryApi>;
|
|
92805
93479
|
confluenceUsers?: Maybe<PaginatedPersonList>;
|
|
93480
|
+
confluence_answer?: Maybe<ConfluenceAnswer>;
|
|
93481
|
+
confluence_answers?: Maybe<Array<Maybe<ConfluenceAnswer>>>;
|
|
93482
|
+
confluence_answersForQuestion?: Maybe<ConfluenceAnswerConnection>;
|
|
92806
93483
|
confluence_applicationLinkByOauth2ClientId?: Maybe<ConfluenceApplicationLink>;
|
|
93484
|
+
confluence_applicationLinksByTypeId?: Maybe<Array<Maybe<ConfluenceApplicationLink>>>;
|
|
92807
93485
|
confluence_assignableSpaceRoles?: Maybe<Array<Maybe<ConfluenceAssignableSpaceRole>>>;
|
|
92808
93486
|
confluence_atlassianUser?: Maybe<AtlassianUser>;
|
|
92809
93487
|
confluence_calendarJiraDateFieldsByJql?: Maybe<Array<Maybe<ConfluenceCalendarJiraDateField>>>;
|
|
@@ -92831,11 +93509,14 @@ export declare type Query = {
|
|
|
92831
93509
|
confluence_externalCollaboratorsByCriteria?: Maybe<ConfluencePersonConnection>;
|
|
92832
93510
|
confluence_forgeExtensionsByType?: Maybe<Array<Maybe<ConfluenceForgeExtension>>>;
|
|
92833
93511
|
confluence_generateSpaceKey?: Maybe<ConfluenceGeneratedSpaceKey>;
|
|
93512
|
+
confluence_getAllApps?: Maybe<ConfluenceAppConnection>;
|
|
93513
|
+
confluence_getCustomContentPermissionAssignments?: Maybe<ConfluenceCustomContentPermissionAssignmentConnection>;
|
|
92834
93514
|
confluence_getWacTemplate?: Maybe<ConfluenceWacTemplate>;
|
|
92835
93515
|
confluence_hasClearPermissionForSpace?: Maybe<Scalars['Boolean']['output']>;
|
|
92836
93516
|
confluence_hasDivergedFromDefaultSpacePermissions?: Maybe<Scalars['Boolean']['output']>;
|
|
92837
93517
|
confluence_importsAll?: Maybe<Array<Maybe<ConfluenceImport>>>;
|
|
92838
93518
|
confluence_isPrivacyModeEnabled?: Maybe<ConfluencePrivacyMode>;
|
|
93519
|
+
confluence_isSpaceRoleAssignedToUserTypes?: Maybe<ConfluenceSpaceRoleAssigned>;
|
|
92839
93520
|
confluence_isWatchingLabel?: Maybe<ConfluenceLabelWatchStatus>;
|
|
92840
93521
|
confluence_latestKnowledgeGraphObjectV2?: Maybe<KnowledgeGraphObjectResponseV2>;
|
|
92841
93522
|
confluence_loomEntryPoints?: Maybe<ConfluenceLoomEntryPoints>;
|
|
@@ -92843,13 +93524,17 @@ export declare type Query = {
|
|
|
92843
93524
|
confluence_mediaTokenData?: Maybe<ConfluenceMediaTokenData>;
|
|
92844
93525
|
confluence_nbmScanList?: Maybe<ConfluenceNbmScanConnection>;
|
|
92845
93526
|
confluence_nbmScanResult?: Maybe<ConfluenceNbmScanResult>;
|
|
93527
|
+
confluence_nbmVerificationResult?: Maybe<ConfluenceNbmVerificationResultConnection>;
|
|
92846
93528
|
confluence_note?: Maybe<NoteResponse>;
|
|
92847
93529
|
confluence_notesByProductLink?: Maybe<NoteConnection>;
|
|
92848
93530
|
confluence_pdfExportDownloadLink?: Maybe<ConfluencePdfExportDownloadLink>;
|
|
92849
93531
|
confluence_pdfExportTask?: Maybe<ConfluencePdfExportTask>;
|
|
92850
93532
|
confluence_pendingRequestExists?: Maybe<ConfluencePendingAccessRequest>;
|
|
92851
93533
|
confluence_publicLinkSpaceHomePage?: Maybe<PublicLinkPage>;
|
|
93534
|
+
confluence_question?: Maybe<ConfluenceQuestion>;
|
|
93535
|
+
confluence_questions?: Maybe<Array<Maybe<ConfluenceQuestion>>>;
|
|
92852
93536
|
confluence_questionsConfiguration?: Maybe<ConfluenceQuestionsConfiguration>;
|
|
93537
|
+
confluence_questionsForSpace?: Maybe<ConfluenceQuestionConnection>;
|
|
92853
93538
|
confluence_reactedUsers?: Maybe<ConfluenceReactedUsersResponsePayload>;
|
|
92854
93539
|
confluence_reactionsSummary?: Maybe<ConfluenceReactionSummary>;
|
|
92855
93540
|
confluence_refreshMigrationMediaSession?: Maybe<ContentMediaSession>;
|
|
@@ -92917,11 +93602,21 @@ export declare type Query = {
|
|
|
92917
93602
|
cpls_capacityPlanningPeopleView?: Maybe<CplsCapacityPlanningPeopleView>;
|
|
92918
93603
|
cpls_customContributionTargets: Array<CplsCustomContributionTarget>;
|
|
92919
93604
|
cqlMetaData?: Maybe<Confluence_CqlMetaData>;
|
|
93605
|
+
crossProjectIssueMentionsInComments?: Maybe<GraphStoreCypherQueryV2Connection>;
|
|
93606
|
+
crossProjectIssuesLinkedToSamePullRequest?: Maybe<GraphStoreCypherQueryV2Connection>;
|
|
93607
|
+
crossProjectIssuesMentionedInExternalConversations?: Maybe<GraphStoreCypherQueryV2Connection>;
|
|
93608
|
+
crossProjectIssuesMentionedInExternalMessages?: Maybe<GraphStoreCypherQueryV2Connection>;
|
|
93609
|
+
crossProjectIssuesMentionedTogetherInConfluence?: Maybe<GraphStoreCypherQueryV2Connection>;
|
|
93610
|
+
crossProjectIssuesShareBlockerIssue?: Maybe<GraphStoreCypherQueryV2Connection>;
|
|
93611
|
+
crossProjectIssuesShareRelatedIssue?: Maybe<GraphStoreCypherQueryV2Connection>;
|
|
92920
93612
|
csmAi_generateCoachingTriggeringCondition: Scalars['String']['output'];
|
|
92921
93613
|
csmAi_getAgentVersion?: Maybe<CsmAiAgentVersionResult>;
|
|
92922
93614
|
csmAi_getAiHubByHelpCenterAri?: Maybe<CsmAiHubResult>;
|
|
93615
|
+
csmAi_getAvailableByod?: Maybe<CsmAiByodContentsResult>;
|
|
93616
|
+
csmAi_getSupportWidget?: Maybe<CsmAiWidgetConfigResult>;
|
|
92923
93617
|
currentConfluenceUser?: Maybe<CurrentConfluenceUser>;
|
|
92924
93618
|
customer360_customer?: Maybe<Customer360Customer>;
|
|
93619
|
+
customer360_customersById?: Maybe<Array<Maybe<Customer360Customer>>>;
|
|
92925
93620
|
customerService?: Maybe<CustomerServiceQueryApi>;
|
|
92926
93621
|
customerStories: ContentPlatformCustomerStorySearchConnection;
|
|
92927
93622
|
customerStory?: Maybe<ContentPlatformCustomerStory>;
|
|
@@ -93114,8 +93809,10 @@ export declare type Query = {
|
|
|
93114
93809
|
jira_projectLevelSidebarMenuCustomization?: Maybe<JiraProjectLevelSidebarMenuCustomizationResult>;
|
|
93115
93810
|
jira_projectTypesByIds?: Maybe<Array<Maybe<JiraProjectTypeDetails>>>;
|
|
93116
93811
|
jira_projectsSidebarMenu?: Maybe<JiraProjectsSidebarMenu>;
|
|
93812
|
+
jira_suggestionsByContext?: Maybe<JiraSuggestionsConnection>;
|
|
93117
93813
|
jsmChannels_conversationsByContainerAri?: Maybe<JsmChannelsConversationsByContainerAriResult>;
|
|
93118
93814
|
jsmChannels_conversationsByIds?: Maybe<Array<Maybe<JsmChannelsOrchestratorConversation>>>;
|
|
93815
|
+
jsmChannels_getExperienceConfigurationByProjectId: JsmChannelsExperienceConfigurationResult;
|
|
93119
93816
|
jsmChat?: Maybe<JsmChatQuery>;
|
|
93120
93817
|
jsw?: Maybe<JswQuery>;
|
|
93121
93818
|
knowledgeBase?: Maybe<KnowledgeBaseQueryApi>;
|
|
@@ -93884,6 +94581,7 @@ export declare type QueryCatchupEditMetadataForContentArgs = {
|
|
|
93884
94581
|
contentId: Scalars['ID']['input'];
|
|
93885
94582
|
contentType: CatchupContentType;
|
|
93886
94583
|
endTimeMs: Scalars['Long']['input'];
|
|
94584
|
+
timeframeLength?: InputMaybe<ConfluenceCatchupOverviewTimeframeLength>;
|
|
93887
94585
|
updateType?: InputMaybe<CatchupOverviewUpdateType>;
|
|
93888
94586
|
};
|
|
93889
94587
|
export declare type QueryCatchupGetLastViewedTimeArgs = {
|
|
@@ -93991,10 +94689,29 @@ export declare type QueryConfluenceUsersArgs = {
|
|
|
93991
94689
|
limit?: InputMaybe<Scalars['Int']['input']>;
|
|
93992
94690
|
start?: InputMaybe<Scalars['Int']['input']>;
|
|
93993
94691
|
};
|
|
94692
|
+
export declare type QueryConfluence_AnswerArgs = {
|
|
94693
|
+
cloudId: Scalars['ID']['input'];
|
|
94694
|
+
id: Scalars['Long']['input'];
|
|
94695
|
+
};
|
|
94696
|
+
export declare type QueryConfluence_AnswersArgs = {
|
|
94697
|
+
cloudId: Scalars['ID']['input'];
|
|
94698
|
+
ids: Array<InputMaybe<Scalars['Long']['input']>>;
|
|
94699
|
+
};
|
|
94700
|
+
export declare type QueryConfluence_AnswersForQuestionArgs = {
|
|
94701
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
94702
|
+
cloudId: Scalars['ID']['input'];
|
|
94703
|
+
filters?: InputMaybe<ConfluenceAnswerFilters>;
|
|
94704
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
94705
|
+
questionId: Scalars['Long']['input'];
|
|
94706
|
+
};
|
|
93994
94707
|
export declare type QueryConfluence_ApplicationLinkByOauth2ClientIdArgs = {
|
|
93995
94708
|
cloudId: Scalars['ID']['input'];
|
|
93996
94709
|
oauthClientId: Scalars['String']['input'];
|
|
93997
94710
|
};
|
|
94711
|
+
export declare type QueryConfluence_ApplicationLinksByTypeIdArgs = {
|
|
94712
|
+
cloudId: Scalars['ID']['input'];
|
|
94713
|
+
typeId: Scalars['String']['input'];
|
|
94714
|
+
};
|
|
93998
94715
|
export declare type QueryConfluence_AssignableSpaceRolesArgs = {
|
|
93999
94716
|
cloudId: Scalars['ID']['input'];
|
|
94000
94717
|
types: Array<InputMaybe<ConfluenceAssignableSpaceRolePrincipalType>>;
|
|
@@ -94131,6 +94848,19 @@ export declare type QueryConfluence_GenerateSpaceKeyArgs = {
|
|
|
94131
94848
|
cloudId: Scalars['ID']['input'];
|
|
94132
94849
|
spaceName?: InputMaybe<Scalars['String']['input']>;
|
|
94133
94850
|
};
|
|
94851
|
+
export declare type QueryConfluence_GetAllAppsArgs = {
|
|
94852
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
94853
|
+
cloudId: Scalars['ID']['input'];
|
|
94854
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
94855
|
+
};
|
|
94856
|
+
export declare type QueryConfluence_GetCustomContentPermissionAssignmentsArgs = {
|
|
94857
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
94858
|
+
appId: Scalars['ID']['input'];
|
|
94859
|
+
appType: ConfluenceAppType;
|
|
94860
|
+
cloudId: Scalars['ID']['input'];
|
|
94861
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
94862
|
+
spaceId: Scalars['ID']['input'];
|
|
94863
|
+
};
|
|
94134
94864
|
export declare type QueryConfluence_GetWacTemplateArgs = {
|
|
94135
94865
|
cloudId: Scalars['ID']['input'];
|
|
94136
94866
|
};
|
|
@@ -94148,6 +94878,10 @@ export declare type QueryConfluence_ImportsAllArgs = {
|
|
|
94148
94878
|
export declare type QueryConfluence_IsPrivacyModeEnabledArgs = {
|
|
94149
94879
|
cloudId: Scalars['ID']['input'];
|
|
94150
94880
|
};
|
|
94881
|
+
export declare type QueryConfluence_IsSpaceRoleAssignedToUserTypesArgs = {
|
|
94882
|
+
cloudId: Scalars['ID']['input'];
|
|
94883
|
+
spaceRoleId: Scalars['String']['input'];
|
|
94884
|
+
};
|
|
94151
94885
|
export declare type QueryConfluence_IsWatchingLabelArgs = {
|
|
94152
94886
|
cloudId: Scalars['ID']['input'];
|
|
94153
94887
|
input: ConfluenceLabelWatchInput;
|
|
@@ -94179,6 +94913,12 @@ export declare type QueryConfluence_NbmScanResultArgs = {
|
|
|
94179
94913
|
cloudId: Scalars['ID']['input'];
|
|
94180
94914
|
scanId: Scalars['ID']['input'];
|
|
94181
94915
|
};
|
|
94916
|
+
export declare type QueryConfluence_NbmVerificationResultArgs = {
|
|
94917
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
94918
|
+
cloudId: Scalars['ID']['input'];
|
|
94919
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
94920
|
+
scanId: Scalars['ID']['input'];
|
|
94921
|
+
};
|
|
94182
94922
|
export declare type QueryConfluence_NoteArgs = {
|
|
94183
94923
|
id: Scalars['ID']['input'];
|
|
94184
94924
|
};
|
|
@@ -94205,9 +94945,24 @@ export declare type QueryConfluence_PublicLinkSpaceHomePageArgs = {
|
|
|
94205
94945
|
cloudId: Scalars['ID']['input'];
|
|
94206
94946
|
spaceKey: Scalars['String']['input'];
|
|
94207
94947
|
};
|
|
94948
|
+
export declare type QueryConfluence_QuestionArgs = {
|
|
94949
|
+
cloudId: Scalars['ID']['input'];
|
|
94950
|
+
id: Scalars['Long']['input'];
|
|
94951
|
+
};
|
|
94952
|
+
export declare type QueryConfluence_QuestionsArgs = {
|
|
94953
|
+
cloudId: Scalars['ID']['input'];
|
|
94954
|
+
ids: Array<InputMaybe<Scalars['Long']['input']>>;
|
|
94955
|
+
};
|
|
94208
94956
|
export declare type QueryConfluence_QuestionsConfigurationArgs = {
|
|
94209
94957
|
cloudId: Scalars['ID']['input'];
|
|
94210
94958
|
};
|
|
94959
|
+
export declare type QueryConfluence_QuestionsForSpaceArgs = {
|
|
94960
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
94961
|
+
cloudId: Scalars['ID']['input'];
|
|
94962
|
+
filters?: InputMaybe<ConfluenceQuestionFilters>;
|
|
94963
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
94964
|
+
spaceId: Scalars['Long']['input'];
|
|
94965
|
+
};
|
|
94211
94966
|
export declare type QueryConfluence_ReactedUsersArgs = {
|
|
94212
94967
|
cloudId: Scalars['ID']['input'];
|
|
94213
94968
|
input: ConfluenceReactedUsersInput;
|
|
@@ -94591,6 +95346,41 @@ export declare type QueryCpls_CapacityPlanningPeopleViewArgs = {
|
|
|
94591
95346
|
export declare type QueryCpls_CustomContributionTargetsArgs = {
|
|
94592
95347
|
ids: Array<Scalars['ID']['input']>;
|
|
94593
95348
|
};
|
|
95349
|
+
export declare type QueryCrossProjectIssueMentionsInCommentsArgs = {
|
|
95350
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
95351
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
95352
|
+
projectId: Scalars['ID']['input'];
|
|
95353
|
+
};
|
|
95354
|
+
export declare type QueryCrossProjectIssuesLinkedToSamePullRequestArgs = {
|
|
95355
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
95356
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
95357
|
+
projectId: Scalars['ID']['input'];
|
|
95358
|
+
};
|
|
95359
|
+
export declare type QueryCrossProjectIssuesMentionedInExternalConversationsArgs = {
|
|
95360
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
95361
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
95362
|
+
projectId: Scalars['ID']['input'];
|
|
95363
|
+
};
|
|
95364
|
+
export declare type QueryCrossProjectIssuesMentionedInExternalMessagesArgs = {
|
|
95365
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
95366
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
95367
|
+
projectId: Scalars['ID']['input'];
|
|
95368
|
+
};
|
|
95369
|
+
export declare type QueryCrossProjectIssuesMentionedTogetherInConfluenceArgs = {
|
|
95370
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
95371
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
95372
|
+
projectId: Scalars['ID']['input'];
|
|
95373
|
+
};
|
|
95374
|
+
export declare type QueryCrossProjectIssuesShareBlockerIssueArgs = {
|
|
95375
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
95376
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
95377
|
+
projectId: Scalars['ID']['input'];
|
|
95378
|
+
};
|
|
95379
|
+
export declare type QueryCrossProjectIssuesShareRelatedIssueArgs = {
|
|
95380
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
95381
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
95382
|
+
projectId: Scalars['ID']['input'];
|
|
95383
|
+
};
|
|
94594
95384
|
export declare type QueryCsmAi_GenerateCoachingTriggeringConditionArgs = {
|
|
94595
95385
|
conversationId: Scalars['ID']['input'];
|
|
94596
95386
|
helpCenterAri: Scalars['ID']['input'];
|
|
@@ -94604,9 +95394,18 @@ export declare type QueryCsmAi_GetAgentVersionArgs = {
|
|
|
94604
95394
|
export declare type QueryCsmAi_GetAiHubByHelpCenterAriArgs = {
|
|
94605
95395
|
helpCenterAri: Scalars['ID']['input'];
|
|
94606
95396
|
};
|
|
95397
|
+
export declare type QueryCsmAi_GetAvailableByodArgs = {
|
|
95398
|
+
helpCenterAri: Scalars['ID']['input'];
|
|
95399
|
+
};
|
|
95400
|
+
export declare type QueryCsmAi_GetSupportWidgetArgs = {
|
|
95401
|
+
helpCenterAri: Scalars['ID']['input'];
|
|
95402
|
+
};
|
|
94607
95403
|
export declare type QueryCustomer360_CustomerArgs = {
|
|
94608
95404
|
domain: Scalars['String']['input'];
|
|
94609
95405
|
};
|
|
95406
|
+
export declare type QueryCustomer360_CustomersByIdArgs = {
|
|
95407
|
+
ids: Array<Scalars['ID']['input']>;
|
|
95408
|
+
};
|
|
94610
95409
|
export declare type QueryCustomerServiceArgs = {
|
|
94611
95410
|
cloudId: Scalars['ID']['input'];
|
|
94612
95411
|
};
|
|
@@ -95311,6 +96110,9 @@ export declare type QueryJira_ProjectsSidebarMenuArgs = {
|
|
|
95311
96110
|
cloudId: Scalars['ID']['input'];
|
|
95312
96111
|
currentURL?: InputMaybe<Scalars['URL']['input']>;
|
|
95313
96112
|
};
|
|
96113
|
+
export declare type QueryJira_SuggestionsByContextArgs = {
|
|
96114
|
+
input: JiraSuggestionsByContextInput;
|
|
96115
|
+
};
|
|
95314
96116
|
export declare type QueryJsmChannels_ConversationsByContainerAriArgs = {
|
|
95315
96117
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
95316
96118
|
containerAri: Scalars['ID']['input'];
|
|
@@ -95320,6 +96122,10 @@ export declare type QueryJsmChannels_ConversationsByContainerAriArgs = {
|
|
|
95320
96122
|
export declare type QueryJsmChannels_ConversationsByIdsArgs = {
|
|
95321
96123
|
ids: Array<Scalars['ID']['input']>;
|
|
95322
96124
|
};
|
|
96125
|
+
export declare type QueryJsmChannels_GetExperienceConfigurationByProjectIdArgs = {
|
|
96126
|
+
experience: JsmChannelsExperience;
|
|
96127
|
+
jiraProjectAri: Scalars['ID']['input'];
|
|
96128
|
+
};
|
|
95323
96129
|
export declare type QueryKnowledgeBaseArgs = {
|
|
95324
96130
|
cloudId: Scalars['ID']['input'];
|
|
95325
96131
|
};
|
|
@@ -95964,6 +96770,7 @@ export declare type QuerySpacePopularFeedArgs = {
|
|
|
95964
96770
|
};
|
|
95965
96771
|
export declare type QuerySpaceRoleAssignmentsByCriteriaArgs = {
|
|
95966
96772
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
96773
|
+
filterOutGroupTypes?: InputMaybe<Array<InputMaybe<ConfluenceGroupUsageType>>>;
|
|
95967
96774
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
95968
96775
|
principalTypes?: InputMaybe<Array<InputMaybe<PrincipalFilterType>>>;
|
|
95969
96776
|
spaceId: Scalars['Long']['input'];
|
|
@@ -98035,7 +98842,6 @@ export declare enum RoleAssignmentPrincipalType {
|
|
|
98035
98842
|
AccessClass = "ACCESS_CLASS",
|
|
98036
98843
|
App = "APP",
|
|
98037
98844
|
Group = "GROUP",
|
|
98038
|
-
Team = "TEAM",
|
|
98039
98845
|
User = "USER"
|
|
98040
98846
|
}
|
|
98041
98847
|
export declare type RunImportError = {
|
|
@@ -98216,8 +99022,11 @@ export declare enum Scope {
|
|
|
98216
99022
|
DeleteConfluenceBlogpost = "DELETE_CONFLUENCE_BLOGPOST",
|
|
98217
99023
|
DeleteConfluenceComment = "DELETE_CONFLUENCE_COMMENT",
|
|
98218
99024
|
DeleteConfluenceCustomContent = "DELETE_CONFLUENCE_CUSTOM_CONTENT",
|
|
99025
|
+
DeleteConfluenceDatabase = "DELETE_CONFLUENCE_DATABASE",
|
|
99026
|
+
DeleteConfluenceFolder = "DELETE_CONFLUENCE_FOLDER",
|
|
98219
99027
|
DeleteConfluencePage = "DELETE_CONFLUENCE_PAGE",
|
|
98220
99028
|
DeleteConfluenceSpace = "DELETE_CONFLUENCE_SPACE",
|
|
99029
|
+
DeleteConfluenceWhiteboard = "DELETE_CONFLUENCE_WHITEBOARD",
|
|
98221
99030
|
DeleteJswBoardScopeAdmin = "DELETE_JSW_BOARD_SCOPE_ADMIN",
|
|
98222
99031
|
DeleteJswSprint = "DELETE_JSW_SPRINT",
|
|
98223
99032
|
DeleteOrganization = "DELETE_ORGANIZATION",
|
|
@@ -98383,6 +99192,8 @@ export declare enum Scope {
|
|
|
98383
99192
|
ReadConfluenceContentProperty = "READ_CONFLUENCE_CONTENT_PROPERTY",
|
|
98384
99193
|
ReadConfluenceContentRestriction = "READ_CONFLUENCE_CONTENT_RESTRICTION",
|
|
98385
99194
|
ReadConfluenceCustomContent = "READ_CONFLUENCE_CUSTOM_CONTENT",
|
|
99195
|
+
ReadConfluenceDatabase = "READ_CONFLUENCE_DATABASE",
|
|
99196
|
+
ReadConfluenceFolder = "READ_CONFLUENCE_FOLDER",
|
|
98386
99197
|
ReadConfluenceGroup = "READ_CONFLUENCE_GROUP",
|
|
98387
99198
|
ReadConfluenceInlineTask = "READ_CONFLUENCE_INLINE_TASK",
|
|
98388
99199
|
ReadConfluenceLabel = "READ_CONFLUENCE_LABEL",
|
|
@@ -98396,6 +99207,7 @@ export declare enum Scope {
|
|
|
98396
99207
|
ReadConfluenceUser = "READ_CONFLUENCE_USER",
|
|
98397
99208
|
ReadConfluenceUserProperty = "READ_CONFLUENCE_USER_PROPERTY",
|
|
98398
99209
|
ReadConfluenceWatcher = "READ_CONFLUENCE_WATCHER",
|
|
99210
|
+
ReadConfluenceWhiteboard = "READ_CONFLUENCE_WHITEBOARD",
|
|
98399
99211
|
ReadContainer = "READ_CONTAINER",
|
|
98400
99212
|
ReadCustomer = "READ_CUSTOMER",
|
|
98401
99213
|
ReadDesign = "READ_DESIGN",
|
|
@@ -98491,6 +99303,8 @@ export declare enum Scope {
|
|
|
98491
99303
|
WriteConfluenceContentProperty = "WRITE_CONFLUENCE_CONTENT_PROPERTY",
|
|
98492
99304
|
WriteConfluenceContentRestriction = "WRITE_CONFLUENCE_CONTENT_RESTRICTION",
|
|
98493
99305
|
WriteConfluenceCustomContent = "WRITE_CONFLUENCE_CUSTOM_CONTENT",
|
|
99306
|
+
WriteConfluenceDatabase = "WRITE_CONFLUENCE_DATABASE",
|
|
99307
|
+
WriteConfluenceFolder = "WRITE_CONFLUENCE_FOLDER",
|
|
98494
99308
|
WriteConfluenceGroup = "WRITE_CONFLUENCE_GROUP",
|
|
98495
99309
|
WriteConfluenceInlineTask = "WRITE_CONFLUENCE_INLINE_TASK",
|
|
98496
99310
|
WriteConfluenceLabel = "WRITE_CONFLUENCE_LABEL",
|
|
@@ -98503,6 +99317,7 @@ export declare enum Scope {
|
|
|
98503
99317
|
WriteConfluenceTemplate = "WRITE_CONFLUENCE_TEMPLATE",
|
|
98504
99318
|
WriteConfluenceUserProperty = "WRITE_CONFLUENCE_USER_PROPERTY",
|
|
98505
99319
|
WriteConfluenceWatcher = "WRITE_CONFLUENCE_WATCHER",
|
|
99320
|
+
WriteConfluenceWhiteboard = "WRITE_CONFLUENCE_WHITEBOARD",
|
|
98506
99321
|
WriteContainer = "WRITE_CONTAINER",
|
|
98507
99322
|
WriteCustomer = "WRITE_CUSTOMER",
|
|
98508
99323
|
WriteDesign = "WRITE_DESIGN",
|
|
@@ -98907,6 +99722,7 @@ export declare type SearchQueryApiSearchArgs = {
|
|
|
98907
99722
|
experimentContext?: InputMaybe<SearchExperimentContextInput>;
|
|
98908
99723
|
filters: SearchFilterInput;
|
|
98909
99724
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
99725
|
+
includeBoostedLinks?: InputMaybe<Scalars['Boolean']['input']>;
|
|
98910
99726
|
interleaveResults?: InputMaybe<Scalars['Boolean']['input']>;
|
|
98911
99727
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
98912
99728
|
query?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -100694,6 +101510,7 @@ export declare type ShepherdQuery = {
|
|
|
100694
101510
|
classifications?: Maybe<ShepherdClassificationsQueries>;
|
|
100695
101511
|
enabledWorkspaceByUserContext?: Maybe<ShepherdEnabledWorkspaceByUserContext>;
|
|
100696
101512
|
exclusions?: Maybe<ShepherdExclusionsQueries>;
|
|
101513
|
+
serviceShardAppInfo?: Maybe<ShepherdServiceShardAppInfoResult>;
|
|
100697
101514
|
shepherdActivity?: Maybe<ShepherdActivityResult>;
|
|
100698
101515
|
shepherdActor?: Maybe<ShepherdActorResult>;
|
|
100699
101516
|
shepherdAlert?: Maybe<ShepherdAlertResult>;
|
|
@@ -100704,6 +101521,9 @@ export declare type ShepherdQuery = {
|
|
|
100704
101521
|
workspaceByOrgId?: Maybe<ShepherdWorkspaceByOrgId>;
|
|
100705
101522
|
workspacesByUserContext?: Maybe<ShepherdWorkspaceResult>;
|
|
100706
101523
|
};
|
|
101524
|
+
export declare type ShepherdQueryServiceShardAppInfoArgs = {
|
|
101525
|
+
workspaceAri: Scalars['ID']['input'];
|
|
101526
|
+
};
|
|
100707
101527
|
export declare type ShepherdQueryShepherdActivityArgs = {
|
|
100708
101528
|
actions?: InputMaybe<Array<InputMaybe<ShepherdActionType>>>;
|
|
100709
101529
|
actor?: InputMaybe<Scalars['ID']['input']>;
|
|
@@ -100926,6 +101746,14 @@ export declare type ShepherdSearchQuery = {
|
|
|
100926
101746
|
searchOrigin?: Maybe<ShepherdSearchOrigin>;
|
|
100927
101747
|
suspiciousSearchTerms?: Maybe<Array<ShepherdSuspiciousSearchTerm>>;
|
|
100928
101748
|
};
|
|
101749
|
+
export declare type ShepherdServiceShardAppInfo = {
|
|
101750
|
+
__typename?: 'ShepherdServiceShardAppInfo';
|
|
101751
|
+
apiVersion: Scalars['Int']['output'];
|
|
101752
|
+
commitHash?: Maybe<Scalars['String']['output']>;
|
|
101753
|
+
microsEnvironment: Scalars['String']['output'];
|
|
101754
|
+
workspaceAri: Scalars['ID']['output'];
|
|
101755
|
+
};
|
|
101756
|
+
export declare type ShepherdServiceShardAppInfoResult = QueryError | ShepherdServiceShardAppInfo;
|
|
100929
101757
|
export declare type ShepherdSite = {
|
|
100930
101758
|
__typename?: 'ShepherdSite';
|
|
100931
101759
|
cloudId: Scalars['ID']['output'];
|
|
@@ -102201,6 +103029,7 @@ export declare type SpaceRoleGroupPrincipal = SpaceRolePrincipal & {
|
|
|
102201
103029
|
__typename?: 'SpaceRoleGroupPrincipal';
|
|
102202
103030
|
displayName: Scalars['String']['output'];
|
|
102203
103031
|
principalId: Scalars['ID']['output'];
|
|
103032
|
+
usageType?: Maybe<ConfluenceGroupUsageType>;
|
|
102204
103033
|
};
|
|
102205
103034
|
export declare type SpaceRoleGuestPrincipal = SpaceRolePrincipal & {
|
|
102206
103035
|
__typename?: 'SpaceRoleGuestPrincipal';
|
|
@@ -103588,11 +104417,13 @@ export declare type Subscription = {
|
|
|
103588
104417
|
devai_onAutodevJobLogGroupsUpdated?: Maybe<DevAiAutodevLogGroupConnection>;
|
|
103589
104418
|
devai_onAutodevJobLogsListUpdated?: Maybe<DevAiAutodevLogConnection>;
|
|
103590
104419
|
devai_onAutodevJobLogsUpdated?: Maybe<DevAiAutodevLogEdge>;
|
|
104420
|
+
devai_onBoysenberrySessionCreatedByIssueKeyAndCloudId?: Maybe<DevAiRovoDevSession>;
|
|
103591
104421
|
devai_onBoysenberrySessionCreatedOnJiraIssue?: Maybe<DevAiRovoDevSessionConnection>;
|
|
103592
104422
|
devai_onBoysenberrySessionUpdated?: Maybe<DevAiRovoDevSession>;
|
|
103593
104423
|
devai_onTechnicalPlannerJobUpdated?: Maybe<DevAiTechnicalPlannerJob>;
|
|
103594
104424
|
ecosystem?: Maybe<EcosystemSubscription>;
|
|
103595
104425
|
jira?: Maybe<JiraSubscription>;
|
|
104426
|
+
jiraProductDiscovery?: Maybe<JpdSubscriptions>;
|
|
103596
104427
|
jsmChat?: Maybe<JsmChatSubscription>;
|
|
103597
104428
|
mercury?: Maybe<MercurySubscriptionApi>;
|
|
103598
104429
|
migration: MigrationSubscription;
|
|
@@ -103617,8 +104448,14 @@ export declare type SubscriptionDevai_OnAutodevJobLogsUpdatedArgs = {
|
|
|
103617
104448
|
cloudId: Scalars['ID']['input'];
|
|
103618
104449
|
jobId: Scalars['ID']['input'];
|
|
103619
104450
|
};
|
|
104451
|
+
export declare type SubscriptionDevai_OnBoysenberrySessionCreatedByIssueKeyAndCloudIdArgs = {
|
|
104452
|
+
cloudId: Scalars['ID']['input'];
|
|
104453
|
+
issueKey: Scalars['String']['input'];
|
|
104454
|
+
};
|
|
103620
104455
|
export declare type SubscriptionDevai_OnBoysenberrySessionCreatedOnJiraIssueArgs = {
|
|
104456
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
103621
104457
|
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
104458
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
103622
104459
|
issueKey?: InputMaybe<Scalars['String']['input']>;
|
|
103623
104460
|
};
|
|
103624
104461
|
export declare type SubscriptionDevai_OnBoysenberrySessionUpdatedArgs = {
|
|
@@ -104306,6 +105143,11 @@ export declare type TeamMutationUpdateRoleAssignmentsArgs = {
|
|
|
104306
105143
|
principalsToRemove: Array<InputMaybe<Scalars['ID']['input']>>;
|
|
104307
105144
|
role: TeamRole;
|
|
104308
105145
|
};
|
|
105146
|
+
export declare enum TeamPermission {
|
|
105147
|
+
FullRead = "FULL_READ",
|
|
105148
|
+
FullWrite = "FULL_WRITE",
|
|
105149
|
+
None = "NONE"
|
|
105150
|
+
}
|
|
104309
105151
|
export declare type TeamPrincipal = {
|
|
104310
105152
|
__typename?: 'TeamPrincipal';
|
|
104311
105153
|
principalId?: Maybe<Scalars['ID']['output']>;
|
|
@@ -104447,6 +105289,7 @@ export declare type TeamV2 = Node & {
|
|
|
104447
105289
|
members?: Maybe<TeamMemberConnectionV2>;
|
|
104448
105290
|
membershipSettings?: Maybe<TeamMembershipSettings>;
|
|
104449
105291
|
organizationId?: Maybe<Scalars['ID']['output']>;
|
|
105292
|
+
permission?: Maybe<TeamPermission>;
|
|
104450
105293
|
profileUrl?: Maybe<Scalars['String']['output']>;
|
|
104451
105294
|
smallAvatarImageUrl?: Maybe<Scalars['String']['output']>;
|
|
104452
105295
|
smallHeaderImageUrl?: Maybe<Scalars['String']['output']>;
|
|
@@ -105168,6 +106011,16 @@ export declare type TownsquareCreateRelationshipsPayload = {
|
|
|
105168
106011
|
relationships?: Maybe<Array<TownsquareRelationship>>;
|
|
105169
106012
|
success: Scalars['Boolean']['output'];
|
|
105170
106013
|
};
|
|
106014
|
+
export declare type TownsquareCreateTagInput = {
|
|
106015
|
+
containerId: Scalars['ID']['input'];
|
|
106016
|
+
name: Scalars['String']['input'];
|
|
106017
|
+
};
|
|
106018
|
+
export declare type TownsquareCreateTagPayload = {
|
|
106019
|
+
__typename?: 'TownsquareCreateTagPayload';
|
|
106020
|
+
errors?: Maybe<Array<MutationError>>;
|
|
106021
|
+
success: Scalars['Boolean']['output'];
|
|
106022
|
+
tag?: Maybe<TownsquareTag>;
|
|
106023
|
+
};
|
|
105171
106024
|
export declare type TownsquareDecision = TownsquareHighlight & {
|
|
105172
106025
|
__typename?: 'TownsquareDecision';
|
|
105173
106026
|
creationDate?: Maybe<Scalars['DateTime']['output']>;
|
|
@@ -107000,7 +107853,7 @@ export declare type TrelloApplication = {
|
|
|
107000
107853
|
objectId: Scalars['ID']['output'];
|
|
107001
107854
|
privacyUrl?: Maybe<Scalars['URL']['output']>;
|
|
107002
107855
|
public?: Maybe<Scalars['Boolean']['output']>;
|
|
107003
|
-
|
|
107856
|
+
supportContact?: Maybe<Scalars['String']['output']>;
|
|
107004
107857
|
tags?: Maybe<Array<Scalars['String']['output']>>;
|
|
107005
107858
|
usage?: Maybe<TrelloApplicationUsage>;
|
|
107006
107859
|
workspaceId?: Maybe<Scalars['ID']['output']>;
|
|
@@ -107127,6 +107980,10 @@ export declare type TrelloAttachmentUpdated = {
|
|
|
107127
107980
|
__typename?: 'TrelloAttachmentUpdated';
|
|
107128
107981
|
id: Scalars['ID']['output'];
|
|
107129
107982
|
};
|
|
107983
|
+
export declare type TrelloBaseBoardPrefs = {
|
|
107984
|
+
autoArchive?: Maybe<Scalars['Boolean']['output']>;
|
|
107985
|
+
background?: Maybe<TrelloBoardBackground>;
|
|
107986
|
+
};
|
|
107130
107987
|
export declare type TrelloBoard = Node & {
|
|
107131
107988
|
__typename?: 'TrelloBoard';
|
|
107132
107989
|
closed: Scalars['Boolean']['output'];
|
|
@@ -107335,7 +108192,7 @@ export declare type TrelloBoardPowerUpEdgeUpdated = {
|
|
|
107335
108192
|
export declare type TrelloBoardPowerUpFilterInput = {
|
|
107336
108193
|
access?: InputMaybe<Scalars['String']['input']>;
|
|
107337
108194
|
};
|
|
107338
|
-
export declare type TrelloBoardPrefs = {
|
|
108195
|
+
export declare type TrelloBoardPrefs = TrelloBaseBoardPrefs & {
|
|
107339
108196
|
__typename?: 'TrelloBoardPrefs';
|
|
107340
108197
|
autoArchive?: Maybe<Scalars['Boolean']['output']>;
|
|
107341
108198
|
background?: Maybe<TrelloBoardBackground>;
|
|
@@ -107406,6 +108263,7 @@ export declare type TrelloBoardUpdatedEdge = {
|
|
|
107406
108263
|
};
|
|
107407
108264
|
export declare type TrelloBoardViewer = {
|
|
107408
108265
|
__typename?: 'TrelloBoardViewer';
|
|
108266
|
+
aiBrowserExtensionEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
107409
108267
|
aiEmailEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
107410
108268
|
aiMSTeamsEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
107411
108269
|
aiSlackEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -108455,14 +109313,21 @@ export declare type TrelloInboxCardChecklistsArgs = {
|
|
|
108455
109313
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
108456
109314
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
108457
109315
|
};
|
|
108458
|
-
export declare type TrelloInboxPrefs = {
|
|
109316
|
+
export declare type TrelloInboxPrefs = TrelloBaseBoardPrefs & {
|
|
108459
109317
|
__typename?: 'TrelloInboxPrefs';
|
|
108460
109318
|
autoArchive?: Maybe<Scalars['Boolean']['output']>;
|
|
108461
109319
|
background?: Maybe<TrelloBoardBackground>;
|
|
108462
109320
|
};
|
|
108463
109321
|
export declare type TrelloInboxUpdated = {
|
|
108464
109322
|
__typename?: 'TrelloInboxUpdated';
|
|
109323
|
+
_deltas?: Maybe<Array<Scalars['String']['output']>>;
|
|
108465
109324
|
board: TrelloBoardUpdated;
|
|
109325
|
+
enterprise?: Maybe<TrelloEnterprise>;
|
|
109326
|
+
id?: Maybe<Scalars['ID']['output']>;
|
|
109327
|
+
lists?: Maybe<TrelloListUpdatedConnection>;
|
|
109328
|
+
objectId?: Maybe<Scalars['ID']['output']>;
|
|
109329
|
+
prefs?: Maybe<TrelloInboxPrefs>;
|
|
109330
|
+
workspace?: Maybe<TrelloBoardWorkspaceUpdated>;
|
|
108466
109331
|
};
|
|
108467
109332
|
export declare type TrelloJwmWorkspaceLink = {
|
|
108468
109333
|
__typename?: 'TrelloJwmWorkspaceLink';
|
|
@@ -108831,8 +109696,10 @@ export declare type TrelloMutationApi = {
|
|
|
108831
109696
|
unarchiveCard?: Maybe<TrelloUnarchiveCardPayload>;
|
|
108832
109697
|
unwatchCard?: Maybe<TrelloWatchCardPayload>;
|
|
108833
109698
|
updateAiRule?: Maybe<TrelloUpdateAiRulePayload>;
|
|
109699
|
+
updateApplicationBasicInformation?: Maybe<TrelloUpdateApplicationBasicInformationPayload>;
|
|
108834
109700
|
updateBoardIsTemplate?: Maybe<TrelloUpdateBoardIsTemplatePayload>;
|
|
108835
109701
|
updateBoardName?: Maybe<TrelloUpdateBoardNamePayload>;
|
|
109702
|
+
updateBoardViewerAIBrowserExtension?: Maybe<TrelloUpdateBoardViewerAiBrowserExtensionPayload>;
|
|
108836
109703
|
updateBoardViewerAIEmail?: Maybe<TrelloUpdateBoardViewerAiEmailPayload>;
|
|
108837
109704
|
updateBoardViewerAIMSTeams?: Maybe<TrelloUpdateBoardViewerAimsTeamsPayload>;
|
|
108838
109705
|
updateBoardViewerAISlack?: Maybe<TrelloUpdateBoardViewerAiSlackPayload>;
|
|
@@ -108842,6 +109709,7 @@ export declare type TrelloMutationApi = {
|
|
|
108842
109709
|
updateCardPositionOnPlannerCalendarEvent?: Maybe<TrelloUpdateCardPositionOnPlannerCalendarEventPayload>;
|
|
108843
109710
|
updateKeyboardShortcutsPref?: Maybe<TrelloUpdateKeyboardShortcutsPrefPayload>;
|
|
108844
109711
|
updateOAuth2Client?: Maybe<TrelloUpdateOAuth2ClientPayload>;
|
|
109712
|
+
updateWorkspaceTag?: Maybe<TrelloUpdateWorkspaceTagPayload>;
|
|
108845
109713
|
watchCard?: Maybe<TrelloWatchCardPayload>;
|
|
108846
109714
|
};
|
|
108847
109715
|
export declare type TrelloMutationApiAddBoardStarArgs = {
|
|
@@ -108919,12 +109787,18 @@ export declare type TrelloMutationApiUnwatchCardArgs = {
|
|
|
108919
109787
|
export declare type TrelloMutationApiUpdateAiRuleArgs = {
|
|
108920
109788
|
input: TrelloUpdateAiRuleInput;
|
|
108921
109789
|
};
|
|
109790
|
+
export declare type TrelloMutationApiUpdateApplicationBasicInformationArgs = {
|
|
109791
|
+
input: TrelloUpdateApplicationBasicInformationInput;
|
|
109792
|
+
};
|
|
108922
109793
|
export declare type TrelloMutationApiUpdateBoardIsTemplateArgs = {
|
|
108923
109794
|
input: TrelloUpdateBoardIsTemplateInput;
|
|
108924
109795
|
};
|
|
108925
109796
|
export declare type TrelloMutationApiUpdateBoardNameArgs = {
|
|
108926
109797
|
input: TrelloUpdateBoardNameInput;
|
|
108927
109798
|
};
|
|
109799
|
+
export declare type TrelloMutationApiUpdateBoardViewerAiBrowserExtensionArgs = {
|
|
109800
|
+
input: TrelloUpdateBoardViewerAiBrowserExtensionInput;
|
|
109801
|
+
};
|
|
108928
109802
|
export declare type TrelloMutationApiUpdateBoardViewerAiEmailArgs = {
|
|
108929
109803
|
input: TrelloUpdateBoardViewerAiEmailInput;
|
|
108930
109804
|
};
|
|
@@ -108952,6 +109826,9 @@ export declare type TrelloMutationApiUpdateKeyboardShortcutsPrefArgs = {
|
|
|
108952
109826
|
export declare type TrelloMutationApiUpdateOAuth2ClientArgs = {
|
|
108953
109827
|
input: TrelloUpdateOAuth2ClientInput;
|
|
108954
109828
|
};
|
|
109829
|
+
export declare type TrelloMutationApiUpdateWorkspaceTagArgs = {
|
|
109830
|
+
input: TrelloUpdateWorkspaceTagInput;
|
|
109831
|
+
};
|
|
108955
109832
|
export declare type TrelloMutationApiWatchCardArgs = {
|
|
108956
109833
|
input: TrelloWatchCardInput;
|
|
108957
109834
|
};
|
|
@@ -109434,6 +110311,7 @@ export declare type TrelloQueryApi = {
|
|
|
109434
110311
|
boardMirrorCardInfo?: Maybe<TrelloBoardMirrorCards>;
|
|
109435
110312
|
card?: Maybe<TrelloCard>;
|
|
109436
110313
|
cardBatch?: Maybe<TrelloCardBatch>;
|
|
110314
|
+
cardByShortLink?: Maybe<TrelloCard>;
|
|
109437
110315
|
echo?: Maybe<Scalars['String']['output']>;
|
|
109438
110316
|
echos?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
|
|
109439
110317
|
enabledPlannerCalendarsByAccountId?: Maybe<TrelloPlannerCalendarConnection>;
|
|
@@ -109482,6 +110360,9 @@ export declare type TrelloQueryApiCardArgs = {
|
|
|
109482
110360
|
export declare type TrelloQueryApiCardBatchArgs = {
|
|
109483
110361
|
id: Scalars['ID']['input'];
|
|
109484
110362
|
};
|
|
110363
|
+
export declare type TrelloQueryApiCardByShortLinkArgs = {
|
|
110364
|
+
shortLink: Scalars['TrelloShortLink']['input'];
|
|
110365
|
+
};
|
|
109485
110366
|
export declare type TrelloQueryApiEchosArgs = {
|
|
109486
110367
|
echo: Array<Scalars['String']['input']>;
|
|
109487
110368
|
};
|
|
@@ -109811,6 +110692,21 @@ export declare type TrelloUpdateAiRulePayload = Payload & {
|
|
|
109811
110692
|
errors?: Maybe<Array<MutationError>>;
|
|
109812
110693
|
success: Scalars['Boolean']['output'];
|
|
109813
110694
|
};
|
|
110695
|
+
export declare type TrelloUpdateApplicationBasicInformationInput = {
|
|
110696
|
+
author?: InputMaybe<Scalars['String']['input']>;
|
|
110697
|
+
categories?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
110698
|
+
email?: InputMaybe<Scalars['String']['input']>;
|
|
110699
|
+
icon?: InputMaybe<Scalars['String']['input']>;
|
|
110700
|
+
id: Scalars['ID']['input'];
|
|
110701
|
+
iframeConnectorUrl?: InputMaybe<Scalars['String']['input']>;
|
|
110702
|
+
supportContact?: InputMaybe<Scalars['String']['input']>;
|
|
110703
|
+
};
|
|
110704
|
+
export declare type TrelloUpdateApplicationBasicInformationPayload = Payload & {
|
|
110705
|
+
__typename?: 'TrelloUpdateApplicationBasicInformationPayload';
|
|
110706
|
+
application?: Maybe<TrelloApplication>;
|
|
110707
|
+
errors?: Maybe<Array<MutationError>>;
|
|
110708
|
+
success: Scalars['Boolean']['output'];
|
|
110709
|
+
};
|
|
109814
110710
|
export declare type TrelloUpdateBoardIsTemplateInput = {
|
|
109815
110711
|
boardId: Scalars['ID']['input'];
|
|
109816
110712
|
value: Scalars['Boolean']['input'];
|
|
@@ -109831,6 +110727,16 @@ export declare type TrelloUpdateBoardNamePayload = Payload & {
|
|
|
109831
110727
|
errors?: Maybe<Array<MutationError>>;
|
|
109832
110728
|
success: Scalars['Boolean']['output'];
|
|
109833
110729
|
};
|
|
110730
|
+
export declare type TrelloUpdateBoardViewerAiBrowserExtensionInput = {
|
|
110731
|
+
boardId: Scalars['ID']['input'];
|
|
110732
|
+
value: Scalars['Boolean']['input'];
|
|
110733
|
+
};
|
|
110734
|
+
export declare type TrelloUpdateBoardViewerAiBrowserExtensionPayload = Payload & {
|
|
110735
|
+
__typename?: 'TrelloUpdateBoardViewerAIBrowserExtensionPayload';
|
|
110736
|
+
errors?: Maybe<Array<MutationError>>;
|
|
110737
|
+
success: Scalars['Boolean']['output'];
|
|
110738
|
+
viewer?: Maybe<TrelloBoardViewer>;
|
|
110739
|
+
};
|
|
109834
110740
|
export declare type TrelloUpdateBoardViewerAiEmailInput = {
|
|
109835
110741
|
boardId: Scalars['ID']['input'];
|
|
109836
110742
|
value: Scalars['Boolean']['input'];
|
|
@@ -110035,6 +110941,17 @@ export declare type TrelloUpdateOAuth2ClientPayload = Payload & {
|
|
|
110035
110941
|
scopes?: Maybe<Array<Scalars['String']['output']>>;
|
|
110036
110942
|
success: Scalars['Boolean']['output'];
|
|
110037
110943
|
};
|
|
110944
|
+
export declare type TrelloUpdateWorkspaceTagInput = {
|
|
110945
|
+
name: Scalars['String']['input'];
|
|
110946
|
+
tagId: Scalars['ID']['input'];
|
|
110947
|
+
workspaceId: Scalars['ID']['input'];
|
|
110948
|
+
};
|
|
110949
|
+
export declare type TrelloUpdateWorkspaceTagPayload = Payload & {
|
|
110950
|
+
__typename?: 'TrelloUpdateWorkspaceTagPayload';
|
|
110951
|
+
errors?: Maybe<Array<MutationError>>;
|
|
110952
|
+
success: Scalars['Boolean']['output'];
|
|
110953
|
+
workspace?: Maybe<TrelloWorkspace>;
|
|
110954
|
+
};
|
|
110038
110955
|
export declare type TrelloUploadedBackground = {
|
|
110039
110956
|
__typename?: 'TrelloUploadedBackground';
|
|
110040
110957
|
objectId: Scalars['ID']['output'];
|