@forge/cli-shared 8.22.1-next.1 → 8.23.0-next.11
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 +87 -0
- package/out/ari/ari.d.ts +4 -0
- package/out/ari/ari.d.ts.map +1 -1
- package/out/ari/ari.js +13 -1
- package/out/config/config-file.d.ts.map +1 -1
- package/out/config/config-file.js +16 -3
- package/out/graphql/graphql-types.d.ts +2080 -115
- package/out/graphql/graphql-types.d.ts.map +1 -1
- package/out/graphql/graphql-types.js +341 -47
- package/out/graphql/minimal-graphql-runner.d.ts +3 -3
- package/out/graphql/minimal-graphql-runner.d.ts.map +1 -1
- package/out/graphql/minimal-graphql-runner.js +7 -8
- package/out/shared/forge-cli-attribution.d.ts +16 -0
- package/out/shared/forge-cli-attribution.d.ts.map +1 -0
- package/out/shared/forge-cli-attribution.js +129 -0
- package/out/shared/index.d.ts +1 -0
- package/out/shared/index.d.ts.map +1 -1
- package/out/shared/index.js +1 -0
- package/out/ui/text.d.ts +21 -2
- package/out/ui/text.d.ts.map +1 -1
- package/out/ui/text.js +46 -6
- package/package.json +4 -2
|
@@ -159,6 +159,61 @@ export declare type AiOpsCreateInvestigationPayload = Payload & {
|
|
|
159
159
|
investigation?: Maybe<AiOpsInvestigation>;
|
|
160
160
|
success: Scalars['Boolean']['output'];
|
|
161
161
|
};
|
|
162
|
+
export declare type AiOpsEntityCount = {
|
|
163
|
+
__typename?: 'AIOpsEntityCount';
|
|
164
|
+
count?: Maybe<Scalars['Int']['output']>;
|
|
165
|
+
entityType?: Maybe<AiOpsRcaEntityType>;
|
|
166
|
+
};
|
|
167
|
+
export declare type AiOpsFaultyChange = {
|
|
168
|
+
__typename?: 'AIOpsFaultyChange';
|
|
169
|
+
attributes?: Maybe<AiOpsFaultyChangeAttributes>;
|
|
170
|
+
changeId?: Maybe<Scalars['String']['output']>;
|
|
171
|
+
relatedWorkItems?: Maybe<Array<Maybe<JiraIssue>>>;
|
|
172
|
+
type?: Maybe<AiOpsFaultyChangeType>;
|
|
173
|
+
};
|
|
174
|
+
export declare type AiOpsFaultyChangeAttributes = {
|
|
175
|
+
changeAttributeId?: Maybe<Scalars['String']['output']>;
|
|
176
|
+
description?: Maybe<Scalars['String']['output']>;
|
|
177
|
+
displayName?: Maybe<Scalars['String']['output']>;
|
|
178
|
+
url?: Maybe<Scalars['String']['output']>;
|
|
179
|
+
};
|
|
180
|
+
export declare enum AiOpsFaultyChangeType {
|
|
181
|
+
Commit = "COMMIT",
|
|
182
|
+
Deployment = "DEPLOYMENT",
|
|
183
|
+
FeatureFlag = "FEATURE_FLAG",
|
|
184
|
+
PullRequest = "PULL_REQUEST"
|
|
185
|
+
}
|
|
186
|
+
export declare type AiOpsFaultyCommitAttributes = AiOpsFaultyChangeAttributes & {
|
|
187
|
+
__typename?: 'AIOpsFaultyCommitAttributes';
|
|
188
|
+
changeAttributeId?: Maybe<Scalars['String']['output']>;
|
|
189
|
+
description?: Maybe<Scalars['String']['output']>;
|
|
190
|
+
displayName?: Maybe<Scalars['String']['output']>;
|
|
191
|
+
message?: Maybe<Scalars['String']['output']>;
|
|
192
|
+
url?: Maybe<Scalars['String']['output']>;
|
|
193
|
+
};
|
|
194
|
+
export declare type AiOpsFaultyDeploymentAttributes = AiOpsFaultyChangeAttributes & {
|
|
195
|
+
__typename?: 'AIOpsFaultyDeploymentAttributes';
|
|
196
|
+
changeAttributeId?: Maybe<Scalars['String']['output']>;
|
|
197
|
+
description?: Maybe<Scalars['String']['output']>;
|
|
198
|
+
displayName?: Maybe<Scalars['String']['output']>;
|
|
199
|
+
url?: Maybe<Scalars['String']['output']>;
|
|
200
|
+
};
|
|
201
|
+
export declare type AiOpsFaultyFeatureFlagAttributes = AiOpsFaultyChangeAttributes & {
|
|
202
|
+
__typename?: 'AIOpsFaultyFeatureFlagAttributes';
|
|
203
|
+
changeAttributeId?: Maybe<Scalars['String']['output']>;
|
|
204
|
+
description?: Maybe<Scalars['String']['output']>;
|
|
205
|
+
displayName?: Maybe<Scalars['String']['output']>;
|
|
206
|
+
url?: Maybe<Scalars['String']['output']>;
|
|
207
|
+
};
|
|
208
|
+
export declare type AiOpsFaultyPullRequestAttributes = AiOpsFaultyChangeAttributes & {
|
|
209
|
+
__typename?: 'AIOpsFaultyPullRequestAttributes';
|
|
210
|
+
changeAttributeId?: Maybe<Scalars['String']['output']>;
|
|
211
|
+
description?: Maybe<Scalars['String']['output']>;
|
|
212
|
+
displayName?: Maybe<Scalars['String']['output']>;
|
|
213
|
+
status?: Maybe<Scalars['String']['output']>;
|
|
214
|
+
title?: Maybe<Scalars['String']['output']>;
|
|
215
|
+
url?: Maybe<Scalars['String']['output']>;
|
|
216
|
+
};
|
|
162
217
|
export declare type AiOpsIncidentAffectedServiceDetail = {
|
|
163
218
|
__typename?: 'AIOpsIncidentAffectedServiceDetail';
|
|
164
219
|
name?: Maybe<Scalars['String']['output']>;
|
|
@@ -297,6 +352,16 @@ export declare type AiOpsInvestigation = {
|
|
|
297
352
|
input: AiOpsInvestigationInputContext;
|
|
298
353
|
lastUpdatedAt?: Maybe<Scalars['Long']['output']>;
|
|
299
354
|
status?: Maybe<AiOpsInvestigationStatus>;
|
|
355
|
+
terminalState?: Maybe<AiOpsInvestigationResult>;
|
|
356
|
+
};
|
|
357
|
+
export declare type AiOpsInvestigationCompleted = {
|
|
358
|
+
__typename?: 'AIOpsInvestigationCompleted';
|
|
359
|
+
changeCandidateFunnelCounts?: Maybe<Scalars['String']['output']>;
|
|
360
|
+
error?: Maybe<Scalars['String']['output']>;
|
|
361
|
+
errorContextSummary?: Maybe<Scalars['String']['output']>;
|
|
362
|
+
investigationJourney?: Maybe<Scalars['String']['output']>;
|
|
363
|
+
likelyRootCauses?: Maybe<Array<AiOpsLikelyRootCause>>;
|
|
364
|
+
processedEntitiesCount?: Maybe<Array<AiOpsEntityCount>>;
|
|
300
365
|
};
|
|
301
366
|
export declare type AiOpsInvestigationInputContext = {
|
|
302
367
|
__typename?: 'AIOpsInvestigationInputContext';
|
|
@@ -305,6 +370,7 @@ export declare type AiOpsInvestigationInputContext = {
|
|
|
305
370
|
sourceEntityType: AiOpsInvestigationSourceEntityType;
|
|
306
371
|
};
|
|
307
372
|
export declare type AiOpsInvestigationQueryResult = AiOpsInvestigation | QueryError;
|
|
373
|
+
export declare type AiOpsInvestigationResult = AiOpsInvestigationCompleted | AiOpsInvestigationTerminated;
|
|
308
374
|
export declare enum AiOpsInvestigationSourceEntityType {
|
|
309
375
|
Incident = "INCIDENT"
|
|
310
376
|
}
|
|
@@ -315,6 +381,51 @@ export declare enum AiOpsInvestigationStatus {
|
|
|
315
381
|
InProgress = "IN_PROGRESS",
|
|
316
382
|
New = "NEW"
|
|
317
383
|
}
|
|
384
|
+
export declare type AiOpsInvestigationTerminated = {
|
|
385
|
+
__typename?: 'AIOpsInvestigationTerminated';
|
|
386
|
+
terminatedAt?: Maybe<Scalars['Long']['output']>;
|
|
387
|
+
terminatedBy?: Maybe<User>;
|
|
388
|
+
};
|
|
389
|
+
export declare type AiOpsLikelyRootCause = {
|
|
390
|
+
__typename?: 'AIOpsLikelyRootCause';
|
|
391
|
+
confidenceLabel?: Maybe<AiOpsLikelyRootCauseConfidenceLabel>;
|
|
392
|
+
faultyChange?: Maybe<AiOpsFaultyChange>;
|
|
393
|
+
faultyService?: Maybe<DevOpsService>;
|
|
394
|
+
reasoning?: Maybe<Scalars['String']['output']>;
|
|
395
|
+
reasoningSummary?: Maybe<Scalars['String']['output']>;
|
|
396
|
+
reviewStatus?: Maybe<AiOpsLikelyRootCauseReviewStatus>;
|
|
397
|
+
reviewedAt?: Maybe<Scalars['Long']['output']>;
|
|
398
|
+
reviewedBy?: Maybe<User>;
|
|
399
|
+
rootCauseSuggestionId: Scalars['ID']['output'];
|
|
400
|
+
score?: Maybe<Scalars['Float']['output']>;
|
|
401
|
+
summary?: Maybe<Scalars['String']['output']>;
|
|
402
|
+
};
|
|
403
|
+
export declare enum AiOpsLikelyRootCauseConfidenceLabel {
|
|
404
|
+
HighConfidence = "HIGH_CONFIDENCE",
|
|
405
|
+
LowConfidence = "LOW_CONFIDENCE",
|
|
406
|
+
MediumConfidence = "MEDIUM_CONFIDENCE"
|
|
407
|
+
}
|
|
408
|
+
export declare enum AiOpsLikelyRootCauseReviewStatus {
|
|
409
|
+
Accepted = "ACCEPTED",
|
|
410
|
+
Discarded = "DISCARDED",
|
|
411
|
+
Unreviewed = "UNREVIEWED"
|
|
412
|
+
}
|
|
413
|
+
export declare enum AiOpsRcaEntityType {
|
|
414
|
+
Alert = "ALERT",
|
|
415
|
+
AlertGroup = "ALERT_GROUP",
|
|
416
|
+
Commit = "COMMIT",
|
|
417
|
+
Deployment = "DEPLOYMENT",
|
|
418
|
+
Ff = "FF",
|
|
419
|
+
Incident = "INCIDENT",
|
|
420
|
+
Pr = "PR",
|
|
421
|
+
ServiceDependency = "SERVICE_DEPENDENCY",
|
|
422
|
+
ServiceHypothesis = "SERVICE_HYPOTHESIS",
|
|
423
|
+
WorkItem = "WORK_ITEM"
|
|
424
|
+
}
|
|
425
|
+
export declare enum AiOpsRcaMode {
|
|
426
|
+
Deep = "DEEP",
|
|
427
|
+
Fast = "FAST"
|
|
428
|
+
}
|
|
318
429
|
export declare type AiOpsRelatedAlert = AiOpsRelatedAlertEntry & {
|
|
319
430
|
__typename?: 'AIOpsRelatedAlert';
|
|
320
431
|
alertDetailsPagePath?: Maybe<Scalars['String']['output']>;
|
|
@@ -372,7 +483,9 @@ export declare enum AiOpsRelatedAlertStatus {
|
|
|
372
483
|
Snoozed = "SNOOZED"
|
|
373
484
|
}
|
|
374
485
|
export declare type AiOpsTriggerInvestigationInput = {
|
|
486
|
+
agentic?: InputMaybe<Scalars['Boolean']['input']>;
|
|
375
487
|
inScopeServiceIds: Array<Scalars['ID']['input']>;
|
|
488
|
+
rcaMode?: InputMaybe<AiOpsRcaMode>;
|
|
376
489
|
sourceEntityId: Scalars['ID']['input'];
|
|
377
490
|
sourceEntityType: AiOpsInvestigationSourceEntityType;
|
|
378
491
|
};
|
|
@@ -1952,11 +2065,30 @@ export declare enum AvpIntegrationId {
|
|
|
1952
2065
|
JsmSummaryPage = "JSM_SUMMARY_PAGE",
|
|
1953
2066
|
Townsquare = "TOWNSQUARE"
|
|
1954
2067
|
}
|
|
2068
|
+
export declare type AvpJqlSource = {
|
|
2069
|
+
__typename?: 'AVPJqlSource';
|
|
2070
|
+
filterId?: Maybe<Scalars['ID']['output']>;
|
|
2071
|
+
jql?: Maybe<Scalars['String']['output']>;
|
|
2072
|
+
projectId?: Maybe<Scalars['ID']['output']>;
|
|
2073
|
+
type: AvpJqlSourceType;
|
|
2074
|
+
};
|
|
2075
|
+
export declare type AvpJqlSourceInput = {
|
|
2076
|
+
filterId?: InputMaybe<Scalars['ID']['input']>;
|
|
2077
|
+
jql?: InputMaybe<Scalars['String']['input']>;
|
|
2078
|
+
projectId?: InputMaybe<Scalars['ID']['input']>;
|
|
2079
|
+
type: AvpJqlSourceType;
|
|
2080
|
+
};
|
|
2081
|
+
export declare enum AvpJqlSourceType {
|
|
2082
|
+
FilterId = "FILTER_ID",
|
|
2083
|
+
ProjectId = "PROJECT_ID",
|
|
2084
|
+
RawJql = "RAW_JQL"
|
|
2085
|
+
}
|
|
1955
2086
|
export declare type AvpMetricsConfiguration = {
|
|
1956
2087
|
__typename?: 'AVPMetricsConfiguration';
|
|
1957
2088
|
dimensions?: Maybe<Array<AvpMetricsDimension>>;
|
|
1958
2089
|
filters?: Maybe<Array<AvpMetricsFilter>>;
|
|
1959
2090
|
granularity?: Maybe<Scalars['String']['output']>;
|
|
2091
|
+
jqlSource?: Maybe<AvpJqlSource>;
|
|
1960
2092
|
metrics?: Maybe<Array<Scalars['String']['output']>>;
|
|
1961
2093
|
searchCondition?: Maybe<Scalars['String']['output']>;
|
|
1962
2094
|
workspaceId?: Maybe<Scalars['String']['output']>;
|
|
@@ -1970,11 +2102,13 @@ export declare type AvpMetricsConfigurationFilterInput = {
|
|
|
1970
2102
|
dimension: Scalars['String']['input'];
|
|
1971
2103
|
operands: Array<Scalars['String']['input']>;
|
|
1972
2104
|
product: Scalars['String']['input'];
|
|
2105
|
+
withNullValue?: InputMaybe<Scalars['Boolean']['input']>;
|
|
1973
2106
|
};
|
|
1974
2107
|
export declare type AvpMetricsConfigurationInput = {
|
|
1975
2108
|
dimensions?: InputMaybe<Array<AvpMetricsConfigurationDimensionInput>>;
|
|
1976
2109
|
filters?: InputMaybe<Array<AvpMetricsConfigurationFilterInput>>;
|
|
1977
2110
|
granularity?: InputMaybe<Scalars['String']['input']>;
|
|
2111
|
+
jqlSource?: InputMaybe<AvpJqlSourceInput>;
|
|
1978
2112
|
metrics?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
1979
2113
|
searchCondition?: InputMaybe<Scalars['String']['input']>;
|
|
1980
2114
|
workspaceId?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -1990,6 +2124,7 @@ export declare type AvpMetricsFilter = {
|
|
|
1990
2124
|
dimension: Scalars['String']['output'];
|
|
1991
2125
|
operands: Array<Scalars['String']['output']>;
|
|
1992
2126
|
product: Scalars['String']['output'];
|
|
2127
|
+
withNullValue?: Maybe<Scalars['Boolean']['output']>;
|
|
1993
2128
|
};
|
|
1994
2129
|
export declare type AvpMoveCanvasElementInput = {
|
|
1995
2130
|
dashboardAri: Scalars['ID']['input'];
|
|
@@ -2230,6 +2365,11 @@ export declare type AvpProductWorkspaceMapEntry = {
|
|
|
2230
2365
|
product: Scalars['String']['input'];
|
|
2231
2366
|
workspaceId: Scalars['ID']['input'];
|
|
2232
2367
|
};
|
|
2368
|
+
export declare type AvpRecentDashboard = {
|
|
2369
|
+
__typename?: 'AVPRecentDashboard';
|
|
2370
|
+
dashboard: AvpDashboard;
|
|
2371
|
+
lastViewedByUserAt?: Maybe<Scalars['String']['output']>;
|
|
2372
|
+
};
|
|
2233
2373
|
export declare enum AvpRefreshMethod {
|
|
2234
2374
|
RefreshAuto = "REFRESH_AUTO",
|
|
2235
2375
|
RefreshLoad = "REFRESH_LOAD",
|
|
@@ -2272,6 +2412,7 @@ export declare type AvpStarDashboardInput = {
|
|
|
2272
2412
|
};
|
|
2273
2413
|
export declare type AvpStarDashboardPayload = Payload & {
|
|
2274
2414
|
__typename?: 'AVPStarDashboardPayload';
|
|
2415
|
+
dashboard?: Maybe<AvpDashboard>;
|
|
2275
2416
|
errors?: Maybe<Array<MutationError>>;
|
|
2276
2417
|
success: Scalars['Boolean']['output'];
|
|
2277
2418
|
};
|
|
@@ -2306,9 +2447,16 @@ export declare type AvpUnstarDashboardInput = {
|
|
|
2306
2447
|
};
|
|
2307
2448
|
export declare type AvpUnstarDashboardPayload = Payload & {
|
|
2308
2449
|
__typename?: 'AVPUnstarDashboardPayload';
|
|
2450
|
+
dashboard?: Maybe<AvpDashboard>;
|
|
2309
2451
|
errors?: Maybe<Array<MutationError>>;
|
|
2310
2452
|
success: Scalars['Boolean']['output'];
|
|
2311
2453
|
};
|
|
2454
|
+
export declare type AvpUpdateChartByConfigIdInput = {
|
|
2455
|
+
chart: AvpChartInput;
|
|
2456
|
+
chartConfigId: Scalars['ID']['input'];
|
|
2457
|
+
cloudId: Scalars['ID']['input'];
|
|
2458
|
+
workspaceAri: Scalars['ID']['input'];
|
|
2459
|
+
};
|
|
2312
2460
|
export declare type AvpUpdateChartInput = {
|
|
2313
2461
|
chart: AvpChartInput;
|
|
2314
2462
|
chartAri: Scalars['ID']['input'];
|
|
@@ -2435,6 +2583,11 @@ export declare type AvpVizConfigInput = {
|
|
|
2435
2583
|
accessors?: InputMaybe<Scalars['JSON']['input']>;
|
|
2436
2584
|
data: Array<Array<InputMaybe<Scalars['JSON']['input']>>>;
|
|
2437
2585
|
};
|
|
2586
|
+
export declare type AvpWorkspaceExperience = {
|
|
2587
|
+
__typename?: 'AVPWorkspaceExperience';
|
|
2588
|
+
id: Scalars['ID']['output'];
|
|
2589
|
+
isOptedInToAAPlatformDashboards?: Maybe<Scalars['Boolean']['output']>;
|
|
2590
|
+
};
|
|
2438
2591
|
export declare enum AcceptableResponse {
|
|
2439
2592
|
False = "FALSE",
|
|
2440
2593
|
NotApplicable = "NOT_APPLICABLE",
|
|
@@ -2479,6 +2632,7 @@ export declare type ActionsAction = {
|
|
|
2479
2632
|
actionType: Scalars['String']['output'];
|
|
2480
2633
|
actionVerb?: Maybe<Scalars['String']['output']>;
|
|
2481
2634
|
actionVersion?: Maybe<Scalars['String']['output']>;
|
|
2635
|
+
audience?: Maybe<ActionsActionAudience>;
|
|
2482
2636
|
auth: Array<ActionsAuthType>;
|
|
2483
2637
|
connection?: Maybe<ActionsConnection>;
|
|
2484
2638
|
description?: Maybe<ActionsDescription>;
|
|
@@ -2496,6 +2650,10 @@ export declare type ActionsAction = {
|
|
|
2496
2650
|
target?: Maybe<ActionsTargetInputs>;
|
|
2497
2651
|
uiSchema?: Maybe<ActionsConfigurationUiSchema>;
|
|
2498
2652
|
};
|
|
2653
|
+
export declare enum ActionsActionAudience {
|
|
2654
|
+
External = "EXTERNAL",
|
|
2655
|
+
Internal = "INTERNAL"
|
|
2656
|
+
}
|
|
2499
2657
|
export declare type ActionsActionConfiguration = {
|
|
2500
2658
|
__typename?: 'ActionsActionConfiguration';
|
|
2501
2659
|
properties?: Maybe<Array<ActionsActionConfigurationKeyValuePair>>;
|
|
@@ -5180,6 +5338,7 @@ export declare type AgentStudioAgent = {
|
|
|
5180
5338
|
description?: Maybe<Scalars['String']['output']>;
|
|
5181
5339
|
etag?: Maybe<Scalars['String']['output']>;
|
|
5182
5340
|
id: Scalars['ID']['output'];
|
|
5341
|
+
isFollowUpQuestionsEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
5183
5342
|
isModelUpgradeAvailable?: Maybe<Scalars['Boolean']['output']>;
|
|
5184
5343
|
isPublished: Scalars['Boolean']['output'];
|
|
5185
5344
|
jiraAssignability?: Maybe<JiraAgentAssignability>;
|
|
@@ -5319,6 +5478,7 @@ export declare type AgentStudioAssistant = AgentStudioAgent & AgentStudioBaseCon
|
|
|
5319
5478
|
instructions?: Maybe<Scalars['String']['output']>;
|
|
5320
5479
|
isDeepResearchEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
5321
5480
|
isFavourite?: Maybe<Scalars['Boolean']['output']>;
|
|
5481
|
+
isFollowUpQuestionsEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
5322
5482
|
isModelUpgradeAvailable?: Maybe<Scalars['Boolean']['output']>;
|
|
5323
5483
|
isPublished: Scalars['Boolean']['output'];
|
|
5324
5484
|
isVerified?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -5608,6 +5768,7 @@ export declare type AgentStudioCreateAgentInput = {
|
|
|
5608
5768
|
description?: InputMaybe<Scalars['String']['input']>;
|
|
5609
5769
|
executionConfig?: InputMaybe<AgentStudioExecutionConfigInput>;
|
|
5610
5770
|
instructions?: InputMaybe<Scalars['String']['input']>;
|
|
5771
|
+
isFollowUpQuestionsEnabled?: InputMaybe<Scalars['Boolean']['input']>;
|
|
5611
5772
|
isWebSearchEnabled?: InputMaybe<Scalars['Boolean']['input']>;
|
|
5612
5773
|
jiraProjectId?: InputMaybe<Scalars['ID']['input']>;
|
|
5613
5774
|
knowledgeSources?: InputMaybe<AgentStudioKnowledgeConfigurationInput>;
|
|
@@ -6012,6 +6173,7 @@ export declare type AgentStudioKnowledgeGapUploadJob = {
|
|
|
6012
6173
|
export declare enum AgentStudioKnowledgeGapUploadJobStatus {
|
|
6013
6174
|
Clustering = "CLUSTERING",
|
|
6014
6175
|
Completed = "COMPLETED",
|
|
6176
|
+
Dlq = "DLQ",
|
|
6015
6177
|
Failed = "FAILED",
|
|
6016
6178
|
Generating = "GENERATING",
|
|
6017
6179
|
PartialComplete = "PARTIAL_COMPLETE",
|
|
@@ -6229,6 +6391,7 @@ export declare type AgentStudioServiceAgent = AgentStudioAgent & Node & {
|
|
|
6229
6391
|
description?: Maybe<Scalars['String']['output']>;
|
|
6230
6392
|
etag?: Maybe<Scalars['String']['output']>;
|
|
6231
6393
|
id: Scalars['ID']['output'];
|
|
6394
|
+
isFollowUpQuestionsEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
6232
6395
|
isModelUpgradeAvailable?: Maybe<Scalars['Boolean']['output']>;
|
|
6233
6396
|
isPublished: Scalars['Boolean']['output'];
|
|
6234
6397
|
jiraAssignability?: Maybe<JiraAgentAssignability>;
|
|
@@ -6555,6 +6718,7 @@ export declare type AgentStudioUpdateAgentDetailsInput = {
|
|
|
6555
6718
|
etag?: InputMaybe<Scalars['String']['input']>;
|
|
6556
6719
|
executionConfig?: InputMaybe<AgentStudioExecutionConfigInput>;
|
|
6557
6720
|
instructions?: InputMaybe<Scalars['String']['input']>;
|
|
6721
|
+
isFollowUpQuestionsEnabled?: InputMaybe<Scalars['Boolean']['input']>;
|
|
6558
6722
|
isWebSearchEnabled?: InputMaybe<Scalars['Boolean']['input']>;
|
|
6559
6723
|
knowledgeSources?: InputMaybe<AgentStudioKnowledgeConfigurationInput>;
|
|
6560
6724
|
name?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -6762,6 +6926,15 @@ export declare type AgentWorkspaceAgentCapacityEdge = {
|
|
|
6762
6926
|
cursor: Scalars['String']['output'];
|
|
6763
6927
|
node: AgentWorkspaceAgentCapacity;
|
|
6764
6928
|
};
|
|
6929
|
+
export declare type AgentWorkspaceAgentExclusionReason = {
|
|
6930
|
+
__typename?: 'AgentWorkspaceAgentExclusionReason';
|
|
6931
|
+
code: AgentWorkspaceAgentExclusionReasonCode;
|
|
6932
|
+
message?: Maybe<Scalars['String']['output']>;
|
|
6933
|
+
};
|
|
6934
|
+
export declare enum AgentWorkspaceAgentExclusionReasonCode {
|
|
6935
|
+
AssignedToSameSchedule = "ASSIGNED_TO_SAME_SCHEDULE",
|
|
6936
|
+
Unknown = "UNKNOWN"
|
|
6937
|
+
}
|
|
6765
6938
|
export declare type AgentWorkspaceAgentRebalancingRecommendationsInput = {
|
|
6766
6939
|
agentId: Scalars['ID']['input'];
|
|
6767
6940
|
projectARI: Scalars['ID']['input'];
|
|
@@ -6774,6 +6947,9 @@ export declare type AgentWorkspaceAgentRecommendation = {
|
|
|
6774
6947
|
export declare type AgentWorkspaceAgentShifts = {
|
|
6775
6948
|
__typename?: 'AgentWorkspaceAgentShifts';
|
|
6776
6949
|
agent: AgentWorkspaceAgent;
|
|
6950
|
+
coverageGapDetails?: Maybe<Array<AgentWorkspaceCoverageGap>>;
|
|
6951
|
+
coverageGaps: Array<AgentWorkspaceTimeRange>;
|
|
6952
|
+
coveringShifts: Array<AgentWorkspaceCoveringShift>;
|
|
6777
6953
|
hasShifts: Scalars['Boolean']['output'];
|
|
6778
6954
|
shifts: Array<AgentWorkspaceShift>;
|
|
6779
6955
|
totalHours: Scalars['Float']['output'];
|
|
@@ -6806,12 +6982,12 @@ export declare type AgentWorkspaceArchiveSkillPayload = {
|
|
|
6806
6982
|
};
|
|
6807
6983
|
export declare type AgentWorkspaceAssignAgentToGapInput = {
|
|
6808
6984
|
assignedAgentId: Scalars['ID']['input'];
|
|
6809
|
-
|
|
6810
|
-
|
|
6811
|
-
occurrenceAgentId: Scalars['ID']['input'];
|
|
6812
|
-
occurrenceStartTime: Scalars['DateTime']['input'];
|
|
6985
|
+
endTime: Scalars['DateTime']['input'];
|
|
6986
|
+
gapOwnerAgentId: Scalars['ID']['input'];
|
|
6813
6987
|
projectARI: Scalars['ID']['input'];
|
|
6814
6988
|
scheduleId: Scalars['ID']['input'];
|
|
6989
|
+
shiftSegmentId: Scalars['ID']['input'];
|
|
6990
|
+
startTime: Scalars['DateTime']['input'];
|
|
6815
6991
|
};
|
|
6816
6992
|
export declare type AgentWorkspaceAssignAgentToGapPayload = {
|
|
6817
6993
|
__typename?: 'AgentWorkspaceAssignAgentToGapPayload';
|
|
@@ -6993,6 +7169,32 @@ export declare type AgentWorkspaceCapacitySummary = {
|
|
|
6993
7169
|
totalCapacity: Scalars['Int']['output'];
|
|
6994
7170
|
totalUnassignedWorkItems: Scalars['Int']['output'];
|
|
6995
7171
|
};
|
|
7172
|
+
export declare type AgentWorkspaceCoverShiftEditBoundsInput = {
|
|
7173
|
+
agentId: Scalars['ID']['input'];
|
|
7174
|
+
projectARI: Scalars['ID']['input'];
|
|
7175
|
+
scheduleId: Scalars['ID']['input'];
|
|
7176
|
+
shiftSegmentId: Scalars['ID']['input'];
|
|
7177
|
+
};
|
|
7178
|
+
export declare type AgentWorkspaceCoverageGap = {
|
|
7179
|
+
__typename?: 'AgentWorkspaceCoverageGap';
|
|
7180
|
+
agentId: Scalars['ID']['output'];
|
|
7181
|
+
durationMinutes: Scalars['Int']['output'];
|
|
7182
|
+
endTime: Scalars['DateTime']['output'];
|
|
7183
|
+
scheduleId: Scalars['ID']['output'];
|
|
7184
|
+
scheduleName: Scalars['String']['output'];
|
|
7185
|
+
shiftSegmentId: Scalars['ID']['output'];
|
|
7186
|
+
startTime: Scalars['DateTime']['output'];
|
|
7187
|
+
};
|
|
7188
|
+
export declare type AgentWorkspaceCoveringShift = {
|
|
7189
|
+
__typename?: 'AgentWorkspaceCoveringShift';
|
|
7190
|
+
coveringAgentId: Scalars['ID']['output'];
|
|
7191
|
+
durationMinutes: Scalars['Int']['output'];
|
|
7192
|
+
endTime: Scalars['DateTime']['output'];
|
|
7193
|
+
scheduleId: Scalars['ID']['output'];
|
|
7194
|
+
scheduleName: Scalars['String']['output'];
|
|
7195
|
+
shiftSegmentId: Scalars['ID']['output'];
|
|
7196
|
+
startTime: Scalars['DateTime']['output'];
|
|
7197
|
+
};
|
|
6996
7198
|
export declare type AgentWorkspaceCreateAndLinkTeamsInput = {
|
|
6997
7199
|
groups: Array<AgentWorkspaceCreateTeamFromGroupInput>;
|
|
6998
7200
|
projectARI: Scalars['ID']['input'];
|
|
@@ -7006,13 +7208,14 @@ export declare type AgentWorkspaceCreateAndLinkTeamsPayload = {
|
|
|
7006
7208
|
teamCreationFailures: Array<AgentWorkspaceTeamCreationFailure>;
|
|
7007
7209
|
teamLinkFailures: Array<AgentWorkspaceTeamLinkFailure>;
|
|
7008
7210
|
};
|
|
7009
|
-
export declare type
|
|
7211
|
+
export declare type AgentWorkspaceCreateDraftedRoutingTableEntriesInput = {
|
|
7212
|
+
cloudId: Scalars['ID']['input'];
|
|
7010
7213
|
cursor?: InputMaybe<Scalars['String']['input']>;
|
|
7011
7214
|
fieldId: Scalars['String']['input'];
|
|
7012
|
-
|
|
7215
|
+
projectKey: Scalars['String']['input'];
|
|
7013
7216
|
};
|
|
7014
|
-
export declare type
|
|
7015
|
-
__typename?: '
|
|
7217
|
+
export declare type AgentWorkspaceCreateDraftedRoutingTableEntriesPayload = {
|
|
7218
|
+
__typename?: 'AgentWorkspaceCreateDraftedRoutingTableEntriesPayload';
|
|
7016
7219
|
pageInfo: AgentWorkspacePageInfo;
|
|
7017
7220
|
rows: Array<AgentWorkspaceDraftedRoutingTableEntry>;
|
|
7018
7221
|
rowsInserted: Scalars['Int']['output'];
|
|
@@ -7057,6 +7260,17 @@ export declare type AgentWorkspaceDefaultCapacity = {
|
|
|
7057
7260
|
projectId: Scalars['ID']['output'];
|
|
7058
7261
|
updatedAt: Scalars['DateTime']['output'];
|
|
7059
7262
|
};
|
|
7263
|
+
export declare type AgentWorkspaceDeleteCoverShiftInput = {
|
|
7264
|
+
agentId: Scalars['ID']['input'];
|
|
7265
|
+
projectARI: Scalars['ID']['input'];
|
|
7266
|
+
scheduleId: Scalars['ID']['input'];
|
|
7267
|
+
shiftSegmentId: Scalars['ID']['input'];
|
|
7268
|
+
};
|
|
7269
|
+
export declare type AgentWorkspaceDeleteCoverShiftPayload = {
|
|
7270
|
+
__typename?: 'AgentWorkspaceDeleteCoverShiftPayload';
|
|
7271
|
+
errors?: Maybe<Array<AgentWorkspaceScheduleError>>;
|
|
7272
|
+
success: Scalars['Boolean']['output'];
|
|
7273
|
+
};
|
|
7060
7274
|
export declare type AgentWorkspaceDeleteScheduleInput = {
|
|
7061
7275
|
cloudId: Scalars['ID']['input'];
|
|
7062
7276
|
projectId?: InputMaybe<Scalars['ID']['input']>;
|
|
@@ -7082,8 +7296,8 @@ export declare type AgentWorkspaceDeleteShiftPayload = {
|
|
|
7082
7296
|
shift?: Maybe<AgentWorkspaceShift>;
|
|
7083
7297
|
success: Scalars['Boolean']['output'];
|
|
7084
7298
|
};
|
|
7085
|
-
export declare type
|
|
7086
|
-
__typename?: '
|
|
7299
|
+
export declare type AgentWorkspaceDraftedRoutingTableEntries = {
|
|
7300
|
+
__typename?: 'AgentWorkspaceDraftedRoutingTableEntries';
|
|
7087
7301
|
entries: Array<AgentWorkspaceDraftedRoutingTableEntry>;
|
|
7088
7302
|
};
|
|
7089
7303
|
export declare type AgentWorkspaceDraftedRoutingTableEntry = {
|
|
@@ -7093,7 +7307,6 @@ export declare type AgentWorkspaceDraftedRoutingTableEntry = {
|
|
|
7093
7307
|
serviceId: Scalars['ID']['output'];
|
|
7094
7308
|
serviceName: Scalars['String']['output'];
|
|
7095
7309
|
teamAri?: Maybe<Scalars['ID']['output']>;
|
|
7096
|
-
teamName?: Maybe<Scalars['String']['output']>;
|
|
7097
7310
|
};
|
|
7098
7311
|
export declare type AgentWorkspaceDraftedRoutingTableEntryPatch = {
|
|
7099
7312
|
confidence?: InputMaybe<Scalars['Float']['input']>;
|
|
@@ -7101,14 +7314,33 @@ export declare type AgentWorkspaceDraftedRoutingTableEntryPatch = {
|
|
|
7101
7314
|
serviceName?: InputMaybe<Scalars['String']['input']>;
|
|
7102
7315
|
source?: InputMaybe<AgentWorkspaceDraftedRoutingTableEntrySource>;
|
|
7103
7316
|
teamAri?: InputMaybe<Scalars['ID']['input']>;
|
|
7104
|
-
teamName?: InputMaybe<Scalars['String']['input']>;
|
|
7105
7317
|
};
|
|
7106
7318
|
export declare enum AgentWorkspaceDraftedRoutingTableEntrySource {
|
|
7107
7319
|
Manual = "MANUAL",
|
|
7108
7320
|
Rovo = "ROVO"
|
|
7109
7321
|
}
|
|
7322
|
+
export declare type AgentWorkspaceDraftedRoutingTableStatus = {
|
|
7323
|
+
__typename?: 'AgentWorkspaceDraftedRoutingTableStatus';
|
|
7324
|
+
serviceFieldId?: Maybe<Scalars['String']['output']>;
|
|
7325
|
+
};
|
|
7326
|
+
export declare type AgentWorkspaceEditCoverShiftInput = {
|
|
7327
|
+
agentId: Scalars['ID']['input'];
|
|
7328
|
+
newAgentId?: InputMaybe<Scalars['ID']['input']>;
|
|
7329
|
+
newEndTime: Scalars['DateTime']['input'];
|
|
7330
|
+
newStartTime: Scalars['DateTime']['input'];
|
|
7331
|
+
projectARI: Scalars['ID']['input'];
|
|
7332
|
+
scheduleId: Scalars['ID']['input'];
|
|
7333
|
+
shiftSegmentId: Scalars['ID']['input'];
|
|
7334
|
+
};
|
|
7335
|
+
export declare type AgentWorkspaceEditCoverShiftPayload = {
|
|
7336
|
+
__typename?: 'AgentWorkspaceEditCoverShiftPayload';
|
|
7337
|
+
errors?: Maybe<Array<AgentWorkspaceScheduleError>>;
|
|
7338
|
+
resultingCoveringShifts: Array<AgentWorkspaceCoveringShift>;
|
|
7339
|
+
success: Scalars['Boolean']['output'];
|
|
7340
|
+
};
|
|
7110
7341
|
export declare type AgentWorkspaceEditShiftInput = {
|
|
7111
7342
|
agentId: Scalars['ID']['input'];
|
|
7343
|
+
newAgentId?: InputMaybe<Scalars['ID']['input']>;
|
|
7112
7344
|
newEndTime: Scalars['DateTime']['input'];
|
|
7113
7345
|
newStartTime: Scalars['DateTime']['input'];
|
|
7114
7346
|
occurrenceStartTime: Scalars['DateTime']['input'];
|
|
@@ -7117,6 +7349,7 @@ export declare type AgentWorkspaceEditShiftInput = {
|
|
|
7117
7349
|
};
|
|
7118
7350
|
export declare type AgentWorkspaceEditShiftPayload = {
|
|
7119
7351
|
__typename?: 'AgentWorkspaceEditShiftPayload';
|
|
7352
|
+
createdCoveringShifts: Array<AgentWorkspaceCoveringShift>;
|
|
7120
7353
|
errors?: Maybe<Array<AgentWorkspaceScheduleError>>;
|
|
7121
7354
|
shift?: Maybe<AgentWorkspaceShift>;
|
|
7122
7355
|
success: Scalars['Boolean']['output'];
|
|
@@ -7132,6 +7365,11 @@ export declare type AgentWorkspaceEligibleGroupsPayload = {
|
|
|
7132
7365
|
eligibleGroups: Array<AgentWorkspaceEligibleGroup>;
|
|
7133
7366
|
groupsTooLarge: Array<AgentWorkspaceGroupTooLarge>;
|
|
7134
7367
|
};
|
|
7368
|
+
export declare type AgentWorkspaceExcludedAgent = {
|
|
7369
|
+
__typename?: 'AgentWorkspaceExcludedAgent';
|
|
7370
|
+
agent: AgentWorkspaceAgent;
|
|
7371
|
+
exclusionReasons: Array<AgentWorkspaceAgentExclusionReason>;
|
|
7372
|
+
};
|
|
7135
7373
|
export declare type AgentWorkspaceGroupMember = {
|
|
7136
7374
|
__typename?: 'AgentWorkspaceGroupMember';
|
|
7137
7375
|
accountId: Scalars['String']['output'];
|
|
@@ -7147,6 +7385,19 @@ export declare type AgentWorkspaceIssueRebalancingRecommendation = {
|
|
|
7147
7385
|
issueARI: Scalars['ID']['output'];
|
|
7148
7386
|
recommendations: Array<AgentWorkspaceRebalancingRecommendation>;
|
|
7149
7387
|
};
|
|
7388
|
+
export declare type AgentWorkspaceIssueRoutingHistory = {
|
|
7389
|
+
__typename?: 'AgentWorkspaceIssueRoutingHistory';
|
|
7390
|
+
events: AgentWorkspaceRoutingHistoryEventConnection;
|
|
7391
|
+
issueKey: Scalars['String']['output'];
|
|
7392
|
+
};
|
|
7393
|
+
export declare type AgentWorkspaceIssueRoutingHistoryEventsArgs = {
|
|
7394
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
7395
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
7396
|
+
};
|
|
7397
|
+
export declare type AgentWorkspaceLiveRoutingTable = {
|
|
7398
|
+
__typename?: 'AgentWorkspaceLiveRoutingTable';
|
|
7399
|
+
entries: Array<AgentWorkspaceRoutingTableEntry>;
|
|
7400
|
+
};
|
|
7150
7401
|
export declare type AgentWorkspaceMutationError = {
|
|
7151
7402
|
__typename?: 'AgentWorkspaceMutationError';
|
|
7152
7403
|
code?: Maybe<Scalars['String']['output']>;
|
|
@@ -7178,6 +7429,17 @@ export declare type AgentWorkspaceRecommendationError = {
|
|
|
7178
7429
|
__typename?: 'AgentWorkspaceRecommendationError';
|
|
7179
7430
|
message: Scalars['String']['output'];
|
|
7180
7431
|
};
|
|
7432
|
+
export declare type AgentWorkspaceRecommendedAgentsForCoverageGapInput = {
|
|
7433
|
+
gapOwnerAgentId: Scalars['ID']['input'];
|
|
7434
|
+
projectARI: Scalars['ID']['input'];
|
|
7435
|
+
scheduleId: Scalars['ID']['input'];
|
|
7436
|
+
shiftSegmentId: Scalars['ID']['input'];
|
|
7437
|
+
};
|
|
7438
|
+
export declare type AgentWorkspaceRecommendedAgentsForCoverageGapPayload = {
|
|
7439
|
+
__typename?: 'AgentWorkspaceRecommendedAgentsForCoverageGapPayload';
|
|
7440
|
+
excludedAgents: Array<AgentWorkspaceExcludedAgent>;
|
|
7441
|
+
recommendedAgents: Array<AgentWorkspaceAgent>;
|
|
7442
|
+
};
|
|
7181
7443
|
export declare type AgentWorkspaceRecommendedAgentsForGapInput = {
|
|
7182
7444
|
originalAgentId: Scalars['ID']['input'];
|
|
7183
7445
|
projectARI: Scalars['ID']['input'];
|
|
@@ -7225,15 +7487,35 @@ export declare type AgentWorkspaceRestoreSkillPayload = {
|
|
|
7225
7487
|
errors?: Maybe<Array<MutationError>>;
|
|
7226
7488
|
success: Scalars['Boolean']['output'];
|
|
7227
7489
|
};
|
|
7228
|
-
export declare type
|
|
7229
|
-
__typename?: '
|
|
7230
|
-
|
|
7231
|
-
|
|
7232
|
-
|
|
7490
|
+
export declare type AgentWorkspaceRoutingHistoryEvent = {
|
|
7491
|
+
__typename?: 'AgentWorkspaceRoutingHistoryEvent';
|
|
7492
|
+
details: Array<Scalars['String']['output']>;
|
|
7493
|
+
headline: Scalars['String']['output'];
|
|
7494
|
+
id: Scalars['ID']['output'];
|
|
7495
|
+
kind: AgentWorkspaceRoutingHistoryEventKind;
|
|
7496
|
+
occurredAt: Scalars['DateTime']['output'];
|
|
7233
7497
|
};
|
|
7234
|
-
export declare type
|
|
7235
|
-
__typename?: '
|
|
7236
|
-
|
|
7498
|
+
export declare type AgentWorkspaceRoutingHistoryEventConnection = {
|
|
7499
|
+
__typename?: 'AgentWorkspaceRoutingHistoryEventConnection';
|
|
7500
|
+
edges: Array<AgentWorkspaceRoutingHistoryEventEdge>;
|
|
7501
|
+
pageInfo: AgentWorkspaceRoutingHistoryPageInfo;
|
|
7502
|
+
};
|
|
7503
|
+
export declare type AgentWorkspaceRoutingHistoryEventEdge = {
|
|
7504
|
+
__typename?: 'AgentWorkspaceRoutingHistoryEventEdge';
|
|
7505
|
+
cursor: Scalars['String']['output'];
|
|
7506
|
+
node: AgentWorkspaceRoutingHistoryEvent;
|
|
7507
|
+
};
|
|
7508
|
+
export declare enum AgentWorkspaceRoutingHistoryEventKind {
|
|
7509
|
+
DeterminedService = "DETERMINED_SERVICE",
|
|
7510
|
+
Routed = "ROUTED",
|
|
7511
|
+
Skipped = "SKIPPED"
|
|
7512
|
+
}
|
|
7513
|
+
export declare type AgentWorkspaceRoutingHistoryPageInfo = {
|
|
7514
|
+
__typename?: 'AgentWorkspaceRoutingHistoryPageInfo';
|
|
7515
|
+
endCursor?: Maybe<Scalars['String']['output']>;
|
|
7516
|
+
hasNextPage: Scalars['Boolean']['output'];
|
|
7517
|
+
hasPreviousPage: Scalars['Boolean']['output'];
|
|
7518
|
+
startCursor?: Maybe<Scalars['String']['output']>;
|
|
7237
7519
|
};
|
|
7238
7520
|
export declare type AgentWorkspaceRoutingTableEntry = {
|
|
7239
7521
|
__typename?: 'AgentWorkspaceRoutingTableEntry';
|
|
@@ -7273,6 +7555,7 @@ export declare type AgentWorkspaceSchedule = {
|
|
|
7273
7555
|
__typename?: 'AgentWorkspaceSchedule';
|
|
7274
7556
|
agents: Array<AgentWorkspaceAgent>;
|
|
7275
7557
|
cloudId: Scalars['ID']['output'];
|
|
7558
|
+
coverageGapDetails?: Maybe<Array<AgentWorkspaceCoverageGap>>;
|
|
7276
7559
|
coverageGaps: Array<AgentWorkspaceTimeRange>;
|
|
7277
7560
|
createdAt: Scalars['DateTime']['output'];
|
|
7278
7561
|
createdBy: Scalars['String']['output'];
|
|
@@ -7341,6 +7624,12 @@ export declare type AgentWorkspaceSchedulesPageInfo = {
|
|
|
7341
7624
|
hasPreviousPage: Scalars['Boolean']['output'];
|
|
7342
7625
|
startCursor?: Maybe<Scalars['String']['output']>;
|
|
7343
7626
|
};
|
|
7627
|
+
export declare type AgentWorkspaceService = {
|
|
7628
|
+
__typename?: 'AgentWorkspaceService';
|
|
7629
|
+
description?: Maybe<Scalars['String']['output']>;
|
|
7630
|
+
id: Scalars['ID']['output'];
|
|
7631
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
7632
|
+
};
|
|
7344
7633
|
export declare type AgentWorkspaceServiceBucket = {
|
|
7345
7634
|
__typename?: 'AgentWorkspaceServiceBucket';
|
|
7346
7635
|
sampleTickets: Array<AgentWorkspaceTicketSample>;
|
|
@@ -7372,6 +7661,18 @@ export declare type AgentWorkspaceServiceClusteringResult = {
|
|
|
7372
7661
|
totalClusters: Scalars['Int']['output'];
|
|
7373
7662
|
totalTickets: Scalars['Int']['output'];
|
|
7374
7663
|
};
|
|
7664
|
+
export declare type AgentWorkspaceServiceConnection = {
|
|
7665
|
+
__typename?: 'AgentWorkspaceServiceConnection';
|
|
7666
|
+
edges?: Maybe<Array<AgentWorkspaceServiceEdge>>;
|
|
7667
|
+
errors?: Maybe<Array<QueryError>>;
|
|
7668
|
+
nodes?: Maybe<Array<Maybe<AgentWorkspaceService>>>;
|
|
7669
|
+
pageInfo: PageInfo;
|
|
7670
|
+
};
|
|
7671
|
+
export declare type AgentWorkspaceServiceEdge = {
|
|
7672
|
+
__typename?: 'AgentWorkspaceServiceEdge';
|
|
7673
|
+
cursor: Scalars['String']['output'];
|
|
7674
|
+
node: AgentWorkspaceService;
|
|
7675
|
+
};
|
|
7375
7676
|
export declare type AgentWorkspaceSetDefaultCapacityInput = {
|
|
7376
7677
|
cloudId: Scalars['ID']['input'];
|
|
7377
7678
|
defaultCapacity: Scalars['Int']['input'];
|
|
@@ -7383,6 +7684,15 @@ export declare type AgentWorkspaceSetDefaultCapacityPayload = {
|
|
|
7383
7684
|
errors?: Maybe<Array<AgentWorkspaceCapacityError>>;
|
|
7384
7685
|
success: Scalars['Boolean']['output'];
|
|
7385
7686
|
};
|
|
7687
|
+
export declare type AgentWorkspaceSetDraftedRoutingTableServiceFieldInput = {
|
|
7688
|
+
cloudId: Scalars['ID']['input'];
|
|
7689
|
+
projectKey: Scalars['String']['input'];
|
|
7690
|
+
serviceFieldId: Scalars['String']['input'];
|
|
7691
|
+
};
|
|
7692
|
+
export declare type AgentWorkspaceSetDraftedRoutingTableServiceFieldPayload = {
|
|
7693
|
+
__typename?: 'AgentWorkspaceSetDraftedRoutingTableServiceFieldPayload';
|
|
7694
|
+
serviceFieldId: Scalars['String']['output'];
|
|
7695
|
+
};
|
|
7386
7696
|
export declare type AgentWorkspaceSetProjectDefaultAvailabilityInput = {
|
|
7387
7697
|
cloudId: Scalars['ID']['input'];
|
|
7388
7698
|
projectId: Scalars['ID']['input'];
|
|
@@ -7402,7 +7712,6 @@ export declare type AgentWorkspaceSetTeamCapacitiesPayload = {
|
|
|
7402
7712
|
export declare type AgentWorkspaceShift = {
|
|
7403
7713
|
__typename?: 'AgentWorkspaceShift';
|
|
7404
7714
|
agentId: Scalars['ID']['output'];
|
|
7405
|
-
coverageGaps: Array<AgentWorkspaceTimeRange>;
|
|
7406
7715
|
durationMinutes: Scalars['Int']['output'];
|
|
7407
7716
|
endTime: Scalars['DateTime']['output'];
|
|
7408
7717
|
id: Scalars['ID']['output'];
|
|
@@ -7466,6 +7775,8 @@ export declare type AgentWorkspaceShiftsSummary = {
|
|
|
7466
7775
|
avgAgentsPerHour: Scalars['Float']['output'];
|
|
7467
7776
|
completedShiftsPercentage: Scalars['Float']['output'];
|
|
7468
7777
|
scheduledAgents: Scalars['Int']['output'];
|
|
7778
|
+
totalCoveredShifts: Scalars['Int']['output'];
|
|
7779
|
+
totalGaps: Scalars['Int']['output'];
|
|
7469
7780
|
totalShifts: Scalars['Int']['output'];
|
|
7470
7781
|
};
|
|
7471
7782
|
export declare type AgentWorkspaceSkill = {
|
|
@@ -7494,7 +7805,12 @@ export declare type AgentWorkspaceSkillCategory = {
|
|
|
7494
7805
|
id: Scalars['ID']['output'];
|
|
7495
7806
|
name?: Maybe<Scalars['String']['output']>;
|
|
7496
7807
|
skillCount?: Maybe<Scalars['Int']['output']>;
|
|
7497
|
-
skills?: Maybe<
|
|
7808
|
+
skills?: Maybe<AgentWorkspaceSkillConnection>;
|
|
7809
|
+
};
|
|
7810
|
+
export declare type AgentWorkspaceSkillCategorySkillsArgs = {
|
|
7811
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
7812
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
7813
|
+
query?: InputMaybe<Scalars['String']['input']>;
|
|
7498
7814
|
};
|
|
7499
7815
|
export declare type AgentWorkspaceSkillCategoryConnection = {
|
|
7500
7816
|
__typename?: 'AgentWorkspaceSkillCategoryConnection';
|
|
@@ -7502,6 +7818,7 @@ export declare type AgentWorkspaceSkillCategoryConnection = {
|
|
|
7502
7818
|
errors?: Maybe<Array<QueryError>>;
|
|
7503
7819
|
nodes?: Maybe<Array<Maybe<AgentWorkspaceSkillCategory>>>;
|
|
7504
7820
|
pageInfo: PageInfo;
|
|
7821
|
+
totalCategoryCount?: Maybe<Scalars['Int']['output']>;
|
|
7505
7822
|
};
|
|
7506
7823
|
export declare type AgentWorkspaceSkillCategoryCreateInput = {
|
|
7507
7824
|
description?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -7512,6 +7829,16 @@ export declare type AgentWorkspaceSkillCategoryEdge = {
|
|
|
7512
7829
|
cursor: Scalars['String']['output'];
|
|
7513
7830
|
node: AgentWorkspaceSkillCategory;
|
|
7514
7831
|
};
|
|
7832
|
+
export declare type AgentWorkspaceSkillCategoryUpdateInput = {
|
|
7833
|
+
categoryId: Scalars['ID']['input'];
|
|
7834
|
+
description?: InputMaybe<Scalars['String']['input']>;
|
|
7835
|
+
name: Scalars['String']['input'];
|
|
7836
|
+
};
|
|
7837
|
+
export declare type AgentWorkspaceSkillCategoryUpdatePayload = {
|
|
7838
|
+
__typename?: 'AgentWorkspaceSkillCategoryUpdatePayload';
|
|
7839
|
+
errors?: Maybe<Array<MutationError>>;
|
|
7840
|
+
success: Scalars['Boolean']['output'];
|
|
7841
|
+
};
|
|
7515
7842
|
export declare type AgentWorkspaceSkillConnection = {
|
|
7516
7843
|
__typename?: 'AgentWorkspaceSkillConnection';
|
|
7517
7844
|
edges?: Maybe<Array<AgentWorkspaceSkillEdge>>;
|
|
@@ -7542,6 +7869,19 @@ export declare type AgentWorkspaceSkillServiceMapping = {
|
|
|
7542
7869
|
serviceId: Scalars['ID']['output'];
|
|
7543
7870
|
skill: AgentWorkspaceSkill;
|
|
7544
7871
|
};
|
|
7872
|
+
export declare type AgentWorkspaceSkillUpdateInput = {
|
|
7873
|
+
category?: InputMaybe<AgentWorkspaceSkillCategoryCreateInput>;
|
|
7874
|
+
categoryId?: InputMaybe<Scalars['ID']['input']>;
|
|
7875
|
+
description?: InputMaybe<Scalars['String']['input']>;
|
|
7876
|
+
name?: InputMaybe<Scalars['String']['input']>;
|
|
7877
|
+
skillId: Scalars['ID']['input'];
|
|
7878
|
+
};
|
|
7879
|
+
export declare type AgentWorkspaceSkillUpdatePayload = {
|
|
7880
|
+
__typename?: 'AgentWorkspaceSkillUpdatePayload';
|
|
7881
|
+
errors?: Maybe<Array<MutationError>>;
|
|
7882
|
+
skill?: Maybe<AgentWorkspaceSkill>;
|
|
7883
|
+
success: Scalars['Boolean']['output'];
|
|
7884
|
+
};
|
|
7545
7885
|
export declare type AgentWorkspaceSmartRoutingConfig = {
|
|
7546
7886
|
__typename?: 'AgentWorkspaceSmartRoutingConfig';
|
|
7547
7887
|
enabled: Scalars['Boolean']['output'];
|
|
@@ -7574,15 +7914,21 @@ export declare type AgentWorkspaceStartGenerateRoutingTablePayload = {
|
|
|
7574
7914
|
status: AgentWorkspaceRoutingTableGenerationStatus;
|
|
7575
7915
|
};
|
|
7576
7916
|
export declare type AgentWorkspaceSubmitDraftedRoutingTableInput = {
|
|
7917
|
+
cloudId: Scalars['ID']['input'];
|
|
7577
7918
|
fieldId: Scalars['String']['input'];
|
|
7578
|
-
|
|
7579
|
-
projectAri: Scalars['ID']['input'];
|
|
7919
|
+
projectKey: Scalars['String']['input'];
|
|
7580
7920
|
};
|
|
7581
7921
|
export declare type AgentWorkspaceSubmitDraftedRoutingTablePayload = {
|
|
7582
7922
|
__typename?: 'AgentWorkspaceSubmitDraftedRoutingTablePayload';
|
|
7583
7923
|
rowsWritten: Scalars['Int']['output'];
|
|
7584
7924
|
teamsNewlyConnected: Scalars['Int']['output'];
|
|
7585
7925
|
};
|
|
7926
|
+
export declare type AgentWorkspaceTeam = {
|
|
7927
|
+
__typename?: 'AgentWorkspaceTeam';
|
|
7928
|
+
team?: Maybe<TeamV2>;
|
|
7929
|
+
teamARI: Scalars['ID']['output'];
|
|
7930
|
+
teamId?: Maybe<Scalars['ID']['output']>;
|
|
7931
|
+
};
|
|
7586
7932
|
export declare type AgentWorkspaceTeamCapacitiesInput = {
|
|
7587
7933
|
cloudId: Scalars['ID']['input'];
|
|
7588
7934
|
projectKey: Scalars['String']['input'];
|
|
@@ -7596,6 +7942,13 @@ export declare type AgentWorkspaceTeamCapacityEntry = {
|
|
|
7596
7942
|
capacity: Scalars['Int']['input'];
|
|
7597
7943
|
teamId: Scalars['ID']['input'];
|
|
7598
7944
|
};
|
|
7945
|
+
export declare type AgentWorkspaceTeamConnection = {
|
|
7946
|
+
__typename?: 'AgentWorkspaceTeamConnection';
|
|
7947
|
+
edges?: Maybe<Array<AgentWorkspaceTeamEdge>>;
|
|
7948
|
+
errors?: Maybe<Array<QueryError>>;
|
|
7949
|
+
nodes?: Maybe<Array<Maybe<AgentWorkspaceTeam>>>;
|
|
7950
|
+
pageInfo: PageInfo;
|
|
7951
|
+
};
|
|
7599
7952
|
export declare type AgentWorkspaceTeamCount = {
|
|
7600
7953
|
__typename?: 'AgentWorkspaceTeamCount';
|
|
7601
7954
|
count: Scalars['Int']['output'];
|
|
@@ -7606,6 +7959,11 @@ export declare type AgentWorkspaceTeamCreationFailure = {
|
|
|
7606
7959
|
groupAri: Scalars['ID']['output'];
|
|
7607
7960
|
message: Scalars['String']['output'];
|
|
7608
7961
|
};
|
|
7962
|
+
export declare type AgentWorkspaceTeamEdge = {
|
|
7963
|
+
__typename?: 'AgentWorkspaceTeamEdge';
|
|
7964
|
+
cursor: Scalars['String']['output'];
|
|
7965
|
+
node: AgentWorkspaceTeam;
|
|
7966
|
+
};
|
|
7609
7967
|
export declare type AgentWorkspaceTeamLinkFailure = {
|
|
7610
7968
|
__typename?: 'AgentWorkspaceTeamLinkFailure';
|
|
7611
7969
|
message: Scalars['String']['output'];
|
|
@@ -7729,9 +8087,11 @@ export declare type AgentWorkspaceUpdateSmartRoutingConfigPayload = {
|
|
|
7729
8087
|
success: Scalars['Boolean']['output'];
|
|
7730
8088
|
};
|
|
7731
8089
|
export declare type AgentWorkspaceUpsertDraftedRoutingTableEntryInput = {
|
|
8090
|
+
cloudId: Scalars['ID']['input'];
|
|
7732
8091
|
included?: InputMaybe<Scalars['Boolean']['input']>;
|
|
7733
|
-
|
|
8092
|
+
projectKey: Scalars['String']['input'];
|
|
7734
8093
|
row?: InputMaybe<AgentWorkspaceDraftedRoutingTableEntryPatch>;
|
|
8094
|
+
serviceFieldId: Scalars['ID']['input'];
|
|
7735
8095
|
serviceId: Scalars['ID']['input'];
|
|
7736
8096
|
};
|
|
7737
8097
|
export declare type AgentWorkspaceUpsertDraftedRoutingTableEntryPayload = {
|
|
@@ -7739,6 +8099,23 @@ export declare type AgentWorkspaceUpsertDraftedRoutingTableEntryPayload = {
|
|
|
7739
8099
|
entry: AgentWorkspaceDraftedRoutingTableEntry;
|
|
7740
8100
|
errors?: Maybe<Array<AgentWorkspaceMutationError>>;
|
|
7741
8101
|
};
|
|
8102
|
+
export declare type AgentWorkspaceUser = {
|
|
8103
|
+
__typename?: 'AgentWorkspaceUser';
|
|
8104
|
+
accountId: Scalars['ID']['output'];
|
|
8105
|
+
user?: Maybe<User>;
|
|
8106
|
+
};
|
|
8107
|
+
export declare type AgentWorkspaceUserConnection = {
|
|
8108
|
+
__typename?: 'AgentWorkspaceUserConnection';
|
|
8109
|
+
edges?: Maybe<Array<AgentWorkspaceUserEdge>>;
|
|
8110
|
+
errors?: Maybe<Array<QueryError>>;
|
|
8111
|
+
nodes?: Maybe<Array<Maybe<AgentWorkspaceUser>>>;
|
|
8112
|
+
pageInfo: PageInfo;
|
|
8113
|
+
};
|
|
8114
|
+
export declare type AgentWorkspaceUserEdge = {
|
|
8115
|
+
__typename?: 'AgentWorkspaceUserEdge';
|
|
8116
|
+
cursor: Scalars['String']['output'];
|
|
8117
|
+
node: AgentWorkspaceUser;
|
|
8118
|
+
};
|
|
7742
8119
|
export declare type AiCoreApiCsvExportInput = {
|
|
7743
8120
|
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
7744
8121
|
fromDate?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -7764,6 +8141,83 @@ export declare type AiCoreApiQuestionWithType = {
|
|
|
7764
8141
|
question: Scalars['String']['output'];
|
|
7765
8142
|
type: AiCoreApiQuestionType;
|
|
7766
8143
|
};
|
|
8144
|
+
export declare type AiCoreApiRsaAssistedResult = {
|
|
8145
|
+
__typename?: 'AiCoreApiRsaAssistedResult';
|
|
8146
|
+
assistedByRovo: Scalars['Int']['output'];
|
|
8147
|
+
assistedByRovoPercentage: Scalars['Float']['output'];
|
|
8148
|
+
totalClosed: Scalars['Int']['output'];
|
|
8149
|
+
};
|
|
8150
|
+
export declare type AiCoreApiRsaEmployeeContributor = {
|
|
8151
|
+
__typename?: 'AiCoreApiRsaEmployeeContributor';
|
|
8152
|
+
accountId: Scalars['ID']['output'];
|
|
8153
|
+
delegationCount: Scalars['Int']['output'];
|
|
8154
|
+
};
|
|
8155
|
+
export declare type AiCoreApiRsaEmployeeResult = {
|
|
8156
|
+
__typename?: 'AiCoreApiRsaEmployeeResult';
|
|
8157
|
+
contributors: Array<AiCoreApiRsaEmployeeContributor>;
|
|
8158
|
+
};
|
|
8159
|
+
export declare type AiCoreApiRsaFetchReportResult = AiCoreApiRsaReportPayload | QueryError;
|
|
8160
|
+
export declare type AiCoreApiRsaFunnelResult = {
|
|
8161
|
+
__typename?: 'AiCoreApiRsaFunnelResult';
|
|
8162
|
+
autonomouslyResolved: Scalars['Int']['output'];
|
|
8163
|
+
resolvedByRovo: Scalars['Int']['output'];
|
|
8164
|
+
};
|
|
8165
|
+
export declare type AiCoreApiRsaInitiateReportResult = AiCoreApiRsaReportJob | QueryError;
|
|
8166
|
+
export declare enum AiCoreApiRsaJobStatus {
|
|
8167
|
+
Completed = "COMPLETED",
|
|
8168
|
+
Failed = "FAILED",
|
|
8169
|
+
InProgress = "IN_PROGRESS"
|
|
8170
|
+
}
|
|
8171
|
+
export declare enum AiCoreApiRsaQueryType {
|
|
8172
|
+
Assisted = "ASSISTED",
|
|
8173
|
+
Employee = "EMPLOYEE",
|
|
8174
|
+
Funnel = "FUNNEL",
|
|
8175
|
+
Resolved = "RESOLVED",
|
|
8176
|
+
RtDistribution = "RT_DISTRIBUTION"
|
|
8177
|
+
}
|
|
8178
|
+
export declare type AiCoreApiRsaReportInput = {
|
|
8179
|
+
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
8180
|
+
durationInDays?: InputMaybe<Scalars['Int']['input']>;
|
|
8181
|
+
projectAri: Scalars['ID']['input'];
|
|
8182
|
+
reportType: AiCoreApiRsaReportType;
|
|
8183
|
+
};
|
|
8184
|
+
export declare type AiCoreApiRsaReportJob = {
|
|
8185
|
+
__typename?: 'AiCoreApiRsaReportJob';
|
|
8186
|
+
jobId: Scalars['ID']['output'];
|
|
8187
|
+
};
|
|
8188
|
+
export declare type AiCoreApiRsaReportPayload = {
|
|
8189
|
+
__typename?: 'AiCoreApiRsaReportPayload';
|
|
8190
|
+
assisted?: Maybe<AiCoreApiRsaAssistedResult>;
|
|
8191
|
+
completedAt?: Maybe<Scalars['String']['output']>;
|
|
8192
|
+
employee?: Maybe<AiCoreApiRsaEmployeeResult>;
|
|
8193
|
+
errorCode?: Maybe<Scalars['String']['output']>;
|
|
8194
|
+
errorMessage?: Maybe<Scalars['String']['output']>;
|
|
8195
|
+
funnel?: Maybe<AiCoreApiRsaFunnelResult>;
|
|
8196
|
+
resolved?: Maybe<AiCoreApiRsaResolvedResult>;
|
|
8197
|
+
rtDistribution?: Maybe<AiCoreApiRsaRtDistributionResult>;
|
|
8198
|
+
status: AiCoreApiRsaJobStatus;
|
|
8199
|
+
truncated?: Maybe<Scalars['Boolean']['output']>;
|
|
8200
|
+
};
|
|
8201
|
+
export declare enum AiCoreApiRsaReportType {
|
|
8202
|
+
Overview = "OVERVIEW"
|
|
8203
|
+
}
|
|
8204
|
+
export declare type AiCoreApiRsaRequestTypeEntry = {
|
|
8205
|
+
__typename?: 'AiCoreApiRsaRequestTypeEntry';
|
|
8206
|
+
assisted: Scalars['Int']['output'];
|
|
8207
|
+
fullyResolved: Scalars['Int']['output'];
|
|
8208
|
+
requestTypeName: Scalars['String']['output'];
|
|
8209
|
+
totalClosed: Scalars['Int']['output'];
|
|
8210
|
+
};
|
|
8211
|
+
export declare type AiCoreApiRsaResolvedResult = {
|
|
8212
|
+
__typename?: 'AiCoreApiRsaResolvedResult';
|
|
8213
|
+
fullyResolved: Scalars['Int']['output'];
|
|
8214
|
+
fullyResolvedPercentage: Scalars['Float']['output'];
|
|
8215
|
+
totalClosed: Scalars['Int']['output'];
|
|
8216
|
+
};
|
|
8217
|
+
export declare type AiCoreApiRsaRtDistributionResult = {
|
|
8218
|
+
__typename?: 'AiCoreApiRsaRtDistributionResult';
|
|
8219
|
+
byRequestType: Array<AiCoreApiRsaRequestTypeEntry>;
|
|
8220
|
+
};
|
|
7767
8221
|
export declare type AiCoreApiVsaQuestions = {
|
|
7768
8222
|
__typename?: 'AiCoreApiVSAQuestions';
|
|
7769
8223
|
projectAri: Scalars['ID']['output'];
|
|
@@ -7798,7 +8252,6 @@ export declare type AiManagedObject = {
|
|
|
7798
8252
|
__typename?: 'AiManagedObject';
|
|
7799
8253
|
ari: Scalars['String']['output'];
|
|
7800
8254
|
config?: Maybe<AiManagedObjectConfig>;
|
|
7801
|
-
configVersions: AiManagedObjectConfigConnection;
|
|
7802
8255
|
createdAt: Scalars['Long']['output'];
|
|
7803
8256
|
createdBy: Scalars['String']['output'];
|
|
7804
8257
|
deletedAt?: Maybe<Scalars['Long']['output']>;
|
|
@@ -7813,10 +8266,6 @@ export declare type AiManagedObject = {
|
|
|
7813
8266
|
status: AiManagedObjectStatus;
|
|
7814
8267
|
type: AiManagedObjectType;
|
|
7815
8268
|
};
|
|
7816
|
-
export declare type AiManagedObjectConfigVersionsArgs = {
|
|
7817
|
-
after?: InputMaybe<Scalars['String']['input']>;
|
|
7818
|
-
first?: InputMaybe<Scalars['Int']['input']>;
|
|
7819
|
-
};
|
|
7820
8269
|
export declare type AiManagedObjectConfig = {
|
|
7821
8270
|
__typename?: 'AiManagedObjectConfig';
|
|
7822
8271
|
agentId?: Maybe<Scalars['String']['output']>;
|
|
@@ -7831,12 +8280,6 @@ export declare type AiManagedObjectConfig = {
|
|
|
7831
8280
|
sources?: Maybe<Array<AiManagedObjectSource>>;
|
|
7832
8281
|
version: Scalars['Int']['output'];
|
|
7833
8282
|
};
|
|
7834
|
-
export declare type AiManagedObjectConfigConnection = {
|
|
7835
|
-
__typename?: 'AiManagedObjectConfigConnection';
|
|
7836
|
-
edges: Array<AiManagedObjectConfigEdge>;
|
|
7837
|
-
pageInfo: PageInfo;
|
|
7838
|
-
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
7839
|
-
};
|
|
7840
8283
|
export declare type AiManagedObjectConfigCreateInput = {
|
|
7841
8284
|
agentId?: InputMaybe<Scalars['String']['input']>;
|
|
7842
8285
|
desiredUpdateInterval?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -7844,11 +8287,6 @@ export declare type AiManagedObjectConfigCreateInput = {
|
|
|
7844
8287
|
prompt: Scalars['String']['input'];
|
|
7845
8288
|
sources?: InputMaybe<Array<AiManagedObjectSourceInput>>;
|
|
7846
8289
|
};
|
|
7847
|
-
export declare type AiManagedObjectConfigEdge = {
|
|
7848
|
-
__typename?: 'AiManagedObjectConfigEdge';
|
|
7849
|
-
cursor: Scalars['String']['output'];
|
|
7850
|
-
node: AiManagedObjectConfig;
|
|
7851
|
-
};
|
|
7852
8290
|
export declare type AiManagedObjectConnection = {
|
|
7853
8291
|
__typename?: 'AiManagedObjectConnection';
|
|
7854
8292
|
edges: Array<AiManagedObjectEdge>;
|
|
@@ -8282,6 +8720,12 @@ export declare type AppDeploymentConnection = {
|
|
|
8282
8720
|
nodes: Array<Maybe<AppDeployment>>;
|
|
8283
8721
|
pageInfo?: Maybe<PageInfo>;
|
|
8284
8722
|
};
|
|
8723
|
+
export declare type AppDeploymentDisplayEvent = AppDeploymentEvent & {
|
|
8724
|
+
__typename?: 'AppDeploymentDisplayEvent';
|
|
8725
|
+
createdAt: Scalars['String']['output'];
|
|
8726
|
+
message?: Maybe<Scalars['String']['output']>;
|
|
8727
|
+
stepName: Scalars['String']['output'];
|
|
8728
|
+
};
|
|
8285
8729
|
export declare type AppDeploymentEdge = {
|
|
8286
8730
|
__typename?: 'AppDeploymentEdge';
|
|
8287
8731
|
cursor: Scalars['String']['output'];
|
|
@@ -12637,6 +13081,24 @@ export declare type AssetsUserAttributeValue = {
|
|
|
12637
13081
|
id?: Maybe<Scalars['String']['output']>;
|
|
12638
13082
|
name?: Maybe<Scalars['String']['output']>;
|
|
12639
13083
|
};
|
|
13084
|
+
export declare type AssetsVerticalAllInsightsResponse = {
|
|
13085
|
+
__typename?: 'AssetsVerticalAllInsightsResponse';
|
|
13086
|
+
items: Array<AssetsVerticalInsightItem>;
|
|
13087
|
+
pageInfo: PageInfo;
|
|
13088
|
+
};
|
|
13089
|
+
export declare type AssetsVerticalAllInsightsResult = AssetsVerticalAllInsightsResponse | QueryError;
|
|
13090
|
+
export declare type AssetsVerticalArchiveInsightInput = {
|
|
13091
|
+
archived: Scalars['Boolean']['input'];
|
|
13092
|
+
cloudId: Scalars['ID']['input'];
|
|
13093
|
+
insightDefinitionId: Scalars['ID']['input'];
|
|
13094
|
+
insightSource: AssetsVerticalInsightSource;
|
|
13095
|
+
};
|
|
13096
|
+
export declare type AssetsVerticalArchiveInsightPayload = Payload & {
|
|
13097
|
+
__typename?: 'AssetsVerticalArchiveInsightPayload';
|
|
13098
|
+
errors?: Maybe<Array<MutationError>>;
|
|
13099
|
+
isArchived?: Maybe<Scalars['Boolean']['output']>;
|
|
13100
|
+
success: Scalars['Boolean']['output'];
|
|
13101
|
+
};
|
|
12640
13102
|
export declare type AssetsVerticalAssetTypeSelectionInput = {
|
|
12641
13103
|
objSchemaCdmAri: Scalars['String']['input'];
|
|
12642
13104
|
objTypeCdmAri: Scalars['String']['input'];
|
|
@@ -12792,6 +13254,19 @@ export declare type AssetsVerticalCreateAssetTypesTrackingsInput = {
|
|
|
12792
13254
|
cloudId: Scalars['ID']['input'];
|
|
12793
13255
|
verticalInstantiationCategoryId: Scalars['ID']['input'];
|
|
12794
13256
|
};
|
|
13257
|
+
export declare type AssetsVerticalCreateCustomInsightInput = {
|
|
13258
|
+
category: AssetsVerticalInsightCategory;
|
|
13259
|
+
cloudId: Scalars['ID']['input'];
|
|
13260
|
+
description?: InputMaybe<Scalars['String']['input']>;
|
|
13261
|
+
name: Scalars['String']['input'];
|
|
13262
|
+
nlQuery: Scalars['String']['input'];
|
|
13263
|
+
};
|
|
13264
|
+
export declare type AssetsVerticalCreateCustomInsightPayload = Payload & {
|
|
13265
|
+
__typename?: 'AssetsVerticalCreateCustomInsightPayload';
|
|
13266
|
+
definition?: Maybe<AssetsVerticalCustomInsightDefinition>;
|
|
13267
|
+
errors?: Maybe<Array<MutationError>>;
|
|
13268
|
+
success: Scalars['Boolean']['output'];
|
|
13269
|
+
};
|
|
12795
13270
|
export declare type AssetsVerticalCreateDepreciationRuleInput = {
|
|
12796
13271
|
assetTypes: Array<AssetsVerticalDepreciationRuleAssetTypeInput>;
|
|
12797
13272
|
cloudId: Scalars['ID']['input'];
|
|
@@ -12841,6 +13316,43 @@ export declare type AssetsVerticalCreateVerticalInstantiationInput = {
|
|
|
12841
13316
|
depreciationRules?: InputMaybe<Array<AssetsVerticalCreateDepreciationRuleWithinInstantiationInput>>;
|
|
12842
13317
|
type: AssetsVerticalVerticalType;
|
|
12843
13318
|
};
|
|
13319
|
+
export declare type AssetsVerticalCustomInsightDefinition = {
|
|
13320
|
+
__typename?: 'AssetsVerticalCustomInsightDefinition';
|
|
13321
|
+
category: AssetsVerticalInsightCategory;
|
|
13322
|
+
createdAt: Scalars['DateTime']['output'];
|
|
13323
|
+
createdBy: Scalars['String']['output'];
|
|
13324
|
+
ctaRovoPrompt: Scalars['String']['output'];
|
|
13325
|
+
description?: Maybe<Scalars['String']['output']>;
|
|
13326
|
+
id: Scalars['ID']['output'];
|
|
13327
|
+
isEnabled: Scalars['Boolean']['output'];
|
|
13328
|
+
lastResult?: Maybe<AssetsVerticalCustomInsightResult>;
|
|
13329
|
+
lastRunAt?: Maybe<Scalars['DateTime']['output']>;
|
|
13330
|
+
name: Scalars['String']['output'];
|
|
13331
|
+
nlQuery: Scalars['String']['output'];
|
|
13332
|
+
updatedAt: Scalars['DateTime']['output'];
|
|
13333
|
+
updatedBy: Scalars['String']['output'];
|
|
13334
|
+
};
|
|
13335
|
+
export declare type AssetsVerticalCustomInsightResult = {
|
|
13336
|
+
__typename?: 'AssetsVerticalCustomInsightResult';
|
|
13337
|
+
jobId: Scalars['ID']['output'];
|
|
13338
|
+
status: AssetsVerticalCustomInsightStatus;
|
|
13339
|
+
suggestedPollIntervalMs?: Maybe<Scalars['Int']['output']>;
|
|
13340
|
+
summary?: Maybe<Scalars['String']['output']>;
|
|
13341
|
+
};
|
|
13342
|
+
export declare type AssetsVerticalCustomInsightResultUnion = AssetsVerticalCustomInsightResult | QueryError;
|
|
13343
|
+
export declare enum AssetsVerticalCustomInsightStatus {
|
|
13344
|
+
Completed = "COMPLETED",
|
|
13345
|
+
Failed = "FAILED",
|
|
13346
|
+
InProgress = "IN_PROGRESS",
|
|
13347
|
+
NotStarted = "NOT_STARTED",
|
|
13348
|
+
Pending = "PENDING"
|
|
13349
|
+
}
|
|
13350
|
+
export declare type AssetsVerticalCustomInsightsResponse = {
|
|
13351
|
+
__typename?: 'AssetsVerticalCustomInsightsResponse';
|
|
13352
|
+
items: Array<AssetsVerticalCustomInsightDefinition>;
|
|
13353
|
+
pageInfo: PageInfo;
|
|
13354
|
+
};
|
|
13355
|
+
export declare type AssetsVerticalCustomInsightsResult = AssetsVerticalCustomInsightsResponse | QueryError;
|
|
12844
13356
|
export declare type AssetsVerticalDefaultAttribute = AssetsVerticalObjectTypeAttribute & {
|
|
12845
13357
|
__typename?: 'AssetsVerticalDefaultAttribute';
|
|
12846
13358
|
isEditable?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -12866,6 +13378,15 @@ export declare type AssetsVerticalDeleteAssetTypesTrackingInput = {
|
|
|
12866
13378
|
cloudId: Scalars['ID']['input'];
|
|
12867
13379
|
id: Scalars['ID']['input'];
|
|
12868
13380
|
};
|
|
13381
|
+
export declare type AssetsVerticalDeleteCustomInsightInput = {
|
|
13382
|
+
cloudId: Scalars['ID']['input'];
|
|
13383
|
+
insightId: Scalars['ID']['input'];
|
|
13384
|
+
};
|
|
13385
|
+
export declare type AssetsVerticalDeleteCustomInsightPayload = Payload & {
|
|
13386
|
+
__typename?: 'AssetsVerticalDeleteCustomInsightPayload';
|
|
13387
|
+
errors?: Maybe<Array<MutationError>>;
|
|
13388
|
+
success: Scalars['Boolean']['output'];
|
|
13389
|
+
};
|
|
12869
13390
|
export declare type AssetsVerticalDeleteDepreciationRuleInput = {
|
|
12870
13391
|
cloudId: Scalars['ID']['input'];
|
|
12871
13392
|
id: Scalars['ID']['input'];
|
|
@@ -12936,6 +13457,7 @@ export declare type AssetsVerticalDepreciationRuleConnection = {
|
|
|
12936
13457
|
__typename?: 'AssetsVerticalDepreciationRuleConnection';
|
|
12937
13458
|
edges: Array<AssetsVerticalDepreciationRuleEdge>;
|
|
12938
13459
|
pageInfo: PageInfo;
|
|
13460
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
12939
13461
|
};
|
|
12940
13462
|
export declare type AssetsVerticalDepreciationRuleEdge = {
|
|
12941
13463
|
__typename?: 'AssetsVerticalDepreciationRuleEdge';
|
|
@@ -12976,10 +13498,32 @@ export declare type AssetsVerticalDepreciationRuleQueryErrorExtension = QueryErr
|
|
|
12976
13498
|
statusCode?: Maybe<Scalars['Int']['output']>;
|
|
12977
13499
|
};
|
|
12978
13500
|
export declare type AssetsVerticalDepreciationRuleResult = AssetsVerticalDepreciationRule | QueryError;
|
|
13501
|
+
export declare type AssetsVerticalEnableCustomInsightInput = {
|
|
13502
|
+
cloudId: Scalars['ID']['input'];
|
|
13503
|
+
enabled: Scalars['Boolean']['input'];
|
|
13504
|
+
insightId: Scalars['ID']['input'];
|
|
13505
|
+
};
|
|
13506
|
+
export declare type AssetsVerticalEnableCustomInsightPayload = Payload & {
|
|
13507
|
+
__typename?: 'AssetsVerticalEnableCustomInsightPayload';
|
|
13508
|
+
definition?: Maybe<AssetsVerticalCustomInsightDefinition>;
|
|
13509
|
+
errors?: Maybe<Array<MutationError>>;
|
|
13510
|
+
success: Scalars['Boolean']['output'];
|
|
13511
|
+
};
|
|
12979
13512
|
export declare enum AssetsVerticalFlowType {
|
|
12980
13513
|
Existing = "EXISTING",
|
|
12981
13514
|
New = "NEW"
|
|
12982
13515
|
}
|
|
13516
|
+
export declare type AssetsVerticalGenerateCustomInsightInput = {
|
|
13517
|
+
cloudId: Scalars['ID']['input'];
|
|
13518
|
+
insightId: Scalars['ID']['input'];
|
|
13519
|
+
};
|
|
13520
|
+
export declare type AssetsVerticalGenerateCustomInsightPayload = Payload & {
|
|
13521
|
+
__typename?: 'AssetsVerticalGenerateCustomInsightPayload';
|
|
13522
|
+
errors?: Maybe<Array<MutationError>>;
|
|
13523
|
+
jobId?: Maybe<Scalars['ID']['output']>;
|
|
13524
|
+
success: Scalars['Boolean']['output'];
|
|
13525
|
+
suggestedPollIntervalMs?: Maybe<Scalars['Int']['output']>;
|
|
13526
|
+
};
|
|
12983
13527
|
export declare type AssetsVerticalGenerateInsightsInput = {
|
|
12984
13528
|
cloudId: Scalars['ID']['input'];
|
|
12985
13529
|
};
|
|
@@ -13004,6 +13548,11 @@ export declare type AssetsVerticalInsightCard = {
|
|
|
13004
13548
|
summary: Scalars['String']['output'];
|
|
13005
13549
|
title: Scalars['String']['output'];
|
|
13006
13550
|
};
|
|
13551
|
+
export declare enum AssetsVerticalInsightCategory {
|
|
13552
|
+
Financial = "FINANCIAL",
|
|
13553
|
+
Operational = "OPERATIONAL",
|
|
13554
|
+
Security = "SECURITY"
|
|
13555
|
+
}
|
|
13007
13556
|
export declare type AssetsVerticalInsightDefinition = {
|
|
13008
13557
|
__typename?: 'AssetsVerticalInsightDefinition';
|
|
13009
13558
|
category: Scalars['String']['output'];
|
|
@@ -13037,6 +13586,26 @@ export declare type AssetsVerticalInsightGenerationError = {
|
|
|
13037
13586
|
message: Scalars['String']['output'];
|
|
13038
13587
|
retryable: Scalars['Boolean']['output'];
|
|
13039
13588
|
};
|
|
13589
|
+
export declare type AssetsVerticalInsightItem = {
|
|
13590
|
+
__typename?: 'AssetsVerticalInsightItem';
|
|
13591
|
+
category: AssetsVerticalInsightCategory;
|
|
13592
|
+
ctaRovoPrompt: Scalars['String']['output'];
|
|
13593
|
+
customInsightId?: Maybe<Scalars['ID']['output']>;
|
|
13594
|
+
insightType?: Maybe<Scalars['ID']['output']>;
|
|
13595
|
+
isEnabled: Scalars['Boolean']['output'];
|
|
13596
|
+
isPinned: Scalars['Boolean']['output'];
|
|
13597
|
+
itemType: AssetsVerticalInsightItemType;
|
|
13598
|
+
lastResult?: Maybe<AssetsVerticalCustomInsightResult>;
|
|
13599
|
+
name: Scalars['String']['output'];
|
|
13600
|
+
};
|
|
13601
|
+
export declare enum AssetsVerticalInsightItemType {
|
|
13602
|
+
Custom = "CUSTOM",
|
|
13603
|
+
Ootb = "OOTB"
|
|
13604
|
+
}
|
|
13605
|
+
export declare enum AssetsVerticalInsightSource {
|
|
13606
|
+
Custom = "CUSTOM",
|
|
13607
|
+
Ootb = "OOTB"
|
|
13608
|
+
}
|
|
13040
13609
|
export declare type AssetsVerticalInsights = {
|
|
13041
13610
|
__typename?: 'AssetsVerticalInsights';
|
|
13042
13611
|
error?: Maybe<AssetsVerticalInsightGenerationError>;
|
|
@@ -13242,6 +13811,12 @@ export declare type AssetsVerticalObjectsSuccess = {
|
|
|
13242
13811
|
pageInfo?: Maybe<PageInfo>;
|
|
13243
13812
|
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
13244
13813
|
};
|
|
13814
|
+
export declare type AssetsVerticalPinInsightPayload = Payload & {
|
|
13815
|
+
__typename?: 'AssetsVerticalPinInsightPayload';
|
|
13816
|
+
errors?: Maybe<Array<MutationError>>;
|
|
13817
|
+
isPinned?: Maybe<Scalars['Boolean']['output']>;
|
|
13818
|
+
success: Scalars['Boolean']['output'];
|
|
13819
|
+
};
|
|
13245
13820
|
export declare type AssetsVerticalProblemDetail = {
|
|
13246
13821
|
correctionGuidance?: Maybe<Scalars['String']['output']>;
|
|
13247
13822
|
detail: Scalars['String']['output'];
|
|
@@ -13288,6 +13863,12 @@ export declare enum AssetsVerticalRoleAssignmentErrorCode {
|
|
|
13288
13863
|
UnexpectedError = "UNEXPECTED_ERROR",
|
|
13289
13864
|
ValidationFailed = "VALIDATION_FAILED"
|
|
13290
13865
|
}
|
|
13866
|
+
export declare type AssetsVerticalRoleAssignmentMutationErrorExtension = MutationErrorExtension & {
|
|
13867
|
+
__typename?: 'AssetsVerticalRoleAssignmentMutationErrorExtension';
|
|
13868
|
+
code?: Maybe<AssetsVerticalRoleAssignmentErrorCode>;
|
|
13869
|
+
errorType?: Maybe<Scalars['String']['output']>;
|
|
13870
|
+
statusCode?: Maybe<Scalars['Int']['output']>;
|
|
13871
|
+
};
|
|
13291
13872
|
export declare enum AssetsVerticalRoleAssignmentOperation {
|
|
13292
13873
|
Create = "CREATE",
|
|
13293
13874
|
Delete = "DELETE"
|
|
@@ -13351,6 +13932,20 @@ export declare type AssetsVerticalStockroomObjectsInput = {
|
|
|
13351
13932
|
workspaceId: Scalars['ID']['input'];
|
|
13352
13933
|
};
|
|
13353
13934
|
export declare type AssetsVerticalStockroomObjectsResult = AssetsVerticalStockroomObjects | QueryError;
|
|
13935
|
+
export declare type AssetsVerticalUpdateCustomInsightInput = {
|
|
13936
|
+
category: AssetsVerticalInsightCategory;
|
|
13937
|
+
cloudId: Scalars['ID']['input'];
|
|
13938
|
+
description?: InputMaybe<Scalars['String']['input']>;
|
|
13939
|
+
insightId: Scalars['ID']['input'];
|
|
13940
|
+
name: Scalars['String']['input'];
|
|
13941
|
+
nlQuery: Scalars['String']['input'];
|
|
13942
|
+
};
|
|
13943
|
+
export declare type AssetsVerticalUpdateCustomInsightPayload = Payload & {
|
|
13944
|
+
__typename?: 'AssetsVerticalUpdateCustomInsightPayload';
|
|
13945
|
+
definition?: Maybe<AssetsVerticalCustomInsightDefinition>;
|
|
13946
|
+
errors?: Maybe<Array<MutationError>>;
|
|
13947
|
+
success: Scalars['Boolean']['output'];
|
|
13948
|
+
};
|
|
13354
13949
|
export declare type AssetsVerticalUpdateDepreciationRuleInput = {
|
|
13355
13950
|
assetTypes?: InputMaybe<Array<AssetsVerticalDepreciationRuleAssetTypeInput>>;
|
|
13356
13951
|
cloudId: Scalars['ID']['input'];
|
|
@@ -14723,6 +15318,7 @@ export declare type CcpAllowancePoolAllocationsResponse = {
|
|
|
14723
15318
|
allowance?: Maybe<Scalars['Float']['output']>;
|
|
14724
15319
|
balance?: Maybe<Scalars['Float']['output']>;
|
|
14725
15320
|
billingEntity?: Maybe<Scalars['String']['output']>;
|
|
15321
|
+
enforcementDetails?: Maybe<CcpEnforcementDetails>;
|
|
14726
15322
|
enforcementMode?: Maybe<CcpLatestAllowanceEnforcementModeType>;
|
|
14727
15323
|
id?: Maybe<Scalars['String']['output']>;
|
|
14728
15324
|
latestUsage?: Maybe<Scalars['Float']['output']>;
|
|
@@ -15218,6 +15814,17 @@ export declare type CcpEligiblePromotionWindow = {
|
|
|
15218
15814
|
endTime?: Maybe<Scalars['Float']['output']>;
|
|
15219
15815
|
startTime?: Maybe<Scalars['Float']['output']>;
|
|
15220
15816
|
};
|
|
15817
|
+
export declare type CcpEnforcementDetails = {
|
|
15818
|
+
__typename?: 'CcpEnforcementDetails';
|
|
15819
|
+
allowed?: Maybe<Scalars['Boolean']['output']>;
|
|
15820
|
+
reason?: Maybe<CcpEnforcementReasonCode>;
|
|
15821
|
+
};
|
|
15822
|
+
export declare enum CcpEnforcementReasonCode {
|
|
15823
|
+
BaseAllowanceExhausted = "BASE_ALLOWANCE_EXHAUSTED",
|
|
15824
|
+
EnforcementExempted = "ENFORCEMENT_EXEMPTED",
|
|
15825
|
+
MeterNotOnboarded = "METER_NOT_ONBOARDED",
|
|
15826
|
+
OverageCapExceeded = "OVERAGE_CAP_EXCEEDED"
|
|
15827
|
+
}
|
|
15221
15828
|
export declare type CcpEntitlement = CommerceEntitlement & Node & {
|
|
15222
15829
|
__typename?: 'CcpEntitlement';
|
|
15223
15830
|
allowancePoolAllocations?: Maybe<Array<Maybe<CcpAllowancePoolAllocationsResponse>>>;
|
|
@@ -15318,6 +15925,7 @@ export declare type CcpEntitlementExperienceCapabilities = CommerceEntitlementEx
|
|
|
15318
15925
|
compareOfferings?: Maybe<CcpCompareOfferingsExperienceCapability>;
|
|
15319
15926
|
manageEntitlement?: Maybe<CcpManageEntitlementExperienceCapability>;
|
|
15320
15927
|
placeOrderLite?: Maybe<CcpPlaceOrderLiteExperienceCapability>;
|
|
15928
|
+
setUsageLimit?: Maybe<CcpSetUsageLimitExperienceCapability>;
|
|
15321
15929
|
unbundleApps?: Maybe<CcpUnbundleAppsExperienceCapability>;
|
|
15322
15930
|
};
|
|
15323
15931
|
export declare type CcpEntitlementExperienceCapabilitiesApplyEntitlementPromotionArgs = {
|
|
@@ -16810,6 +17418,11 @@ export declare type CcpSearchTimestampBoundsInput = {
|
|
|
16810
17418
|
gte?: InputMaybe<Scalars['String']['input']>;
|
|
16811
17419
|
lte?: InputMaybe<Scalars['String']['input']>;
|
|
16812
17420
|
};
|
|
17421
|
+
export declare type CcpSetUsageLimitExperienceCapability = CommerceExperienceCapability & {
|
|
17422
|
+
__typename?: 'CcpSetUsageLimitExperienceCapability';
|
|
17423
|
+
experienceUrl?: Maybe<Scalars['String']['output']>;
|
|
17424
|
+
isAvailableToUser?: Maybe<Scalars['Boolean']['output']>;
|
|
17425
|
+
};
|
|
16813
17426
|
export declare type CcpShipToParty = Node & {
|
|
16814
17427
|
__typename?: 'CcpShipToParty';
|
|
16815
17428
|
createdAt?: Maybe<Scalars['Float']['output']>;
|
|
@@ -18440,6 +19053,7 @@ export declare type CommerceExpCcpEntitlement = {
|
|
|
18440
19053
|
contract?: Maybe<CommerceExpCommercialContract>;
|
|
18441
19054
|
currentPromotions?: Maybe<Array<Maybe<CommerceExpCcpPromotion>>>;
|
|
18442
19055
|
currentUserPermissions?: Maybe<Array<Maybe<CommerceExpUserPermission>>>;
|
|
19056
|
+
forecastBillEstimates?: Maybe<CommerceExpForecastBillEstimates>;
|
|
18443
19057
|
hasConnectedAnnualProductEntitlements?: Maybe<Scalars['Boolean']['output']>;
|
|
18444
19058
|
id: Scalars['ID']['output'];
|
|
18445
19059
|
inactiveSubscription?: Maybe<CommerceExpCcpSubscription>;
|
|
@@ -19815,12 +20429,17 @@ export declare type CommerceExpEntitlementAccountModificationForBac = {
|
|
|
19815
20429
|
transactionAccount?: Maybe<CommerceExpCcpTransactionAccount>;
|
|
19816
20430
|
validAccountModificationOrder?: Maybe<CommerceExpValidOrderResponse>;
|
|
19817
20431
|
};
|
|
20432
|
+
export declare enum CommerceExpEntitlementActionCtaType {
|
|
20433
|
+
Primary = "PRIMARY",
|
|
20434
|
+
Secondary = "SECONDARY"
|
|
20435
|
+
}
|
|
19818
20436
|
export declare enum CommerceExpEntitlementActionExperienceType {
|
|
19819
20437
|
ContactSupport = "CONTACT_SUPPORT",
|
|
19820
20438
|
NotAvailable = "NOT_AVAILABLE",
|
|
19821
20439
|
SelfServe = "SELF_SERVE"
|
|
19822
20440
|
}
|
|
19823
20441
|
export declare type CommerceExpEntitlementActionResult = {
|
|
20442
|
+
ctaType?: Maybe<CommerceExpEntitlementActionCtaType>;
|
|
19824
20443
|
experienceType?: Maybe<CommerceExpEntitlementActionExperienceType>;
|
|
19825
20444
|
};
|
|
19826
20445
|
export declare type CommerceExpEntitlementActions = {
|
|
@@ -19850,6 +20469,7 @@ export declare type CommerceExpEntitlementActionsV2 = {
|
|
|
19850
20469
|
reactivate?: Maybe<CommerceExpGenericEntitlementActionResult>;
|
|
19851
20470
|
removeFromEnterprise?: Maybe<CommerceExpGenericEntitlementActionResult>;
|
|
19852
20471
|
removeFromMultiInstance?: Maybe<CommerceExpGenericEntitlementActionResult>;
|
|
20472
|
+
unbundleCollection?: Maybe<CommerceExpGenericEntitlementActionResult>;
|
|
19853
20473
|
undoCancellation?: Maybe<CommerceExpGenericEntitlementActionResult>;
|
|
19854
20474
|
viewBillingPartner?: Maybe<CommerceExpGenericEntitlementActionResult>;
|
|
19855
20475
|
};
|
|
@@ -20026,6 +20646,17 @@ export declare type CommerceExpExpectedBillsLineItem = {
|
|
|
20026
20646
|
taxItems?: Maybe<Array<Maybe<CommerceExpTaxItemsResponse>>>;
|
|
20027
20647
|
total?: Maybe<Scalars['Float']['output']>;
|
|
20028
20648
|
};
|
|
20649
|
+
export declare type CommerceExpForecastBillEstimateResult = {
|
|
20650
|
+
__typename?: 'CommerceExpForecastBillEstimateResult';
|
|
20651
|
+
created?: Maybe<Scalars['Float']['output']>;
|
|
20652
|
+
currency?: Maybe<Scalars['String']['output']>;
|
|
20653
|
+
total?: Maybe<Scalars['Float']['output']>;
|
|
20654
|
+
};
|
|
20655
|
+
export declare type CommerceExpForecastBillEstimates = {
|
|
20656
|
+
__typename?: 'CommerceExpForecastBillEstimates';
|
|
20657
|
+
high?: Maybe<CommerceExpForecastBillEstimateResult>;
|
|
20658
|
+
low?: Maybe<CommerceExpForecastBillEstimateResult>;
|
|
20659
|
+
};
|
|
20029
20660
|
export declare type CommerceExpForecastResult = {
|
|
20030
20661
|
__typename?: 'CommerceExpForecastResult';
|
|
20031
20662
|
extraUsageHigh?: Maybe<Scalars['Float']['output']>;
|
|
@@ -20050,6 +20681,7 @@ export declare type CommerceExpForecastingOutput = {
|
|
|
20050
20681
|
};
|
|
20051
20682
|
export declare type CommerceExpGenericEntitlementActionResult = CommerceExpEntitlementActionResult & {
|
|
20052
20683
|
__typename?: 'CommerceExpGenericEntitlementActionResult';
|
|
20684
|
+
ctaType?: Maybe<CommerceExpEntitlementActionCtaType>;
|
|
20053
20685
|
experienceType?: Maybe<CommerceExpEntitlementActionExperienceType>;
|
|
20054
20686
|
};
|
|
20055
20687
|
export declare type CommerceExpGenericError = {
|
|
@@ -29140,6 +29772,18 @@ export declare type ConfluenceDisableGlobalPageBlueprintPayload = Payload & {
|
|
|
29140
29772
|
errors?: Maybe<Array<MutationError>>;
|
|
29141
29773
|
success: Scalars['Boolean']['output'];
|
|
29142
29774
|
};
|
|
29775
|
+
export declare type ConfluenceDisableSystemRoleInput = {
|
|
29776
|
+
anonymousRoleId?: InputMaybe<Scalars['ID']['input']>;
|
|
29777
|
+
guestRoleId?: InputMaybe<Scalars['ID']['input']>;
|
|
29778
|
+
newRoleId?: InputMaybe<Scalars['ID']['input']>;
|
|
29779
|
+
roleId: Scalars['ID']['input'];
|
|
29780
|
+
};
|
|
29781
|
+
export declare type ConfluenceDisableSystemRolePayload = Payload & {
|
|
29782
|
+
__typename?: 'ConfluenceDisableSystemRolePayload';
|
|
29783
|
+
errors?: Maybe<Array<MutationError>>;
|
|
29784
|
+
success: Scalars['Boolean']['output'];
|
|
29785
|
+
taskId?: Maybe<Scalars['ID']['output']>;
|
|
29786
|
+
};
|
|
29143
29787
|
export declare type ConfluenceDraftContentNativeProperties = {
|
|
29144
29788
|
__typename?: 'ConfluenceDraftContentNativeProperties';
|
|
29145
29789
|
contentState?: Maybe<ConfluenceContentState>;
|
|
@@ -29794,6 +30438,9 @@ export declare type ConfluenceJiraMacroAppLinksScanningStatus = {
|
|
|
29794
30438
|
__typename?: 'ConfluenceJiraMacroAppLinksScanningStatus';
|
|
29795
30439
|
additionalMessage?: Maybe<Scalars['String']['output']>;
|
|
29796
30440
|
problems?: Maybe<ConfluenceJiraMacroAppLinksValidatorResult>;
|
|
30441
|
+
reportDownloadUrl?: Maybe<Scalars['String']['output']>;
|
|
30442
|
+
reportFileStoreId?: Maybe<Scalars['String']['output']>;
|
|
30443
|
+
startedAtEpochMillis?: Maybe<Scalars['Long']['output']>;
|
|
29797
30444
|
status: ConfluenceJiraMacroAppLinksValidationStatus;
|
|
29798
30445
|
};
|
|
29799
30446
|
export declare enum ConfluenceJiraMacroAppLinksValidationStatus {
|
|
@@ -31033,6 +31680,16 @@ export declare type ConfluencePatchCalendarPayload = Payload & {
|
|
|
31033
31680
|
errors?: Maybe<Array<MutationError>>;
|
|
31034
31681
|
success: Scalars['Boolean']['output'];
|
|
31035
31682
|
};
|
|
31683
|
+
export declare type ConfluencePatchSpaceSettingsInput = {
|
|
31684
|
+
contentMode?: InputMaybe<ConfluenceGraphQlContentMode>;
|
|
31685
|
+
id: Scalars['ID']['input'];
|
|
31686
|
+
};
|
|
31687
|
+
export declare type ConfluencePatchSpaceSettingsPayload = Payload & {
|
|
31688
|
+
__typename?: 'ConfluencePatchSpaceSettingsPayload';
|
|
31689
|
+
confluenceSpaceSettings?: Maybe<ConfluenceSpaceSettings>;
|
|
31690
|
+
errors?: Maybe<Array<MutationError>>;
|
|
31691
|
+
success: Scalars['Boolean']['output'];
|
|
31692
|
+
};
|
|
31036
31693
|
export declare type ConfluencePdfExportDownloadLink = {
|
|
31037
31694
|
__typename?: 'ConfluencePdfExportDownloadLink';
|
|
31038
31695
|
link?: Maybe<Scalars['String']['output']>;
|
|
@@ -32167,6 +32824,14 @@ export declare type ConfluenceRestoreContentVersionPayload = {
|
|
|
32167
32824
|
success: Scalars['Boolean']['output'];
|
|
32168
32825
|
version: Version;
|
|
32169
32826
|
};
|
|
32827
|
+
export declare type ConfluenceRestoreSystemRoleInput = {
|
|
32828
|
+
roleId: Scalars['ID']['input'];
|
|
32829
|
+
};
|
|
32830
|
+
export declare type ConfluenceRestoreSystemRolePayload = Payload & {
|
|
32831
|
+
__typename?: 'ConfluenceRestoreSystemRolePayload';
|
|
32832
|
+
errors?: Maybe<Array<MutationError>>;
|
|
32833
|
+
success: Scalars['Boolean']['output'];
|
|
32834
|
+
};
|
|
32170
32835
|
export declare type ConfluenceRestrictingContent = {
|
|
32171
32836
|
__typename?: 'ConfluenceRestrictingContent';
|
|
32172
32837
|
id: Scalars['ID']['output'];
|
|
@@ -32347,6 +33012,15 @@ export declare type ConfluenceSetSubCalendarReminderPayload = {
|
|
|
32347
33012
|
subCalendarReminder?: Maybe<ConfluenceSubCalendarReminder>;
|
|
32348
33013
|
success: Scalars['Boolean']['output'];
|
|
32349
33014
|
};
|
|
33015
|
+
export declare type ConfluenceSetSystemOperationRoleConfigurationInput = {
|
|
33016
|
+
roleId?: InputMaybe<Scalars['String']['input']>;
|
|
33017
|
+
systemOperation: ConfluenceSystemOperation;
|
|
33018
|
+
};
|
|
33019
|
+
export declare type ConfluenceSetSystemOperationRoleConfigurationPayload = Payload & {
|
|
33020
|
+
__typename?: 'ConfluenceSetSystemOperationRoleConfigurationPayload';
|
|
33021
|
+
errors?: Maybe<Array<MutationError>>;
|
|
33022
|
+
success: Scalars['Boolean']['output'];
|
|
33023
|
+
};
|
|
32350
33024
|
export declare type ConfluenceShareConfiguration = {
|
|
32351
33025
|
__typename?: 'ConfluenceShareConfiguration';
|
|
32352
33026
|
disableSharingToEmails: Scalars['Boolean']['output'];
|
|
@@ -32784,6 +33458,28 @@ export declare type ConfluenceSpacePermissionPageInfo = {
|
|
|
32784
33458
|
hasPreviousPage: Scalars['Boolean']['output'];
|
|
32785
33459
|
startCursor?: Maybe<Scalars['String']['output']>;
|
|
32786
33460
|
};
|
|
33461
|
+
export declare type ConfluenceSpacePermissionTransitionTaskProgress = {
|
|
33462
|
+
__typename?: 'ConfluenceSpacePermissionTransitionTaskProgress';
|
|
33463
|
+
currentStep?: Maybe<ConfluenceSpacePermissionTransitionTaskStep>;
|
|
33464
|
+
progressPercentage?: Maybe<Scalars['Int']['output']>;
|
|
33465
|
+
taskId: Scalars['ID']['output'];
|
|
33466
|
+
taskType: ConfluenceSpacePermissionTransitionTaskType;
|
|
33467
|
+
};
|
|
33468
|
+
export declare enum ConfluenceSpacePermissionTransitionTaskStep {
|
|
33469
|
+
BulkTransitionFetchingPermissions = "BULK_TRANSITION_FETCHING_PERMISSIONS",
|
|
33470
|
+
BulkTransitionMutatingPermissions = "BULK_TRANSITION_MUTATING_PERMISSIONS",
|
|
33471
|
+
BulkTransitionResolvingSpaces = "BULK_TRANSITION_RESOLVING_SPACES",
|
|
33472
|
+
BulkTransitionUpdatingAuditData = "BULK_TRANSITION_UPDATING_AUDIT_DATA",
|
|
33473
|
+
GenerateAuditReportAggregatingCombinations = "GENERATE_AUDIT_REPORT_AGGREGATING_COMBINATIONS",
|
|
33474
|
+
GenerateAuditReportFormattingReport = "GENERATE_AUDIT_REPORT_FORMATTING_REPORT",
|
|
33475
|
+
GenerateAuditReportPersistingCombinations = "GENERATE_AUDIT_REPORT_PERSISTING_COMBINATIONS",
|
|
33476
|
+
GenerateAuditReportUploadingReport = "GENERATE_AUDIT_REPORT_UPLOADING_REPORT"
|
|
33477
|
+
}
|
|
33478
|
+
export declare enum ConfluenceSpacePermissionTransitionTaskType {
|
|
33479
|
+
BulkAssign = "BULK_ASSIGN",
|
|
33480
|
+
BulkRemove = "BULK_REMOVE",
|
|
33481
|
+
GenerateAuditReport = "GENERATE_AUDIT_REPORT"
|
|
33482
|
+
}
|
|
32787
33483
|
export declare type ConfluenceSpaceProperty = {
|
|
32788
33484
|
__typename?: 'ConfluenceSpaceProperty';
|
|
32789
33485
|
id?: Maybe<Scalars['ID']['output']>;
|
|
@@ -32829,6 +33525,7 @@ export declare enum ConfluenceSpaceSettingEditorVersion {
|
|
|
32829
33525
|
}
|
|
32830
33526
|
export declare type ConfluenceSpaceSettings = {
|
|
32831
33527
|
__typename?: 'ConfluenceSpaceSettings';
|
|
33528
|
+
contentMode?: Maybe<ConfluenceGraphQlContentMode>;
|
|
32832
33529
|
editorVersions?: Maybe<ConfluenceSpaceSettingsEditorVersions>;
|
|
32833
33530
|
isPdfExportNoCodeStylingOptedIn?: Maybe<Scalars['Boolean']['output']>;
|
|
32834
33531
|
routeOverrideEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -32929,6 +33626,22 @@ export declare type ConfluenceSyncSmartFolderPayload = Payload & {
|
|
|
32929
33626
|
errors?: Maybe<Array<MutationError>>;
|
|
32930
33627
|
success: Scalars['Boolean']['output'];
|
|
32931
33628
|
};
|
|
33629
|
+
export declare enum ConfluenceSystemOperation {
|
|
33630
|
+
CompanyHubAdmin = "COMPANY_HUB_ADMIN",
|
|
33631
|
+
CompanyHubViewer = "COMPANY_HUB_VIEWER",
|
|
33632
|
+
DefaultGuestAssignment = "DEFAULT_GUEST_ASSIGNMENT",
|
|
33633
|
+
EcosystemAppWrite = "ECOSYSTEM_APP_WRITE",
|
|
33634
|
+
FallbackRole = "FALLBACK_ROLE",
|
|
33635
|
+
RecoverSpace = "RECOVER_SPACE",
|
|
33636
|
+
SpaceOwner = "SPACE_OWNER"
|
|
33637
|
+
}
|
|
33638
|
+
export declare type ConfluenceSystemOperationRoleConfiguration = {
|
|
33639
|
+
__typename?: 'ConfluenceSystemOperationRoleConfiguration';
|
|
33640
|
+
defaultRoleId: Scalars['String']['output'];
|
|
33641
|
+
description: Scalars['String']['output'];
|
|
33642
|
+
roleId?: Maybe<Scalars['String']['output']>;
|
|
33643
|
+
systemOperation: ConfluenceSystemOperation;
|
|
33644
|
+
};
|
|
32932
33645
|
export declare type ConfluenceSystemTemplate = {
|
|
32933
33646
|
__typename?: 'ConfluenceSystemTemplate';
|
|
32934
33647
|
id: Scalars['ID']['output'];
|
|
@@ -35144,6 +35857,10 @@ export declare enum ConvoAiAgentSessionState {
|
|
|
35144
35857
|
Working = "WORKING"
|
|
35145
35858
|
}
|
|
35146
35859
|
export declare type ConvoAiAgentSessionUpdate = ConvoAiAnswerPartMessage | ConvoAiConversationMessage | ConvoAiEmptyConversation | ConvoAiErrorMessage | ConvoAiTraceMessage;
|
|
35860
|
+
export declare type ConvoAiAgentSessionUpdatePayload = {
|
|
35861
|
+
__typename?: 'ConvoAiAgentSessionUpdatePayload';
|
|
35862
|
+
association?: Maybe<AgentSessionAssociation>;
|
|
35863
|
+
};
|
|
35147
35864
|
export declare type ConvoAiAgentSessionUpdatedByProjects = {
|
|
35148
35865
|
__typename?: 'ConvoAiAgentSessionUpdatedByProjects';
|
|
35149
35866
|
agent?: Maybe<ConvoAiUser>;
|
|
@@ -35729,6 +36446,10 @@ export declare type CplsContributionAggregation = {
|
|
|
35729
36446
|
totalContributionFormats?: Maybe<CplsValueFormats>;
|
|
35730
36447
|
totalContributionHours: Scalars['Float']['output'];
|
|
35731
36448
|
};
|
|
36449
|
+
export declare enum CplsContributionCopyMode {
|
|
36450
|
+
CurrentAndFuture = "CURRENT_AND_FUTURE",
|
|
36451
|
+
None = "NONE"
|
|
36452
|
+
}
|
|
35732
36453
|
export declare enum CplsContributionValueType {
|
|
35733
36454
|
Days = "DAYS",
|
|
35734
36455
|
Hours = "HOURS",
|
|
@@ -35810,6 +36531,48 @@ export declare type CplsContributorWorkEdge = {
|
|
|
35810
36531
|
isSuggestion?: Maybe<Scalars['Boolean']['output']>;
|
|
35811
36532
|
node?: Maybe<CplsWorkData>;
|
|
35812
36533
|
};
|
|
36534
|
+
export declare type CplsCopyContributorToWorksInput = {
|
|
36535
|
+
cloudId: Scalars['ID']['input'];
|
|
36536
|
+
contributionCopyMode: CplsContributionCopyMode;
|
|
36537
|
+
contributorDataId: Scalars['ID']['input'];
|
|
36538
|
+
destinationWorkIds: Array<Scalars['ID']['input']>;
|
|
36539
|
+
scopeId: Scalars['ID']['input'];
|
|
36540
|
+
sourceWorkId: Scalars['ID']['input'];
|
|
36541
|
+
};
|
|
36542
|
+
export declare type CplsCopyContributorToWorksPayload = Payload & {
|
|
36543
|
+
__typename?: 'CplsCopyContributorToWorksPayload';
|
|
36544
|
+
errors?: Maybe<Array<MutationError>>;
|
|
36545
|
+
success: Scalars['Boolean']['output'];
|
|
36546
|
+
workContributorAssociationsByScope?: Maybe<Array<CplsWorkContributorEdge>>;
|
|
36547
|
+
worksByScope?: Maybe<Array<CplsWork>>;
|
|
36548
|
+
};
|
|
36549
|
+
export declare type CplsCopyContributorToWorksPayloadWorkContributorAssociationsByScopeArgs = {
|
|
36550
|
+
scopeId: Scalars['ID']['input'];
|
|
36551
|
+
};
|
|
36552
|
+
export declare type CplsCopyContributorToWorksPayloadWorksByScopeArgs = {
|
|
36553
|
+
scopeId: Scalars['ID']['input'];
|
|
36554
|
+
};
|
|
36555
|
+
export declare type CplsCopyWorkToContributorsInput = {
|
|
36556
|
+
cloudId: Scalars['ID']['input'];
|
|
36557
|
+
contributionCopyMode: CplsContributionCopyMode;
|
|
36558
|
+
destinationContributorDataIds: Array<Scalars['ID']['input']>;
|
|
36559
|
+
scopeId: Scalars['ID']['input'];
|
|
36560
|
+
sourceContributorDataId: Scalars['ID']['input'];
|
|
36561
|
+
workId: Scalars['ID']['input'];
|
|
36562
|
+
};
|
|
36563
|
+
export declare type CplsCopyWorkToContributorsPayload = Payload & {
|
|
36564
|
+
__typename?: 'CplsCopyWorkToContributorsPayload';
|
|
36565
|
+
contributorWorkAssociationsByScope?: Maybe<Array<CplsContributorWorkEdge>>;
|
|
36566
|
+
contributorsByScope?: Maybe<Array<CplsContributor>>;
|
|
36567
|
+
errors?: Maybe<Array<MutationError>>;
|
|
36568
|
+
success: Scalars['Boolean']['output'];
|
|
36569
|
+
};
|
|
36570
|
+
export declare type CplsCopyWorkToContributorsPayloadContributorWorkAssociationsByScopeArgs = {
|
|
36571
|
+
scopeId: Scalars['ID']['input'];
|
|
36572
|
+
};
|
|
36573
|
+
export declare type CplsCopyWorkToContributorsPayloadContributorsByScopeArgs = {
|
|
36574
|
+
scopeId: Scalars['ID']['input'];
|
|
36575
|
+
};
|
|
35813
36576
|
export declare type CplsCreateCustomContributionTargetInput = {
|
|
35814
36577
|
cloudId: Scalars['ID']['input'];
|
|
35815
36578
|
name: Scalars['String']['input'];
|
|
@@ -36143,11 +36906,6 @@ export declare type CplsSearchCustomContributionTargetsInput = {
|
|
|
36143
36906
|
query?: InputMaybe<Scalars['String']['input']>;
|
|
36144
36907
|
};
|
|
36145
36908
|
export declare type CplsSettings = CplsPlanSettings | QueryError;
|
|
36146
|
-
export declare type CplsSuggestionsExistencePayload = {
|
|
36147
|
-
__typename?: 'CplsSuggestionsExistencePayload';
|
|
36148
|
-
hasSuggestions: Scalars['Boolean']['output'];
|
|
36149
|
-
scopeId: Scalars['ID']['output'];
|
|
36150
|
-
};
|
|
36151
36909
|
export declare type CplsTimeCell = {
|
|
36152
36910
|
__typename?: 'CplsTimeCell';
|
|
36153
36911
|
endDate: Scalars['Date']['output'];
|
|
@@ -36320,6 +37078,7 @@ export declare type CreateAppDeploymentInput = {
|
|
|
36320
37078
|
environmentKey: Scalars['String']['input'];
|
|
36321
37079
|
hostedResourceUploadId?: InputMaybe<Scalars['ID']['input']>;
|
|
36322
37080
|
majorVersion?: InputMaybe<Scalars['Int']['input']>;
|
|
37081
|
+
skipRollout?: InputMaybe<Scalars['Boolean']['input']>;
|
|
36323
37082
|
};
|
|
36324
37083
|
export declare type CreateAppDeploymentResponse = Payload & {
|
|
36325
37084
|
__typename?: 'CreateAppDeploymentResponse';
|
|
@@ -37884,6 +38643,7 @@ export declare type CustomerServiceAiIssueSource = {
|
|
|
37884
38643
|
status?: Maybe<Scalars['String']['output']>;
|
|
37885
38644
|
summary?: Maybe<Scalars['String']['output']>;
|
|
37886
38645
|
updated?: Maybe<Scalars['String']['output']>;
|
|
38646
|
+
url?: Maybe<Scalars['String']['output']>;
|
|
37887
38647
|
};
|
|
37888
38648
|
export declare type CustomerServiceAiNoteSource = {
|
|
37889
38649
|
__typename?: 'CustomerServiceAiNoteSource';
|
|
@@ -39248,6 +40008,16 @@ export declare type CustomerServiceUpdateCustomDetailValuePayload = Payload & {
|
|
|
39248
40008
|
errors?: Maybe<Array<MutationError>>;
|
|
39249
40009
|
success: Scalars['Boolean']['output'];
|
|
39250
40010
|
};
|
|
40011
|
+
export declare type CustomerServiceUpdateCustomerNameInput = {
|
|
40012
|
+
accountId: Scalars['ID']['input'];
|
|
40013
|
+
displayName: Scalars['String']['input'];
|
|
40014
|
+
};
|
|
40015
|
+
export declare type CustomerServiceUpdateCustomerNamePayload = Payload & {
|
|
40016
|
+
__typename?: 'CustomerServiceUpdateCustomerNamePayload';
|
|
40017
|
+
errors?: Maybe<Array<MutationError>>;
|
|
40018
|
+
success: Scalars['Boolean']['output'];
|
|
40019
|
+
updatedCustomer?: Maybe<CustomerServiceUpdatedCustomerAccount>;
|
|
40020
|
+
};
|
|
39251
40021
|
export declare type CustomerServiceUpdateLiveChatAgentActivitiesInput = {
|
|
39252
40022
|
id: Scalars['ID']['input'];
|
|
39253
40023
|
liveChatActivity: Scalars['String']['input'];
|
|
@@ -39263,6 +40033,12 @@ export declare type CustomerServiceUpdateRequestParticipantInput = {
|
|
|
39263
40033
|
addedParticipants: Array<Scalars['String']['input']>;
|
|
39264
40034
|
deletedParticipants: Array<Scalars['ID']['input']>;
|
|
39265
40035
|
};
|
|
40036
|
+
export declare type CustomerServiceUpdatedCustomerAccount = {
|
|
40037
|
+
__typename?: 'CustomerServiceUpdatedCustomerAccount';
|
|
40038
|
+
displayName: Scalars['String']['output'];
|
|
40039
|
+
email?: Maybe<Scalars['String']['output']>;
|
|
40040
|
+
id: Scalars['ID']['output'];
|
|
40041
|
+
};
|
|
39266
40042
|
export declare type CustomerServiceUserDetailValue = {
|
|
39267
40043
|
__typename?: 'CustomerServiceUserDetailValue';
|
|
39268
40044
|
accountId?: Maybe<Scalars['ID']['output']>;
|
|
@@ -40066,6 +40842,29 @@ export declare type DevAiAutodevNextAssignedWorkstreamTaskStats = {
|
|
|
40066
40842
|
needsReviewOverdue: Scalars['Int']['output'];
|
|
40067
40843
|
needsReviewTotal: Scalars['Int']['output'];
|
|
40068
40844
|
};
|
|
40845
|
+
export declare type DevAiAutodevNextAssociatedWorkstream = {
|
|
40846
|
+
__typename?: 'DevAiAutodevNextAssociatedWorkstream';
|
|
40847
|
+
findWorkMode: Scalars['ID']['output'];
|
|
40848
|
+
id: Scalars['ID']['output'];
|
|
40849
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
40850
|
+
status: Scalars['ID']['output'];
|
|
40851
|
+
};
|
|
40852
|
+
export declare type DevAiAutodevNextCompleteWorkItemRefinementInput = {
|
|
40853
|
+
cloudId: Scalars['ID']['input'];
|
|
40854
|
+
state: DevAiAutodevNextCompleteWorkItemRefinementState;
|
|
40855
|
+
workItemBody?: InputMaybe<Scalars['String']['input']>;
|
|
40856
|
+
workItemId: Scalars['ID']['input'];
|
|
40857
|
+
};
|
|
40858
|
+
export declare type DevAiAutodevNextCompleteWorkItemRefinementPayload = Payload & {
|
|
40859
|
+
__typename?: 'DevAiAutodevNextCompleteWorkItemRefinementPayload';
|
|
40860
|
+
errors?: Maybe<Array<MutationError>>;
|
|
40861
|
+
success: Scalars['Boolean']['output'];
|
|
40862
|
+
workItem?: Maybe<DevAiAutodevNextWorkItem>;
|
|
40863
|
+
};
|
|
40864
|
+
export declare enum DevAiAutodevNextCompleteWorkItemRefinementState {
|
|
40865
|
+
OutOfScope = "OUT_OF_SCOPE",
|
|
40866
|
+
Ready = "READY"
|
|
40867
|
+
}
|
|
40069
40868
|
export declare type DevAiAutodevNextCreateWorkstreamInput = {
|
|
40070
40869
|
cloudId: Scalars['ID']['input'];
|
|
40071
40870
|
findWorkMode: DevAiAutodevNextWorkstreamFindWorkMode;
|
|
@@ -40100,6 +40899,17 @@ export declare type DevAiAutodevNextDeleteWorkstreamPayload = Payload & {
|
|
|
40100
40899
|
errors?: Maybe<Array<MutationError>>;
|
|
40101
40900
|
success: Scalars['Boolean']['output'];
|
|
40102
40901
|
};
|
|
40902
|
+
export declare type DevAiAutodevNextJiraProjectAvailabilityPayload = {
|
|
40903
|
+
__typename?: 'DevAiAutodevNextJiraProjectAvailabilityPayload';
|
|
40904
|
+
results: Array<DevAiAutodevNextJiraProjectAvailabilityResult>;
|
|
40905
|
+
};
|
|
40906
|
+
export declare type DevAiAutodevNextJiraProjectAvailabilityResult = {
|
|
40907
|
+
__typename?: 'DevAiAutodevNextJiraProjectAvailabilityResult';
|
|
40908
|
+
associatedWorkstreams: Array<DevAiAutodevNextAssociatedWorkstream>;
|
|
40909
|
+
available: Scalars['Boolean']['output'];
|
|
40910
|
+
projectAri: Scalars['ID']['output'];
|
|
40911
|
+
status: Scalars['ID']['output'];
|
|
40912
|
+
};
|
|
40103
40913
|
export declare type DevAiAutodevNextMemberConnection = {
|
|
40104
40914
|
__typename?: 'DevAiAutodevNextMemberConnection';
|
|
40105
40915
|
edges?: Maybe<Array<DevAiAutodevNextMemberEdge>>;
|
|
@@ -40217,6 +41027,18 @@ export declare type DevAiAutodevNextSendWorkstreamNudgesPayload = Payload & {
|
|
|
40217
41027
|
errors?: Maybe<Array<MutationError>>;
|
|
40218
41028
|
success: Scalars['Boolean']['output'];
|
|
40219
41029
|
};
|
|
41030
|
+
export declare type DevAiAutodevNextTriggerWorkstreamScanInput = {
|
|
41031
|
+
cloudId: Scalars['ID']['input'];
|
|
41032
|
+
workstreamId: Scalars['ID']['input'];
|
|
41033
|
+
};
|
|
41034
|
+
export declare type DevAiAutodevNextTriggerWorkstreamScanPayload = Payload & {
|
|
41035
|
+
__typename?: 'DevAiAutodevNextTriggerWorkstreamScanPayload';
|
|
41036
|
+
errors?: Maybe<Array<MutationError>>;
|
|
41037
|
+
findWorkMode?: Maybe<Scalars['ID']['output']>;
|
|
41038
|
+
scansTriggered?: Maybe<Scalars['Int']['output']>;
|
|
41039
|
+
skippedReason?: Maybe<Scalars['ID']['output']>;
|
|
41040
|
+
success: Scalars['Boolean']['output'];
|
|
41041
|
+
};
|
|
40220
41042
|
export declare type DevAiAutodevNextUpdateWorkstreamInput = {
|
|
40221
41043
|
cloudId: Scalars['ID']['input'];
|
|
40222
41044
|
name?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -40320,6 +41142,7 @@ export declare type DevAiAutodevNextWorkstreamSettings = {
|
|
|
40320
41142
|
eligibilityCriteria?: Maybe<Scalars['String']['output']>;
|
|
40321
41143
|
notifications?: Maybe<DevAiAutodevNextNotificationSettings>;
|
|
40322
41144
|
scanSchedule?: Maybe<DevAiAutodevNextScanSchedule>;
|
|
41145
|
+
suggestedJql?: Maybe<Scalars['String']['output']>;
|
|
40323
41146
|
taskOverdueAfterDays?: Maybe<Scalars['Int']['output']>;
|
|
40324
41147
|
wipLimit?: Maybe<Scalars['Int']['output']>;
|
|
40325
41148
|
};
|
|
@@ -40328,6 +41151,7 @@ export declare type DevAiAutodevNextWorkstreamSettingsInput = {
|
|
|
40328
41151
|
eligibilityCriteria?: InputMaybe<Scalars['String']['input']>;
|
|
40329
41152
|
notifications?: InputMaybe<DevAiAutodevNextNotificationSettingsInput>;
|
|
40330
41153
|
scanSchedule?: InputMaybe<DevAiAutodevNextScanScheduleInput>;
|
|
41154
|
+
suggestedJql?: InputMaybe<Scalars['String']['input']>;
|
|
40331
41155
|
taskOverdueAfterDays?: InputMaybe<Scalars['Int']['input']>;
|
|
40332
41156
|
wipLimit?: InputMaybe<Scalars['Int']['input']>;
|
|
40333
41157
|
};
|
|
@@ -43303,6 +44127,12 @@ export declare type EarliestOnboardedProjectForCloudId = {
|
|
|
43303
44127
|
datetime?: Maybe<Scalars['String']['output']>;
|
|
43304
44128
|
template?: Maybe<Scalars['String']['output']>;
|
|
43305
44129
|
};
|
|
44130
|
+
export declare type EcosystemAddonInstallationUnit = {
|
|
44131
|
+
__typename?: 'EcosystemAddonInstallationUnit';
|
|
44132
|
+
installationId: Scalars['ID']['output'];
|
|
44133
|
+
orgId?: Maybe<Scalars['ID']['output']>;
|
|
44134
|
+
unitId?: Maybe<Scalars['ID']['output']>;
|
|
44135
|
+
};
|
|
43306
44136
|
export declare type EcosystemApp = App | EcosystemConnectApp;
|
|
43307
44137
|
export declare type EcosystemAppInstallationConfigExtension = {
|
|
43308
44138
|
__typename?: 'EcosystemAppInstallationConfigExtension';
|
|
@@ -43697,7 +44527,10 @@ export declare type EcosystemQuery = {
|
|
|
43697
44527
|
fortifiedMetrics?: Maybe<FortifiedMetricsQuery>;
|
|
43698
44528
|
globalInstallationConfig?: Maybe<Array<Maybe<EcosystemGlobalInstallationOverride>>>;
|
|
43699
44529
|
marketplaceData?: Maybe<EcosystemMarketplaceData>;
|
|
44530
|
+
rollingReleaseEligibility?: Maybe<EcosystemRollingReleaseEligibility>;
|
|
43700
44531
|
rollingReleases?: Maybe<EcosystemRollingReleaseConnection>;
|
|
44532
|
+
siteEntitlements?: Maybe<EcosystemSiteEntitlementsResult>;
|
|
44533
|
+
unitsByInstallationId?: Maybe<Array<Maybe<EcosystemAddonInstallationUnit>>>;
|
|
43701
44534
|
unitsForOrg?: Maybe<EcosystemUnitsForOrgResponse>;
|
|
43702
44535
|
userAccess?: Maybe<UserAccess>;
|
|
43703
44536
|
userGrants?: Maybe<UserGrantConnection>;
|
|
@@ -43779,12 +44612,23 @@ export declare type EcosystemQueryMarketplaceDataArgs = {
|
|
|
43779
44612
|
appKey?: InputMaybe<Scalars['ID']['input']>;
|
|
43780
44613
|
cloudAppId?: InputMaybe<Scalars['ID']['input']>;
|
|
43781
44614
|
};
|
|
44615
|
+
export declare type EcosystemQueryRollingReleaseEligibilityArgs = {
|
|
44616
|
+
appId: Scalars['ID']['input'];
|
|
44617
|
+
environmentId: Scalars['ID']['input'];
|
|
44618
|
+
targetVersionId?: InputMaybe<Scalars['ID']['input']>;
|
|
44619
|
+
};
|
|
43782
44620
|
export declare type EcosystemQueryRollingReleasesArgs = {
|
|
43783
44621
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
43784
44622
|
appId: Scalars['ID']['input'];
|
|
43785
44623
|
environmentId?: InputMaybe<Scalars['ID']['input']>;
|
|
43786
44624
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
43787
44625
|
};
|
|
44626
|
+
export declare type EcosystemQuerySiteEntitlementsArgs = {
|
|
44627
|
+
cloudId: Scalars['ID']['input'];
|
|
44628
|
+
};
|
|
44629
|
+
export declare type EcosystemQueryUnitsByInstallationIdArgs = {
|
|
44630
|
+
installationIds: Array<Scalars['ID']['input']>;
|
|
44631
|
+
};
|
|
43788
44632
|
export declare type EcosystemQueryUnitsForOrgArgs = {
|
|
43789
44633
|
orgId: Scalars['ID']['input'];
|
|
43790
44634
|
};
|
|
@@ -43841,6 +44685,12 @@ export declare type EcosystemRollingReleaseEdge = {
|
|
|
43841
44685
|
cursor: Scalars['String']['output'];
|
|
43842
44686
|
node?: Maybe<EcosystemRollingRelease>;
|
|
43843
44687
|
};
|
|
44688
|
+
export declare type EcosystemRollingReleaseEligibility = {
|
|
44689
|
+
__typename?: 'EcosystemRollingReleaseEligibility';
|
|
44690
|
+
targetVersionId: Scalars['ID']['output'];
|
|
44691
|
+
totalEligibleInstallationCount: Scalars['Int']['output'];
|
|
44692
|
+
versionEligibilityBreakdown: Array<EcosystemVersionEligibilityBreakdown>;
|
|
44693
|
+
};
|
|
43844
44694
|
export declare type EcosystemRollingReleasePageInfo = {
|
|
43845
44695
|
__typename?: 'EcosystemRollingReleasePageInfo';
|
|
43846
44696
|
endCursor?: Maybe<Scalars['String']['output']>;
|
|
@@ -43857,6 +44707,16 @@ export declare enum EcosystemRollingReleaseStatus {
|
|
|
43857
44707
|
Terminated = "TERMINATED",
|
|
43858
44708
|
TimedOut = "TIMED_OUT"
|
|
43859
44709
|
}
|
|
44710
|
+
export declare type EcosystemSiteEntitlement = {
|
|
44711
|
+
__typename?: 'EcosystemSiteEntitlement';
|
|
44712
|
+
entitlementId: Scalars['String']['output'];
|
|
44713
|
+
productKey?: Maybe<Scalars['String']['output']>;
|
|
44714
|
+
status?: Maybe<Scalars['String']['output']>;
|
|
44715
|
+
};
|
|
44716
|
+
export declare type EcosystemSiteEntitlementsResult = {
|
|
44717
|
+
__typename?: 'EcosystemSiteEntitlementsResult';
|
|
44718
|
+
entitlements: Array<EcosystemSiteEntitlement>;
|
|
44719
|
+
};
|
|
43860
44720
|
export declare type EcosystemSubscription = {
|
|
43861
44721
|
__typename?: 'EcosystemSubscription';
|
|
43862
44722
|
realtimeChannel?: Maybe<EcosystemRealtimeSubscriptionBody>;
|
|
@@ -43891,6 +44751,14 @@ export declare type EcosystemUpdateInstallationRemoteRegionResponse = Payload &
|
|
|
43891
44751
|
errors?: Maybe<Array<MutationError>>;
|
|
43892
44752
|
success: Scalars['Boolean']['output'];
|
|
43893
44753
|
};
|
|
44754
|
+
export declare type EcosystemVersionEligibilityBreakdown = {
|
|
44755
|
+
__typename?: 'EcosystemVersionEligibilityBreakdown';
|
|
44756
|
+
failingEligibilityRules: Array<Scalars['String']['output']>;
|
|
44757
|
+
installationCount: Scalars['Int']['output'];
|
|
44758
|
+
isEligible: Scalars['Boolean']['output'];
|
|
44759
|
+
semVer: Scalars['String']['output'];
|
|
44760
|
+
sourceVersionId: Scalars['ID']['output'];
|
|
44761
|
+
};
|
|
43894
44762
|
export declare type EditSprintInput = {
|
|
43895
44763
|
autoManaged?: InputMaybe<AutoManagedSprintSetting>;
|
|
43896
44764
|
boardId: Scalars['ID']['input'];
|
|
@@ -45373,8 +46241,11 @@ export declare type ExternalMessageLink = {
|
|
|
45373
46241
|
export declare type ExternalOrganisation = Node & {
|
|
45374
46242
|
__typename?: 'ExternalOrganisation';
|
|
45375
46243
|
associatedWith?: Maybe<ExternalAssociationConnection>;
|
|
46244
|
+
container?: Maybe<ExternalEntity>;
|
|
46245
|
+
containerId?: Maybe<Scalars['ID']['output']>;
|
|
45376
46246
|
createdAt?: Maybe<Scalars['String']['output']>;
|
|
45377
46247
|
createdBy?: Maybe<ExternalUser>;
|
|
46248
|
+
description?: Maybe<Scalars['String']['output']>;
|
|
45378
46249
|
displayName?: Maybe<Scalars['String']['output']>;
|
|
45379
46250
|
entityExtendedValues?: Maybe<Array<Maybe<ExternalEntityExtendedValue>>>;
|
|
45380
46251
|
externalId?: Maybe<Scalars['String']['output']>;
|
|
@@ -48692,6 +49563,14 @@ export declare type GraphIntegrationCreateDataConnectorConnectionInput = {
|
|
|
48692
49563
|
contextAri: Scalars['ID']['input'];
|
|
48693
49564
|
productAri: Scalars['ID']['input'];
|
|
48694
49565
|
};
|
|
49566
|
+
export declare type GraphIntegrationCreateSkillInput = {
|
|
49567
|
+
contextAri: Scalars['ID']['input'];
|
|
49568
|
+
description: Scalars['String']['input'];
|
|
49569
|
+
displayName: Scalars['String']['input'];
|
|
49570
|
+
instructions: Scalars['String']['input'];
|
|
49571
|
+
name: Scalars['String']['input'];
|
|
49572
|
+
tools?: InputMaybe<Array<GraphIntegrationSkillToolInput>>;
|
|
49573
|
+
};
|
|
48695
49574
|
export declare type GraphIntegrationDataConnector = {
|
|
48696
49575
|
__typename?: 'GraphIntegrationDataConnector';
|
|
48697
49576
|
connectorKey: Scalars['String']['output'];
|
|
@@ -48715,6 +49594,10 @@ export declare type GraphIntegrationDeleteDataConnectorConnectionInput = {
|
|
|
48715
49594
|
connectorProviderKey: Scalars['String']['input'];
|
|
48716
49595
|
contextAri: Scalars['ID']['input'];
|
|
48717
49596
|
};
|
|
49597
|
+
export declare type GraphIntegrationDeleteSkillInput = {
|
|
49598
|
+
contextAri: Scalars['ID']['input'];
|
|
49599
|
+
skillAri: Scalars['ID']['input'];
|
|
49600
|
+
};
|
|
48718
49601
|
export declare type GraphIntegrationDirectoryFilterDimension = {
|
|
48719
49602
|
__typename?: 'GraphIntegrationDirectoryFilterDimension';
|
|
48720
49603
|
displayName: Scalars['String']['output'];
|
|
@@ -49104,18 +49987,31 @@ export declare type GraphIntegrationSkillMetadata = {
|
|
|
49104
49987
|
tools: Array<GraphIntegrationSkillTool>;
|
|
49105
49988
|
version: Scalars['String']['output'];
|
|
49106
49989
|
};
|
|
49990
|
+
export declare type GraphIntegrationSkillMutationPayload = Payload & {
|
|
49991
|
+
__typename?: 'GraphIntegrationSkillMutationPayload';
|
|
49992
|
+
errors?: Maybe<Array<MutationError>>;
|
|
49993
|
+
success: Scalars['Boolean']['output'];
|
|
49994
|
+
};
|
|
49107
49995
|
export declare type GraphIntegrationSkillProductItem = GraphIntegrationSkillDimensionItem & {
|
|
49108
49996
|
__typename?: 'GraphIntegrationSkillProductItem';
|
|
49109
49997
|
displayName: Scalars['String']['output'];
|
|
49110
49998
|
iconUrl: Scalars['String']['output'];
|
|
49111
49999
|
id: Scalars['String']['output'];
|
|
49112
50000
|
};
|
|
50001
|
+
export declare enum GraphIntegrationSkillSurface {
|
|
50002
|
+
RovoAgents = "ROVO_AGENTS"
|
|
50003
|
+
}
|
|
49113
50004
|
export declare type GraphIntegrationSkillTool = {
|
|
49114
50005
|
__typename?: 'GraphIntegrationSkillTool';
|
|
49115
50006
|
id: Scalars['String']['output'];
|
|
49116
50007
|
source: GraphIntegrationSkillToolSource;
|
|
49117
50008
|
type: GraphIntegrationSkillToolType;
|
|
49118
50009
|
};
|
|
50010
|
+
export declare type GraphIntegrationSkillToolInput = {
|
|
50011
|
+
id: Scalars['String']['input'];
|
|
50012
|
+
source: GraphIntegrationSkillToolSource;
|
|
50013
|
+
type: GraphIntegrationSkillToolType;
|
|
50014
|
+
};
|
|
49119
50015
|
export declare enum GraphIntegrationSkillToolSource {
|
|
49120
50016
|
IntegrationsService = "INTEGRATIONS_SERVICE"
|
|
49121
50017
|
}
|
|
@@ -49217,6 +50113,15 @@ export declare type GraphIntegrationUpdateDataConnectorConnectionInput = {
|
|
|
49217
50113
|
connectorProviderPayload: Scalars['JSON']['input'];
|
|
49218
50114
|
contextAri: Scalars['ID']['input'];
|
|
49219
50115
|
};
|
|
50116
|
+
export declare type GraphIntegrationUpdateSkillInput = {
|
|
50117
|
+
contextAri: Scalars['ID']['input'];
|
|
50118
|
+
description?: InputMaybe<Scalars['String']['input']>;
|
|
50119
|
+
displayName?: InputMaybe<Scalars['String']['input']>;
|
|
50120
|
+
instructions?: InputMaybe<Scalars['String']['input']>;
|
|
50121
|
+
skillAri: Scalars['ID']['input'];
|
|
50122
|
+
tags?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
50123
|
+
tools?: InputMaybe<Array<GraphIntegrationSkillToolInput>>;
|
|
50124
|
+
};
|
|
49220
50125
|
export declare type GraphIssueAssociatedDesignPayload = Payload & {
|
|
49221
50126
|
__typename?: 'GraphIssueAssociatedDesignPayload';
|
|
49222
50127
|
errors?: Maybe<Array<MutationError>>;
|
|
@@ -106085,6 +106990,7 @@ export declare type GravityViewConfig = {
|
|
|
106085
106990
|
hideEmptyColumns?: Maybe<Scalars['Boolean']['output']>;
|
|
106086
106991
|
hideEmptyGroups?: Maybe<Scalars['Boolean']['output']>;
|
|
106087
106992
|
layoutType?: Maybe<GravityViewLayoutType>;
|
|
106993
|
+
showCardCovers?: Maybe<Scalars['Boolean']['output']>;
|
|
106088
106994
|
sort?: Maybe<Array<GravityViewSort>>;
|
|
106089
106995
|
sortMode?: Maybe<GravityViewSortMode>;
|
|
106090
106996
|
tableColumnSizes?: Maybe<Array<GravityViewTableColumnSize>>;
|
|
@@ -106104,6 +107010,7 @@ export declare type GravityViewConfigInput = {
|
|
|
106104
107010
|
hideEmptyColumns?: InputMaybe<Scalars['Boolean']['input']>;
|
|
106105
107011
|
hideEmptyGroups?: InputMaybe<Scalars['Boolean']['input']>;
|
|
106106
107012
|
layoutType?: InputMaybe<GravityViewLayoutType>;
|
|
107013
|
+
showCardCovers?: InputMaybe<Scalars['Boolean']['input']>;
|
|
106107
107014
|
sort?: InputMaybe<Array<GravityViewSortInput>>;
|
|
106108
107015
|
sortMode?: InputMaybe<GravityViewSortMode>;
|
|
106109
107016
|
tableColumnSizes?: InputMaybe<Array<GravityViewTableColumnSizeInput>>;
|
|
@@ -107523,12 +108430,14 @@ export declare type HelpCenterBrandingColors = {
|
|
|
107523
108430
|
bannerTextColor?: Maybe<Scalars['String']['output']>;
|
|
107524
108431
|
hasTopBarBeenSplit: Scalars['Boolean']['output'];
|
|
107525
108432
|
primary?: Maybe<Scalars['String']['output']>;
|
|
108433
|
+
secondaryColor?: Maybe<Scalars['String']['output']>;
|
|
107526
108434
|
topBarColor?: Maybe<Scalars['String']['output']>;
|
|
107527
108435
|
topBarTextColor?: Maybe<Scalars['String']['output']>;
|
|
107528
108436
|
};
|
|
107529
108437
|
export declare type HelpCenterBrandingColorsInput = {
|
|
107530
108438
|
bannerTextColor?: InputMaybe<Scalars['String']['input']>;
|
|
107531
108439
|
primary?: InputMaybe<Scalars['String']['input']>;
|
|
108440
|
+
secondaryColor?: InputMaybe<Scalars['String']['input']>;
|
|
107532
108441
|
topBarColor?: InputMaybe<Scalars['String']['input']>;
|
|
107533
108442
|
topBarTextColor?: InputMaybe<Scalars['String']['input']>;
|
|
107534
108443
|
};
|
|
@@ -113036,14 +113945,20 @@ export declare type JiraBoardView = JiraView & Node & {
|
|
|
113036
113945
|
canArchiveIssues?: Maybe<Scalars['Boolean']['output']>;
|
|
113037
113946
|
canAssignIssues?: Maybe<Scalars['Boolean']['output']>;
|
|
113038
113947
|
canConfigureStatusColumnMapping?: Maybe<Scalars['Boolean']['output']>;
|
|
113948
|
+
canCreateStatuses?: Maybe<Scalars['Boolean']['output']>;
|
|
113949
|
+
canDeleteStatuses?: Maybe<Scalars['Boolean']['output']>;
|
|
113039
113950
|
canEditIssues?: Maybe<Scalars['Boolean']['output']>;
|
|
113951
|
+
canInlineCreateStatusColumns?: Maybe<Scalars['Boolean']['output']>;
|
|
113952
|
+
canInlineDeleteStatusColumns?: Maybe<Scalars['Boolean']['output']>;
|
|
113040
113953
|
canInlineEditStatusColumns?: Maybe<Scalars['Boolean']['output']>;
|
|
113041
113954
|
canInlineEditTransitionAgents?: Maybe<Scalars['Boolean']['output']>;
|
|
113955
|
+
canInlineRenameStatusColumns?: Maybe<Scalars['Boolean']['output']>;
|
|
113042
113956
|
canManageSprints?: Maybe<Scalars['Boolean']['output']>;
|
|
113043
113957
|
canManageStatuses?: Maybe<Scalars['Boolean']['output']>;
|
|
113044
113958
|
canMoveIssueBetweenSwimlanes?: Maybe<Scalars['Boolean']['output']>;
|
|
113045
113959
|
canMoveIssuesBetweenSwimlanes?: Maybe<Scalars['Boolean']['output']>;
|
|
113046
113960
|
canPublishViewConfig?: Maybe<Scalars['Boolean']['output']>;
|
|
113961
|
+
canRenameStatuses?: Maybe<Scalars['Boolean']['output']>;
|
|
113047
113962
|
canScheduleIssues?: Maybe<Scalars['Boolean']['output']>;
|
|
113048
113963
|
canTransitionIssues?: Maybe<Scalars['Boolean']['output']>;
|
|
113049
113964
|
cardOptions?: Maybe<JiraBoardViewCardOptionConnection>;
|
|
@@ -113366,9 +114281,11 @@ export declare type JiraBoardViewStatusColumn = JiraBoardViewColumn & Node & {
|
|
|
113366
114281
|
id: Scalars['ID']['output'];
|
|
113367
114282
|
mappedStatuses?: Maybe<JiraBoardViewStatusConnection>;
|
|
113368
114283
|
mappedWorkflows?: Maybe<JiraBoardViewWorkflowConnection>;
|
|
114284
|
+
maximumIssueCount?: Maybe<Scalars['Int']['output']>;
|
|
113369
114285
|
name?: Maybe<Scalars['String']['output']>;
|
|
113370
114286
|
simpleTransitions?: Maybe<JiraTransitionConnection>;
|
|
113371
114287
|
statuses?: Maybe<Array<Maybe<JiraStatus>>>;
|
|
114288
|
+
totalIssueCount?: Maybe<Scalars['Int']['output']>;
|
|
113372
114289
|
totalTransitionCount?: Maybe<Scalars['Int']['output']>;
|
|
113373
114290
|
transitionAgents?: Maybe<Array<JiraTransitionAgent>>;
|
|
113374
114291
|
workflows?: Maybe<JiraTransitionConnection>;
|
|
@@ -113385,12 +114302,16 @@ export declare type JiraBoardViewStatusColumnSimpleTransitionsArgs = {
|
|
|
113385
114302
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
113386
114303
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
113387
114304
|
};
|
|
114305
|
+
export declare type JiraBoardViewStatusColumnTotalIssueCountArgs = {
|
|
114306
|
+
settings?: InputMaybe<JiraBoardViewSettings>;
|
|
114307
|
+
};
|
|
113388
114308
|
export declare type JiraBoardViewStatusColumnWorkflowsArgs = {
|
|
113389
114309
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
113390
114310
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
113391
114311
|
};
|
|
113392
114312
|
export declare type JiraBoardViewStatusColumnMapping = {
|
|
113393
114313
|
id?: InputMaybe<Scalars['ID']['input']>;
|
|
114314
|
+
maximumIssueCount?: InputMaybe<Scalars['Int']['input']>;
|
|
113394
114315
|
name: Scalars['String']['input'];
|
|
113395
114316
|
statusIds: Array<Scalars['ID']['input']>;
|
|
113396
114317
|
};
|
|
@@ -114797,6 +115718,7 @@ export declare type JiraCmdbStatusType = {
|
|
|
114797
115718
|
};
|
|
114798
115719
|
export declare enum JiraCollapsibleSection {
|
|
114799
115720
|
Activity = "ACTIVITY",
|
|
115721
|
+
AiPanelServicedesk = "AI_PANEL_SERVICEDESK",
|
|
114800
115722
|
Attachments = "ATTACHMENTS",
|
|
114801
115723
|
ChildWorkItem = "CHILD_WORK_ITEM",
|
|
114802
115724
|
Description = "DESCRIPTION",
|
|
@@ -115632,6 +116554,17 @@ export declare type JiraCreateCalendarIssuePayload = Payload & {
|
|
|
115632
116554
|
issueV2?: Maybe<JiraScenarioIssueLike>;
|
|
115633
116555
|
success: Scalars['Boolean']['output'];
|
|
115634
116556
|
};
|
|
116557
|
+
export declare type JiraCreateCategoryOptionInput = {
|
|
116558
|
+
color?: InputMaybe<JiraOptionColorInput>;
|
|
116559
|
+
name: Scalars['String']['input'];
|
|
116560
|
+
projectId: Scalars['ID']['input'];
|
|
116561
|
+
};
|
|
116562
|
+
export declare type JiraCreateCategoryOptionPayload = Payload & {
|
|
116563
|
+
__typename?: 'JiraCreateCategoryOptionPayload';
|
|
116564
|
+
createdCategoryOption?: Maybe<JiraOption>;
|
|
116565
|
+
errors?: Maybe<Array<MutationError>>;
|
|
116566
|
+
success: Scalars['Boolean']['output'];
|
|
116567
|
+
};
|
|
115635
116568
|
export declare type JiraCreateCustomBackgroundInput = {
|
|
115636
116569
|
altText: Scalars['String']['input'];
|
|
115637
116570
|
dominantColor?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -117527,6 +118460,7 @@ export declare type JiraFieldScheme = Node & {
|
|
|
117527
118460
|
isDefault?: Maybe<Scalars['Boolean']['output']>;
|
|
117528
118461
|
name?: Maybe<Scalars['String']['output']>;
|
|
117529
118462
|
projectsCount?: Maybe<Scalars['Int']['output']>;
|
|
118463
|
+
requiredOnIssueTypes?: Maybe<JiraIssueTypeConnection>;
|
|
117530
118464
|
schemeId?: Maybe<Scalars['ID']['output']>;
|
|
117531
118465
|
};
|
|
117532
118466
|
export declare type JiraFieldSchemeAssociatedIssueTypesArgs = {
|
|
@@ -117544,6 +118478,11 @@ export declare type JiraFieldSchemeAvailableProjectsArgs = {
|
|
|
117544
118478
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
117545
118479
|
input?: InputMaybe<JiraAvailableProjectSearchInput>;
|
|
117546
118480
|
};
|
|
118481
|
+
export declare type JiraFieldSchemeRequiredOnIssueTypesArgs = {
|
|
118482
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
118483
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
118484
|
+
input?: InputMaybe<JiraFieldSchemeRequiredOnIssueTypesInput>;
|
|
118485
|
+
};
|
|
117547
118486
|
export declare type JiraFieldSchemeAssociatedField = {
|
|
117548
118487
|
__typename?: 'JiraFieldSchemeAssociatedField';
|
|
117549
118488
|
field?: Maybe<JiraField>;
|
|
@@ -117590,6 +118529,9 @@ export declare type JiraFieldSchemePayload = Payload & {
|
|
|
117590
118529
|
fieldScheme?: Maybe<JiraFieldScheme>;
|
|
117591
118530
|
success: Scalars['Boolean']['output'];
|
|
117592
118531
|
};
|
|
118532
|
+
export declare type JiraFieldSchemeRequiredOnIssueTypesInput = {
|
|
118533
|
+
nameFilter?: InputMaybe<Scalars['String']['input']>;
|
|
118534
|
+
};
|
|
117593
118535
|
export declare type JiraFieldSchemeSourceInput = {
|
|
117594
118536
|
sourceFieldConfigurationSchemeId?: InputMaybe<Scalars['ID']['input']>;
|
|
117595
118537
|
sourceFieldSchemeId?: InputMaybe<Scalars['ID']['input']>;
|
|
@@ -121529,6 +122471,7 @@ export declare enum JiraIssueSearchOperationScope {
|
|
|
121529
122471
|
NinProject = "NIN_PROJECT",
|
|
121530
122472
|
NinProjectSchemaRefactor = "NIN_PROJECT_SCHEMA_REFACTOR",
|
|
121531
122473
|
NinProjectShadowRequest = "NIN_PROJECT_SHADOW_REQUEST",
|
|
122474
|
+
TimelineBoard = "TIMELINE_BOARD",
|
|
121532
122475
|
TimelineProject = "TIMELINE_PROJECT"
|
|
121533
122476
|
}
|
|
121534
122477
|
export declare type JiraIssueSearchOptions = {
|
|
@@ -125250,6 +126193,7 @@ export declare enum JiraNavigationItemTypeKey {
|
|
|
125250
126193
|
Inbox = "INBOX",
|
|
125251
126194
|
Incidents = "INCIDENTS",
|
|
125252
126195
|
Issues = "ISSUES",
|
|
126196
|
+
Knowledge = "KNOWLEDGE",
|
|
125253
126197
|
List = "LIST",
|
|
125254
126198
|
OnCall = "ON_CALL",
|
|
125255
126199
|
Pages = "PAGES",
|
|
@@ -126921,6 +127865,7 @@ export declare type JiraProject = Node & {
|
|
|
126921
127865
|
category?: Maybe<JiraProjectCategory>;
|
|
126922
127866
|
classificationTags: Array<Scalars['String']['output']>;
|
|
126923
127867
|
cloudId: Scalars['ID']['output'];
|
|
127868
|
+
components?: Maybe<JiraComponentConnection>;
|
|
126924
127869
|
conditionalFormattingRules?: Maybe<JiraFormattingRuleConnection>;
|
|
126925
127870
|
created?: Maybe<Scalars['DateTime']['output']>;
|
|
126926
127871
|
csmConversationType?: Maybe<JiraIssueType>;
|
|
@@ -126985,6 +127930,7 @@ export declare type JiraProject = Node & {
|
|
|
126985
127930
|
reportCategories?: Maybe<JiraReportCategoryConnection>;
|
|
126986
127931
|
repositories?: Maybe<GraphStoreSimplifiedProjectAssociatedRepoConnection>;
|
|
126987
127932
|
requestTypes?: Maybe<JiraServiceManagementRequestTypeConnection>;
|
|
127933
|
+
requiredOnIssueTypes?: Maybe<JiraIssueTypeConnection>;
|
|
126988
127934
|
roles?: Maybe<JiraRoleConnection>;
|
|
126989
127935
|
schemeAssociatedFields?: Maybe<JiraFieldSchemeAssociatedFieldsConnection>;
|
|
126990
127936
|
selectedDeploymentAppsProperty?: Maybe<Array<JiraDeploymentApp>>;
|
|
@@ -127053,6 +127999,13 @@ export declare type JiraProjectBoardsArgs = {
|
|
|
127053
127999
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
127054
128000
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
127055
128001
|
};
|
|
128002
|
+
export declare type JiraProjectComponentsArgs = {
|
|
128003
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
128004
|
+
before?: InputMaybe<Scalars['String']['input']>;
|
|
128005
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
128006
|
+
last?: InputMaybe<Scalars['Int']['input']>;
|
|
128007
|
+
searchBy?: InputMaybe<Scalars['String']['input']>;
|
|
128008
|
+
};
|
|
127056
128009
|
export declare type JiraProjectConditionalFormattingRulesArgs = {
|
|
127057
128010
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
127058
128011
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
@@ -127161,6 +128114,11 @@ export declare type JiraProjectRequestTypesArgs = {
|
|
|
127161
128114
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
127162
128115
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
127163
128116
|
};
|
|
128117
|
+
export declare type JiraProjectRequiredOnIssueTypesArgs = {
|
|
128118
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
128119
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
128120
|
+
input?: InputMaybe<JiraProjectRequiredOnIssueTypesInput>;
|
|
128121
|
+
};
|
|
127164
128122
|
export declare type JiraProjectRolesArgs = {
|
|
127165
128123
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
127166
128124
|
before?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -127809,6 +128767,9 @@ export declare enum JiraProjectRecommendationType {
|
|
|
127809
128767
|
InviterActivity = "INVITER_ACTIVITY",
|
|
127810
128768
|
TenantActivity = "TENANT_ACTIVITY"
|
|
127811
128769
|
}
|
|
128770
|
+
export declare type JiraProjectRequiredOnIssueTypesInput = {
|
|
128771
|
+
nameFilter?: InputMaybe<Scalars['String']['input']>;
|
|
128772
|
+
};
|
|
127812
128773
|
export declare type JiraProjectRoleActorLogTableEntry = {
|
|
127813
128774
|
__typename?: 'JiraProjectRoleActorLogTableEntry';
|
|
127814
128775
|
executedBy?: Maybe<User>;
|
|
@@ -128286,6 +129247,7 @@ export declare type JiraQuery = {
|
|
|
128286
129247
|
jiraWorkItemJourneys?: Maybe<JiraJourneyConnection>;
|
|
128287
129248
|
jira_recommendedAgents?: Maybe<JiraActorConnection>;
|
|
128288
129249
|
jira_semanticAgentRecommender?: Maybe<JiraSemanticAgentRecommenderConnection>;
|
|
129250
|
+
jira_semanticAgentRecommenderV2?: Maybe<JiraActorConnection>;
|
|
128289
129251
|
jpdDeliveryIssueLinkTypeId?: Maybe<Scalars['ID']['output']>;
|
|
128290
129252
|
jpdGlobalViewFields?: Maybe<JiraPolarisGlobalViewFields>;
|
|
128291
129253
|
jqlBuilder?: Maybe<JiraJqlBuilder>;
|
|
@@ -129154,6 +130116,12 @@ export declare type JiraQueryJira_SemanticAgentRecommenderArgs = {
|
|
|
129154
130116
|
text: Scalars['String']['input'];
|
|
129155
130117
|
threshold?: InputMaybe<Scalars['Float']['input']>;
|
|
129156
130118
|
};
|
|
130119
|
+
export declare type JiraQueryJira_SemanticAgentRecommenderV2Args = {
|
|
130120
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
130121
|
+
cloudId: Scalars['ID']['input'];
|
|
130122
|
+
contextAri: Scalars['ID']['input'];
|
|
130123
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
130124
|
+
};
|
|
129157
130125
|
export declare type JiraQueryJpdDeliveryIssueLinkTypeIdArgs = {
|
|
129158
130126
|
cloudId: Scalars['ID']['input'];
|
|
129159
130127
|
};
|
|
@@ -129842,7 +130810,6 @@ export declare type JiraRedactionSortInput = {
|
|
|
129842
130810
|
export declare type JiraRelatedLinkSuggestionConnection = {
|
|
129843
130811
|
__typename?: 'JiraRelatedLinkSuggestionConnection';
|
|
129844
130812
|
edges?: Maybe<Array<Maybe<JiraRelatedLinkSuggestionEdge>>>;
|
|
129845
|
-
errors?: Maybe<Array<QueryError>>;
|
|
129846
130813
|
pageInfo: PageInfo;
|
|
129847
130814
|
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
129848
130815
|
};
|
|
@@ -130358,7 +131325,7 @@ export declare type JiraRemoveIssueFromSprintInput = {
|
|
|
130358
131325
|
boardId: Scalars['ID']['input'];
|
|
130359
131326
|
issueId: Scalars['ID']['input'];
|
|
130360
131327
|
};
|
|
130361
|
-
export declare type JiraRemoveIssueFromSprintPayload = {
|
|
131328
|
+
export declare type JiraRemoveIssueFromSprintPayload = Payload & {
|
|
130362
131329
|
__typename?: 'JiraRemoveIssueFromSprintPayload';
|
|
130363
131330
|
errors?: Maybe<Array<MutationError>>;
|
|
130364
131331
|
jiraView?: Maybe<JiraViewResult>;
|
|
@@ -131525,6 +132492,44 @@ export declare type JiraServiceManagementBulkCreateRequestTypeFromTemplateInput
|
|
|
131525
132492
|
createRequestTypeFromTemplateInputItems: Array<JiraServiceManagementCreateRequestTypeFromTemplateInput>;
|
|
131526
132493
|
projectId: Scalars['ID']['input'];
|
|
131527
132494
|
};
|
|
132495
|
+
export declare type JiraServiceManagementChannelSource = {
|
|
132496
|
+
__typename?: 'JiraServiceManagementChannelSource';
|
|
132497
|
+
displayName?: Maybe<Scalars['String']['output']>;
|
|
132498
|
+
id: Scalars['ID']['output'];
|
|
132499
|
+
};
|
|
132500
|
+
export declare type JiraServiceManagementChannelSourceConnection = {
|
|
132501
|
+
__typename?: 'JiraServiceManagementChannelSourceConnection';
|
|
132502
|
+
edges?: Maybe<Array<Maybe<JiraServiceManagementChannelSourceEdge>>>;
|
|
132503
|
+
pageInfo: PageInfo;
|
|
132504
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
132505
|
+
};
|
|
132506
|
+
export declare type JiraServiceManagementChannelSourceEdge = {
|
|
132507
|
+
__typename?: 'JiraServiceManagementChannelSourceEdge';
|
|
132508
|
+
cursor: Scalars['String']['output'];
|
|
132509
|
+
node?: Maybe<JiraServiceManagementChannelSource>;
|
|
132510
|
+
};
|
|
132511
|
+
export declare type JiraServiceManagementChannelSourceField = JiraIssueField & JiraIssueFieldConfiguration & JiraListRowField & JiraUserIssueFieldConfiguration & Node & {
|
|
132512
|
+
__typename?: 'JiraServiceManagementChannelSourceField';
|
|
132513
|
+
aliasFieldId?: Maybe<Scalars['ID']['output']>;
|
|
132514
|
+
channelSources?: Maybe<JiraServiceManagementChannelSourceConnection>;
|
|
132515
|
+
description?: Maybe<Scalars['String']['output']>;
|
|
132516
|
+
fieldConfig?: Maybe<JiraFieldConfig>;
|
|
132517
|
+
fieldId: Scalars['String']['output'];
|
|
132518
|
+
fieldOperations?: Maybe<JiraFieldOperation>;
|
|
132519
|
+
hasValue?: Maybe<Scalars['Boolean']['output']>;
|
|
132520
|
+
id: Scalars['ID']['output'];
|
|
132521
|
+
isEditableInIssueTransition?: Maybe<Scalars['Boolean']['output']>;
|
|
132522
|
+
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
132523
|
+
isSearchableInJql?: Maybe<Scalars['Boolean']['output']>;
|
|
132524
|
+
issue?: Maybe<JiraIssue>;
|
|
132525
|
+
name: Scalars['String']['output'];
|
|
132526
|
+
type: Scalars['String']['output'];
|
|
132527
|
+
userFieldConfig?: Maybe<JiraUserFieldConfig>;
|
|
132528
|
+
};
|
|
132529
|
+
export declare type JiraServiceManagementChannelSourceFieldChannelSourcesArgs = {
|
|
132530
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
132531
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
132532
|
+
};
|
|
131528
132533
|
export declare type JiraServiceManagementComment = JiraComment & Node & {
|
|
131529
132534
|
__typename?: 'JiraServiceManagementComment';
|
|
131530
132535
|
author?: Maybe<User>;
|
|
@@ -132028,6 +133033,7 @@ export declare type JiraServiceManagementPortal = {
|
|
|
132028
133033
|
projectKey: Scalars['String']['output'];
|
|
132029
133034
|
};
|
|
132030
133035
|
export declare enum JiraServiceManagementPractice {
|
|
133036
|
+
CaseManagement = "CASE_MANAGEMENT",
|
|
132031
133037
|
ChangeManagement = "CHANGE_MANAGEMENT",
|
|
132032
133038
|
DeveloperEscalation = "DEVELOPER_ESCALATION",
|
|
132033
133039
|
IncidentManagement = "INCIDENT_MANAGEMENT",
|
|
@@ -132346,6 +133352,46 @@ export declare type JiraServiceManagementSentimentFieldPayload = Payload & {
|
|
|
132346
133352
|
field?: Maybe<JiraServiceManagementSentimentField>;
|
|
132347
133353
|
success: Scalars['Boolean']['output'];
|
|
132348
133354
|
};
|
|
133355
|
+
export declare type JiraServiceManagementSla = {
|
|
133356
|
+
__typename?: 'JiraServiceManagementSla';
|
|
133357
|
+
completedCycles?: Maybe<JiraServiceManagementSlaCompletedCycleConnection>;
|
|
133358
|
+
displayFormat?: Maybe<Scalars['String']['output']>;
|
|
133359
|
+
error?: Maybe<JiraServiceManagementSlaError>;
|
|
133360
|
+
goalView?: Maybe<JiraServiceManagementSlaGoalView>;
|
|
133361
|
+
ongoingCycle?: Maybe<JiraServiceManagementSlaOngoingCycle>;
|
|
133362
|
+
timeMetricId?: Maybe<Scalars['String']['output']>;
|
|
133363
|
+
timeMetricName?: Maybe<Scalars['String']['output']>;
|
|
133364
|
+
timelineEvents?: Maybe<JiraServiceManagementSlaTimelineEventConnection>;
|
|
133365
|
+
};
|
|
133366
|
+
export declare type JiraServiceManagementSlaCompletedCyclesArgs = {
|
|
133367
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
133368
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
133369
|
+
};
|
|
133370
|
+
export declare type JiraServiceManagementSlaTimelineEventsArgs = {
|
|
133371
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
133372
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
133373
|
+
};
|
|
133374
|
+
export declare type JiraServiceManagementSlaCalendar = {
|
|
133375
|
+
__typename?: 'JiraServiceManagementSlaCalendar';
|
|
133376
|
+
calendarId?: Maybe<Scalars['String']['output']>;
|
|
133377
|
+
holidays?: Maybe<JiraServiceManagementSlaHolidayConnection>;
|
|
133378
|
+
kind?: Maybe<JiraServiceManagementSlaCalendarKind>;
|
|
133379
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
133380
|
+
timezone?: Maybe<Scalars['String']['output']>;
|
|
133381
|
+
workingTimes?: Maybe<JiraServiceManagementSlaWorkingTimeConnection>;
|
|
133382
|
+
};
|
|
133383
|
+
export declare type JiraServiceManagementSlaCalendarHolidaysArgs = {
|
|
133384
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
133385
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
133386
|
+
};
|
|
133387
|
+
export declare type JiraServiceManagementSlaCalendarWorkingTimesArgs = {
|
|
133388
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
133389
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
133390
|
+
};
|
|
133391
|
+
export declare enum JiraServiceManagementSlaCalendarKind {
|
|
133392
|
+
Custom = "CUSTOM",
|
|
133393
|
+
Standard = "STANDARD"
|
|
133394
|
+
}
|
|
132349
133395
|
export declare type JiraServiceManagementSlaCompleteGoal = {
|
|
132350
133396
|
__typename?: 'JiraServiceManagementSlaCompleteGoal';
|
|
132351
133397
|
breachTime?: Maybe<Scalars['String']['output']>;
|
|
@@ -132355,6 +133401,76 @@ export declare type JiraServiceManagementSlaCompleteGoal = {
|
|
|
132355
133401
|
startTime?: Maybe<Scalars['String']['output']>;
|
|
132356
133402
|
stopTime?: Maybe<Scalars['String']['output']>;
|
|
132357
133403
|
};
|
|
133404
|
+
export declare type JiraServiceManagementSlaCompletedCycle = {
|
|
133405
|
+
__typename?: 'JiraServiceManagementSlaCompletedCycle';
|
|
133406
|
+
breachTime?: Maybe<Scalars['DateTime']['output']>;
|
|
133407
|
+
breached?: Maybe<Scalars['Boolean']['output']>;
|
|
133408
|
+
calendarName?: Maybe<Scalars['String']['output']>;
|
|
133409
|
+
elapsed?: Maybe<Scalars['String']['output']>;
|
|
133410
|
+
goalDuration?: Maybe<Scalars['String']['output']>;
|
|
133411
|
+
remaining?: Maybe<Scalars['String']['output']>;
|
|
133412
|
+
startTime?: Maybe<Scalars['DateTime']['output']>;
|
|
133413
|
+
stopTime?: Maybe<Scalars['DateTime']['output']>;
|
|
133414
|
+
};
|
|
133415
|
+
export declare type JiraServiceManagementSlaCompletedCycleConnection = {
|
|
133416
|
+
__typename?: 'JiraServiceManagementSlaCompletedCycleConnection';
|
|
133417
|
+
edges?: Maybe<Array<Maybe<JiraServiceManagementSlaCompletedCycleEdge>>>;
|
|
133418
|
+
pageInfo: PageInfo;
|
|
133419
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
133420
|
+
};
|
|
133421
|
+
export declare type JiraServiceManagementSlaCompletedCycleEdge = {
|
|
133422
|
+
__typename?: 'JiraServiceManagementSlaCompletedCycleEdge';
|
|
133423
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
133424
|
+
node?: Maybe<JiraServiceManagementSlaCompletedCycle>;
|
|
133425
|
+
};
|
|
133426
|
+
export declare enum JiraServiceManagementSlaDayOfWeek {
|
|
133427
|
+
Friday = "FRIDAY",
|
|
133428
|
+
Monday = "MONDAY",
|
|
133429
|
+
Saturday = "SATURDAY",
|
|
133430
|
+
Sunday = "SUNDAY",
|
|
133431
|
+
Thursday = "THURSDAY",
|
|
133432
|
+
Tuesday = "TUESDAY",
|
|
133433
|
+
Wednesday = "WEDNESDAY"
|
|
133434
|
+
}
|
|
133435
|
+
export declare enum JiraServiceManagementSlaEmergencyLevel {
|
|
133436
|
+
Breached = "BREACHED",
|
|
133437
|
+
Important = "IMPORTANT",
|
|
133438
|
+
Urgent = "URGENT"
|
|
133439
|
+
}
|
|
133440
|
+
export declare type JiraServiceManagementSlaError = {
|
|
133441
|
+
__typename?: 'JiraServiceManagementSlaError';
|
|
133442
|
+
errorCode?: Maybe<JiraServiceManagementSlaErrorCode>;
|
|
133443
|
+
goalId?: Maybe<Scalars['String']['output']>;
|
|
133444
|
+
timeMetricId?: Maybe<Scalars['String']['output']>;
|
|
133445
|
+
};
|
|
133446
|
+
export declare enum JiraServiceManagementSlaErrorCode {
|
|
133447
|
+
GoalNotFound = "GOAL_NOT_FOUND",
|
|
133448
|
+
TimeMetricsNotFound = "TIME_METRICS_NOT_FOUND",
|
|
133449
|
+
Unrecognized = "UNRECOGNIZED"
|
|
133450
|
+
}
|
|
133451
|
+
export declare type JiraServiceManagementSlaField = JiraIssueField & JiraIssueFieldConfiguration & JiraListRowField & Node & {
|
|
133452
|
+
__typename?: 'JiraServiceManagementSlaField';
|
|
133453
|
+
aliasFieldId?: Maybe<Scalars['ID']['output']>;
|
|
133454
|
+
description?: Maybe<Scalars['String']['output']>;
|
|
133455
|
+
fieldConfig?: Maybe<JiraFieldConfig>;
|
|
133456
|
+
fieldId: Scalars['String']['output'];
|
|
133457
|
+
fieldOperations?: Maybe<JiraFieldOperation>;
|
|
133458
|
+
hasValue?: Maybe<Scalars['Boolean']['output']>;
|
|
133459
|
+
id: Scalars['ID']['output'];
|
|
133460
|
+
isEditableInIssueTransition?: Maybe<Scalars['Boolean']['output']>;
|
|
133461
|
+
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
133462
|
+
isSearchableInJql?: Maybe<Scalars['Boolean']['output']>;
|
|
133463
|
+
issue?: Maybe<JiraIssue>;
|
|
133464
|
+
name: Scalars['String']['output'];
|
|
133465
|
+
sla?: Maybe<JiraServiceManagementSla>;
|
|
133466
|
+
type: Scalars['String']['output'];
|
|
133467
|
+
};
|
|
133468
|
+
export declare type JiraServiceManagementSlaGoal = {
|
|
133469
|
+
__typename?: 'JiraServiceManagementSlaGoal';
|
|
133470
|
+
calendar?: Maybe<JiraServiceManagementSlaCalendar>;
|
|
133471
|
+
duration?: Maybe<Scalars['String']['output']>;
|
|
133472
|
+
goalId?: Maybe<Scalars['String']['output']>;
|
|
133473
|
+
};
|
|
132358
133474
|
export declare type JiraServiceManagementSlaGoalDetailedView = {
|
|
132359
133475
|
__typename?: 'JiraServiceManagementSlaGoalDetailedView';
|
|
132360
133476
|
active?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -132377,6 +133493,33 @@ export declare type JiraServiceManagementSlaGoalDetailedView = {
|
|
|
132377
133493
|
startTime?: Maybe<Scalars['String']['output']>;
|
|
132378
133494
|
stopTime?: Maybe<Scalars['String']['output']>;
|
|
132379
133495
|
};
|
|
133496
|
+
export declare type JiraServiceManagementSlaGoalView = {
|
|
133497
|
+
__typename?: 'JiraServiceManagementSlaGoalView';
|
|
133498
|
+
active?: Maybe<Scalars['Boolean']['output']>;
|
|
133499
|
+
calculatedAt?: Maybe<Scalars['String']['output']>;
|
|
133500
|
+
closed?: Maybe<Scalars['Boolean']['output']>;
|
|
133501
|
+
emergencyLevel?: Maybe<JiraServiceManagementSlaEmergencyLevel>;
|
|
133502
|
+
failed?: Maybe<Scalars['Boolean']['output']>;
|
|
133503
|
+
paused?: Maybe<Scalars['Boolean']['output']>;
|
|
133504
|
+
remainingTime?: Maybe<Scalars['String']['output']>;
|
|
133505
|
+
};
|
|
133506
|
+
export declare type JiraServiceManagementSlaHoliday = {
|
|
133507
|
+
__typename?: 'JiraServiceManagementSlaHoliday';
|
|
133508
|
+
date?: Maybe<Scalars['DateTime']['output']>;
|
|
133509
|
+
holidayId?: Maybe<Scalars['String']['output']>;
|
|
133510
|
+
recurring?: Maybe<Scalars['Boolean']['output']>;
|
|
133511
|
+
};
|
|
133512
|
+
export declare type JiraServiceManagementSlaHolidayConnection = {
|
|
133513
|
+
__typename?: 'JiraServiceManagementSlaHolidayConnection';
|
|
133514
|
+
edges?: Maybe<Array<Maybe<JiraServiceManagementSlaHolidayEdge>>>;
|
|
133515
|
+
pageInfo: PageInfo;
|
|
133516
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
133517
|
+
};
|
|
133518
|
+
export declare type JiraServiceManagementSlaHolidayEdge = {
|
|
133519
|
+
__typename?: 'JiraServiceManagementSlaHolidayEdge';
|
|
133520
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
133521
|
+
node?: Maybe<JiraServiceManagementSlaHoliday>;
|
|
133522
|
+
};
|
|
132380
133523
|
export declare type JiraServiceManagementSlaIssue = {
|
|
132381
133524
|
__typename?: 'JiraServiceManagementSlaIssue';
|
|
132382
133525
|
goalViews?: Maybe<Array<JiraServiceManagementSlaGoalDetailedView>>;
|
|
@@ -132387,6 +133530,69 @@ export declare type JiraServiceManagementSlaIssueResult = {
|
|
|
132387
133530
|
errors?: Maybe<Array<QueryError>>;
|
|
132388
133531
|
slaIssue?: Maybe<JiraServiceManagementSlaIssue>;
|
|
132389
133532
|
};
|
|
133533
|
+
export declare type JiraServiceManagementSlaOngoingCycle = {
|
|
133534
|
+
__typename?: 'JiraServiceManagementSlaOngoingCycle';
|
|
133535
|
+
goal?: Maybe<JiraServiceManagementSlaGoal>;
|
|
133536
|
+
paused?: Maybe<Scalars['Boolean']['output']>;
|
|
133537
|
+
startTime?: Maybe<Scalars['DateTime']['output']>;
|
|
133538
|
+
};
|
|
133539
|
+
export declare type JiraServiceManagementSlaTimelineEvent = {
|
|
133540
|
+
__typename?: 'JiraServiceManagementSlaTimelineEvent';
|
|
133541
|
+
datetime?: Maybe<Scalars['DateTime']['output']>;
|
|
133542
|
+
types?: Maybe<JiraServiceManagementSlaTimelineEventTypeConnection>;
|
|
133543
|
+
};
|
|
133544
|
+
export declare type JiraServiceManagementSlaTimelineEventTypesArgs = {
|
|
133545
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
133546
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
133547
|
+
};
|
|
133548
|
+
export declare type JiraServiceManagementSlaTimelineEventConnection = {
|
|
133549
|
+
__typename?: 'JiraServiceManagementSlaTimelineEventConnection';
|
|
133550
|
+
edges?: Maybe<Array<Maybe<JiraServiceManagementSlaTimelineEventEdge>>>;
|
|
133551
|
+
pageInfo: PageInfo;
|
|
133552
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
133553
|
+
};
|
|
133554
|
+
export declare type JiraServiceManagementSlaTimelineEventEdge = {
|
|
133555
|
+
__typename?: 'JiraServiceManagementSlaTimelineEventEdge';
|
|
133556
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
133557
|
+
node?: Maybe<JiraServiceManagementSlaTimelineEvent>;
|
|
133558
|
+
};
|
|
133559
|
+
export declare enum JiraServiceManagementSlaTimelineEventType {
|
|
133560
|
+
Pause = "PAUSE",
|
|
133561
|
+
Restart = "RESTART",
|
|
133562
|
+
Start = "START",
|
|
133563
|
+
Stop = "STOP",
|
|
133564
|
+
Unpause = "UNPAUSE",
|
|
133565
|
+
Unrecognized = "UNRECOGNIZED"
|
|
133566
|
+
}
|
|
133567
|
+
export declare type JiraServiceManagementSlaTimelineEventTypeConnection = {
|
|
133568
|
+
__typename?: 'JiraServiceManagementSlaTimelineEventTypeConnection';
|
|
133569
|
+
edges?: Maybe<Array<Maybe<JiraServiceManagementSlaTimelineEventTypeEdge>>>;
|
|
133570
|
+
pageInfo: PageInfo;
|
|
133571
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
133572
|
+
};
|
|
133573
|
+
export declare type JiraServiceManagementSlaTimelineEventTypeEdge = {
|
|
133574
|
+
__typename?: 'JiraServiceManagementSlaTimelineEventTypeEdge';
|
|
133575
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
133576
|
+
node?: Maybe<JiraServiceManagementSlaTimelineEventType>;
|
|
133577
|
+
};
|
|
133578
|
+
export declare type JiraServiceManagementSlaWorkingTime = {
|
|
133579
|
+
__typename?: 'JiraServiceManagementSlaWorkingTime';
|
|
133580
|
+
end?: Maybe<Scalars['DateTime']['output']>;
|
|
133581
|
+
start?: Maybe<Scalars['DateTime']['output']>;
|
|
133582
|
+
weekday?: Maybe<JiraServiceManagementSlaDayOfWeek>;
|
|
133583
|
+
workingTimeId?: Maybe<Scalars['String']['output']>;
|
|
133584
|
+
};
|
|
133585
|
+
export declare type JiraServiceManagementSlaWorkingTimeConnection = {
|
|
133586
|
+
__typename?: 'JiraServiceManagementSlaWorkingTimeConnection';
|
|
133587
|
+
edges?: Maybe<Array<Maybe<JiraServiceManagementSlaWorkingTimeEdge>>>;
|
|
133588
|
+
pageInfo: PageInfo;
|
|
133589
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
133590
|
+
};
|
|
133591
|
+
export declare type JiraServiceManagementSlaWorkingTimeEdge = {
|
|
133592
|
+
__typename?: 'JiraServiceManagementSlaWorkingTimeEdge';
|
|
133593
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
133594
|
+
node?: Maybe<JiraServiceManagementSlaWorkingTime>;
|
|
133595
|
+
};
|
|
132390
133596
|
export declare type JiraServiceManagementTeamResponder = {
|
|
132391
133597
|
__typename?: 'JiraServiceManagementTeamResponder';
|
|
132392
133598
|
teamId?: Maybe<Scalars['String']['output']>;
|
|
@@ -132623,6 +133829,18 @@ export declare type JiraSetBoardViewGroupByPayload = Payload & {
|
|
|
132623
133829
|
success: Scalars['Boolean']['output'];
|
|
132624
133830
|
view?: Maybe<JiraBoardView>;
|
|
132625
133831
|
};
|
|
133832
|
+
export declare type JiraSetBoardViewStatusColumnIssueCountLimitInput = {
|
|
133833
|
+
columnId: Scalars['ID']['input'];
|
|
133834
|
+
maximumIssueCount?: InputMaybe<Scalars['Int']['input']>;
|
|
133835
|
+
settings?: InputMaybe<JiraBoardViewSettings>;
|
|
133836
|
+
};
|
|
133837
|
+
export declare type JiraSetBoardViewStatusColumnIssueCountLimitPayload = Payload & {
|
|
133838
|
+
__typename?: 'JiraSetBoardViewStatusColumnIssueCountLimitPayload';
|
|
133839
|
+
boardView?: Maybe<JiraBoardView>;
|
|
133840
|
+
column?: Maybe<JiraBoardViewStatusColumn>;
|
|
133841
|
+
errors?: Maybe<Array<MutationError>>;
|
|
133842
|
+
success: Scalars['Boolean']['output'];
|
|
133843
|
+
};
|
|
132626
133844
|
export declare type JiraSetBoardViewStatusColumnMappingCreateStatusInput = {
|
|
132627
133845
|
name: Scalars['String']['input'];
|
|
132628
133846
|
reference: Scalars['ID']['input'];
|
|
@@ -133171,7 +134389,6 @@ export declare type JiraSimilarIssues = {
|
|
|
133171
134389
|
export declare type JiraSimilarWorkItemSuggestionConnection = {
|
|
133172
134390
|
__typename?: 'JiraSimilarWorkItemSuggestionConnection';
|
|
133173
134391
|
edges?: Maybe<Array<Maybe<JiraSimilarWorkItemSuggestionEdge>>>;
|
|
133174
|
-
errors?: Maybe<Array<QueryError>>;
|
|
133175
134392
|
pageInfo: PageInfo;
|
|
133176
134393
|
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
133177
134394
|
};
|
|
@@ -136610,7 +137827,6 @@ export declare type JiraWhiteboardResource = JiraConsolidatedResource & {
|
|
|
136610
137827
|
export declare type JiraWorkBreakdownSuggestionConnection = {
|
|
136611
137828
|
__typename?: 'JiraWorkBreakdownSuggestionConnection';
|
|
136612
137829
|
edges?: Maybe<Array<Maybe<JiraWorkBreakdownSuggestionEdge>>>;
|
|
136613
|
-
errors?: Maybe<Array<QueryError>>;
|
|
136614
137830
|
pageInfo: PageInfo;
|
|
136615
137831
|
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
136616
137832
|
};
|
|
@@ -137784,7 +139000,9 @@ export declare type JpdViewsServiceTimelineConfigInput2 = {
|
|
|
137784
139000
|
};
|
|
137785
139001
|
export declare enum JpdViewsServiceTimelineMode {
|
|
137786
139002
|
Months = "MONTHS",
|
|
137787
|
-
Quarters = "QUARTERS"
|
|
139003
|
+
Quarters = "QUARTERS",
|
|
139004
|
+
Weeks = "WEEKS",
|
|
139005
|
+
Years = "YEARS"
|
|
137788
139006
|
}
|
|
137789
139007
|
export declare enum JpdViewsServiceTodayMarker {
|
|
137790
139008
|
Disabled = "DISABLED",
|
|
@@ -137955,6 +139173,7 @@ export declare type JsmChannelsConditionNode = JsmChannelsPlanNode & {
|
|
|
137955
139173
|
};
|
|
137956
139174
|
export declare enum JsmChannelsConnectionType {
|
|
137957
139175
|
Identitynow = "IDENTITYNOW",
|
|
139176
|
+
Intune = "INTUNE",
|
|
137958
139177
|
Okta = "OKTA"
|
|
137959
139178
|
}
|
|
137960
139179
|
export declare type JsmChannelsConversationsByContainerAriResult = JsmChannelsOrchestratorConversationsConnection | QueryError;
|
|
@@ -137974,10 +139193,11 @@ export declare type JsmChannelsEstablishConnectionInput = {
|
|
|
137974
139193
|
connectionType: JsmChannelsConnectionType;
|
|
137975
139194
|
displayName: Scalars['String']['input'];
|
|
137976
139195
|
exchangeUrl?: InputMaybe<Scalars['String']['input']>;
|
|
137977
|
-
hostUrl
|
|
139196
|
+
hostUrl?: InputMaybe<Scalars['String']['input']>;
|
|
137978
139197
|
profileRetrieverUrl?: InputMaybe<Scalars['String']['input']>;
|
|
137979
139198
|
refreshToken?: InputMaybe<Scalars['String']['input']>;
|
|
137980
139199
|
scopes?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
139200
|
+
tenantId?: InputMaybe<Scalars['String']['input']>;
|
|
137981
139201
|
};
|
|
137982
139202
|
export declare type JsmChannelsEstablishConnectionPayload = Payload & {
|
|
137983
139203
|
__typename?: 'JsmChannelsEstablishConnectionPayload';
|
|
@@ -138055,6 +139275,12 @@ export declare type JsmChannelsJqlEnablementRuleInput = {
|
|
|
138055
139275
|
name?: InputMaybe<Scalars['String']['input']>;
|
|
138056
139276
|
priority: Scalars['Int']['input'];
|
|
138057
139277
|
};
|
|
139278
|
+
export declare type JsmChannelsMsIntuneTaskAgentConfiguration = {
|
|
139279
|
+
__typename?: 'JsmChannelsMsIntuneTaskAgentConfiguration';
|
|
139280
|
+
accountId: Scalars['String']['output'];
|
|
139281
|
+
serviceKey: Scalars['String']['output'];
|
|
139282
|
+
tenantId: Scalars['String']['output'];
|
|
139283
|
+
};
|
|
138058
139284
|
export declare type JsmChannelsOktaTaskAgentConfiguration = {
|
|
138059
139285
|
__typename?: 'JsmChannelsOktaTaskAgentConfiguration';
|
|
138060
139286
|
accountId: Scalars['String']['output'];
|
|
@@ -138210,6 +139436,30 @@ export declare enum JsmChannelsResolutionPlanStepStatus {
|
|
|
138210
139436
|
Pending = "PENDING",
|
|
138211
139437
|
Waiting = "WAITING"
|
|
138212
139438
|
}
|
|
139439
|
+
export declare type JsmChannelsRovoAgent = {
|
|
139440
|
+
__typename?: 'JsmChannelsRovoAgent';
|
|
139441
|
+
agentAri: Scalars['ID']['output'];
|
|
139442
|
+
agentId: Scalars['ID']['output'];
|
|
139443
|
+
channels: Array<JsmChannelsRovoAgentChannel>;
|
|
139444
|
+
description?: Maybe<Scalars['String']['output']>;
|
|
139445
|
+
iconUrl?: Maybe<Scalars['String']['output']>;
|
|
139446
|
+
name: Scalars['String']['output'];
|
|
139447
|
+
};
|
|
139448
|
+
export declare type JsmChannelsRovoAgentChannel = {
|
|
139449
|
+
__typename?: 'JsmChannelsRovoAgentChannel';
|
|
139450
|
+
containerAri: Scalars['ID']['output'];
|
|
139451
|
+
isEnabled: Scalars['Boolean']['output'];
|
|
139452
|
+
type: JsmChannelsRovoAgentChannelType;
|
|
139453
|
+
};
|
|
139454
|
+
export declare enum JsmChannelsRovoAgentChannelType {
|
|
139455
|
+
HelpCenter = "HELP_CENTER",
|
|
139456
|
+
Portal = "PORTAL"
|
|
139457
|
+
}
|
|
139458
|
+
export declare type JsmChannelsRovoAgentsByProjectQueryPayload = {
|
|
139459
|
+
__typename?: 'JsmChannelsRovoAgentsByProjectQueryPayload';
|
|
139460
|
+
rovoAgents: Array<JsmChannelsRovoAgent>;
|
|
139461
|
+
};
|
|
139462
|
+
export declare type JsmChannelsRovoAgentsByProjectResult = JsmChannelsRovoAgentsByProjectQueryPayload | QueryError;
|
|
138213
139463
|
export declare type JsmChannelsRovoServiceAgentConfig = {
|
|
138214
139464
|
__typename?: 'JsmChannelsRovoServiceAgentConfig';
|
|
138215
139465
|
isRovoServiceEnabled: Scalars['Boolean']['output'];
|
|
@@ -138285,7 +139535,7 @@ export declare type JsmChannelsTaskAgent = {
|
|
|
138285
139535
|
displayName: Scalars['String']['output'];
|
|
138286
139536
|
status: JsmChannelsTaskAgentStatus;
|
|
138287
139537
|
};
|
|
138288
|
-
export declare type JsmChannelsTaskAgentConfigurationDetails = JsmChannelsIdentityNowTaskAgentConfiguration | JsmChannelsOktaTaskAgentConfiguration;
|
|
139538
|
+
export declare type JsmChannelsTaskAgentConfigurationDetails = JsmChannelsIdentityNowTaskAgentConfiguration | JsmChannelsMsIntuneTaskAgentConfiguration | JsmChannelsOktaTaskAgentConfiguration;
|
|
138289
139539
|
export declare type JsmChannelsTaskAgentConfigurationInput = {
|
|
138290
139540
|
configuration?: InputMaybe<Scalars['JSON']['input']>;
|
|
138291
139541
|
status: JsmChannelsTaskAgentStatus;
|
|
@@ -138897,6 +140147,11 @@ export declare type JsmConversation = {
|
|
|
138897
140147
|
issueId?: Maybe<Scalars['ID']['output']>;
|
|
138898
140148
|
summary?: Maybe<Scalars['String']['output']>;
|
|
138899
140149
|
};
|
|
140150
|
+
export declare enum JsmConversationActivationState {
|
|
140151
|
+
Disabled = "DISABLED",
|
|
140152
|
+
Enabled = "ENABLED",
|
|
140153
|
+
NotConfigured = "NOT_CONFIGURED"
|
|
140154
|
+
}
|
|
138900
140155
|
export declare type JsmConversationActiveSla = {
|
|
138901
140156
|
__typename?: 'JsmConversationActiveSla';
|
|
138902
140157
|
expiresAt?: Maybe<Scalars['String']['output']>;
|
|
@@ -138982,6 +140237,7 @@ export declare enum JsmConversationMessageSource {
|
|
|
138982
140237
|
}
|
|
138983
140238
|
export declare type JsmConversationSettings = {
|
|
138984
140239
|
__typename?: 'JsmConversationSettings';
|
|
140240
|
+
activationState?: Maybe<JsmConversationActivationState>;
|
|
138985
140241
|
assignedTeam?: Maybe<TeamV2>;
|
|
138986
140242
|
availabilityCriteria?: Maybe<JsmConversationLiveChatAvailabilityCriteria>;
|
|
138987
140243
|
defaultRequestTypeId?: Maybe<Scalars['String']['output']>;
|
|
@@ -138992,6 +140248,7 @@ export declare type JsmConversationSettings = {
|
|
|
138992
140248
|
teamId?: Maybe<Scalars['String']['output']>;
|
|
138993
140249
|
};
|
|
138994
140250
|
export declare type JsmConversationSettingsInput = {
|
|
140251
|
+
activationState?: InputMaybe<JsmConversationActivationState>;
|
|
138995
140252
|
availabilityCriteria?: InputMaybe<JsmConversationLiveChatAvailabilityCriteria>;
|
|
138996
140253
|
defaultRequestTypeId?: InputMaybe<Scalars['String']['input']>;
|
|
138997
140254
|
issueLabel?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -139029,6 +140286,10 @@ export declare enum JsmConversationStatus {
|
|
|
139029
140286
|
Unassigned = "UNASSIGNED"
|
|
139030
140287
|
}
|
|
139031
140288
|
export declare type JsmConversationUpdate = JsmConversation | JsmConversationClaimedConversationMessage | QueryError;
|
|
140289
|
+
export declare type JsmSolutionComposerFollowupTask = {
|
|
140290
|
+
__typename?: 'JsmSolutionComposerFollowupTask';
|
|
140291
|
+
taskType: Scalars['String']['output'];
|
|
140292
|
+
};
|
|
139032
140293
|
export declare type JsmSolutionComposerPlanQueryApi = {
|
|
139033
140294
|
__typename?: 'JsmSolutionComposerPlanQueryApi';
|
|
139034
140295
|
jsmSolutionComposerPlanStatus?: Maybe<JsmSolutionComposerPlanStatusResult>;
|
|
@@ -139042,6 +140303,7 @@ export declare type JsmSolutionComposerPlanStatusMetadata = {
|
|
|
139042
140303
|
};
|
|
139043
140304
|
export declare type JsmSolutionComposerPlanStatusResponse = {
|
|
139044
140305
|
__typename?: 'JsmSolutionComposerPlanStatusResponse';
|
|
140306
|
+
followupTasks?: Maybe<Array<Maybe<JsmSolutionComposerFollowupTask>>>;
|
|
139045
140307
|
id: Scalars['ID']['output'];
|
|
139046
140308
|
metadata?: Maybe<JsmSolutionComposerPlanStatusMetadata>;
|
|
139047
140309
|
projectAri: Scalars['ID']['output'];
|
|
@@ -139616,6 +140878,7 @@ export declare enum KitsuneFieldType {
|
|
|
139616
140878
|
Creator = "CREATOR",
|
|
139617
140879
|
Custom = "CUSTOM",
|
|
139618
140880
|
Customer = "CUSTOMER",
|
|
140881
|
+
Parent = "PARENT",
|
|
139619
140882
|
Reporter = "REPORTER",
|
|
139620
140883
|
SourceCategory = "SOURCE_CATEGORY"
|
|
139621
140884
|
}
|
|
@@ -139667,6 +140930,7 @@ export declare type KitsuneInsight = Node & {
|
|
|
139667
140930
|
externalId?: Maybe<Scalars['ID']['output']>;
|
|
139668
140931
|
id: Scalars['ID']['output'];
|
|
139669
140932
|
jiraIssue?: Maybe<JiraIssue>;
|
|
140933
|
+
nbSnippets: Scalars['Int']['output'];
|
|
139670
140934
|
snippets: KitsuneSnippetConnection;
|
|
139671
140935
|
summary?: Maybe<KitsuneSummary>;
|
|
139672
140936
|
title: Scalars['String']['output'];
|
|
@@ -139716,7 +140980,8 @@ export declare enum KitsuneJobType {
|
|
|
139716
140980
|
ImportFeedback = "IMPORT_FEEDBACK",
|
|
139717
140981
|
ImportOrganization = "IMPORT_ORGANIZATION",
|
|
139718
140982
|
ResyncFeedback = "RESYNC_FEEDBACK",
|
|
139719
|
-
SyncCsmProperties = "SYNC_CSM_PROPERTIES"
|
|
140983
|
+
SyncCsmProperties = "SYNC_CSM_PROPERTIES",
|
|
140984
|
+
SyncCustomer = "SYNC_CUSTOMER"
|
|
139720
140985
|
}
|
|
139721
140986
|
export declare enum KitsuneLogicalOperator {
|
|
139722
140987
|
And = "AND",
|
|
@@ -139822,6 +141087,7 @@ export declare type KitsuneSnippetConnection = KitsuneConnection & {
|
|
|
139822
141087
|
__typename?: 'KitsuneSnippetConnection';
|
|
139823
141088
|
edges: Array<KitsuneSnippetEdge>;
|
|
139824
141089
|
pageInfo: PageInfo;
|
|
141090
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
139825
141091
|
};
|
|
139826
141092
|
export declare type KitsuneSnippetEdge = KitsuneEdge & {
|
|
139827
141093
|
__typename?: 'KitsuneSnippetEdge';
|
|
@@ -140108,6 +141374,7 @@ export declare type KitsuneView = Node & {
|
|
|
140108
141374
|
__typename?: 'KitsuneView';
|
|
140109
141375
|
config?: Maybe<KitsuneViewConfig>;
|
|
140110
141376
|
description?: Maybe<Scalars['String']['output']>;
|
|
141377
|
+
entityType: KitsuneEntityType;
|
|
140111
141378
|
id: Scalars['ID']['output'];
|
|
140112
141379
|
name: Scalars['String']['output'];
|
|
140113
141380
|
type: KitsuneViewType;
|
|
@@ -141180,6 +142447,7 @@ export declare type KnowledgeDiscoveryQueryApiSearchUsersV2Args = {
|
|
|
141180
142447
|
};
|
|
141181
142448
|
export declare type KnowledgeDiscoveryQueryApiSingleUserArgs = {
|
|
141182
142449
|
accountId: Scalars['String']['input'];
|
|
142450
|
+
orgId?: InputMaybe<Scalars['String']['input']>;
|
|
141183
142451
|
requestingUserId: Scalars['String']['input'];
|
|
141184
142452
|
tenantId: Scalars['String']['input'];
|
|
141185
142453
|
};
|
|
@@ -141467,6 +142735,7 @@ export declare type KnowledgeDiscoveryUserManager = {
|
|
|
141467
142735
|
__typename?: 'KnowledgeDiscoveryUserManager';
|
|
141468
142736
|
id?: Maybe<Scalars['String']['output']>;
|
|
141469
142737
|
jobTitle?: Maybe<Scalars['String']['output']>;
|
|
142738
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
141470
142739
|
picture?: Maybe<Scalars['String']['output']>;
|
|
141471
142740
|
};
|
|
141472
142741
|
export declare type KnowledgeDiscoveryUserProfile = {
|
|
@@ -141631,6 +142900,111 @@ export declare type LayerScreenLookAndFeel = {
|
|
|
141631
142900
|
height?: Maybe<Scalars['String']['output']>;
|
|
141632
142901
|
width?: Maybe<Scalars['String']['output']>;
|
|
141633
142902
|
};
|
|
142903
|
+
export declare type LearningCertSort = {
|
|
142904
|
+
sortDirection?: InputMaybe<LearningSortOrder>;
|
|
142905
|
+
sortField?: InputMaybe<LearningCertSortField>;
|
|
142906
|
+
};
|
|
142907
|
+
export declare enum LearningCertSortField {
|
|
142908
|
+
ActiveDate = "ACTIVE_DATE",
|
|
142909
|
+
ExpireDate = "EXPIRE_DATE",
|
|
142910
|
+
Id = "ID",
|
|
142911
|
+
ImageUrl = "IMAGE_URL",
|
|
142912
|
+
Name = "NAME",
|
|
142913
|
+
NameAbbr = "NAME_ABBR",
|
|
142914
|
+
PublicUrl = "PUBLIC_URL",
|
|
142915
|
+
Status = "STATUS",
|
|
142916
|
+
Type = "TYPE"
|
|
142917
|
+
}
|
|
142918
|
+
export declare enum LearningCertStatus {
|
|
142919
|
+
Active = "ACTIVE",
|
|
142920
|
+
Expired = "EXPIRED"
|
|
142921
|
+
}
|
|
142922
|
+
export declare enum LearningCertType {
|
|
142923
|
+
Badge = "BADGE",
|
|
142924
|
+
Certification = "CERTIFICATION",
|
|
142925
|
+
Standing = "STANDING"
|
|
142926
|
+
}
|
|
142927
|
+
export declare type LearningCertmetricsCertificate = {
|
|
142928
|
+
__typename?: 'LearningCertmetricsCertificate';
|
|
142929
|
+
activeDate?: Maybe<Scalars['String']['output']>;
|
|
142930
|
+
expireDate?: Maybe<Scalars['String']['output']>;
|
|
142931
|
+
id?: Maybe<Scalars['String']['output']>;
|
|
142932
|
+
imageUrl?: Maybe<Scalars['String']['output']>;
|
|
142933
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
142934
|
+
nameAbbr?: Maybe<Scalars['String']['output']>;
|
|
142935
|
+
publicUrl?: Maybe<Scalars['String']['output']>;
|
|
142936
|
+
status?: Maybe<LearningCertStatus>;
|
|
142937
|
+
type?: Maybe<LearningCertType>;
|
|
142938
|
+
};
|
|
142939
|
+
export declare type LearningCertmetricsCertificateConnection = {
|
|
142940
|
+
__typename?: 'LearningCertmetricsCertificateConnection';
|
|
142941
|
+
edges?: Maybe<Array<LearningCertmetricsCertificateEdge>>;
|
|
142942
|
+
pageInfo?: Maybe<LearningPageInfo>;
|
|
142943
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
142944
|
+
};
|
|
142945
|
+
export declare type LearningCertmetricsCertificateEdge = {
|
|
142946
|
+
__typename?: 'LearningCertmetricsCertificateEdge';
|
|
142947
|
+
cursor: Scalars['String']['output'];
|
|
142948
|
+
node?: Maybe<LearningCertmetricsCertificate>;
|
|
142949
|
+
};
|
|
142950
|
+
export declare type LearningCertmetricsCertificateResult = LearningCertmetricsCertificateConnection | LearningQueryError;
|
|
142951
|
+
export declare type LearningConnectionQueryErrorExtension = LearningQueryErrorExtension & {
|
|
142952
|
+
__typename?: 'LearningConnectionQueryErrorExtension';
|
|
142953
|
+
errorType?: Maybe<Scalars['String']['output']>;
|
|
142954
|
+
statusCode?: Maybe<Scalars['Int']['output']>;
|
|
142955
|
+
};
|
|
142956
|
+
export declare type LearningLearner = {
|
|
142957
|
+
__typename?: 'LearningLearner';
|
|
142958
|
+
atlassianId: Scalars['String']['output'];
|
|
142959
|
+
certmetricsCertificates?: Maybe<LearningCertmetricsCertificateResult>;
|
|
142960
|
+
id: Scalars['ID']['output'];
|
|
142961
|
+
};
|
|
142962
|
+
export declare type LearningLearnerCertmetricsCertificatesArgs = {
|
|
142963
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
142964
|
+
before?: InputMaybe<Scalars['String']['input']>;
|
|
142965
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
142966
|
+
last?: InputMaybe<Scalars['Int']['input']>;
|
|
142967
|
+
sorting?: InputMaybe<LearningCertSort>;
|
|
142968
|
+
status?: InputMaybe<LearningCertStatus>;
|
|
142969
|
+
type?: InputMaybe<Array<InputMaybe<LearningCertType>>>;
|
|
142970
|
+
};
|
|
142971
|
+
export declare type LearningPageInfo = {
|
|
142972
|
+
__typename?: 'LearningPageInfo';
|
|
142973
|
+
endCursor?: Maybe<Scalars['String']['output']>;
|
|
142974
|
+
hasNextPage: Scalars['Boolean']['output'];
|
|
142975
|
+
hasPreviousPage: Scalars['Boolean']['output'];
|
|
142976
|
+
startCursor?: Maybe<Scalars['String']['output']>;
|
|
142977
|
+
};
|
|
142978
|
+
export declare type LearningQuery = {
|
|
142979
|
+
__typename?: 'LearningQuery';
|
|
142980
|
+
learnerByAtlassianId?: Maybe<LearningLearner>;
|
|
142981
|
+
learnersByAtlassianIds?: Maybe<Array<Maybe<LearningLearner>>>;
|
|
142982
|
+
learnersByIds?: Maybe<Array<Maybe<LearningLearner>>>;
|
|
142983
|
+
};
|
|
142984
|
+
export declare type LearningQueryLearnerByAtlassianIdArgs = {
|
|
142985
|
+
atlassianId: Scalars['String']['input'];
|
|
142986
|
+
};
|
|
142987
|
+
export declare type LearningQueryLearnersByAtlassianIdsArgs = {
|
|
142988
|
+
atlassianIds: Array<Scalars['String']['input']>;
|
|
142989
|
+
};
|
|
142990
|
+
export declare type LearningQueryLearnersByIdsArgs = {
|
|
142991
|
+
ids: Array<Scalars['ID']['input']>;
|
|
142992
|
+
};
|
|
142993
|
+
export declare type LearningQueryError = {
|
|
142994
|
+
__typename?: 'LearningQueryError';
|
|
142995
|
+
extensions?: Maybe<Array<LearningQueryErrorExtension>>;
|
|
142996
|
+
id: Scalars['ID']['output'];
|
|
142997
|
+
identifier?: Maybe<Scalars['ID']['output']>;
|
|
142998
|
+
message?: Maybe<Scalars['String']['output']>;
|
|
142999
|
+
};
|
|
143000
|
+
export declare type LearningQueryErrorExtension = {
|
|
143001
|
+
errorType?: Maybe<Scalars['String']['output']>;
|
|
143002
|
+
statusCode?: Maybe<Scalars['Int']['output']>;
|
|
143003
|
+
};
|
|
143004
|
+
export declare enum LearningSortOrder {
|
|
143005
|
+
Asc = "ASC",
|
|
143006
|
+
Desc = "DESC"
|
|
143007
|
+
}
|
|
141634
143008
|
export declare type License = {
|
|
141635
143009
|
__typename?: 'License';
|
|
141636
143010
|
billingPeriod?: Maybe<Scalars['String']['output']>;
|
|
@@ -141770,6 +143144,7 @@ export declare type LiveChatParticipantLeft = {
|
|
|
141770
143144
|
export declare type LiveChatSendUserMessageInput = {
|
|
141771
143145
|
chatAri: Scalars['ID']['input'];
|
|
141772
143146
|
content: Scalars['String']['input'];
|
|
143147
|
+
messageId?: InputMaybe<Scalars['ID']['input']>;
|
|
141773
143148
|
};
|
|
141774
143149
|
export declare type LiveChatStarted = {
|
|
141775
143150
|
__typename?: 'LiveChatStarted';
|
|
@@ -141890,6 +143265,10 @@ export declare type LoomAcceptOrganizationInvitation = {
|
|
|
141890
143265
|
redirectUri?: Maybe<Scalars['String']['output']>;
|
|
141891
143266
|
success: Scalars['String']['output'];
|
|
141892
143267
|
};
|
|
143268
|
+
export declare type LoomAgentBrief = {
|
|
143269
|
+
__typename?: 'LoomAgentBrief';
|
|
143270
|
+
structuredOutput?: Maybe<Scalars['String']['output']>;
|
|
143271
|
+
};
|
|
141893
143272
|
export declare enum LoomCalendarIntegrationType {
|
|
141894
143273
|
GoogleCalendar = "GOOGLE_CALENDAR",
|
|
141895
143274
|
MicrosoftOutlook = "MICROSOFT_OUTLOOK"
|
|
@@ -142186,6 +143565,7 @@ export declare type LoomValidateSlackUserIds = {
|
|
|
142186
143565
|
};
|
|
142187
143566
|
export declare type LoomVideo = Node & {
|
|
142188
143567
|
__typename?: 'LoomVideo';
|
|
143568
|
+
agentBriefs?: Maybe<Array<Maybe<LoomAgentBrief>>>;
|
|
142189
143569
|
collaborators?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
|
|
142190
143570
|
commentCount?: Maybe<Scalars['Int']['output']>;
|
|
142191
143571
|
comments?: Maybe<LoomCommentConnection>;
|
|
@@ -142393,6 +143773,10 @@ export declare type LpQueryError = Node & {
|
|
|
142393
143773
|
identifier?: Maybe<Scalars['ID']['output']>;
|
|
142394
143774
|
message?: Maybe<Scalars['String']['output']>;
|
|
142395
143775
|
};
|
|
143776
|
+
export declare type M360ServiceHelloWorldPayload = {
|
|
143777
|
+
__typename?: 'M360ServiceHelloWorldPayload';
|
|
143778
|
+
greeting?: Maybe<Scalars['String']['output']>;
|
|
143779
|
+
};
|
|
142396
143780
|
export declare type Macro = {
|
|
142397
143781
|
__typename?: 'Macro';
|
|
142398
143782
|
adf: Scalars['String']['output'];
|
|
@@ -145000,7 +146384,7 @@ export declare type MarketplaceStoreCapabilityItem = {
|
|
|
145000
146384
|
};
|
|
145001
146385
|
export declare type MarketplaceStoreCapabilitySection = MarketplaceStoreLayoutSection & {
|
|
145002
146386
|
__typename?: 'MarketplaceStoreCapabilitySection';
|
|
145003
|
-
|
|
146387
|
+
capabilityGroup?: Maybe<MarketplaceStoreCapabilities>;
|
|
145004
146388
|
description?: Maybe<Scalars['String']['output']>;
|
|
145005
146389
|
key: MarketplaceStoreLayoutSectionKeys;
|
|
145006
146390
|
title: Scalars['String']['output'];
|
|
@@ -145299,6 +146683,24 @@ export declare type MarketplaceStoreEntitlementDetails = {
|
|
|
145299
146683
|
ccpUsers?: Maybe<Scalars['Int']['output']>;
|
|
145300
146684
|
productKey?: Maybe<Scalars['String']['output']>;
|
|
145301
146685
|
};
|
|
146686
|
+
export declare type MarketplaceStoreExploreObjectsSection = MarketplaceStoreLayoutSection & {
|
|
146687
|
+
__typename?: 'MarketplaceStoreExploreObjectsSection';
|
|
146688
|
+
description?: Maybe<Scalars['String']['output']>;
|
|
146689
|
+
key: MarketplaceStoreLayoutSectionKeys;
|
|
146690
|
+
navigationUrl?: Maybe<Scalars['String']['output']>;
|
|
146691
|
+
objectsFetchCount?: Maybe<Scalars['Int']['output']>;
|
|
146692
|
+
searchMetadata?: Maybe<MarketplaceStoreSearchMetadata>;
|
|
146693
|
+
tabs?: Maybe<Array<MarketplaceStoreExploreObjectsTab>>;
|
|
146694
|
+
title: Scalars['String']['output'];
|
|
146695
|
+
type: MarketplaceStoreLayoutSectionType;
|
|
146696
|
+
widgets?: Maybe<Array<Maybe<MarketplaceStoreLayoutWidget>>>;
|
|
146697
|
+
};
|
|
146698
|
+
export declare type MarketplaceStoreExploreObjectsTab = {
|
|
146699
|
+
__typename?: 'MarketplaceStoreExploreObjectsTab';
|
|
146700
|
+
iconKey?: Maybe<Scalars['String']['output']>;
|
|
146701
|
+
name: Scalars['String']['output'];
|
|
146702
|
+
searchMetadata?: Maybe<MarketplaceStoreSearchMetadata>;
|
|
146703
|
+
};
|
|
145302
146704
|
export declare enum MarketplaceStoreFormStatus {
|
|
145303
146705
|
Approved = "APPROVED",
|
|
145304
146706
|
Rejected = "REJECTED",
|
|
@@ -145470,6 +146872,7 @@ export declare type MarketplaceStoreInstallAppInput = {
|
|
|
145470
146872
|
export declare type MarketplaceStoreInstallAppResponse = {
|
|
145471
146873
|
__typename?: 'MarketplaceStoreInstallAppResponse';
|
|
145472
146874
|
id: Scalars['ID']['output'];
|
|
146875
|
+
isGlobalAppInstall?: Maybe<Scalars['Boolean']['output']>;
|
|
145473
146876
|
isUpmInstall?: Maybe<Scalars['Boolean']['output']>;
|
|
145474
146877
|
orderId?: Maybe<Scalars['ID']['output']>;
|
|
145475
146878
|
status: MarketplaceStoreInstallAppStatus;
|
|
@@ -145485,8 +146888,13 @@ export declare enum MarketplaceStoreInstallAppStatus {
|
|
|
145485
146888
|
}
|
|
145486
146889
|
export declare type MarketplaceStoreInstallAppTargetInput = {
|
|
145487
146890
|
cloudId: Scalars['ID']['input'];
|
|
145488
|
-
|
|
146891
|
+
installationTarget?: InputMaybe<MarketplaceStoreInstallationTarget>;
|
|
146892
|
+
product?: InputMaybe<MarketplaceStoreInstallationTargetProduct>;
|
|
145489
146893
|
};
|
|
146894
|
+
export declare enum MarketplaceStoreInstallationTarget {
|
|
146895
|
+
Site = "SITE",
|
|
146896
|
+
Unit = "UNIT"
|
|
146897
|
+
}
|
|
145490
146898
|
export declare enum MarketplaceStoreInstallationTargetProduct {
|
|
145491
146899
|
Bitbucket = "BITBUCKET",
|
|
145492
146900
|
Compass = "COMPASS",
|
|
@@ -145544,7 +146952,6 @@ export declare enum MarketplaceStoreLayoutSectionKeys {
|
|
|
145544
146952
|
RecommendedForYou = "RECOMMENDED_FOR_YOU",
|
|
145545
146953
|
Spotlight = "SPOTLIGHT",
|
|
145546
146954
|
Statistics = "STATISTICS",
|
|
145547
|
-
TopUseCases = "TOP_USE_CASES",
|
|
145548
146955
|
TrustedPartners = "TRUSTED_PARTNERS"
|
|
145549
146956
|
}
|
|
145550
146957
|
export declare enum MarketplaceStoreLayoutSectionType {
|
|
@@ -145552,8 +146959,8 @@ export declare enum MarketplaceStoreLayoutSectionType {
|
|
|
145552
146959
|
Capability = "CAPABILITY",
|
|
145553
146960
|
Dark = "DARK",
|
|
145554
146961
|
ExploreCategories = "EXPLORE_CATEGORIES",
|
|
145555
|
-
|
|
145556
|
-
|
|
146962
|
+
ExploreObjects = "EXPLORE_OBJECTS",
|
|
146963
|
+
List = "LIST"
|
|
145557
146964
|
}
|
|
145558
146965
|
export declare enum MarketplaceStoreLayoutSlotTheme {
|
|
145559
146966
|
Bounded = "BOUNDED",
|
|
@@ -146127,6 +147534,7 @@ export declare type MarketplaceStoreQueryApiHostStatusArgs = {
|
|
|
146127
147534
|
};
|
|
146128
147535
|
export declare type MarketplaceStoreQueryApiInstallAppStatusArgs = {
|
|
146129
147536
|
id: Scalars['ID']['input'];
|
|
147537
|
+
isGlobalAppInstall?: InputMaybe<Scalars['Boolean']['input']>;
|
|
146130
147538
|
isUpmInstall?: InputMaybe<Scalars['Boolean']['input']>;
|
|
146131
147539
|
orderId?: InputMaybe<Scalars['ID']['input']>;
|
|
146132
147540
|
target?: InputMaybe<MarketplaceStoreInstallAppTargetInput>;
|
|
@@ -146362,18 +147770,6 @@ export declare type MarketplaceStoreThirdPartyInformation = {
|
|
|
146362
147770
|
isEndUserDataShared?: Maybe<Scalars['Boolean']['output']>;
|
|
146363
147771
|
thirdPartyDetails?: Maybe<Array<Maybe<MarketplaceStoreThirdPartyDetails>>>;
|
|
146364
147772
|
};
|
|
146365
|
-
export declare type MarketplaceStoreTopUseCasesSection = MarketplaceStoreLayoutSection & {
|
|
146366
|
-
__typename?: 'MarketplaceStoreTopUseCasesSection';
|
|
146367
|
-
description?: Maybe<Scalars['String']['output']>;
|
|
146368
|
-
key: MarketplaceStoreLayoutSectionKeys;
|
|
146369
|
-
navigationUrl?: Maybe<Scalars['String']['output']>;
|
|
146370
|
-
objectsFetchCount?: Maybe<Scalars['Int']['output']>;
|
|
146371
|
-
searchMetadata?: Maybe<MarketplaceStoreSearchMetadata>;
|
|
146372
|
-
title: Scalars['String']['output'];
|
|
146373
|
-
topUseCases?: Maybe<MarketplaceStoreUseCases>;
|
|
146374
|
-
type: MarketplaceStoreLayoutSectionType;
|
|
146375
|
-
widgets?: Maybe<Array<Maybe<MarketplaceStoreLayoutWidget>>>;
|
|
146376
|
-
};
|
|
146377
147773
|
export declare type MarketplaceStoreTrustSignalDataRules = {
|
|
146378
147774
|
__typename?: 'MarketplaceStoreTrustSignalDataRules';
|
|
146379
147775
|
name: Scalars['String']['output'];
|
|
@@ -146421,17 +147817,6 @@ export declare type MarketplaceStoreUpdateUserPreferencesResponse = {
|
|
|
146421
147817
|
status: Scalars['String']['output'];
|
|
146422
147818
|
version: Scalars['Int']['output'];
|
|
146423
147819
|
};
|
|
146424
|
-
export declare type MarketplaceStoreUseCaseValue = {
|
|
146425
|
-
__typename?: 'MarketplaceStoreUseCaseValue';
|
|
146426
|
-
iconKey?: Maybe<Scalars['String']['output']>;
|
|
146427
|
-
id: Scalars['String']['output'];
|
|
146428
|
-
name?: Maybe<Scalars['String']['output']>;
|
|
146429
|
-
};
|
|
146430
|
-
export declare type MarketplaceStoreUseCases = {
|
|
146431
|
-
__typename?: 'MarketplaceStoreUseCases';
|
|
146432
|
-
heading?: Maybe<Scalars['String']['output']>;
|
|
146433
|
-
values?: Maybe<Array<MarketplaceStoreUseCaseValue>>;
|
|
146434
|
-
};
|
|
146435
147820
|
export declare type MarketplaceStoreUserPreferences = {
|
|
146436
147821
|
__typename?: 'MarketplaceStoreUserPreferences';
|
|
146437
147822
|
notifyOnAppArchivalSchedule?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -151535,6 +152920,7 @@ export declare type MercuryProviderOrchestrationQueryApi = {
|
|
|
151535
152920
|
providers?: Maybe<MercuryProviderConnection>;
|
|
151536
152921
|
searchWorkByBenefitItem?: Maybe<MercuryProviderWorkSearchConnection>;
|
|
151537
152922
|
searchWorkByChangeProposal?: Maybe<MercuryProviderWorkSearchConnection>;
|
|
152923
|
+
searchWorkByCostItem?: Maybe<MercuryProviderWorkSearchConnection>;
|
|
151538
152924
|
searchWorkByFocusArea?: Maybe<MercuryProviderWorkSearchConnection>;
|
|
151539
152925
|
searchWorkByRisk?: Maybe<MercuryProviderWorkSearchConnection>;
|
|
151540
152926
|
workStatuses?: Maybe<Array<Maybe<MercuryProviderWorkStatus>>>;
|
|
@@ -151573,11 +152959,8 @@ export declare type MercuryProviderOrchestrationQueryApiSearchWorkByBenefitItemA
|
|
|
151573
152959
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
151574
152960
|
benefitItemId: Scalars['ID']['input'];
|
|
151575
152961
|
cloudId: Scalars['ID']['input'];
|
|
151576
|
-
filter?: InputMaybe<MercuryProviderWorkSearchFilters>;
|
|
151577
152962
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
151578
|
-
providerKey: Scalars['String']['input'];
|
|
151579
152963
|
textQuery?: InputMaybe<Scalars['String']['input']>;
|
|
151580
|
-
workContainerAri?: InputMaybe<Scalars['String']['input']>;
|
|
151581
152964
|
};
|
|
151582
152965
|
export declare type MercuryProviderOrchestrationQueryApiSearchWorkByChangeProposalArgs = {
|
|
151583
152966
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -151590,6 +152973,13 @@ export declare type MercuryProviderOrchestrationQueryApiSearchWorkByChangePropos
|
|
|
151590
152973
|
textQuery?: InputMaybe<Scalars['String']['input']>;
|
|
151591
152974
|
workContainerAri?: InputMaybe<Scalars['String']['input']>;
|
|
151592
152975
|
};
|
|
152976
|
+
export declare type MercuryProviderOrchestrationQueryApiSearchWorkByCostItemArgs = {
|
|
152977
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
152978
|
+
cloudId: Scalars['ID']['input'];
|
|
152979
|
+
costItemId: Scalars['ID']['input'];
|
|
152980
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
152981
|
+
textQuery?: InputMaybe<Scalars['String']['input']>;
|
|
152982
|
+
};
|
|
151593
152983
|
export declare type MercuryProviderOrchestrationQueryApiSearchWorkByFocusAreaArgs = {
|
|
151594
152984
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
151595
152985
|
applicationKey?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -153898,7 +155288,7 @@ export declare type MercuryUpdateViewNameInput = {
|
|
|
153898
155288
|
};
|
|
153899
155289
|
export declare type MercuryUpdateViewOwnerInput = {
|
|
153900
155290
|
id: Scalars['ID']['input'];
|
|
153901
|
-
|
|
155291
|
+
owner: Scalars['String']['input'];
|
|
153902
155292
|
};
|
|
153903
155293
|
export declare type MercuryUpdateViewSettingsInput = {
|
|
153904
155294
|
id: Scalars['ID']['input'];
|
|
@@ -153984,6 +155374,16 @@ export declare type MercuryViewSettings = {
|
|
|
153984
155374
|
export declare type MercuryViewSettingsInput = {
|
|
153985
155375
|
values: Array<MercuryViewSettingEntryInput>;
|
|
153986
155376
|
};
|
|
155377
|
+
export declare type MercuryViewSort = {
|
|
155378
|
+
field: MercuryViewSortField;
|
|
155379
|
+
order: SortOrder;
|
|
155380
|
+
};
|
|
155381
|
+
export declare enum MercuryViewSortField {
|
|
155382
|
+
Name = "NAME",
|
|
155383
|
+
Rank = "RANK",
|
|
155384
|
+
StarredDate = "STARRED_DATE",
|
|
155385
|
+
UpdatedDate = "UPDATED_DATE"
|
|
155386
|
+
}
|
|
153987
155387
|
export declare enum MercuryViewType {
|
|
153988
155388
|
HierarchyView = "HIERARCHY_VIEW",
|
|
153989
155389
|
RankingView = "RANKING_VIEW"
|
|
@@ -154074,7 +155474,6 @@ export declare type MercuryWorkspaceContext = {
|
|
|
154074
155474
|
};
|
|
154075
155475
|
export declare type MercuryWorkspaceSettings = {
|
|
154076
155476
|
__typename?: 'MercuryWorkspaceSettings';
|
|
154077
|
-
focusAreaRankingEnabled: Scalars['Boolean']['output'];
|
|
154078
155477
|
laborCostEnabled: Scalars['Boolean']['output'];
|
|
154079
155478
|
managedTeamsOnlyEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
154080
155479
|
};
|
|
@@ -154376,16 +155775,19 @@ export declare type Mutation = {
|
|
|
154376
155775
|
agentWorkspace_assignAgentsToSkill?: Maybe<AgentWorkspaceAssignAgentsToSkillPayload>;
|
|
154377
155776
|
agentWorkspace_cancelRoutingTableGeneration?: Maybe<AgentWorkspaceCancelRoutingTableGenerationPayload>;
|
|
154378
155777
|
agentWorkspace_createAndLinkTeamsFromGroups?: Maybe<AgentWorkspaceCreateAndLinkTeamsPayload>;
|
|
154379
|
-
|
|
155778
|
+
agentWorkspace_createDraftedRoutingTableEntries?: Maybe<AgentWorkspaceCreateDraftedRoutingTableEntriesPayload>;
|
|
154380
155779
|
agentWorkspace_createSchedule?: Maybe<AgentWorkspaceCreateSchedulePayload>;
|
|
154381
155780
|
agentWorkspace_createSkill?: Maybe<AgentWorkspaceSkillCreatePayload>;
|
|
155781
|
+
agentWorkspace_deleteCoverShift?: Maybe<AgentWorkspaceDeleteCoverShiftPayload>;
|
|
154382
155782
|
agentWorkspace_deleteSchedule?: Maybe<AgentWorkspaceDeleteSchedulePayload>;
|
|
154383
155783
|
agentWorkspace_deleteShift?: Maybe<AgentWorkspaceDeleteShiftPayload>;
|
|
155784
|
+
agentWorkspace_editCoverShift?: Maybe<AgentWorkspaceEditCoverShiftPayload>;
|
|
154384
155785
|
agentWorkspace_editShift?: Maybe<AgentWorkspaceEditShiftPayload>;
|
|
154385
155786
|
agentWorkspace_endBreak?: Maybe<AgentWorkspaceAgentAvailability>;
|
|
154386
155787
|
agentWorkspace_restoreSkill?: Maybe<AgentWorkspaceRestoreSkillPayload>;
|
|
154387
155788
|
agentWorkspace_setAvailabilityStatus?: Maybe<AgentWorkspaceAvailabilityStatusPayload>;
|
|
154388
155789
|
agentWorkspace_setDefaultCapacity?: Maybe<AgentWorkspaceSetDefaultCapacityPayload>;
|
|
155790
|
+
agentWorkspace_setDraftedRoutingTableServiceField?: Maybe<AgentWorkspaceSetDraftedRoutingTableServiceFieldPayload>;
|
|
154389
155791
|
agentWorkspace_setProjectDefaultAvailability?: Maybe<AgentWorkspaceProjectDefaultAvailabilityPayload>;
|
|
154390
155792
|
agentWorkspace_setTeamCapacities?: Maybe<AgentWorkspaceSetTeamCapacitiesPayload>;
|
|
154391
155793
|
agentWorkspace_startBreak?: Maybe<AgentWorkspaceAgentAvailability>;
|
|
@@ -154394,14 +155796,16 @@ export declare type Mutation = {
|
|
|
154394
155796
|
agentWorkspace_submitDraftedRoutingTable?: Maybe<AgentWorkspaceSubmitDraftedRoutingTablePayload>;
|
|
154395
155797
|
agentWorkspace_updateRoutingConfig?: Maybe<AgentWorkspaceUpdateSmartRoutingConfigPayload>;
|
|
154396
155798
|
agentWorkspace_updateSchedule?: Maybe<AgentWorkspaceUpdateSchedulePayload>;
|
|
155799
|
+
agentWorkspace_updateSkill?: Maybe<AgentWorkspaceSkillUpdatePayload>;
|
|
155800
|
+
agentWorkspace_updateSkillCategory?: Maybe<AgentWorkspaceSkillCategoryUpdatePayload>;
|
|
154397
155801
|
agentWorkspace_updateSmartRoutingConfig?: Maybe<AgentWorkspaceUpdateSmartRoutingConfigPayload>;
|
|
154398
155802
|
agentWorkspace_upsertDraftedRoutingTableEntry?: Maybe<AgentWorkspaceUpsertDraftedRoutingTableEntryPayload>;
|
|
154399
155803
|
aiCoreApi_initiateCsvExport?: Maybe<AiCoreApiCsvExportResult>;
|
|
155804
|
+
aiCoreApi_initiateRsaReport?: Maybe<AiCoreApiRsaInitiateReportResult>;
|
|
154400
155805
|
aiManagedObject_createAiManagedObject?: Maybe<AiManagedObject>;
|
|
154401
155806
|
aiManagedObject_createAiManagedObjectConfig?: Maybe<AiManagedObjectConfig>;
|
|
154402
155807
|
aiManagedObject_deleteAiManagedObject?: Maybe<Scalars['Boolean']['output']>;
|
|
154403
155808
|
aiManagedObject_updateAiManagedObject?: Maybe<AiManagedObject>;
|
|
154404
|
-
aiops_createInvestigation?: Maybe<AiOpsCreateInvestigationPayload>;
|
|
154405
155809
|
aiops_triggerInvestigation?: Maybe<AiOpsCreateInvestigationPayload>;
|
|
154406
155810
|
appRecommendations?: Maybe<AppRecMutation>;
|
|
154407
155811
|
appStorage?: Maybe<AppStorageMutation>;
|
|
@@ -154472,18 +155876,24 @@ export declare type Mutation = {
|
|
|
154472
155876
|
assetsDM_updateDataSourcePriority?: Maybe<AssetsDmUpdateDataSourcePayload>;
|
|
154473
155877
|
assetsDM_updateDataSourceType?: Maybe<AssetsDmUpdateDataSourceTypeResponse>;
|
|
154474
155878
|
assetsDM_updateDefaultCleansingRule?: Maybe<AssetsDmUpdateDefaultCleansingRuleResponse>;
|
|
155879
|
+
assetsVertical_archiveInsight?: Maybe<AssetsVerticalArchiveInsightPayload>;
|
|
154475
155880
|
assetsVertical_createAssetTypesTrackings?: Maybe<AssetsVerticalAssetTypesTrackingsPayload>;
|
|
155881
|
+
assetsVertical_createCustomInsight?: Maybe<AssetsVerticalCreateCustomInsightPayload>;
|
|
154476
155882
|
assetsVertical_createDepreciationRule?: Maybe<AssetsVerticalDepreciationRulePayload>;
|
|
154477
155883
|
assetsVertical_createItemMappings?: Maybe<AssetsVerticalItemMappingsPayload>;
|
|
154478
155884
|
assetsVertical_createRoleAssignments?: Maybe<AssetsVerticalRoleAssignmentsMutationPayload>;
|
|
154479
155885
|
assetsVertical_createVerticalInstantiation?: Maybe<AssetsVerticalVerticalInstantiationPayload>;
|
|
154480
155886
|
assetsVertical_createVerticalInstantiationCategory?: Maybe<AssetsVerticalVerticalInstantiationCategoryPayload>;
|
|
154481
155887
|
assetsVertical_deleteAssetTypesTracking?: Maybe<AssetsVerticalAssetTypesTrackingPayload>;
|
|
155888
|
+
assetsVertical_deleteCustomInsight?: Maybe<AssetsVerticalDeleteCustomInsightPayload>;
|
|
154482
155889
|
assetsVertical_deleteDepreciationRule?: Maybe<AssetsVerticalDepreciationRulePayload>;
|
|
154483
155890
|
assetsVertical_deleteItemMapping?: Maybe<AssetsVerticalItemMappingPayload>;
|
|
154484
155891
|
assetsVertical_deleteRoleAssignments?: Maybe<AssetsVerticalRoleAssignmentsMutationPayload>;
|
|
155892
|
+
assetsVertical_enableCustomInsight?: Maybe<AssetsVerticalEnableCustomInsightPayload>;
|
|
155893
|
+
assetsVertical_generateCustomInsight?: Maybe<AssetsVerticalGenerateCustomInsightPayload>;
|
|
154485
155894
|
assetsVertical_generateInsights?: Maybe<AssetsVerticalGenerateInsightsPayload>;
|
|
154486
155895
|
assetsVertical_instantiateBundleByType?: Maybe<AssetsVerticalAsyncTaskPayload>;
|
|
155896
|
+
assetsVertical_updateCustomInsight?: Maybe<AssetsVerticalUpdateCustomInsightPayload>;
|
|
154487
155897
|
assetsVertical_updateDepreciationRule?: Maybe<AssetsVerticalDepreciationRulePayload>;
|
|
154488
155898
|
assetsVertical_updateRoleAssignments?: Maybe<AssetsVerticalRoleAssignmentsMutationPayload>;
|
|
154489
155899
|
assetsVertical_updateVerticalInstantiation?: Maybe<AssetsVerticalVerticalInstantiationPayload>;
|
|
@@ -154521,6 +155931,7 @@ export declare type Mutation = {
|
|
|
154521
155931
|
avp_trackDashboardView?: Maybe<AvpTrackDashboardViewPayload>;
|
|
154522
155932
|
avp_unstarDashboard?: Maybe<AvpUnstarDashboardPayload>;
|
|
154523
155933
|
avp_updateChart?: Maybe<AvpUpdateChartPayload>;
|
|
155934
|
+
avp_updateChartByConfigId?: Maybe<AvpUpdateChartPayload>;
|
|
154524
155935
|
avp_updateDashboard?: Maybe<AvpUpdateDashboardPayload>;
|
|
154525
155936
|
avp_updateDashboardFilter?: Maybe<AvpUpdateDashboardFilterPayload>;
|
|
154526
155937
|
avp_updateDashboardIdentityAccess?: Maybe<AvpUpdateDashboardIdentityAccessPayload>;
|
|
@@ -154627,6 +156038,7 @@ export declare type Mutation = {
|
|
|
154627
156038
|
confluence_deleteSubCalendarPrivateUrl?: Maybe<ConfluenceDeleteSubCalendarPrivateUrlPayload>;
|
|
154628
156039
|
confluence_deleteSubCalendarSingleEvent?: Maybe<ConfluenceDeleteSubCalendarSingleEventPayload>;
|
|
154629
156040
|
confluence_deleteTopic?: Maybe<ConfluenceDeleteTopicPayload>;
|
|
156041
|
+
confluence_disableSystemRole?: Maybe<ConfluenceDisableSystemRolePayload>;
|
|
154630
156042
|
confluence_enableGlobalAnonymousEnforcement?: Maybe<ConfluenceEnableGlobalAnonymousEnforcementPayload>;
|
|
154631
156043
|
confluence_experimentInitAiFirstCreation?: Maybe<ConfluenceExperimentInitAiFirstCreationPayload>;
|
|
154632
156044
|
confluence_experimentInitModernize?: Maybe<ConfluenceExperimentInitModernizePayload>;
|
|
@@ -154658,6 +156070,7 @@ export declare type Mutation = {
|
|
|
154658
156070
|
confluence_nbmUploadTransformerConfig?: Maybe<ConfluenceNbmUploadTransformerConfigPayload>;
|
|
154659
156071
|
confluence_notifyContentOwner?: Maybe<ConfluenceNotifyContentOwnerPayload>;
|
|
154660
156072
|
confluence_patchCalendar?: Maybe<ConfluencePatchCalendarPayload>;
|
|
156073
|
+
confluence_patchSpaceSettings?: Maybe<ConfluencePatchSpaceSettingsPayload>;
|
|
154661
156074
|
confluence_publishBlueprintSharedDraft?: Maybe<ConfluencePublishBlueprintSharedDraftPayload>;
|
|
154662
156075
|
confluence_publishDraftWithApprovalReviewTransfer?: Maybe<ConfluenceWorkflowApplicationPayload>;
|
|
154663
156076
|
confluence_refreshSmartSpaceOverview?: Maybe<ConfluenceUpdateSmartSpaceOverviewPayload>;
|
|
@@ -154670,11 +156083,13 @@ export declare type Mutation = {
|
|
|
154670
156083
|
confluence_resolveComments?: Maybe<ConfluenceResolveCommentsPayload>;
|
|
154671
156084
|
confluence_resolveCommentsByContentId?: Maybe<ConfluenceResolveCommentByContentIdPayload>;
|
|
154672
156085
|
confluence_restoreContentVersion?: Maybe<ConfluenceRestoreContentVersionPayload>;
|
|
156086
|
+
confluence_restoreSystemRole?: Maybe<ConfluenceRestoreSystemRolePayload>;
|
|
154673
156087
|
confluence_sendToDesktop?: Maybe<ConfluenceDesktopSendPayload>;
|
|
154674
156088
|
confluence_setContentApprovalsSpaceSettings?: Maybe<ConfluenceContentApprovalsSpaceSettingsPayload>;
|
|
154675
156089
|
confluence_setContentGeneralAccessMode?: Maybe<ConfluenceSetContentGeneralAccessModePayload>;
|
|
154676
156090
|
confluence_setRolesHubTransitionStep?: Maybe<ConfluenceSetRolesHubTransitionStepPayload>;
|
|
154677
156091
|
confluence_setSubCalendarReminder?: Maybe<ConfluenceSetSubCalendarReminderPayload>;
|
|
156092
|
+
confluence_setSystemOperationRoleConfiguration?: Maybe<ConfluenceSetSystemOperationRoleConfigurationPayload>;
|
|
154678
156093
|
confluence_shareContent?: Maybe<ConfluenceShareContentPayload>;
|
|
154679
156094
|
confluence_subscribeCalendars?: Maybe<ConfluenceSubscribeCalendarPayload>;
|
|
154680
156095
|
confluence_syncSmartFolder?: Maybe<ConfluenceSyncSmartFolderPayload>;
|
|
@@ -154741,6 +156156,8 @@ export declare type Mutation = {
|
|
|
154741
156156
|
cpls_addContributorScopeAssociation?: Maybe<CplsAddContributorScopeAssociationPayload>;
|
|
154742
156157
|
cpls_addContributorWorkAssociation?: Maybe<CplsAddContributorWorkAssociationPayload>;
|
|
154743
156158
|
cpls_addWorkScopeAssociations?: Maybe<CplsAddWorkScopeAssociationsPayload>;
|
|
156159
|
+
cpls_copyContributorToWorks?: Maybe<CplsCopyContributorToWorksPayload>;
|
|
156160
|
+
cpls_copyWorkToContributors?: Maybe<CplsCopyWorkToContributorsPayload>;
|
|
154744
156161
|
cpls_createCustomContributionTarget?: Maybe<CplsCreateCustomContributionTargetPayload>;
|
|
154745
156162
|
cpls_createCustomContributionTargetWithWorkAssociation?: Maybe<CplsCreateCustomContributionTargetWithWorkAssociationPayload>;
|
|
154746
156163
|
cpls_createSuggestions?: Maybe<CplsCreateSuggestionsPayload>;
|
|
@@ -154828,6 +156245,7 @@ export declare type Mutation = {
|
|
|
154828
156245
|
csmAi_updateHandoffConfig?: Maybe<CsmAiUpdateHandoffConfigPayload>;
|
|
154829
156246
|
csmAi_updateKnowledgeSource?: Maybe<CsmAiKnowledgeSourcePayload>;
|
|
154830
156247
|
csmAi_updateWidget?: Maybe<CsmAiUpdateWidgetPayload>;
|
|
156248
|
+
csm_updateCustomerName?: Maybe<CustomerServiceUpdateCustomerNamePayload>;
|
|
154831
156249
|
csm_updateLiveChatSettings?: Maybe<CustomerServiceLiveChatSettingsPayload>;
|
|
154832
156250
|
csm_upsertEmailChannelConfiguration?: Maybe<CustomerServiceEmailChannelConfigUpsertPayload>;
|
|
154833
156251
|
csm_upsertHelpCenterMetadata?: Maybe<CustomerServiceHelpCenterMetadataUpsertPayload>;
|
|
@@ -154877,12 +156295,14 @@ export declare type Mutation = {
|
|
|
154877
156295
|
devai_archiveTechnicalPlannerJob?: Maybe<DevAiArchivedTechnicalPlannerJobPayload>;
|
|
154878
156296
|
devai_autodevNextAddMembers?: Maybe<DevAiAutodevNextAddMembersPayload>;
|
|
154879
156297
|
devai_autodevNextAddProjects?: Maybe<DevAiAutodevNextAddProjectsPayload>;
|
|
156298
|
+
devai_autodevNextCompleteWorkItemRefinement?: Maybe<DevAiAutodevNextCompleteWorkItemRefinementPayload>;
|
|
154880
156299
|
devai_autodevNextCreateWorkstream?: Maybe<DevAiAutodevNextCreateWorkstreamPayload>;
|
|
154881
156300
|
devai_autodevNextDeleteWorkstream?: Maybe<DevAiAutodevNextDeleteWorkstreamPayload>;
|
|
154882
156301
|
devai_autodevNextReassignWorkItem?: Maybe<DevAiAutodevNextReassignWorkItemPayload>;
|
|
154883
156302
|
devai_autodevNextRemoveMembers?: Maybe<DevAiAutodevNextRemoveMembersPayload>;
|
|
154884
156303
|
devai_autodevNextRemoveProjects?: Maybe<DevAiAutodevNextRemoveProjectsPayload>;
|
|
154885
156304
|
devai_autodevNextSendWorkstreamNudges?: Maybe<DevAiAutodevNextSendWorkstreamNudgesPayload>;
|
|
156305
|
+
devai_autodevNextTriggerWorkstreamScan?: Maybe<DevAiAutodevNextTriggerWorkstreamScanPayload>;
|
|
154886
156306
|
devai_autodevNextUpdateWorkstream?: Maybe<DevAiAutodevNextUpdateWorkstreamPayload>;
|
|
154887
156307
|
devai_completeFlowSession?: Maybe<DevAiFlowSessionCompletePayload>;
|
|
154888
156308
|
devai_continueJobWithPrompt?: Maybe<DevAiAutodevContinueJobWithPromptPayload>;
|
|
@@ -154948,6 +156368,7 @@ export declare type Mutation = {
|
|
|
154948
156368
|
goals_createDecision?: Maybe<TownsquareGoalsCreateDecisionPayload>;
|
|
154949
156369
|
goals_createGoalTypePair?: Maybe<TownsquareCreateGoalTypePairPayload>;
|
|
154950
156370
|
goals_createLearning?: Maybe<TownsquareGoalsCreateLearningPayload>;
|
|
156371
|
+
goals_createMetricValue?: Maybe<TownsquareGoalsCreateMetricValuePayload>;
|
|
154951
156372
|
goals_createRisk?: Maybe<TownsquareGoalsCreateRiskPayload>;
|
|
154952
156373
|
goals_createUpdate?: Maybe<TownsquareGoalsCreateUpdatePayload>;
|
|
154953
156374
|
goals_deleteComment?: Maybe<TownsquareGoalsDeleteCommentPayload>;
|
|
@@ -154982,20 +156403,26 @@ export declare type Mutation = {
|
|
|
154982
156403
|
goals_removeTextCustomFieldValue?: Maybe<TownsquareGoalsRemoveTextCustomFieldValuePayload>;
|
|
154983
156404
|
goals_removeUserCustomFieldValue?: Maybe<TownsquareGoalsRemoveUserCustomFieldValuePayload>;
|
|
154984
156405
|
goals_removeWatchers?: Maybe<TownsquareGoalsRemoveWatchersPayload>;
|
|
156406
|
+
goals_restoreGoals?: Maybe<TownsquareGoalsRestoreGoalsPayload>;
|
|
154985
156407
|
goals_revokeAccess?: Maybe<TownsquareGoalRevokeAccessPayload>;
|
|
156408
|
+
goals_setParentGoal?: Maybe<TownsquareGoalsSetParentGoalPayload>;
|
|
154986
156409
|
goals_setRollupProgress?: Maybe<TownsquareGoalsSetRollupProgressPayload>;
|
|
154987
156410
|
goals_setUserWatchingTeam?: Maybe<TownsquareGoalsSetUserWatchingTeamPayload>;
|
|
154988
156411
|
goals_setWatchingGoal?: Maybe<TownsquareGoalsSetWatchingGoalPayload>;
|
|
154989
156412
|
goals_setWatchingTeam?: Maybe<TownsquareGoalsSetWatchingTeamPayload>;
|
|
154990
156413
|
goals_shareGoal?: Maybe<TownsquareGoalsShareGoalPayload>;
|
|
154991
156414
|
goals_shareUpdate?: Maybe<TownsquareGoalsShareUpdatePayload>;
|
|
156415
|
+
goals_softDeleteGoals?: Maybe<TownsquareGoalsSoftDeleteGoalsPayload>;
|
|
154992
156416
|
goals_unlinkJiraAlignProject?: Maybe<TownsquareGoalsUnlinkJiraAlignProjectPayload>;
|
|
154993
156417
|
goals_unlinkWorkItem?: Maybe<TownsquareGoalsUnlinkWorkItemPayload>;
|
|
156418
|
+
goals_updateAppPermissionPolicies?: Maybe<TownsquareUpdateGoalsAppPermissionPoliciesPayload>;
|
|
154994
156419
|
grantContentAccess?: Maybe<GrantContentAccessPayload>;
|
|
154995
156420
|
graphIntegration_actionAdminManagementUpdateActionConfiguration?: Maybe<GraphIntegrationActionAdminManagementUpdateActionConfigurationPayload>;
|
|
154996
156421
|
graphIntegration_addTwgCapabilityContainer?: Maybe<GraphIntegrationAddTwgCapabilityContainerPayload>;
|
|
154997
156422
|
graphIntegration_createDataConnectorConnection?: Maybe<GraphIntegrationCreateConnectionPayload>;
|
|
156423
|
+
graphIntegration_createSkill?: Maybe<GraphIntegrationSkill>;
|
|
154998
156424
|
graphIntegration_deleteDataConnectorConnection?: Maybe<GraphIntegrationDeleteConnectionPayload>;
|
|
156425
|
+
graphIntegration_deleteSkill?: Maybe<GraphIntegrationSkillMutationPayload>;
|
|
154999
156426
|
graphIntegration_mcpAdminManagementRegisterMcpServer?: Maybe<GraphIntegrationMcpAdminManagementRegisterMcpServerPayload>;
|
|
155000
156427
|
graphIntegration_mcpAdminManagementTriggerToolSync?: Maybe<GraphIntegrationMcpAdminManagementTriggerToolSyncPayload>;
|
|
155001
156428
|
graphIntegration_mcpAdminManagementUnregisterMcpServer?: Maybe<GraphIntegrationMcpAdminManagementUnregisterMcpServerPayload>;
|
|
@@ -155004,6 +156431,7 @@ export declare type Mutation = {
|
|
|
155004
156431
|
graphIntegration_removeTwgCapabilityContainer?: Maybe<GraphIntegrationRemoveTwgCapabilityContainerPayload>;
|
|
155005
156432
|
graphIntegration_setTwgPlatformCapabilityGlobalAdminSetting?: Maybe<GraphIntegrationSetTwgPlatformCapabilityGlobalAdminSettingPayload>;
|
|
155006
156433
|
graphIntegration_updateDataConnectorConnection?: Maybe<GraphIntegrationUpdateConnectionPayload>;
|
|
156434
|
+
graphIntegration_updateSkill?: Maybe<GraphIntegrationSkillMutationPayload>;
|
|
155007
156435
|
graphStore?: Maybe<GraphStoreMutation>;
|
|
155008
156436
|
graphStoreV2?: Maybe<GraphStoreV2Mutation>;
|
|
155009
156437
|
gravity_addReaction?: Maybe<GravityAddReactionPayload>;
|
|
@@ -155049,6 +156477,7 @@ export declare type Mutation = {
|
|
|
155049
156477
|
jira_createBoardViewIssue?: Maybe<JiraBoardViewIssueCreatePayload>;
|
|
155050
156478
|
jira_createBoardViewStatusColumn?: Maybe<JiraCreateBoardViewStatusColumnPayload>;
|
|
155051
156479
|
jira_createBoardViewsForWorkflows?: Maybe<JiraCreateBoardViewsForWorkflowsPayload>;
|
|
156480
|
+
jira_createCategoryOption?: Maybe<JiraCreateCategoryOptionPayload>;
|
|
155052
156481
|
jira_createCustomBackground?: Maybe<JiraProjectCreateCustomBackgroundMutationPayload>;
|
|
155053
156482
|
jira_createFieldScheme?: Maybe<JiraFieldSchemePayload>;
|
|
155054
156483
|
jira_createGlobalCustomField?: Maybe<JiraCreateGlobalCustomFieldPayload>;
|
|
@@ -155117,6 +156546,7 @@ export declare type Mutation = {
|
|
|
155117
156546
|
jira_setBoardViewCompletedIssueSearchCutOff?: Maybe<JiraSetBoardViewCompletedIssueSearchCutOffPayload>;
|
|
155118
156547
|
jira_setBoardViewFilter?: Maybe<JiraSetBoardViewFilterPayload>;
|
|
155119
156548
|
jira_setBoardViewGroupBy?: Maybe<JiraSetBoardViewGroupByPayload>;
|
|
156549
|
+
jira_setBoardViewStatusColumnIssueCountLimit?: Maybe<JiraSetBoardViewStatusColumnIssueCountLimitPayload>;
|
|
155120
156550
|
jira_setBoardViewStatusColumnMapping?: Maybe<JiraSetBoardViewStatusColumnMappingPayload>;
|
|
155121
156551
|
jira_setBoardViewSwimlaneState?: Maybe<JiraSetBoardViewSwimlaneStatePayload>;
|
|
155122
156552
|
jira_setBoardViewWorkflowSelected?: Maybe<JiraSetBoardViewWorkflowSelectedPayload>;
|
|
@@ -155221,6 +156651,7 @@ export declare type Mutation = {
|
|
|
155221
156651
|
kitsune_resyncFeedback?: Maybe<KitsuneJob>;
|
|
155222
156652
|
kitsune_syncCsmProperties?: Maybe<KitsuneJob>;
|
|
155223
156653
|
kitsune_syncCustomerFields?: Maybe<KitsuneJob>;
|
|
156654
|
+
kitsune_syncCustomers?: Maybe<KitsuneJob>;
|
|
155224
156655
|
kitsune_updateCustomer?: Maybe<KitsuneCustomer>;
|
|
155225
156656
|
kitsune_updateFeedback?: Maybe<KitsuneFeedback>;
|
|
155226
156657
|
kitsune_updateField?: Maybe<KitsuneField>;
|
|
@@ -155332,6 +156763,7 @@ export declare type Mutation = {
|
|
|
155332
156763
|
projects_setWatchingProject?: Maybe<TownsquareProjectsSetWatchingProjectPayload>;
|
|
155333
156764
|
projects_shareProject?: Maybe<TownsquareProjectsShareProjectPayload>;
|
|
155334
156765
|
projects_shareUpdate?: Maybe<TownsquareProjectsShareUpdatePayload>;
|
|
156766
|
+
projects_updateAppPermissionPolicies?: Maybe<TownsquareUpdateProjectsAppPermissionPoliciesPayload>;
|
|
155335
156767
|
publicLinkPagesAdminAction?: Maybe<PublicLinkPagesAdminActionPayload>;
|
|
155336
156768
|
publicLinkSpacesAction?: Maybe<PublicLinkSpacesActionPayload>;
|
|
155337
156769
|
radar_clearFocusAreaProposals?: Maybe<RadarMutationResponse>;
|
|
@@ -155955,8 +157387,8 @@ export declare type MutationAgentWorkspace_CancelRoutingTableGenerationArgs = {
|
|
|
155955
157387
|
export declare type MutationAgentWorkspace_CreateAndLinkTeamsFromGroupsArgs = {
|
|
155956
157388
|
input: AgentWorkspaceCreateAndLinkTeamsInput;
|
|
155957
157389
|
};
|
|
155958
|
-
export declare type
|
|
155959
|
-
input:
|
|
157390
|
+
export declare type MutationAgentWorkspace_CreateDraftedRoutingTableEntriesArgs = {
|
|
157391
|
+
input: AgentWorkspaceCreateDraftedRoutingTableEntriesInput;
|
|
155960
157392
|
};
|
|
155961
157393
|
export declare type MutationAgentWorkspace_CreateScheduleArgs = {
|
|
155962
157394
|
input: AgentWorkspaceCreateScheduleInput;
|
|
@@ -155964,12 +157396,18 @@ export declare type MutationAgentWorkspace_CreateScheduleArgs = {
|
|
|
155964
157396
|
export declare type MutationAgentWorkspace_CreateSkillArgs = {
|
|
155965
157397
|
input: AgentWorkspaceSkillCreateInput;
|
|
155966
157398
|
};
|
|
157399
|
+
export declare type MutationAgentWorkspace_DeleteCoverShiftArgs = {
|
|
157400
|
+
input: AgentWorkspaceDeleteCoverShiftInput;
|
|
157401
|
+
};
|
|
155967
157402
|
export declare type MutationAgentWorkspace_DeleteScheduleArgs = {
|
|
155968
157403
|
input: AgentWorkspaceDeleteScheduleInput;
|
|
155969
157404
|
};
|
|
155970
157405
|
export declare type MutationAgentWorkspace_DeleteShiftArgs = {
|
|
155971
157406
|
input: AgentWorkspaceDeleteShiftInput;
|
|
155972
157407
|
};
|
|
157408
|
+
export declare type MutationAgentWorkspace_EditCoverShiftArgs = {
|
|
157409
|
+
input: AgentWorkspaceEditCoverShiftInput;
|
|
157410
|
+
};
|
|
155973
157411
|
export declare type MutationAgentWorkspace_EditShiftArgs = {
|
|
155974
157412
|
input: AgentWorkspaceEditShiftInput;
|
|
155975
157413
|
};
|
|
@@ -155986,6 +157424,9 @@ export declare type MutationAgentWorkspace_SetAvailabilityStatusArgs = {
|
|
|
155986
157424
|
export declare type MutationAgentWorkspace_SetDefaultCapacityArgs = {
|
|
155987
157425
|
input: AgentWorkspaceSetDefaultCapacityInput;
|
|
155988
157426
|
};
|
|
157427
|
+
export declare type MutationAgentWorkspace_SetDraftedRoutingTableServiceFieldArgs = {
|
|
157428
|
+
input: AgentWorkspaceSetDraftedRoutingTableServiceFieldInput;
|
|
157429
|
+
};
|
|
155989
157430
|
export declare type MutationAgentWorkspace_SetProjectDefaultAvailabilityArgs = {
|
|
155990
157431
|
input: AgentWorkspaceSetProjectDefaultAvailabilityInput;
|
|
155991
157432
|
};
|
|
@@ -156011,6 +157452,12 @@ export declare type MutationAgentWorkspace_UpdateRoutingConfigArgs = {
|
|
|
156011
157452
|
export declare type MutationAgentWorkspace_UpdateScheduleArgs = {
|
|
156012
157453
|
input: AgentWorkspaceUpdateScheduleInput;
|
|
156013
157454
|
};
|
|
157455
|
+
export declare type MutationAgentWorkspace_UpdateSkillArgs = {
|
|
157456
|
+
input: AgentWorkspaceSkillUpdateInput;
|
|
157457
|
+
};
|
|
157458
|
+
export declare type MutationAgentWorkspace_UpdateSkillCategoryArgs = {
|
|
157459
|
+
input: AgentWorkspaceSkillCategoryUpdateInput;
|
|
157460
|
+
};
|
|
156014
157461
|
export declare type MutationAgentWorkspace_UpdateSmartRoutingConfigArgs = {
|
|
156015
157462
|
input: AgentWorkspaceUpdateSmartRoutingConfigInput;
|
|
156016
157463
|
};
|
|
@@ -156020,6 +157467,9 @@ export declare type MutationAgentWorkspace_UpsertDraftedRoutingTableEntryArgs =
|
|
|
156020
157467
|
export declare type MutationAiCoreApi_InitiateCsvExportArgs = {
|
|
156021
157468
|
input: AiCoreApiCsvExportInput;
|
|
156022
157469
|
};
|
|
157470
|
+
export declare type MutationAiCoreApi_InitiateRsaReportArgs = {
|
|
157471
|
+
input: AiCoreApiRsaReportInput;
|
|
157472
|
+
};
|
|
156023
157473
|
export declare type MutationAiManagedObject_CreateAiManagedObjectArgs = {
|
|
156024
157474
|
cloudId: Scalars['ID']['input'];
|
|
156025
157475
|
input: AiManagedObjectCreateInput;
|
|
@@ -156035,9 +157485,6 @@ export declare type MutationAiManagedObject_UpdateAiManagedObjectArgs = {
|
|
|
156035
157485
|
id: Scalars['ID']['input'];
|
|
156036
157486
|
input: AiManagedObjectUpdateInput;
|
|
156037
157487
|
};
|
|
156038
|
-
export declare type MutationAiops_CreateInvestigationArgs = {
|
|
156039
|
-
input: AiOpsCreateInvestigationInput;
|
|
156040
|
-
};
|
|
156041
157488
|
export declare type MutationAiops_TriggerInvestigationArgs = {
|
|
156042
157489
|
cloudId: Scalars['ID']['input'];
|
|
156043
157490
|
input: AiOpsTriggerInvestigationInput;
|
|
@@ -156374,9 +157821,15 @@ export declare type MutationAssetsDm_UpdateDefaultCleansingRuleArgs = {
|
|
|
156374
157821
|
input: AssetsDmUpdateDefaultCleansingRuleInput;
|
|
156375
157822
|
workspaceId: Scalars['ID']['input'];
|
|
156376
157823
|
};
|
|
157824
|
+
export declare type MutationAssetsVertical_ArchiveInsightArgs = {
|
|
157825
|
+
input: AssetsVerticalArchiveInsightInput;
|
|
157826
|
+
};
|
|
156377
157827
|
export declare type MutationAssetsVertical_CreateAssetTypesTrackingsArgs = {
|
|
156378
157828
|
input: AssetsVerticalCreateAssetTypesTrackingsInput;
|
|
156379
157829
|
};
|
|
157830
|
+
export declare type MutationAssetsVertical_CreateCustomInsightArgs = {
|
|
157831
|
+
input: AssetsVerticalCreateCustomInsightInput;
|
|
157832
|
+
};
|
|
156380
157833
|
export declare type MutationAssetsVertical_CreateDepreciationRuleArgs = {
|
|
156381
157834
|
input: AssetsVerticalCreateDepreciationRuleInput;
|
|
156382
157835
|
};
|
|
@@ -156395,6 +157848,9 @@ export declare type MutationAssetsVertical_CreateVerticalInstantiationCategoryAr
|
|
|
156395
157848
|
export declare type MutationAssetsVertical_DeleteAssetTypesTrackingArgs = {
|
|
156396
157849
|
input: AssetsVerticalDeleteAssetTypesTrackingInput;
|
|
156397
157850
|
};
|
|
157851
|
+
export declare type MutationAssetsVertical_DeleteCustomInsightArgs = {
|
|
157852
|
+
input: AssetsVerticalDeleteCustomInsightInput;
|
|
157853
|
+
};
|
|
156398
157854
|
export declare type MutationAssetsVertical_DeleteDepreciationRuleArgs = {
|
|
156399
157855
|
input: AssetsVerticalDeleteDepreciationRuleInput;
|
|
156400
157856
|
};
|
|
@@ -156404,12 +157860,21 @@ export declare type MutationAssetsVertical_DeleteItemMappingArgs = {
|
|
|
156404
157860
|
export declare type MutationAssetsVertical_DeleteRoleAssignmentsArgs = {
|
|
156405
157861
|
input: AssetsVerticalDeleteRoleAssignmentsInput;
|
|
156406
157862
|
};
|
|
157863
|
+
export declare type MutationAssetsVertical_EnableCustomInsightArgs = {
|
|
157864
|
+
input: AssetsVerticalEnableCustomInsightInput;
|
|
157865
|
+
};
|
|
157866
|
+
export declare type MutationAssetsVertical_GenerateCustomInsightArgs = {
|
|
157867
|
+
input: AssetsVerticalGenerateCustomInsightInput;
|
|
157868
|
+
};
|
|
156407
157869
|
export declare type MutationAssetsVertical_GenerateInsightsArgs = {
|
|
156408
157870
|
input: AssetsVerticalGenerateInsightsInput;
|
|
156409
157871
|
};
|
|
156410
157872
|
export declare type MutationAssetsVertical_InstantiateBundleByTypeArgs = {
|
|
156411
157873
|
input: AssetsVerticalInstantiateBundleByTypeInput;
|
|
156412
157874
|
};
|
|
157875
|
+
export declare type MutationAssetsVertical_UpdateCustomInsightArgs = {
|
|
157876
|
+
input: AssetsVerticalUpdateCustomInsightInput;
|
|
157877
|
+
};
|
|
156413
157878
|
export declare type MutationAssetsVertical_UpdateDepreciationRuleArgs = {
|
|
156414
157879
|
input: AssetsVerticalUpdateDepreciationRuleInput;
|
|
156415
157880
|
};
|
|
@@ -156525,6 +157990,9 @@ export declare type MutationAvp_UnstarDashboardArgs = {
|
|
|
156525
157990
|
export declare type MutationAvp_UpdateChartArgs = {
|
|
156526
157991
|
input: AvpUpdateChartInput;
|
|
156527
157992
|
};
|
|
157993
|
+
export declare type MutationAvp_UpdateChartByConfigIdArgs = {
|
|
157994
|
+
input: AvpUpdateChartByConfigIdInput;
|
|
157995
|
+
};
|
|
156528
157996
|
export declare type MutationAvp_UpdateDashboardArgs = {
|
|
156529
157997
|
input: AvpUpdateDashboardInput;
|
|
156530
157998
|
};
|
|
@@ -156879,6 +158347,10 @@ export declare type MutationConfluence_DeleteTopicArgs = {
|
|
|
156879
158347
|
cloudId: Scalars['ID']['input'];
|
|
156880
158348
|
input: ConfluenceDeleteTopicInput;
|
|
156881
158349
|
};
|
|
158350
|
+
export declare type MutationConfluence_DisableSystemRoleArgs = {
|
|
158351
|
+
cloudId: Scalars['ID']['input'];
|
|
158352
|
+
input: ConfluenceDisableSystemRoleInput;
|
|
158353
|
+
};
|
|
156882
158354
|
export declare type MutationConfluence_EnableGlobalAnonymousEnforcementArgs = {
|
|
156883
158355
|
cloudId: Scalars['ID']['input'];
|
|
156884
158356
|
};
|
|
@@ -157005,6 +158477,10 @@ export declare type MutationConfluence_PatchCalendarArgs = {
|
|
|
157005
158477
|
cloudId: Scalars['ID']['input'];
|
|
157006
158478
|
input: ConfluencePatchCalendarInput;
|
|
157007
158479
|
};
|
|
158480
|
+
export declare type MutationConfluence_PatchSpaceSettingsArgs = {
|
|
158481
|
+
cloudId: Scalars['ID']['input'];
|
|
158482
|
+
input: ConfluencePatchSpaceSettingsInput;
|
|
158483
|
+
};
|
|
157008
158484
|
export declare type MutationConfluence_PublishBlueprintSharedDraftArgs = {
|
|
157009
158485
|
cloudId: Scalars['ID']['input'];
|
|
157010
158486
|
input?: InputMaybe<ConfluencePublishBlueprintSharedDraftInput>;
|
|
@@ -157054,6 +158530,10 @@ export declare type MutationConfluence_RestoreContentVersionArgs = {
|
|
|
157054
158530
|
cloudId: Scalars['ID']['input'];
|
|
157055
158531
|
input?: InputMaybe<ConfluenceRestoreContentVersionInput>;
|
|
157056
158532
|
};
|
|
158533
|
+
export declare type MutationConfluence_RestoreSystemRoleArgs = {
|
|
158534
|
+
cloudId: Scalars['ID']['input'];
|
|
158535
|
+
input: ConfluenceRestoreSystemRoleInput;
|
|
158536
|
+
};
|
|
157057
158537
|
export declare type MutationConfluence_SendToDesktopArgs = {
|
|
157058
158538
|
cloudId: Scalars['ID']['input'];
|
|
157059
158539
|
input: ConfluenceSendToDesktopRequestInput;
|
|
@@ -157076,6 +158556,10 @@ export declare type MutationConfluence_SetSubCalendarReminderArgs = {
|
|
|
157076
158556
|
cloudId: Scalars['ID']['input'];
|
|
157077
158557
|
input: ConfluenceSetSubCalendarReminderInput;
|
|
157078
158558
|
};
|
|
158559
|
+
export declare type MutationConfluence_SetSystemOperationRoleConfigurationArgs = {
|
|
158560
|
+
cloudId: Scalars['ID']['input'];
|
|
158561
|
+
input: ConfluenceSetSystemOperationRoleConfigurationInput;
|
|
158562
|
+
};
|
|
157079
158563
|
export declare type MutationConfluence_ShareContentArgs = {
|
|
157080
158564
|
ContentShareRequestInput?: InputMaybe<ConfluenceContentShareRequestInput>;
|
|
157081
158565
|
cloudId: Scalars['ID']['input'];
|
|
@@ -157334,6 +158818,12 @@ export declare type MutationCpls_AddContributorWorkAssociationArgs = {
|
|
|
157334
158818
|
export declare type MutationCpls_AddWorkScopeAssociationsArgs = {
|
|
157335
158819
|
input: CplsAddWorkScopeAssociationsInput;
|
|
157336
158820
|
};
|
|
158821
|
+
export declare type MutationCpls_CopyContributorToWorksArgs = {
|
|
158822
|
+
input: CplsCopyContributorToWorksInput;
|
|
158823
|
+
};
|
|
158824
|
+
export declare type MutationCpls_CopyWorkToContributorsArgs = {
|
|
158825
|
+
input: CplsCopyWorkToContributorsInput;
|
|
158826
|
+
};
|
|
157337
158827
|
export declare type MutationCpls_CreateCustomContributionTargetArgs = {
|
|
157338
158828
|
input: CplsCreateCustomContributionTargetInput;
|
|
157339
158829
|
};
|
|
@@ -157644,6 +159134,10 @@ export declare type MutationCsmAi_UpdateWidgetArgs = {
|
|
|
157644
159134
|
input: CsmAiWidgetUpdateInput;
|
|
157645
159135
|
widgetId: Scalars['ID']['input'];
|
|
157646
159136
|
};
|
|
159137
|
+
export declare type MutationCsm_UpdateCustomerNameArgs = {
|
|
159138
|
+
cloudId: Scalars['ID']['input'];
|
|
159139
|
+
input: CustomerServiceUpdateCustomerNameInput;
|
|
159140
|
+
};
|
|
157647
159141
|
export declare type MutationCsm_UpdateLiveChatSettingsArgs = {
|
|
157648
159142
|
cloudId: Scalars['ID']['input'];
|
|
157649
159143
|
input: CustomerServiceLiveChatSettingsInput;
|
|
@@ -157799,6 +159293,9 @@ export declare type MutationDevai_AutodevNextAddMembersArgs = {
|
|
|
157799
159293
|
export declare type MutationDevai_AutodevNextAddProjectsArgs = {
|
|
157800
159294
|
input: DevAiAutodevNextAddProjectsInput;
|
|
157801
159295
|
};
|
|
159296
|
+
export declare type MutationDevai_AutodevNextCompleteWorkItemRefinementArgs = {
|
|
159297
|
+
input: DevAiAutodevNextCompleteWorkItemRefinementInput;
|
|
159298
|
+
};
|
|
157802
159299
|
export declare type MutationDevai_AutodevNextCreateWorkstreamArgs = {
|
|
157803
159300
|
input: DevAiAutodevNextCreateWorkstreamInput;
|
|
157804
159301
|
};
|
|
@@ -157817,6 +159314,9 @@ export declare type MutationDevai_AutodevNextRemoveProjectsArgs = {
|
|
|
157817
159314
|
export declare type MutationDevai_AutodevNextSendWorkstreamNudgesArgs = {
|
|
157818
159315
|
input: DevAiAutodevNextSendWorkstreamNudgesInput;
|
|
157819
159316
|
};
|
|
159317
|
+
export declare type MutationDevai_AutodevNextTriggerWorkstreamScanArgs = {
|
|
159318
|
+
input: DevAiAutodevNextTriggerWorkstreamScanInput;
|
|
159319
|
+
};
|
|
157820
159320
|
export declare type MutationDevai_AutodevNextUpdateWorkstreamArgs = {
|
|
157821
159321
|
input: DevAiAutodevNextUpdateWorkstreamInput;
|
|
157822
159322
|
};
|
|
@@ -158028,6 +159528,9 @@ export declare type MutationGoals_CreateGoalTypePairArgs = {
|
|
|
158028
159528
|
export declare type MutationGoals_CreateLearningArgs = {
|
|
158029
159529
|
input: TownsquareGoalsCreateLearningInput;
|
|
158030
159530
|
};
|
|
159531
|
+
export declare type MutationGoals_CreateMetricValueArgs = {
|
|
159532
|
+
input: TownsquareGoalsCreateMetricValueInput;
|
|
159533
|
+
};
|
|
158031
159534
|
export declare type MutationGoals_CreateRiskArgs = {
|
|
158032
159535
|
input: TownsquareGoalsCreateRiskInput;
|
|
158033
159536
|
};
|
|
@@ -158130,9 +159633,15 @@ export declare type MutationGoals_RemoveUserCustomFieldValueArgs = {
|
|
|
158130
159633
|
export declare type MutationGoals_RemoveWatchersArgs = {
|
|
158131
159634
|
input: TownsquareGoalsRemoveWatchersInput;
|
|
158132
159635
|
};
|
|
159636
|
+
export declare type MutationGoals_RestoreGoalsArgs = {
|
|
159637
|
+
input: TownsquareGoalsRestoreGoalsInput;
|
|
159638
|
+
};
|
|
158133
159639
|
export declare type MutationGoals_RevokeAccessArgs = {
|
|
158134
159640
|
input: TownsquareGoalRevokeAccessInput;
|
|
158135
159641
|
};
|
|
159642
|
+
export declare type MutationGoals_SetParentGoalArgs = {
|
|
159643
|
+
input: TownsquareGoalsSetParentGoalInput;
|
|
159644
|
+
};
|
|
158136
159645
|
export declare type MutationGoals_SetRollupProgressArgs = {
|
|
158137
159646
|
input: TownsquareGoalsSetRollupProgressInput;
|
|
158138
159647
|
};
|
|
@@ -158151,12 +159660,18 @@ export declare type MutationGoals_ShareGoalArgs = {
|
|
|
158151
159660
|
export declare type MutationGoals_ShareUpdateArgs = {
|
|
158152
159661
|
input: TownsquareGoalsShareUpdateInput;
|
|
158153
159662
|
};
|
|
159663
|
+
export declare type MutationGoals_SoftDeleteGoalsArgs = {
|
|
159664
|
+
input: TownsquareGoalsSoftDeleteGoalsInput;
|
|
159665
|
+
};
|
|
158154
159666
|
export declare type MutationGoals_UnlinkJiraAlignProjectArgs = {
|
|
158155
159667
|
input: TownsquareGoalsUnlinkJiraAlignProjectInput;
|
|
158156
159668
|
};
|
|
158157
159669
|
export declare type MutationGoals_UnlinkWorkItemArgs = {
|
|
158158
159670
|
input?: InputMaybe<TownsquareGoalsUnlinkWorkItemInput>;
|
|
158159
159671
|
};
|
|
159672
|
+
export declare type MutationGoals_UpdateAppPermissionPoliciesArgs = {
|
|
159673
|
+
input: TownsquareUpdateGoalsAppPermissionPoliciesInput;
|
|
159674
|
+
};
|
|
158160
159675
|
export declare type MutationGrantContentAccessArgs = {
|
|
158161
159676
|
grantContentAccessInput: GrantContentAccessInput;
|
|
158162
159677
|
};
|
|
@@ -158169,9 +159684,15 @@ export declare type MutationGraphIntegration_AddTwgCapabilityContainerArgs = {
|
|
|
158169
159684
|
export declare type MutationGraphIntegration_CreateDataConnectorConnectionArgs = {
|
|
158170
159685
|
input: GraphIntegrationCreateDataConnectorConnectionInput;
|
|
158171
159686
|
};
|
|
159687
|
+
export declare type MutationGraphIntegration_CreateSkillArgs = {
|
|
159688
|
+
input: GraphIntegrationCreateSkillInput;
|
|
159689
|
+
};
|
|
158172
159690
|
export declare type MutationGraphIntegration_DeleteDataConnectorConnectionArgs = {
|
|
158173
159691
|
input: GraphIntegrationDeleteDataConnectorConnectionInput;
|
|
158174
159692
|
};
|
|
159693
|
+
export declare type MutationGraphIntegration_DeleteSkillArgs = {
|
|
159694
|
+
input: GraphIntegrationDeleteSkillInput;
|
|
159695
|
+
};
|
|
158175
159696
|
export declare type MutationGraphIntegration_McpAdminManagementRegisterMcpServerArgs = {
|
|
158176
159697
|
input: GraphIntegrationMcpAdminManagementRegisterMcpServerInput;
|
|
158177
159698
|
};
|
|
@@ -158196,6 +159717,9 @@ export declare type MutationGraphIntegration_SetTwgPlatformCapabilityGlobalAdmin
|
|
|
158196
159717
|
export declare type MutationGraphIntegration_UpdateDataConnectorConnectionArgs = {
|
|
158197
159718
|
input: GraphIntegrationUpdateDataConnectorConnectionInput;
|
|
158198
159719
|
};
|
|
159720
|
+
export declare type MutationGraphIntegration_UpdateSkillArgs = {
|
|
159721
|
+
input: GraphIntegrationUpdateSkillInput;
|
|
159722
|
+
};
|
|
158199
159723
|
export declare type MutationGravity_AddReactionArgs = {
|
|
158200
159724
|
cloudId: Scalars['ID']['input'];
|
|
158201
159725
|
input: GravityAddReactionInput;
|
|
@@ -158327,6 +159851,9 @@ export declare type MutationJira_CreateBoardViewStatusColumnArgs = {
|
|
|
158327
159851
|
export declare type MutationJira_CreateBoardViewsForWorkflowsArgs = {
|
|
158328
159852
|
input: JiraCreateBoardViewsForWorkflowsInput;
|
|
158329
159853
|
};
|
|
159854
|
+
export declare type MutationJira_CreateCategoryOptionArgs = {
|
|
159855
|
+
input: JiraCreateCategoryOptionInput;
|
|
159856
|
+
};
|
|
158330
159857
|
export declare type MutationJira_CreateCustomBackgroundArgs = {
|
|
158331
159858
|
input: JiraCreateCustomBackgroundInput;
|
|
158332
159859
|
};
|
|
@@ -158543,6 +160070,9 @@ export declare type MutationJira_SetBoardViewFilterArgs = {
|
|
|
158543
160070
|
export declare type MutationJira_SetBoardViewGroupByArgs = {
|
|
158544
160071
|
input: JiraSetBoardViewGroupByInput;
|
|
158545
160072
|
};
|
|
160073
|
+
export declare type MutationJira_SetBoardViewStatusColumnIssueCountLimitArgs = {
|
|
160074
|
+
input: JiraSetBoardViewStatusColumnIssueCountLimitInput;
|
|
160075
|
+
};
|
|
158546
160076
|
export declare type MutationJira_SetBoardViewStatusColumnMappingArgs = {
|
|
158547
160077
|
input: JiraSetBoardViewStatusColumnMappingInput;
|
|
158548
160078
|
};
|
|
@@ -158860,6 +160390,7 @@ export declare type MutationKitsune_CreateSpaceArgs = {
|
|
|
158860
160390
|
export declare type MutationKitsune_CreateViewArgs = {
|
|
158861
160391
|
config?: InputMaybe<KitsuneViewConfigInput>;
|
|
158862
160392
|
description?: InputMaybe<Scalars['String']['input']>;
|
|
160393
|
+
entityType?: InputMaybe<KitsuneEntityType>;
|
|
158863
160394
|
name: Scalars['String']['input'];
|
|
158864
160395
|
parentId?: InputMaybe<Scalars['ID']['input']>;
|
|
158865
160396
|
spaceAri: Scalars['ID']['input'];
|
|
@@ -158917,6 +160448,9 @@ export declare type MutationKitsune_SyncCsmPropertiesArgs = {
|
|
|
158917
160448
|
export declare type MutationKitsune_SyncCustomerFieldsArgs = {
|
|
158918
160449
|
workspaceAri: Scalars['ID']['input'];
|
|
158919
160450
|
};
|
|
160451
|
+
export declare type MutationKitsune_SyncCustomersArgs = {
|
|
160452
|
+
workspaceAri: Scalars['ID']['input'];
|
|
160453
|
+
};
|
|
158920
160454
|
export declare type MutationKitsune_UpdateCustomerArgs = {
|
|
158921
160455
|
ari: Scalars['ID']['input'];
|
|
158922
160456
|
name?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -159247,6 +160781,9 @@ export declare type MutationProjects_ShareProjectArgs = {
|
|
|
159247
160781
|
export declare type MutationProjects_ShareUpdateArgs = {
|
|
159248
160782
|
input: TownsquareProjectsShareUpdateInput;
|
|
159249
160783
|
};
|
|
160784
|
+
export declare type MutationProjects_UpdateAppPermissionPoliciesArgs = {
|
|
160785
|
+
input: TownsquareUpdateProjectsAppPermissionPoliciesInput;
|
|
160786
|
+
};
|
|
159250
160787
|
export declare type MutationPublicLinkPagesAdminActionArgs = {
|
|
159251
160788
|
action: PublicLinkAdminAction;
|
|
159252
160789
|
pageIds: Array<Scalars['ID']['input']>;
|
|
@@ -163307,6 +164844,7 @@ export declare type Query = {
|
|
|
163307
164844
|
agentStudio_scenarioListByContainerId?: Maybe<AgentStudioScenariosResult>;
|
|
163308
164845
|
agentStudio_scenariosByIds?: Maybe<Array<Maybe<AgentStudioScenario>>>;
|
|
163309
164846
|
agentStudio_suggestConversationStarters?: Maybe<AgentStudioSuggestConversationStartersResult>;
|
|
164847
|
+
agentStudio_testConversationListByContainerId?: Maybe<AgentStudioConversationListResult>;
|
|
163310
164848
|
agentStudio_toolIntegrations?: Maybe<AgentStudioToolIntegrationsConnection>;
|
|
163311
164849
|
agentStudio_tools?: Maybe<AgentStudioToolsConnection>;
|
|
163312
164850
|
agentStudio_validateScenario?: Maybe<AgentStudioScenarioValidationPayload>;
|
|
@@ -163314,6 +164852,8 @@ export declare type Query = {
|
|
|
163314
164852
|
agentStudio_widgetByContainerAri?: Maybe<AgentStudioWidgetByContainerAriResult>;
|
|
163315
164853
|
agentWorkspace_agentAvailability?: Maybe<AgentWorkspaceAgentAvailability>;
|
|
163316
164854
|
agentWorkspace_agentRebalancingRecommendations?: Maybe<Array<AgentWorkspaceIssueRebalancingRecommendation>>;
|
|
164855
|
+
agentWorkspace_agentUsersInProject?: Maybe<AgentWorkspaceUserConnection>;
|
|
164856
|
+
agentWorkspace_agentsMappedToSkillsInProject?: Maybe<AgentWorkspaceUserConnection>;
|
|
163317
164857
|
agentWorkspace_availability?: Maybe<AgentWorkspaceAvailabilityConnection>;
|
|
163318
164858
|
agentWorkspace_availabilityBypassingTeamLinkCheck?: Maybe<AgentWorkspaceAvailabilityResult>;
|
|
163319
164859
|
agentWorkspace_availableAgents?: Maybe<Array<AgentWorkspaceAgent>>;
|
|
@@ -163323,18 +164863,23 @@ export declare type Query = {
|
|
|
163323
164863
|
agentWorkspace_capacitySummary?: Maybe<AgentWorkspaceCapacitySummary>;
|
|
163324
164864
|
agentWorkspace_categorySkillsInProject?: Maybe<AgentWorkspaceSkillConnection>;
|
|
163325
164865
|
agentWorkspace_clusterServiceCategories?: Maybe<AgentWorkspaceServiceClusteringResult>;
|
|
164866
|
+
agentWorkspace_coverShiftEditBounds?: Maybe<AgentWorkspaceShiftEditBounds>;
|
|
163326
164867
|
agentWorkspace_defaultCapacity?: Maybe<AgentWorkspaceDefaultCapacity>;
|
|
163327
|
-
|
|
164868
|
+
agentWorkspace_draftedRoutingTableEntries?: Maybe<AgentWorkspaceDraftedRoutingTableEntries>;
|
|
164869
|
+
agentWorkspace_draftedRoutingTableStatus?: Maybe<AgentWorkspaceDraftedRoutingTableStatus>;
|
|
163328
164870
|
agentWorkspace_eligibleGroups?: Maybe<AgentWorkspaceEligibleGroupsPayload>;
|
|
164871
|
+
agentWorkspace_issueRoutingHistory?: Maybe<AgentWorkspaceIssueRoutingHistory>;
|
|
164872
|
+
agentWorkspace_liveRoutingTable?: Maybe<AgentWorkspaceLiveRoutingTable>;
|
|
163329
164873
|
agentWorkspace_projectDefaultAvailability?: Maybe<AgentWorkspaceProjectDefaultAvailability>;
|
|
164874
|
+
agentWorkspace_recommendedAgentsForCoverageGap?: Maybe<AgentWorkspaceRecommendedAgentsForCoverageGapPayload>;
|
|
163330
164875
|
agentWorkspace_recommendedAgentsForGap?: Maybe<Array<AgentWorkspaceAgent>>;
|
|
163331
164876
|
agentWorkspace_recommendedAssignees?: Maybe<AgentWorkspaceRecommendedAssigneesResponse>;
|
|
163332
164877
|
agentWorkspace_routingConfig?: Maybe<AgentWorkspaceSmartRoutingConfig>;
|
|
163333
|
-
agentWorkspace_routingSetupState?: Maybe<AgentWorkspaceRoutingSetupState>;
|
|
163334
|
-
agentWorkspace_routingTableEntries?: Maybe<AgentWorkspaceRoutingTableEntries>;
|
|
163335
164878
|
agentWorkspace_routingTableGenerationStatus?: Maybe<AgentWorkspaceRoutingTableGeneration>;
|
|
163336
164879
|
agentWorkspace_schedule?: Maybe<AgentWorkspaceSchedule>;
|
|
163337
164880
|
agentWorkspace_schedules?: Maybe<AgentWorkspaceSchedulesConnection>;
|
|
164881
|
+
agentWorkspace_services?: Maybe<AgentWorkspaceServiceConnection>;
|
|
164882
|
+
agentWorkspace_servicesMappedToSkillsInProject?: Maybe<AgentWorkspaceServiceConnection>;
|
|
163338
164883
|
agentWorkspace_shiftEditBounds?: Maybe<AgentWorkspaceShiftEditBounds>;
|
|
163339
164884
|
agentWorkspace_shifts?: Maybe<AgentWorkspaceShiftsConnection>;
|
|
163340
164885
|
agentWorkspace_skillCategories?: Maybe<AgentWorkspaceSkillCategoryConnection>;
|
|
@@ -163346,19 +164891,20 @@ export declare type Query = {
|
|
|
163346
164891
|
agentWorkspace_teamRebalancingRecommendations?: Maybe<Array<AgentWorkspaceIssueRebalancingRecommendation>>;
|
|
163347
164892
|
agentWorkspace_teamRebalancingSummaries?: Maybe<Array<AgentWorkspaceTeamRebalancingSummary>>;
|
|
163348
164893
|
agentWorkspace_teamSchedules?: Maybe<AgentWorkspaceTeamSchedulesConnection>;
|
|
164894
|
+
agentWorkspace_teamsConnectedToProject?: Maybe<AgentWorkspaceTeamConnection>;
|
|
163349
164895
|
agent_sessionAssociationQuery?: Maybe<AgentSessionAssociationConnection>;
|
|
163350
164896
|
agent_sessionQuery?: Maybe<AgentSessionConnection>;
|
|
164897
|
+
aiCoreApi_fetchRsaReport?: Maybe<AiCoreApiRsaFetchReportResult>;
|
|
163351
164898
|
aiCoreApi_vsaQuestionsByProject?: Maybe<AiCoreApiVsaQuestionsResult>;
|
|
163352
164899
|
aiCoreApi_vsaQuestionsByProjectAndType?: Maybe<AiCoreApiVsaQuestionsWithTypeResult>;
|
|
163353
164900
|
aiCoreApi_vsaReportingByProject?: Maybe<AiCoreApiVsaReportingResult>;
|
|
163354
164901
|
aiManagedObject_aiManagedObject?: Maybe<AiManagedObject>;
|
|
163355
164902
|
aiManagedObject_aiManagedObjectConfig?: Maybe<AiManagedObjectConfig>;
|
|
163356
164903
|
aiManagedObject_aiManagedObjectsByReferenceObjectAri?: Maybe<AiManagedObjectConnection>;
|
|
163357
|
-
aiops_echo?: Maybe<Scalars['String']['output']>;
|
|
163358
164904
|
aiops_incidentRelatedAlerts?: Maybe<AiOpsIncidentRelatedAlertsResponse>;
|
|
163359
164905
|
aiops_incidentSuggestion?: Maybe<AiOpsIncidentSuggestionResponse>;
|
|
164906
|
+
aiops_investigationById?: Maybe<AiOpsInvestigation>;
|
|
163360
164907
|
aiops_latestInvestigationByEntityTypeId?: Maybe<AiOpsInvestigationQueryResult>;
|
|
163361
|
-
aiops_latestInvestigationByIssueId?: Maybe<AiOpsInvestigationQueryResult>;
|
|
163362
164908
|
allIndividualSpaces?: Maybe<SpaceInfoConnection>;
|
|
163363
164909
|
allTemplates?: Maybe<PaginatedTemplateInfoList>;
|
|
163364
164910
|
allUpdatesFeed?: Maybe<PaginatedAllUpdatesFeed>;
|
|
@@ -163446,11 +164992,14 @@ export declare type Query = {
|
|
|
163446
164992
|
assetsDM_savedSearchDetails?: Maybe<AssetsDmSavedSearchDetails>;
|
|
163447
164993
|
assetsDM_savedSearchesList?: Maybe<AssetsDmSavedSearchesList>;
|
|
163448
164994
|
assetsDM_transformedData?: Maybe<AssetsDmTransformedDataResponse>;
|
|
164995
|
+
assetsVertical_allInsights?: Maybe<AssetsVerticalAllInsightsResult>;
|
|
163449
164996
|
assetsVertical_assetTypesTracking?: Maybe<AssetsVerticalAssetTypesTrackingResult>;
|
|
163450
164997
|
assetsVertical_assetTypesTrackings?: Maybe<AssetsVerticalAssetTypesTrackingConnection>;
|
|
163451
164998
|
assetsVertical_bundle?: Maybe<AssetsVerticalBundleResult>;
|
|
163452
164999
|
assetsVertical_configuredObjectTypes?: Maybe<AssetsVerticalObjectTypesResult>;
|
|
163453
165000
|
assetsVertical_countByStatus?: Maybe<AssetsVerticalCountByStatusResult>;
|
|
165001
|
+
assetsVertical_customInsightResult?: Maybe<AssetsVerticalCustomInsightResultUnion>;
|
|
165002
|
+
assetsVertical_customInsights?: Maybe<AssetsVerticalCustomInsightsResult>;
|
|
163454
165003
|
assetsVertical_depreciationRule?: Maybe<AssetsVerticalDepreciationRuleResult>;
|
|
163455
165004
|
assetsVertical_depreciationRules?: Maybe<AssetsVerticalDepreciationRuleConnection>;
|
|
163456
165005
|
assetsVertical_insightDefinitions?: Maybe<AssetsVerticalInsightDefinitionResult>;
|
|
@@ -163510,8 +165059,9 @@ export declare type Query = {
|
|
|
163510
165059
|
avp_getDashboardsByStatus?: Maybe<AvpDashboardsConnection>;
|
|
163511
165060
|
avp_getFilterExpression?: Maybe<AvpFilterExpression>;
|
|
163512
165061
|
avp_getReadOnlyDashboard?: Maybe<AvpDashboard>;
|
|
163513
|
-
avp_getRecentDashboards?: Maybe<Array<
|
|
165062
|
+
avp_getRecentDashboards?: Maybe<Array<AvpRecentDashboard>>;
|
|
163514
165063
|
avp_getStarredDashboards?: Maybe<Array<Scalars['String']['output']>>;
|
|
165064
|
+
avp_getWorkspaceExperience?: Maybe<AvpWorkspaceExperience>;
|
|
163515
165065
|
avp_searchDashboards?: Maybe<AvpDashboardsConnection>;
|
|
163516
165066
|
avpanalytics_getDataSource?: Maybe<AvpAnalyticsDataSource>;
|
|
163517
165067
|
avpanalytics_getDataSources?: Maybe<Array<AvpAnalyticsDataSource>>;
|
|
@@ -163686,6 +165236,7 @@ export declare type Query = {
|
|
|
163686
165236
|
confluence_isSpaceRoleAssignedToUserTypes?: Maybe<ConfluenceSpaceRoleAssigned>;
|
|
163687
165237
|
confluence_isWatchingLabel?: Maybe<ConfluenceLabelWatchStatus>;
|
|
163688
165238
|
confluence_latestInProgressSpacePermissionTransitionTaskId?: Maybe<Scalars['String']['output']>;
|
|
165239
|
+
confluence_latestInProgressSpacePermissionTransitionTaskProgress?: Maybe<ConfluenceSpacePermissionTransitionTaskProgress>;
|
|
163689
165240
|
confluence_latestKnowledgeGraphObjectV2?: Maybe<KnowledgeGraphObjectResponseV2>;
|
|
163690
165241
|
confluence_legacyEditorReportDownloadLink?: Maybe<ConfluenceLegacyEditorReportDownloadLink>;
|
|
163691
165242
|
confluence_loomEntryPoints?: Maybe<ConfluenceLoomEntryPoints>;
|
|
@@ -163754,6 +165305,7 @@ export declare type Query = {
|
|
|
163754
165305
|
confluence_subCalendarEmbedInfo?: Maybe<Array<Maybe<ConfluenceSubCalendarEmbedInfo>>>;
|
|
163755
165306
|
confluence_subCalendarSubscribersCount?: Maybe<ConfluenceSubCalendarSubscribersCount>;
|
|
163756
165307
|
confluence_subCalendarWatchingStatuses?: Maybe<Array<Maybe<ConfluenceSubCalendarWatchingStatus>>>;
|
|
165308
|
+
confluence_systemOperationRoleConfigurations?: Maybe<Array<Maybe<ConfluenceSystemOperationRoleConfiguration>>>;
|
|
163757
165309
|
confluence_teamAdminControlsSettings?: Maybe<ConfluenceTeamAdminControlsSettings>;
|
|
163758
165310
|
confluence_teamPresenceContentSetting?: Maybe<ConfluenceTeamPresence>;
|
|
163759
165311
|
confluence_teamPresenceSpaceSettings?: Maybe<ConfluenceTeamPresenceSpaceSettings>;
|
|
@@ -163883,6 +165435,7 @@ export declare type Query = {
|
|
|
163883
165435
|
devai_autodevJobsByAri?: Maybe<Array<Maybe<JiraAutodevJob>>>;
|
|
163884
165436
|
devai_autodevJobsForIssue?: Maybe<JiraAutodevJobConnection>;
|
|
163885
165437
|
devai_autodevNextAssignedWorkstreamTasks?: Maybe<DevAiAutodevNextAssignedWorkstreamTaskConnection>;
|
|
165438
|
+
devai_autodevNextJiraProjectAvailability?: Maybe<DevAiAutodevNextJiraProjectAvailabilityPayload>;
|
|
163886
165439
|
devai_autodevNextMyWorkItems?: Maybe<DevAiAutodevNextWorkItemConnection>;
|
|
163887
165440
|
devai_autodevNextWorkstream?: Maybe<DevAiAutodevNextWorkstream>;
|
|
163888
165441
|
devai_autodevNextWorkstreams?: Maybe<DevAiAutodevNextWorkstreamConnection>;
|
|
@@ -163972,6 +165525,7 @@ export declare type Query = {
|
|
|
163972
165525
|
globalSpaceConfiguration?: Maybe<GlobalSpaceConfiguration>;
|
|
163973
165526
|
goals_allWatchedGoalUpdates?: Maybe<TownsquareUpdateConnection>;
|
|
163974
165527
|
goals_allWatchedGoalUpdatesCount?: Maybe<Scalars['Int']['output']>;
|
|
165528
|
+
goals_appPermissionPolicies?: Maybe<TownsquareGoalsAppPermissionPolicyConnection>;
|
|
163975
165529
|
goals_appSettings?: Maybe<TownsquareGoalsAppSettings>;
|
|
163976
165530
|
goals_byId?: Maybe<TownsquareGoal>;
|
|
163977
165531
|
goals_byIds?: Maybe<Array<Maybe<TownsquareGoal>>>;
|
|
@@ -164127,6 +165681,7 @@ export declare type Query = {
|
|
|
164127
165681
|
jsmChannels_getExperienceConfigurationByProjectId: JsmChannelsExperienceConfigurationResult;
|
|
164128
165682
|
jsmChannels_getExperienceConfigurationByProjectIds: JsmChannelsExperienceConfigurationByProjectIdsResult;
|
|
164129
165683
|
jsmChannels_getResolutionPlanGraph?: Maybe<JsmChannelsResolutionPlanGraphResult>;
|
|
165684
|
+
jsmChannels_getRovoAgentsByProject?: Maybe<JsmChannelsRovoAgentsByProjectResult>;
|
|
164130
165685
|
jsmChannels_getServiceAgentResolutionStateByTicketId: JsmChannelsTicketServiceAgentResolutionStateResult;
|
|
164131
165686
|
jsmChannels_isPreviewModeEnabled?: Maybe<JsmChannelsPreviewModeResult>;
|
|
164132
165687
|
jsmChannels_rovoServiceAgentConfigByProjectId?: Maybe<JsmChannelsRovoServiceAgentConfigResult>;
|
|
@@ -164159,6 +165714,7 @@ export declare type Query = {
|
|
|
164159
165714
|
kitsune_searchFields?: Maybe<KitsuneFieldConnection>;
|
|
164160
165715
|
kitsune_searchInsights?: Maybe<KitsuneInsightConnection>;
|
|
164161
165716
|
kitsune_searchOrganizations?: Maybe<KitsuneOrganizationConnection>;
|
|
165717
|
+
kitsune_searchSnippets?: Maybe<KitsuneSnippetConnection>;
|
|
164162
165718
|
kitsune_sections?: Maybe<Array<Maybe<KitsuneSection>>>;
|
|
164163
165719
|
kitsune_snippets?: Maybe<Array<Maybe<KitsuneSnippet>>>;
|
|
164164
165720
|
kitsune_spaces?: Maybe<Array<Maybe<KitsuneSpace>>>;
|
|
@@ -164176,6 +165732,8 @@ export declare type Query = {
|
|
|
164176
165732
|
knowledgeDiscovery?: Maybe<KnowledgeDiscoveryQueryApi>;
|
|
164177
165733
|
labelSearch?: Maybe<LabelSearchResults>;
|
|
164178
165734
|
latestKnowledgeGraphObject?: Maybe<KnowledgeGraphObjectResponse>;
|
|
165735
|
+
learning?: Maybe<LearningQuery>;
|
|
165736
|
+
learning_healthCheck?: Maybe<Scalars['String']['output']>;
|
|
164179
165737
|
license?: Maybe<License>;
|
|
164180
165738
|
linksIncomingToConfluencePage?: Maybe<GraphStoreCypherQueryConnection>;
|
|
164181
165739
|
linksIncomingToJiraIssue?: Maybe<GraphStoreCypherQueryConnection>;
|
|
@@ -164212,6 +165770,7 @@ export declare type Query = {
|
|
|
164212
165770
|
loom_workspaceTrendingVideos?: Maybe<Array<Maybe<LoomVideo>>>;
|
|
164213
165771
|
loom_workspaces?: Maybe<Array<Maybe<LoomWorkspace>>>;
|
|
164214
165772
|
lpLearnerData?: Maybe<LpLearnerData>;
|
|
165773
|
+
m360Service_helloWorld?: Maybe<M360ServiceHelloWorldPayload>;
|
|
164215
165774
|
macroBodyRenderer?: Maybe<MacroBody>;
|
|
164216
165775
|
macros?: Maybe<MacroConnection>;
|
|
164217
165776
|
marketplaceApp?: Maybe<MarketplaceApp>;
|
|
@@ -164307,6 +165866,7 @@ export declare type Query = {
|
|
|
164307
165866
|
productListings: Array<ProductListingResult>;
|
|
164308
165867
|
projects_allWatchedProjectUpdates?: Maybe<TownsquareUpdateConnection>;
|
|
164309
165868
|
projects_allWatchedProjectUpdatesCount?: Maybe<Scalars['Int']['output']>;
|
|
165869
|
+
projects_appPermissionPolicies?: Maybe<TownsquareProjectsAppPermissionPolicyConnection>;
|
|
164310
165870
|
projects_appSettings?: Maybe<TownsquareProjectsAppSettings>;
|
|
164311
165871
|
projects_byAri?: Maybe<TownsquareProject>;
|
|
164312
165872
|
projects_byAris?: Maybe<Array<Maybe<TownsquareProject>>>;
|
|
@@ -164447,6 +166007,7 @@ export declare type Query = {
|
|
|
164447
166007
|
stakeholderComms_getComponentsWithUptimeByPageIdV2?: Maybe<StakeholderCommsNestedComponentWithUptimeConnection>;
|
|
164448
166008
|
stakeholderComms_getDraftComponentsByPageId?: Maybe<StakeholderCommsPageDraftComponentResponse>;
|
|
164449
166009
|
stakeholderComms_getDraftComponentsByPageIdV2?: Maybe<StakeholderCommsNestedComponentConnection>;
|
|
166010
|
+
stakeholderComms_getDraftEmailForIncident?: Maybe<StakeholderCommsDraftEmailResponse>;
|
|
164450
166011
|
stakeholderComms_getDraftPageById?: Maybe<StakeholderCommsPageResponse>;
|
|
164451
166012
|
stakeholderComms_getDraftPageByName?: Maybe<StakeholderCommsPageResponse>;
|
|
164452
166013
|
stakeholderComms_getFileReadMediaToken?: Maybe<StakeholderCommsMediaToken>;
|
|
@@ -164454,6 +166015,7 @@ export declare type Query = {
|
|
|
164454
166015
|
stakeholderComms_getIdentityGroupsForPage?: Maybe<StakeholderCommsIdentityGroupForPageConnection>;
|
|
164455
166016
|
stakeholderComms_getIncident?: Maybe<StakeholderCommsIncidentResponse>;
|
|
164456
166017
|
stakeholderComms_getIncidentTemplate?: Maybe<StakeholderCommsIncidentTemplateResponse>;
|
|
166018
|
+
stakeholderComms_getLatestIncidentUpdateStatus?: Maybe<StakeholderCommsLatestIncidentUpdateStatus>;
|
|
164457
166019
|
stakeholderComms_getLicenseUsageLimit?: Maybe<StakeholderCommsLicenseUsage>;
|
|
164458
166020
|
stakeholderComms_getMemberships?: Maybe<Array<Maybe<StakeholderCommsStakeholderGroupMembership>>>;
|
|
164459
166021
|
stakeholderComms_getOpsgenieRiskAssessment?: Maybe<StakeholderCommsOpsgenieRiskAssessmentResult>;
|
|
@@ -165179,6 +166741,15 @@ export declare type QueryAgentStudio_SuggestConversationStartersArgs = {
|
|
|
165179
166741
|
cloudId: Scalars['String']['input'];
|
|
165180
166742
|
input: AgentStudioSuggestConversationStartersInput;
|
|
165181
166743
|
};
|
|
166744
|
+
export declare type QueryAgentStudio_TestConversationListByContainerIdArgs = {
|
|
166745
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
166746
|
+
cloudId: Scalars['String']['input'];
|
|
166747
|
+
containerAri: Scalars['ID']['input'];
|
|
166748
|
+
experienceId: Scalars['String']['input'];
|
|
166749
|
+
filter?: InputMaybe<AgentStudioLiveConversationFilterInput>;
|
|
166750
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
166751
|
+
productType: AgentStudioProductType;
|
|
166752
|
+
};
|
|
165182
166753
|
export declare type QueryAgentStudio_ToolIntegrationsArgs = {
|
|
165183
166754
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
165184
166755
|
cloudId: Scalars['String']['input'];
|
|
@@ -165212,6 +166783,19 @@ export declare type QueryAgentWorkspace_AgentAvailabilityArgs = {
|
|
|
165212
166783
|
export declare type QueryAgentWorkspace_AgentRebalancingRecommendationsArgs = {
|
|
165213
166784
|
input: AgentWorkspaceAgentRebalancingRecommendationsInput;
|
|
165214
166785
|
};
|
|
166786
|
+
export declare type QueryAgentWorkspace_AgentUsersInProjectArgs = {
|
|
166787
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
166788
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
166789
|
+
projectId: Scalars['ID']['input'];
|
|
166790
|
+
query?: InputMaybe<Scalars['String']['input']>;
|
|
166791
|
+
};
|
|
166792
|
+
export declare type QueryAgentWorkspace_AgentsMappedToSkillsInProjectArgs = {
|
|
166793
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
166794
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
166795
|
+
projectId: Scalars['ID']['input'];
|
|
166796
|
+
query?: InputMaybe<Scalars['String']['input']>;
|
|
166797
|
+
skillIds?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
166798
|
+
};
|
|
165215
166799
|
export declare type QueryAgentWorkspace_AvailabilityArgs = {
|
|
165216
166800
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
165217
166801
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
@@ -165264,20 +166848,39 @@ export declare type QueryAgentWorkspace_ClusterServiceCategoriesArgs = {
|
|
|
165264
166848
|
projectKey: Scalars['String']['input'];
|
|
165265
166849
|
serviceFieldId: Scalars['String']['input'];
|
|
165266
166850
|
};
|
|
166851
|
+
export declare type QueryAgentWorkspace_CoverShiftEditBoundsArgs = {
|
|
166852
|
+
input: AgentWorkspaceCoverShiftEditBoundsInput;
|
|
166853
|
+
};
|
|
165267
166854
|
export declare type QueryAgentWorkspace_DefaultCapacityArgs = {
|
|
165268
166855
|
cloudId: Scalars['ID']['input'];
|
|
165269
166856
|
projectKey: Scalars['String']['input'];
|
|
165270
166857
|
};
|
|
165271
|
-
export declare type
|
|
165272
|
-
|
|
166858
|
+
export declare type QueryAgentWorkspace_DraftedRoutingTableEntriesArgs = {
|
|
166859
|
+
cloudId: Scalars['ID']['input'];
|
|
166860
|
+
projectKey: Scalars['String']['input'];
|
|
166861
|
+
};
|
|
166862
|
+
export declare type QueryAgentWorkspace_DraftedRoutingTableStatusArgs = {
|
|
166863
|
+
cloudId: Scalars['ID']['input'];
|
|
166864
|
+
projectKey: Scalars['String']['input'];
|
|
165273
166865
|
};
|
|
165274
166866
|
export declare type QueryAgentWorkspace_EligibleGroupsArgs = {
|
|
165275
166867
|
projectAri: Scalars['ID']['input'];
|
|
165276
166868
|
};
|
|
166869
|
+
export declare type QueryAgentWorkspace_IssueRoutingHistoryArgs = {
|
|
166870
|
+
cloudId: Scalars['ID']['input'];
|
|
166871
|
+
issueKey: Scalars['String']['input'];
|
|
166872
|
+
};
|
|
166873
|
+
export declare type QueryAgentWorkspace_LiveRoutingTableArgs = {
|
|
166874
|
+
cloudId: Scalars['ID']['input'];
|
|
166875
|
+
projectKey: Scalars['String']['input'];
|
|
166876
|
+
};
|
|
165277
166877
|
export declare type QueryAgentWorkspace_ProjectDefaultAvailabilityArgs = {
|
|
165278
166878
|
cloudId: Scalars['ID']['input'];
|
|
165279
166879
|
projectId: Scalars['ID']['input'];
|
|
165280
166880
|
};
|
|
166881
|
+
export declare type QueryAgentWorkspace_RecommendedAgentsForCoverageGapArgs = {
|
|
166882
|
+
input: AgentWorkspaceRecommendedAgentsForCoverageGapInput;
|
|
166883
|
+
};
|
|
165281
166884
|
export declare type QueryAgentWorkspace_RecommendedAgentsForGapArgs = {
|
|
165282
166885
|
input: AgentWorkspaceRecommendedAgentsForGapInput;
|
|
165283
166886
|
};
|
|
@@ -165290,12 +166893,6 @@ export declare type QueryAgentWorkspace_RoutingConfigArgs = {
|
|
|
165290
166893
|
cloudId: Scalars['ID']['input'];
|
|
165291
166894
|
projectKey: Scalars['String']['input'];
|
|
165292
166895
|
};
|
|
165293
|
-
export declare type QueryAgentWorkspace_RoutingSetupStateArgs = {
|
|
165294
|
-
projectAri: Scalars['ID']['input'];
|
|
165295
|
-
};
|
|
165296
|
-
export declare type QueryAgentWorkspace_RoutingTableEntriesArgs = {
|
|
165297
|
-
projectAri: Scalars['ID']['input'];
|
|
165298
|
-
};
|
|
165299
166896
|
export declare type QueryAgentWorkspace_RoutingTableGenerationStatusArgs = {
|
|
165300
166897
|
cloudId: Scalars['ID']['input'];
|
|
165301
166898
|
generationId: Scalars['ID']['input'];
|
|
@@ -165315,6 +166912,19 @@ export declare type QueryAgentWorkspace_SchedulesArgs = {
|
|
|
165315
166912
|
projectKey?: InputMaybe<Scalars['String']['input']>;
|
|
165316
166913
|
searchQuery?: InputMaybe<Scalars['String']['input']>;
|
|
165317
166914
|
};
|
|
166915
|
+
export declare type QueryAgentWorkspace_ServicesArgs = {
|
|
166916
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
166917
|
+
cloudId: Scalars['ID']['input'];
|
|
166918
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
166919
|
+
query?: InputMaybe<Scalars['String']['input']>;
|
|
166920
|
+
};
|
|
166921
|
+
export declare type QueryAgentWorkspace_ServicesMappedToSkillsInProjectArgs = {
|
|
166922
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
166923
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
166924
|
+
projectId: Scalars['ID']['input'];
|
|
166925
|
+
query?: InputMaybe<Scalars['String']['input']>;
|
|
166926
|
+
skillIds?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
166927
|
+
};
|
|
165318
166928
|
export declare type QueryAgentWorkspace_ShiftEditBoundsArgs = {
|
|
165319
166929
|
input: AgentWorkspaceShiftEditBoundsInput;
|
|
165320
166930
|
};
|
|
@@ -165336,6 +166946,7 @@ export declare type QueryAgentWorkspace_SkillCategoriesInProjectArgs = {
|
|
|
165336
166946
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
165337
166947
|
agentAccountIds?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
165338
166948
|
categoryIds?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
166949
|
+
categoryQuery?: InputMaybe<Scalars['String']['input']>;
|
|
165339
166950
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
165340
166951
|
projectId: Scalars['ID']['input'];
|
|
165341
166952
|
skillsQuery?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -165372,6 +166983,12 @@ export declare type QueryAgentWorkspace_TeamSchedulesArgs = {
|
|
|
165372
166983
|
input: AgentWorkspaceTeamSchedulesQueryInput;
|
|
165373
166984
|
isInitialFetch?: InputMaybe<Scalars['Boolean']['input']>;
|
|
165374
166985
|
};
|
|
166986
|
+
export declare type QueryAgentWorkspace_TeamsConnectedToProjectArgs = {
|
|
166987
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
166988
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
166989
|
+
projectId: Scalars['ID']['input'];
|
|
166990
|
+
query?: InputMaybe<Scalars['String']['input']>;
|
|
166991
|
+
};
|
|
165375
166992
|
export declare type QueryAgent_SessionAssociationQueryArgs = {
|
|
165376
166993
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
165377
166994
|
aqlQuery?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -165388,6 +167005,10 @@ export declare type QueryAgent_SessionQueryArgs = {
|
|
|
165388
167005
|
shardingContext?: InputMaybe<Scalars['String']['input']>;
|
|
165389
167006
|
sort?: InputMaybe<Scalars['String']['input']>;
|
|
165390
167007
|
};
|
|
167008
|
+
export declare type QueryAiCoreApi_FetchRsaReportArgs = {
|
|
167009
|
+
jobId: Scalars['ID']['input'];
|
|
167010
|
+
queryTypes?: InputMaybe<Array<AiCoreApiRsaQueryType>>;
|
|
167011
|
+
};
|
|
165391
167012
|
export declare type QueryAiCoreApi_VsaQuestionsByProjectArgs = {
|
|
165392
167013
|
projectAri: Scalars['ID']['input'];
|
|
165393
167014
|
};
|
|
@@ -165412,9 +167033,6 @@ export declare type QueryAiManagedObject_AiManagedObjectsByReferenceObjectAriArg
|
|
|
165412
167033
|
referenceObjectAri: Scalars['ID']['input'];
|
|
165413
167034
|
status?: InputMaybe<AiManagedObjectStatus>;
|
|
165414
167035
|
};
|
|
165415
|
-
export declare type QueryAiops_EchoArgs = {
|
|
165416
|
-
input?: InputMaybe<Scalars['String']['input']>;
|
|
165417
|
-
};
|
|
165418
167036
|
export declare type QueryAiops_IncidentRelatedAlertsArgs = {
|
|
165419
167037
|
cloudId: Scalars['ID']['input'];
|
|
165420
167038
|
filter: AiOpsIncidentRelatedAlertsInput;
|
|
@@ -165423,14 +167041,15 @@ export declare type QueryAiops_IncidentSuggestionArgs = {
|
|
|
165423
167041
|
cloudId: Scalars['ID']['input'];
|
|
165424
167042
|
issueKey: Scalars['String']['input'];
|
|
165425
167043
|
};
|
|
167044
|
+
export declare type QueryAiops_InvestigationByIdArgs = {
|
|
167045
|
+
cloudId: Scalars['ID']['input'];
|
|
167046
|
+
investigationId: Scalars['ID']['input'];
|
|
167047
|
+
};
|
|
165426
167048
|
export declare type QueryAiops_LatestInvestigationByEntityTypeIdArgs = {
|
|
165427
167049
|
cloudId: Scalars['ID']['input'];
|
|
165428
167050
|
entityId: Scalars['ID']['input'];
|
|
165429
167051
|
entityType: AiOpsInvestigationSourceEntityType;
|
|
165430
167052
|
};
|
|
165431
|
-
export declare type QueryAiops_LatestInvestigationByIssueIdArgs = {
|
|
165432
|
-
issueId: Scalars['ID']['input'];
|
|
165433
|
-
};
|
|
165434
167053
|
export declare type QueryAllIndividualSpacesArgs = {
|
|
165435
167054
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
165436
167055
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
@@ -165929,6 +167548,11 @@ export declare type QueryAssetsDm_TransformedDataArgs = {
|
|
|
165929
167548
|
pagination?: InputMaybe<AssetsDmPaginationInput>;
|
|
165930
167549
|
workspaceId: Scalars['ID']['input'];
|
|
165931
167550
|
};
|
|
167551
|
+
export declare type QueryAssetsVertical_AllInsightsArgs = {
|
|
167552
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
167553
|
+
cloudId: Scalars['ID']['input'];
|
|
167554
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
167555
|
+
};
|
|
165932
167556
|
export declare type QueryAssetsVertical_AssetTypesTrackingArgs = {
|
|
165933
167557
|
cloudId: Scalars['ID']['input'];
|
|
165934
167558
|
id: Scalars['ID']['input'];
|
|
@@ -165952,6 +167576,16 @@ export declare type QueryAssetsVertical_CountByStatusArgs = {
|
|
|
165952
167576
|
cloudId: Scalars['ID']['input'];
|
|
165953
167577
|
input: AssetsVerticalCountByStatusInput;
|
|
165954
167578
|
};
|
|
167579
|
+
export declare type QueryAssetsVertical_CustomInsightResultArgs = {
|
|
167580
|
+
cloudId: Scalars['ID']['input'];
|
|
167581
|
+
insightId: Scalars['ID']['input'];
|
|
167582
|
+
jobId?: InputMaybe<Scalars['ID']['input']>;
|
|
167583
|
+
};
|
|
167584
|
+
export declare type QueryAssetsVertical_CustomInsightsArgs = {
|
|
167585
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
167586
|
+
cloudId: Scalars['ID']['input'];
|
|
167587
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
167588
|
+
};
|
|
165955
167589
|
export declare type QueryAssetsVertical_DepreciationRuleArgs = {
|
|
165956
167590
|
cloudId: Scalars['ID']['input'];
|
|
165957
167591
|
id: Scalars['ID']['input'];
|
|
@@ -166210,6 +167844,10 @@ export declare type QueryAvp_GetStarredDashboardsArgs = {
|
|
|
166210
167844
|
principalAri: Scalars['ID']['input'];
|
|
166211
167845
|
workspaceAri: Scalars['ID']['input'];
|
|
166212
167846
|
};
|
|
167847
|
+
export declare type QueryAvp_GetWorkspaceExperienceArgs = {
|
|
167848
|
+
cloudId: Scalars['ID']['input'];
|
|
167849
|
+
workspaceAri: Scalars['ID']['input'];
|
|
167850
|
+
};
|
|
166213
167851
|
export declare type QueryAvp_SearchDashboardsArgs = {
|
|
166214
167852
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
166215
167853
|
cloudId: Scalars['ID']['input'];
|
|
@@ -166917,6 +168555,9 @@ export declare type QueryConfluence_IsWatchingLabelArgs = {
|
|
|
166917
168555
|
export declare type QueryConfluence_LatestInProgressSpacePermissionTransitionTaskIdArgs = {
|
|
166918
168556
|
cloudId: Scalars['ID']['input'];
|
|
166919
168557
|
};
|
|
168558
|
+
export declare type QueryConfluence_LatestInProgressSpacePermissionTransitionTaskProgressArgs = {
|
|
168559
|
+
cloudId: Scalars['ID']['input'];
|
|
168560
|
+
};
|
|
166920
168561
|
export declare type QueryConfluence_LatestKnowledgeGraphObjectV2Args = {
|
|
166921
168562
|
cloudId: Scalars['String']['input'];
|
|
166922
168563
|
contentId: Scalars['ID']['input'];
|
|
@@ -167255,6 +168896,9 @@ export declare type QueryConfluence_SubCalendarWatchingStatusesArgs = {
|
|
|
167255
168896
|
cloudId: Scalars['ID']['input'];
|
|
167256
168897
|
subCalendarIds?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
|
|
167257
168898
|
};
|
|
168899
|
+
export declare type QueryConfluence_SystemOperationRoleConfigurationsArgs = {
|
|
168900
|
+
cloudId: Scalars['ID']['input'];
|
|
168901
|
+
};
|
|
167258
168902
|
export declare type QueryConfluence_TeamAdminControlsSettingsArgs = {
|
|
167259
168903
|
cloudId: Scalars['ID']['input'];
|
|
167260
168904
|
};
|
|
@@ -167309,6 +168953,7 @@ export declare type QueryConfluence_ValidateCalendarJqlArgs = {
|
|
|
167309
168953
|
jql: Scalars['String']['input'];
|
|
167310
168954
|
};
|
|
167311
168955
|
export declare type QueryConfluence_ValidateConvertPageToMarkdownModeArgs = {
|
|
168956
|
+
adf?: InputMaybe<Scalars['String']['input']>;
|
|
167312
168957
|
cloudId: Scalars['ID']['input'];
|
|
167313
168958
|
contentId: Scalars['ID']['input'];
|
|
167314
168959
|
};
|
|
@@ -167879,6 +169524,10 @@ export declare type QueryDevai_AutodevNextAssignedWorkstreamTasksArgs = {
|
|
|
167879
169524
|
statuses?: InputMaybe<Array<DevAiAutodevNextWorkItemState>>;
|
|
167880
169525
|
workstreamId: Scalars['ID']['input'];
|
|
167881
169526
|
};
|
|
169527
|
+
export declare type QueryDevai_AutodevNextJiraProjectAvailabilityArgs = {
|
|
169528
|
+
cloudId: Scalars['ID']['input'];
|
|
169529
|
+
projectAris: Array<Scalars['ID']['input']>;
|
|
169530
|
+
};
|
|
167882
169531
|
export declare type QueryDevai_AutodevNextMyWorkItemsArgs = {
|
|
167883
169532
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
167884
169533
|
cloudId: Scalars['ID']['input'];
|
|
@@ -168152,6 +169801,7 @@ export declare type QueryFocus_ViewsSearchArgs = {
|
|
|
168152
169801
|
cloudId: Scalars['ID']['input'];
|
|
168153
169802
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
168154
169803
|
q?: InputMaybe<Scalars['String']['input']>;
|
|
169804
|
+
sort?: InputMaybe<Array<MercuryViewSort>>;
|
|
168155
169805
|
};
|
|
168156
169806
|
export declare type QueryForYouFeedArgs = {
|
|
168157
169807
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -168237,6 +169887,11 @@ export declare type QueryGoals_AllWatchedGoalUpdatesCountArgs = {
|
|
|
168237
169887
|
createdBefore?: InputMaybe<Scalars['DateTime']['input']>;
|
|
168238
169888
|
stateFilter?: InputMaybe<TownsquareUpdateStateFilter>;
|
|
168239
169889
|
};
|
|
169890
|
+
export declare type QueryGoals_AppPermissionPoliciesArgs = {
|
|
169891
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
169892
|
+
containerId: Scalars['ID']['input'];
|
|
169893
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
169894
|
+
};
|
|
168240
169895
|
export declare type QueryGoals_AppSettingsArgs = {
|
|
168241
169896
|
containerId: Scalars['ID']['input'];
|
|
168242
169897
|
};
|
|
@@ -168354,6 +170009,7 @@ export declare type QueryGraphIntegration_SkillDimensionMetadataArgs = {
|
|
|
168354
170009
|
export declare type QueryGraphIntegration_SkillItemsArgs = {
|
|
168355
170010
|
contextAri: Scalars['ID']['input'];
|
|
168356
170011
|
skillAris: Array<Scalars['ID']['input']>;
|
|
170012
|
+
surface?: InputMaybe<GraphIntegrationSkillSurface>;
|
|
168357
170013
|
};
|
|
168358
170014
|
export declare type QueryGraphIntegration_TwgCapabilityContainerArgs = {
|
|
168359
170015
|
contextAri: Scalars['ID']['input'];
|
|
@@ -168828,6 +170484,9 @@ export declare type QueryJsmChannels_GetResolutionPlanGraphArgs = {
|
|
|
168828
170484
|
jiraProjectAri: Scalars['ID']['input'];
|
|
168829
170485
|
planID: Scalars['ID']['input'];
|
|
168830
170486
|
};
|
|
170487
|
+
export declare type QueryJsmChannels_GetRovoAgentsByProjectArgs = {
|
|
170488
|
+
jiraProjectAri: Scalars['ID']['input'];
|
|
170489
|
+
};
|
|
168831
170490
|
export declare type QueryJsmChannels_GetServiceAgentResolutionStateByTicketIdArgs = {
|
|
168832
170491
|
jiraProjectAri: Scalars['ID']['input'];
|
|
168833
170492
|
ticketId: Scalars['ID']['input'];
|
|
@@ -168979,6 +170638,16 @@ export declare type QueryKitsune_SearchOrganizationsArgs = {
|
|
|
168979
170638
|
query?: InputMaybe<Scalars['String']['input']>;
|
|
168980
170639
|
workspaceAri: Scalars['ID']['input'];
|
|
168981
170640
|
};
|
|
170641
|
+
export declare type QueryKitsune_SearchSnippetsArgs = {
|
|
170642
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
170643
|
+
before?: InputMaybe<Scalars['String']['input']>;
|
|
170644
|
+
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
170645
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
170646
|
+
insightAri?: InputMaybe<Scalars['ID']['input']>;
|
|
170647
|
+
last?: InputMaybe<Scalars['Int']['input']>;
|
|
170648
|
+
query?: InputMaybe<Scalars['String']['input']>;
|
|
170649
|
+
workspaceAri: Scalars['ID']['input'];
|
|
170650
|
+
};
|
|
168982
170651
|
export declare type QueryKitsune_SectionsArgs = {
|
|
168983
170652
|
ids: Array<Scalars['ID']['input']>;
|
|
168984
170653
|
};
|
|
@@ -169144,6 +170813,9 @@ export declare type QueryLoom_WorkspaceTrendingVideosArgs = {
|
|
|
169144
170813
|
export declare type QueryLoom_WorkspacesArgs = {
|
|
169145
170814
|
ids: Array<Scalars['ID']['input']>;
|
|
169146
170815
|
};
|
|
170816
|
+
export declare type QueryM360Service_HelloWorldArgs = {
|
|
170817
|
+
name?: InputMaybe<Scalars['String']['input']>;
|
|
170818
|
+
};
|
|
169147
170819
|
export declare type QueryMacroBodyRendererArgs = {
|
|
169148
170820
|
adf: Scalars['String']['input'];
|
|
169149
170821
|
containedRender?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -169437,6 +171109,11 @@ export declare type QueryProjects_AllWatchedProjectUpdatesCountArgs = {
|
|
|
169437
171109
|
createdBefore?: InputMaybe<Scalars['DateTime']['input']>;
|
|
169438
171110
|
stateFilter?: InputMaybe<TownsquareUpdateStateFilter>;
|
|
169439
171111
|
};
|
|
171112
|
+
export declare type QueryProjects_AppPermissionPoliciesArgs = {
|
|
171113
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
171114
|
+
containerId: Scalars['ID']['input'];
|
|
171115
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
171116
|
+
};
|
|
169440
171117
|
export declare type QueryProjects_AppSettingsArgs = {
|
|
169441
171118
|
containerId: Scalars['ID']['input'];
|
|
169442
171119
|
};
|
|
@@ -170015,6 +171692,11 @@ export declare type QueryStakeholderComms_GetDraftComponentsByPageIdV2Args = {
|
|
|
170015
171692
|
cloudId?: InputMaybe<Scalars['String']['input']>;
|
|
170016
171693
|
nestedComponentConnectionInput: StakeholderCommsNestedComponentConnectionInput;
|
|
170017
171694
|
};
|
|
171695
|
+
export declare type QueryStakeholderComms_GetDraftEmailForIncidentArgs = {
|
|
171696
|
+
audienceType: StakeholderCommsDraftEmailAudienceType;
|
|
171697
|
+
cloudId?: InputMaybe<Scalars['String']['input']>;
|
|
171698
|
+
incidentId: Scalars['String']['input'];
|
|
171699
|
+
};
|
|
170018
171700
|
export declare type QueryStakeholderComms_GetDraftPageByIdArgs = {
|
|
170019
171701
|
cloudId?: InputMaybe<Scalars['String']['input']>;
|
|
170020
171702
|
pageId: Scalars['String']['input'];
|
|
@@ -170046,6 +171728,10 @@ export declare type QueryStakeholderComms_GetIncidentTemplateArgs = {
|
|
|
170046
171728
|
cloudId?: InputMaybe<Scalars['String']['input']>;
|
|
170047
171729
|
incidentTemplateId: Scalars['String']['input'];
|
|
170048
171730
|
};
|
|
171731
|
+
export declare type QueryStakeholderComms_GetLatestIncidentUpdateStatusArgs = {
|
|
171732
|
+
cloudId?: InputMaybe<Scalars['String']['input']>;
|
|
171733
|
+
incidentId: Scalars['String']['input'];
|
|
171734
|
+
};
|
|
170049
171735
|
export declare type QueryStakeholderComms_GetLicenseUsageLimitArgs = {
|
|
170050
171736
|
cloudId?: InputMaybe<Scalars['String']['input']>;
|
|
170051
171737
|
};
|
|
@@ -170993,6 +172679,8 @@ export declare type RadarMoney = {
|
|
|
170993
172679
|
__typename?: 'RadarMoney';
|
|
170994
172680
|
amount: Scalars['String']['output'];
|
|
170995
172681
|
currency: Scalars['String']['output'];
|
|
172682
|
+
displayValue?: Maybe<Scalars['String']['output']>;
|
|
172683
|
+
displayValueCompact?: Maybe<Scalars['String']['output']>;
|
|
170996
172684
|
};
|
|
170997
172685
|
export declare type RadarMoneyFieldValue = {
|
|
170998
172686
|
__typename?: 'RadarMoneyFieldValue';
|
|
@@ -172796,6 +174484,7 @@ export declare enum Scope {
|
|
|
172796
174484
|
DeleteConfluenceSpace = "DELETE_CONFLUENCE_SPACE",
|
|
172797
174485
|
DeleteConfluenceWhiteboard = "DELETE_CONFLUENCE_WHITEBOARD",
|
|
172798
174486
|
DeleteInsightJpd = "DELETE_INSIGHT_JPD",
|
|
174487
|
+
DeleteItamConfigJsm = "DELETE_ITAM_CONFIG_JSM",
|
|
172799
174488
|
DeleteJswBoardScopeAdmin = "DELETE_JSW_BOARD_SCOPE_ADMIN",
|
|
172800
174489
|
DeleteJswSprint = "DELETE_JSW_SPRINT",
|
|
172801
174490
|
DeleteOrganization = "DELETE_ORGANIZATION",
|
|
@@ -173013,8 +174702,13 @@ export declare enum Scope {
|
|
|
173013
174702
|
ReadFeedbackSource = "READ_FEEDBACK_SOURCE",
|
|
173014
174703
|
ReadFeedbackSpace = "READ_FEEDBACK_SPACE",
|
|
173015
174704
|
ReadFeedbackView = "READ_FEEDBACK_VIEW",
|
|
174705
|
+
ReadGuardDetectAlert = "READ_GUARD_DETECT_ALERT",
|
|
174706
|
+
ReadGuardDetectDetection = "READ_GUARD_DETECT_DETECTION",
|
|
174707
|
+
ReadGuardDetectDetectionSetting = "READ_GUARD_DETECT_DETECTION_SETTING",
|
|
174708
|
+
ReadGuardDetectSubscription = "READ_GUARD_DETECT_SUBSCRIPTION",
|
|
173016
174709
|
ReadHomeTwgCli = "READ_HOME_TWG_CLI",
|
|
173017
174710
|
ReadInsightJpd = "READ_INSIGHT_JPD",
|
|
174711
|
+
ReadItamConfigJsm = "READ_ITAM_CONFIG_JSM",
|
|
173018
174712
|
ReadJiraAlignTwgCli = "READ_JIRA_ALIGN_TWG_CLI",
|
|
173019
174713
|
ReadJiraUser = "READ_JIRA_USER",
|
|
173020
174714
|
ReadJiraWork = "READ_JIRA_WORK",
|
|
@@ -173169,8 +174863,15 @@ export declare enum Scope {
|
|
|
173169
174863
|
WriteFeedbackJob = "WRITE_FEEDBACK_JOB",
|
|
173170
174864
|
WriteFeedbackSpace = "WRITE_FEEDBACK_SPACE",
|
|
173171
174865
|
WriteFeedbackView = "WRITE_FEEDBACK_VIEW",
|
|
174866
|
+
WriteGuardDetectAlert = "WRITE_GUARD_DETECT_ALERT",
|
|
174867
|
+
WriteGuardDetectDetection = "WRITE_GUARD_DETECT_DETECTION",
|
|
174868
|
+
WriteGuardDetectDetectionSetting = "WRITE_GUARD_DETECT_DETECTION_SETTING",
|
|
174869
|
+
WriteGuardDetectRedaction = "WRITE_GUARD_DETECT_REDACTION",
|
|
174870
|
+
WriteGuardDetectRestoration = "WRITE_GUARD_DETECT_RESTORATION",
|
|
174871
|
+
WriteGuardDetectSubscription = "WRITE_GUARD_DETECT_SUBSCRIPTION",
|
|
173172
174872
|
WriteHomeTwgCli = "WRITE_HOME_TWG_CLI",
|
|
173173
174873
|
WriteInsightJpd = "WRITE_INSIGHT_JPD",
|
|
174874
|
+
WriteItamConfigJsm = "WRITE_ITAM_CONFIG_JSM",
|
|
173174
174875
|
WriteJiraWork = "WRITE_JIRA_WORK",
|
|
173175
174876
|
WriteJsmTwgCli = "WRITE_JSM_TWG_CLI",
|
|
173176
174877
|
WriteJswBoardScope = "WRITE_JSW_BOARD_SCOPE",
|
|
@@ -173583,6 +175284,7 @@ export declare type SearchItemConnection = {
|
|
|
173583
175284
|
isCachedResult?: Maybe<Scalars['Boolean']['output']>;
|
|
173584
175285
|
pageInfo: PageInfo;
|
|
173585
175286
|
queryInfo?: Maybe<SearchQueryInfo>;
|
|
175287
|
+
scrapingMetadata?: Maybe<SearchScrapingMetadata>;
|
|
173586
175288
|
searchSessionId?: Maybe<Scalars['String']['output']>;
|
|
173587
175289
|
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
173588
175290
|
totalCounts: Array<SearchProductCount>;
|
|
@@ -173627,6 +175329,7 @@ export declare type SearchLayerDefinition = {
|
|
|
173627
175329
|
layerId?: InputMaybe<Scalars['String']['input']>;
|
|
173628
175330
|
providerId?: InputMaybe<Scalars['String']['input']>;
|
|
173629
175331
|
shadowId?: InputMaybe<Scalars['String']['input']>;
|
|
175332
|
+
statsigLayerId?: InputMaybe<Scalars['String']['input']>;
|
|
173630
175333
|
subEntity?: InputMaybe<Scalars['String']['input']>;
|
|
173631
175334
|
};
|
|
173632
175335
|
export declare enum SearchLinkedEntitiesType {
|
|
@@ -174077,6 +175780,7 @@ export declare type SearchResultGraphDocument = SearchL2FeatureProvider & Search
|
|
|
174077
175780
|
subtype?: Maybe<Scalars['String']['output']>;
|
|
174078
175781
|
tabs?: Maybe<Array<SearchResultGraphTab>>;
|
|
174079
175782
|
title: Scalars['String']['output'];
|
|
175783
|
+
topReaction?: Maybe<SearchSlackReaction>;
|
|
174080
175784
|
type: SearchResultType;
|
|
174081
175785
|
url: Scalars['String']['output'];
|
|
174082
175786
|
workspaceName?: Maybe<Scalars['String']['output']>;
|
|
@@ -174411,6 +176115,18 @@ export declare type SearchSalesforceFilters = {
|
|
|
174411
176115
|
owners?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
174412
176116
|
stage?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
174413
176117
|
};
|
|
176118
|
+
export declare type SearchScrapingMetadata = {
|
|
176119
|
+
__typename?: 'SearchScrapingMetadata';
|
|
176120
|
+
queryIntelligenceResultJson?: Maybe<Scalars['String']['output']>;
|
|
176121
|
+
searchScrapingResponsesJson?: Maybe<Scalars['String']['output']>;
|
|
176122
|
+
searcherErrors?: Maybe<Array<SearchError>>;
|
|
176123
|
+
};
|
|
176124
|
+
export declare type SearchSlackReaction = {
|
|
176125
|
+
__typename?: 'SearchSlackReaction';
|
|
176126
|
+
count: Scalars['Int']['output'];
|
|
176127
|
+
emojiName: Scalars['String']['output'];
|
|
176128
|
+
emojiUrl?: Maybe<Scalars['String']['output']>;
|
|
176129
|
+
};
|
|
174414
176130
|
export declare type SearchSortInput = {
|
|
174415
176131
|
field: Scalars['String']['input'];
|
|
174416
176132
|
key?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -194696,6 +196412,7 @@ export declare type SpaceRoleUserPrincipal = SpaceRolePrincipal & {
|
|
|
194696
196412
|
};
|
|
194697
196413
|
export declare type SpaceSettings = {
|
|
194698
196414
|
__typename?: 'SpaceSettings';
|
|
196415
|
+
contentMode?: Maybe<Scalars['String']['output']>;
|
|
194699
196416
|
contentStateSettings: ContentStateSettings;
|
|
194700
196417
|
customHeaderAndFooter: SpaceSettingsMetadata;
|
|
194701
196418
|
editor?: Maybe<EditorVersionsMetadataDto>;
|
|
@@ -196301,6 +198018,11 @@ export declare type StakeholderCommsComponentUpdateInput = {
|
|
|
196301
198018
|
pageId: Scalars['String']['input'];
|
|
196302
198019
|
type?: InputMaybe<StakeholderCommsComponentType>;
|
|
196303
198020
|
};
|
|
198021
|
+
export declare enum StakeholderCommsComponentUpdateStatus {
|
|
198022
|
+
Completed = "COMPLETED",
|
|
198023
|
+
NotApplicable = "NOT_APPLICABLE",
|
|
198024
|
+
Pending = "PENDING"
|
|
198025
|
+
}
|
|
196304
198026
|
export declare type StakeholderCommsComponentUptimeDailyAggregate = {
|
|
196305
198027
|
__typename?: 'StakeholderCommsComponentUptimeDailyAggregate';
|
|
196306
198028
|
componentId: Scalars['String']['output'];
|
|
@@ -196445,6 +198167,16 @@ export declare type StakeholderCommsDnsRecordType = {
|
|
|
196445
198167
|
name: Scalars['String']['output'];
|
|
196446
198168
|
records: Array<StakeholderCommsDnsRecord>;
|
|
196447
198169
|
};
|
|
198170
|
+
export declare enum StakeholderCommsDraftEmailAudienceType {
|
|
198171
|
+
External = "EXTERNAL",
|
|
198172
|
+
Internal = "INTERNAL"
|
|
198173
|
+
}
|
|
198174
|
+
export declare type StakeholderCommsDraftEmailResponse = {
|
|
198175
|
+
__typename?: 'StakeholderCommsDraftEmailResponse';
|
|
198176
|
+
body?: Maybe<Scalars['String']['output']>;
|
|
198177
|
+
error?: Maybe<Scalars['String']['output']>;
|
|
198178
|
+
subject?: Maybe<Scalars['String']['output']>;
|
|
198179
|
+
};
|
|
196448
198180
|
export declare enum StakeholderCommsErrorType {
|
|
196449
198181
|
SystemError = "SYSTEM_ERROR",
|
|
196450
198182
|
ValidationError = "VALIDATION_ERROR"
|
|
@@ -196670,6 +198402,11 @@ export declare type StakeholderCommsJsmProductDetail = {
|
|
|
196670
198402
|
productKey?: Maybe<Scalars['String']['output']>;
|
|
196671
198403
|
skuId?: Maybe<Scalars['String']['output']>;
|
|
196672
198404
|
};
|
|
198405
|
+
export declare type StakeholderCommsLatestIncidentUpdateStatus = {
|
|
198406
|
+
__typename?: 'StakeholderCommsLatestIncidentUpdateStatus';
|
|
198407
|
+
incidentId: Scalars['String']['output'];
|
|
198408
|
+
overallStatus?: Maybe<StakeholderCommsComponentUpdateStatus>;
|
|
198409
|
+
};
|
|
196673
198410
|
export declare type StakeholderCommsLicenseLimit = {
|
|
196674
198411
|
__typename?: 'StakeholderCommsLicenseLimit';
|
|
196675
198412
|
availableLimit?: Maybe<Scalars['Int']['output']>;
|
|
@@ -197799,6 +199536,7 @@ export declare type Subscription = {
|
|
|
197799
199536
|
convoai_onAgentSessionCreate?: Maybe<ConvoAiAgentSessionCreate>;
|
|
197800
199537
|
convoai_onAgentSessionUpdate?: Maybe<ConvoAiAgentSessionUpdate>;
|
|
197801
199538
|
convoai_onAgentSessionUpdatedByProjects?: Maybe<ConvoAiAgentSessionUpdatedByProjects>;
|
|
199539
|
+
convoai_onSessionUpdateByScopeId?: Maybe<ConvoAiAgentSessionUpdatePayload>;
|
|
197802
199540
|
devOps?: Maybe<AriGraphSubscriptions>;
|
|
197803
199541
|
devai_onAutodevJobLogGroupsUpdated?: Maybe<DevAiAutodevLogGroupConnection>;
|
|
197804
199542
|
devai_onAutodevJobLogsListUpdated?: Maybe<DevAiAutodevLogConnection>;
|
|
@@ -197861,6 +199599,10 @@ export declare type SubscriptionConvoai_OnAgentSessionUpdatedByProjectsArgs = {
|
|
|
197861
199599
|
cloudId: Scalars['ID']['input'];
|
|
197862
199600
|
projectIds: Array<Scalars['String']['input']>;
|
|
197863
199601
|
};
|
|
199602
|
+
export declare type SubscriptionConvoai_OnSessionUpdateByScopeIdArgs = {
|
|
199603
|
+
cloudId: Scalars['ID']['input'];
|
|
199604
|
+
scopeId: Scalars['String']['input'];
|
|
199605
|
+
};
|
|
197864
199606
|
export declare type SubscriptionDevai_OnAutodevJobLogGroupsUpdatedArgs = {
|
|
197865
199607
|
cloudId: Scalars['ID']['input'];
|
|
197866
199608
|
jobId: Scalars['ID']['input'];
|
|
@@ -198833,6 +200575,7 @@ export declare type TeamMutation = {
|
|
|
198833
200575
|
linkExternalTeam?: Maybe<TeamLinkExternalTeamPayload>;
|
|
198834
200576
|
removeChild?: Maybe<TeamV2>;
|
|
198835
200577
|
removeParent?: Maybe<TeamV2>;
|
|
200578
|
+
restoreExternalTeam?: Maybe<TeamRestoreExternalTeamPayload>;
|
|
198836
200579
|
setNotificationConfiguration?: Maybe<TeamNotificationConfiguration>;
|
|
198837
200580
|
setScopeNotificationConfiguration?: Maybe<TeamScopeNotificationConfiguration>;
|
|
198838
200581
|
unlinkCustomFieldFromOption?: Maybe<TeamCustomFieldKeyValues>;
|
|
@@ -198918,6 +200661,9 @@ export declare type TeamMutationRemoveParentArgs = {
|
|
|
198918
200661
|
siteId: Scalars['ID']['input'];
|
|
198919
200662
|
teamId: Scalars['ID']['input'];
|
|
198920
200663
|
};
|
|
200664
|
+
export declare type TeamMutationRestoreExternalTeamArgs = {
|
|
200665
|
+
input: TeamRestoreExternalTeamInput;
|
|
200666
|
+
};
|
|
198921
200667
|
export declare type TeamMutationSetNotificationConfigurationArgs = {
|
|
198922
200668
|
input: TeamSetNotificationConfigurationInput;
|
|
198923
200669
|
};
|
|
@@ -199127,6 +200873,17 @@ export declare type TeamQueryTypesWithinScopeArgs = {
|
|
|
199127
200873
|
first?: Scalars['Int']['input'];
|
|
199128
200874
|
scopeId: Scalars['ID']['input'];
|
|
199129
200875
|
};
|
|
200876
|
+
export declare type TeamRestoreExternalTeamInput = {
|
|
200877
|
+
externalReference: TeamExternalReferenceInput;
|
|
200878
|
+
scopeId: Scalars['ID']['input'];
|
|
200879
|
+
teamId: Scalars['ID']['input'];
|
|
200880
|
+
};
|
|
200881
|
+
export declare type TeamRestoreExternalTeamPayload = Payload & {
|
|
200882
|
+
__typename?: 'TeamRestoreExternalTeamPayload';
|
|
200883
|
+
errors?: Maybe<Array<MutationError>>;
|
|
200884
|
+
success: Scalars['Boolean']['output'];
|
|
200885
|
+
teamId?: Maybe<Scalars['ID']['output']>;
|
|
200886
|
+
};
|
|
199130
200887
|
export declare enum TeamRole {
|
|
199131
200888
|
TeamsAdmin = "TEAMS_ADMIN",
|
|
199132
200889
|
TeamsObserver = "TEAMS_OBSERVER",
|
|
@@ -200553,9 +202310,11 @@ export declare type TownsquareGoal = Node & {
|
|
|
200553
202310
|
parentGoalSuggestions?: Maybe<TownsquareGoalConnection>;
|
|
200554
202311
|
progress?: Maybe<TownsquareGoalProgress>;
|
|
200555
202312
|
projects?: Maybe<TownsquareProjectConnection>;
|
|
202313
|
+
restrictedBy?: Maybe<TownsquareGoal>;
|
|
200556
202314
|
risks?: Maybe<TownsquareRiskConnection>;
|
|
200557
202315
|
scoringMode?: Maybe<TownsquareGoalScoringMode>;
|
|
200558
202316
|
slackChannels?: Maybe<TownsquareSlackConnectionConnection>;
|
|
202317
|
+
softDeleted?: Maybe<Scalars['Boolean']['output']>;
|
|
200559
202318
|
startDate?: Maybe<Scalars['Date']['output']>;
|
|
200560
202319
|
state?: Maybe<TownsquareGoalState>;
|
|
200561
202320
|
status?: Maybe<TownsquareStatus>;
|
|
@@ -200749,6 +202508,7 @@ export declare type TownsquareGoalCapabilities = {
|
|
|
200749
202508
|
canCommentOnGoal?: Maybe<Scalars['Boolean']['output']>;
|
|
200750
202509
|
canCommentOnUpdates?: Maybe<Scalars['Boolean']['output']>;
|
|
200751
202510
|
canCreateUpdates?: Maybe<Scalars['Boolean']['output']>;
|
|
202511
|
+
canDeleteGoal?: Maybe<Scalars['Boolean']['output']>;
|
|
200752
202512
|
canDeleteUpdates?: Maybe<Scalars['Boolean']['output']>;
|
|
200753
202513
|
canEditCustomFields?: Maybe<Scalars['Boolean']['output']>;
|
|
200754
202514
|
canEditMetadata?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -200833,8 +202593,12 @@ export declare type TownsquareGoalManageAccessInput = {
|
|
|
200833
202593
|
accessLevel?: InputMaybe<TownsquareGoalAccessLevel>;
|
|
200834
202594
|
added?: InputMaybe<TownsquareGoalManageAccessAddedInput>;
|
|
200835
202595
|
goalId: Scalars['ID']['input'];
|
|
202596
|
+
modified?: InputMaybe<TownsquareGoalManageAccessModifiedInput>;
|
|
200836
202597
|
revoked?: InputMaybe<TownsquareGoalManageAccessRevokedInput>;
|
|
200837
202598
|
};
|
|
202599
|
+
export declare type TownsquareGoalManageAccessModifiedInput = {
|
|
202600
|
+
roles: Array<TownsquareGoalRoleModifiedInput>;
|
|
202601
|
+
};
|
|
200838
202602
|
export declare type TownsquareGoalManageAccessPayload = {
|
|
200839
202603
|
__typename?: 'TownsquareGoalManageAccessPayload';
|
|
200840
202604
|
addedPrincipalEdges?: Maybe<Array<Maybe<TownsquareGoalAccessEdge>>>;
|
|
@@ -200887,6 +202651,7 @@ export declare type TownsquareGoalProgressTypeChange = {
|
|
|
200887
202651
|
__typename?: 'TownsquareGoalProgressTypeChange';
|
|
200888
202652
|
newProgressType: TownsquareGoalProgressType;
|
|
200889
202653
|
oldProgressType: TownsquareGoalProgressType;
|
|
202654
|
+
successMeasure?: Maybe<TownsquareGoalType>;
|
|
200890
202655
|
};
|
|
200891
202656
|
export declare type TownsquareGoalRenamedChange = {
|
|
200892
202657
|
__typename?: 'TownsquareGoalRenamedChange';
|
|
@@ -200908,6 +202673,10 @@ export declare type TownsquareGoalRevokeAccessPayload = {
|
|
|
200908
202673
|
revokedPrincipalIds?: Maybe<Array<Scalars['ID']['output']>>;
|
|
200909
202674
|
success: Scalars['Boolean']['output'];
|
|
200910
202675
|
};
|
|
202676
|
+
export declare type TownsquareGoalRoleModifiedInput = {
|
|
202677
|
+
principalId: Scalars['ID']['input'];
|
|
202678
|
+
role: TownsquareGoalAccessRoleInput;
|
|
202679
|
+
};
|
|
200911
202680
|
export declare enum TownsquareGoalScoringMode {
|
|
200912
202681
|
Okr = "OKR",
|
|
200913
202682
|
Simple = "SIMPLE"
|
|
@@ -201119,6 +202888,49 @@ export declare type TownsquareGoalsAddViewPayload = {
|
|
|
201119
202888
|
success: Scalars['Boolean']['output'];
|
|
201120
202889
|
views?: Maybe<TownsquareGoalUserViews>;
|
|
201121
202890
|
};
|
|
202891
|
+
export declare enum TownsquareGoalsAppPermission {
|
|
202892
|
+
Archive = "ARCHIVE",
|
|
202893
|
+
ConnectionsManage = "CONNECTIONS_MANAGE",
|
|
202894
|
+
Create = "CREATE",
|
|
202895
|
+
Manage = "MANAGE",
|
|
202896
|
+
Update = "UPDATE",
|
|
202897
|
+
ViewsExport = "VIEWS_EXPORT"
|
|
202898
|
+
}
|
|
202899
|
+
export declare type TownsquareGoalsAppPermissionEntry = {
|
|
202900
|
+
__typename?: 'TownsquareGoalsAppPermissionEntry';
|
|
202901
|
+
isPermitted?: Maybe<Scalars['Boolean']['output']>;
|
|
202902
|
+
permission?: Maybe<TownsquareGoalsAppPermission>;
|
|
202903
|
+
};
|
|
202904
|
+
export declare type TownsquareGoalsAppPermissionInput = {
|
|
202905
|
+
isPermitted: Scalars['Boolean']['input'];
|
|
202906
|
+
permission: TownsquareGoalsAppPermission;
|
|
202907
|
+
};
|
|
202908
|
+
export declare type TownsquareGoalsAppPermissionPolicy = Node & {
|
|
202909
|
+
__typename?: 'TownsquareGoalsAppPermissionPolicy';
|
|
202910
|
+
appPermissions?: Maybe<Array<Maybe<TownsquareGoalsAppPermissionEntry>>>;
|
|
202911
|
+
group?: Maybe<IdentityGroup>;
|
|
202912
|
+
id: Scalars['ID']['output'];
|
|
202913
|
+
isDefaultGroup?: Maybe<Scalars['Boolean']['output']>;
|
|
202914
|
+
isEditable?: Maybe<Scalars['Boolean']['output']>;
|
|
202915
|
+
productRoles?: Maybe<Array<Maybe<TownsquareProductRole>>>;
|
|
202916
|
+
resourceId: Scalars['ID']['output'];
|
|
202917
|
+
scopedGroupId: Scalars['ID']['output'];
|
|
202918
|
+
userCount?: Maybe<Scalars['Int']['output']>;
|
|
202919
|
+
};
|
|
202920
|
+
export declare type TownsquareGoalsAppPermissionPolicyConnection = {
|
|
202921
|
+
__typename?: 'TownsquareGoalsAppPermissionPolicyConnection';
|
|
202922
|
+
edges?: Maybe<Array<Maybe<TownsquareGoalsAppPermissionPolicyEdge>>>;
|
|
202923
|
+
pageInfo: PageInfo;
|
|
202924
|
+
};
|
|
202925
|
+
export declare type TownsquareGoalsAppPermissionPolicyEdge = {
|
|
202926
|
+
__typename?: 'TownsquareGoalsAppPermissionPolicyEdge';
|
|
202927
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
202928
|
+
node?: Maybe<TownsquareGoalsAppPermissionPolicy>;
|
|
202929
|
+
};
|
|
202930
|
+
export declare type TownsquareGoalsAppPermissionPolicyInput = {
|
|
202931
|
+
appPermissions: Array<TownsquareGoalsAppPermissionInput>;
|
|
202932
|
+
id: Scalars['ID']['input'];
|
|
202933
|
+
};
|
|
201122
202934
|
export declare type TownsquareGoalsAppSettings = {
|
|
201123
202935
|
__typename?: 'TownsquareGoalsAppSettings';
|
|
201124
202936
|
aiEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -201267,6 +203079,17 @@ export declare type TownsquareGoalsCreateLearningPayload = {
|
|
|
201267
203079
|
learning?: Maybe<TownsquareLearning>;
|
|
201268
203080
|
success: Scalars['Boolean']['output'];
|
|
201269
203081
|
};
|
|
203082
|
+
export declare type TownsquareGoalsCreateMetricValueInput = {
|
|
203083
|
+
metricId: Scalars['ID']['input'];
|
|
203084
|
+
time?: InputMaybe<Scalars['DateTime']['input']>;
|
|
203085
|
+
value: Scalars['Float']['input'];
|
|
203086
|
+
};
|
|
203087
|
+
export declare type TownsquareGoalsCreateMetricValuePayload = {
|
|
203088
|
+
__typename?: 'TownsquareGoalsCreateMetricValuePayload';
|
|
203089
|
+
errors?: Maybe<Array<MutationError>>;
|
|
203090
|
+
metricValue?: Maybe<TownsquareMetricValue>;
|
|
203091
|
+
success: Scalars['Boolean']['output'];
|
|
203092
|
+
};
|
|
201270
203093
|
export declare type TownsquareGoalsCreatePayload = {
|
|
201271
203094
|
__typename?: 'TownsquareGoalsCreatePayload';
|
|
201272
203095
|
errors?: Maybe<Array<MutationError>>;
|
|
@@ -201630,6 +203453,27 @@ export declare type TownsquareGoalsRemoveWatchersPayload = {
|
|
|
201630
203453
|
removedWatcherIds?: Maybe<Array<Scalars['ID']['output']>>;
|
|
201631
203454
|
success: Scalars['Boolean']['output'];
|
|
201632
203455
|
};
|
|
203456
|
+
export declare type TownsquareGoalsRestoreGoalsInput = {
|
|
203457
|
+
goalIds: Array<Scalars['ID']['input']>;
|
|
203458
|
+
};
|
|
203459
|
+
export declare type TownsquareGoalsRestoreGoalsPayload = {
|
|
203460
|
+
__typename?: 'TownsquareGoalsRestoreGoalsPayload';
|
|
203461
|
+
errors?: Maybe<Array<MutationError>>;
|
|
203462
|
+
restoredGoals?: Maybe<Array<TownsquareGoal>>;
|
|
203463
|
+
success: Scalars['Boolean']['output'];
|
|
203464
|
+
};
|
|
203465
|
+
export declare type TownsquareGoalsSetParentGoalInput = {
|
|
203466
|
+
goalId: Scalars['ID']['input'];
|
|
203467
|
+
parentGoalId?: InputMaybe<Scalars['ID']['input']>;
|
|
203468
|
+
};
|
|
203469
|
+
export declare type TownsquareGoalsSetParentGoalPayload = {
|
|
203470
|
+
__typename?: 'TownsquareGoalsSetParentGoalPayload';
|
|
203471
|
+
errors?: Maybe<Array<MutationError>>;
|
|
203472
|
+
goal?: Maybe<TownsquareGoal>;
|
|
203473
|
+
parentGoal?: Maybe<TownsquareGoal>;
|
|
203474
|
+
removedParentGoal?: Maybe<TownsquareGoal>;
|
|
203475
|
+
success: Scalars['Boolean']['output'];
|
|
203476
|
+
};
|
|
201633
203477
|
export declare type TownsquareGoalsSetRollupProgressInput = {
|
|
201634
203478
|
enableRollupProgress?: InputMaybe<Scalars['Boolean']['input']>;
|
|
201635
203479
|
goalId: Scalars['ID']['input'];
|
|
@@ -201698,6 +203542,15 @@ export declare type TownsquareGoalsShareUpdatePayload = {
|
|
|
201698
203542
|
isShared: Scalars['Boolean']['output'];
|
|
201699
203543
|
success: Scalars['Boolean']['output'];
|
|
201700
203544
|
};
|
|
203545
|
+
export declare type TownsquareGoalsSoftDeleteGoalsInput = {
|
|
203546
|
+
goalIds: Array<Scalars['ID']['input']>;
|
|
203547
|
+
};
|
|
203548
|
+
export declare type TownsquareGoalsSoftDeleteGoalsPayload = {
|
|
203549
|
+
__typename?: 'TownsquareGoalsSoftDeleteGoalsPayload';
|
|
203550
|
+
errors?: Maybe<Array<MutationError>>;
|
|
203551
|
+
softDeletedGoals?: Maybe<Array<TownsquareGoal>>;
|
|
203552
|
+
success: Scalars['Boolean']['output'];
|
|
203553
|
+
};
|
|
201701
203554
|
export declare type TownsquareGoalsUnlinkJiraAlignProjectInput = {
|
|
201702
203555
|
goalId: Scalars['ID']['input'];
|
|
201703
203556
|
jiraAlignProjectId: Scalars['ID']['input'];
|
|
@@ -202060,6 +203913,10 @@ export declare type TownsquareNumberCustomFieldDefinition = Node & TownsquareCus
|
|
|
202060
203913
|
token?: Maybe<Scalars['String']['output']>;
|
|
202061
203914
|
type?: Maybe<TownsquareCustomFieldType>;
|
|
202062
203915
|
};
|
|
203916
|
+
export declare type TownsquareProductRole = {
|
|
203917
|
+
__typename?: 'TownsquareProductRole';
|
|
203918
|
+
role: Scalars['ID']['output'];
|
|
203919
|
+
};
|
|
202063
203920
|
export declare type TownsquareProject = HasMercuryProjectFields & Node & {
|
|
202064
203921
|
__typename?: 'TownsquareProject';
|
|
202065
203922
|
access?: Maybe<TownsquareProjectAccessConnection>;
|
|
@@ -202109,6 +203966,7 @@ export declare type TownsquareProject = HasMercuryProjectFields & Node & {
|
|
|
202109
203966
|
msteamsChannels?: Maybe<TownsquareMsteamsConnectedChannelConnection>;
|
|
202110
203967
|
name: Scalars['String']['output'];
|
|
202111
203968
|
owner?: Maybe<User>;
|
|
203969
|
+
pendingAutoAttachMilestones?: Maybe<Array<TownsquareMilestone>>;
|
|
202112
203970
|
risks?: Maybe<TownsquareRiskConnection>;
|
|
202113
203971
|
slackChannels?: Maybe<TownsquareSlackConnectionConnection>;
|
|
202114
203972
|
startDate?: Maybe<Scalars['DateTime']['output']>;
|
|
@@ -202391,9 +204249,13 @@ export declare type TownsquareProjectManageAccessAddedInput = {
|
|
|
202391
204249
|
export declare type TownsquareProjectManageAccessInput = {
|
|
202392
204250
|
accessLevel?: InputMaybe<TownsquareProjectAccessLevel>;
|
|
202393
204251
|
added?: InputMaybe<TownsquareProjectManageAccessAddedInput>;
|
|
204252
|
+
modified?: InputMaybe<TownsquareProjectManageAccessModifiedInput>;
|
|
202394
204253
|
projectId: Scalars['ID']['input'];
|
|
202395
204254
|
revoked?: InputMaybe<TownsquareProjectManageAccessRevokedInput>;
|
|
202396
204255
|
};
|
|
204256
|
+
export declare type TownsquareProjectManageAccessModifiedInput = {
|
|
204257
|
+
roles: Array<TownsquareProjectRoleModifiedInput>;
|
|
204258
|
+
};
|
|
202397
204259
|
export declare type TownsquareProjectManageAccessPayload = {
|
|
202398
204260
|
__typename?: 'TownsquareProjectManageAccessPayload';
|
|
202399
204261
|
addedPrincipalEdges?: Maybe<Array<Maybe<TownsquareProjectAccessEdge>>>;
|
|
@@ -202428,6 +204290,10 @@ export declare type TownsquareProjectRevokeAccessPayload = {
|
|
|
202428
204290
|
revokedPrincipalIds?: Maybe<Array<Scalars['ID']['output']>>;
|
|
202429
204291
|
success: Scalars['Boolean']['output'];
|
|
202430
204292
|
};
|
|
204293
|
+
export declare type TownsquareProjectRoleModifiedInput = {
|
|
204294
|
+
principalId: Scalars['ID']['input'];
|
|
204295
|
+
role: TownsquareProjectAccessRoleInput;
|
|
204296
|
+
};
|
|
202431
204297
|
export declare enum TownsquareProjectSortEnum {
|
|
202432
204298
|
CreationDateAsc = "CREATION_DATE_ASC",
|
|
202433
204299
|
CreationDateDesc = "CREATION_DATE_DESC",
|
|
@@ -202601,6 +204467,49 @@ export declare type TownsquareProjectsAddViewPayload = {
|
|
|
202601
204467
|
success: Scalars['Boolean']['output'];
|
|
202602
204468
|
views?: Maybe<TownsquareProjectUserViews>;
|
|
202603
204469
|
};
|
|
204470
|
+
export declare enum TownsquareProjectsAppPermission {
|
|
204471
|
+
Archive = "ARCHIVE",
|
|
204472
|
+
ConnectionsManage = "CONNECTIONS_MANAGE",
|
|
204473
|
+
Create = "CREATE",
|
|
204474
|
+
Manage = "MANAGE",
|
|
204475
|
+
Update = "UPDATE",
|
|
204476
|
+
ViewsExport = "VIEWS_EXPORT"
|
|
204477
|
+
}
|
|
204478
|
+
export declare type TownsquareProjectsAppPermissionEntry = {
|
|
204479
|
+
__typename?: 'TownsquareProjectsAppPermissionEntry';
|
|
204480
|
+
isPermitted?: Maybe<Scalars['Boolean']['output']>;
|
|
204481
|
+
permission?: Maybe<TownsquareProjectsAppPermission>;
|
|
204482
|
+
};
|
|
204483
|
+
export declare type TownsquareProjectsAppPermissionInput = {
|
|
204484
|
+
isPermitted: Scalars['Boolean']['input'];
|
|
204485
|
+
permission: TownsquareProjectsAppPermission;
|
|
204486
|
+
};
|
|
204487
|
+
export declare type TownsquareProjectsAppPermissionPolicy = Node & {
|
|
204488
|
+
__typename?: 'TownsquareProjectsAppPermissionPolicy';
|
|
204489
|
+
appPermissions?: Maybe<Array<Maybe<TownsquareProjectsAppPermissionEntry>>>;
|
|
204490
|
+
group?: Maybe<IdentityGroup>;
|
|
204491
|
+
id: Scalars['ID']['output'];
|
|
204492
|
+
isDefaultGroup?: Maybe<Scalars['Boolean']['output']>;
|
|
204493
|
+
isEditable?: Maybe<Scalars['Boolean']['output']>;
|
|
204494
|
+
productRoles?: Maybe<Array<Maybe<TownsquareProductRole>>>;
|
|
204495
|
+
resourceId: Scalars['ID']['output'];
|
|
204496
|
+
scopedGroupId: Scalars['ID']['output'];
|
|
204497
|
+
userCount?: Maybe<Scalars['Int']['output']>;
|
|
204498
|
+
};
|
|
204499
|
+
export declare type TownsquareProjectsAppPermissionPolicyConnection = {
|
|
204500
|
+
__typename?: 'TownsquareProjectsAppPermissionPolicyConnection';
|
|
204501
|
+
edges?: Maybe<Array<Maybe<TownsquareProjectsAppPermissionPolicyEdge>>>;
|
|
204502
|
+
pageInfo: PageInfo;
|
|
204503
|
+
};
|
|
204504
|
+
export declare type TownsquareProjectsAppPermissionPolicyEdge = {
|
|
204505
|
+
__typename?: 'TownsquareProjectsAppPermissionPolicyEdge';
|
|
204506
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
204507
|
+
node?: Maybe<TownsquareProjectsAppPermissionPolicy>;
|
|
204508
|
+
};
|
|
204509
|
+
export declare type TownsquareProjectsAppPermissionPolicyInput = {
|
|
204510
|
+
appPermissions: Array<TownsquareProjectsAppPermissionInput>;
|
|
204511
|
+
id: Scalars['ID']['input'];
|
|
204512
|
+
};
|
|
202604
204513
|
export declare type TownsquareProjectsAppSettings = {
|
|
202605
204514
|
__typename?: 'TownsquareProjectsAppSettings';
|
|
202606
204515
|
aiEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -203248,6 +205157,7 @@ export declare type TownsquareSetParentGoalPayload = {
|
|
|
203248
205157
|
__typename?: 'TownsquareSetParentGoalPayload';
|
|
203249
205158
|
goal?: Maybe<TownsquareGoal>;
|
|
203250
205159
|
parentGoal?: Maybe<TownsquareGoal>;
|
|
205160
|
+
removedParentGoal?: Maybe<TownsquareGoal>;
|
|
203251
205161
|
};
|
|
203252
205162
|
export declare type TownsquareShareGoalUserInput = {
|
|
203253
205163
|
accountId?: InputMaybe<Scalars['ID']['input']>;
|
|
@@ -203545,6 +205455,16 @@ export declare type TownsquareUpdateEdge = {
|
|
|
203545
205455
|
cursor: Scalars['String']['output'];
|
|
203546
205456
|
node?: Maybe<TownsquareUpdate>;
|
|
203547
205457
|
};
|
|
205458
|
+
export declare type TownsquareUpdateGoalsAppPermissionPoliciesInput = {
|
|
205459
|
+
containerId: Scalars['ID']['input'];
|
|
205460
|
+
policies: Array<TownsquareGoalsAppPermissionPolicyInput>;
|
|
205461
|
+
};
|
|
205462
|
+
export declare type TownsquareUpdateGoalsAppPermissionPoliciesPayload = {
|
|
205463
|
+
__typename?: 'TownsquareUpdateGoalsAppPermissionPoliciesPayload';
|
|
205464
|
+
errors?: Maybe<Array<MutationError>>;
|
|
205465
|
+
success: Scalars['Boolean']['output'];
|
|
205466
|
+
updatedPolicies?: Maybe<Array<Maybe<TownsquareGoalsAppPermissionPolicy>>>;
|
|
205467
|
+
};
|
|
203548
205468
|
export declare type TownsquareUpdateHighlightInput = {
|
|
203549
205469
|
description: Scalars['String']['input'];
|
|
203550
205470
|
summary: Scalars['String']['input'];
|
|
@@ -203577,6 +205497,16 @@ export declare type TownsquareUpdateNoteInput = {
|
|
|
203577
205497
|
updateNoteId?: InputMaybe<Scalars['ID']['input']>;
|
|
203578
205498
|
uuid?: InputMaybe<Scalars['String']['input']>;
|
|
203579
205499
|
};
|
|
205500
|
+
export declare type TownsquareUpdateProjectsAppPermissionPoliciesInput = {
|
|
205501
|
+
containerId: Scalars['ID']['input'];
|
|
205502
|
+
policies: Array<TownsquareProjectsAppPermissionPolicyInput>;
|
|
205503
|
+
};
|
|
205504
|
+
export declare type TownsquareUpdateProjectsAppPermissionPoliciesPayload = {
|
|
205505
|
+
__typename?: 'TownsquareUpdateProjectsAppPermissionPoliciesPayload';
|
|
205506
|
+
errors?: Maybe<Array<MutationError>>;
|
|
205507
|
+
success: Scalars['Boolean']['output'];
|
|
205508
|
+
updatedPolicies?: Maybe<Array<Maybe<TownsquareProjectsAppPermissionPolicy>>>;
|
|
205509
|
+
};
|
|
203580
205510
|
export declare enum TownsquareUpdateStateFilter {
|
|
203581
205511
|
Active = "ACTIVE",
|
|
203582
205512
|
AtRisk = "AT_RISK",
|
|
@@ -203932,6 +205862,7 @@ export declare type TrelloAddMemberToCardPayload = Payload & {
|
|
|
203932
205862
|
success: Scalars['Boolean']['output'];
|
|
203933
205863
|
};
|
|
203934
205864
|
export declare type TrelloAddOnboardingInboxCardsCardInput = {
|
|
205865
|
+
complete?: InputMaybe<Scalars['Boolean']['input']>;
|
|
203935
205866
|
description?: InputMaybe<Scalars['String']['input']>;
|
|
203936
205867
|
externalSource?: InputMaybe<TrelloCardExternalSource>;
|
|
203937
205868
|
name: Scalars['String']['input'];
|
|
@@ -205427,6 +207358,7 @@ export declare type TrelloCloseBoardInput = {
|
|
|
205427
207358
|
export declare type TrelloCloseBoardPayload = Payload & {
|
|
205428
207359
|
__typename?: 'TrelloCloseBoardPayload';
|
|
205429
207360
|
board?: Maybe<TrelloBoard>;
|
|
207361
|
+
boardV2?: Maybe<TrelloBaseBoard>;
|
|
205430
207362
|
errors?: Maybe<Array<MutationError>>;
|
|
205431
207363
|
success: Scalars['Boolean']['output'];
|
|
205432
207364
|
};
|
|
@@ -205479,6 +207411,7 @@ export declare type TrelloCompleteOnboardingBoardInput = {
|
|
|
205479
207411
|
name: Scalars['String']['input'];
|
|
205480
207412
|
};
|
|
205481
207413
|
export declare type TrelloCompleteOnboardingCardInput = {
|
|
207414
|
+
complete?: InputMaybe<Scalars['Boolean']['input']>;
|
|
205482
207415
|
description?: InputMaybe<Scalars['String']['input']>;
|
|
205483
207416
|
name: Scalars['String']['input'];
|
|
205484
207417
|
position: Scalars['Float']['input'];
|
|
@@ -205500,6 +207433,7 @@ export declare type TrelloConvertBoardToTemplateInput = {
|
|
|
205500
207433
|
export declare type TrelloConvertBoardToTemplatePayload = Payload & {
|
|
205501
207434
|
__typename?: 'TrelloConvertBoardToTemplatePayload';
|
|
205502
207435
|
board?: Maybe<TrelloBoard>;
|
|
207436
|
+
boardV2?: Maybe<TrelloBaseBoard>;
|
|
205503
207437
|
errors?: Maybe<Array<MutationError>>;
|
|
205504
207438
|
success: Scalars['Boolean']['output'];
|
|
205505
207439
|
};
|
|
@@ -205509,6 +207443,7 @@ export declare type TrelloConvertTemplateToBoardInput = {
|
|
|
205509
207443
|
export declare type TrelloConvertTemplateToBoardPayload = Payload & {
|
|
205510
207444
|
__typename?: 'TrelloConvertTemplateToBoardPayload';
|
|
205511
207445
|
board?: Maybe<TrelloBoard>;
|
|
207446
|
+
boardV2?: Maybe<TrelloBaseBoard>;
|
|
205512
207447
|
errors?: Maybe<Array<MutationError>>;
|
|
205513
207448
|
success: Scalars['Boolean']['output'];
|
|
205514
207449
|
};
|
|
@@ -205629,6 +207564,7 @@ export declare type TrelloCreateBoardWithAiInput = {
|
|
|
205629
207564
|
export declare type TrelloCreateBoardWithAiPayload = Payload & {
|
|
205630
207565
|
__typename?: 'TrelloCreateBoardWithAiPayload';
|
|
205631
207566
|
board?: Maybe<TrelloBoard>;
|
|
207567
|
+
boardV2?: Maybe<TrelloBaseBoard>;
|
|
205632
207568
|
errors?: Maybe<Array<MutationError>>;
|
|
205633
207569
|
success: Scalars['Boolean']['output'];
|
|
205634
207570
|
};
|
|
@@ -205721,7 +207657,7 @@ export declare type TrelloCreateCheckItemInput = {
|
|
|
205721
207657
|
creationMethod?: InputMaybe<TrelloCheckItemCreationMethod>;
|
|
205722
207658
|
due?: InputMaybe<TrelloCheckItemDueInfoInput>;
|
|
205723
207659
|
name: Scalars['String']['input'];
|
|
205724
|
-
position?: InputMaybe<
|
|
207660
|
+
position?: InputMaybe<TrelloPosition>;
|
|
205725
207661
|
userId?: InputMaybe<Scalars['ID']['input']>;
|
|
205726
207662
|
};
|
|
205727
207663
|
export declare type TrelloCreateCheckItemPayload = Payload & {
|
|
@@ -206531,6 +208467,7 @@ export declare type TrelloLabelUpdatedConnection = {
|
|
|
206531
208467
|
nodes?: Maybe<Array<TrelloLabel>>;
|
|
206532
208468
|
};
|
|
206533
208469
|
export declare enum TrelloLabsFeature {
|
|
208470
|
+
AiBoardBuilder = "AI_BOARD_BUILDER",
|
|
206534
208471
|
GenerateChecklist = "GENERATE_CHECKLIST",
|
|
206535
208472
|
MergeCards = "MERGE_CARDS",
|
|
206536
208473
|
RovoChat = "ROVO_CHAT",
|
|
@@ -206862,6 +208799,7 @@ export declare type TrelloMemberOwnedWebhook = {
|
|
|
206862
208799
|
id: Scalars['ID']['output'];
|
|
206863
208800
|
modelId: Scalars['ID']['output'];
|
|
206864
208801
|
oauth2Client?: Maybe<TrelloMemberOwnedWebhookOAuth2Client>;
|
|
208802
|
+
tokenId?: Maybe<Scalars['ID']['output']>;
|
|
206865
208803
|
};
|
|
206866
208804
|
export declare type TrelloMemberOwnedWebhookConnection = {
|
|
206867
208805
|
__typename?: 'TrelloMemberOwnedWebhookConnection';
|
|
@@ -206972,6 +208910,7 @@ export declare type TrelloMirrorCard = {
|
|
|
206972
208910
|
id: Scalars['ID']['output'];
|
|
206973
208911
|
mirrorCard?: Maybe<TrelloBaseCard>;
|
|
206974
208912
|
sourceBoard?: Maybe<TrelloBoard>;
|
|
208913
|
+
sourceBoardV2?: Maybe<TrelloBaseBoard>;
|
|
206975
208914
|
sourceCard?: Maybe<TrelloBaseCard>;
|
|
206976
208915
|
};
|
|
206977
208916
|
export declare type TrelloMirrorCardConnection = {
|
|
@@ -207198,6 +209137,7 @@ export declare type TrelloMutationApi = {
|
|
|
207198
209137
|
updateCardName?: Maybe<TrelloUpdateCardNamePayload>;
|
|
207199
209138
|
updateCardPositionOnPlannerCalendarEvent?: Maybe<TrelloUpdateCardPositionOnPlannerCalendarEventPayload>;
|
|
207200
209139
|
updateCardRole?: Maybe<TrelloUpdateCardRolePayload>;
|
|
209140
|
+
updateCheckItem?: Maybe<TrelloUpdateCheckItemPayload>;
|
|
207201
209141
|
updateChecklistName?: Maybe<TrelloUpdateChecklistPayload>;
|
|
207202
209142
|
updateChecklistPosition?: Maybe<TrelloUpdateChecklistPayload>;
|
|
207203
209143
|
updateCustomField?: Maybe<TrelloUpdateCustomFieldPayload>;
|
|
@@ -207543,6 +209483,9 @@ export declare type TrelloMutationApiUpdateCardPositionOnPlannerCalendarEventArg
|
|
|
207543
209483
|
export declare type TrelloMutationApiUpdateCardRoleArgs = {
|
|
207544
209484
|
input: TrelloUpdateCardRoleInput;
|
|
207545
209485
|
};
|
|
209486
|
+
export declare type TrelloMutationApiUpdateCheckItemArgs = {
|
|
209487
|
+
input: TrelloUpdateCheckItemInput;
|
|
209488
|
+
};
|
|
207546
209489
|
export declare type TrelloMutationApiUpdateChecklistNameArgs = {
|
|
207547
209490
|
input: TrelloUpdateChecklistNameInput;
|
|
207548
209491
|
};
|
|
@@ -208713,6 +210656,7 @@ export declare type TrelloReactionLimits = {
|
|
|
208713
210656
|
};
|
|
208714
210657
|
export declare type TrelloRefreshManifestInput = {
|
|
208715
210658
|
cardId: Scalars['ID']['input'];
|
|
210659
|
+
prompt?: InputMaybe<Scalars['String']['input']>;
|
|
208716
210660
|
};
|
|
208717
210661
|
export declare type TrelloRefreshManifestPayload = Payload & {
|
|
208718
210662
|
__typename?: 'TrelloRefreshManifestPayload';
|
|
@@ -208847,6 +210791,7 @@ export declare type TrelloReopenBoardInput = {
|
|
|
208847
210791
|
export declare type TrelloReopenBoardPayload = Payload & {
|
|
208848
210792
|
__typename?: 'TrelloReopenBoardPayload';
|
|
208849
210793
|
board?: Maybe<TrelloBoard>;
|
|
210794
|
+
boardV2?: Maybe<TrelloBaseBoard>;
|
|
208850
210795
|
errors?: Maybe<Array<MutationError>>;
|
|
208851
210796
|
success: Scalars['Boolean']['output'];
|
|
208852
210797
|
};
|
|
@@ -209206,6 +211151,8 @@ export declare type TrelloUpdateApplicationIconInput = {
|
|
|
209206
211151
|
};
|
|
209207
211152
|
export declare type TrelloUpdateApplicationInput = {
|
|
209208
211153
|
author?: InputMaybe<Scalars['String']['input']>;
|
|
211154
|
+
capabilities?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
211155
|
+
capabilitiesOptions?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
209209
211156
|
categories?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
209210
211157
|
email?: InputMaybe<Scalars['String']['input']>;
|
|
209211
211158
|
icon?: InputMaybe<TrelloUpdateApplicationIconInput>;
|
|
@@ -209246,6 +211193,7 @@ export declare type TrelloUpdateBoardDescriptionInput = {
|
|
|
209246
211193
|
export declare type TrelloUpdateBoardDescriptionPayload = Payload & {
|
|
209247
211194
|
__typename?: 'TrelloUpdateBoardDescriptionPayload';
|
|
209248
211195
|
board?: Maybe<TrelloBoard>;
|
|
211196
|
+
boardV2?: Maybe<TrelloBaseBoard>;
|
|
209249
211197
|
errors?: Maybe<Array<MutationError>>;
|
|
209250
211198
|
success: Scalars['Boolean']['output'];
|
|
209251
211199
|
};
|
|
@@ -209358,6 +211306,7 @@ export declare type TrelloUpdateBoardVisibilityInput = {
|
|
|
209358
211306
|
export declare type TrelloUpdateBoardVisibilityPayload = Payload & {
|
|
209359
211307
|
__typename?: 'TrelloUpdateBoardVisibilityPayload';
|
|
209360
211308
|
board?: Maybe<TrelloBoard>;
|
|
211309
|
+
boardV2?: Maybe<TrelloBaseBoard>;
|
|
209361
211310
|
errors?: Maybe<Array<MutationError>>;
|
|
209362
211311
|
success: Scalars['Boolean']['output'];
|
|
209363
211312
|
};
|
|
@@ -209521,6 +211470,22 @@ export declare type TrelloUpdateCardRolePayload = Payload & {
|
|
|
209521
211470
|
errors?: Maybe<Array<MutationError>>;
|
|
209522
211471
|
success: Scalars['Boolean']['output'];
|
|
209523
211472
|
};
|
|
211473
|
+
export declare type TrelloUpdateCheckItemInput = {
|
|
211474
|
+
checkItemId: Scalars['ID']['input'];
|
|
211475
|
+
checklistId: Scalars['ID']['input'];
|
|
211476
|
+
due?: InputMaybe<TrelloCheckItemDueInfoInput>;
|
|
211477
|
+
name?: InputMaybe<Scalars['String']['input']>;
|
|
211478
|
+
position?: InputMaybe<TrelloPosition>;
|
|
211479
|
+
state?: InputMaybe<TrelloCheckItemState>;
|
|
211480
|
+
targetChecklistId?: InputMaybe<Scalars['ID']['input']>;
|
|
211481
|
+
userId?: InputMaybe<Scalars['ID']['input']>;
|
|
211482
|
+
};
|
|
211483
|
+
export declare type TrelloUpdateCheckItemPayload = Payload & {
|
|
211484
|
+
__typename?: 'TrelloUpdateCheckItemPayload';
|
|
211485
|
+
checkItem?: Maybe<TrelloCheckItem>;
|
|
211486
|
+
errors?: Maybe<Array<MutationError>>;
|
|
211487
|
+
success: Scalars['Boolean']['output'];
|
|
211488
|
+
};
|
|
209524
211489
|
export declare type TrelloUpdateCheckItemStateOnCardAction = TrelloAction & TrelloCardActionData & {
|
|
209525
211490
|
__typename?: 'TrelloUpdateCheckItemStateOnCardAction';
|
|
209526
211491
|
appCreator?: Maybe<TrelloAppCreator>;
|