@forge/cli-shared 8.6.0-next.1 → 8.6.0
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 +21 -0
- package/out/graphql/graphql-types.d.ts +685 -39
- package/out/graphql/graphql-types.d.ts.map +1 -1
- package/out/graphql/graphql-types.js +56 -39
- package/package.json +2 -2
|
@@ -2162,7 +2162,10 @@ export declare type AgentAiSummary = {
|
|
|
2162
2162
|
export declare type AgentStudioAction = {
|
|
2163
2163
|
__typename?: 'AgentStudioAction';
|
|
2164
2164
|
actionKey: Scalars['String']['output'];
|
|
2165
|
+
definitionSource?: Maybe<AgentStudioToolDefinitionSource>;
|
|
2165
2166
|
description?: Maybe<Scalars['String']['output']>;
|
|
2167
|
+
iconUrl?: Maybe<Scalars['String']['output']>;
|
|
2168
|
+
integrationKey?: Maybe<Scalars['String']['output']>;
|
|
2166
2169
|
name?: Maybe<Scalars['String']['output']>;
|
|
2167
2170
|
tags?: Maybe<Array<Scalars['String']['output']>>;
|
|
2168
2171
|
};
|
|
@@ -2206,6 +2209,7 @@ export declare type AgentStudioAddGroupsToCreatePermissionPayload = Payload & {
|
|
|
2206
2209
|
success: Scalars['Boolean']['output'];
|
|
2207
2210
|
};
|
|
2208
2211
|
export declare type AgentStudioAgent = {
|
|
2212
|
+
authoringTeam?: Maybe<TeamV2>;
|
|
2209
2213
|
connectedChannels?: Maybe<AgentStudioConnectedChannels>;
|
|
2210
2214
|
description?: Maybe<Scalars['String']['output']>;
|
|
2211
2215
|
etag?: Maybe<Scalars['String']['output']>;
|
|
@@ -2241,6 +2245,7 @@ export declare type AgentStudioAgentPermissions = {
|
|
|
2241
2245
|
canArchive: Scalars['Boolean']['output'];
|
|
2242
2246
|
canDelete: Scalars['Boolean']['output'];
|
|
2243
2247
|
canEdit: Scalars['Boolean']['output'];
|
|
2248
|
+
canManage: Scalars['Boolean']['output'];
|
|
2244
2249
|
};
|
|
2245
2250
|
export declare type AgentStudioAgentQueryInput = {
|
|
2246
2251
|
name?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -2266,6 +2271,7 @@ export declare type AgentStudioAgentsConnection = {
|
|
|
2266
2271
|
export declare type AgentStudioAssistant = AgentStudioAgent & Node & {
|
|
2267
2272
|
__typename?: 'AgentStudioAssistant';
|
|
2268
2273
|
actions?: Maybe<AgentStudioActionConfiguration>;
|
|
2274
|
+
authoringTeam?: Maybe<TeamV2>;
|
|
2269
2275
|
behaviour?: Maybe<Scalars['String']['output']>;
|
|
2270
2276
|
connectedChannels?: Maybe<AgentStudioConnectedChannels>;
|
|
2271
2277
|
conversationStarters?: Maybe<Array<Scalars['String']['output']>>;
|
|
@@ -2296,9 +2302,13 @@ export declare type AgentStudioAssistantScenario = AgentStudioScenario & Node &
|
|
|
2296
2302
|
isDefault: Scalars['Boolean']['output'];
|
|
2297
2303
|
isValid: AgentStudioScenarioValidation;
|
|
2298
2304
|
knowledgeSources?: Maybe<AgentStudioKnowledgeConfiguration>;
|
|
2305
|
+
mcpServers?: Maybe<Array<Maybe<GraphIntegrationMcpServerNode>>>;
|
|
2299
2306
|
name: Scalars['String']['output'];
|
|
2300
2307
|
tools?: Maybe<Array<AgentStudioTool>>;
|
|
2301
2308
|
};
|
|
2309
|
+
export declare type AgentStudioAuthoringTeamInput = {
|
|
2310
|
+
authoringTeamID?: InputMaybe<Scalars['String']['input']>;
|
|
2311
|
+
};
|
|
2302
2312
|
export declare type AgentStudioChannel = {
|
|
2303
2313
|
connected?: Maybe<Scalars['Boolean']['output']>;
|
|
2304
2314
|
};
|
|
@@ -2326,6 +2336,7 @@ export declare type AgentStudioConversationStarterSuggestions = {
|
|
|
2326
2336
|
export declare type AgentStudioCreateAgentInput = {
|
|
2327
2337
|
actions?: InputMaybe<AgentStudioActionConfigurationInput>;
|
|
2328
2338
|
agentType: AgentStudioAgentType;
|
|
2339
|
+
authoringTeam?: InputMaybe<AgentStudioAuthoringTeamInput>;
|
|
2329
2340
|
behaviour?: InputMaybe<Scalars['String']['input']>;
|
|
2330
2341
|
conversationStarters?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
2331
2342
|
defaultJiraRequestTypeId?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -2463,6 +2474,7 @@ export declare type AgentStudioScenario = {
|
|
|
2463
2474
|
isDefault: Scalars['Boolean']['output'];
|
|
2464
2475
|
isValid: AgentStudioScenarioValidation;
|
|
2465
2476
|
knowledgeSources?: Maybe<AgentStudioKnowledgeConfiguration>;
|
|
2477
|
+
mcpServers?: Maybe<Array<Maybe<GraphIntegrationMcpServerNode>>>;
|
|
2466
2478
|
name: Scalars['String']['output'];
|
|
2467
2479
|
tools?: Maybe<Array<AgentStudioTool>>;
|
|
2468
2480
|
};
|
|
@@ -2529,6 +2541,7 @@ export declare type AgentStudioScenariosResult = {
|
|
|
2529
2541
|
};
|
|
2530
2542
|
export declare type AgentStudioServiceAgent = AgentStudioAgent & Node & {
|
|
2531
2543
|
__typename?: 'AgentStudioServiceAgent';
|
|
2544
|
+
authoringTeam?: Maybe<TeamV2>;
|
|
2532
2545
|
connectedChannels?: Maybe<AgentStudioConnectedChannels>;
|
|
2533
2546
|
defaultJiraRequestTypeId?: Maybe<Scalars['String']['output']>;
|
|
2534
2547
|
description?: Maybe<Scalars['String']['output']>;
|
|
@@ -2609,6 +2622,10 @@ export declare type AgentStudioToolEdge = {
|
|
|
2609
2622
|
cursor: Scalars['String']['output'];
|
|
2610
2623
|
node?: Maybe<AgentStudioTool>;
|
|
2611
2624
|
};
|
|
2625
|
+
export declare type AgentStudioToolIdAndSource = {
|
|
2626
|
+
definitionSource: AgentStudioToolDefinitionSource;
|
|
2627
|
+
toolId: Scalars['String']['input'];
|
|
2628
|
+
};
|
|
2612
2629
|
export declare type AgentStudioToolInput = {
|
|
2613
2630
|
definitionId: Scalars['String']['input'];
|
|
2614
2631
|
definitionSource: AgentStudioToolDefinitionSource;
|
|
@@ -2649,6 +2666,7 @@ export declare type AgentStudioUpdateAgentAsFavouritePayload = Payload & {
|
|
|
2649
2666
|
success: Scalars['Boolean']['output'];
|
|
2650
2667
|
};
|
|
2651
2668
|
export declare type AgentStudioUpdateAgentDetailsInput = {
|
|
2669
|
+
authoringTeam?: InputMaybe<AgentStudioAuthoringTeamInput>;
|
|
2652
2670
|
behaviour?: InputMaybe<Scalars['String']['input']>;
|
|
2653
2671
|
creatorId?: InputMaybe<Scalars['ID']['input']>;
|
|
2654
2672
|
defaultJiraRequestTypeId?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -8129,6 +8147,9 @@ export declare enum ChannelPlatformChannelType {
|
|
|
8129
8147
|
Ticket = "TICKET",
|
|
8130
8148
|
Voice = "VOICE"
|
|
8131
8149
|
}
|
|
8150
|
+
export declare type ChannelPlatformChatRequestDetailsRequest = {
|
|
8151
|
+
conversationId?: InputMaybe<Scalars['String']['input']>;
|
|
8152
|
+
};
|
|
8132
8153
|
export declare type ChannelPlatformConnectDetails = {
|
|
8133
8154
|
__typename?: 'ChannelPlatformConnectDetails';
|
|
8134
8155
|
instanceCcpUrl?: Maybe<Scalars['String']['output']>;
|
|
@@ -8185,6 +8206,10 @@ export declare type ChannelPlatformGetChannelTokenResponse = {
|
|
|
8185
8206
|
participantToken?: Maybe<Scalars['String']['output']>;
|
|
8186
8207
|
region?: Maybe<Scalars['String']['output']>;
|
|
8187
8208
|
};
|
|
8209
|
+
export declare type ChannelPlatformGetContactIdResponse = {
|
|
8210
|
+
__typename?: 'ChannelPlatformGetContactIdResponse';
|
|
8211
|
+
conversationId?: Maybe<Scalars['String']['output']>;
|
|
8212
|
+
};
|
|
8188
8213
|
export declare type ChannelPlatformListQuickResponsesResult = {
|
|
8189
8214
|
__typename?: 'ChannelPlatformListQuickResponsesResult';
|
|
8190
8215
|
nextToken?: Maybe<Scalars['String']['output']>;
|
|
@@ -14343,12 +14368,84 @@ export declare type ConfluenceBulkPdfExportContent = {
|
|
|
14343
14368
|
contentId: Scalars['ID']['input'];
|
|
14344
14369
|
excludedChildrenIds?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
|
|
14345
14370
|
};
|
|
14371
|
+
export declare type ConfluenceCalendar = {
|
|
14372
|
+
__typename?: 'ConfluenceCalendar';
|
|
14373
|
+
childCalendarIds?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
|
|
14374
|
+
childCalendars?: Maybe<ConfluenceCalendarConnection>;
|
|
14375
|
+
color?: Maybe<Scalars['String']['output']>;
|
|
14376
|
+
creator?: Maybe<Scalars['String']['output']>;
|
|
14377
|
+
customEventTypes: Array<Maybe<ConfluenceCalendarCustomEventType>>;
|
|
14378
|
+
description?: Maybe<Scalars['String']['output']>;
|
|
14379
|
+
disableEventTypes: Array<Maybe<Scalars['String']['output']>>;
|
|
14380
|
+
eventTypeReminders: Array<Maybe<ConfluenceCalendarEventTypeReminder>>;
|
|
14381
|
+
groupsPermittedToEdit: Array<Maybe<Group>>;
|
|
14382
|
+
groupsPermittedToView: Array<Maybe<Group>>;
|
|
14383
|
+
id: Scalars['ID']['output'];
|
|
14384
|
+
jiraProperties?: Maybe<ConfluenceCalendarJiraProperties>;
|
|
14385
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
14386
|
+
parentId?: Maybe<Scalars['ID']['output']>;
|
|
14387
|
+
remindMe?: Maybe<Scalars['Boolean']['output']>;
|
|
14388
|
+
restriction?: Maybe<ConfluenceCalendarRestriction>;
|
|
14389
|
+
sourceLocation?: Maybe<Scalars['String']['output']>;
|
|
14390
|
+
spaceKey?: Maybe<Scalars['String']['output']>;
|
|
14391
|
+
spaceName?: Maybe<Scalars['String']['output']>;
|
|
14392
|
+
subscriptionInfo?: Maybe<ConfluenceCalendarSubscriptionInfo>;
|
|
14393
|
+
subscriptionType?: Maybe<Scalars['String']['output']>;
|
|
14394
|
+
timeZoneId?: Maybe<Scalars['String']['output']>;
|
|
14395
|
+
type?: Maybe<Scalars['String']['output']>;
|
|
14396
|
+
userIdsPermittedToEdit: Array<Maybe<Scalars['String']['output']>>;
|
|
14397
|
+
userIdsPermittedToView: Array<Maybe<Scalars['String']['output']>>;
|
|
14398
|
+
usersPermittedToEdit?: Maybe<Array<Maybe<Person>>>;
|
|
14399
|
+
usersPermittedToView?: Maybe<Array<Maybe<Person>>>;
|
|
14400
|
+
warnings?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
|
|
14401
|
+
};
|
|
14402
|
+
export declare type ConfluenceCalendarConnection = {
|
|
14403
|
+
__typename?: 'ConfluenceCalendarConnection';
|
|
14404
|
+
count?: Maybe<Scalars['Int']['output']>;
|
|
14405
|
+
edges?: Maybe<Array<Maybe<ConfluenceCalendarEdge>>>;
|
|
14406
|
+
links?: Maybe<LinksContextBase>;
|
|
14407
|
+
nodes?: Maybe<Array<Maybe<ConfluenceCalendar>>>;
|
|
14408
|
+
pageInfo?: Maybe<PageInfo>;
|
|
14409
|
+
};
|
|
14410
|
+
export declare type ConfluenceCalendarCustomEventType = {
|
|
14411
|
+
__typename?: 'ConfluenceCalendarCustomEventType';
|
|
14412
|
+
calendarId?: Maybe<Scalars['ID']['output']>;
|
|
14413
|
+
created?: Maybe<Scalars['String']['output']>;
|
|
14414
|
+
icon?: Maybe<Scalars['String']['output']>;
|
|
14415
|
+
id: Scalars['ID']['output'];
|
|
14416
|
+
periodInMins: Scalars['Int']['output'];
|
|
14417
|
+
title?: Maybe<Scalars['String']['output']>;
|
|
14418
|
+
};
|
|
14419
|
+
export declare type ConfluenceCalendarEdge = {
|
|
14420
|
+
__typename?: 'ConfluenceCalendarEdge';
|
|
14421
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
14422
|
+
node?: Maybe<ConfluenceCalendar>;
|
|
14423
|
+
};
|
|
14424
|
+
export declare type ConfluenceCalendarEventTypeReminder = {
|
|
14425
|
+
__typename?: 'ConfluenceCalendarEventTypeReminder';
|
|
14426
|
+
customEventType: Scalars['Boolean']['output'];
|
|
14427
|
+
id: Scalars['ID']['output'];
|
|
14428
|
+
isCustomEventType: Scalars['Boolean']['output'];
|
|
14429
|
+
periodInMins: Scalars['Int']['output'];
|
|
14430
|
+
};
|
|
14346
14431
|
export declare type ConfluenceCalendarJiraDateField = {
|
|
14347
14432
|
__typename?: 'ConfluenceCalendarJiraDateField';
|
|
14348
14433
|
isCustomField: Scalars['Boolean']['output'];
|
|
14349
14434
|
key: Scalars['String']['output'];
|
|
14350
14435
|
name: Scalars['String']['output'];
|
|
14351
14436
|
};
|
|
14437
|
+
export declare type ConfluenceCalendarJiraProperties = {
|
|
14438
|
+
__typename?: 'ConfluenceCalendarJiraProperties';
|
|
14439
|
+
applicationId?: Maybe<Scalars['ID']['output']>;
|
|
14440
|
+
applicationName?: Maybe<Scalars['String']['output']>;
|
|
14441
|
+
dateFieldNames: Array<Maybe<Scalars['String']['output']>>;
|
|
14442
|
+
durations: Array<Maybe<ConfluenceJiraCalendarDuration>>;
|
|
14443
|
+
jql?: Maybe<Scalars['String']['output']>;
|
|
14444
|
+
projectKey?: Maybe<Scalars['String']['output']>;
|
|
14445
|
+
projectName?: Maybe<Scalars['String']['output']>;
|
|
14446
|
+
searchFilterId?: Maybe<Scalars['Long']['output']>;
|
|
14447
|
+
searchFilterName?: Maybe<Scalars['String']['output']>;
|
|
14448
|
+
};
|
|
14352
14449
|
export declare type ConfluenceCalendarJqlValidationResult = {
|
|
14353
14450
|
__typename?: 'ConfluenceCalendarJqlValidationResult';
|
|
14354
14451
|
errorMessages?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
|
|
@@ -14371,6 +14468,21 @@ export declare type ConfluenceCalendarPreference = {
|
|
|
14371
14468
|
view: Scalars['String']['output'];
|
|
14372
14469
|
watchedSubCalendars?: Maybe<Array<Maybe<Scalars['ID']['output']>>>;
|
|
14373
14470
|
};
|
|
14471
|
+
export declare type ConfluenceCalendarRestriction = {
|
|
14472
|
+
__typename?: 'ConfluenceCalendarRestriction';
|
|
14473
|
+
administrable: Scalars['Boolean']['output'];
|
|
14474
|
+
deletable: Scalars['Boolean']['output'];
|
|
14475
|
+
editable: Scalars['Boolean']['output'];
|
|
14476
|
+
eventsEditable: Scalars['Boolean']['output'];
|
|
14477
|
+
eventsHidden: Scalars['Boolean']['output'];
|
|
14478
|
+
eventsViewable: Scalars['Boolean']['output'];
|
|
14479
|
+
reloadable: Scalars['Boolean']['output'];
|
|
14480
|
+
};
|
|
14481
|
+
export declare type ConfluenceCalendarSubscriptionInfo = {
|
|
14482
|
+
__typename?: 'ConfluenceCalendarSubscriptionInfo';
|
|
14483
|
+
subscribedByCurrentUser: Scalars['Boolean']['output'];
|
|
14484
|
+
subscriberCount?: Maybe<Scalars['Int']['output']>;
|
|
14485
|
+
};
|
|
14374
14486
|
export declare type ConfluenceCalendarTimeZone = {
|
|
14375
14487
|
__typename?: 'ConfluenceCalendarTimeZone';
|
|
14376
14488
|
name?: Maybe<Scalars['String']['output']>;
|
|
@@ -15777,6 +15889,11 @@ export declare type ConfluenceInviteUserPayload = {
|
|
|
15777
15889
|
errors?: Maybe<Array<MutationError>>;
|
|
15778
15890
|
success: Scalars['Boolean']['output'];
|
|
15779
15891
|
};
|
|
15892
|
+
export declare type ConfluenceJiraCalendarDuration = {
|
|
15893
|
+
__typename?: 'ConfluenceJiraCalendarDuration';
|
|
15894
|
+
endDateFieldName?: Maybe<Scalars['String']['output']>;
|
|
15895
|
+
startDateFieldName?: Maybe<Scalars['String']['output']>;
|
|
15896
|
+
};
|
|
15780
15897
|
export declare type ConfluenceJiraMacroAppLinksScanningStatus = {
|
|
15781
15898
|
__typename?: 'ConfluenceJiraMacroAppLinksScanningStatus';
|
|
15782
15899
|
additionalMessage?: Maybe<Scalars['String']['output']>;
|
|
@@ -16222,31 +16339,12 @@ export declare type ConfluenceNbmBulkUpdateVerificationEntryPayload = Payload &
|
|
|
16222
16339
|
errors?: Maybe<Array<MutationError>>;
|
|
16223
16340
|
success: Scalars['Boolean']['output'];
|
|
16224
16341
|
};
|
|
16225
|
-
export declare type ConfluenceNbmCategory = {
|
|
16226
|
-
__typename?: 'ConfluenceNbmCategory';
|
|
16227
|
-
details?: Maybe<Array<Maybe<ConfluenceNbmCategoryDetail>>>;
|
|
16228
|
-
totalChains?: Maybe<Scalars['Long']['output']>;
|
|
16229
|
-
totalPages?: Maybe<Scalars['Long']['output']>;
|
|
16230
|
-
totalSpaces?: Maybe<Scalars['Long']['output']>;
|
|
16231
|
-
type: ConfluenceNbmCategoryTypes;
|
|
16232
|
-
};
|
|
16233
|
-
export declare type ConfluenceNbmCategoryDetail = {
|
|
16234
|
-
__typename?: 'ConfluenceNbmCategoryDetail';
|
|
16235
|
-
chainType?: Maybe<Scalars['String']['output']>;
|
|
16236
|
-
count?: Maybe<Scalars['Long']['output']>;
|
|
16237
|
-
pages?: Maybe<Array<Maybe<ConfluenceNbmPageReference>>>;
|
|
16238
|
-
};
|
|
16239
16342
|
export declare enum ConfluenceNbmCategoryTypes {
|
|
16240
16343
|
NotSupported = "NOT_SUPPORTED",
|
|
16241
16344
|
Supported = "SUPPORTED",
|
|
16242
16345
|
SupportedWithMitigation = "SUPPORTED_WITH_MITIGATION",
|
|
16243
16346
|
Unknown = "UNKNOWN",
|
|
16244
|
-
|
|
16245
|
-
Unverified = "UNVERIFIED",
|
|
16246
|
-
UnverifiedNbm = "UNVERIFIED_NBM",
|
|
16247
|
-
VerifiedNotSupported = "VERIFIED_NOT_SUPPORTED",
|
|
16248
|
-
VerifiedSupported = "VERIFIED_SUPPORTED",
|
|
16249
|
-
VerifiedSupportedWithTransformations = "VERIFIED_SUPPORTED_WITH_TRANSFORMATIONS"
|
|
16347
|
+
Unverified = "UNVERIFIED"
|
|
16250
16348
|
}
|
|
16251
16349
|
export declare type ConfluenceNbmPageInfo = {
|
|
16252
16350
|
__typename?: 'ConfluenceNbmPageInfo';
|
|
@@ -16256,13 +16354,22 @@ export declare type ConfluenceNbmPageInfo = {
|
|
|
16256
16354
|
startCursor?: Maybe<Scalars['String']['output']>;
|
|
16257
16355
|
totalPages: Scalars['Int']['output'];
|
|
16258
16356
|
};
|
|
16259
|
-
export declare type
|
|
16260
|
-
|
|
16261
|
-
url?: Maybe<Scalars['String']['output']>;
|
|
16357
|
+
export declare type ConfluenceNbmRetryScanLongTaskInput = {
|
|
16358
|
+
scanId: Scalars['ID']['input'];
|
|
16262
16359
|
};
|
|
16263
|
-
export declare type
|
|
16264
|
-
__typename?: '
|
|
16265
|
-
|
|
16360
|
+
export declare type ConfluenceNbmRetryScanLongTaskPayload = {
|
|
16361
|
+
__typename?: 'ConfluenceNbmRetryScanLongTaskPayload';
|
|
16362
|
+
errors?: Maybe<Array<MutationError>>;
|
|
16363
|
+
scanId: Scalars['String']['output'];
|
|
16364
|
+
success: Scalars['Boolean']['output'];
|
|
16365
|
+
taskId: Scalars['String']['output'];
|
|
16366
|
+
};
|
|
16367
|
+
export declare type ConfluenceNbmScanCategory = {
|
|
16368
|
+
__typename?: 'ConfluenceNbmScanCategory';
|
|
16369
|
+
totalChains?: Maybe<Scalars['Long']['output']>;
|
|
16370
|
+
totalPages?: Maybe<Scalars['Long']['output']>;
|
|
16371
|
+
totalSpaces?: Maybe<Scalars['Long']['output']>;
|
|
16372
|
+
type: ConfluenceNbmCategoryTypes;
|
|
16266
16373
|
};
|
|
16267
16374
|
export declare type ConfluenceNbmScanConnection = {
|
|
16268
16375
|
__typename?: 'ConfluenceNbmScanConnection';
|
|
@@ -16277,9 +16384,8 @@ export declare type ConfluenceNbmScanEdge = {
|
|
|
16277
16384
|
};
|
|
16278
16385
|
export declare type ConfluenceNbmScanResult = {
|
|
16279
16386
|
__typename?: 'ConfluenceNbmScanResult';
|
|
16280
|
-
categories?: Maybe<Array<Maybe<
|
|
16387
|
+
categories?: Maybe<Array<Maybe<ConfluenceNbmScanCategory>>>;
|
|
16281
16388
|
id: Scalars['ID']['output'];
|
|
16282
|
-
resultFile?: Maybe<ConfluenceNbmResultFile>;
|
|
16283
16389
|
status: ConfluenceNbmScanStatus;
|
|
16284
16390
|
totalChains?: Maybe<Scalars['Long']['output']>;
|
|
16285
16391
|
totalPages?: Maybe<Scalars['Long']['output']>;
|
|
@@ -16300,6 +16406,7 @@ export declare type ConfluenceNbmScanSummary = {
|
|
|
16300
16406
|
id: Scalars['ID']['output'];
|
|
16301
16407
|
startTime?: Maybe<Scalars['String']['output']>;
|
|
16302
16408
|
status?: Maybe<ConfluenceNbmScanStatus>;
|
|
16409
|
+
taskId?: Maybe<Scalars['ID']['output']>;
|
|
16303
16410
|
totalNBMChains?: Maybe<Scalars['Int']['output']>;
|
|
16304
16411
|
totalPages?: Maybe<Scalars['Int']['output']>;
|
|
16305
16412
|
totalSpaces?: Maybe<Scalars['Int']['output']>;
|
|
@@ -16347,11 +16454,19 @@ export declare type ConfluenceNbmVerificationResultConnection = {
|
|
|
16347
16454
|
nodes?: Maybe<Array<Maybe<ConfluenceNbmVerificationEntry>>>;
|
|
16348
16455
|
pageInfo: ConfluencePageInfo;
|
|
16349
16456
|
};
|
|
16457
|
+
export declare enum ConfluenceNbmVerificationResultDirection {
|
|
16458
|
+
Asc = "ASC",
|
|
16459
|
+
Desc = "DESC"
|
|
16460
|
+
}
|
|
16350
16461
|
export declare type ConfluenceNbmVerificationResultEdge = {
|
|
16351
16462
|
__typename?: 'ConfluenceNbmVerificationResultEdge';
|
|
16352
16463
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
16353
16464
|
node?: Maybe<ConfluenceNbmVerificationEntry>;
|
|
16354
16465
|
};
|
|
16466
|
+
export declare enum ConfluenceNbmVerificationResultOrder {
|
|
16467
|
+
AiState = "AI_STATE",
|
|
16468
|
+
ManualState = "MANUAL_STATE"
|
|
16469
|
+
}
|
|
16355
16470
|
export declare type ConfluenceNewCodeMacro = {
|
|
16356
16471
|
__typename?: 'ConfluenceNewCodeMacro';
|
|
16357
16472
|
languages?: Maybe<Array<Maybe<ConfluenceNewCodeMacroLanguage>>>;
|
|
@@ -17219,6 +17334,11 @@ export declare enum ConfluenceSpaceOwnerType {
|
|
|
17219
17334
|
Group = "GROUP",
|
|
17220
17335
|
User = "USER"
|
|
17221
17336
|
}
|
|
17337
|
+
export declare type ConfluenceSpaceRecommendations = {
|
|
17338
|
+
__typename?: 'ConfluenceSpaceRecommendations';
|
|
17339
|
+
active?: Maybe<Array<Maybe<Space>>>;
|
|
17340
|
+
starred?: Maybe<Array<Maybe<Space>>>;
|
|
17341
|
+
};
|
|
17222
17342
|
export declare type ConfluenceSpaceRoleAppPrincipal = SpaceRolePrincipal & {
|
|
17223
17343
|
__typename?: 'ConfluenceSpaceRoleAppPrincipal';
|
|
17224
17344
|
displayName: Scalars['String']['output'];
|
|
@@ -20587,6 +20707,15 @@ export declare type CplsContributorWorkEdge = {
|
|
|
20587
20707
|
cursor: Scalars['String']['output'];
|
|
20588
20708
|
node?: Maybe<CplsWorkData>;
|
|
20589
20709
|
};
|
|
20710
|
+
export declare type CplsCreateCustomContributionTargetInput = {
|
|
20711
|
+
cloudId: Scalars['ID']['input'];
|
|
20712
|
+
name: Scalars['String']['input'];
|
|
20713
|
+
};
|
|
20714
|
+
export declare type CplsCreateCustomContributionTargetPayload = {
|
|
20715
|
+
__typename?: 'CplsCreateCustomContributionTargetPayload';
|
|
20716
|
+
errors: Array<MutationError>;
|
|
20717
|
+
node?: Maybe<CplsCustomContributionTarget>;
|
|
20718
|
+
};
|
|
20590
20719
|
export declare type CplsCustomContributionTarget = {
|
|
20591
20720
|
__typename?: 'CplsCustomContributionTarget';
|
|
20592
20721
|
id: Scalars['ID']['output'];
|
|
@@ -20619,6 +20748,16 @@ export declare type CplsTimeCell = {
|
|
|
20619
20748
|
export declare enum CplsTimeScaleType {
|
|
20620
20749
|
Weekly = "WEEKLY"
|
|
20621
20750
|
}
|
|
20751
|
+
export declare type CplsUpdateCustomContributionTargetInput = {
|
|
20752
|
+
cloudId: Scalars['ID']['input'];
|
|
20753
|
+
id: Scalars['ID']['input'];
|
|
20754
|
+
name: Scalars['String']['input'];
|
|
20755
|
+
};
|
|
20756
|
+
export declare type CplsUpdateCustomContributionTargetPayload = {
|
|
20757
|
+
__typename?: 'CplsUpdateCustomContributionTargetPayload';
|
|
20758
|
+
errors: Array<MutationError>;
|
|
20759
|
+
success: Scalars['Boolean']['output'];
|
|
20760
|
+
};
|
|
20622
20761
|
export declare type CplsViewSettings = {
|
|
20623
20762
|
__typename?: 'CplsViewSettings';
|
|
20624
20763
|
alwaysShowNumbersInGraph: Scalars['Boolean']['output'];
|
|
@@ -24356,6 +24495,7 @@ export declare type DevAiRovoDevCreateSessionByCloudIdInput = {
|
|
|
24356
24495
|
options?: InputMaybe<DevAiRovoDevCreateSessionOptionsInput>;
|
|
24357
24496
|
promptAdf?: InputMaybe<Scalars['JSON']['input']>;
|
|
24358
24497
|
repository: DevAiRovoDevRepositoryInput;
|
|
24498
|
+
useCase?: InputMaybe<Scalars['String']['input']>;
|
|
24359
24499
|
};
|
|
24360
24500
|
export declare type DevAiRovoDevCreateSessionInput = {
|
|
24361
24501
|
links?: InputMaybe<Array<DevAiRovoDevSessionLinkInput>>;
|
|
@@ -24461,6 +24601,7 @@ export declare enum DevAiRovoDevSessionStatus {
|
|
|
24461
24601
|
AgentWorking = "AGENT_WORKING",
|
|
24462
24602
|
Archived = "ARCHIVED",
|
|
24463
24603
|
Cloning = "CLONING",
|
|
24604
|
+
Deleted = "DELETED",
|
|
24464
24605
|
Failed = "FAILED",
|
|
24465
24606
|
Initialising = "INITIALISING",
|
|
24466
24607
|
InProgress = "IN_PROGRESS",
|
|
@@ -25353,6 +25494,11 @@ export declare type DevOpsMetricsIssueMetricsEdge = {
|
|
|
25353
25494
|
cursor: Scalars['String']['output'];
|
|
25354
25495
|
node?: Maybe<DevOpsMetricsIssueMetrics>;
|
|
25355
25496
|
};
|
|
25497
|
+
export declare type DevOpsMetricsPrCycleTimeSuggestion = DevOpsMetricsCycleTimeInsight & {
|
|
25498
|
+
__typename?: 'DevOpsMetricsPRCycleTimeSuggestion';
|
|
25499
|
+
id: Scalars['String']['output'];
|
|
25500
|
+
type: Scalars['String']['output'];
|
|
25501
|
+
};
|
|
25356
25502
|
export declare type DevOpsMetricsPerDeploymentMetricsConnection = {
|
|
25357
25503
|
__typename?: 'DevOpsMetricsPerDeploymentMetricsConnection';
|
|
25358
25504
|
edges?: Maybe<Array<Maybe<DevOpsMetricsDeploymentMetricsEdge>>>;
|
|
@@ -30738,6 +30884,56 @@ export declare type GraphIncidentLinkedJswIssueRelationshipEdge = {
|
|
|
30738
30884
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
30739
30885
|
node: GraphIncidentLinkedJswIssueRelationship;
|
|
30740
30886
|
};
|
|
30887
|
+
export declare type GraphIntegrationAddTwgCapabilityContainerInput = {
|
|
30888
|
+
contextAri: Scalars['ID']['input'];
|
|
30889
|
+
productAri: Scalars['ID']['input'];
|
|
30890
|
+
};
|
|
30891
|
+
export declare type GraphIntegrationAddTwgCapabilityContainerPayload = Payload & {
|
|
30892
|
+
__typename?: 'GraphIntegrationAddTwgCapabilityContainerPayload';
|
|
30893
|
+
errors?: Maybe<Array<MutationError>>;
|
|
30894
|
+
success: Scalars['Boolean']['output'];
|
|
30895
|
+
};
|
|
30896
|
+
export declare type GraphIntegrationConsentInput = {
|
|
30897
|
+
agreement: Scalars['String']['input'];
|
|
30898
|
+
formUrlReferer: Scalars['String']['input'];
|
|
30899
|
+
source: Scalars['String']['input'];
|
|
30900
|
+
};
|
|
30901
|
+
export declare type GraphIntegrationCreateConnectionPayload = Payload & {
|
|
30902
|
+
__typename?: 'GraphIntegrationCreateConnectionPayload';
|
|
30903
|
+
connectionId?: Maybe<Scalars['ID']['output']>;
|
|
30904
|
+
errors?: Maybe<Array<MutationError>>;
|
|
30905
|
+
success: Scalars['Boolean']['output'];
|
|
30906
|
+
};
|
|
30907
|
+
export declare type GraphIntegrationCreateDataConnectorConnectionInput = {
|
|
30908
|
+
connectorKey: Scalars['String']['input'];
|
|
30909
|
+
connectorProviderKey: Scalars['String']['input'];
|
|
30910
|
+
connectorProviderPayload: Scalars['JSON']['input'];
|
|
30911
|
+
consent: GraphIntegrationConsentInput;
|
|
30912
|
+
contextAri: Scalars['ID']['input'];
|
|
30913
|
+
productAri: Scalars['ID']['input'];
|
|
30914
|
+
};
|
|
30915
|
+
export declare type GraphIntegrationDataConnector = {
|
|
30916
|
+
__typename?: 'GraphIntegrationDataConnector';
|
|
30917
|
+
connectorKey: Scalars['String']['output'];
|
|
30918
|
+
connectorProviderKey: Scalars['String']['output'];
|
|
30919
|
+
};
|
|
30920
|
+
export declare type GraphIntegrationDataConnectorConnection = {
|
|
30921
|
+
__typename?: 'GraphIntegrationDataConnectorConnection';
|
|
30922
|
+
connectorProviderPayload?: Maybe<Scalars['JSON']['output']>;
|
|
30923
|
+
id: Scalars['ID']['output'];
|
|
30924
|
+
name: Scalars['String']['output'];
|
|
30925
|
+
};
|
|
30926
|
+
export declare type GraphIntegrationDeleteConnectionPayload = Payload & {
|
|
30927
|
+
__typename?: 'GraphIntegrationDeleteConnectionPayload';
|
|
30928
|
+
errors?: Maybe<Array<MutationError>>;
|
|
30929
|
+
success: Scalars['Boolean']['output'];
|
|
30930
|
+
};
|
|
30931
|
+
export declare type GraphIntegrationDeleteDataConnectorConnectionInput = {
|
|
30932
|
+
connectionId: Scalars['ID']['input'];
|
|
30933
|
+
connectorKey: Scalars['String']['input'];
|
|
30934
|
+
connectorProviderKey: Scalars['String']['input'];
|
|
30935
|
+
contextAri: Scalars['ID']['input'];
|
|
30936
|
+
};
|
|
30741
30937
|
export declare type GraphIntegrationDirectoryFilterDimension = {
|
|
30742
30938
|
__typename?: 'GraphIntegrationDirectoryFilterDimension';
|
|
30743
30939
|
displayName: Scalars['String']['output'];
|
|
@@ -30923,10 +31119,60 @@ export declare type GraphIntegrationMcpTool = {
|
|
|
30923
31119
|
name: Scalars['String']['output'];
|
|
30924
31120
|
status?: Maybe<GraphIntegrationStatus>;
|
|
30925
31121
|
};
|
|
31122
|
+
export declare type GraphIntegrationRemoveTwgCapabilityContainerInput = {
|
|
31123
|
+
contextAri: Scalars['ID']['input'];
|
|
31124
|
+
productAri: Scalars['ID']['input'];
|
|
31125
|
+
};
|
|
31126
|
+
export declare type GraphIntegrationRemoveTwgCapabilityContainerPayload = Payload & {
|
|
31127
|
+
__typename?: 'GraphIntegrationRemoveTwgCapabilityContainerPayload';
|
|
31128
|
+
errors?: Maybe<Array<MutationError>>;
|
|
31129
|
+
success: Scalars['Boolean']['output'];
|
|
31130
|
+
};
|
|
30926
31131
|
export declare enum GraphIntegrationStatus {
|
|
30927
31132
|
Disabled = "DISABLED",
|
|
30928
31133
|
Enabled = "ENABLED"
|
|
30929
31134
|
}
|
|
31135
|
+
export declare type GraphIntegrationTwgCapabilityContainer = {
|
|
31136
|
+
__typename?: 'GraphIntegrationTwgCapabilityContainer';
|
|
31137
|
+
connections: Array<GraphIntegrationDataConnectorConnection>;
|
|
31138
|
+
contextAri: Scalars['ID']['output'];
|
|
31139
|
+
dataConnectors: Array<GraphIntegrationDataConnector>;
|
|
31140
|
+
description: Scalars['String']['output'];
|
|
31141
|
+
icon: Scalars['String']['output'];
|
|
31142
|
+
name: Scalars['String']['output'];
|
|
31143
|
+
productAri: Scalars['ID']['output'];
|
|
31144
|
+
};
|
|
31145
|
+
export declare type GraphIntegrationTwgCapabilityContainerListItem = {
|
|
31146
|
+
__typename?: 'GraphIntegrationTwgCapabilityContainerListItem';
|
|
31147
|
+
dataConnectors: Array<GraphIntegrationDataConnector>;
|
|
31148
|
+
icon: Scalars['String']['output'];
|
|
31149
|
+
id?: Maybe<Scalars['ID']['output']>;
|
|
31150
|
+
name: Scalars['String']['output'];
|
|
31151
|
+
productAri: Scalars['ID']['output'];
|
|
31152
|
+
};
|
|
31153
|
+
export declare type GraphIntegrationTwgCapabilityContainerListItemConnection = {
|
|
31154
|
+
__typename?: 'GraphIntegrationTwgCapabilityContainerListItemConnection';
|
|
31155
|
+
edges: Array<GraphIntegrationTwgCapabilityContainerListItemEdge>;
|
|
31156
|
+
nodes: Array<GraphIntegrationTwgCapabilityContainerListItem>;
|
|
31157
|
+
pageInfo: PageInfo;
|
|
31158
|
+
};
|
|
31159
|
+
export declare type GraphIntegrationTwgCapabilityContainerListItemEdge = {
|
|
31160
|
+
__typename?: 'GraphIntegrationTwgCapabilityContainerListItemEdge';
|
|
31161
|
+
cursor: Scalars['String']['output'];
|
|
31162
|
+
node: GraphIntegrationTwgCapabilityContainerListItem;
|
|
31163
|
+
};
|
|
31164
|
+
export declare type GraphIntegrationUpdateConnectionPayload = Payload & {
|
|
31165
|
+
__typename?: 'GraphIntegrationUpdateConnectionPayload';
|
|
31166
|
+
errors?: Maybe<Array<MutationError>>;
|
|
31167
|
+
success: Scalars['Boolean']['output'];
|
|
31168
|
+
};
|
|
31169
|
+
export declare type GraphIntegrationUpdateDataConnectorConnectionInput = {
|
|
31170
|
+
connectionId: Scalars['ID']['input'];
|
|
31171
|
+
connectorKey: Scalars['String']['input'];
|
|
31172
|
+
connectorProviderKey: Scalars['String']['input'];
|
|
31173
|
+
connectorProviderPayload: Scalars['JSON']['input'];
|
|
31174
|
+
contextAri: Scalars['ID']['input'];
|
|
31175
|
+
};
|
|
30930
31176
|
export declare type GraphIssueAssociatedDesignPayload = Payload & {
|
|
30931
31177
|
__typename?: 'GraphIssueAssociatedDesignPayload';
|
|
30932
31178
|
errors?: Maybe<Array<MutationError>>;
|
|
@@ -34073,6 +34319,8 @@ export declare type GraphStore = {
|
|
|
34073
34319
|
serviceAssociatedPrInverse?: Maybe<GraphStoreSimplifiedServiceAssociatedPrInverseConnection>;
|
|
34074
34320
|
serviceAssociatedRemoteLink?: Maybe<GraphStoreSimplifiedServiceAssociatedRemoteLinkConnection>;
|
|
34075
34321
|
serviceAssociatedRemoteLinkInverse?: Maybe<GraphStoreSimplifiedServiceAssociatedRemoteLinkInverseConnection>;
|
|
34322
|
+
serviceAssociatedRepository?: Maybe<GraphStoreSimplifiedServiceAssociatedRepositoryConnection>;
|
|
34323
|
+
serviceAssociatedRepositoryInverse?: Maybe<GraphStoreSimplifiedServiceAssociatedRepositoryInverseConnection>;
|
|
34076
34324
|
serviceAssociatedTeam?: Maybe<GraphStoreSimplifiedServiceAssociatedTeamConnection>;
|
|
34077
34325
|
serviceAssociatedTeamInverse?: Maybe<GraphStoreSimplifiedServiceAssociatedTeamInverseConnection>;
|
|
34078
34326
|
serviceLinkedIncident?: Maybe<GraphStoreSimplifiedServiceLinkedIncidentConnection>;
|
|
@@ -34186,6 +34434,8 @@ export declare type GraphStore = {
|
|
|
34186
34434
|
userCreatedCalendarEventInverse?: Maybe<GraphStoreSimplifiedUserCreatedCalendarEventInverseConnection>;
|
|
34187
34435
|
userCreatedConfluenceBlogpost?: Maybe<GraphStoreSimplifiedUserCreatedConfluenceBlogpostConnection>;
|
|
34188
34436
|
userCreatedConfluenceBlogpostInverse?: Maybe<GraphStoreSimplifiedUserCreatedConfluenceBlogpostInverseConnection>;
|
|
34437
|
+
userCreatedConfluenceBlogpostKamino?: Maybe<GraphStoreSimplifiedUserCreatedConfluenceBlogpostKaminoConnection>;
|
|
34438
|
+
userCreatedConfluenceBlogpostKaminoInverse?: Maybe<GraphStoreSimplifiedUserCreatedConfluenceBlogpostKaminoInverseConnection>;
|
|
34189
34439
|
userCreatedConfluenceComment?: Maybe<GraphStoreSimplifiedUserCreatedConfluenceCommentConnection>;
|
|
34190
34440
|
userCreatedConfluenceCommentInverse?: Maybe<GraphStoreSimplifiedUserCreatedConfluenceCommentInverseConnection>;
|
|
34191
34441
|
userCreatedConfluenceDatabase?: Maybe<GraphStoreSimplifiedUserCreatedConfluenceDatabaseConnection>;
|
|
@@ -34196,6 +34446,8 @@ export declare type GraphStore = {
|
|
|
34196
34446
|
userCreatedConfluencePageInverse?: Maybe<GraphStoreSimplifiedUserCreatedConfluencePageInverseConnection>;
|
|
34197
34447
|
userCreatedConfluenceSpace?: Maybe<GraphStoreSimplifiedUserCreatedConfluenceSpaceConnection>;
|
|
34198
34448
|
userCreatedConfluenceSpaceInverse?: Maybe<GraphStoreSimplifiedUserCreatedConfluenceSpaceInverseConnection>;
|
|
34449
|
+
userCreatedConfluenceSpaceKamino?: Maybe<GraphStoreSimplifiedUserCreatedConfluenceSpaceKaminoConnection>;
|
|
34450
|
+
userCreatedConfluenceSpaceKaminoInverse?: Maybe<GraphStoreSimplifiedUserCreatedConfluenceSpaceKaminoInverseConnection>;
|
|
34199
34451
|
userCreatedConfluenceWhiteboard?: Maybe<GraphStoreSimplifiedUserCreatedConfluenceWhiteboardConnection>;
|
|
34200
34452
|
userCreatedConfluenceWhiteboardInverse?: Maybe<GraphStoreSimplifiedUserCreatedConfluenceWhiteboardInverseConnection>;
|
|
34201
34453
|
userCreatedDesign?: Maybe<GraphStoreSimplifiedUserCreatedDesignConnection>;
|
|
@@ -34308,6 +34560,8 @@ export declare type GraphStore = {
|
|
|
34308
34560
|
userUpdatedCommentInverse?: Maybe<GraphStoreSimplifiedUserUpdatedCommentInverseConnection>;
|
|
34309
34561
|
userUpdatedConfluenceBlogpost?: Maybe<GraphStoreSimplifiedUserUpdatedConfluenceBlogpostConnection>;
|
|
34310
34562
|
userUpdatedConfluenceBlogpostInverse?: Maybe<GraphStoreSimplifiedUserUpdatedConfluenceBlogpostInverseConnection>;
|
|
34563
|
+
userUpdatedConfluenceBlogpostKamino?: Maybe<GraphStoreSimplifiedUserUpdatedConfluenceBlogpostKaminoConnection>;
|
|
34564
|
+
userUpdatedConfluenceBlogpostKaminoInverse?: Maybe<GraphStoreSimplifiedUserUpdatedConfluenceBlogpostKaminoInverseConnection>;
|
|
34311
34565
|
userUpdatedConfluencePage?: Maybe<GraphStoreSimplifiedUserUpdatedConfluencePageConnection>;
|
|
34312
34566
|
userUpdatedConfluencePageInverse?: Maybe<GraphStoreSimplifiedUserUpdatedConfluencePageInverseConnection>;
|
|
34313
34567
|
userUpdatedConfluenceSpace?: Maybe<GraphStoreSimplifiedUserUpdatedConfluenceSpaceConnection>;
|
|
@@ -37554,6 +37808,20 @@ export declare type GraphStoreServiceAssociatedRemoteLinkInverseArgs = {
|
|
|
37554
37808
|
id: Scalars['ID']['input'];
|
|
37555
37809
|
sort?: InputMaybe<GraphStoreServiceAssociatedRemoteLinkSortInput>;
|
|
37556
37810
|
};
|
|
37811
|
+
export declare type GraphStoreServiceAssociatedRepositoryArgs = {
|
|
37812
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
37813
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
37814
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
37815
|
+
id: Scalars['ID']['input'];
|
|
37816
|
+
sort?: InputMaybe<GraphStoreServiceAssociatedRepositorySortInput>;
|
|
37817
|
+
};
|
|
37818
|
+
export declare type GraphStoreServiceAssociatedRepositoryInverseArgs = {
|
|
37819
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
37820
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
37821
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
37822
|
+
id: Scalars['ID']['input'];
|
|
37823
|
+
sort?: InputMaybe<GraphStoreServiceAssociatedRepositorySortInput>;
|
|
37824
|
+
};
|
|
37557
37825
|
export declare type GraphStoreServiceAssociatedTeamArgs = {
|
|
37558
37826
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
37559
37827
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -38327,6 +38595,20 @@ export declare type GraphStoreUserCreatedConfluenceBlogpostInverseArgs = {
|
|
|
38327
38595
|
id: Scalars['ID']['input'];
|
|
38328
38596
|
sort?: InputMaybe<GraphStoreUserCreatedConfluenceBlogpostSortInput>;
|
|
38329
38597
|
};
|
|
38598
|
+
export declare type GraphStoreUserCreatedConfluenceBlogpostKaminoArgs = {
|
|
38599
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
38600
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
38601
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
38602
|
+
id: Scalars['ID']['input'];
|
|
38603
|
+
sort?: InputMaybe<GraphStoreUserCreatedConfluenceBlogpostKaminoSortInput>;
|
|
38604
|
+
};
|
|
38605
|
+
export declare type GraphStoreUserCreatedConfluenceBlogpostKaminoInverseArgs = {
|
|
38606
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
38607
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
38608
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
38609
|
+
id: Scalars['ID']['input'];
|
|
38610
|
+
sort?: InputMaybe<GraphStoreUserCreatedConfluenceBlogpostKaminoSortInput>;
|
|
38611
|
+
};
|
|
38330
38612
|
export declare type GraphStoreUserCreatedConfluenceCommentArgs = {
|
|
38331
38613
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
38332
38614
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -38397,6 +38679,20 @@ export declare type GraphStoreUserCreatedConfluenceSpaceInverseArgs = {
|
|
|
38397
38679
|
id: Scalars['ID']['input'];
|
|
38398
38680
|
sort?: InputMaybe<GraphStoreUserCreatedConfluenceSpaceSortInput>;
|
|
38399
38681
|
};
|
|
38682
|
+
export declare type GraphStoreUserCreatedConfluenceSpaceKaminoArgs = {
|
|
38683
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
38684
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
38685
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
38686
|
+
id: Scalars['ID']['input'];
|
|
38687
|
+
sort?: InputMaybe<GraphStoreUserCreatedConfluenceSpaceKaminoSortInput>;
|
|
38688
|
+
};
|
|
38689
|
+
export declare type GraphStoreUserCreatedConfluenceSpaceKaminoInverseArgs = {
|
|
38690
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
38691
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
38692
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
38693
|
+
id: Scalars['ID']['input'];
|
|
38694
|
+
sort?: InputMaybe<GraphStoreUserCreatedConfluenceSpaceKaminoSortInput>;
|
|
38695
|
+
};
|
|
38400
38696
|
export declare type GraphStoreUserCreatedConfluenceWhiteboardArgs = {
|
|
38401
38697
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
38402
38698
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -39183,6 +39479,20 @@ export declare type GraphStoreUserUpdatedConfluenceBlogpostInverseArgs = {
|
|
|
39183
39479
|
id: Scalars['ID']['input'];
|
|
39184
39480
|
sort?: InputMaybe<GraphStoreUserUpdatedConfluenceBlogpostSortInput>;
|
|
39185
39481
|
};
|
|
39482
|
+
export declare type GraphStoreUserUpdatedConfluenceBlogpostKaminoArgs = {
|
|
39483
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
39484
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
39485
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
39486
|
+
id: Scalars['ID']['input'];
|
|
39487
|
+
sort?: InputMaybe<GraphStoreUserUpdatedConfluenceBlogpostKaminoSortInput>;
|
|
39488
|
+
};
|
|
39489
|
+
export declare type GraphStoreUserUpdatedConfluenceBlogpostKaminoInverseArgs = {
|
|
39490
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
39491
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
39492
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
39493
|
+
id: Scalars['ID']['input'];
|
|
39494
|
+
sort?: InputMaybe<GraphStoreUserUpdatedConfluenceBlogpostKaminoSortInput>;
|
|
39495
|
+
};
|
|
39186
39496
|
export declare type GraphStoreUserUpdatedConfluencePageArgs = {
|
|
39187
39497
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
39188
39498
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -46780,6 +47090,9 @@ export declare type GraphStoreServiceAssociatedPrSortInput = {
|
|
|
46780
47090
|
export declare type GraphStoreServiceAssociatedRemoteLinkSortInput = {
|
|
46781
47091
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
46782
47092
|
};
|
|
47093
|
+
export declare type GraphStoreServiceAssociatedRepositorySortInput = {
|
|
47094
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
47095
|
+
};
|
|
46783
47096
|
export declare type GraphStoreServiceAssociatedTeamSortInput = {
|
|
46784
47097
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
46785
47098
|
};
|
|
@@ -51458,6 +51771,34 @@ export declare type GraphStoreSimplifiedServiceAssociatedRemoteLinkInverseEdge =
|
|
|
51458
51771
|
};
|
|
51459
51772
|
export declare type GraphStoreSimplifiedServiceAssociatedRemoteLinkInverseUnion = DevOpsService;
|
|
51460
51773
|
export declare type GraphStoreSimplifiedServiceAssociatedRemoteLinkUnion = ExternalRemoteLink;
|
|
51774
|
+
export declare type GraphStoreSimplifiedServiceAssociatedRepositoryConnection = HasPageInfo & {
|
|
51775
|
+
__typename?: 'GraphStoreSimplifiedServiceAssociatedRepositoryConnection';
|
|
51776
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedServiceAssociatedRepositoryEdge>>>;
|
|
51777
|
+
pageInfo: PageInfo;
|
|
51778
|
+
};
|
|
51779
|
+
export declare type GraphStoreSimplifiedServiceAssociatedRepositoryEdge = {
|
|
51780
|
+
__typename?: 'GraphStoreSimplifiedServiceAssociatedRepositoryEdge';
|
|
51781
|
+
createdAt: Scalars['DateTime']['output'];
|
|
51782
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
51783
|
+
id: Scalars['ID']['output'];
|
|
51784
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
51785
|
+
node?: Maybe<GraphStoreSimplifiedServiceAssociatedRepositoryUnion>;
|
|
51786
|
+
};
|
|
51787
|
+
export declare type GraphStoreSimplifiedServiceAssociatedRepositoryInverseConnection = HasPageInfo & {
|
|
51788
|
+
__typename?: 'GraphStoreSimplifiedServiceAssociatedRepositoryInverseConnection';
|
|
51789
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedServiceAssociatedRepositoryInverseEdge>>>;
|
|
51790
|
+
pageInfo: PageInfo;
|
|
51791
|
+
};
|
|
51792
|
+
export declare type GraphStoreSimplifiedServiceAssociatedRepositoryInverseEdge = {
|
|
51793
|
+
__typename?: 'GraphStoreSimplifiedServiceAssociatedRepositoryInverseEdge';
|
|
51794
|
+
createdAt: Scalars['DateTime']['output'];
|
|
51795
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
51796
|
+
id: Scalars['ID']['output'];
|
|
51797
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
51798
|
+
node?: Maybe<GraphStoreSimplifiedServiceAssociatedRepositoryInverseUnion>;
|
|
51799
|
+
};
|
|
51800
|
+
export declare type GraphStoreSimplifiedServiceAssociatedRepositoryInverseUnion = DevOpsService;
|
|
51801
|
+
export declare type GraphStoreSimplifiedServiceAssociatedRepositoryUnion = BitbucketRepository | DevOpsRepository | ExternalRepository;
|
|
51461
51802
|
export declare type GraphStoreSimplifiedServiceAssociatedTeamConnection = HasPageInfo & {
|
|
51462
51803
|
__typename?: 'GraphStoreSimplifiedServiceAssociatedTeamConnection';
|
|
51463
51804
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedServiceAssociatedTeamEdge>>>;
|
|
@@ -52715,6 +53056,34 @@ export declare type GraphStoreSimplifiedUserCreatedConfluenceBlogpostInverseEdge
|
|
|
52715
53056
|
node?: Maybe<GraphStoreSimplifiedUserCreatedConfluenceBlogpostInverseUnion>;
|
|
52716
53057
|
};
|
|
52717
53058
|
export declare type GraphStoreSimplifiedUserCreatedConfluenceBlogpostInverseUnion = AppUser | AtlassianAccountUser | CustomerUser;
|
|
53059
|
+
export declare type GraphStoreSimplifiedUserCreatedConfluenceBlogpostKaminoConnection = HasPageInfo & {
|
|
53060
|
+
__typename?: 'GraphStoreSimplifiedUserCreatedConfluenceBlogpostKaminoConnection';
|
|
53061
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserCreatedConfluenceBlogpostKaminoEdge>>>;
|
|
53062
|
+
pageInfo: PageInfo;
|
|
53063
|
+
};
|
|
53064
|
+
export declare type GraphStoreSimplifiedUserCreatedConfluenceBlogpostKaminoEdge = {
|
|
53065
|
+
__typename?: 'GraphStoreSimplifiedUserCreatedConfluenceBlogpostKaminoEdge';
|
|
53066
|
+
createdAt: Scalars['DateTime']['output'];
|
|
53067
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
53068
|
+
id: Scalars['ID']['output'];
|
|
53069
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
53070
|
+
node?: Maybe<GraphStoreSimplifiedUserCreatedConfluenceBlogpostKaminoUnion>;
|
|
53071
|
+
};
|
|
53072
|
+
export declare type GraphStoreSimplifiedUserCreatedConfluenceBlogpostKaminoInverseConnection = HasPageInfo & {
|
|
53073
|
+
__typename?: 'GraphStoreSimplifiedUserCreatedConfluenceBlogpostKaminoInverseConnection';
|
|
53074
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserCreatedConfluenceBlogpostKaminoInverseEdge>>>;
|
|
53075
|
+
pageInfo: PageInfo;
|
|
53076
|
+
};
|
|
53077
|
+
export declare type GraphStoreSimplifiedUserCreatedConfluenceBlogpostKaminoInverseEdge = {
|
|
53078
|
+
__typename?: 'GraphStoreSimplifiedUserCreatedConfluenceBlogpostKaminoInverseEdge';
|
|
53079
|
+
createdAt: Scalars['DateTime']['output'];
|
|
53080
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
53081
|
+
id: Scalars['ID']['output'];
|
|
53082
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
53083
|
+
node?: Maybe<GraphStoreSimplifiedUserCreatedConfluenceBlogpostKaminoInverseUnion>;
|
|
53084
|
+
};
|
|
53085
|
+
export declare type GraphStoreSimplifiedUserCreatedConfluenceBlogpostKaminoInverseUnion = AppUser | AtlassianAccountUser | CustomerUser;
|
|
53086
|
+
export declare type GraphStoreSimplifiedUserCreatedConfluenceBlogpostKaminoUnion = ConfluenceBlogPost;
|
|
52718
53087
|
export declare type GraphStoreSimplifiedUserCreatedConfluenceBlogpostUnion = ConfluenceBlogPost;
|
|
52719
53088
|
export declare type GraphStoreSimplifiedUserCreatedConfluenceCommentConnection = HasPageInfo & {
|
|
52720
53089
|
__typename?: 'GraphStoreSimplifiedUserCreatedConfluenceCommentConnection';
|
|
@@ -52855,6 +53224,34 @@ export declare type GraphStoreSimplifiedUserCreatedConfluenceSpaceInverseEdge =
|
|
|
52855
53224
|
node?: Maybe<GraphStoreSimplifiedUserCreatedConfluenceSpaceInverseUnion>;
|
|
52856
53225
|
};
|
|
52857
53226
|
export declare type GraphStoreSimplifiedUserCreatedConfluenceSpaceInverseUnion = AppUser | AtlassianAccountUser | CustomerUser;
|
|
53227
|
+
export declare type GraphStoreSimplifiedUserCreatedConfluenceSpaceKaminoConnection = HasPageInfo & {
|
|
53228
|
+
__typename?: 'GraphStoreSimplifiedUserCreatedConfluenceSpaceKaminoConnection';
|
|
53229
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserCreatedConfluenceSpaceKaminoEdge>>>;
|
|
53230
|
+
pageInfo: PageInfo;
|
|
53231
|
+
};
|
|
53232
|
+
export declare type GraphStoreSimplifiedUserCreatedConfluenceSpaceKaminoEdge = {
|
|
53233
|
+
__typename?: 'GraphStoreSimplifiedUserCreatedConfluenceSpaceKaminoEdge';
|
|
53234
|
+
createdAt: Scalars['DateTime']['output'];
|
|
53235
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
53236
|
+
id: Scalars['ID']['output'];
|
|
53237
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
53238
|
+
node?: Maybe<GraphStoreSimplifiedUserCreatedConfluenceSpaceKaminoUnion>;
|
|
53239
|
+
};
|
|
53240
|
+
export declare type GraphStoreSimplifiedUserCreatedConfluenceSpaceKaminoInverseConnection = HasPageInfo & {
|
|
53241
|
+
__typename?: 'GraphStoreSimplifiedUserCreatedConfluenceSpaceKaminoInverseConnection';
|
|
53242
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserCreatedConfluenceSpaceKaminoInverseEdge>>>;
|
|
53243
|
+
pageInfo: PageInfo;
|
|
53244
|
+
};
|
|
53245
|
+
export declare type GraphStoreSimplifiedUserCreatedConfluenceSpaceKaminoInverseEdge = {
|
|
53246
|
+
__typename?: 'GraphStoreSimplifiedUserCreatedConfluenceSpaceKaminoInverseEdge';
|
|
53247
|
+
createdAt: Scalars['DateTime']['output'];
|
|
53248
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
53249
|
+
id: Scalars['ID']['output'];
|
|
53250
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
53251
|
+
node?: Maybe<GraphStoreSimplifiedUserCreatedConfluenceSpaceKaminoInverseUnion>;
|
|
53252
|
+
};
|
|
53253
|
+
export declare type GraphStoreSimplifiedUserCreatedConfluenceSpaceKaminoInverseUnion = AppUser | AtlassianAccountUser | CustomerUser;
|
|
53254
|
+
export declare type GraphStoreSimplifiedUserCreatedConfluenceSpaceKaminoUnion = ConfluenceSpace;
|
|
52858
53255
|
export declare type GraphStoreSimplifiedUserCreatedConfluenceSpaceUnion = ConfluenceSpace;
|
|
52859
53256
|
export declare type GraphStoreSimplifiedUserCreatedConfluenceWhiteboardConnection = HasPageInfo & {
|
|
52860
53257
|
__typename?: 'GraphStoreSimplifiedUserCreatedConfluenceWhiteboardConnection';
|
|
@@ -54411,6 +54808,34 @@ export declare type GraphStoreSimplifiedUserUpdatedConfluenceBlogpostInverseEdge
|
|
|
54411
54808
|
node?: Maybe<GraphStoreSimplifiedUserUpdatedConfluenceBlogpostInverseUnion>;
|
|
54412
54809
|
};
|
|
54413
54810
|
export declare type GraphStoreSimplifiedUserUpdatedConfluenceBlogpostInverseUnion = AppUser | AtlassianAccountUser | CustomerUser;
|
|
54811
|
+
export declare type GraphStoreSimplifiedUserUpdatedConfluenceBlogpostKaminoConnection = HasPageInfo & {
|
|
54812
|
+
__typename?: 'GraphStoreSimplifiedUserUpdatedConfluenceBlogpostKaminoConnection';
|
|
54813
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserUpdatedConfluenceBlogpostKaminoEdge>>>;
|
|
54814
|
+
pageInfo: PageInfo;
|
|
54815
|
+
};
|
|
54816
|
+
export declare type GraphStoreSimplifiedUserUpdatedConfluenceBlogpostKaminoEdge = {
|
|
54817
|
+
__typename?: 'GraphStoreSimplifiedUserUpdatedConfluenceBlogpostKaminoEdge';
|
|
54818
|
+
createdAt: Scalars['DateTime']['output'];
|
|
54819
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
54820
|
+
id: Scalars['ID']['output'];
|
|
54821
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
54822
|
+
node?: Maybe<GraphStoreSimplifiedUserUpdatedConfluenceBlogpostKaminoUnion>;
|
|
54823
|
+
};
|
|
54824
|
+
export declare type GraphStoreSimplifiedUserUpdatedConfluenceBlogpostKaminoInverseConnection = HasPageInfo & {
|
|
54825
|
+
__typename?: 'GraphStoreSimplifiedUserUpdatedConfluenceBlogpostKaminoInverseConnection';
|
|
54826
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserUpdatedConfluenceBlogpostKaminoInverseEdge>>>;
|
|
54827
|
+
pageInfo: PageInfo;
|
|
54828
|
+
};
|
|
54829
|
+
export declare type GraphStoreSimplifiedUserUpdatedConfluenceBlogpostKaminoInverseEdge = {
|
|
54830
|
+
__typename?: 'GraphStoreSimplifiedUserUpdatedConfluenceBlogpostKaminoInverseEdge';
|
|
54831
|
+
createdAt: Scalars['DateTime']['output'];
|
|
54832
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
54833
|
+
id: Scalars['ID']['output'];
|
|
54834
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
54835
|
+
node?: Maybe<GraphStoreSimplifiedUserUpdatedConfluenceBlogpostKaminoInverseUnion>;
|
|
54836
|
+
};
|
|
54837
|
+
export declare type GraphStoreSimplifiedUserUpdatedConfluenceBlogpostKaminoInverseUnion = AppUser | AtlassianAccountUser | CustomerUser;
|
|
54838
|
+
export declare type GraphStoreSimplifiedUserUpdatedConfluenceBlogpostKaminoUnion = ConfluenceBlogPost;
|
|
54414
54839
|
export declare type GraphStoreSimplifiedUserUpdatedConfluenceBlogpostUnion = ConfluenceBlogPost;
|
|
54415
54840
|
export declare type GraphStoreSimplifiedUserUpdatedConfluencePageConnection = HasPageInfo & {
|
|
54416
54841
|
__typename?: 'GraphStoreSimplifiedUserUpdatedConfluencePageConnection';
|
|
@@ -55720,6 +56145,9 @@ export declare type GraphStoreUserCreatedCalendarEventSortInput = {
|
|
|
55720
56145
|
to_eventEndTime?: InputMaybe<GraphStoreSortInput>;
|
|
55721
56146
|
to_eventStartTime?: InputMaybe<GraphStoreSortInput>;
|
|
55722
56147
|
};
|
|
56148
|
+
export declare type GraphStoreUserCreatedConfluenceBlogpostKaminoSortInput = {
|
|
56149
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
56150
|
+
};
|
|
55723
56151
|
export declare type GraphStoreUserCreatedConfluenceBlogpostSortInput = {
|
|
55724
56152
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
55725
56153
|
};
|
|
@@ -55735,6 +56163,9 @@ export declare type GraphStoreUserCreatedConfluenceEmbedSortInput = {
|
|
|
55735
56163
|
export declare type GraphStoreUserCreatedConfluencePageSortInput = {
|
|
55736
56164
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
55737
56165
|
};
|
|
56166
|
+
export declare type GraphStoreUserCreatedConfluenceSpaceKaminoSortInput = {
|
|
56167
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
56168
|
+
};
|
|
55738
56169
|
export declare type GraphStoreUserCreatedConfluenceSpaceSortInput = {
|
|
55739
56170
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
55740
56171
|
};
|
|
@@ -55940,6 +56371,9 @@ export declare type GraphStoreUserUpdatedAtlasProjectSortInput = {
|
|
|
55940
56371
|
export declare type GraphStoreUserUpdatedCommentSortInput = {
|
|
55941
56372
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
55942
56373
|
};
|
|
56374
|
+
export declare type GraphStoreUserUpdatedConfluenceBlogpostKaminoSortInput = {
|
|
56375
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
56376
|
+
};
|
|
55943
56377
|
export declare type GraphStoreUserUpdatedConfluenceBlogpostSortInput = {
|
|
55944
56378
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
55945
56379
|
};
|
|
@@ -59955,6 +60389,16 @@ export declare type JiraAddAttachmentPayload = {
|
|
|
59955
60389
|
errors?: Maybe<Array<MutationError>>;
|
|
59956
60390
|
success: Scalars['Boolean']['output'];
|
|
59957
60391
|
};
|
|
60392
|
+
export declare type JiraAddAttachmentsInput = {
|
|
60393
|
+
fileIds: Array<Scalars['String']['input']>;
|
|
60394
|
+
issueId: Scalars['ID']['input'];
|
|
60395
|
+
};
|
|
60396
|
+
export declare type JiraAddAttachmentsPayload = Payload & {
|
|
60397
|
+
__typename?: 'JiraAddAttachmentsPayload';
|
|
60398
|
+
attachments?: Maybe<Array<Maybe<JiraAttachment>>>;
|
|
60399
|
+
errors?: Maybe<Array<MutationError>>;
|
|
60400
|
+
success: Scalars['Boolean']['output'];
|
|
60401
|
+
};
|
|
59958
60402
|
export declare type JiraAddCommentInput = {
|
|
59959
60403
|
content: JiraAdfInput;
|
|
59960
60404
|
issueId: Scalars['ID']['input'];
|
|
@@ -60163,6 +60607,21 @@ export declare type JiraAffectedServicesFieldPayload = Payload & {
|
|
|
60163
60607
|
export declare type JiraAffectedServicesInput = {
|
|
60164
60608
|
serviceId: Scalars['ID']['input'];
|
|
60165
60609
|
};
|
|
60610
|
+
export declare type JiraAiAgentSession = {
|
|
60611
|
+
__typename?: 'JiraAiAgentSession';
|
|
60612
|
+
conversationId: Scalars['ID']['output'];
|
|
60613
|
+
};
|
|
60614
|
+
export declare type JiraAiAgentSessionConnection = {
|
|
60615
|
+
__typename?: 'JiraAiAgentSessionConnection';
|
|
60616
|
+
edges?: Maybe<Array<Maybe<JiraAiAgentSessionEdge>>>;
|
|
60617
|
+
pageInfo: PageInfo;
|
|
60618
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
60619
|
+
};
|
|
60620
|
+
export declare type JiraAiAgentSessionEdge = {
|
|
60621
|
+
__typename?: 'JiraAiAgentSessionEdge';
|
|
60622
|
+
cursor: Scalars['String']['output'];
|
|
60623
|
+
node?: Maybe<JiraAiAgentSession>;
|
|
60624
|
+
};
|
|
60166
60625
|
export declare type JiraAiEnablementIssueInput = {
|
|
60167
60626
|
issueId?: InputMaybe<Scalars['ID']['input']>;
|
|
60168
60627
|
issueKey?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -64857,6 +65316,7 @@ export declare type JiraFieldConfigFilterInput = {
|
|
|
64857
65316
|
fieldIds?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
64858
65317
|
fieldStatus?: InputMaybe<JiraFieldStatusType>;
|
|
64859
65318
|
includedFieldCategories?: InputMaybe<Array<JiraFieldCategoryType>>;
|
|
65319
|
+
includedFieldScopes?: InputMaybe<Array<JiraFieldScopeType>>;
|
|
64860
65320
|
includedFieldStatus?: InputMaybe<Array<JiraFieldStatusType>>;
|
|
64861
65321
|
includedFieldTypes?: InputMaybe<Array<JiraConfigFieldType>>;
|
|
64862
65322
|
orderBy?: InputMaybe<JiraFieldConfigOrderBy>;
|
|
@@ -65010,6 +65470,10 @@ export declare type JiraFieldSchemesEdge = {
|
|
|
65010
65470
|
export declare type JiraFieldSchemesInput = {
|
|
65011
65471
|
nameOrDescriptionFilter?: InputMaybe<Scalars['String']['input']>;
|
|
65012
65472
|
};
|
|
65473
|
+
export declare enum JiraFieldScopeType {
|
|
65474
|
+
Global = "GLOBAL",
|
|
65475
|
+
Project = "PROJECT"
|
|
65476
|
+
}
|
|
65013
65477
|
export declare type JiraFieldSearcherTemplate = {
|
|
65014
65478
|
__typename?: 'JiraFieldSearcherTemplate';
|
|
65015
65479
|
displayName: Scalars['String']['output'];
|
|
@@ -66139,6 +66603,7 @@ export declare type JiraInvalidSyntaxError = {
|
|
|
66139
66603
|
};
|
|
66140
66604
|
export declare type JiraIssue = HasMercuryProjectFields & JiraScenarioIssueLike & Node & {
|
|
66141
66605
|
__typename?: 'JiraIssue';
|
|
66606
|
+
aiAgentSessions?: Maybe<JiraAiAgentSessionConnection>;
|
|
66142
66607
|
archivedBy?: Maybe<User>;
|
|
66143
66608
|
archivedOn?: Maybe<Scalars['DateTime']['output']>;
|
|
66144
66609
|
assigneeField?: Maybe<JiraSingleSelectUserPickerField>;
|
|
@@ -66264,6 +66729,12 @@ export declare type JiraIssue = HasMercuryProjectFields & JiraScenarioIssueLike
|
|
|
66264
66729
|
webUrl?: Maybe<Scalars['URL']['output']>;
|
|
66265
66730
|
worklogs?: Maybe<JiraWorkLogConnection>;
|
|
66266
66731
|
};
|
|
66732
|
+
export declare type JiraIssueAiAgentSessionsArgs = {
|
|
66733
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
66734
|
+
before?: InputMaybe<Scalars['String']['input']>;
|
|
66735
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
66736
|
+
last?: InputMaybe<Scalars['Int']['input']>;
|
|
66737
|
+
};
|
|
66267
66738
|
export declare type JiraIssueAttachmentsArgs = {
|
|
66268
66739
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
66269
66740
|
before?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -66894,6 +67365,7 @@ export declare type JiraIssueFieldConfig = Node & {
|
|
|
66894
67365
|
fieldId: Scalars['String']['output'];
|
|
66895
67366
|
formatConfig?: Maybe<JiraFieldFormatConfig>;
|
|
66896
67367
|
id: Scalars['ID']['output'];
|
|
67368
|
+
installedByAppName?: Maybe<Scalars['String']['output']>;
|
|
66897
67369
|
isConnect?: Maybe<Scalars['Boolean']['output']>;
|
|
66898
67370
|
isCustom: Scalars['Boolean']['output'];
|
|
66899
67371
|
isDefaultFieldOptionsCountOverLimit?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -69620,6 +70092,7 @@ export declare type JiraMutation = {
|
|
|
69620
70092
|
__typename?: 'JiraMutation';
|
|
69621
70093
|
activitySortOrder?: Maybe<JiraActivitySortOrderPayload>;
|
|
69622
70094
|
addAttachment?: Maybe<JiraAddAttachmentPayload>;
|
|
70095
|
+
addAttachments?: Maybe<JiraAddAttachmentsPayload>;
|
|
69623
70096
|
addComment?: Maybe<JiraAddCommentPayload>;
|
|
69624
70097
|
addFieldsToProject?: Maybe<JiraAddFieldsToProjectPayload>;
|
|
69625
70098
|
addIssuesToFixVersion?: Maybe<JiraAddIssuesToFixVersionPayload>;
|
|
@@ -69851,6 +70324,9 @@ export declare type JiraMutationActivitySortOrderArgs = {
|
|
|
69851
70324
|
export declare type JiraMutationAddAttachmentArgs = {
|
|
69852
70325
|
input: JiraAddAttachmentInput;
|
|
69853
70326
|
};
|
|
70327
|
+
export declare type JiraMutationAddAttachmentsArgs = {
|
|
70328
|
+
input: JiraAddAttachmentsInput;
|
|
70329
|
+
};
|
|
69854
70330
|
export declare type JiraMutationAddCommentArgs = {
|
|
69855
70331
|
input: JiraAddCommentInput;
|
|
69856
70332
|
};
|
|
@@ -73785,6 +74261,7 @@ export declare type JiraQueryJiraIssueSearchViewArgs = {
|
|
|
73785
74261
|
isGroupingEnabled?: InputMaybe<Scalars['Boolean']['input']>;
|
|
73786
74262
|
issueSearchInput?: InputMaybe<JiraIssueSearchInput>;
|
|
73787
74263
|
namespace?: InputMaybe<Scalars['String']['input']>;
|
|
74264
|
+
scope?: InputMaybe<JiraIssueSearchScope>;
|
|
73788
74265
|
viewConfigInput?: InputMaybe<JiraIssueSearchStaticViewInput>;
|
|
73789
74266
|
viewId?: InputMaybe<Scalars['String']['input']>;
|
|
73790
74267
|
viewQueryInput?: InputMaybe<JiraIssueSearchViewQueryInput>;
|
|
@@ -80227,6 +80704,42 @@ export declare type JpdInsightUpdatedEvent = {
|
|
|
80227
80704
|
performedAt: Scalars['String']['output'];
|
|
80228
80705
|
projectAri: Scalars['ID']['output'];
|
|
80229
80706
|
};
|
|
80707
|
+
export declare type JpdPlayContributionCreatedEvent = {
|
|
80708
|
+
__typename?: 'JpdPlayContributionCreatedEvent';
|
|
80709
|
+
contributionAri: Scalars['ID']['output'];
|
|
80710
|
+
contributionId: Scalars['Int']['output'];
|
|
80711
|
+
projectAri: Scalars['ID']['output'];
|
|
80712
|
+
subjectAri: Scalars['ID']['output'];
|
|
80713
|
+
updatedByUserId: Scalars['ID']['output'];
|
|
80714
|
+
updatedTime: Scalars['String']['output'];
|
|
80715
|
+
};
|
|
80716
|
+
export declare type JpdPlayContributionDeletedEvent = {
|
|
80717
|
+
__typename?: 'JpdPlayContributionDeletedEvent';
|
|
80718
|
+
projectAri: Scalars['ID']['output'];
|
|
80719
|
+
subjectAri: Scalars['ID']['output'];
|
|
80720
|
+
updatedByUserId: Scalars['ID']['output'];
|
|
80721
|
+
updatedTime: Scalars['String']['output'];
|
|
80722
|
+
};
|
|
80723
|
+
export declare type JpdPlayContributionUpdatedEvent = {
|
|
80724
|
+
__typename?: 'JpdPlayContributionUpdatedEvent';
|
|
80725
|
+
contributionAri: Scalars['ID']['output'];
|
|
80726
|
+
contributionId: Scalars['Int']['output'];
|
|
80727
|
+
projectAri: Scalars['ID']['output'];
|
|
80728
|
+
subjectAri: Scalars['ID']['output'];
|
|
80729
|
+
updatedByUserId: Scalars['ID']['output'];
|
|
80730
|
+
updatedTime: Scalars['String']['output'];
|
|
80731
|
+
};
|
|
80732
|
+
export declare type JpdPlayEvent = {
|
|
80733
|
+
__typename?: 'JpdPlayEvent';
|
|
80734
|
+
parameters: JpdPlayParameters;
|
|
80735
|
+
projectAri: Scalars['ID']['output'];
|
|
80736
|
+
updatedByUserId: Scalars['ID']['output'];
|
|
80737
|
+
updatedTime: Scalars['String']['output'];
|
|
80738
|
+
};
|
|
80739
|
+
export declare type JpdPlayParameters = {
|
|
80740
|
+
__typename?: 'JpdPlayParameters';
|
|
80741
|
+
maxSpend?: Maybe<Scalars['Int']['output']>;
|
|
80742
|
+
};
|
|
80230
80743
|
export declare type JpdSubscriptions = {
|
|
80231
80744
|
__typename?: 'JpdSubscriptions';
|
|
80232
80745
|
onInsightCreated?: Maybe<JpdInsightCreatedEvent>;
|
|
@@ -80235,6 +80748,10 @@ export declare type JpdSubscriptions = {
|
|
|
80235
80748
|
onIssueInsightCreated?: Maybe<JpdInsightCreatedEvent>;
|
|
80236
80749
|
onIssueInsightDeleted?: Maybe<JpdInsightDeletedEvent>;
|
|
80237
80750
|
onIssueInsightUpdated?: Maybe<JpdInsightUpdatedEvent>;
|
|
80751
|
+
onPlayContributionCreated?: Maybe<JpdPlayContributionCreatedEvent>;
|
|
80752
|
+
onPlayContributionDeleted?: Maybe<JpdPlayContributionDeletedEvent>;
|
|
80753
|
+
onPlayContributionUpdated?: Maybe<JpdPlayContributionUpdatedEvent>;
|
|
80754
|
+
onPlayUpdated?: Maybe<JpdPlayEvent>;
|
|
80238
80755
|
onViewCommentEvents?: Maybe<JpdViewCommentEvent>;
|
|
80239
80756
|
onViewCreated?: Maybe<JpdViewCreatedEvent>;
|
|
80240
80757
|
onViewDeleted?: Maybe<JpdViewDeletedEvent>;
|
|
@@ -80261,6 +80778,18 @@ export declare type JpdSubscriptionsOnIssueInsightDeletedArgs = {
|
|
|
80261
80778
|
export declare type JpdSubscriptionsOnIssueInsightUpdatedArgs = {
|
|
80262
80779
|
issueAri: Scalars['ID']['input'];
|
|
80263
80780
|
};
|
|
80781
|
+
export declare type JpdSubscriptionsOnPlayContributionCreatedArgs = {
|
|
80782
|
+
projectAri: Scalars['ID']['input'];
|
|
80783
|
+
};
|
|
80784
|
+
export declare type JpdSubscriptionsOnPlayContributionDeletedArgs = {
|
|
80785
|
+
projectAri: Scalars['ID']['input'];
|
|
80786
|
+
};
|
|
80787
|
+
export declare type JpdSubscriptionsOnPlayContributionUpdatedArgs = {
|
|
80788
|
+
projectAri: Scalars['ID']['input'];
|
|
80789
|
+
};
|
|
80790
|
+
export declare type JpdSubscriptionsOnPlayUpdatedArgs = {
|
|
80791
|
+
projectAri: Scalars['ID']['input'];
|
|
80792
|
+
};
|
|
80264
80793
|
export declare type JpdSubscriptionsOnViewCommentEventsArgs = {
|
|
80265
80794
|
projectAri: Scalars['ID']['input'];
|
|
80266
80795
|
};
|
|
@@ -85917,6 +86446,7 @@ export declare type MercuryCreateChangeProposalsViewInput = {
|
|
|
85917
86446
|
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
85918
86447
|
name: Scalars['String']['input'];
|
|
85919
86448
|
settings?: InputMaybe<Array<InputMaybe<MercuryViewSettingInput>>>;
|
|
86449
|
+
strategicEventId?: InputMaybe<Scalars['ID']['input']>;
|
|
85920
86450
|
};
|
|
85921
86451
|
export declare type MercuryCreateChangeProposalsViewSettingPayload = Payload & {
|
|
85922
86452
|
__typename?: 'MercuryCreateChangeProposalsViewSettingPayload';
|
|
@@ -88651,6 +89181,7 @@ export declare type Mutation = {
|
|
|
88651
89181
|
confluence_markAllCommentsAsRead?: Maybe<ConfluenceMarkAllCommentsAsReadPayload>;
|
|
88652
89182
|
confluence_markCommentAsDangling?: Maybe<ConfluenceMarkCommentAsDanglingPayload>;
|
|
88653
89183
|
confluence_nbmBulkUpdateVerificationEntry?: Maybe<ConfluenceNbmBulkUpdateVerificationEntryPayload>;
|
|
89184
|
+
confluence_nbmRetryScanLongTask?: Maybe<ConfluenceNbmRetryScanLongTaskPayload>;
|
|
88654
89185
|
confluence_nbmStartScanLongTask?: Maybe<ConfluenceNbmStartScanLongTaskPayload>;
|
|
88655
89186
|
confluence_reopenComment?: Maybe<ConfluenceReopenCommentPayload>;
|
|
88656
89187
|
confluence_resolveComments?: Maybe<ConfluenceResolveCommentsPayload>;
|
|
@@ -88688,8 +89219,10 @@ export declare type Mutation = {
|
|
|
88688
89219
|
cpls_addContributions: CplsAddContributionsPayload;
|
|
88689
89220
|
cpls_addContributorScopeAssociation: CplsAddContributorScopeAssociationPayload;
|
|
88690
89221
|
cpls_addContributorWorkAssociation: CplsAddContributorWorkAssociationPayload;
|
|
89222
|
+
cpls_createCustomContributionTarget: CplsCreateCustomContributionTargetPayload;
|
|
88691
89223
|
cpls_deleteContributorScopeAssociation: CplsDeleteContributorScopeAssociationPayload;
|
|
88692
89224
|
cpls_deleteContributorWorkAssociation: CplsDeleteContributorWorkAssociationPayload;
|
|
89225
|
+
cpls_updateCustomContributionTarget: CplsUpdateCustomContributionTargetPayload;
|
|
88693
89226
|
createAdminAnnouncementBanner?: Maybe<ConfluenceAdminAnnouncementBannerPayload>;
|
|
88694
89227
|
createApp?: Maybe<CreateAppResponse>;
|
|
88695
89228
|
createAppContainer?: Maybe<CreateAppContainerPayload>;
|
|
@@ -88841,10 +89374,15 @@ export declare type Mutation = {
|
|
|
88841
89374
|
goals_setWatchingGoal?: Maybe<TownsquareGoalsSetWatchingGoalPayload>;
|
|
88842
89375
|
goals_shareGoal?: Maybe<TownsquareGoalsShareGoalPayload>;
|
|
88843
89376
|
grantContentAccess?: Maybe<GrantContentAccessPayload>;
|
|
89377
|
+
graphIntegration_addTwgCapabilityContainer?: Maybe<GraphIntegrationAddTwgCapabilityContainerPayload>;
|
|
89378
|
+
graphIntegration_createDataConnectorConnection?: Maybe<GraphIntegrationCreateConnectionPayload>;
|
|
89379
|
+
graphIntegration_deleteDataConnectorConnection?: Maybe<GraphIntegrationDeleteConnectionPayload>;
|
|
88844
89380
|
graphIntegration_mcpAdminManagementRegisterMcpServer?: Maybe<GraphIntegrationMcpAdminManagementRegisterMcpServerPayload>;
|
|
88845
89381
|
graphIntegration_mcpAdminManagementTriggerToolSync?: Maybe<GraphIntegrationMcpAdminManagementTriggerToolSyncPayload>;
|
|
88846
89382
|
graphIntegration_mcpAdminManagementUnregisterMcpServer?: Maybe<GraphIntegrationMcpAdminManagementUnregisterMcpServerPayload>;
|
|
88847
89383
|
graphIntegration_mcpAdminManagementUpdateMcpToolConfiguration?: Maybe<GraphIntegrationMcpAdminManagementUpdateMcpToolConfigurationPayload>;
|
|
89384
|
+
graphIntegration_removeTwgCapabilityContainer?: Maybe<GraphIntegrationRemoveTwgCapabilityContainerPayload>;
|
|
89385
|
+
graphIntegration_updateDataConnectorConnection?: Maybe<GraphIntegrationUpdateConnectionPayload>;
|
|
88848
89386
|
graphStore?: Maybe<GraphStoreMutation>;
|
|
88849
89387
|
growthUnifiedProfile_createEntitlementProfile?: Maybe<GrowthUnifiedProfileCreateEntitlementProfileResponse>;
|
|
88850
89388
|
growthUnifiedProfile_createOrgProfile?: Maybe<GrowthUnifiedProfileTwcCreateOrgProfileResponse>;
|
|
@@ -89685,6 +90223,10 @@ export declare type MutationConfluence_NbmBulkUpdateVerificationEntryArgs = {
|
|
|
89685
90223
|
cloudId: Scalars['ID']['input'];
|
|
89686
90224
|
input: ConfluenceNbmBulkUpdateVerificationEntryInput;
|
|
89687
90225
|
};
|
|
90226
|
+
export declare type MutationConfluence_NbmRetryScanLongTaskArgs = {
|
|
90227
|
+
cloudId: Scalars['ID']['input'];
|
|
90228
|
+
input: ConfluenceNbmRetryScanLongTaskInput;
|
|
90229
|
+
};
|
|
89688
90230
|
export declare type MutationConfluence_NbmStartScanLongTaskArgs = {
|
|
89689
90231
|
cloudId: Scalars['ID']['input'];
|
|
89690
90232
|
input: ConfluenceNbmStartScanLongTaskInput;
|
|
@@ -89827,12 +90369,18 @@ export declare type MutationCpls_AddContributorScopeAssociationArgs = {
|
|
|
89827
90369
|
export declare type MutationCpls_AddContributorWorkAssociationArgs = {
|
|
89828
90370
|
input: CplsAddContributorWorkAssociationInput;
|
|
89829
90371
|
};
|
|
90372
|
+
export declare type MutationCpls_CreateCustomContributionTargetArgs = {
|
|
90373
|
+
input: CplsCreateCustomContributionTargetInput;
|
|
90374
|
+
};
|
|
89830
90375
|
export declare type MutationCpls_DeleteContributorScopeAssociationArgs = {
|
|
89831
90376
|
input: CplsDeleteContributorScopeAssociationInput;
|
|
89832
90377
|
};
|
|
89833
90378
|
export declare type MutationCpls_DeleteContributorWorkAssociationArgs = {
|
|
89834
90379
|
input: CplsDeleteContributorWorkAssociationInput;
|
|
89835
90380
|
};
|
|
90381
|
+
export declare type MutationCpls_UpdateCustomContributionTargetArgs = {
|
|
90382
|
+
input: CplsUpdateCustomContributionTargetInput;
|
|
90383
|
+
};
|
|
89836
90384
|
export declare type MutationCreateAdminAnnouncementBannerArgs = {
|
|
89837
90385
|
announcementBanner: ConfluenceCreateAdminAnnouncementBannerInput;
|
|
89838
90386
|
};
|
|
@@ -90355,6 +90903,15 @@ export declare type MutationGoals_ShareGoalArgs = {
|
|
|
90355
90903
|
export declare type MutationGrantContentAccessArgs = {
|
|
90356
90904
|
grantContentAccessInput: GrantContentAccessInput;
|
|
90357
90905
|
};
|
|
90906
|
+
export declare type MutationGraphIntegration_AddTwgCapabilityContainerArgs = {
|
|
90907
|
+
input: GraphIntegrationAddTwgCapabilityContainerInput;
|
|
90908
|
+
};
|
|
90909
|
+
export declare type MutationGraphIntegration_CreateDataConnectorConnectionArgs = {
|
|
90910
|
+
input: GraphIntegrationCreateDataConnectorConnectionInput;
|
|
90911
|
+
};
|
|
90912
|
+
export declare type MutationGraphIntegration_DeleteDataConnectorConnectionArgs = {
|
|
90913
|
+
input: GraphIntegrationDeleteDataConnectorConnectionInput;
|
|
90914
|
+
};
|
|
90358
90915
|
export declare type MutationGraphIntegration_McpAdminManagementRegisterMcpServerArgs = {
|
|
90359
90916
|
input: GraphIntegrationMcpAdminManagementRegisterMcpServerInput;
|
|
90360
90917
|
};
|
|
@@ -90367,6 +90924,12 @@ export declare type MutationGraphIntegration_McpAdminManagementUnregisterMcpServ
|
|
|
90367
90924
|
export declare type MutationGraphIntegration_McpAdminManagementUpdateMcpToolConfigurationArgs = {
|
|
90368
90925
|
input: GraphIntegrationMcpAdminManagementUpdateMcpToolConfigurationInput;
|
|
90369
90926
|
};
|
|
90927
|
+
export declare type MutationGraphIntegration_RemoveTwgCapabilityContainerArgs = {
|
|
90928
|
+
input: GraphIntegrationRemoveTwgCapabilityContainerInput;
|
|
90929
|
+
};
|
|
90930
|
+
export declare type MutationGraphIntegration_UpdateDataConnectorConnectionArgs = {
|
|
90931
|
+
input: GraphIntegrationUpdateDataConnectorConnectionInput;
|
|
90932
|
+
};
|
|
90370
90933
|
export declare type MutationGrowthUnifiedProfile_CreateEntitlementProfileArgs = {
|
|
90371
90934
|
profile: GrowthUnifiedProfileCreateEntitlementProfileInput;
|
|
90372
90935
|
};
|
|
@@ -92563,6 +93126,7 @@ export declare type PageRestrictions = {
|
|
|
92563
93126
|
update?: Maybe<PageRestriction>;
|
|
92564
93127
|
};
|
|
92565
93128
|
export declare type PageRestrictionsInput = {
|
|
93129
|
+
includeInvites?: InputMaybe<Scalars['Boolean']['input']>;
|
|
92566
93130
|
read?: InputMaybe<PageRestrictionInput>;
|
|
92567
93131
|
update?: InputMaybe<PageRestrictionInput>;
|
|
92568
93132
|
};
|
|
@@ -93232,27 +93796,28 @@ export declare enum Platform {
|
|
|
93232
93796
|
Web = "WEB"
|
|
93233
93797
|
}
|
|
93234
93798
|
export declare enum PlaybookTemplateCategory {
|
|
93235
|
-
DevOps = "DEV_OPS",
|
|
93236
93799
|
Hrsm = "HRSM",
|
|
93237
|
-
|
|
93238
|
-
|
|
93239
|
-
SecOps = "SEC_OPS"
|
|
93800
|
+
Itsm = "ITSM",
|
|
93801
|
+
ItOperations = "IT_OPERATIONS"
|
|
93240
93802
|
}
|
|
93241
93803
|
export declare enum PlaybookTemplateColor {
|
|
93242
93804
|
Blue = "BLUE",
|
|
93243
93805
|
Gray = "GRAY",
|
|
93244
93806
|
Green = "GREEN",
|
|
93807
|
+
Lime = "LIME",
|
|
93808
|
+
Magenta = "MAGENTA",
|
|
93809
|
+
Orange = "ORANGE",
|
|
93245
93810
|
Purple = "PURPLE",
|
|
93811
|
+
Teal = "TEAL",
|
|
93246
93812
|
Yellow = "YELLOW"
|
|
93247
93813
|
}
|
|
93248
93814
|
export declare enum PlaybookTemplateIcon {
|
|
93249
|
-
|
|
93250
|
-
|
|
93251
|
-
|
|
93252
|
-
|
|
93253
|
-
|
|
93254
|
-
|
|
93255
|
-
SpotGeneralSearchErrorIcon = "SPOT_GENERAL_SEARCH_ERROR_ICON"
|
|
93815
|
+
ChangeManagement_4Icon = "CHANGE_MANAGEMENT_4_ICON",
|
|
93816
|
+
Chat_5Icon = "CHAT_5_ICON",
|
|
93817
|
+
DataPrivacyIcon = "DATA_PRIVACY_ICON",
|
|
93818
|
+
OnboardingIcon = "ONBOARDING_ICON",
|
|
93819
|
+
RainstormIncidentIcon = "RAINSTORM_INCIDENT_ICON",
|
|
93820
|
+
RefreshUpdateIcon = "REFRESH_UPDATE_ICON"
|
|
93256
93821
|
}
|
|
93257
93822
|
export declare type PokemonEntity = {
|
|
93258
93823
|
__typename?: 'PokemonEntity';
|
|
@@ -94330,6 +94895,7 @@ export declare type Query = {
|
|
|
94330
94895
|
agentStudio_getAgents?: Maybe<AgentStudioAgentsConnection>;
|
|
94331
94896
|
agentStudio_getByExternalReference?: Maybe<AgentStudioAgentResult>;
|
|
94332
94897
|
agentStudio_getCreateAgentPermissions?: Maybe<AgentStudioAgentCreatePermissionsConnection>;
|
|
94898
|
+
agentStudio_getToolsByIdAndSource?: Maybe<Array<AgentStudioTool>>;
|
|
94333
94899
|
agentStudio_scenarioById?: Maybe<AgentStudioScenarioResult>;
|
|
94334
94900
|
agentStudio_scenarioListByContainerId?: Maybe<AgentStudioScenariosResult>;
|
|
94335
94901
|
agentStudio_scenariosByIds?: Maybe<Array<Maybe<AgentStudioScenario>>>;
|
|
@@ -94412,11 +94978,13 @@ export declare type Query = {
|
|
|
94412
94978
|
catchupGetLastViewedTime?: Maybe<CatchupLastViewedTimeResponse>;
|
|
94413
94979
|
catchupVersionDiffMetadataForContent?: Maybe<CatchupVersionDiffMetadataResponse>;
|
|
94414
94980
|
ccp?: Maybe<CcpQueryApi>;
|
|
94981
|
+
channelPlatform_chatRequestDetails?: Maybe<ChannelPlatformGetChannelTokenResponse>;
|
|
94415
94982
|
channelPlatform_evaluateChannelAvailability?: Maybe<ChannelPlatformChannelAvailabilityResponse>;
|
|
94416
94983
|
channelPlatform_getAgentIdForAaid?: Maybe<Scalars['String']['output']>;
|
|
94417
94984
|
channelPlatform_getChannelToken?: Maybe<ChannelPlatformGetChannelTokenResponse>;
|
|
94418
94985
|
channelPlatform_getConnectDetails?: Maybe<ChannelPlatformConnectDetails>;
|
|
94419
94986
|
channelPlatform_getContactDetails?: Maybe<Array<Maybe<ChannelPlatformContact>>>;
|
|
94987
|
+
channelPlatform_getConversationId?: Maybe<ChannelPlatformGetContactIdResponse>;
|
|
94420
94988
|
channelPlatform_getQueue?: Maybe<ChannelPlatformConnectQueue>;
|
|
94421
94989
|
channelPlatform_getQuickResponse?: Maybe<ChannelPlatformQuickResponse>;
|
|
94422
94990
|
channelPlatform_getSurveyLink?: Maybe<ChannelPlatformSurveyLinkResponse>;
|
|
@@ -94447,7 +95015,10 @@ export declare type Query = {
|
|
|
94447
95015
|
confluence_calendarJiraDateFieldsByJql?: Maybe<Array<Maybe<ConfluenceCalendarJiraDateField>>>;
|
|
94448
95016
|
confluence_calendarJiraDateFieldsBySearchFilter?: Maybe<Array<Maybe<ConfluenceCalendarJiraDateField>>>;
|
|
94449
95017
|
confluence_calendarPreference?: Maybe<ConfluenceCalendarPreference>;
|
|
95018
|
+
confluence_calendarRestrictionById?: Maybe<ConfluenceCalendarRestriction>;
|
|
95019
|
+
confluence_calendarSubscriptionInfoById?: Maybe<ConfluenceCalendarSubscriptionInfo>;
|
|
94450
95020
|
confluence_calendarTimezones?: Maybe<ConfluenceCalendarTimezones>;
|
|
95021
|
+
confluence_calendarsByCriteria?: Maybe<ConfluenceCalendarConnection>;
|
|
94451
95022
|
confluence_categorizeNbmChains?: Maybe<ConfluenceCategorizeNbmChainsResult>;
|
|
94452
95023
|
confluence_commentMediaSession?: Maybe<ContentMediaSession>;
|
|
94453
95024
|
confluence_contentAISummaries?: Maybe<Array<Maybe<ConfluenceContentAiSummaryResponse>>>;
|
|
@@ -94503,6 +95074,7 @@ export declare type Query = {
|
|
|
94503
95074
|
confluence_searchTeamLabels?: Maybe<LabelSearchResults>;
|
|
94504
95075
|
confluence_searchUser?: Maybe<ConfluenceSearchConnection>;
|
|
94505
95076
|
confluence_spaceMediaSession?: Maybe<ContentMediaSession>;
|
|
95077
|
+
confluence_spaceRecommendations?: Maybe<ConfluenceSpaceRecommendations>;
|
|
94506
95078
|
confluence_spaceRoleMode?: Maybe<ConfluenceSpaceRoleMode>;
|
|
94507
95079
|
confluence_spaceWatchersUnfiltered?: Maybe<PaginatedPersonList>;
|
|
94508
95080
|
confluence_storage?: Maybe<ConfluenceStorage>;
|
|
@@ -94693,6 +95265,7 @@ export declare type Query = {
|
|
|
94693
95265
|
goals_metricTargetsByIds?: Maybe<Array<Maybe<TownsquareMetricTarget>>>;
|
|
94694
95266
|
goals_metricValuesByIds?: Maybe<Array<Maybe<TownsquareMetricValue>>>;
|
|
94695
95267
|
goals_metricsByIds?: Maybe<Array<Maybe<TownsquareMetric>>>;
|
|
95268
|
+
graphIntegration_availableTwgCapabilityContainers?: Maybe<GraphIntegrationTwgCapabilityContainerListItemConnection>;
|
|
94696
95269
|
graphIntegration_componentDirectoryDimensions?: Maybe<GraphIntegrationDirectoryFilterDimensionConnection>;
|
|
94697
95270
|
graphIntegration_componentDirectoryItems?: Maybe<GraphIntegrationDirectoryItemConnection>;
|
|
94698
95271
|
graphIntegration_mcpAdminManagementMcpServer?: Maybe<GraphIntegrationMcpAdminManagementMcpServerNode>;
|
|
@@ -94700,6 +95273,8 @@ export declare type Query = {
|
|
|
94700
95273
|
graphIntegration_mcpAdminManagementMcpServers?: Maybe<GraphIntegrationMcpAdminManagementMcpServerConnection>;
|
|
94701
95274
|
graphIntegration_mcpAdminManagementMcpTools?: Maybe<GraphIntegrationMcpAdminManagementMcpToolConnection>;
|
|
94702
95275
|
graphIntegration_mcpServers?: Maybe<Array<Maybe<GraphIntegrationMcpServerNode>>>;
|
|
95276
|
+
graphIntegration_twgCapabilityContainer?: Maybe<GraphIntegrationTwgCapabilityContainer>;
|
|
95277
|
+
graphIntegration_twgCapabilityContainersInContext?: Maybe<GraphIntegrationTwgCapabilityContainerListItemConnection>;
|
|
94703
95278
|
graphStore?: Maybe<GraphStore>;
|
|
94704
95279
|
group?: Maybe<Group>;
|
|
94705
95280
|
groupCounts?: Maybe<GraphQlGroupCountsResult>;
|
|
@@ -95212,6 +95787,10 @@ export declare type QueryAgentStudio_GetByExternalReferenceArgs = {
|
|
|
95212
95787
|
export declare type QueryAgentStudio_GetCreateAgentPermissionsArgs = {
|
|
95213
95788
|
cloudId: Scalars['String']['input'];
|
|
95214
95789
|
};
|
|
95790
|
+
export declare type QueryAgentStudio_GetToolsByIdAndSourceArgs = {
|
|
95791
|
+
cloudId: Scalars['String']['input'];
|
|
95792
|
+
toolsToFetch: Array<AgentStudioToolIdAndSource>;
|
|
95793
|
+
};
|
|
95215
95794
|
export declare type QueryAgentStudio_ScenarioByIdArgs = {
|
|
95216
95795
|
containerId: Scalars['ID']['input'];
|
|
95217
95796
|
id: Scalars['ID']['input'];
|
|
@@ -95605,6 +96184,9 @@ export declare type QueryCatchupVersionDiffMetadataForContentArgs = {
|
|
|
95605
96184
|
originalContentVersion: Scalars['Int']['input'];
|
|
95606
96185
|
revisedContentVersion: Scalars['Int']['input'];
|
|
95607
96186
|
};
|
|
96187
|
+
export declare type QueryChannelPlatform_ChatRequestDetailsArgs = {
|
|
96188
|
+
request?: InputMaybe<ChannelPlatformChatRequestDetailsRequest>;
|
|
96189
|
+
};
|
|
95608
96190
|
export declare type QueryChannelPlatform_EvaluateChannelAvailabilityArgs = {
|
|
95609
96191
|
request?: InputMaybe<ChannelPlatformChannelAvailabilityRequestInput>;
|
|
95610
96192
|
};
|
|
@@ -95742,9 +96324,28 @@ export declare type QueryConfluence_CalendarJiraDateFieldsBySearchFilterArgs = {
|
|
|
95742
96324
|
export declare type QueryConfluence_CalendarPreferenceArgs = {
|
|
95743
96325
|
cloudId: Scalars['ID']['input'];
|
|
95744
96326
|
};
|
|
96327
|
+
export declare type QueryConfluence_CalendarRestrictionByIdArgs = {
|
|
96328
|
+
id: Scalars['ID']['input'];
|
|
96329
|
+
};
|
|
96330
|
+
export declare type QueryConfluence_CalendarSubscriptionInfoByIdArgs = {
|
|
96331
|
+
id: Scalars['ID']['input'];
|
|
96332
|
+
includeSubscriptionsFromContent?: InputMaybe<Scalars['Boolean']['input']>;
|
|
96333
|
+
spaceKey?: InputMaybe<Scalars['String']['input']>;
|
|
96334
|
+
};
|
|
95745
96335
|
export declare type QueryConfluence_CalendarTimezonesArgs = {
|
|
95746
96336
|
cloudId: Scalars['ID']['input'];
|
|
95747
96337
|
};
|
|
96338
|
+
export declare type QueryConfluence_CalendarsByCriteriaArgs = {
|
|
96339
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
96340
|
+
before?: InputMaybe<Scalars['String']['input']>;
|
|
96341
|
+
calendarContext?: InputMaybe<Scalars['String']['input']>;
|
|
96342
|
+
calendarIds?: InputMaybe<Array<InputMaybe<Scalars['ID']['input']>>>;
|
|
96343
|
+
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
96344
|
+
cql?: InputMaybe<Scalars['String']['input']>;
|
|
96345
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
96346
|
+
last?: InputMaybe<Scalars['Int']['input']>;
|
|
96347
|
+
viewingSpaceKey?: InputMaybe<Scalars['String']['input']>;
|
|
96348
|
+
};
|
|
95748
96349
|
export declare type QueryConfluence_CategorizeNbmChainsArgs = {
|
|
95749
96350
|
cloudId: Scalars['ID']['input'];
|
|
95750
96351
|
nbmChains: Array<InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>>;
|
|
@@ -95929,7 +96530,9 @@ export declare type QueryConfluence_NbmScanResultArgs = {
|
|
|
95929
96530
|
export declare type QueryConfluence_NbmVerificationResultArgs = {
|
|
95930
96531
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
95931
96532
|
cloudId: Scalars['ID']['input'];
|
|
96533
|
+
direction?: InputMaybe<ConfluenceNbmVerificationResultDirection>;
|
|
95932
96534
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
96535
|
+
orderBy?: InputMaybe<ConfluenceNbmVerificationResultOrder>;
|
|
95933
96536
|
scanId: Scalars['ID']['input'];
|
|
95934
96537
|
};
|
|
95935
96538
|
export declare type QueryConfluence_NoteArgs = {
|
|
@@ -96022,6 +96625,12 @@ export declare type QueryConfluence_SpaceMediaSessionArgs = {
|
|
|
96022
96625
|
contentType: Scalars['String']['input'];
|
|
96023
96626
|
spaceKey: Scalars['String']['input'];
|
|
96024
96627
|
};
|
|
96628
|
+
export declare type QueryConfluence_SpaceRecommendationsArgs = {
|
|
96629
|
+
cloudId: Scalars['ID']['input'];
|
|
96630
|
+
eventTypes?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
|
|
96631
|
+
limit?: InputMaybe<Scalars['Int']['input']>;
|
|
96632
|
+
startTime?: InputMaybe<Scalars['String']['input']>;
|
|
96633
|
+
};
|
|
96025
96634
|
export declare type QueryConfluence_SpaceRoleModeArgs = {
|
|
96026
96635
|
cloudId: Scalars['ID']['input'];
|
|
96027
96636
|
};
|
|
@@ -96858,6 +97467,13 @@ export declare type QueryGoals_MetricValuesByIdsArgs = {
|
|
|
96858
97467
|
export declare type QueryGoals_MetricsByIdsArgs = {
|
|
96859
97468
|
metricIds: Array<Scalars['ID']['input']>;
|
|
96860
97469
|
};
|
|
97470
|
+
export declare type QueryGraphIntegration_AvailableTwgCapabilityContainersArgs = {
|
|
97471
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
97472
|
+
before?: InputMaybe<Scalars['String']['input']>;
|
|
97473
|
+
contextAri: Scalars['ID']['input'];
|
|
97474
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
97475
|
+
last?: InputMaybe<Scalars['Int']['input']>;
|
|
97476
|
+
};
|
|
96861
97477
|
export declare type QueryGraphIntegration_ComponentDirectoryDimensionsArgs = {
|
|
96862
97478
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
96863
97479
|
cloudId: Scalars['ID']['input'];
|
|
@@ -96895,6 +97511,17 @@ export declare type QueryGraphIntegration_McpAdminManagementMcpToolsArgs = {
|
|
|
96895
97511
|
export declare type QueryGraphIntegration_McpServersArgs = {
|
|
96896
97512
|
ids: Array<Scalars['ID']['input']>;
|
|
96897
97513
|
};
|
|
97514
|
+
export declare type QueryGraphIntegration_TwgCapabilityContainerArgs = {
|
|
97515
|
+
contextAri: Scalars['ID']['input'];
|
|
97516
|
+
productAri: Scalars['ID']['input'];
|
|
97517
|
+
};
|
|
97518
|
+
export declare type QueryGraphIntegration_TwgCapabilityContainersInContextArgs = {
|
|
97519
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
97520
|
+
before?: InputMaybe<Scalars['String']['input']>;
|
|
97521
|
+
contextAri: Scalars['ID']['input'];
|
|
97522
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
97523
|
+
last?: InputMaybe<Scalars['Int']['input']>;
|
|
97524
|
+
};
|
|
96898
97525
|
export declare type QueryGroupArgs = {
|
|
96899
97526
|
groupId?: InputMaybe<Scalars['String']['input']>;
|
|
96900
97527
|
groupName?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -97995,6 +98622,7 @@ export declare type QueryStakeholderComms_ListStakeholdersArgs = {
|
|
|
97995
98622
|
filter?: InputMaybe<StakeholderCommsStakeholderConnectionFilter>;
|
|
97996
98623
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
97997
98624
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
98625
|
+
order?: InputMaybe<StakeholderCommsStakeholderConnectionOrder>;
|
|
97998
98626
|
search?: InputMaybe<StakeholderCommsStakeholderConnectionSearch>;
|
|
97999
98627
|
};
|
|
98000
98628
|
export declare type QueryStalePagesArgs = {
|
|
@@ -98489,6 +99117,7 @@ export declare type RadarGroupMetrics = {
|
|
|
98489
99117
|
__typename?: 'RadarGroupMetrics';
|
|
98490
99118
|
count: Scalars['Int']['output'];
|
|
98491
99119
|
field: RadarFieldValueIdPair;
|
|
99120
|
+
positionLaborCostEstimateTotal?: Maybe<RadarMoney>;
|
|
98492
99121
|
subGroups?: Maybe<RadarGroupMetricsConnection>;
|
|
98493
99122
|
};
|
|
98494
99123
|
export declare type RadarGroupMetricsSubGroupsArgs = {
|
|
@@ -100779,8 +101408,11 @@ export declare type SearchL2FeatureProvider = {
|
|
|
100779
101408
|
};
|
|
100780
101409
|
export declare type SearchLayerDefinition = {
|
|
100781
101410
|
abTestId?: InputMaybe<Scalars['String']['input']>;
|
|
101411
|
+
connectorSources?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
|
|
100782
101412
|
entity?: InputMaybe<Scalars['String']['input']>;
|
|
101413
|
+
integrationARI?: InputMaybe<Scalars['String']['input']>;
|
|
100783
101414
|
layerId?: InputMaybe<Scalars['String']['input']>;
|
|
101415
|
+
providerId?: InputMaybe<Scalars['String']['input']>;
|
|
100784
101416
|
shadowId?: InputMaybe<Scalars['String']['input']>;
|
|
100785
101417
|
subEntity?: InputMaybe<Scalars['String']['input']>;
|
|
100786
101418
|
};
|
|
@@ -122285,6 +122917,10 @@ export declare type StakeholderCommsNotificationPreferenceInput = {
|
|
|
122285
122917
|
preference?: InputMaybe<StakeholderCommsPreferencesInput>;
|
|
122286
122918
|
webhook?: InputMaybe<Scalars['String']['input']>;
|
|
122287
122919
|
};
|
|
122920
|
+
export declare enum StakeholderCommsOrderType {
|
|
122921
|
+
EmailId = "EMAIL_ID",
|
|
122922
|
+
Status = "STATUS"
|
|
122923
|
+
}
|
|
122288
122924
|
export declare type StakeholderCommsPage = {
|
|
122289
122925
|
__typename?: 'StakeholderCommsPage';
|
|
122290
122926
|
activityScore?: Maybe<Scalars['Int']['output']>;
|
|
@@ -122456,6 +123092,10 @@ export declare type StakeholderCommsStakeholderConnectionInput = {
|
|
|
122456
123092
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
122457
123093
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
122458
123094
|
};
|
|
123095
|
+
export declare type StakeholderCommsStakeholderConnectionOrder = {
|
|
123096
|
+
descending?: InputMaybe<Scalars['Boolean']['input']>;
|
|
123097
|
+
orderBy?: InputMaybe<StakeholderCommsOrderType>;
|
|
123098
|
+
};
|
|
122459
123099
|
export declare type StakeholderCommsStakeholderConnectionSearch = {
|
|
122460
123100
|
searchField?: InputMaybe<StakeholderCommsSearchField>;
|
|
122461
123101
|
searchValue?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -126369,8 +127009,11 @@ export declare type TrelloBaseCard = {
|
|
|
126369
127009
|
pinned?: Maybe<Scalars['Boolean']['output']>;
|
|
126370
127010
|
position?: Maybe<Scalars['Float']['output']>;
|
|
126371
127011
|
role?: Maybe<TrelloCardRole>;
|
|
127012
|
+
shortLink?: Maybe<Scalars['TrelloShortLink']['output']>;
|
|
127013
|
+
shortUrl?: Maybe<Scalars['URL']['output']>;
|
|
126372
127014
|
singleInstrumentationId?: Maybe<Scalars['String']['output']>;
|
|
126373
127015
|
startedAt?: Maybe<Scalars['DateTime']['output']>;
|
|
127016
|
+
url?: Maybe<Scalars['URL']['output']>;
|
|
126374
127017
|
};
|
|
126375
127018
|
export declare type TrelloBaseCardActionsArgs = {
|
|
126376
127019
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -127699,8 +128342,11 @@ export declare type TrelloInboxCard = TrelloBaseCard & {
|
|
|
127699
128342
|
pinned?: Maybe<Scalars['Boolean']['output']>;
|
|
127700
128343
|
position?: Maybe<Scalars['Float']['output']>;
|
|
127701
128344
|
role?: Maybe<TrelloCardRole>;
|
|
128345
|
+
shortLink?: Maybe<Scalars['TrelloShortLink']['output']>;
|
|
128346
|
+
shortUrl?: Maybe<Scalars['URL']['output']>;
|
|
127702
128347
|
singleInstrumentationId?: Maybe<Scalars['String']['output']>;
|
|
127703
128348
|
startedAt?: Maybe<Scalars['DateTime']['output']>;
|
|
128349
|
+
url?: Maybe<Scalars['URL']['output']>;
|
|
127704
128350
|
};
|
|
127705
128351
|
export declare type TrelloInboxCardActionsArgs = {
|
|
127706
128352
|
after?: InputMaybe<Scalars['String']['input']>;
|