@forge/cli-shared 8.6.0-next.1 → 8.6.0-next.2
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 +7 -0
- package/out/graphql/graphql-types.d.ts +618 -28
- package/out/graphql/graphql-types.d.ts.map +1 -1
- package/out/graphql/graphql-types.js +44 -29
- 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']>;
|
|
@@ -2266,6 +2270,7 @@ export declare type AgentStudioAgentsConnection = {
|
|
|
2266
2270
|
export declare type AgentStudioAssistant = AgentStudioAgent & Node & {
|
|
2267
2271
|
__typename?: 'AgentStudioAssistant';
|
|
2268
2272
|
actions?: Maybe<AgentStudioActionConfiguration>;
|
|
2273
|
+
authoringTeam?: Maybe<TeamV2>;
|
|
2269
2274
|
behaviour?: Maybe<Scalars['String']['output']>;
|
|
2270
2275
|
connectedChannels?: Maybe<AgentStudioConnectedChannels>;
|
|
2271
2276
|
conversationStarters?: Maybe<Array<Scalars['String']['output']>>;
|
|
@@ -2296,9 +2301,13 @@ export declare type AgentStudioAssistantScenario = AgentStudioScenario & Node &
|
|
|
2296
2301
|
isDefault: Scalars['Boolean']['output'];
|
|
2297
2302
|
isValid: AgentStudioScenarioValidation;
|
|
2298
2303
|
knowledgeSources?: Maybe<AgentStudioKnowledgeConfiguration>;
|
|
2304
|
+
mcpServers?: Maybe<Array<Maybe<GraphIntegrationMcpServerNode>>>;
|
|
2299
2305
|
name: Scalars['String']['output'];
|
|
2300
2306
|
tools?: Maybe<Array<AgentStudioTool>>;
|
|
2301
2307
|
};
|
|
2308
|
+
export declare type AgentStudioAuthoringTeamInput = {
|
|
2309
|
+
authoringTeamID?: InputMaybe<Scalars['String']['input']>;
|
|
2310
|
+
};
|
|
2302
2311
|
export declare type AgentStudioChannel = {
|
|
2303
2312
|
connected?: Maybe<Scalars['Boolean']['output']>;
|
|
2304
2313
|
};
|
|
@@ -2326,6 +2335,7 @@ export declare type AgentStudioConversationStarterSuggestions = {
|
|
|
2326
2335
|
export declare type AgentStudioCreateAgentInput = {
|
|
2327
2336
|
actions?: InputMaybe<AgentStudioActionConfigurationInput>;
|
|
2328
2337
|
agentType: AgentStudioAgentType;
|
|
2338
|
+
authoringTeam?: InputMaybe<AgentStudioAuthoringTeamInput>;
|
|
2329
2339
|
behaviour?: InputMaybe<Scalars['String']['input']>;
|
|
2330
2340
|
conversationStarters?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
2331
2341
|
defaultJiraRequestTypeId?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -2463,6 +2473,7 @@ export declare type AgentStudioScenario = {
|
|
|
2463
2473
|
isDefault: Scalars['Boolean']['output'];
|
|
2464
2474
|
isValid: AgentStudioScenarioValidation;
|
|
2465
2475
|
knowledgeSources?: Maybe<AgentStudioKnowledgeConfiguration>;
|
|
2476
|
+
mcpServers?: Maybe<Array<Maybe<GraphIntegrationMcpServerNode>>>;
|
|
2466
2477
|
name: Scalars['String']['output'];
|
|
2467
2478
|
tools?: Maybe<Array<AgentStudioTool>>;
|
|
2468
2479
|
};
|
|
@@ -2529,6 +2540,7 @@ export declare type AgentStudioScenariosResult = {
|
|
|
2529
2540
|
};
|
|
2530
2541
|
export declare type AgentStudioServiceAgent = AgentStudioAgent & Node & {
|
|
2531
2542
|
__typename?: 'AgentStudioServiceAgent';
|
|
2543
|
+
authoringTeam?: Maybe<TeamV2>;
|
|
2532
2544
|
connectedChannels?: Maybe<AgentStudioConnectedChannels>;
|
|
2533
2545
|
defaultJiraRequestTypeId?: Maybe<Scalars['String']['output']>;
|
|
2534
2546
|
description?: Maybe<Scalars['String']['output']>;
|
|
@@ -2609,6 +2621,10 @@ export declare type AgentStudioToolEdge = {
|
|
|
2609
2621
|
cursor: Scalars['String']['output'];
|
|
2610
2622
|
node?: Maybe<AgentStudioTool>;
|
|
2611
2623
|
};
|
|
2624
|
+
export declare type AgentStudioToolIdAndSource = {
|
|
2625
|
+
definitionSource: AgentStudioToolDefinitionSource;
|
|
2626
|
+
toolId: Scalars['String']['input'];
|
|
2627
|
+
};
|
|
2612
2628
|
export declare type AgentStudioToolInput = {
|
|
2613
2629
|
definitionId: Scalars['String']['input'];
|
|
2614
2630
|
definitionSource: AgentStudioToolDefinitionSource;
|
|
@@ -2649,6 +2665,7 @@ export declare type AgentStudioUpdateAgentAsFavouritePayload = Payload & {
|
|
|
2649
2665
|
success: Scalars['Boolean']['output'];
|
|
2650
2666
|
};
|
|
2651
2667
|
export declare type AgentStudioUpdateAgentDetailsInput = {
|
|
2668
|
+
authoringTeam?: InputMaybe<AgentStudioAuthoringTeamInput>;
|
|
2652
2669
|
behaviour?: InputMaybe<Scalars['String']['input']>;
|
|
2653
2670
|
creatorId?: InputMaybe<Scalars['ID']['input']>;
|
|
2654
2671
|
defaultJiraRequestTypeId?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -14343,12 +14360,84 @@ export declare type ConfluenceBulkPdfExportContent = {
|
|
|
14343
14360
|
contentId: Scalars['ID']['input'];
|
|
14344
14361
|
excludedChildrenIds?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
|
|
14345
14362
|
};
|
|
14363
|
+
export declare type ConfluenceCalendar = {
|
|
14364
|
+
__typename?: 'ConfluenceCalendar';
|
|
14365
|
+
childCalendarIds?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
|
|
14366
|
+
childCalendars?: Maybe<ConfluenceCalendarConnection>;
|
|
14367
|
+
color?: Maybe<Scalars['String']['output']>;
|
|
14368
|
+
creator?: Maybe<Scalars['String']['output']>;
|
|
14369
|
+
customEventTypes: Array<Maybe<ConfluenceCalendarCustomEventType>>;
|
|
14370
|
+
description?: Maybe<Scalars['String']['output']>;
|
|
14371
|
+
disableEventTypes: Array<Maybe<Scalars['String']['output']>>;
|
|
14372
|
+
eventTypeReminders: Array<Maybe<ConfluenceCalendarEventTypeReminder>>;
|
|
14373
|
+
groupsPermittedToEdit: Array<Maybe<Group>>;
|
|
14374
|
+
groupsPermittedToView: Array<Maybe<Group>>;
|
|
14375
|
+
id: Scalars['ID']['output'];
|
|
14376
|
+
jiraProperties?: Maybe<ConfluenceCalendarJiraProperties>;
|
|
14377
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
14378
|
+
parentId?: Maybe<Scalars['ID']['output']>;
|
|
14379
|
+
remindMe?: Maybe<Scalars['Boolean']['output']>;
|
|
14380
|
+
restriction?: Maybe<ConfluenceCalendarRestriction>;
|
|
14381
|
+
sourceLocation?: Maybe<Scalars['String']['output']>;
|
|
14382
|
+
spaceKey?: Maybe<Scalars['String']['output']>;
|
|
14383
|
+
spaceName?: Maybe<Scalars['String']['output']>;
|
|
14384
|
+
subscriptionInfo?: Maybe<ConfluenceCalendarSubscriptionInfo>;
|
|
14385
|
+
subscriptionType?: Maybe<Scalars['String']['output']>;
|
|
14386
|
+
timeZoneId?: Maybe<Scalars['String']['output']>;
|
|
14387
|
+
type?: Maybe<Scalars['String']['output']>;
|
|
14388
|
+
userIdsPermittedToEdit: Array<Maybe<Scalars['String']['output']>>;
|
|
14389
|
+
userIdsPermittedToView: Array<Maybe<Scalars['String']['output']>>;
|
|
14390
|
+
usersPermittedToEdit?: Maybe<Array<Maybe<Person>>>;
|
|
14391
|
+
usersPermittedToView?: Maybe<Array<Maybe<Person>>>;
|
|
14392
|
+
warnings?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
|
|
14393
|
+
};
|
|
14394
|
+
export declare type ConfluenceCalendarConnection = {
|
|
14395
|
+
__typename?: 'ConfluenceCalendarConnection';
|
|
14396
|
+
count?: Maybe<Scalars['Int']['output']>;
|
|
14397
|
+
edges?: Maybe<Array<Maybe<ConfluenceCalendarEdge>>>;
|
|
14398
|
+
links?: Maybe<LinksContextBase>;
|
|
14399
|
+
nodes?: Maybe<Array<Maybe<ConfluenceCalendar>>>;
|
|
14400
|
+
pageInfo?: Maybe<PageInfo>;
|
|
14401
|
+
};
|
|
14402
|
+
export declare type ConfluenceCalendarCustomEventType = {
|
|
14403
|
+
__typename?: 'ConfluenceCalendarCustomEventType';
|
|
14404
|
+
calendarId?: Maybe<Scalars['ID']['output']>;
|
|
14405
|
+
created?: Maybe<Scalars['String']['output']>;
|
|
14406
|
+
icon?: Maybe<Scalars['String']['output']>;
|
|
14407
|
+
id: Scalars['ID']['output'];
|
|
14408
|
+
periodInMins: Scalars['Int']['output'];
|
|
14409
|
+
title?: Maybe<Scalars['String']['output']>;
|
|
14410
|
+
};
|
|
14411
|
+
export declare type ConfluenceCalendarEdge = {
|
|
14412
|
+
__typename?: 'ConfluenceCalendarEdge';
|
|
14413
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
14414
|
+
node?: Maybe<ConfluenceCalendar>;
|
|
14415
|
+
};
|
|
14416
|
+
export declare type ConfluenceCalendarEventTypeReminder = {
|
|
14417
|
+
__typename?: 'ConfluenceCalendarEventTypeReminder';
|
|
14418
|
+
customEventType: Scalars['Boolean']['output'];
|
|
14419
|
+
id: Scalars['ID']['output'];
|
|
14420
|
+
isCustomEventType: Scalars['Boolean']['output'];
|
|
14421
|
+
periodInMins: Scalars['Int']['output'];
|
|
14422
|
+
};
|
|
14346
14423
|
export declare type ConfluenceCalendarJiraDateField = {
|
|
14347
14424
|
__typename?: 'ConfluenceCalendarJiraDateField';
|
|
14348
14425
|
isCustomField: Scalars['Boolean']['output'];
|
|
14349
14426
|
key: Scalars['String']['output'];
|
|
14350
14427
|
name: Scalars['String']['output'];
|
|
14351
14428
|
};
|
|
14429
|
+
export declare type ConfluenceCalendarJiraProperties = {
|
|
14430
|
+
__typename?: 'ConfluenceCalendarJiraProperties';
|
|
14431
|
+
applicationId?: Maybe<Scalars['ID']['output']>;
|
|
14432
|
+
applicationName?: Maybe<Scalars['String']['output']>;
|
|
14433
|
+
dateFieldNames: Array<Maybe<Scalars['String']['output']>>;
|
|
14434
|
+
durations: Array<Maybe<ConfluenceJiraCalendarDuration>>;
|
|
14435
|
+
jql?: Maybe<Scalars['String']['output']>;
|
|
14436
|
+
projectKey?: Maybe<Scalars['String']['output']>;
|
|
14437
|
+
projectName?: Maybe<Scalars['String']['output']>;
|
|
14438
|
+
searchFilterId?: Maybe<Scalars['Long']['output']>;
|
|
14439
|
+
searchFilterName?: Maybe<Scalars['String']['output']>;
|
|
14440
|
+
};
|
|
14352
14441
|
export declare type ConfluenceCalendarJqlValidationResult = {
|
|
14353
14442
|
__typename?: 'ConfluenceCalendarJqlValidationResult';
|
|
14354
14443
|
errorMessages?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
|
|
@@ -14371,6 +14460,21 @@ export declare type ConfluenceCalendarPreference = {
|
|
|
14371
14460
|
view: Scalars['String']['output'];
|
|
14372
14461
|
watchedSubCalendars?: Maybe<Array<Maybe<Scalars['ID']['output']>>>;
|
|
14373
14462
|
};
|
|
14463
|
+
export declare type ConfluenceCalendarRestriction = {
|
|
14464
|
+
__typename?: 'ConfluenceCalendarRestriction';
|
|
14465
|
+
administrable: Scalars['Boolean']['output'];
|
|
14466
|
+
deletable: Scalars['Boolean']['output'];
|
|
14467
|
+
editable: Scalars['Boolean']['output'];
|
|
14468
|
+
eventsEditable: Scalars['Boolean']['output'];
|
|
14469
|
+
eventsHidden: Scalars['Boolean']['output'];
|
|
14470
|
+
eventsViewable: Scalars['Boolean']['output'];
|
|
14471
|
+
reloadable: Scalars['Boolean']['output'];
|
|
14472
|
+
};
|
|
14473
|
+
export declare type ConfluenceCalendarSubscriptionInfo = {
|
|
14474
|
+
__typename?: 'ConfluenceCalendarSubscriptionInfo';
|
|
14475
|
+
subscribedByCurrentUser: Scalars['Boolean']['output'];
|
|
14476
|
+
subscriberCount?: Maybe<Scalars['Int']['output']>;
|
|
14477
|
+
};
|
|
14374
14478
|
export declare type ConfluenceCalendarTimeZone = {
|
|
14375
14479
|
__typename?: 'ConfluenceCalendarTimeZone';
|
|
14376
14480
|
name?: Maybe<Scalars['String']['output']>;
|
|
@@ -15777,6 +15881,11 @@ export declare type ConfluenceInviteUserPayload = {
|
|
|
15777
15881
|
errors?: Maybe<Array<MutationError>>;
|
|
15778
15882
|
success: Scalars['Boolean']['output'];
|
|
15779
15883
|
};
|
|
15884
|
+
export declare type ConfluenceJiraCalendarDuration = {
|
|
15885
|
+
__typename?: 'ConfluenceJiraCalendarDuration';
|
|
15886
|
+
endDateFieldName?: Maybe<Scalars['String']['output']>;
|
|
15887
|
+
startDateFieldName?: Maybe<Scalars['String']['output']>;
|
|
15888
|
+
};
|
|
15780
15889
|
export declare type ConfluenceJiraMacroAppLinksScanningStatus = {
|
|
15781
15890
|
__typename?: 'ConfluenceJiraMacroAppLinksScanningStatus';
|
|
15782
15891
|
additionalMessage?: Maybe<Scalars['String']['output']>;
|
|
@@ -16222,31 +16331,12 @@ export declare type ConfluenceNbmBulkUpdateVerificationEntryPayload = Payload &
|
|
|
16222
16331
|
errors?: Maybe<Array<MutationError>>;
|
|
16223
16332
|
success: Scalars['Boolean']['output'];
|
|
16224
16333
|
};
|
|
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
16334
|
export declare enum ConfluenceNbmCategoryTypes {
|
|
16240
16335
|
NotSupported = "NOT_SUPPORTED",
|
|
16241
16336
|
Supported = "SUPPORTED",
|
|
16242
16337
|
SupportedWithMitigation = "SUPPORTED_WITH_MITIGATION",
|
|
16243
16338
|
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"
|
|
16339
|
+
Unverified = "UNVERIFIED"
|
|
16250
16340
|
}
|
|
16251
16341
|
export declare type ConfluenceNbmPageInfo = {
|
|
16252
16342
|
__typename?: 'ConfluenceNbmPageInfo';
|
|
@@ -16256,13 +16346,22 @@ export declare type ConfluenceNbmPageInfo = {
|
|
|
16256
16346
|
startCursor?: Maybe<Scalars['String']['output']>;
|
|
16257
16347
|
totalPages: Scalars['Int']['output'];
|
|
16258
16348
|
};
|
|
16259
|
-
export declare type
|
|
16260
|
-
|
|
16261
|
-
url?: Maybe<Scalars['String']['output']>;
|
|
16349
|
+
export declare type ConfluenceNbmRetryScanLongTaskInput = {
|
|
16350
|
+
scanId: Scalars['ID']['input'];
|
|
16262
16351
|
};
|
|
16263
|
-
export declare type
|
|
16264
|
-
__typename?: '
|
|
16265
|
-
|
|
16352
|
+
export declare type ConfluenceNbmRetryScanLongTaskPayload = {
|
|
16353
|
+
__typename?: 'ConfluenceNbmRetryScanLongTaskPayload';
|
|
16354
|
+
errors?: Maybe<Array<MutationError>>;
|
|
16355
|
+
scanId: Scalars['String']['output'];
|
|
16356
|
+
success: Scalars['Boolean']['output'];
|
|
16357
|
+
taskId: Scalars['String']['output'];
|
|
16358
|
+
};
|
|
16359
|
+
export declare type ConfluenceNbmScanCategory = {
|
|
16360
|
+
__typename?: 'ConfluenceNbmScanCategory';
|
|
16361
|
+
totalChains?: Maybe<Scalars['Long']['output']>;
|
|
16362
|
+
totalPages?: Maybe<Scalars['Long']['output']>;
|
|
16363
|
+
totalSpaces?: Maybe<Scalars['Long']['output']>;
|
|
16364
|
+
type: ConfluenceNbmCategoryTypes;
|
|
16266
16365
|
};
|
|
16267
16366
|
export declare type ConfluenceNbmScanConnection = {
|
|
16268
16367
|
__typename?: 'ConfluenceNbmScanConnection';
|
|
@@ -16277,9 +16376,8 @@ export declare type ConfluenceNbmScanEdge = {
|
|
|
16277
16376
|
};
|
|
16278
16377
|
export declare type ConfluenceNbmScanResult = {
|
|
16279
16378
|
__typename?: 'ConfluenceNbmScanResult';
|
|
16280
|
-
categories?: Maybe<Array<Maybe<
|
|
16379
|
+
categories?: Maybe<Array<Maybe<ConfluenceNbmScanCategory>>>;
|
|
16281
16380
|
id: Scalars['ID']['output'];
|
|
16282
|
-
resultFile?: Maybe<ConfluenceNbmResultFile>;
|
|
16283
16381
|
status: ConfluenceNbmScanStatus;
|
|
16284
16382
|
totalChains?: Maybe<Scalars['Long']['output']>;
|
|
16285
16383
|
totalPages?: Maybe<Scalars['Long']['output']>;
|
|
@@ -16300,6 +16398,7 @@ export declare type ConfluenceNbmScanSummary = {
|
|
|
16300
16398
|
id: Scalars['ID']['output'];
|
|
16301
16399
|
startTime?: Maybe<Scalars['String']['output']>;
|
|
16302
16400
|
status?: Maybe<ConfluenceNbmScanStatus>;
|
|
16401
|
+
taskId?: Maybe<Scalars['ID']['output']>;
|
|
16303
16402
|
totalNBMChains?: Maybe<Scalars['Int']['output']>;
|
|
16304
16403
|
totalPages?: Maybe<Scalars['Int']['output']>;
|
|
16305
16404
|
totalSpaces?: Maybe<Scalars['Int']['output']>;
|
|
@@ -16347,11 +16446,19 @@ export declare type ConfluenceNbmVerificationResultConnection = {
|
|
|
16347
16446
|
nodes?: Maybe<Array<Maybe<ConfluenceNbmVerificationEntry>>>;
|
|
16348
16447
|
pageInfo: ConfluencePageInfo;
|
|
16349
16448
|
};
|
|
16449
|
+
export declare enum ConfluenceNbmVerificationResultDirection {
|
|
16450
|
+
Asc = "ASC",
|
|
16451
|
+
Desc = "DESC"
|
|
16452
|
+
}
|
|
16350
16453
|
export declare type ConfluenceNbmVerificationResultEdge = {
|
|
16351
16454
|
__typename?: 'ConfluenceNbmVerificationResultEdge';
|
|
16352
16455
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
16353
16456
|
node?: Maybe<ConfluenceNbmVerificationEntry>;
|
|
16354
16457
|
};
|
|
16458
|
+
export declare enum ConfluenceNbmVerificationResultOrder {
|
|
16459
|
+
AiState = "AI_STATE",
|
|
16460
|
+
ManualState = "MANUAL_STATE"
|
|
16461
|
+
}
|
|
16355
16462
|
export declare type ConfluenceNewCodeMacro = {
|
|
16356
16463
|
__typename?: 'ConfluenceNewCodeMacro';
|
|
16357
16464
|
languages?: Maybe<Array<Maybe<ConfluenceNewCodeMacroLanguage>>>;
|
|
@@ -17219,6 +17326,11 @@ export declare enum ConfluenceSpaceOwnerType {
|
|
|
17219
17326
|
Group = "GROUP",
|
|
17220
17327
|
User = "USER"
|
|
17221
17328
|
}
|
|
17329
|
+
export declare type ConfluenceSpaceRecommendations = {
|
|
17330
|
+
__typename?: 'ConfluenceSpaceRecommendations';
|
|
17331
|
+
active?: Maybe<Array<Maybe<Space>>>;
|
|
17332
|
+
starred?: Maybe<Array<Maybe<Space>>>;
|
|
17333
|
+
};
|
|
17222
17334
|
export declare type ConfluenceSpaceRoleAppPrincipal = SpaceRolePrincipal & {
|
|
17223
17335
|
__typename?: 'ConfluenceSpaceRoleAppPrincipal';
|
|
17224
17336
|
displayName: Scalars['String']['output'];
|
|
@@ -24356,6 +24468,7 @@ export declare type DevAiRovoDevCreateSessionByCloudIdInput = {
|
|
|
24356
24468
|
options?: InputMaybe<DevAiRovoDevCreateSessionOptionsInput>;
|
|
24357
24469
|
promptAdf?: InputMaybe<Scalars['JSON']['input']>;
|
|
24358
24470
|
repository: DevAiRovoDevRepositoryInput;
|
|
24471
|
+
useCase?: InputMaybe<Scalars['String']['input']>;
|
|
24359
24472
|
};
|
|
24360
24473
|
export declare type DevAiRovoDevCreateSessionInput = {
|
|
24361
24474
|
links?: InputMaybe<Array<DevAiRovoDevSessionLinkInput>>;
|
|
@@ -25353,6 +25466,11 @@ export declare type DevOpsMetricsIssueMetricsEdge = {
|
|
|
25353
25466
|
cursor: Scalars['String']['output'];
|
|
25354
25467
|
node?: Maybe<DevOpsMetricsIssueMetrics>;
|
|
25355
25468
|
};
|
|
25469
|
+
export declare type DevOpsMetricsPrCycleTimeSuggestion = DevOpsMetricsCycleTimeInsight & {
|
|
25470
|
+
__typename?: 'DevOpsMetricsPRCycleTimeSuggestion';
|
|
25471
|
+
id: Scalars['String']['output'];
|
|
25472
|
+
type: Scalars['String']['output'];
|
|
25473
|
+
};
|
|
25356
25474
|
export declare type DevOpsMetricsPerDeploymentMetricsConnection = {
|
|
25357
25475
|
__typename?: 'DevOpsMetricsPerDeploymentMetricsConnection';
|
|
25358
25476
|
edges?: Maybe<Array<Maybe<DevOpsMetricsDeploymentMetricsEdge>>>;
|
|
@@ -30738,6 +30856,56 @@ export declare type GraphIncidentLinkedJswIssueRelationshipEdge = {
|
|
|
30738
30856
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
30739
30857
|
node: GraphIncidentLinkedJswIssueRelationship;
|
|
30740
30858
|
};
|
|
30859
|
+
export declare type GraphIntegrationAddTwgCapabilityContainerInput = {
|
|
30860
|
+
contextAri: Scalars['ID']['input'];
|
|
30861
|
+
productAri: Scalars['ID']['input'];
|
|
30862
|
+
};
|
|
30863
|
+
export declare type GraphIntegrationAddTwgCapabilityContainerPayload = Payload & {
|
|
30864
|
+
__typename?: 'GraphIntegrationAddTwgCapabilityContainerPayload';
|
|
30865
|
+
errors?: Maybe<Array<MutationError>>;
|
|
30866
|
+
success: Scalars['Boolean']['output'];
|
|
30867
|
+
};
|
|
30868
|
+
export declare type GraphIntegrationConsentInput = {
|
|
30869
|
+
agreement: Scalars['String']['input'];
|
|
30870
|
+
formUrlReferer: Scalars['String']['input'];
|
|
30871
|
+
source: Scalars['String']['input'];
|
|
30872
|
+
};
|
|
30873
|
+
export declare type GraphIntegrationCreateConnectionPayload = Payload & {
|
|
30874
|
+
__typename?: 'GraphIntegrationCreateConnectionPayload';
|
|
30875
|
+
connectionId?: Maybe<Scalars['ID']['output']>;
|
|
30876
|
+
errors?: Maybe<Array<MutationError>>;
|
|
30877
|
+
success: Scalars['Boolean']['output'];
|
|
30878
|
+
};
|
|
30879
|
+
export declare type GraphIntegrationCreateDataConnectorConnectionInput = {
|
|
30880
|
+
connectorKey: Scalars['String']['input'];
|
|
30881
|
+
connectorProviderKey: Scalars['String']['input'];
|
|
30882
|
+
connectorProviderPayload: Scalars['JSON']['input'];
|
|
30883
|
+
consent: GraphIntegrationConsentInput;
|
|
30884
|
+
contextAri: Scalars['ID']['input'];
|
|
30885
|
+
productAri: Scalars['ID']['input'];
|
|
30886
|
+
};
|
|
30887
|
+
export declare type GraphIntegrationDataConnector = {
|
|
30888
|
+
__typename?: 'GraphIntegrationDataConnector';
|
|
30889
|
+
connectorKey: Scalars['String']['output'];
|
|
30890
|
+
connectorProviderKey: Scalars['String']['output'];
|
|
30891
|
+
};
|
|
30892
|
+
export declare type GraphIntegrationDataConnectorConnection = {
|
|
30893
|
+
__typename?: 'GraphIntegrationDataConnectorConnection';
|
|
30894
|
+
connectorProviderPayload?: Maybe<Scalars['JSON']['output']>;
|
|
30895
|
+
id: Scalars['ID']['output'];
|
|
30896
|
+
name: Scalars['String']['output'];
|
|
30897
|
+
};
|
|
30898
|
+
export declare type GraphIntegrationDeleteConnectionPayload = Payload & {
|
|
30899
|
+
__typename?: 'GraphIntegrationDeleteConnectionPayload';
|
|
30900
|
+
errors?: Maybe<Array<MutationError>>;
|
|
30901
|
+
success: Scalars['Boolean']['output'];
|
|
30902
|
+
};
|
|
30903
|
+
export declare type GraphIntegrationDeleteDataConnectorConnectionInput = {
|
|
30904
|
+
connectionId: Scalars['ID']['input'];
|
|
30905
|
+
connectorKey: Scalars['String']['input'];
|
|
30906
|
+
connectorProviderKey: Scalars['String']['input'];
|
|
30907
|
+
contextAri: Scalars['ID']['input'];
|
|
30908
|
+
};
|
|
30741
30909
|
export declare type GraphIntegrationDirectoryFilterDimension = {
|
|
30742
30910
|
__typename?: 'GraphIntegrationDirectoryFilterDimension';
|
|
30743
30911
|
displayName: Scalars['String']['output'];
|
|
@@ -30923,10 +31091,60 @@ export declare type GraphIntegrationMcpTool = {
|
|
|
30923
31091
|
name: Scalars['String']['output'];
|
|
30924
31092
|
status?: Maybe<GraphIntegrationStatus>;
|
|
30925
31093
|
};
|
|
31094
|
+
export declare type GraphIntegrationRemoveTwgCapabilityContainerInput = {
|
|
31095
|
+
contextAri: Scalars['ID']['input'];
|
|
31096
|
+
productAri: Scalars['ID']['input'];
|
|
31097
|
+
};
|
|
31098
|
+
export declare type GraphIntegrationRemoveTwgCapabilityContainerPayload = Payload & {
|
|
31099
|
+
__typename?: 'GraphIntegrationRemoveTwgCapabilityContainerPayload';
|
|
31100
|
+
errors?: Maybe<Array<MutationError>>;
|
|
31101
|
+
success: Scalars['Boolean']['output'];
|
|
31102
|
+
};
|
|
30926
31103
|
export declare enum GraphIntegrationStatus {
|
|
30927
31104
|
Disabled = "DISABLED",
|
|
30928
31105
|
Enabled = "ENABLED"
|
|
30929
31106
|
}
|
|
31107
|
+
export declare type GraphIntegrationTwgCapabilityContainer = {
|
|
31108
|
+
__typename?: 'GraphIntegrationTwgCapabilityContainer';
|
|
31109
|
+
connections: Array<GraphIntegrationDataConnectorConnection>;
|
|
31110
|
+
contextAri: Scalars['ID']['output'];
|
|
31111
|
+
dataConnectors: Array<GraphIntegrationDataConnector>;
|
|
31112
|
+
description: Scalars['String']['output'];
|
|
31113
|
+
icon: Scalars['String']['output'];
|
|
31114
|
+
name: Scalars['String']['output'];
|
|
31115
|
+
productAri: Scalars['ID']['output'];
|
|
31116
|
+
};
|
|
31117
|
+
export declare type GraphIntegrationTwgCapabilityContainerListItem = {
|
|
31118
|
+
__typename?: 'GraphIntegrationTwgCapabilityContainerListItem';
|
|
31119
|
+
dataConnectors: Array<GraphIntegrationDataConnector>;
|
|
31120
|
+
icon: Scalars['String']['output'];
|
|
31121
|
+
id?: Maybe<Scalars['ID']['output']>;
|
|
31122
|
+
name: Scalars['String']['output'];
|
|
31123
|
+
productAri: Scalars['ID']['output'];
|
|
31124
|
+
};
|
|
31125
|
+
export declare type GraphIntegrationTwgCapabilityContainerListItemConnection = {
|
|
31126
|
+
__typename?: 'GraphIntegrationTwgCapabilityContainerListItemConnection';
|
|
31127
|
+
edges: Array<GraphIntegrationTwgCapabilityContainerListItemEdge>;
|
|
31128
|
+
nodes: Array<GraphIntegrationTwgCapabilityContainerListItem>;
|
|
31129
|
+
pageInfo: PageInfo;
|
|
31130
|
+
};
|
|
31131
|
+
export declare type GraphIntegrationTwgCapabilityContainerListItemEdge = {
|
|
31132
|
+
__typename?: 'GraphIntegrationTwgCapabilityContainerListItemEdge';
|
|
31133
|
+
cursor: Scalars['String']['output'];
|
|
31134
|
+
node: GraphIntegrationTwgCapabilityContainerListItem;
|
|
31135
|
+
};
|
|
31136
|
+
export declare type GraphIntegrationUpdateConnectionPayload = Payload & {
|
|
31137
|
+
__typename?: 'GraphIntegrationUpdateConnectionPayload';
|
|
31138
|
+
errors?: Maybe<Array<MutationError>>;
|
|
31139
|
+
success: Scalars['Boolean']['output'];
|
|
31140
|
+
};
|
|
31141
|
+
export declare type GraphIntegrationUpdateDataConnectorConnectionInput = {
|
|
31142
|
+
connectionId: Scalars['ID']['input'];
|
|
31143
|
+
connectorKey: Scalars['String']['input'];
|
|
31144
|
+
connectorProviderKey: Scalars['String']['input'];
|
|
31145
|
+
connectorProviderPayload: Scalars['JSON']['input'];
|
|
31146
|
+
contextAri: Scalars['ID']['input'];
|
|
31147
|
+
};
|
|
30930
31148
|
export declare type GraphIssueAssociatedDesignPayload = Payload & {
|
|
30931
31149
|
__typename?: 'GraphIssueAssociatedDesignPayload';
|
|
30932
31150
|
errors?: Maybe<Array<MutationError>>;
|
|
@@ -34073,6 +34291,8 @@ export declare type GraphStore = {
|
|
|
34073
34291
|
serviceAssociatedPrInverse?: Maybe<GraphStoreSimplifiedServiceAssociatedPrInverseConnection>;
|
|
34074
34292
|
serviceAssociatedRemoteLink?: Maybe<GraphStoreSimplifiedServiceAssociatedRemoteLinkConnection>;
|
|
34075
34293
|
serviceAssociatedRemoteLinkInverse?: Maybe<GraphStoreSimplifiedServiceAssociatedRemoteLinkInverseConnection>;
|
|
34294
|
+
serviceAssociatedRepository?: Maybe<GraphStoreSimplifiedServiceAssociatedRepositoryConnection>;
|
|
34295
|
+
serviceAssociatedRepositoryInverse?: Maybe<GraphStoreSimplifiedServiceAssociatedRepositoryInverseConnection>;
|
|
34076
34296
|
serviceAssociatedTeam?: Maybe<GraphStoreSimplifiedServiceAssociatedTeamConnection>;
|
|
34077
34297
|
serviceAssociatedTeamInverse?: Maybe<GraphStoreSimplifiedServiceAssociatedTeamInverseConnection>;
|
|
34078
34298
|
serviceLinkedIncident?: Maybe<GraphStoreSimplifiedServiceLinkedIncidentConnection>;
|
|
@@ -34186,6 +34406,8 @@ export declare type GraphStore = {
|
|
|
34186
34406
|
userCreatedCalendarEventInverse?: Maybe<GraphStoreSimplifiedUserCreatedCalendarEventInverseConnection>;
|
|
34187
34407
|
userCreatedConfluenceBlogpost?: Maybe<GraphStoreSimplifiedUserCreatedConfluenceBlogpostConnection>;
|
|
34188
34408
|
userCreatedConfluenceBlogpostInverse?: Maybe<GraphStoreSimplifiedUserCreatedConfluenceBlogpostInverseConnection>;
|
|
34409
|
+
userCreatedConfluenceBlogpostKamino?: Maybe<GraphStoreSimplifiedUserCreatedConfluenceBlogpostKaminoConnection>;
|
|
34410
|
+
userCreatedConfluenceBlogpostKaminoInverse?: Maybe<GraphStoreSimplifiedUserCreatedConfluenceBlogpostKaminoInverseConnection>;
|
|
34189
34411
|
userCreatedConfluenceComment?: Maybe<GraphStoreSimplifiedUserCreatedConfluenceCommentConnection>;
|
|
34190
34412
|
userCreatedConfluenceCommentInverse?: Maybe<GraphStoreSimplifiedUserCreatedConfluenceCommentInverseConnection>;
|
|
34191
34413
|
userCreatedConfluenceDatabase?: Maybe<GraphStoreSimplifiedUserCreatedConfluenceDatabaseConnection>;
|
|
@@ -34196,6 +34418,8 @@ export declare type GraphStore = {
|
|
|
34196
34418
|
userCreatedConfluencePageInverse?: Maybe<GraphStoreSimplifiedUserCreatedConfluencePageInverseConnection>;
|
|
34197
34419
|
userCreatedConfluenceSpace?: Maybe<GraphStoreSimplifiedUserCreatedConfluenceSpaceConnection>;
|
|
34198
34420
|
userCreatedConfluenceSpaceInverse?: Maybe<GraphStoreSimplifiedUserCreatedConfluenceSpaceInverseConnection>;
|
|
34421
|
+
userCreatedConfluenceSpaceKamino?: Maybe<GraphStoreSimplifiedUserCreatedConfluenceSpaceKaminoConnection>;
|
|
34422
|
+
userCreatedConfluenceSpaceKaminoInverse?: Maybe<GraphStoreSimplifiedUserCreatedConfluenceSpaceKaminoInverseConnection>;
|
|
34199
34423
|
userCreatedConfluenceWhiteboard?: Maybe<GraphStoreSimplifiedUserCreatedConfluenceWhiteboardConnection>;
|
|
34200
34424
|
userCreatedConfluenceWhiteboardInverse?: Maybe<GraphStoreSimplifiedUserCreatedConfluenceWhiteboardInverseConnection>;
|
|
34201
34425
|
userCreatedDesign?: Maybe<GraphStoreSimplifiedUserCreatedDesignConnection>;
|
|
@@ -34308,6 +34532,8 @@ export declare type GraphStore = {
|
|
|
34308
34532
|
userUpdatedCommentInverse?: Maybe<GraphStoreSimplifiedUserUpdatedCommentInverseConnection>;
|
|
34309
34533
|
userUpdatedConfluenceBlogpost?: Maybe<GraphStoreSimplifiedUserUpdatedConfluenceBlogpostConnection>;
|
|
34310
34534
|
userUpdatedConfluenceBlogpostInverse?: Maybe<GraphStoreSimplifiedUserUpdatedConfluenceBlogpostInverseConnection>;
|
|
34535
|
+
userUpdatedConfluenceBlogpostKamino?: Maybe<GraphStoreSimplifiedUserUpdatedConfluenceBlogpostKaminoConnection>;
|
|
34536
|
+
userUpdatedConfluenceBlogpostKaminoInverse?: Maybe<GraphStoreSimplifiedUserUpdatedConfluenceBlogpostKaminoInverseConnection>;
|
|
34311
34537
|
userUpdatedConfluencePage?: Maybe<GraphStoreSimplifiedUserUpdatedConfluencePageConnection>;
|
|
34312
34538
|
userUpdatedConfluencePageInverse?: Maybe<GraphStoreSimplifiedUserUpdatedConfluencePageInverseConnection>;
|
|
34313
34539
|
userUpdatedConfluenceSpace?: Maybe<GraphStoreSimplifiedUserUpdatedConfluenceSpaceConnection>;
|
|
@@ -37554,6 +37780,20 @@ export declare type GraphStoreServiceAssociatedRemoteLinkInverseArgs = {
|
|
|
37554
37780
|
id: Scalars['ID']['input'];
|
|
37555
37781
|
sort?: InputMaybe<GraphStoreServiceAssociatedRemoteLinkSortInput>;
|
|
37556
37782
|
};
|
|
37783
|
+
export declare type GraphStoreServiceAssociatedRepositoryArgs = {
|
|
37784
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
37785
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
37786
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
37787
|
+
id: Scalars['ID']['input'];
|
|
37788
|
+
sort?: InputMaybe<GraphStoreServiceAssociatedRepositorySortInput>;
|
|
37789
|
+
};
|
|
37790
|
+
export declare type GraphStoreServiceAssociatedRepositoryInverseArgs = {
|
|
37791
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
37792
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
37793
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
37794
|
+
id: Scalars['ID']['input'];
|
|
37795
|
+
sort?: InputMaybe<GraphStoreServiceAssociatedRepositorySortInput>;
|
|
37796
|
+
};
|
|
37557
37797
|
export declare type GraphStoreServiceAssociatedTeamArgs = {
|
|
37558
37798
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
37559
37799
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -38327,6 +38567,20 @@ export declare type GraphStoreUserCreatedConfluenceBlogpostInverseArgs = {
|
|
|
38327
38567
|
id: Scalars['ID']['input'];
|
|
38328
38568
|
sort?: InputMaybe<GraphStoreUserCreatedConfluenceBlogpostSortInput>;
|
|
38329
38569
|
};
|
|
38570
|
+
export declare type GraphStoreUserCreatedConfluenceBlogpostKaminoArgs = {
|
|
38571
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
38572
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
38573
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
38574
|
+
id: Scalars['ID']['input'];
|
|
38575
|
+
sort?: InputMaybe<GraphStoreUserCreatedConfluenceBlogpostKaminoSortInput>;
|
|
38576
|
+
};
|
|
38577
|
+
export declare type GraphStoreUserCreatedConfluenceBlogpostKaminoInverseArgs = {
|
|
38578
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
38579
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
38580
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
38581
|
+
id: Scalars['ID']['input'];
|
|
38582
|
+
sort?: InputMaybe<GraphStoreUserCreatedConfluenceBlogpostKaminoSortInput>;
|
|
38583
|
+
};
|
|
38330
38584
|
export declare type GraphStoreUserCreatedConfluenceCommentArgs = {
|
|
38331
38585
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
38332
38586
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -38397,6 +38651,20 @@ export declare type GraphStoreUserCreatedConfluenceSpaceInverseArgs = {
|
|
|
38397
38651
|
id: Scalars['ID']['input'];
|
|
38398
38652
|
sort?: InputMaybe<GraphStoreUserCreatedConfluenceSpaceSortInput>;
|
|
38399
38653
|
};
|
|
38654
|
+
export declare type GraphStoreUserCreatedConfluenceSpaceKaminoArgs = {
|
|
38655
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
38656
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
38657
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
38658
|
+
id: Scalars['ID']['input'];
|
|
38659
|
+
sort?: InputMaybe<GraphStoreUserCreatedConfluenceSpaceKaminoSortInput>;
|
|
38660
|
+
};
|
|
38661
|
+
export declare type GraphStoreUserCreatedConfluenceSpaceKaminoInverseArgs = {
|
|
38662
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
38663
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
38664
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
38665
|
+
id: Scalars['ID']['input'];
|
|
38666
|
+
sort?: InputMaybe<GraphStoreUserCreatedConfluenceSpaceKaminoSortInput>;
|
|
38667
|
+
};
|
|
38400
38668
|
export declare type GraphStoreUserCreatedConfluenceWhiteboardArgs = {
|
|
38401
38669
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
38402
38670
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -39183,6 +39451,20 @@ export declare type GraphStoreUserUpdatedConfluenceBlogpostInverseArgs = {
|
|
|
39183
39451
|
id: Scalars['ID']['input'];
|
|
39184
39452
|
sort?: InputMaybe<GraphStoreUserUpdatedConfluenceBlogpostSortInput>;
|
|
39185
39453
|
};
|
|
39454
|
+
export declare type GraphStoreUserUpdatedConfluenceBlogpostKaminoArgs = {
|
|
39455
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
39456
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
39457
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
39458
|
+
id: Scalars['ID']['input'];
|
|
39459
|
+
sort?: InputMaybe<GraphStoreUserUpdatedConfluenceBlogpostKaminoSortInput>;
|
|
39460
|
+
};
|
|
39461
|
+
export declare type GraphStoreUserUpdatedConfluenceBlogpostKaminoInverseArgs = {
|
|
39462
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
39463
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
39464
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
39465
|
+
id: Scalars['ID']['input'];
|
|
39466
|
+
sort?: InputMaybe<GraphStoreUserUpdatedConfluenceBlogpostKaminoSortInput>;
|
|
39467
|
+
};
|
|
39186
39468
|
export declare type GraphStoreUserUpdatedConfluencePageArgs = {
|
|
39187
39469
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
39188
39470
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -46780,6 +47062,9 @@ export declare type GraphStoreServiceAssociatedPrSortInput = {
|
|
|
46780
47062
|
export declare type GraphStoreServiceAssociatedRemoteLinkSortInput = {
|
|
46781
47063
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
46782
47064
|
};
|
|
47065
|
+
export declare type GraphStoreServiceAssociatedRepositorySortInput = {
|
|
47066
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
47067
|
+
};
|
|
46783
47068
|
export declare type GraphStoreServiceAssociatedTeamSortInput = {
|
|
46784
47069
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
46785
47070
|
};
|
|
@@ -51458,6 +51743,34 @@ export declare type GraphStoreSimplifiedServiceAssociatedRemoteLinkInverseEdge =
|
|
|
51458
51743
|
};
|
|
51459
51744
|
export declare type GraphStoreSimplifiedServiceAssociatedRemoteLinkInverseUnion = DevOpsService;
|
|
51460
51745
|
export declare type GraphStoreSimplifiedServiceAssociatedRemoteLinkUnion = ExternalRemoteLink;
|
|
51746
|
+
export declare type GraphStoreSimplifiedServiceAssociatedRepositoryConnection = HasPageInfo & {
|
|
51747
|
+
__typename?: 'GraphStoreSimplifiedServiceAssociatedRepositoryConnection';
|
|
51748
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedServiceAssociatedRepositoryEdge>>>;
|
|
51749
|
+
pageInfo: PageInfo;
|
|
51750
|
+
};
|
|
51751
|
+
export declare type GraphStoreSimplifiedServiceAssociatedRepositoryEdge = {
|
|
51752
|
+
__typename?: 'GraphStoreSimplifiedServiceAssociatedRepositoryEdge';
|
|
51753
|
+
createdAt: Scalars['DateTime']['output'];
|
|
51754
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
51755
|
+
id: Scalars['ID']['output'];
|
|
51756
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
51757
|
+
node?: Maybe<GraphStoreSimplifiedServiceAssociatedRepositoryUnion>;
|
|
51758
|
+
};
|
|
51759
|
+
export declare type GraphStoreSimplifiedServiceAssociatedRepositoryInverseConnection = HasPageInfo & {
|
|
51760
|
+
__typename?: 'GraphStoreSimplifiedServiceAssociatedRepositoryInverseConnection';
|
|
51761
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedServiceAssociatedRepositoryInverseEdge>>>;
|
|
51762
|
+
pageInfo: PageInfo;
|
|
51763
|
+
};
|
|
51764
|
+
export declare type GraphStoreSimplifiedServiceAssociatedRepositoryInverseEdge = {
|
|
51765
|
+
__typename?: 'GraphStoreSimplifiedServiceAssociatedRepositoryInverseEdge';
|
|
51766
|
+
createdAt: Scalars['DateTime']['output'];
|
|
51767
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
51768
|
+
id: Scalars['ID']['output'];
|
|
51769
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
51770
|
+
node?: Maybe<GraphStoreSimplifiedServiceAssociatedRepositoryInverseUnion>;
|
|
51771
|
+
};
|
|
51772
|
+
export declare type GraphStoreSimplifiedServiceAssociatedRepositoryInverseUnion = DevOpsService;
|
|
51773
|
+
export declare type GraphStoreSimplifiedServiceAssociatedRepositoryUnion = BitbucketRepository | DevOpsRepository | ExternalRepository;
|
|
51461
51774
|
export declare type GraphStoreSimplifiedServiceAssociatedTeamConnection = HasPageInfo & {
|
|
51462
51775
|
__typename?: 'GraphStoreSimplifiedServiceAssociatedTeamConnection';
|
|
51463
51776
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedServiceAssociatedTeamEdge>>>;
|
|
@@ -52715,6 +53028,34 @@ export declare type GraphStoreSimplifiedUserCreatedConfluenceBlogpostInverseEdge
|
|
|
52715
53028
|
node?: Maybe<GraphStoreSimplifiedUserCreatedConfluenceBlogpostInverseUnion>;
|
|
52716
53029
|
};
|
|
52717
53030
|
export declare type GraphStoreSimplifiedUserCreatedConfluenceBlogpostInverseUnion = AppUser | AtlassianAccountUser | CustomerUser;
|
|
53031
|
+
export declare type GraphStoreSimplifiedUserCreatedConfluenceBlogpostKaminoConnection = HasPageInfo & {
|
|
53032
|
+
__typename?: 'GraphStoreSimplifiedUserCreatedConfluenceBlogpostKaminoConnection';
|
|
53033
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserCreatedConfluenceBlogpostKaminoEdge>>>;
|
|
53034
|
+
pageInfo: PageInfo;
|
|
53035
|
+
};
|
|
53036
|
+
export declare type GraphStoreSimplifiedUserCreatedConfluenceBlogpostKaminoEdge = {
|
|
53037
|
+
__typename?: 'GraphStoreSimplifiedUserCreatedConfluenceBlogpostKaminoEdge';
|
|
53038
|
+
createdAt: Scalars['DateTime']['output'];
|
|
53039
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
53040
|
+
id: Scalars['ID']['output'];
|
|
53041
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
53042
|
+
node?: Maybe<GraphStoreSimplifiedUserCreatedConfluenceBlogpostKaminoUnion>;
|
|
53043
|
+
};
|
|
53044
|
+
export declare type GraphStoreSimplifiedUserCreatedConfluenceBlogpostKaminoInverseConnection = HasPageInfo & {
|
|
53045
|
+
__typename?: 'GraphStoreSimplifiedUserCreatedConfluenceBlogpostKaminoInverseConnection';
|
|
53046
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserCreatedConfluenceBlogpostKaminoInverseEdge>>>;
|
|
53047
|
+
pageInfo: PageInfo;
|
|
53048
|
+
};
|
|
53049
|
+
export declare type GraphStoreSimplifiedUserCreatedConfluenceBlogpostKaminoInverseEdge = {
|
|
53050
|
+
__typename?: 'GraphStoreSimplifiedUserCreatedConfluenceBlogpostKaminoInverseEdge';
|
|
53051
|
+
createdAt: Scalars['DateTime']['output'];
|
|
53052
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
53053
|
+
id: Scalars['ID']['output'];
|
|
53054
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
53055
|
+
node?: Maybe<GraphStoreSimplifiedUserCreatedConfluenceBlogpostKaminoInverseUnion>;
|
|
53056
|
+
};
|
|
53057
|
+
export declare type GraphStoreSimplifiedUserCreatedConfluenceBlogpostKaminoInverseUnion = AppUser | AtlassianAccountUser | CustomerUser;
|
|
53058
|
+
export declare type GraphStoreSimplifiedUserCreatedConfluenceBlogpostKaminoUnion = ConfluenceBlogPost;
|
|
52718
53059
|
export declare type GraphStoreSimplifiedUserCreatedConfluenceBlogpostUnion = ConfluenceBlogPost;
|
|
52719
53060
|
export declare type GraphStoreSimplifiedUserCreatedConfluenceCommentConnection = HasPageInfo & {
|
|
52720
53061
|
__typename?: 'GraphStoreSimplifiedUserCreatedConfluenceCommentConnection';
|
|
@@ -52855,6 +53196,34 @@ export declare type GraphStoreSimplifiedUserCreatedConfluenceSpaceInverseEdge =
|
|
|
52855
53196
|
node?: Maybe<GraphStoreSimplifiedUserCreatedConfluenceSpaceInverseUnion>;
|
|
52856
53197
|
};
|
|
52857
53198
|
export declare type GraphStoreSimplifiedUserCreatedConfluenceSpaceInverseUnion = AppUser | AtlassianAccountUser | CustomerUser;
|
|
53199
|
+
export declare type GraphStoreSimplifiedUserCreatedConfluenceSpaceKaminoConnection = HasPageInfo & {
|
|
53200
|
+
__typename?: 'GraphStoreSimplifiedUserCreatedConfluenceSpaceKaminoConnection';
|
|
53201
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserCreatedConfluenceSpaceKaminoEdge>>>;
|
|
53202
|
+
pageInfo: PageInfo;
|
|
53203
|
+
};
|
|
53204
|
+
export declare type GraphStoreSimplifiedUserCreatedConfluenceSpaceKaminoEdge = {
|
|
53205
|
+
__typename?: 'GraphStoreSimplifiedUserCreatedConfluenceSpaceKaminoEdge';
|
|
53206
|
+
createdAt: Scalars['DateTime']['output'];
|
|
53207
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
53208
|
+
id: Scalars['ID']['output'];
|
|
53209
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
53210
|
+
node?: Maybe<GraphStoreSimplifiedUserCreatedConfluenceSpaceKaminoUnion>;
|
|
53211
|
+
};
|
|
53212
|
+
export declare type GraphStoreSimplifiedUserCreatedConfluenceSpaceKaminoInverseConnection = HasPageInfo & {
|
|
53213
|
+
__typename?: 'GraphStoreSimplifiedUserCreatedConfluenceSpaceKaminoInverseConnection';
|
|
53214
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserCreatedConfluenceSpaceKaminoInverseEdge>>>;
|
|
53215
|
+
pageInfo: PageInfo;
|
|
53216
|
+
};
|
|
53217
|
+
export declare type GraphStoreSimplifiedUserCreatedConfluenceSpaceKaminoInverseEdge = {
|
|
53218
|
+
__typename?: 'GraphStoreSimplifiedUserCreatedConfluenceSpaceKaminoInverseEdge';
|
|
53219
|
+
createdAt: Scalars['DateTime']['output'];
|
|
53220
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
53221
|
+
id: Scalars['ID']['output'];
|
|
53222
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
53223
|
+
node?: Maybe<GraphStoreSimplifiedUserCreatedConfluenceSpaceKaminoInverseUnion>;
|
|
53224
|
+
};
|
|
53225
|
+
export declare type GraphStoreSimplifiedUserCreatedConfluenceSpaceKaminoInverseUnion = AppUser | AtlassianAccountUser | CustomerUser;
|
|
53226
|
+
export declare type GraphStoreSimplifiedUserCreatedConfluenceSpaceKaminoUnion = ConfluenceSpace;
|
|
52858
53227
|
export declare type GraphStoreSimplifiedUserCreatedConfluenceSpaceUnion = ConfluenceSpace;
|
|
52859
53228
|
export declare type GraphStoreSimplifiedUserCreatedConfluenceWhiteboardConnection = HasPageInfo & {
|
|
52860
53229
|
__typename?: 'GraphStoreSimplifiedUserCreatedConfluenceWhiteboardConnection';
|
|
@@ -54411,6 +54780,34 @@ export declare type GraphStoreSimplifiedUserUpdatedConfluenceBlogpostInverseEdge
|
|
|
54411
54780
|
node?: Maybe<GraphStoreSimplifiedUserUpdatedConfluenceBlogpostInverseUnion>;
|
|
54412
54781
|
};
|
|
54413
54782
|
export declare type GraphStoreSimplifiedUserUpdatedConfluenceBlogpostInverseUnion = AppUser | AtlassianAccountUser | CustomerUser;
|
|
54783
|
+
export declare type GraphStoreSimplifiedUserUpdatedConfluenceBlogpostKaminoConnection = HasPageInfo & {
|
|
54784
|
+
__typename?: 'GraphStoreSimplifiedUserUpdatedConfluenceBlogpostKaminoConnection';
|
|
54785
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserUpdatedConfluenceBlogpostKaminoEdge>>>;
|
|
54786
|
+
pageInfo: PageInfo;
|
|
54787
|
+
};
|
|
54788
|
+
export declare type GraphStoreSimplifiedUserUpdatedConfluenceBlogpostKaminoEdge = {
|
|
54789
|
+
__typename?: 'GraphStoreSimplifiedUserUpdatedConfluenceBlogpostKaminoEdge';
|
|
54790
|
+
createdAt: Scalars['DateTime']['output'];
|
|
54791
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
54792
|
+
id: Scalars['ID']['output'];
|
|
54793
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
54794
|
+
node?: Maybe<GraphStoreSimplifiedUserUpdatedConfluenceBlogpostKaminoUnion>;
|
|
54795
|
+
};
|
|
54796
|
+
export declare type GraphStoreSimplifiedUserUpdatedConfluenceBlogpostKaminoInverseConnection = HasPageInfo & {
|
|
54797
|
+
__typename?: 'GraphStoreSimplifiedUserUpdatedConfluenceBlogpostKaminoInverseConnection';
|
|
54798
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserUpdatedConfluenceBlogpostKaminoInverseEdge>>>;
|
|
54799
|
+
pageInfo: PageInfo;
|
|
54800
|
+
};
|
|
54801
|
+
export declare type GraphStoreSimplifiedUserUpdatedConfluenceBlogpostKaminoInverseEdge = {
|
|
54802
|
+
__typename?: 'GraphStoreSimplifiedUserUpdatedConfluenceBlogpostKaminoInverseEdge';
|
|
54803
|
+
createdAt: Scalars['DateTime']['output'];
|
|
54804
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
54805
|
+
id: Scalars['ID']['output'];
|
|
54806
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
54807
|
+
node?: Maybe<GraphStoreSimplifiedUserUpdatedConfluenceBlogpostKaminoInverseUnion>;
|
|
54808
|
+
};
|
|
54809
|
+
export declare type GraphStoreSimplifiedUserUpdatedConfluenceBlogpostKaminoInverseUnion = AppUser | AtlassianAccountUser | CustomerUser;
|
|
54810
|
+
export declare type GraphStoreSimplifiedUserUpdatedConfluenceBlogpostKaminoUnion = ConfluenceBlogPost;
|
|
54414
54811
|
export declare type GraphStoreSimplifiedUserUpdatedConfluenceBlogpostUnion = ConfluenceBlogPost;
|
|
54415
54812
|
export declare type GraphStoreSimplifiedUserUpdatedConfluencePageConnection = HasPageInfo & {
|
|
54416
54813
|
__typename?: 'GraphStoreSimplifiedUserUpdatedConfluencePageConnection';
|
|
@@ -55720,6 +56117,9 @@ export declare type GraphStoreUserCreatedCalendarEventSortInput = {
|
|
|
55720
56117
|
to_eventEndTime?: InputMaybe<GraphStoreSortInput>;
|
|
55721
56118
|
to_eventStartTime?: InputMaybe<GraphStoreSortInput>;
|
|
55722
56119
|
};
|
|
56120
|
+
export declare type GraphStoreUserCreatedConfluenceBlogpostKaminoSortInput = {
|
|
56121
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
56122
|
+
};
|
|
55723
56123
|
export declare type GraphStoreUserCreatedConfluenceBlogpostSortInput = {
|
|
55724
56124
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
55725
56125
|
};
|
|
@@ -55735,6 +56135,9 @@ export declare type GraphStoreUserCreatedConfluenceEmbedSortInput = {
|
|
|
55735
56135
|
export declare type GraphStoreUserCreatedConfluencePageSortInput = {
|
|
55736
56136
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
55737
56137
|
};
|
|
56138
|
+
export declare type GraphStoreUserCreatedConfluenceSpaceKaminoSortInput = {
|
|
56139
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
56140
|
+
};
|
|
55738
56141
|
export declare type GraphStoreUserCreatedConfluenceSpaceSortInput = {
|
|
55739
56142
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
55740
56143
|
};
|
|
@@ -55940,6 +56343,9 @@ export declare type GraphStoreUserUpdatedAtlasProjectSortInput = {
|
|
|
55940
56343
|
export declare type GraphStoreUserUpdatedCommentSortInput = {
|
|
55941
56344
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
55942
56345
|
};
|
|
56346
|
+
export declare type GraphStoreUserUpdatedConfluenceBlogpostKaminoSortInput = {
|
|
56347
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
56348
|
+
};
|
|
55943
56349
|
export declare type GraphStoreUserUpdatedConfluenceBlogpostSortInput = {
|
|
55944
56350
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
55945
56351
|
};
|
|
@@ -60163,6 +60569,21 @@ export declare type JiraAffectedServicesFieldPayload = Payload & {
|
|
|
60163
60569
|
export declare type JiraAffectedServicesInput = {
|
|
60164
60570
|
serviceId: Scalars['ID']['input'];
|
|
60165
60571
|
};
|
|
60572
|
+
export declare type JiraAiAgentSession = {
|
|
60573
|
+
__typename?: 'JiraAiAgentSession';
|
|
60574
|
+
conversationId: Scalars['ID']['output'];
|
|
60575
|
+
};
|
|
60576
|
+
export declare type JiraAiAgentSessionConnection = {
|
|
60577
|
+
__typename?: 'JiraAiAgentSessionConnection';
|
|
60578
|
+
edges?: Maybe<Array<Maybe<JiraAiAgentSessionEdge>>>;
|
|
60579
|
+
pageInfo: PageInfo;
|
|
60580
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
60581
|
+
};
|
|
60582
|
+
export declare type JiraAiAgentSessionEdge = {
|
|
60583
|
+
__typename?: 'JiraAiAgentSessionEdge';
|
|
60584
|
+
cursor: Scalars['String']['output'];
|
|
60585
|
+
node?: Maybe<JiraAiAgentSession>;
|
|
60586
|
+
};
|
|
60166
60587
|
export declare type JiraAiEnablementIssueInput = {
|
|
60167
60588
|
issueId?: InputMaybe<Scalars['ID']['input']>;
|
|
60168
60589
|
issueKey?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -64857,6 +65278,7 @@ export declare type JiraFieldConfigFilterInput = {
|
|
|
64857
65278
|
fieldIds?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
64858
65279
|
fieldStatus?: InputMaybe<JiraFieldStatusType>;
|
|
64859
65280
|
includedFieldCategories?: InputMaybe<Array<JiraFieldCategoryType>>;
|
|
65281
|
+
includedFieldScopes?: InputMaybe<Array<JiraFieldScopeType>>;
|
|
64860
65282
|
includedFieldStatus?: InputMaybe<Array<JiraFieldStatusType>>;
|
|
64861
65283
|
includedFieldTypes?: InputMaybe<Array<JiraConfigFieldType>>;
|
|
64862
65284
|
orderBy?: InputMaybe<JiraFieldConfigOrderBy>;
|
|
@@ -65010,6 +65432,10 @@ export declare type JiraFieldSchemesEdge = {
|
|
|
65010
65432
|
export declare type JiraFieldSchemesInput = {
|
|
65011
65433
|
nameOrDescriptionFilter?: InputMaybe<Scalars['String']['input']>;
|
|
65012
65434
|
};
|
|
65435
|
+
export declare enum JiraFieldScopeType {
|
|
65436
|
+
Global = "GLOBAL",
|
|
65437
|
+
Project = "PROJECT"
|
|
65438
|
+
}
|
|
65013
65439
|
export declare type JiraFieldSearcherTemplate = {
|
|
65014
65440
|
__typename?: 'JiraFieldSearcherTemplate';
|
|
65015
65441
|
displayName: Scalars['String']['output'];
|
|
@@ -66139,6 +66565,7 @@ export declare type JiraInvalidSyntaxError = {
|
|
|
66139
66565
|
};
|
|
66140
66566
|
export declare type JiraIssue = HasMercuryProjectFields & JiraScenarioIssueLike & Node & {
|
|
66141
66567
|
__typename?: 'JiraIssue';
|
|
66568
|
+
aiAgentSessions?: Maybe<JiraAiAgentSessionConnection>;
|
|
66142
66569
|
archivedBy?: Maybe<User>;
|
|
66143
66570
|
archivedOn?: Maybe<Scalars['DateTime']['output']>;
|
|
66144
66571
|
assigneeField?: Maybe<JiraSingleSelectUserPickerField>;
|
|
@@ -66264,6 +66691,12 @@ export declare type JiraIssue = HasMercuryProjectFields & JiraScenarioIssueLike
|
|
|
66264
66691
|
webUrl?: Maybe<Scalars['URL']['output']>;
|
|
66265
66692
|
worklogs?: Maybe<JiraWorkLogConnection>;
|
|
66266
66693
|
};
|
|
66694
|
+
export declare type JiraIssueAiAgentSessionsArgs = {
|
|
66695
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
66696
|
+
before?: InputMaybe<Scalars['String']['input']>;
|
|
66697
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
66698
|
+
last?: InputMaybe<Scalars['Int']['input']>;
|
|
66699
|
+
};
|
|
66267
66700
|
export declare type JiraIssueAttachmentsArgs = {
|
|
66268
66701
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
66269
66702
|
before?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -66894,6 +67327,7 @@ export declare type JiraIssueFieldConfig = Node & {
|
|
|
66894
67327
|
fieldId: Scalars['String']['output'];
|
|
66895
67328
|
formatConfig?: Maybe<JiraFieldFormatConfig>;
|
|
66896
67329
|
id: Scalars['ID']['output'];
|
|
67330
|
+
installedByAppName?: Maybe<Scalars['String']['output']>;
|
|
66897
67331
|
isConnect?: Maybe<Scalars['Boolean']['output']>;
|
|
66898
67332
|
isCustom: Scalars['Boolean']['output'];
|
|
66899
67333
|
isDefaultFieldOptionsCountOverLimit?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -73785,6 +74219,7 @@ export declare type JiraQueryJiraIssueSearchViewArgs = {
|
|
|
73785
74219
|
isGroupingEnabled?: InputMaybe<Scalars['Boolean']['input']>;
|
|
73786
74220
|
issueSearchInput?: InputMaybe<JiraIssueSearchInput>;
|
|
73787
74221
|
namespace?: InputMaybe<Scalars['String']['input']>;
|
|
74222
|
+
scope?: InputMaybe<JiraIssueSearchScope>;
|
|
73788
74223
|
viewConfigInput?: InputMaybe<JiraIssueSearchStaticViewInput>;
|
|
73789
74224
|
viewId?: InputMaybe<Scalars['String']['input']>;
|
|
73790
74225
|
viewQueryInput?: InputMaybe<JiraIssueSearchViewQueryInput>;
|
|
@@ -80227,6 +80662,42 @@ export declare type JpdInsightUpdatedEvent = {
|
|
|
80227
80662
|
performedAt: Scalars['String']['output'];
|
|
80228
80663
|
projectAri: Scalars['ID']['output'];
|
|
80229
80664
|
};
|
|
80665
|
+
export declare type JpdPlayContributionCreatedEvent = {
|
|
80666
|
+
__typename?: 'JpdPlayContributionCreatedEvent';
|
|
80667
|
+
contributionAri: Scalars['ID']['output'];
|
|
80668
|
+
contributionId: Scalars['Int']['output'];
|
|
80669
|
+
projectAri: Scalars['ID']['output'];
|
|
80670
|
+
subjectAri: Scalars['ID']['output'];
|
|
80671
|
+
updatedByUserId: Scalars['ID']['output'];
|
|
80672
|
+
updatedTime: Scalars['String']['output'];
|
|
80673
|
+
};
|
|
80674
|
+
export declare type JpdPlayContributionDeletedEvent = {
|
|
80675
|
+
__typename?: 'JpdPlayContributionDeletedEvent';
|
|
80676
|
+
projectAri: Scalars['ID']['output'];
|
|
80677
|
+
subjectAri: Scalars['ID']['output'];
|
|
80678
|
+
updatedByUserId: Scalars['ID']['output'];
|
|
80679
|
+
updatedTime: Scalars['String']['output'];
|
|
80680
|
+
};
|
|
80681
|
+
export declare type JpdPlayContributionUpdatedEvent = {
|
|
80682
|
+
__typename?: 'JpdPlayContributionUpdatedEvent';
|
|
80683
|
+
contributionAri: Scalars['ID']['output'];
|
|
80684
|
+
contributionId: Scalars['Int']['output'];
|
|
80685
|
+
projectAri: Scalars['ID']['output'];
|
|
80686
|
+
subjectAri: Scalars['ID']['output'];
|
|
80687
|
+
updatedByUserId: Scalars['ID']['output'];
|
|
80688
|
+
updatedTime: Scalars['String']['output'];
|
|
80689
|
+
};
|
|
80690
|
+
export declare type JpdPlayEvent = {
|
|
80691
|
+
__typename?: 'JpdPlayEvent';
|
|
80692
|
+
parameters: JpdPlayParameters;
|
|
80693
|
+
projectAri: Scalars['ID']['output'];
|
|
80694
|
+
updatedByUserId: Scalars['ID']['output'];
|
|
80695
|
+
updatedTime: Scalars['String']['output'];
|
|
80696
|
+
};
|
|
80697
|
+
export declare type JpdPlayParameters = {
|
|
80698
|
+
__typename?: 'JpdPlayParameters';
|
|
80699
|
+
maxSpend?: Maybe<Scalars['Int']['output']>;
|
|
80700
|
+
};
|
|
80230
80701
|
export declare type JpdSubscriptions = {
|
|
80231
80702
|
__typename?: 'JpdSubscriptions';
|
|
80232
80703
|
onInsightCreated?: Maybe<JpdInsightCreatedEvent>;
|
|
@@ -80235,6 +80706,10 @@ export declare type JpdSubscriptions = {
|
|
|
80235
80706
|
onIssueInsightCreated?: Maybe<JpdInsightCreatedEvent>;
|
|
80236
80707
|
onIssueInsightDeleted?: Maybe<JpdInsightDeletedEvent>;
|
|
80237
80708
|
onIssueInsightUpdated?: Maybe<JpdInsightUpdatedEvent>;
|
|
80709
|
+
onPlayContributionCreated?: Maybe<JpdPlayContributionCreatedEvent>;
|
|
80710
|
+
onPlayContributionDeleted?: Maybe<JpdPlayContributionDeletedEvent>;
|
|
80711
|
+
onPlayContributionUpdated?: Maybe<JpdPlayContributionUpdatedEvent>;
|
|
80712
|
+
onPlayUpdated?: Maybe<JpdPlayEvent>;
|
|
80238
80713
|
onViewCommentEvents?: Maybe<JpdViewCommentEvent>;
|
|
80239
80714
|
onViewCreated?: Maybe<JpdViewCreatedEvent>;
|
|
80240
80715
|
onViewDeleted?: Maybe<JpdViewDeletedEvent>;
|
|
@@ -80261,6 +80736,18 @@ export declare type JpdSubscriptionsOnIssueInsightDeletedArgs = {
|
|
|
80261
80736
|
export declare type JpdSubscriptionsOnIssueInsightUpdatedArgs = {
|
|
80262
80737
|
issueAri: Scalars['ID']['input'];
|
|
80263
80738
|
};
|
|
80739
|
+
export declare type JpdSubscriptionsOnPlayContributionCreatedArgs = {
|
|
80740
|
+
projectAri: Scalars['ID']['input'];
|
|
80741
|
+
};
|
|
80742
|
+
export declare type JpdSubscriptionsOnPlayContributionDeletedArgs = {
|
|
80743
|
+
projectAri: Scalars['ID']['input'];
|
|
80744
|
+
};
|
|
80745
|
+
export declare type JpdSubscriptionsOnPlayContributionUpdatedArgs = {
|
|
80746
|
+
projectAri: Scalars['ID']['input'];
|
|
80747
|
+
};
|
|
80748
|
+
export declare type JpdSubscriptionsOnPlayUpdatedArgs = {
|
|
80749
|
+
projectAri: Scalars['ID']['input'];
|
|
80750
|
+
};
|
|
80264
80751
|
export declare type JpdSubscriptionsOnViewCommentEventsArgs = {
|
|
80265
80752
|
projectAri: Scalars['ID']['input'];
|
|
80266
80753
|
};
|
|
@@ -85917,6 +86404,7 @@ export declare type MercuryCreateChangeProposalsViewInput = {
|
|
|
85917
86404
|
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
85918
86405
|
name: Scalars['String']['input'];
|
|
85919
86406
|
settings?: InputMaybe<Array<InputMaybe<MercuryViewSettingInput>>>;
|
|
86407
|
+
strategicEventId?: InputMaybe<Scalars['ID']['input']>;
|
|
85920
86408
|
};
|
|
85921
86409
|
export declare type MercuryCreateChangeProposalsViewSettingPayload = Payload & {
|
|
85922
86410
|
__typename?: 'MercuryCreateChangeProposalsViewSettingPayload';
|
|
@@ -88651,6 +89139,7 @@ export declare type Mutation = {
|
|
|
88651
89139
|
confluence_markAllCommentsAsRead?: Maybe<ConfluenceMarkAllCommentsAsReadPayload>;
|
|
88652
89140
|
confluence_markCommentAsDangling?: Maybe<ConfluenceMarkCommentAsDanglingPayload>;
|
|
88653
89141
|
confluence_nbmBulkUpdateVerificationEntry?: Maybe<ConfluenceNbmBulkUpdateVerificationEntryPayload>;
|
|
89142
|
+
confluence_nbmRetryScanLongTask?: Maybe<ConfluenceNbmRetryScanLongTaskPayload>;
|
|
88654
89143
|
confluence_nbmStartScanLongTask?: Maybe<ConfluenceNbmStartScanLongTaskPayload>;
|
|
88655
89144
|
confluence_reopenComment?: Maybe<ConfluenceReopenCommentPayload>;
|
|
88656
89145
|
confluence_resolveComments?: Maybe<ConfluenceResolveCommentsPayload>;
|
|
@@ -88841,10 +89330,15 @@ export declare type Mutation = {
|
|
|
88841
89330
|
goals_setWatchingGoal?: Maybe<TownsquareGoalsSetWatchingGoalPayload>;
|
|
88842
89331
|
goals_shareGoal?: Maybe<TownsquareGoalsShareGoalPayload>;
|
|
88843
89332
|
grantContentAccess?: Maybe<GrantContentAccessPayload>;
|
|
89333
|
+
graphIntegration_addTwgCapabilityContainer?: Maybe<GraphIntegrationAddTwgCapabilityContainerPayload>;
|
|
89334
|
+
graphIntegration_createDataConnectorConnection?: Maybe<GraphIntegrationCreateConnectionPayload>;
|
|
89335
|
+
graphIntegration_deleteDataConnectorConnection?: Maybe<GraphIntegrationDeleteConnectionPayload>;
|
|
88844
89336
|
graphIntegration_mcpAdminManagementRegisterMcpServer?: Maybe<GraphIntegrationMcpAdminManagementRegisterMcpServerPayload>;
|
|
88845
89337
|
graphIntegration_mcpAdminManagementTriggerToolSync?: Maybe<GraphIntegrationMcpAdminManagementTriggerToolSyncPayload>;
|
|
88846
89338
|
graphIntegration_mcpAdminManagementUnregisterMcpServer?: Maybe<GraphIntegrationMcpAdminManagementUnregisterMcpServerPayload>;
|
|
88847
89339
|
graphIntegration_mcpAdminManagementUpdateMcpToolConfiguration?: Maybe<GraphIntegrationMcpAdminManagementUpdateMcpToolConfigurationPayload>;
|
|
89340
|
+
graphIntegration_removeTwgCapabilityContainer?: Maybe<GraphIntegrationRemoveTwgCapabilityContainerPayload>;
|
|
89341
|
+
graphIntegration_updateDataConnectorConnection?: Maybe<GraphIntegrationUpdateConnectionPayload>;
|
|
88848
89342
|
graphStore?: Maybe<GraphStoreMutation>;
|
|
88849
89343
|
growthUnifiedProfile_createEntitlementProfile?: Maybe<GrowthUnifiedProfileCreateEntitlementProfileResponse>;
|
|
88850
89344
|
growthUnifiedProfile_createOrgProfile?: Maybe<GrowthUnifiedProfileTwcCreateOrgProfileResponse>;
|
|
@@ -89685,6 +90179,10 @@ export declare type MutationConfluence_NbmBulkUpdateVerificationEntryArgs = {
|
|
|
89685
90179
|
cloudId: Scalars['ID']['input'];
|
|
89686
90180
|
input: ConfluenceNbmBulkUpdateVerificationEntryInput;
|
|
89687
90181
|
};
|
|
90182
|
+
export declare type MutationConfluence_NbmRetryScanLongTaskArgs = {
|
|
90183
|
+
cloudId: Scalars['ID']['input'];
|
|
90184
|
+
input: ConfluenceNbmRetryScanLongTaskInput;
|
|
90185
|
+
};
|
|
89688
90186
|
export declare type MutationConfluence_NbmStartScanLongTaskArgs = {
|
|
89689
90187
|
cloudId: Scalars['ID']['input'];
|
|
89690
90188
|
input: ConfluenceNbmStartScanLongTaskInput;
|
|
@@ -90355,6 +90853,15 @@ export declare type MutationGoals_ShareGoalArgs = {
|
|
|
90355
90853
|
export declare type MutationGrantContentAccessArgs = {
|
|
90356
90854
|
grantContentAccessInput: GrantContentAccessInput;
|
|
90357
90855
|
};
|
|
90856
|
+
export declare type MutationGraphIntegration_AddTwgCapabilityContainerArgs = {
|
|
90857
|
+
input: GraphIntegrationAddTwgCapabilityContainerInput;
|
|
90858
|
+
};
|
|
90859
|
+
export declare type MutationGraphIntegration_CreateDataConnectorConnectionArgs = {
|
|
90860
|
+
input: GraphIntegrationCreateDataConnectorConnectionInput;
|
|
90861
|
+
};
|
|
90862
|
+
export declare type MutationGraphIntegration_DeleteDataConnectorConnectionArgs = {
|
|
90863
|
+
input: GraphIntegrationDeleteDataConnectorConnectionInput;
|
|
90864
|
+
};
|
|
90358
90865
|
export declare type MutationGraphIntegration_McpAdminManagementRegisterMcpServerArgs = {
|
|
90359
90866
|
input: GraphIntegrationMcpAdminManagementRegisterMcpServerInput;
|
|
90360
90867
|
};
|
|
@@ -90367,6 +90874,12 @@ export declare type MutationGraphIntegration_McpAdminManagementUnregisterMcpServ
|
|
|
90367
90874
|
export declare type MutationGraphIntegration_McpAdminManagementUpdateMcpToolConfigurationArgs = {
|
|
90368
90875
|
input: GraphIntegrationMcpAdminManagementUpdateMcpToolConfigurationInput;
|
|
90369
90876
|
};
|
|
90877
|
+
export declare type MutationGraphIntegration_RemoveTwgCapabilityContainerArgs = {
|
|
90878
|
+
input: GraphIntegrationRemoveTwgCapabilityContainerInput;
|
|
90879
|
+
};
|
|
90880
|
+
export declare type MutationGraphIntegration_UpdateDataConnectorConnectionArgs = {
|
|
90881
|
+
input: GraphIntegrationUpdateDataConnectorConnectionInput;
|
|
90882
|
+
};
|
|
90370
90883
|
export declare type MutationGrowthUnifiedProfile_CreateEntitlementProfileArgs = {
|
|
90371
90884
|
profile: GrowthUnifiedProfileCreateEntitlementProfileInput;
|
|
90372
90885
|
};
|
|
@@ -92563,6 +93076,7 @@ export declare type PageRestrictions = {
|
|
|
92563
93076
|
update?: Maybe<PageRestriction>;
|
|
92564
93077
|
};
|
|
92565
93078
|
export declare type PageRestrictionsInput = {
|
|
93079
|
+
includeInvites?: InputMaybe<Scalars['Boolean']['input']>;
|
|
92566
93080
|
read?: InputMaybe<PageRestrictionInput>;
|
|
92567
93081
|
update?: InputMaybe<PageRestrictionInput>;
|
|
92568
93082
|
};
|
|
@@ -94330,6 +94844,7 @@ export declare type Query = {
|
|
|
94330
94844
|
agentStudio_getAgents?: Maybe<AgentStudioAgentsConnection>;
|
|
94331
94845
|
agentStudio_getByExternalReference?: Maybe<AgentStudioAgentResult>;
|
|
94332
94846
|
agentStudio_getCreateAgentPermissions?: Maybe<AgentStudioAgentCreatePermissionsConnection>;
|
|
94847
|
+
agentStudio_getToolsByIdAndSource?: Maybe<Array<AgentStudioTool>>;
|
|
94333
94848
|
agentStudio_scenarioById?: Maybe<AgentStudioScenarioResult>;
|
|
94334
94849
|
agentStudio_scenarioListByContainerId?: Maybe<AgentStudioScenariosResult>;
|
|
94335
94850
|
agentStudio_scenariosByIds?: Maybe<Array<Maybe<AgentStudioScenario>>>;
|
|
@@ -94447,7 +94962,10 @@ export declare type Query = {
|
|
|
94447
94962
|
confluence_calendarJiraDateFieldsByJql?: Maybe<Array<Maybe<ConfluenceCalendarJiraDateField>>>;
|
|
94448
94963
|
confluence_calendarJiraDateFieldsBySearchFilter?: Maybe<Array<Maybe<ConfluenceCalendarJiraDateField>>>;
|
|
94449
94964
|
confluence_calendarPreference?: Maybe<ConfluenceCalendarPreference>;
|
|
94965
|
+
confluence_calendarRestrictionById?: Maybe<ConfluenceCalendarRestriction>;
|
|
94966
|
+
confluence_calendarSubscriptionInfoById?: Maybe<ConfluenceCalendarSubscriptionInfo>;
|
|
94450
94967
|
confluence_calendarTimezones?: Maybe<ConfluenceCalendarTimezones>;
|
|
94968
|
+
confluence_calendarsByCriteria?: Maybe<ConfluenceCalendarConnection>;
|
|
94451
94969
|
confluence_categorizeNbmChains?: Maybe<ConfluenceCategorizeNbmChainsResult>;
|
|
94452
94970
|
confluence_commentMediaSession?: Maybe<ContentMediaSession>;
|
|
94453
94971
|
confluence_contentAISummaries?: Maybe<Array<Maybe<ConfluenceContentAiSummaryResponse>>>;
|
|
@@ -94503,6 +95021,7 @@ export declare type Query = {
|
|
|
94503
95021
|
confluence_searchTeamLabels?: Maybe<LabelSearchResults>;
|
|
94504
95022
|
confluence_searchUser?: Maybe<ConfluenceSearchConnection>;
|
|
94505
95023
|
confluence_spaceMediaSession?: Maybe<ContentMediaSession>;
|
|
95024
|
+
confluence_spaceRecommendations?: Maybe<ConfluenceSpaceRecommendations>;
|
|
94506
95025
|
confluence_spaceRoleMode?: Maybe<ConfluenceSpaceRoleMode>;
|
|
94507
95026
|
confluence_spaceWatchersUnfiltered?: Maybe<PaginatedPersonList>;
|
|
94508
95027
|
confluence_storage?: Maybe<ConfluenceStorage>;
|
|
@@ -94693,6 +95212,7 @@ export declare type Query = {
|
|
|
94693
95212
|
goals_metricTargetsByIds?: Maybe<Array<Maybe<TownsquareMetricTarget>>>;
|
|
94694
95213
|
goals_metricValuesByIds?: Maybe<Array<Maybe<TownsquareMetricValue>>>;
|
|
94695
95214
|
goals_metricsByIds?: Maybe<Array<Maybe<TownsquareMetric>>>;
|
|
95215
|
+
graphIntegration_availableTwgCapabilityContainers?: Maybe<GraphIntegrationTwgCapabilityContainerListItemConnection>;
|
|
94696
95216
|
graphIntegration_componentDirectoryDimensions?: Maybe<GraphIntegrationDirectoryFilterDimensionConnection>;
|
|
94697
95217
|
graphIntegration_componentDirectoryItems?: Maybe<GraphIntegrationDirectoryItemConnection>;
|
|
94698
95218
|
graphIntegration_mcpAdminManagementMcpServer?: Maybe<GraphIntegrationMcpAdminManagementMcpServerNode>;
|
|
@@ -94700,6 +95220,8 @@ export declare type Query = {
|
|
|
94700
95220
|
graphIntegration_mcpAdminManagementMcpServers?: Maybe<GraphIntegrationMcpAdminManagementMcpServerConnection>;
|
|
94701
95221
|
graphIntegration_mcpAdminManagementMcpTools?: Maybe<GraphIntegrationMcpAdminManagementMcpToolConnection>;
|
|
94702
95222
|
graphIntegration_mcpServers?: Maybe<Array<Maybe<GraphIntegrationMcpServerNode>>>;
|
|
95223
|
+
graphIntegration_twgCapabilityContainer?: Maybe<GraphIntegrationTwgCapabilityContainer>;
|
|
95224
|
+
graphIntegration_twgCapabilityContainersInContext?: Maybe<GraphIntegrationTwgCapabilityContainerListItemConnection>;
|
|
94703
95225
|
graphStore?: Maybe<GraphStore>;
|
|
94704
95226
|
group?: Maybe<Group>;
|
|
94705
95227
|
groupCounts?: Maybe<GraphQlGroupCountsResult>;
|
|
@@ -95212,6 +95734,10 @@ export declare type QueryAgentStudio_GetByExternalReferenceArgs = {
|
|
|
95212
95734
|
export declare type QueryAgentStudio_GetCreateAgentPermissionsArgs = {
|
|
95213
95735
|
cloudId: Scalars['String']['input'];
|
|
95214
95736
|
};
|
|
95737
|
+
export declare type QueryAgentStudio_GetToolsByIdAndSourceArgs = {
|
|
95738
|
+
cloudId: Scalars['String']['input'];
|
|
95739
|
+
toolsToFetch: Array<AgentStudioToolIdAndSource>;
|
|
95740
|
+
};
|
|
95215
95741
|
export declare type QueryAgentStudio_ScenarioByIdArgs = {
|
|
95216
95742
|
containerId: Scalars['ID']['input'];
|
|
95217
95743
|
id: Scalars['ID']['input'];
|
|
@@ -95742,9 +96268,28 @@ export declare type QueryConfluence_CalendarJiraDateFieldsBySearchFilterArgs = {
|
|
|
95742
96268
|
export declare type QueryConfluence_CalendarPreferenceArgs = {
|
|
95743
96269
|
cloudId: Scalars['ID']['input'];
|
|
95744
96270
|
};
|
|
96271
|
+
export declare type QueryConfluence_CalendarRestrictionByIdArgs = {
|
|
96272
|
+
id: Scalars['ID']['input'];
|
|
96273
|
+
};
|
|
96274
|
+
export declare type QueryConfluence_CalendarSubscriptionInfoByIdArgs = {
|
|
96275
|
+
id: Scalars['ID']['input'];
|
|
96276
|
+
includeSubscriptionsFromContent?: InputMaybe<Scalars['Boolean']['input']>;
|
|
96277
|
+
spaceKey?: InputMaybe<Scalars['String']['input']>;
|
|
96278
|
+
};
|
|
95745
96279
|
export declare type QueryConfluence_CalendarTimezonesArgs = {
|
|
95746
96280
|
cloudId: Scalars['ID']['input'];
|
|
95747
96281
|
};
|
|
96282
|
+
export declare type QueryConfluence_CalendarsByCriteriaArgs = {
|
|
96283
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
96284
|
+
before?: InputMaybe<Scalars['String']['input']>;
|
|
96285
|
+
calendarContext?: InputMaybe<Scalars['String']['input']>;
|
|
96286
|
+
calendarIds?: InputMaybe<Array<InputMaybe<Scalars['ID']['input']>>>;
|
|
96287
|
+
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
96288
|
+
cql?: InputMaybe<Scalars['String']['input']>;
|
|
96289
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
96290
|
+
last?: InputMaybe<Scalars['Int']['input']>;
|
|
96291
|
+
viewingSpaceKey?: InputMaybe<Scalars['String']['input']>;
|
|
96292
|
+
};
|
|
95748
96293
|
export declare type QueryConfluence_CategorizeNbmChainsArgs = {
|
|
95749
96294
|
cloudId: Scalars['ID']['input'];
|
|
95750
96295
|
nbmChains: Array<InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>>;
|
|
@@ -95929,7 +96474,9 @@ export declare type QueryConfluence_NbmScanResultArgs = {
|
|
|
95929
96474
|
export declare type QueryConfluence_NbmVerificationResultArgs = {
|
|
95930
96475
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
95931
96476
|
cloudId: Scalars['ID']['input'];
|
|
96477
|
+
direction?: InputMaybe<ConfluenceNbmVerificationResultDirection>;
|
|
95932
96478
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
96479
|
+
orderBy?: InputMaybe<ConfluenceNbmVerificationResultOrder>;
|
|
95933
96480
|
scanId: Scalars['ID']['input'];
|
|
95934
96481
|
};
|
|
95935
96482
|
export declare type QueryConfluence_NoteArgs = {
|
|
@@ -96022,6 +96569,12 @@ export declare type QueryConfluence_SpaceMediaSessionArgs = {
|
|
|
96022
96569
|
contentType: Scalars['String']['input'];
|
|
96023
96570
|
spaceKey: Scalars['String']['input'];
|
|
96024
96571
|
};
|
|
96572
|
+
export declare type QueryConfluence_SpaceRecommendationsArgs = {
|
|
96573
|
+
cloudId: Scalars['ID']['input'];
|
|
96574
|
+
eventTypes?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
|
|
96575
|
+
limit?: InputMaybe<Scalars['Int']['input']>;
|
|
96576
|
+
startTime?: InputMaybe<Scalars['String']['input']>;
|
|
96577
|
+
};
|
|
96025
96578
|
export declare type QueryConfluence_SpaceRoleModeArgs = {
|
|
96026
96579
|
cloudId: Scalars['ID']['input'];
|
|
96027
96580
|
};
|
|
@@ -96858,6 +97411,13 @@ export declare type QueryGoals_MetricValuesByIdsArgs = {
|
|
|
96858
97411
|
export declare type QueryGoals_MetricsByIdsArgs = {
|
|
96859
97412
|
metricIds: Array<Scalars['ID']['input']>;
|
|
96860
97413
|
};
|
|
97414
|
+
export declare type QueryGraphIntegration_AvailableTwgCapabilityContainersArgs = {
|
|
97415
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
97416
|
+
before?: InputMaybe<Scalars['String']['input']>;
|
|
97417
|
+
contextAri: Scalars['ID']['input'];
|
|
97418
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
97419
|
+
last?: InputMaybe<Scalars['Int']['input']>;
|
|
97420
|
+
};
|
|
96861
97421
|
export declare type QueryGraphIntegration_ComponentDirectoryDimensionsArgs = {
|
|
96862
97422
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
96863
97423
|
cloudId: Scalars['ID']['input'];
|
|
@@ -96895,6 +97455,17 @@ export declare type QueryGraphIntegration_McpAdminManagementMcpToolsArgs = {
|
|
|
96895
97455
|
export declare type QueryGraphIntegration_McpServersArgs = {
|
|
96896
97456
|
ids: Array<Scalars['ID']['input']>;
|
|
96897
97457
|
};
|
|
97458
|
+
export declare type QueryGraphIntegration_TwgCapabilityContainerArgs = {
|
|
97459
|
+
contextAri: Scalars['ID']['input'];
|
|
97460
|
+
productAri: Scalars['ID']['input'];
|
|
97461
|
+
};
|
|
97462
|
+
export declare type QueryGraphIntegration_TwgCapabilityContainersInContextArgs = {
|
|
97463
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
97464
|
+
before?: InputMaybe<Scalars['String']['input']>;
|
|
97465
|
+
contextAri: Scalars['ID']['input'];
|
|
97466
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
97467
|
+
last?: InputMaybe<Scalars['Int']['input']>;
|
|
97468
|
+
};
|
|
96898
97469
|
export declare type QueryGroupArgs = {
|
|
96899
97470
|
groupId?: InputMaybe<Scalars['String']['input']>;
|
|
96900
97471
|
groupName?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -97995,6 +98566,7 @@ export declare type QueryStakeholderComms_ListStakeholdersArgs = {
|
|
|
97995
98566
|
filter?: InputMaybe<StakeholderCommsStakeholderConnectionFilter>;
|
|
97996
98567
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
97997
98568
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
98569
|
+
order?: InputMaybe<StakeholderCommsStakeholderConnectionOrder>;
|
|
97998
98570
|
search?: InputMaybe<StakeholderCommsStakeholderConnectionSearch>;
|
|
97999
98571
|
};
|
|
98000
98572
|
export declare type QueryStalePagesArgs = {
|
|
@@ -98489,6 +99061,7 @@ export declare type RadarGroupMetrics = {
|
|
|
98489
99061
|
__typename?: 'RadarGroupMetrics';
|
|
98490
99062
|
count: Scalars['Int']['output'];
|
|
98491
99063
|
field: RadarFieldValueIdPair;
|
|
99064
|
+
positionLaborCostEstimateTotal?: Maybe<RadarMoney>;
|
|
98492
99065
|
subGroups?: Maybe<RadarGroupMetricsConnection>;
|
|
98493
99066
|
};
|
|
98494
99067
|
export declare type RadarGroupMetricsSubGroupsArgs = {
|
|
@@ -100779,8 +101352,11 @@ export declare type SearchL2FeatureProvider = {
|
|
|
100779
101352
|
};
|
|
100780
101353
|
export declare type SearchLayerDefinition = {
|
|
100781
101354
|
abTestId?: InputMaybe<Scalars['String']['input']>;
|
|
101355
|
+
connectorSources?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
|
|
100782
101356
|
entity?: InputMaybe<Scalars['String']['input']>;
|
|
101357
|
+
integrationARI?: InputMaybe<Scalars['String']['input']>;
|
|
100783
101358
|
layerId?: InputMaybe<Scalars['String']['input']>;
|
|
101359
|
+
providerId?: InputMaybe<Scalars['String']['input']>;
|
|
100784
101360
|
shadowId?: InputMaybe<Scalars['String']['input']>;
|
|
100785
101361
|
subEntity?: InputMaybe<Scalars['String']['input']>;
|
|
100786
101362
|
};
|
|
@@ -122285,6 +122861,10 @@ export declare type StakeholderCommsNotificationPreferenceInput = {
|
|
|
122285
122861
|
preference?: InputMaybe<StakeholderCommsPreferencesInput>;
|
|
122286
122862
|
webhook?: InputMaybe<Scalars['String']['input']>;
|
|
122287
122863
|
};
|
|
122864
|
+
export declare enum StakeholderCommsOrderType {
|
|
122865
|
+
EmailId = "EMAIL_ID",
|
|
122866
|
+
Status = "STATUS"
|
|
122867
|
+
}
|
|
122288
122868
|
export declare type StakeholderCommsPage = {
|
|
122289
122869
|
__typename?: 'StakeholderCommsPage';
|
|
122290
122870
|
activityScore?: Maybe<Scalars['Int']['output']>;
|
|
@@ -122456,6 +123036,10 @@ export declare type StakeholderCommsStakeholderConnectionInput = {
|
|
|
122456
123036
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
122457
123037
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
122458
123038
|
};
|
|
123039
|
+
export declare type StakeholderCommsStakeholderConnectionOrder = {
|
|
123040
|
+
descending?: InputMaybe<Scalars['Boolean']['input']>;
|
|
123041
|
+
orderBy?: InputMaybe<StakeholderCommsOrderType>;
|
|
123042
|
+
};
|
|
122459
123043
|
export declare type StakeholderCommsStakeholderConnectionSearch = {
|
|
122460
123044
|
searchField?: InputMaybe<StakeholderCommsSearchField>;
|
|
122461
123045
|
searchValue?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -126369,8 +126953,11 @@ export declare type TrelloBaseCard = {
|
|
|
126369
126953
|
pinned?: Maybe<Scalars['Boolean']['output']>;
|
|
126370
126954
|
position?: Maybe<Scalars['Float']['output']>;
|
|
126371
126955
|
role?: Maybe<TrelloCardRole>;
|
|
126956
|
+
shortLink?: Maybe<Scalars['TrelloShortLink']['output']>;
|
|
126957
|
+
shortUrl?: Maybe<Scalars['URL']['output']>;
|
|
126372
126958
|
singleInstrumentationId?: Maybe<Scalars['String']['output']>;
|
|
126373
126959
|
startedAt?: Maybe<Scalars['DateTime']['output']>;
|
|
126960
|
+
url?: Maybe<Scalars['URL']['output']>;
|
|
126374
126961
|
};
|
|
126375
126962
|
export declare type TrelloBaseCardActionsArgs = {
|
|
126376
126963
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -127699,8 +128286,11 @@ export declare type TrelloInboxCard = TrelloBaseCard & {
|
|
|
127699
128286
|
pinned?: Maybe<Scalars['Boolean']['output']>;
|
|
127700
128287
|
position?: Maybe<Scalars['Float']['output']>;
|
|
127701
128288
|
role?: Maybe<TrelloCardRole>;
|
|
128289
|
+
shortLink?: Maybe<Scalars['TrelloShortLink']['output']>;
|
|
128290
|
+
shortUrl?: Maybe<Scalars['URL']['output']>;
|
|
127702
128291
|
singleInstrumentationId?: Maybe<Scalars['String']['output']>;
|
|
127703
128292
|
startedAt?: Maybe<Scalars['DateTime']['output']>;
|
|
128293
|
+
url?: Maybe<Scalars['URL']['output']>;
|
|
127704
128294
|
};
|
|
127705
128295
|
export declare type TrelloInboxCardActionsArgs = {
|
|
127706
128296
|
after?: InputMaybe<Scalars['String']['input']>;
|