@forge/cli-shared 8.23.0-next.7 → 8.23.0-next.8-experimental-2e302e1
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 +37 -0
- package/out/graphql/graphql-types.d.ts +944 -79
- package/out/graphql/graphql-types.d.ts.map +1 -1
- package/out/graphql/graphql-types.js +171 -45
- package/out/graphql/minimal-graphql-runner.d.ts.map +1 -1
- package/out/graphql/minimal-graphql-runner.js +1 -2
- package/out/shared/forge-cli-attribution.d.ts +6 -0
- package/out/shared/forge-cli-attribution.d.ts.map +1 -0
- package/out/shared/forge-cli-attribution.js +18 -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 +3 -0
- package/out/ui/text.d.ts.map +1 -1
- package/out/ui/text.js +3 -0
- package/package.json +2 -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,47 @@ 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
|
+
}
|
|
318
425
|
export declare enum AiOpsRcaMode {
|
|
319
426
|
Deep = "DEEP",
|
|
320
427
|
Fast = "FAST"
|
|
@@ -375,6 +482,18 @@ export declare enum AiOpsRelatedAlertStatus {
|
|
|
375
482
|
Resolved = "RESOLVED",
|
|
376
483
|
Snoozed = "SNOOZED"
|
|
377
484
|
}
|
|
485
|
+
export declare type AiOpsReviewRootCauseInput = {
|
|
486
|
+
investigationId: Scalars['ID']['input'];
|
|
487
|
+
rootCauseSuggestionId: Scalars['ID']['input'];
|
|
488
|
+
status: AiOpsLikelyRootCauseReviewStatus;
|
|
489
|
+
};
|
|
490
|
+
export declare type AiOpsReviewRootCausePayload = {
|
|
491
|
+
__typename?: 'AIOpsReviewRootCausePayload';
|
|
492
|
+
errors?: Maybe<Array<MutationError>>;
|
|
493
|
+
investigation?: Maybe<AiOpsInvestigation>;
|
|
494
|
+
rootCause?: Maybe<AiOpsLikelyRootCause>;
|
|
495
|
+
success: Scalars['Boolean']['output'];
|
|
496
|
+
};
|
|
378
497
|
export declare type AiOpsTriggerInvestigationInput = {
|
|
379
498
|
agentic?: InputMaybe<Scalars['Boolean']['input']>;
|
|
380
499
|
inScopeServiceIds: Array<Scalars['ID']['input']>;
|
|
@@ -2305,6 +2424,7 @@ export declare type AvpStarDashboardInput = {
|
|
|
2305
2424
|
};
|
|
2306
2425
|
export declare type AvpStarDashboardPayload = Payload & {
|
|
2307
2426
|
__typename?: 'AVPStarDashboardPayload';
|
|
2427
|
+
dashboard?: Maybe<AvpDashboard>;
|
|
2308
2428
|
errors?: Maybe<Array<MutationError>>;
|
|
2309
2429
|
success: Scalars['Boolean']['output'];
|
|
2310
2430
|
};
|
|
@@ -2339,9 +2459,16 @@ export declare type AvpUnstarDashboardInput = {
|
|
|
2339
2459
|
};
|
|
2340
2460
|
export declare type AvpUnstarDashboardPayload = Payload & {
|
|
2341
2461
|
__typename?: 'AVPUnstarDashboardPayload';
|
|
2462
|
+
dashboard?: Maybe<AvpDashboard>;
|
|
2342
2463
|
errors?: Maybe<Array<MutationError>>;
|
|
2343
2464
|
success: Scalars['Boolean']['output'];
|
|
2344
2465
|
};
|
|
2466
|
+
export declare type AvpUpdateChartByConfigIdInput = {
|
|
2467
|
+
chart: AvpChartInput;
|
|
2468
|
+
chartConfigId: Scalars['ID']['input'];
|
|
2469
|
+
cloudId: Scalars['ID']['input'];
|
|
2470
|
+
workspaceAri: Scalars['ID']['input'];
|
|
2471
|
+
};
|
|
2345
2472
|
export declare type AvpUpdateChartInput = {
|
|
2346
2473
|
chart: AvpChartInput;
|
|
2347
2474
|
chartAri: Scalars['ID']['input'];
|
|
@@ -6801,6 +6928,15 @@ export declare type AgentWorkspaceAgentCapacityEdge = {
|
|
|
6801
6928
|
cursor: Scalars['String']['output'];
|
|
6802
6929
|
node: AgentWorkspaceAgentCapacity;
|
|
6803
6930
|
};
|
|
6931
|
+
export declare type AgentWorkspaceAgentExclusionReason = {
|
|
6932
|
+
__typename?: 'AgentWorkspaceAgentExclusionReason';
|
|
6933
|
+
code: AgentWorkspaceAgentExclusionReasonCode;
|
|
6934
|
+
message?: Maybe<Scalars['String']['output']>;
|
|
6935
|
+
};
|
|
6936
|
+
export declare enum AgentWorkspaceAgentExclusionReasonCode {
|
|
6937
|
+
AssignedToSameSchedule = "ASSIGNED_TO_SAME_SCHEDULE",
|
|
6938
|
+
Unknown = "UNKNOWN"
|
|
6939
|
+
}
|
|
6804
6940
|
export declare type AgentWorkspaceAgentRebalancingRecommendationsInput = {
|
|
6805
6941
|
agentId: Scalars['ID']['input'];
|
|
6806
6942
|
projectARI: Scalars['ID']['input'];
|
|
@@ -7074,13 +7210,14 @@ export declare type AgentWorkspaceCreateAndLinkTeamsPayload = {
|
|
|
7074
7210
|
teamCreationFailures: Array<AgentWorkspaceTeamCreationFailure>;
|
|
7075
7211
|
teamLinkFailures: Array<AgentWorkspaceTeamLinkFailure>;
|
|
7076
7212
|
};
|
|
7077
|
-
export declare type
|
|
7213
|
+
export declare type AgentWorkspaceCreateDraftedRoutingTableEntriesInput = {
|
|
7214
|
+
cloudId: Scalars['ID']['input'];
|
|
7078
7215
|
cursor?: InputMaybe<Scalars['String']['input']>;
|
|
7079
7216
|
fieldId: Scalars['String']['input'];
|
|
7080
|
-
|
|
7217
|
+
projectKey: Scalars['String']['input'];
|
|
7081
7218
|
};
|
|
7082
|
-
export declare type
|
|
7083
|
-
__typename?: '
|
|
7219
|
+
export declare type AgentWorkspaceCreateDraftedRoutingTableEntriesPayload = {
|
|
7220
|
+
__typename?: 'AgentWorkspaceCreateDraftedRoutingTableEntriesPayload';
|
|
7084
7221
|
pageInfo: AgentWorkspacePageInfo;
|
|
7085
7222
|
rows: Array<AgentWorkspaceDraftedRoutingTableEntry>;
|
|
7086
7223
|
rowsInserted: Scalars['Int']['output'];
|
|
@@ -7131,6 +7268,11 @@ export declare type AgentWorkspaceDeleteCoverShiftInput = {
|
|
|
7131
7268
|
scheduleId: Scalars['ID']['input'];
|
|
7132
7269
|
shiftSegmentId: Scalars['ID']['input'];
|
|
7133
7270
|
};
|
|
7271
|
+
export declare type AgentWorkspaceDeleteCoverShiftPayload = {
|
|
7272
|
+
__typename?: 'AgentWorkspaceDeleteCoverShiftPayload';
|
|
7273
|
+
errors?: Maybe<Array<AgentWorkspaceScheduleError>>;
|
|
7274
|
+
success: Scalars['Boolean']['output'];
|
|
7275
|
+
};
|
|
7134
7276
|
export declare type AgentWorkspaceDeleteScheduleInput = {
|
|
7135
7277
|
cloudId: Scalars['ID']['input'];
|
|
7136
7278
|
projectId?: InputMaybe<Scalars['ID']['input']>;
|
|
@@ -7156,16 +7298,8 @@ export declare type AgentWorkspaceDeleteShiftPayload = {
|
|
|
7156
7298
|
shift?: Maybe<AgentWorkspaceShift>;
|
|
7157
7299
|
success: Scalars['Boolean']['output'];
|
|
7158
7300
|
};
|
|
7159
|
-
export declare type
|
|
7160
|
-
|
|
7161
|
-
serviceFieldId: Scalars['ID']['input'];
|
|
7162
|
-
};
|
|
7163
|
-
export declare type AgentWorkspaceDiscardDraftedRoutingTablePayload = {
|
|
7164
|
-
__typename?: 'AgentWorkspaceDiscardDraftedRoutingTablePayload';
|
|
7165
|
-
rowsDeleted: Scalars['Int']['output'];
|
|
7166
|
-
};
|
|
7167
|
-
export declare type AgentWorkspaceDraftedRoutingTable = {
|
|
7168
|
-
__typename?: 'AgentWorkspaceDraftedRoutingTable';
|
|
7301
|
+
export declare type AgentWorkspaceDraftedRoutingTableEntries = {
|
|
7302
|
+
__typename?: 'AgentWorkspaceDraftedRoutingTableEntries';
|
|
7169
7303
|
entries: Array<AgentWorkspaceDraftedRoutingTableEntry>;
|
|
7170
7304
|
};
|
|
7171
7305
|
export declare type AgentWorkspaceDraftedRoutingTableEntry = {
|
|
@@ -7175,7 +7309,6 @@ export declare type AgentWorkspaceDraftedRoutingTableEntry = {
|
|
|
7175
7309
|
serviceId: Scalars['ID']['output'];
|
|
7176
7310
|
serviceName: Scalars['String']['output'];
|
|
7177
7311
|
teamAri?: Maybe<Scalars['ID']['output']>;
|
|
7178
|
-
teamName?: Maybe<Scalars['String']['output']>;
|
|
7179
7312
|
};
|
|
7180
7313
|
export declare type AgentWorkspaceDraftedRoutingTableEntryPatch = {
|
|
7181
7314
|
confidence?: InputMaybe<Scalars['Float']['input']>;
|
|
@@ -7183,22 +7316,33 @@ export declare type AgentWorkspaceDraftedRoutingTableEntryPatch = {
|
|
|
7183
7316
|
serviceName?: InputMaybe<Scalars['String']['input']>;
|
|
7184
7317
|
source?: InputMaybe<AgentWorkspaceDraftedRoutingTableEntrySource>;
|
|
7185
7318
|
teamAri?: InputMaybe<Scalars['ID']['input']>;
|
|
7186
|
-
teamName?: InputMaybe<Scalars['String']['input']>;
|
|
7187
7319
|
};
|
|
7188
7320
|
export declare enum AgentWorkspaceDraftedRoutingTableEntrySource {
|
|
7189
7321
|
Manual = "MANUAL",
|
|
7190
7322
|
Rovo = "ROVO"
|
|
7191
7323
|
}
|
|
7324
|
+
export declare type AgentWorkspaceDraftedRoutingTableStatus = {
|
|
7325
|
+
__typename?: 'AgentWorkspaceDraftedRoutingTableStatus';
|
|
7326
|
+
serviceFieldId?: Maybe<Scalars['String']['output']>;
|
|
7327
|
+
};
|
|
7192
7328
|
export declare type AgentWorkspaceEditCoverShiftInput = {
|
|
7193
7329
|
agentId: Scalars['ID']['input'];
|
|
7330
|
+
newAgentId?: InputMaybe<Scalars['ID']['input']>;
|
|
7194
7331
|
newEndTime: Scalars['DateTime']['input'];
|
|
7195
7332
|
newStartTime: Scalars['DateTime']['input'];
|
|
7196
7333
|
projectARI: Scalars['ID']['input'];
|
|
7197
7334
|
scheduleId: Scalars['ID']['input'];
|
|
7198
7335
|
shiftSegmentId: Scalars['ID']['input'];
|
|
7199
7336
|
};
|
|
7337
|
+
export declare type AgentWorkspaceEditCoverShiftPayload = {
|
|
7338
|
+
__typename?: 'AgentWorkspaceEditCoverShiftPayload';
|
|
7339
|
+
errors?: Maybe<Array<AgentWorkspaceScheduleError>>;
|
|
7340
|
+
resultingCoveringShifts: Array<AgentWorkspaceCoveringShift>;
|
|
7341
|
+
success: Scalars['Boolean']['output'];
|
|
7342
|
+
};
|
|
7200
7343
|
export declare type AgentWorkspaceEditShiftInput = {
|
|
7201
7344
|
agentId: Scalars['ID']['input'];
|
|
7345
|
+
newAgentId?: InputMaybe<Scalars['ID']['input']>;
|
|
7202
7346
|
newEndTime: Scalars['DateTime']['input'];
|
|
7203
7347
|
newStartTime: Scalars['DateTime']['input'];
|
|
7204
7348
|
occurrenceStartTime: Scalars['DateTime']['input'];
|
|
@@ -7207,6 +7351,7 @@ export declare type AgentWorkspaceEditShiftInput = {
|
|
|
7207
7351
|
};
|
|
7208
7352
|
export declare type AgentWorkspaceEditShiftPayload = {
|
|
7209
7353
|
__typename?: 'AgentWorkspaceEditShiftPayload';
|
|
7354
|
+
createdCoveringShifts: Array<AgentWorkspaceCoveringShift>;
|
|
7210
7355
|
errors?: Maybe<Array<AgentWorkspaceScheduleError>>;
|
|
7211
7356
|
shift?: Maybe<AgentWorkspaceShift>;
|
|
7212
7357
|
success: Scalars['Boolean']['output'];
|
|
@@ -7222,6 +7367,11 @@ export declare type AgentWorkspaceEligibleGroupsPayload = {
|
|
|
7222
7367
|
eligibleGroups: Array<AgentWorkspaceEligibleGroup>;
|
|
7223
7368
|
groupsTooLarge: Array<AgentWorkspaceGroupTooLarge>;
|
|
7224
7369
|
};
|
|
7370
|
+
export declare type AgentWorkspaceExcludedAgent = {
|
|
7371
|
+
__typename?: 'AgentWorkspaceExcludedAgent';
|
|
7372
|
+
agent: AgentWorkspaceAgent;
|
|
7373
|
+
exclusionReasons: Array<AgentWorkspaceAgentExclusionReason>;
|
|
7374
|
+
};
|
|
7225
7375
|
export declare type AgentWorkspaceGroupMember = {
|
|
7226
7376
|
__typename?: 'AgentWorkspaceGroupMember';
|
|
7227
7377
|
accountId: Scalars['String']['output'];
|
|
@@ -7237,6 +7387,19 @@ export declare type AgentWorkspaceIssueRebalancingRecommendation = {
|
|
|
7237
7387
|
issueARI: Scalars['ID']['output'];
|
|
7238
7388
|
recommendations: Array<AgentWorkspaceRebalancingRecommendation>;
|
|
7239
7389
|
};
|
|
7390
|
+
export declare type AgentWorkspaceIssueRoutingHistory = {
|
|
7391
|
+
__typename?: 'AgentWorkspaceIssueRoutingHistory';
|
|
7392
|
+
events: AgentWorkspaceRoutingHistoryEventConnection;
|
|
7393
|
+
issueKey: Scalars['String']['output'];
|
|
7394
|
+
};
|
|
7395
|
+
export declare type AgentWorkspaceIssueRoutingHistoryEventsArgs = {
|
|
7396
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
7397
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
7398
|
+
};
|
|
7399
|
+
export declare type AgentWorkspaceLiveRoutingTable = {
|
|
7400
|
+
__typename?: 'AgentWorkspaceLiveRoutingTable';
|
|
7401
|
+
entries: Array<AgentWorkspaceRoutingTableEntry>;
|
|
7402
|
+
};
|
|
7240
7403
|
export declare type AgentWorkspaceMutationError = {
|
|
7241
7404
|
__typename?: 'AgentWorkspaceMutationError';
|
|
7242
7405
|
code?: Maybe<Scalars['String']['output']>;
|
|
@@ -7274,6 +7437,11 @@ export declare type AgentWorkspaceRecommendedAgentsForCoverageGapInput = {
|
|
|
7274
7437
|
scheduleId: Scalars['ID']['input'];
|
|
7275
7438
|
shiftSegmentId: Scalars['ID']['input'];
|
|
7276
7439
|
};
|
|
7440
|
+
export declare type AgentWorkspaceRecommendedAgentsForCoverageGapPayload = {
|
|
7441
|
+
__typename?: 'AgentWorkspaceRecommendedAgentsForCoverageGapPayload';
|
|
7442
|
+
excludedAgents: Array<AgentWorkspaceExcludedAgent>;
|
|
7443
|
+
recommendedAgents: Array<AgentWorkspaceAgent>;
|
|
7444
|
+
};
|
|
7277
7445
|
export declare type AgentWorkspaceRecommendedAgentsForGapInput = {
|
|
7278
7446
|
originalAgentId: Scalars['ID']['input'];
|
|
7279
7447
|
projectARI: Scalars['ID']['input'];
|
|
@@ -7321,15 +7489,35 @@ export declare type AgentWorkspaceRestoreSkillPayload = {
|
|
|
7321
7489
|
errors?: Maybe<Array<MutationError>>;
|
|
7322
7490
|
success: Scalars['Boolean']['output'];
|
|
7323
7491
|
};
|
|
7324
|
-
export declare type
|
|
7325
|
-
__typename?: '
|
|
7326
|
-
|
|
7327
|
-
|
|
7328
|
-
|
|
7492
|
+
export declare type AgentWorkspaceRoutingHistoryEvent = {
|
|
7493
|
+
__typename?: 'AgentWorkspaceRoutingHistoryEvent';
|
|
7494
|
+
details: Array<Scalars['String']['output']>;
|
|
7495
|
+
headline: Scalars['String']['output'];
|
|
7496
|
+
id: Scalars['ID']['output'];
|
|
7497
|
+
kind: AgentWorkspaceRoutingHistoryEventKind;
|
|
7498
|
+
occurredAt: Scalars['DateTime']['output'];
|
|
7329
7499
|
};
|
|
7330
|
-
export declare type
|
|
7331
|
-
__typename?: '
|
|
7332
|
-
|
|
7500
|
+
export declare type AgentWorkspaceRoutingHistoryEventConnection = {
|
|
7501
|
+
__typename?: 'AgentWorkspaceRoutingHistoryEventConnection';
|
|
7502
|
+
edges: Array<AgentWorkspaceRoutingHistoryEventEdge>;
|
|
7503
|
+
pageInfo: AgentWorkspaceRoutingHistoryPageInfo;
|
|
7504
|
+
};
|
|
7505
|
+
export declare type AgentWorkspaceRoutingHistoryEventEdge = {
|
|
7506
|
+
__typename?: 'AgentWorkspaceRoutingHistoryEventEdge';
|
|
7507
|
+
cursor: Scalars['String']['output'];
|
|
7508
|
+
node: AgentWorkspaceRoutingHistoryEvent;
|
|
7509
|
+
};
|
|
7510
|
+
export declare enum AgentWorkspaceRoutingHistoryEventKind {
|
|
7511
|
+
DeterminedService = "DETERMINED_SERVICE",
|
|
7512
|
+
Routed = "ROUTED",
|
|
7513
|
+
Skipped = "SKIPPED"
|
|
7514
|
+
}
|
|
7515
|
+
export declare type AgentWorkspaceRoutingHistoryPageInfo = {
|
|
7516
|
+
__typename?: 'AgentWorkspaceRoutingHistoryPageInfo';
|
|
7517
|
+
endCursor?: Maybe<Scalars['String']['output']>;
|
|
7518
|
+
hasNextPage: Scalars['Boolean']['output'];
|
|
7519
|
+
hasPreviousPage: Scalars['Boolean']['output'];
|
|
7520
|
+
startCursor?: Maybe<Scalars['String']['output']>;
|
|
7333
7521
|
};
|
|
7334
7522
|
export declare type AgentWorkspaceRoutingTableEntry = {
|
|
7335
7523
|
__typename?: 'AgentWorkspaceRoutingTableEntry';
|
|
@@ -7498,6 +7686,15 @@ export declare type AgentWorkspaceSetDefaultCapacityPayload = {
|
|
|
7498
7686
|
errors?: Maybe<Array<AgentWorkspaceCapacityError>>;
|
|
7499
7687
|
success: Scalars['Boolean']['output'];
|
|
7500
7688
|
};
|
|
7689
|
+
export declare type AgentWorkspaceSetDraftedRoutingTableServiceFieldInput = {
|
|
7690
|
+
cloudId: Scalars['ID']['input'];
|
|
7691
|
+
projectKey: Scalars['String']['input'];
|
|
7692
|
+
serviceFieldId: Scalars['String']['input'];
|
|
7693
|
+
};
|
|
7694
|
+
export declare type AgentWorkspaceSetDraftedRoutingTableServiceFieldPayload = {
|
|
7695
|
+
__typename?: 'AgentWorkspaceSetDraftedRoutingTableServiceFieldPayload';
|
|
7696
|
+
serviceFieldId: Scalars['String']['output'];
|
|
7697
|
+
};
|
|
7501
7698
|
export declare type AgentWorkspaceSetProjectDefaultAvailabilityInput = {
|
|
7502
7699
|
cloudId: Scalars['ID']['input'];
|
|
7503
7700
|
projectId: Scalars['ID']['input'];
|
|
@@ -7719,9 +7916,10 @@ export declare type AgentWorkspaceStartGenerateRoutingTablePayload = {
|
|
|
7719
7916
|
status: AgentWorkspaceRoutingTableGenerationStatus;
|
|
7720
7917
|
};
|
|
7721
7918
|
export declare type AgentWorkspaceSubmitDraftedRoutingTableInput = {
|
|
7919
|
+
cloudId: Scalars['ID']['input'];
|
|
7722
7920
|
fieldId: Scalars['String']['input'];
|
|
7723
7921
|
generationId: Scalars['ID']['input'];
|
|
7724
|
-
|
|
7922
|
+
projectKey: Scalars['String']['input'];
|
|
7725
7923
|
};
|
|
7726
7924
|
export declare type AgentWorkspaceSubmitDraftedRoutingTablePayload = {
|
|
7727
7925
|
__typename?: 'AgentWorkspaceSubmitDraftedRoutingTablePayload';
|
|
@@ -7892,8 +8090,9 @@ export declare type AgentWorkspaceUpdateSmartRoutingConfigPayload = {
|
|
|
7892
8090
|
success: Scalars['Boolean']['output'];
|
|
7893
8091
|
};
|
|
7894
8092
|
export declare type AgentWorkspaceUpsertDraftedRoutingTableEntryInput = {
|
|
8093
|
+
cloudId: Scalars['ID']['input'];
|
|
7895
8094
|
included?: InputMaybe<Scalars['Boolean']['input']>;
|
|
7896
|
-
|
|
8095
|
+
projectKey: Scalars['String']['input'];
|
|
7897
8096
|
row?: InputMaybe<AgentWorkspaceDraftedRoutingTableEntryPatch>;
|
|
7898
8097
|
serviceFieldId: Scalars['ID']['input'];
|
|
7899
8098
|
serviceId: Scalars['ID']['input'];
|
|
@@ -8056,7 +8255,6 @@ export declare type AiManagedObject = {
|
|
|
8056
8255
|
__typename?: 'AiManagedObject';
|
|
8057
8256
|
ari: Scalars['String']['output'];
|
|
8058
8257
|
config?: Maybe<AiManagedObjectConfig>;
|
|
8059
|
-
configVersions: AiManagedObjectConfigConnection;
|
|
8060
8258
|
createdAt: Scalars['Long']['output'];
|
|
8061
8259
|
createdBy: Scalars['String']['output'];
|
|
8062
8260
|
deletedAt?: Maybe<Scalars['Long']['output']>;
|
|
@@ -8071,10 +8269,6 @@ export declare type AiManagedObject = {
|
|
|
8071
8269
|
status: AiManagedObjectStatus;
|
|
8072
8270
|
type: AiManagedObjectType;
|
|
8073
8271
|
};
|
|
8074
|
-
export declare type AiManagedObjectConfigVersionsArgs = {
|
|
8075
|
-
after?: InputMaybe<Scalars['String']['input']>;
|
|
8076
|
-
first?: InputMaybe<Scalars['Int']['input']>;
|
|
8077
|
-
};
|
|
8078
8272
|
export declare type AiManagedObjectConfig = {
|
|
8079
8273
|
__typename?: 'AiManagedObjectConfig';
|
|
8080
8274
|
agentId?: Maybe<Scalars['String']['output']>;
|
|
@@ -8089,12 +8283,6 @@ export declare type AiManagedObjectConfig = {
|
|
|
8089
8283
|
sources?: Maybe<Array<AiManagedObjectSource>>;
|
|
8090
8284
|
version: Scalars['Int']['output'];
|
|
8091
8285
|
};
|
|
8092
|
-
export declare type AiManagedObjectConfigConnection = {
|
|
8093
|
-
__typename?: 'AiManagedObjectConfigConnection';
|
|
8094
|
-
edges: Array<AiManagedObjectConfigEdge>;
|
|
8095
|
-
pageInfo: PageInfo;
|
|
8096
|
-
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
8097
|
-
};
|
|
8098
8286
|
export declare type AiManagedObjectConfigCreateInput = {
|
|
8099
8287
|
agentId?: InputMaybe<Scalars['String']['input']>;
|
|
8100
8288
|
desiredUpdateInterval?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -8102,11 +8290,6 @@ export declare type AiManagedObjectConfigCreateInput = {
|
|
|
8102
8290
|
prompt: Scalars['String']['input'];
|
|
8103
8291
|
sources?: InputMaybe<Array<AiManagedObjectSourceInput>>;
|
|
8104
8292
|
};
|
|
8105
|
-
export declare type AiManagedObjectConfigEdge = {
|
|
8106
|
-
__typename?: 'AiManagedObjectConfigEdge';
|
|
8107
|
-
cursor: Scalars['String']['output'];
|
|
8108
|
-
node: AiManagedObjectConfig;
|
|
8109
|
-
};
|
|
8110
8293
|
export declare type AiManagedObjectConnection = {
|
|
8111
8294
|
__typename?: 'AiManagedObjectConnection';
|
|
8112
8295
|
edges: Array<AiManagedObjectEdge>;
|
|
@@ -8540,6 +8723,12 @@ export declare type AppDeploymentConnection = {
|
|
|
8540
8723
|
nodes: Array<Maybe<AppDeployment>>;
|
|
8541
8724
|
pageInfo?: Maybe<PageInfo>;
|
|
8542
8725
|
};
|
|
8726
|
+
export declare type AppDeploymentDisplayEvent = AppDeploymentEvent & {
|
|
8727
|
+
__typename?: 'AppDeploymentDisplayEvent';
|
|
8728
|
+
createdAt: Scalars['String']['output'];
|
|
8729
|
+
message?: Maybe<Scalars['String']['output']>;
|
|
8730
|
+
stepName: Scalars['String']['output'];
|
|
8731
|
+
};
|
|
8543
8732
|
export declare type AppDeploymentEdge = {
|
|
8544
8733
|
__typename?: 'AppDeploymentEdge';
|
|
8545
8734
|
cursor: Scalars['String']['output'];
|
|
@@ -12895,6 +13084,12 @@ export declare type AssetsUserAttributeValue = {
|
|
|
12895
13084
|
id?: Maybe<Scalars['String']['output']>;
|
|
12896
13085
|
name?: Maybe<Scalars['String']['output']>;
|
|
12897
13086
|
};
|
|
13087
|
+
export declare type AssetsVerticalAllInsightsResponse = {
|
|
13088
|
+
__typename?: 'AssetsVerticalAllInsightsResponse';
|
|
13089
|
+
items: Array<AssetsVerticalInsightItem>;
|
|
13090
|
+
pageInfo: PageInfo;
|
|
13091
|
+
};
|
|
13092
|
+
export declare type AssetsVerticalAllInsightsResult = AssetsVerticalAllInsightsResponse | QueryError;
|
|
12898
13093
|
export declare type AssetsVerticalArchiveInsightInput = {
|
|
12899
13094
|
archived: Scalars['Boolean']['input'];
|
|
12900
13095
|
cloudId: Scalars['ID']['input'];
|
|
@@ -13062,6 +13257,19 @@ export declare type AssetsVerticalCreateAssetTypesTrackingsInput = {
|
|
|
13062
13257
|
cloudId: Scalars['ID']['input'];
|
|
13063
13258
|
verticalInstantiationCategoryId: Scalars['ID']['input'];
|
|
13064
13259
|
};
|
|
13260
|
+
export declare type AssetsVerticalCreateCustomInsightInput = {
|
|
13261
|
+
category: AssetsVerticalInsightCategory;
|
|
13262
|
+
cloudId: Scalars['ID']['input'];
|
|
13263
|
+
description?: InputMaybe<Scalars['String']['input']>;
|
|
13264
|
+
name: Scalars['String']['input'];
|
|
13265
|
+
nlQuery: Scalars['String']['input'];
|
|
13266
|
+
};
|
|
13267
|
+
export declare type AssetsVerticalCreateCustomInsightPayload = Payload & {
|
|
13268
|
+
__typename?: 'AssetsVerticalCreateCustomInsightPayload';
|
|
13269
|
+
definition?: Maybe<AssetsVerticalCustomInsightDefinition>;
|
|
13270
|
+
errors?: Maybe<Array<MutationError>>;
|
|
13271
|
+
success: Scalars['Boolean']['output'];
|
|
13272
|
+
};
|
|
13065
13273
|
export declare type AssetsVerticalCreateDepreciationRuleInput = {
|
|
13066
13274
|
assetTypes: Array<AssetsVerticalDepreciationRuleAssetTypeInput>;
|
|
13067
13275
|
cloudId: Scalars['ID']['input'];
|
|
@@ -13111,6 +13319,43 @@ export declare type AssetsVerticalCreateVerticalInstantiationInput = {
|
|
|
13111
13319
|
depreciationRules?: InputMaybe<Array<AssetsVerticalCreateDepreciationRuleWithinInstantiationInput>>;
|
|
13112
13320
|
type: AssetsVerticalVerticalType;
|
|
13113
13321
|
};
|
|
13322
|
+
export declare type AssetsVerticalCustomInsightDefinition = {
|
|
13323
|
+
__typename?: 'AssetsVerticalCustomInsightDefinition';
|
|
13324
|
+
category: AssetsVerticalInsightCategory;
|
|
13325
|
+
createdAt: Scalars['DateTime']['output'];
|
|
13326
|
+
createdBy: Scalars['String']['output'];
|
|
13327
|
+
ctaRovoPrompt: Scalars['String']['output'];
|
|
13328
|
+
description?: Maybe<Scalars['String']['output']>;
|
|
13329
|
+
id: Scalars['ID']['output'];
|
|
13330
|
+
isEnabled: Scalars['Boolean']['output'];
|
|
13331
|
+
lastResult?: Maybe<AssetsVerticalCustomInsightResult>;
|
|
13332
|
+
lastRunAt?: Maybe<Scalars['DateTime']['output']>;
|
|
13333
|
+
name: Scalars['String']['output'];
|
|
13334
|
+
nlQuery: Scalars['String']['output'];
|
|
13335
|
+
updatedAt: Scalars['DateTime']['output'];
|
|
13336
|
+
updatedBy: Scalars['String']['output'];
|
|
13337
|
+
};
|
|
13338
|
+
export declare type AssetsVerticalCustomInsightResult = {
|
|
13339
|
+
__typename?: 'AssetsVerticalCustomInsightResult';
|
|
13340
|
+
jobId: Scalars['ID']['output'];
|
|
13341
|
+
status: AssetsVerticalCustomInsightStatus;
|
|
13342
|
+
suggestedPollIntervalMs?: Maybe<Scalars['Int']['output']>;
|
|
13343
|
+
summary?: Maybe<Scalars['String']['output']>;
|
|
13344
|
+
};
|
|
13345
|
+
export declare type AssetsVerticalCustomInsightResultUnion = AssetsVerticalCustomInsightResult | QueryError;
|
|
13346
|
+
export declare enum AssetsVerticalCustomInsightStatus {
|
|
13347
|
+
Completed = "COMPLETED",
|
|
13348
|
+
Failed = "FAILED",
|
|
13349
|
+
InProgress = "IN_PROGRESS",
|
|
13350
|
+
NotStarted = "NOT_STARTED",
|
|
13351
|
+
Pending = "PENDING"
|
|
13352
|
+
}
|
|
13353
|
+
export declare type AssetsVerticalCustomInsightsResponse = {
|
|
13354
|
+
__typename?: 'AssetsVerticalCustomInsightsResponse';
|
|
13355
|
+
items: Array<AssetsVerticalCustomInsightDefinition>;
|
|
13356
|
+
pageInfo: PageInfo;
|
|
13357
|
+
};
|
|
13358
|
+
export declare type AssetsVerticalCustomInsightsResult = AssetsVerticalCustomInsightsResponse | QueryError;
|
|
13114
13359
|
export declare type AssetsVerticalDefaultAttribute = AssetsVerticalObjectTypeAttribute & {
|
|
13115
13360
|
__typename?: 'AssetsVerticalDefaultAttribute';
|
|
13116
13361
|
isEditable?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -13136,6 +13381,15 @@ export declare type AssetsVerticalDeleteAssetTypesTrackingInput = {
|
|
|
13136
13381
|
cloudId: Scalars['ID']['input'];
|
|
13137
13382
|
id: Scalars['ID']['input'];
|
|
13138
13383
|
};
|
|
13384
|
+
export declare type AssetsVerticalDeleteCustomInsightInput = {
|
|
13385
|
+
cloudId: Scalars['ID']['input'];
|
|
13386
|
+
insightId: Scalars['ID']['input'];
|
|
13387
|
+
};
|
|
13388
|
+
export declare type AssetsVerticalDeleteCustomInsightPayload = Payload & {
|
|
13389
|
+
__typename?: 'AssetsVerticalDeleteCustomInsightPayload';
|
|
13390
|
+
errors?: Maybe<Array<MutationError>>;
|
|
13391
|
+
success: Scalars['Boolean']['output'];
|
|
13392
|
+
};
|
|
13139
13393
|
export declare type AssetsVerticalDeleteDepreciationRuleInput = {
|
|
13140
13394
|
cloudId: Scalars['ID']['input'];
|
|
13141
13395
|
id: Scalars['ID']['input'];
|
|
@@ -13247,10 +13501,32 @@ export declare type AssetsVerticalDepreciationRuleQueryErrorExtension = QueryErr
|
|
|
13247
13501
|
statusCode?: Maybe<Scalars['Int']['output']>;
|
|
13248
13502
|
};
|
|
13249
13503
|
export declare type AssetsVerticalDepreciationRuleResult = AssetsVerticalDepreciationRule | QueryError;
|
|
13504
|
+
export declare type AssetsVerticalEnableCustomInsightInput = {
|
|
13505
|
+
cloudId: Scalars['ID']['input'];
|
|
13506
|
+
enabled: Scalars['Boolean']['input'];
|
|
13507
|
+
insightId: Scalars['ID']['input'];
|
|
13508
|
+
};
|
|
13509
|
+
export declare type AssetsVerticalEnableCustomInsightPayload = Payload & {
|
|
13510
|
+
__typename?: 'AssetsVerticalEnableCustomInsightPayload';
|
|
13511
|
+
definition?: Maybe<AssetsVerticalCustomInsightDefinition>;
|
|
13512
|
+
errors?: Maybe<Array<MutationError>>;
|
|
13513
|
+
success: Scalars['Boolean']['output'];
|
|
13514
|
+
};
|
|
13250
13515
|
export declare enum AssetsVerticalFlowType {
|
|
13251
13516
|
Existing = "EXISTING",
|
|
13252
13517
|
New = "NEW"
|
|
13253
13518
|
}
|
|
13519
|
+
export declare type AssetsVerticalGenerateCustomInsightInput = {
|
|
13520
|
+
cloudId: Scalars['ID']['input'];
|
|
13521
|
+
insightId: Scalars['ID']['input'];
|
|
13522
|
+
};
|
|
13523
|
+
export declare type AssetsVerticalGenerateCustomInsightPayload = Payload & {
|
|
13524
|
+
__typename?: 'AssetsVerticalGenerateCustomInsightPayload';
|
|
13525
|
+
errors?: Maybe<Array<MutationError>>;
|
|
13526
|
+
jobId?: Maybe<Scalars['ID']['output']>;
|
|
13527
|
+
success: Scalars['Boolean']['output'];
|
|
13528
|
+
suggestedPollIntervalMs?: Maybe<Scalars['Int']['output']>;
|
|
13529
|
+
};
|
|
13254
13530
|
export declare type AssetsVerticalGenerateInsightsInput = {
|
|
13255
13531
|
cloudId: Scalars['ID']['input'];
|
|
13256
13532
|
};
|
|
@@ -13275,6 +13551,11 @@ export declare type AssetsVerticalInsightCard = {
|
|
|
13275
13551
|
summary: Scalars['String']['output'];
|
|
13276
13552
|
title: Scalars['String']['output'];
|
|
13277
13553
|
};
|
|
13554
|
+
export declare enum AssetsVerticalInsightCategory {
|
|
13555
|
+
Financial = "FINANCIAL",
|
|
13556
|
+
Operational = "OPERATIONAL",
|
|
13557
|
+
Security = "SECURITY"
|
|
13558
|
+
}
|
|
13278
13559
|
export declare type AssetsVerticalInsightDefinition = {
|
|
13279
13560
|
__typename?: 'AssetsVerticalInsightDefinition';
|
|
13280
13561
|
category: Scalars['String']['output'];
|
|
@@ -13308,6 +13589,22 @@ export declare type AssetsVerticalInsightGenerationError = {
|
|
|
13308
13589
|
message: Scalars['String']['output'];
|
|
13309
13590
|
retryable: Scalars['Boolean']['output'];
|
|
13310
13591
|
};
|
|
13592
|
+
export declare type AssetsVerticalInsightItem = {
|
|
13593
|
+
__typename?: 'AssetsVerticalInsightItem';
|
|
13594
|
+
category: AssetsVerticalInsightCategory;
|
|
13595
|
+
ctaRovoPrompt: Scalars['String']['output'];
|
|
13596
|
+
customInsightId?: Maybe<Scalars['ID']['output']>;
|
|
13597
|
+
insightType?: Maybe<Scalars['ID']['output']>;
|
|
13598
|
+
isEnabled: Scalars['Boolean']['output'];
|
|
13599
|
+
isPinned: Scalars['Boolean']['output'];
|
|
13600
|
+
itemType: AssetsVerticalInsightItemType;
|
|
13601
|
+
lastResult?: Maybe<AssetsVerticalCustomInsightResult>;
|
|
13602
|
+
name: Scalars['String']['output'];
|
|
13603
|
+
};
|
|
13604
|
+
export declare enum AssetsVerticalInsightItemType {
|
|
13605
|
+
Custom = "CUSTOM",
|
|
13606
|
+
Ootb = "OOTB"
|
|
13607
|
+
}
|
|
13311
13608
|
export declare enum AssetsVerticalInsightSource {
|
|
13312
13609
|
Custom = "CUSTOM",
|
|
13313
13610
|
Ootb = "OOTB"
|
|
@@ -13517,6 +13814,12 @@ export declare type AssetsVerticalObjectsSuccess = {
|
|
|
13517
13814
|
pageInfo?: Maybe<PageInfo>;
|
|
13518
13815
|
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
13519
13816
|
};
|
|
13817
|
+
export declare type AssetsVerticalPinInsightPayload = Payload & {
|
|
13818
|
+
__typename?: 'AssetsVerticalPinInsightPayload';
|
|
13819
|
+
errors?: Maybe<Array<MutationError>>;
|
|
13820
|
+
isPinned?: Maybe<Scalars['Boolean']['output']>;
|
|
13821
|
+
success: Scalars['Boolean']['output'];
|
|
13822
|
+
};
|
|
13520
13823
|
export declare type AssetsVerticalProblemDetail = {
|
|
13521
13824
|
correctionGuidance?: Maybe<Scalars['String']['output']>;
|
|
13522
13825
|
detail: Scalars['String']['output'];
|
|
@@ -13563,6 +13866,12 @@ export declare enum AssetsVerticalRoleAssignmentErrorCode {
|
|
|
13563
13866
|
UnexpectedError = "UNEXPECTED_ERROR",
|
|
13564
13867
|
ValidationFailed = "VALIDATION_FAILED"
|
|
13565
13868
|
}
|
|
13869
|
+
export declare type AssetsVerticalRoleAssignmentMutationErrorExtension = MutationErrorExtension & {
|
|
13870
|
+
__typename?: 'AssetsVerticalRoleAssignmentMutationErrorExtension';
|
|
13871
|
+
code?: Maybe<AssetsVerticalRoleAssignmentErrorCode>;
|
|
13872
|
+
errorType?: Maybe<Scalars['String']['output']>;
|
|
13873
|
+
statusCode?: Maybe<Scalars['Int']['output']>;
|
|
13874
|
+
};
|
|
13566
13875
|
export declare enum AssetsVerticalRoleAssignmentOperation {
|
|
13567
13876
|
Create = "CREATE",
|
|
13568
13877
|
Delete = "DELETE"
|
|
@@ -13626,6 +13935,20 @@ export declare type AssetsVerticalStockroomObjectsInput = {
|
|
|
13626
13935
|
workspaceId: Scalars['ID']['input'];
|
|
13627
13936
|
};
|
|
13628
13937
|
export declare type AssetsVerticalStockroomObjectsResult = AssetsVerticalStockroomObjects | QueryError;
|
|
13938
|
+
export declare type AssetsVerticalUpdateCustomInsightInput = {
|
|
13939
|
+
category: AssetsVerticalInsightCategory;
|
|
13940
|
+
cloudId: Scalars['ID']['input'];
|
|
13941
|
+
description?: InputMaybe<Scalars['String']['input']>;
|
|
13942
|
+
insightId: Scalars['ID']['input'];
|
|
13943
|
+
name: Scalars['String']['input'];
|
|
13944
|
+
nlQuery: Scalars['String']['input'];
|
|
13945
|
+
};
|
|
13946
|
+
export declare type AssetsVerticalUpdateCustomInsightPayload = Payload & {
|
|
13947
|
+
__typename?: 'AssetsVerticalUpdateCustomInsightPayload';
|
|
13948
|
+
definition?: Maybe<AssetsVerticalCustomInsightDefinition>;
|
|
13949
|
+
errors?: Maybe<Array<MutationError>>;
|
|
13950
|
+
success: Scalars['Boolean']['output'];
|
|
13951
|
+
};
|
|
13629
13952
|
export declare type AssetsVerticalUpdateDepreciationRuleInput = {
|
|
13630
13953
|
assetTypes?: InputMaybe<Array<AssetsVerticalDepreciationRuleAssetTypeInput>>;
|
|
13631
13954
|
cloudId: Scalars['ID']['input'];
|
|
@@ -30088,6 +30411,9 @@ export declare type ConfluenceJiraMacroAppLinksScanningStatus = {
|
|
|
30088
30411
|
__typename?: 'ConfluenceJiraMacroAppLinksScanningStatus';
|
|
30089
30412
|
additionalMessage?: Maybe<Scalars['String']['output']>;
|
|
30090
30413
|
problems?: Maybe<ConfluenceJiraMacroAppLinksValidatorResult>;
|
|
30414
|
+
reportDownloadUrl?: Maybe<Scalars['String']['output']>;
|
|
30415
|
+
reportFileStoreId?: Maybe<Scalars['String']['output']>;
|
|
30416
|
+
startedAtEpochMillis?: Maybe<Scalars['Long']['output']>;
|
|
30091
30417
|
status: ConfluenceJiraMacroAppLinksValidationStatus;
|
|
30092
30418
|
};
|
|
30093
30419
|
export declare enum ConfluenceJiraMacroAppLinksValidationStatus {
|
|
@@ -36060,6 +36386,10 @@ export declare type CplsContributionAggregation = {
|
|
|
36060
36386
|
totalContributionFormats?: Maybe<CplsValueFormats>;
|
|
36061
36387
|
totalContributionHours: Scalars['Float']['output'];
|
|
36062
36388
|
};
|
|
36389
|
+
export declare enum CplsContributionCopyMode {
|
|
36390
|
+
CurrentAndFuture = "CURRENT_AND_FUTURE",
|
|
36391
|
+
None = "NONE"
|
|
36392
|
+
}
|
|
36063
36393
|
export declare enum CplsContributionValueType {
|
|
36064
36394
|
Days = "DAYS",
|
|
36065
36395
|
Hours = "HOURS",
|
|
@@ -36141,6 +36471,48 @@ export declare type CplsContributorWorkEdge = {
|
|
|
36141
36471
|
isSuggestion?: Maybe<Scalars['Boolean']['output']>;
|
|
36142
36472
|
node?: Maybe<CplsWorkData>;
|
|
36143
36473
|
};
|
|
36474
|
+
export declare type CplsCopyContributorToWorksInput = {
|
|
36475
|
+
cloudId: Scalars['ID']['input'];
|
|
36476
|
+
contributionCopyMode: CplsContributionCopyMode;
|
|
36477
|
+
contributorDataId: Scalars['ID']['input'];
|
|
36478
|
+
destinationWorkIds: Array<Scalars['ID']['input']>;
|
|
36479
|
+
scopeId: Scalars['ID']['input'];
|
|
36480
|
+
sourceWorkId: Scalars['ID']['input'];
|
|
36481
|
+
};
|
|
36482
|
+
export declare type CplsCopyContributorToWorksPayload = Payload & {
|
|
36483
|
+
__typename?: 'CplsCopyContributorToWorksPayload';
|
|
36484
|
+
errors?: Maybe<Array<MutationError>>;
|
|
36485
|
+
success: Scalars['Boolean']['output'];
|
|
36486
|
+
workContributorAssociationsByScope?: Maybe<Array<CplsWorkContributorEdge>>;
|
|
36487
|
+
worksByScope?: Maybe<Array<CplsWork>>;
|
|
36488
|
+
};
|
|
36489
|
+
export declare type CplsCopyContributorToWorksPayloadWorkContributorAssociationsByScopeArgs = {
|
|
36490
|
+
scopeId: Scalars['ID']['input'];
|
|
36491
|
+
};
|
|
36492
|
+
export declare type CplsCopyContributorToWorksPayloadWorksByScopeArgs = {
|
|
36493
|
+
scopeId: Scalars['ID']['input'];
|
|
36494
|
+
};
|
|
36495
|
+
export declare type CplsCopyWorkToContributorsInput = {
|
|
36496
|
+
cloudId: Scalars['ID']['input'];
|
|
36497
|
+
contributionCopyMode: CplsContributionCopyMode;
|
|
36498
|
+
destinationContributorDataIds: Array<Scalars['ID']['input']>;
|
|
36499
|
+
scopeId: Scalars['ID']['input'];
|
|
36500
|
+
sourceContributorDataId: Scalars['ID']['input'];
|
|
36501
|
+
workId: Scalars['ID']['input'];
|
|
36502
|
+
};
|
|
36503
|
+
export declare type CplsCopyWorkToContributorsPayload = Payload & {
|
|
36504
|
+
__typename?: 'CplsCopyWorkToContributorsPayload';
|
|
36505
|
+
contributorWorkAssociationsByScope?: Maybe<Array<CplsContributorWorkEdge>>;
|
|
36506
|
+
contributorsByScope?: Maybe<Array<CplsContributor>>;
|
|
36507
|
+
errors?: Maybe<Array<MutationError>>;
|
|
36508
|
+
success: Scalars['Boolean']['output'];
|
|
36509
|
+
};
|
|
36510
|
+
export declare type CplsCopyWorkToContributorsPayloadContributorWorkAssociationsByScopeArgs = {
|
|
36511
|
+
scopeId: Scalars['ID']['input'];
|
|
36512
|
+
};
|
|
36513
|
+
export declare type CplsCopyWorkToContributorsPayloadContributorsByScopeArgs = {
|
|
36514
|
+
scopeId: Scalars['ID']['input'];
|
|
36515
|
+
};
|
|
36144
36516
|
export declare type CplsCreateCustomContributionTargetInput = {
|
|
36145
36517
|
cloudId: Scalars['ID']['input'];
|
|
36146
36518
|
name: Scalars['String']['input'];
|
|
@@ -36474,11 +36846,6 @@ export declare type CplsSearchCustomContributionTargetsInput = {
|
|
|
36474
36846
|
query?: InputMaybe<Scalars['String']['input']>;
|
|
36475
36847
|
};
|
|
36476
36848
|
export declare type CplsSettings = CplsPlanSettings | QueryError;
|
|
36477
|
-
export declare type CplsSuggestionsExistencePayload = {
|
|
36478
|
-
__typename?: 'CplsSuggestionsExistencePayload';
|
|
36479
|
-
hasSuggestions: Scalars['Boolean']['output'];
|
|
36480
|
-
scopeId: Scalars['ID']['output'];
|
|
36481
|
-
};
|
|
36482
36849
|
export declare type CplsTimeCell = {
|
|
36483
36850
|
__typename?: 'CplsTimeCell';
|
|
36484
36851
|
endDate: Scalars['Date']['output'];
|
|
@@ -36651,6 +37018,7 @@ export declare type CreateAppDeploymentInput = {
|
|
|
36651
37018
|
environmentKey: Scalars['String']['input'];
|
|
36652
37019
|
hostedResourceUploadId?: InputMaybe<Scalars['ID']['input']>;
|
|
36653
37020
|
majorVersion?: InputMaybe<Scalars['Int']['input']>;
|
|
37021
|
+
skipRollout?: InputMaybe<Scalars['Boolean']['input']>;
|
|
36654
37022
|
};
|
|
36655
37023
|
export declare type CreateAppDeploymentResponse = Payload & {
|
|
36656
37024
|
__typename?: 'CreateAppDeploymentResponse';
|
|
@@ -40583,6 +40951,18 @@ export declare type DevAiAutodevNextSendWorkstreamNudgesPayload = Payload & {
|
|
|
40583
40951
|
errors?: Maybe<Array<MutationError>>;
|
|
40584
40952
|
success: Scalars['Boolean']['output'];
|
|
40585
40953
|
};
|
|
40954
|
+
export declare type DevAiAutodevNextTriggerWorkstreamScanInput = {
|
|
40955
|
+
cloudId: Scalars['ID']['input'];
|
|
40956
|
+
workstreamId: Scalars['ID']['input'];
|
|
40957
|
+
};
|
|
40958
|
+
export declare type DevAiAutodevNextTriggerWorkstreamScanPayload = Payload & {
|
|
40959
|
+
__typename?: 'DevAiAutodevNextTriggerWorkstreamScanPayload';
|
|
40960
|
+
errors?: Maybe<Array<MutationError>>;
|
|
40961
|
+
findWorkMode?: Maybe<Scalars['ID']['output']>;
|
|
40962
|
+
scansTriggered?: Maybe<Scalars['Int']['output']>;
|
|
40963
|
+
skippedReason?: Maybe<Scalars['ID']['output']>;
|
|
40964
|
+
success: Scalars['Boolean']['output'];
|
|
40965
|
+
};
|
|
40586
40966
|
export declare type DevAiAutodevNextUpdateWorkstreamInput = {
|
|
40587
40967
|
cloudId: Scalars['ID']['input'];
|
|
40588
40968
|
name?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -44071,6 +44451,7 @@ export declare type EcosystemQuery = {
|
|
|
44071
44451
|
fortifiedMetrics?: Maybe<FortifiedMetricsQuery>;
|
|
44072
44452
|
globalInstallationConfig?: Maybe<Array<Maybe<EcosystemGlobalInstallationOverride>>>;
|
|
44073
44453
|
marketplaceData?: Maybe<EcosystemMarketplaceData>;
|
|
44454
|
+
rollingReleaseEligibility?: Maybe<EcosystemRollingReleaseEligibility>;
|
|
44074
44455
|
rollingReleases?: Maybe<EcosystemRollingReleaseConnection>;
|
|
44075
44456
|
siteEntitlements?: Maybe<EcosystemSiteEntitlementsResult>;
|
|
44076
44457
|
unitsByInstallationId?: Maybe<Array<Maybe<EcosystemAddonInstallationUnit>>>;
|
|
@@ -44155,6 +44536,11 @@ export declare type EcosystemQueryMarketplaceDataArgs = {
|
|
|
44155
44536
|
appKey?: InputMaybe<Scalars['ID']['input']>;
|
|
44156
44537
|
cloudAppId?: InputMaybe<Scalars['ID']['input']>;
|
|
44157
44538
|
};
|
|
44539
|
+
export declare type EcosystemQueryRollingReleaseEligibilityArgs = {
|
|
44540
|
+
appId: Scalars['ID']['input'];
|
|
44541
|
+
environmentId: Scalars['ID']['input'];
|
|
44542
|
+
targetVersionId?: InputMaybe<Scalars['ID']['input']>;
|
|
44543
|
+
};
|
|
44158
44544
|
export declare type EcosystemQueryRollingReleasesArgs = {
|
|
44159
44545
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
44160
44546
|
appId: Scalars['ID']['input'];
|
|
@@ -44223,6 +44609,12 @@ export declare type EcosystemRollingReleaseEdge = {
|
|
|
44223
44609
|
cursor: Scalars['String']['output'];
|
|
44224
44610
|
node?: Maybe<EcosystemRollingRelease>;
|
|
44225
44611
|
};
|
|
44612
|
+
export declare type EcosystemRollingReleaseEligibility = {
|
|
44613
|
+
__typename?: 'EcosystemRollingReleaseEligibility';
|
|
44614
|
+
targetVersionId: Scalars['ID']['output'];
|
|
44615
|
+
totalEligibleInstallationCount: Scalars['Int']['output'];
|
|
44616
|
+
versionEligibilityBreakdown: Array<EcosystemVersionEligibilityBreakdown>;
|
|
44617
|
+
};
|
|
44226
44618
|
export declare type EcosystemRollingReleasePageInfo = {
|
|
44227
44619
|
__typename?: 'EcosystemRollingReleasePageInfo';
|
|
44228
44620
|
endCursor?: Maybe<Scalars['String']['output']>;
|
|
@@ -44283,6 +44675,14 @@ export declare type EcosystemUpdateInstallationRemoteRegionResponse = Payload &
|
|
|
44283
44675
|
errors?: Maybe<Array<MutationError>>;
|
|
44284
44676
|
success: Scalars['Boolean']['output'];
|
|
44285
44677
|
};
|
|
44678
|
+
export declare type EcosystemVersionEligibilityBreakdown = {
|
|
44679
|
+
__typename?: 'EcosystemVersionEligibilityBreakdown';
|
|
44680
|
+
failingEligibilityRules: Array<Scalars['String']['output']>;
|
|
44681
|
+
installationCount: Scalars['Int']['output'];
|
|
44682
|
+
isEligible: Scalars['Boolean']['output'];
|
|
44683
|
+
semVer: Scalars['String']['output'];
|
|
44684
|
+
sourceVersionId: Scalars['ID']['output'];
|
|
44685
|
+
};
|
|
44286
44686
|
export declare type EditSprintInput = {
|
|
44287
44687
|
autoManaged?: InputMaybe<AutoManagedSprintSetting>;
|
|
44288
44688
|
boardId: Scalars['ID']['input'];
|
|
@@ -45765,8 +46165,11 @@ export declare type ExternalMessageLink = {
|
|
|
45765
46165
|
export declare type ExternalOrganisation = Node & {
|
|
45766
46166
|
__typename?: 'ExternalOrganisation';
|
|
45767
46167
|
associatedWith?: Maybe<ExternalAssociationConnection>;
|
|
46168
|
+
container?: Maybe<ExternalEntity>;
|
|
46169
|
+
containerId?: Maybe<Scalars['ID']['output']>;
|
|
45768
46170
|
createdAt?: Maybe<Scalars['String']['output']>;
|
|
45769
46171
|
createdBy?: Maybe<ExternalUser>;
|
|
46172
|
+
description?: Maybe<Scalars['String']['output']>;
|
|
45770
46173
|
displayName?: Maybe<Scalars['String']['output']>;
|
|
45771
46174
|
entityExtendedValues?: Maybe<Array<Maybe<ExternalEntityExtendedValue>>>;
|
|
45772
46175
|
externalId?: Maybe<Scalars['String']['output']>;
|
|
@@ -113464,14 +113867,20 @@ export declare type JiraBoardView = JiraView & Node & {
|
|
|
113464
113867
|
canArchiveIssues?: Maybe<Scalars['Boolean']['output']>;
|
|
113465
113868
|
canAssignIssues?: Maybe<Scalars['Boolean']['output']>;
|
|
113466
113869
|
canConfigureStatusColumnMapping?: Maybe<Scalars['Boolean']['output']>;
|
|
113870
|
+
canCreateStatuses?: Maybe<Scalars['Boolean']['output']>;
|
|
113871
|
+
canDeleteStatuses?: Maybe<Scalars['Boolean']['output']>;
|
|
113467
113872
|
canEditIssues?: Maybe<Scalars['Boolean']['output']>;
|
|
113873
|
+
canInlineCreateStatusColumns?: Maybe<Scalars['Boolean']['output']>;
|
|
113874
|
+
canInlineDeleteStatusColumns?: Maybe<Scalars['Boolean']['output']>;
|
|
113468
113875
|
canInlineEditStatusColumns?: Maybe<Scalars['Boolean']['output']>;
|
|
113469
113876
|
canInlineEditTransitionAgents?: Maybe<Scalars['Boolean']['output']>;
|
|
113877
|
+
canInlineRenameStatusColumns?: Maybe<Scalars['Boolean']['output']>;
|
|
113470
113878
|
canManageSprints?: Maybe<Scalars['Boolean']['output']>;
|
|
113471
113879
|
canManageStatuses?: Maybe<Scalars['Boolean']['output']>;
|
|
113472
113880
|
canMoveIssueBetweenSwimlanes?: Maybe<Scalars['Boolean']['output']>;
|
|
113473
113881
|
canMoveIssuesBetweenSwimlanes?: Maybe<Scalars['Boolean']['output']>;
|
|
113474
113882
|
canPublishViewConfig?: Maybe<Scalars['Boolean']['output']>;
|
|
113883
|
+
canRenameStatuses?: Maybe<Scalars['Boolean']['output']>;
|
|
113475
113884
|
canScheduleIssues?: Maybe<Scalars['Boolean']['output']>;
|
|
113476
113885
|
canTransitionIssues?: Maybe<Scalars['Boolean']['output']>;
|
|
113477
113886
|
cardOptions?: Maybe<JiraBoardViewCardOptionConnection>;
|
|
@@ -113824,6 +114233,7 @@ export declare type JiraBoardViewStatusColumnWorkflowsArgs = {
|
|
|
113824
114233
|
};
|
|
113825
114234
|
export declare type JiraBoardViewStatusColumnMapping = {
|
|
113826
114235
|
id?: InputMaybe<Scalars['ID']['input']>;
|
|
114236
|
+
maximumIssueCount?: InputMaybe<Scalars['Int']['input']>;
|
|
113827
114237
|
name: Scalars['String']['input'];
|
|
113828
114238
|
statusIds: Array<Scalars['ID']['input']>;
|
|
113829
114239
|
};
|
|
@@ -115230,6 +115640,7 @@ export declare type JiraCmdbStatusType = {
|
|
|
115230
115640
|
};
|
|
115231
115641
|
export declare enum JiraCollapsibleSection {
|
|
115232
115642
|
Activity = "ACTIVITY",
|
|
115643
|
+
AiPanelServicedesk = "AI_PANEL_SERVICEDESK",
|
|
115233
115644
|
Attachments = "ATTACHMENTS",
|
|
115234
115645
|
ChildWorkItem = "CHILD_WORK_ITEM",
|
|
115235
115646
|
Description = "DESCRIPTION",
|
|
@@ -116065,6 +116476,17 @@ export declare type JiraCreateCalendarIssuePayload = Payload & {
|
|
|
116065
116476
|
issueV2?: Maybe<JiraScenarioIssueLike>;
|
|
116066
116477
|
success: Scalars['Boolean']['output'];
|
|
116067
116478
|
};
|
|
116479
|
+
export declare type JiraCreateCategoryOptionInput = {
|
|
116480
|
+
color?: InputMaybe<JiraOptionColorInput>;
|
|
116481
|
+
name: Scalars['String']['input'];
|
|
116482
|
+
projectId: Scalars['ID']['input'];
|
|
116483
|
+
};
|
|
116484
|
+
export declare type JiraCreateCategoryOptionPayload = Payload & {
|
|
116485
|
+
__typename?: 'JiraCreateCategoryOptionPayload';
|
|
116486
|
+
createdCategoryOption?: Maybe<JiraOption>;
|
|
116487
|
+
errors?: Maybe<Array<MutationError>>;
|
|
116488
|
+
success: Scalars['Boolean']['output'];
|
|
116489
|
+
};
|
|
116068
116490
|
export declare type JiraCreateCustomBackgroundInput = {
|
|
116069
116491
|
altText: Scalars['String']['input'];
|
|
116070
116492
|
dominantColor?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -125693,6 +126115,7 @@ export declare enum JiraNavigationItemTypeKey {
|
|
|
125693
126115
|
Inbox = "INBOX",
|
|
125694
126116
|
Incidents = "INCIDENTS",
|
|
125695
126117
|
Issues = "ISSUES",
|
|
126118
|
+
Knowledge = "KNOWLEDGE",
|
|
125696
126119
|
List = "LIST",
|
|
125697
126120
|
OnCall = "ON_CALL",
|
|
125698
126121
|
Pages = "PAGES",
|
|
@@ -127364,6 +127787,7 @@ export declare type JiraProject = Node & {
|
|
|
127364
127787
|
category?: Maybe<JiraProjectCategory>;
|
|
127365
127788
|
classificationTags: Array<Scalars['String']['output']>;
|
|
127366
127789
|
cloudId: Scalars['ID']['output'];
|
|
127790
|
+
components?: Maybe<JiraComponentConnection>;
|
|
127367
127791
|
conditionalFormattingRules?: Maybe<JiraFormattingRuleConnection>;
|
|
127368
127792
|
created?: Maybe<Scalars['DateTime']['output']>;
|
|
127369
127793
|
csmConversationType?: Maybe<JiraIssueType>;
|
|
@@ -127497,6 +127921,13 @@ export declare type JiraProjectBoardsArgs = {
|
|
|
127497
127921
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
127498
127922
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
127499
127923
|
};
|
|
127924
|
+
export declare type JiraProjectComponentsArgs = {
|
|
127925
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
127926
|
+
before?: InputMaybe<Scalars['String']['input']>;
|
|
127927
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
127928
|
+
last?: InputMaybe<Scalars['Int']['input']>;
|
|
127929
|
+
searchBy?: InputMaybe<Scalars['String']['input']>;
|
|
127930
|
+
};
|
|
127500
127931
|
export declare type JiraProjectConditionalFormattingRulesArgs = {
|
|
127501
127932
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
127502
127933
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
@@ -128738,6 +129169,7 @@ export declare type JiraQuery = {
|
|
|
128738
129169
|
jiraWorkItemJourneys?: Maybe<JiraJourneyConnection>;
|
|
128739
129170
|
jira_recommendedAgents?: Maybe<JiraActorConnection>;
|
|
128740
129171
|
jira_semanticAgentRecommender?: Maybe<JiraSemanticAgentRecommenderConnection>;
|
|
129172
|
+
jira_semanticAgentRecommenderV2?: Maybe<JiraActorConnection>;
|
|
128741
129173
|
jpdDeliveryIssueLinkTypeId?: Maybe<Scalars['ID']['output']>;
|
|
128742
129174
|
jpdGlobalViewFields?: Maybe<JiraPolarisGlobalViewFields>;
|
|
128743
129175
|
jqlBuilder?: Maybe<JiraJqlBuilder>;
|
|
@@ -129606,6 +130038,12 @@ export declare type JiraQueryJira_SemanticAgentRecommenderArgs = {
|
|
|
129606
130038
|
text: Scalars['String']['input'];
|
|
129607
130039
|
threshold?: InputMaybe<Scalars['Float']['input']>;
|
|
129608
130040
|
};
|
|
130041
|
+
export declare type JiraQueryJira_SemanticAgentRecommenderV2Args = {
|
|
130042
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
130043
|
+
cloudId: Scalars['ID']['input'];
|
|
130044
|
+
contextAri: Scalars['ID']['input'];
|
|
130045
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
130046
|
+
};
|
|
129609
130047
|
export declare type JiraQueryJpdDeliveryIssueLinkTypeIdArgs = {
|
|
129610
130048
|
cloudId: Scalars['ID']['input'];
|
|
129611
130049
|
};
|
|
@@ -132836,6 +133274,46 @@ export declare type JiraServiceManagementSentimentFieldPayload = Payload & {
|
|
|
132836
133274
|
field?: Maybe<JiraServiceManagementSentimentField>;
|
|
132837
133275
|
success: Scalars['Boolean']['output'];
|
|
132838
133276
|
};
|
|
133277
|
+
export declare type JiraServiceManagementSla = {
|
|
133278
|
+
__typename?: 'JiraServiceManagementSla';
|
|
133279
|
+
completedCycles?: Maybe<JiraServiceManagementSlaCompletedCycleConnection>;
|
|
133280
|
+
displayFormat?: Maybe<Scalars['String']['output']>;
|
|
133281
|
+
error?: Maybe<JiraServiceManagementSlaError>;
|
|
133282
|
+
goalView?: Maybe<JiraServiceManagementSlaGoalView>;
|
|
133283
|
+
ongoingCycle?: Maybe<JiraServiceManagementSlaOngoingCycle>;
|
|
133284
|
+
timeMetricId?: Maybe<Scalars['String']['output']>;
|
|
133285
|
+
timeMetricName?: Maybe<Scalars['String']['output']>;
|
|
133286
|
+
timelineEvents?: Maybe<JiraServiceManagementSlaTimelineEventConnection>;
|
|
133287
|
+
};
|
|
133288
|
+
export declare type JiraServiceManagementSlaCompletedCyclesArgs = {
|
|
133289
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
133290
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
133291
|
+
};
|
|
133292
|
+
export declare type JiraServiceManagementSlaTimelineEventsArgs = {
|
|
133293
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
133294
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
133295
|
+
};
|
|
133296
|
+
export declare type JiraServiceManagementSlaCalendar = {
|
|
133297
|
+
__typename?: 'JiraServiceManagementSlaCalendar';
|
|
133298
|
+
calendarId?: Maybe<Scalars['String']['output']>;
|
|
133299
|
+
holidays?: Maybe<JiraServiceManagementSlaHolidayConnection>;
|
|
133300
|
+
kind?: Maybe<JiraServiceManagementSlaCalendarKind>;
|
|
133301
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
133302
|
+
timezone?: Maybe<Scalars['String']['output']>;
|
|
133303
|
+
workingTimes?: Maybe<JiraServiceManagementSlaWorkingTimeConnection>;
|
|
133304
|
+
};
|
|
133305
|
+
export declare type JiraServiceManagementSlaCalendarHolidaysArgs = {
|
|
133306
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
133307
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
133308
|
+
};
|
|
133309
|
+
export declare type JiraServiceManagementSlaCalendarWorkingTimesArgs = {
|
|
133310
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
133311
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
133312
|
+
};
|
|
133313
|
+
export declare enum JiraServiceManagementSlaCalendarKind {
|
|
133314
|
+
Custom = "CUSTOM",
|
|
133315
|
+
Standard = "STANDARD"
|
|
133316
|
+
}
|
|
132839
133317
|
export declare type JiraServiceManagementSlaCompleteGoal = {
|
|
132840
133318
|
__typename?: 'JiraServiceManagementSlaCompleteGoal';
|
|
132841
133319
|
breachTime?: Maybe<Scalars['String']['output']>;
|
|
@@ -132845,6 +133323,76 @@ export declare type JiraServiceManagementSlaCompleteGoal = {
|
|
|
132845
133323
|
startTime?: Maybe<Scalars['String']['output']>;
|
|
132846
133324
|
stopTime?: Maybe<Scalars['String']['output']>;
|
|
132847
133325
|
};
|
|
133326
|
+
export declare type JiraServiceManagementSlaCompletedCycle = {
|
|
133327
|
+
__typename?: 'JiraServiceManagementSlaCompletedCycle';
|
|
133328
|
+
breachTime?: Maybe<Scalars['DateTime']['output']>;
|
|
133329
|
+
breached?: Maybe<Scalars['Boolean']['output']>;
|
|
133330
|
+
calendarName?: Maybe<Scalars['String']['output']>;
|
|
133331
|
+
elapsed?: Maybe<Scalars['String']['output']>;
|
|
133332
|
+
goalDuration?: Maybe<Scalars['String']['output']>;
|
|
133333
|
+
remaining?: Maybe<Scalars['String']['output']>;
|
|
133334
|
+
startTime?: Maybe<Scalars['DateTime']['output']>;
|
|
133335
|
+
stopTime?: Maybe<Scalars['DateTime']['output']>;
|
|
133336
|
+
};
|
|
133337
|
+
export declare type JiraServiceManagementSlaCompletedCycleConnection = {
|
|
133338
|
+
__typename?: 'JiraServiceManagementSlaCompletedCycleConnection';
|
|
133339
|
+
edges?: Maybe<Array<Maybe<JiraServiceManagementSlaCompletedCycleEdge>>>;
|
|
133340
|
+
pageInfo: PageInfo;
|
|
133341
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
133342
|
+
};
|
|
133343
|
+
export declare type JiraServiceManagementSlaCompletedCycleEdge = {
|
|
133344
|
+
__typename?: 'JiraServiceManagementSlaCompletedCycleEdge';
|
|
133345
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
133346
|
+
node?: Maybe<JiraServiceManagementSlaCompletedCycle>;
|
|
133347
|
+
};
|
|
133348
|
+
export declare enum JiraServiceManagementSlaDayOfWeek {
|
|
133349
|
+
Friday = "FRIDAY",
|
|
133350
|
+
Monday = "MONDAY",
|
|
133351
|
+
Saturday = "SATURDAY",
|
|
133352
|
+
Sunday = "SUNDAY",
|
|
133353
|
+
Thursday = "THURSDAY",
|
|
133354
|
+
Tuesday = "TUESDAY",
|
|
133355
|
+
Wednesday = "WEDNESDAY"
|
|
133356
|
+
}
|
|
133357
|
+
export declare enum JiraServiceManagementSlaEmergencyLevel {
|
|
133358
|
+
Breached = "BREACHED",
|
|
133359
|
+
Important = "IMPORTANT",
|
|
133360
|
+
Urgent = "URGENT"
|
|
133361
|
+
}
|
|
133362
|
+
export declare type JiraServiceManagementSlaError = {
|
|
133363
|
+
__typename?: 'JiraServiceManagementSlaError';
|
|
133364
|
+
errorCode?: Maybe<JiraServiceManagementSlaErrorCode>;
|
|
133365
|
+
goalId?: Maybe<Scalars['String']['output']>;
|
|
133366
|
+
timeMetricId?: Maybe<Scalars['String']['output']>;
|
|
133367
|
+
};
|
|
133368
|
+
export declare enum JiraServiceManagementSlaErrorCode {
|
|
133369
|
+
GoalNotFound = "GOAL_NOT_FOUND",
|
|
133370
|
+
TimeMetricsNotFound = "TIME_METRICS_NOT_FOUND",
|
|
133371
|
+
Unrecognized = "UNRECOGNIZED"
|
|
133372
|
+
}
|
|
133373
|
+
export declare type JiraServiceManagementSlaField = JiraIssueField & JiraIssueFieldConfiguration & JiraListRowField & Node & {
|
|
133374
|
+
__typename?: 'JiraServiceManagementSlaField';
|
|
133375
|
+
aliasFieldId?: Maybe<Scalars['ID']['output']>;
|
|
133376
|
+
description?: Maybe<Scalars['String']['output']>;
|
|
133377
|
+
fieldConfig?: Maybe<JiraFieldConfig>;
|
|
133378
|
+
fieldId: Scalars['String']['output'];
|
|
133379
|
+
fieldOperations?: Maybe<JiraFieldOperation>;
|
|
133380
|
+
hasValue?: Maybe<Scalars['Boolean']['output']>;
|
|
133381
|
+
id: Scalars['ID']['output'];
|
|
133382
|
+
isEditableInIssueTransition?: Maybe<Scalars['Boolean']['output']>;
|
|
133383
|
+
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
133384
|
+
isSearchableInJql?: Maybe<Scalars['Boolean']['output']>;
|
|
133385
|
+
issue?: Maybe<JiraIssue>;
|
|
133386
|
+
name: Scalars['String']['output'];
|
|
133387
|
+
sla?: Maybe<JiraServiceManagementSla>;
|
|
133388
|
+
type: Scalars['String']['output'];
|
|
133389
|
+
};
|
|
133390
|
+
export declare type JiraServiceManagementSlaGoal = {
|
|
133391
|
+
__typename?: 'JiraServiceManagementSlaGoal';
|
|
133392
|
+
calendar?: Maybe<JiraServiceManagementSlaCalendar>;
|
|
133393
|
+
duration?: Maybe<Scalars['String']['output']>;
|
|
133394
|
+
goalId?: Maybe<Scalars['String']['output']>;
|
|
133395
|
+
};
|
|
132848
133396
|
export declare type JiraServiceManagementSlaGoalDetailedView = {
|
|
132849
133397
|
__typename?: 'JiraServiceManagementSlaGoalDetailedView';
|
|
132850
133398
|
active?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -132867,6 +133415,33 @@ export declare type JiraServiceManagementSlaGoalDetailedView = {
|
|
|
132867
133415
|
startTime?: Maybe<Scalars['String']['output']>;
|
|
132868
133416
|
stopTime?: Maybe<Scalars['String']['output']>;
|
|
132869
133417
|
};
|
|
133418
|
+
export declare type JiraServiceManagementSlaGoalView = {
|
|
133419
|
+
__typename?: 'JiraServiceManagementSlaGoalView';
|
|
133420
|
+
active?: Maybe<Scalars['Boolean']['output']>;
|
|
133421
|
+
calculatedAt?: Maybe<Scalars['String']['output']>;
|
|
133422
|
+
closed?: Maybe<Scalars['Boolean']['output']>;
|
|
133423
|
+
emergencyLevel?: Maybe<JiraServiceManagementSlaEmergencyLevel>;
|
|
133424
|
+
failed?: Maybe<Scalars['Boolean']['output']>;
|
|
133425
|
+
paused?: Maybe<Scalars['Boolean']['output']>;
|
|
133426
|
+
remainingTime?: Maybe<Scalars['String']['output']>;
|
|
133427
|
+
};
|
|
133428
|
+
export declare type JiraServiceManagementSlaHoliday = {
|
|
133429
|
+
__typename?: 'JiraServiceManagementSlaHoliday';
|
|
133430
|
+
date?: Maybe<Scalars['DateTime']['output']>;
|
|
133431
|
+
holidayId?: Maybe<Scalars['String']['output']>;
|
|
133432
|
+
recurring?: Maybe<Scalars['Boolean']['output']>;
|
|
133433
|
+
};
|
|
133434
|
+
export declare type JiraServiceManagementSlaHolidayConnection = {
|
|
133435
|
+
__typename?: 'JiraServiceManagementSlaHolidayConnection';
|
|
133436
|
+
edges?: Maybe<Array<Maybe<JiraServiceManagementSlaHolidayEdge>>>;
|
|
133437
|
+
pageInfo: PageInfo;
|
|
133438
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
133439
|
+
};
|
|
133440
|
+
export declare type JiraServiceManagementSlaHolidayEdge = {
|
|
133441
|
+
__typename?: 'JiraServiceManagementSlaHolidayEdge';
|
|
133442
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
133443
|
+
node?: Maybe<JiraServiceManagementSlaHoliday>;
|
|
133444
|
+
};
|
|
132870
133445
|
export declare type JiraServiceManagementSlaIssue = {
|
|
132871
133446
|
__typename?: 'JiraServiceManagementSlaIssue';
|
|
132872
133447
|
goalViews?: Maybe<Array<JiraServiceManagementSlaGoalDetailedView>>;
|
|
@@ -132877,6 +133452,69 @@ export declare type JiraServiceManagementSlaIssueResult = {
|
|
|
132877
133452
|
errors?: Maybe<Array<QueryError>>;
|
|
132878
133453
|
slaIssue?: Maybe<JiraServiceManagementSlaIssue>;
|
|
132879
133454
|
};
|
|
133455
|
+
export declare type JiraServiceManagementSlaOngoingCycle = {
|
|
133456
|
+
__typename?: 'JiraServiceManagementSlaOngoingCycle';
|
|
133457
|
+
goal?: Maybe<JiraServiceManagementSlaGoal>;
|
|
133458
|
+
paused?: Maybe<Scalars['Boolean']['output']>;
|
|
133459
|
+
startTime?: Maybe<Scalars['DateTime']['output']>;
|
|
133460
|
+
};
|
|
133461
|
+
export declare type JiraServiceManagementSlaTimelineEvent = {
|
|
133462
|
+
__typename?: 'JiraServiceManagementSlaTimelineEvent';
|
|
133463
|
+
datetime?: Maybe<Scalars['DateTime']['output']>;
|
|
133464
|
+
types?: Maybe<JiraServiceManagementSlaTimelineEventTypeConnection>;
|
|
133465
|
+
};
|
|
133466
|
+
export declare type JiraServiceManagementSlaTimelineEventTypesArgs = {
|
|
133467
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
133468
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
133469
|
+
};
|
|
133470
|
+
export declare type JiraServiceManagementSlaTimelineEventConnection = {
|
|
133471
|
+
__typename?: 'JiraServiceManagementSlaTimelineEventConnection';
|
|
133472
|
+
edges?: Maybe<Array<Maybe<JiraServiceManagementSlaTimelineEventEdge>>>;
|
|
133473
|
+
pageInfo: PageInfo;
|
|
133474
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
133475
|
+
};
|
|
133476
|
+
export declare type JiraServiceManagementSlaTimelineEventEdge = {
|
|
133477
|
+
__typename?: 'JiraServiceManagementSlaTimelineEventEdge';
|
|
133478
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
133479
|
+
node?: Maybe<JiraServiceManagementSlaTimelineEvent>;
|
|
133480
|
+
};
|
|
133481
|
+
export declare enum JiraServiceManagementSlaTimelineEventType {
|
|
133482
|
+
Pause = "PAUSE",
|
|
133483
|
+
Restart = "RESTART",
|
|
133484
|
+
Start = "START",
|
|
133485
|
+
Stop = "STOP",
|
|
133486
|
+
Unpause = "UNPAUSE",
|
|
133487
|
+
Unrecognized = "UNRECOGNIZED"
|
|
133488
|
+
}
|
|
133489
|
+
export declare type JiraServiceManagementSlaTimelineEventTypeConnection = {
|
|
133490
|
+
__typename?: 'JiraServiceManagementSlaTimelineEventTypeConnection';
|
|
133491
|
+
edges?: Maybe<Array<Maybe<JiraServiceManagementSlaTimelineEventTypeEdge>>>;
|
|
133492
|
+
pageInfo: PageInfo;
|
|
133493
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
133494
|
+
};
|
|
133495
|
+
export declare type JiraServiceManagementSlaTimelineEventTypeEdge = {
|
|
133496
|
+
__typename?: 'JiraServiceManagementSlaTimelineEventTypeEdge';
|
|
133497
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
133498
|
+
node?: Maybe<JiraServiceManagementSlaTimelineEventType>;
|
|
133499
|
+
};
|
|
133500
|
+
export declare type JiraServiceManagementSlaWorkingTime = {
|
|
133501
|
+
__typename?: 'JiraServiceManagementSlaWorkingTime';
|
|
133502
|
+
end?: Maybe<Scalars['DateTime']['output']>;
|
|
133503
|
+
start?: Maybe<Scalars['DateTime']['output']>;
|
|
133504
|
+
weekday?: Maybe<JiraServiceManagementSlaDayOfWeek>;
|
|
133505
|
+
workingTimeId?: Maybe<Scalars['String']['output']>;
|
|
133506
|
+
};
|
|
133507
|
+
export declare type JiraServiceManagementSlaWorkingTimeConnection = {
|
|
133508
|
+
__typename?: 'JiraServiceManagementSlaWorkingTimeConnection';
|
|
133509
|
+
edges?: Maybe<Array<Maybe<JiraServiceManagementSlaWorkingTimeEdge>>>;
|
|
133510
|
+
pageInfo: PageInfo;
|
|
133511
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
133512
|
+
};
|
|
133513
|
+
export declare type JiraServiceManagementSlaWorkingTimeEdge = {
|
|
133514
|
+
__typename?: 'JiraServiceManagementSlaWorkingTimeEdge';
|
|
133515
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
133516
|
+
node?: Maybe<JiraServiceManagementSlaWorkingTime>;
|
|
133517
|
+
};
|
|
132880
133518
|
export declare type JiraServiceManagementTeamResponder = {
|
|
132881
133519
|
__typename?: 'JiraServiceManagementTeamResponder';
|
|
132882
133520
|
teamId?: Maybe<Scalars['String']['output']>;
|
|
@@ -133118,7 +133756,7 @@ export declare type JiraSetBoardViewStatusColumnIssueCountLimitInput = {
|
|
|
133118
133756
|
maximumIssueCount?: InputMaybe<Scalars['Int']['input']>;
|
|
133119
133757
|
settings?: InputMaybe<JiraBoardViewSettings>;
|
|
133120
133758
|
};
|
|
133121
|
-
export declare type JiraSetBoardViewStatusColumnIssueCountLimitPayload = {
|
|
133759
|
+
export declare type JiraSetBoardViewStatusColumnIssueCountLimitPayload = Payload & {
|
|
133122
133760
|
__typename?: 'JiraSetBoardViewStatusColumnIssueCountLimitPayload';
|
|
133123
133761
|
boardView?: Maybe<JiraBoardView>;
|
|
133124
133762
|
column?: Maybe<JiraBoardViewStatusColumn>;
|
|
@@ -138284,7 +138922,9 @@ export declare type JpdViewsServiceTimelineConfigInput2 = {
|
|
|
138284
138922
|
};
|
|
138285
138923
|
export declare enum JpdViewsServiceTimelineMode {
|
|
138286
138924
|
Months = "MONTHS",
|
|
138287
|
-
Quarters = "QUARTERS"
|
|
138925
|
+
Quarters = "QUARTERS",
|
|
138926
|
+
Weeks = "WEEKS",
|
|
138927
|
+
Years = "YEARS"
|
|
138288
138928
|
}
|
|
138289
138929
|
export declare enum JpdViewsServiceTodayMarker {
|
|
138290
138930
|
Disabled = "DISABLED",
|
|
@@ -138455,6 +139095,7 @@ export declare type JsmChannelsConditionNode = JsmChannelsPlanNode & {
|
|
|
138455
139095
|
};
|
|
138456
139096
|
export declare enum JsmChannelsConnectionType {
|
|
138457
139097
|
Identitynow = "IDENTITYNOW",
|
|
139098
|
+
Intune = "INTUNE",
|
|
138458
139099
|
Okta = "OKTA"
|
|
138459
139100
|
}
|
|
138460
139101
|
export declare type JsmChannelsConversationsByContainerAriResult = JsmChannelsOrchestratorConversationsConnection | QueryError;
|
|
@@ -138556,6 +139197,12 @@ export declare type JsmChannelsJqlEnablementRuleInput = {
|
|
|
138556
139197
|
name?: InputMaybe<Scalars['String']['input']>;
|
|
138557
139198
|
priority: Scalars['Int']['input'];
|
|
138558
139199
|
};
|
|
139200
|
+
export declare type JsmChannelsMsIntuneTaskAgentConfiguration = {
|
|
139201
|
+
__typename?: 'JsmChannelsMsIntuneTaskAgentConfiguration';
|
|
139202
|
+
accountId: Scalars['String']['output'];
|
|
139203
|
+
serviceKey: Scalars['String']['output'];
|
|
139204
|
+
tenantId: Scalars['String']['output'];
|
|
139205
|
+
};
|
|
138559
139206
|
export declare type JsmChannelsOktaTaskAgentConfiguration = {
|
|
138560
139207
|
__typename?: 'JsmChannelsOktaTaskAgentConfiguration';
|
|
138561
139208
|
accountId: Scalars['String']['output'];
|
|
@@ -138810,7 +139457,7 @@ export declare type JsmChannelsTaskAgent = {
|
|
|
138810
139457
|
displayName: Scalars['String']['output'];
|
|
138811
139458
|
status: JsmChannelsTaskAgentStatus;
|
|
138812
139459
|
};
|
|
138813
|
-
export declare type JsmChannelsTaskAgentConfigurationDetails = JsmChannelsIdentityNowTaskAgentConfiguration | JsmChannelsOktaTaskAgentConfiguration;
|
|
139460
|
+
export declare type JsmChannelsTaskAgentConfigurationDetails = JsmChannelsIdentityNowTaskAgentConfiguration | JsmChannelsMsIntuneTaskAgentConfiguration | JsmChannelsOktaTaskAgentConfiguration;
|
|
138814
139461
|
export declare type JsmChannelsTaskAgentConfigurationInput = {
|
|
138815
139462
|
configuration?: InputMaybe<Scalars['JSON']['input']>;
|
|
138816
139463
|
status: JsmChannelsTaskAgentStatus;
|
|
@@ -139554,6 +140201,10 @@ export declare enum JsmConversationStatus {
|
|
|
139554
140201
|
Unassigned = "UNASSIGNED"
|
|
139555
140202
|
}
|
|
139556
140203
|
export declare type JsmConversationUpdate = JsmConversation | JsmConversationClaimedConversationMessage | QueryError;
|
|
140204
|
+
export declare type JsmSolutionComposerFollowupTask = {
|
|
140205
|
+
__typename?: 'JsmSolutionComposerFollowupTask';
|
|
140206
|
+
taskType: Scalars['String']['output'];
|
|
140207
|
+
};
|
|
139557
140208
|
export declare type JsmSolutionComposerPlanQueryApi = {
|
|
139558
140209
|
__typename?: 'JsmSolutionComposerPlanQueryApi';
|
|
139559
140210
|
jsmSolutionComposerPlanStatus?: Maybe<JsmSolutionComposerPlanStatusResult>;
|
|
@@ -139567,6 +140218,7 @@ export declare type JsmSolutionComposerPlanStatusMetadata = {
|
|
|
139567
140218
|
};
|
|
139568
140219
|
export declare type JsmSolutionComposerPlanStatusResponse = {
|
|
139569
140220
|
__typename?: 'JsmSolutionComposerPlanStatusResponse';
|
|
140221
|
+
followupTasks?: Maybe<Array<Maybe<JsmSolutionComposerFollowupTask>>>;
|
|
139570
140222
|
id: Scalars['ID']['output'];
|
|
139571
140223
|
metadata?: Maybe<JsmSolutionComposerPlanStatusMetadata>;
|
|
139572
140224
|
projectAri: Scalars['ID']['output'];
|
|
@@ -140243,7 +140895,8 @@ export declare enum KitsuneJobType {
|
|
|
140243
140895
|
ImportFeedback = "IMPORT_FEEDBACK",
|
|
140244
140896
|
ImportOrganization = "IMPORT_ORGANIZATION",
|
|
140245
140897
|
ResyncFeedback = "RESYNC_FEEDBACK",
|
|
140246
|
-
SyncCsmProperties = "SYNC_CSM_PROPERTIES"
|
|
140898
|
+
SyncCsmProperties = "SYNC_CSM_PROPERTIES",
|
|
140899
|
+
SyncCustomer = "SYNC_CUSTOMER"
|
|
140247
140900
|
}
|
|
140248
140901
|
export declare enum KitsuneLogicalOperator {
|
|
140249
140902
|
And = "AND",
|
|
@@ -140349,6 +141002,7 @@ export declare type KitsuneSnippetConnection = KitsuneConnection & {
|
|
|
140349
141002
|
__typename?: 'KitsuneSnippetConnection';
|
|
140350
141003
|
edges: Array<KitsuneSnippetEdge>;
|
|
140351
141004
|
pageInfo: PageInfo;
|
|
141005
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
140352
141006
|
};
|
|
140353
141007
|
export declare type KitsuneSnippetEdge = KitsuneEdge & {
|
|
140354
141008
|
__typename?: 'KitsuneSnippetEdge';
|
|
@@ -141708,6 +142362,7 @@ export declare type KnowledgeDiscoveryQueryApiSearchUsersV2Args = {
|
|
|
141708
142362
|
};
|
|
141709
142363
|
export declare type KnowledgeDiscoveryQueryApiSingleUserArgs = {
|
|
141710
142364
|
accountId: Scalars['String']['input'];
|
|
142365
|
+
orgId?: InputMaybe<Scalars['String']['input']>;
|
|
141711
142366
|
requestingUserId: Scalars['String']['input'];
|
|
141712
142367
|
tenantId: Scalars['String']['input'];
|
|
141713
142368
|
};
|
|
@@ -141995,6 +142650,7 @@ export declare type KnowledgeDiscoveryUserManager = {
|
|
|
141995
142650
|
__typename?: 'KnowledgeDiscoveryUserManager';
|
|
141996
142651
|
id?: Maybe<Scalars['String']['output']>;
|
|
141997
142652
|
jobTitle?: Maybe<Scalars['String']['output']>;
|
|
142653
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
141998
142654
|
picture?: Maybe<Scalars['String']['output']>;
|
|
141999
142655
|
};
|
|
142000
142656
|
export declare type KnowledgeDiscoveryUserProfile = {
|
|
@@ -142523,6 +143179,10 @@ export declare type LoomAcceptOrganizationInvitation = {
|
|
|
142523
143179
|
redirectUri?: Maybe<Scalars['String']['output']>;
|
|
142524
143180
|
success: Scalars['String']['output'];
|
|
142525
143181
|
};
|
|
143182
|
+
export declare type LoomAgentBrief = {
|
|
143183
|
+
__typename?: 'LoomAgentBrief';
|
|
143184
|
+
structuredOutput?: Maybe<Scalars['String']['output']>;
|
|
143185
|
+
};
|
|
142526
143186
|
export declare enum LoomCalendarIntegrationType {
|
|
142527
143187
|
GoogleCalendar = "GOOGLE_CALENDAR",
|
|
142528
143188
|
MicrosoftOutlook = "MICROSOFT_OUTLOOK"
|
|
@@ -142819,6 +143479,7 @@ export declare type LoomValidateSlackUserIds = {
|
|
|
142819
143479
|
};
|
|
142820
143480
|
export declare type LoomVideo = Node & {
|
|
142821
143481
|
__typename?: 'LoomVideo';
|
|
143482
|
+
agentBriefs?: Maybe<Array<Maybe<LoomAgentBrief>>>;
|
|
142822
143483
|
collaborators?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
|
|
142823
143484
|
commentCount?: Maybe<Scalars['Int']['output']>;
|
|
142824
143485
|
comments?: Maybe<LoomCommentConnection>;
|
|
@@ -146125,6 +146786,7 @@ export declare type MarketplaceStoreInstallAppInput = {
|
|
|
146125
146786
|
export declare type MarketplaceStoreInstallAppResponse = {
|
|
146126
146787
|
__typename?: 'MarketplaceStoreInstallAppResponse';
|
|
146127
146788
|
id: Scalars['ID']['output'];
|
|
146789
|
+
isGlobalAppInstall?: Maybe<Scalars['Boolean']['output']>;
|
|
146128
146790
|
isUpmInstall?: Maybe<Scalars['Boolean']['output']>;
|
|
146129
146791
|
orderId?: Maybe<Scalars['ID']['output']>;
|
|
146130
146792
|
status: MarketplaceStoreInstallAppStatus;
|
|
@@ -146140,8 +146802,13 @@ export declare enum MarketplaceStoreInstallAppStatus {
|
|
|
146140
146802
|
}
|
|
146141
146803
|
export declare type MarketplaceStoreInstallAppTargetInput = {
|
|
146142
146804
|
cloudId: Scalars['ID']['input'];
|
|
146143
|
-
|
|
146805
|
+
installationTarget?: InputMaybe<MarketplaceStoreInstallationTarget>;
|
|
146806
|
+
product?: InputMaybe<MarketplaceStoreInstallationTargetProduct>;
|
|
146144
146807
|
};
|
|
146808
|
+
export declare enum MarketplaceStoreInstallationTarget {
|
|
146809
|
+
Site = "SITE",
|
|
146810
|
+
Unit = "UNIT"
|
|
146811
|
+
}
|
|
146145
146812
|
export declare enum MarketplaceStoreInstallationTargetProduct {
|
|
146146
146813
|
Bitbucket = "BITBUCKET",
|
|
146147
146814
|
Compass = "COMPASS",
|
|
@@ -146781,6 +147448,7 @@ export declare type MarketplaceStoreQueryApiHostStatusArgs = {
|
|
|
146781
147448
|
};
|
|
146782
147449
|
export declare type MarketplaceStoreQueryApiInstallAppStatusArgs = {
|
|
146783
147450
|
id: Scalars['ID']['input'];
|
|
147451
|
+
isGlobalAppInstall?: InputMaybe<Scalars['Boolean']['input']>;
|
|
146784
147452
|
isUpmInstall?: InputMaybe<Scalars['Boolean']['input']>;
|
|
146785
147453
|
orderId?: InputMaybe<Scalars['ID']['input']>;
|
|
146786
147454
|
target?: InputMaybe<MarketplaceStoreInstallAppTargetInput>;
|
|
@@ -152204,11 +152872,8 @@ export declare type MercuryProviderOrchestrationQueryApiSearchWorkByBenefitItemA
|
|
|
152204
152872
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
152205
152873
|
benefitItemId: Scalars['ID']['input'];
|
|
152206
152874
|
cloudId: Scalars['ID']['input'];
|
|
152207
|
-
filter?: InputMaybe<MercuryProviderWorkSearchFilters>;
|
|
152208
152875
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
152209
|
-
providerKey?: InputMaybe<Scalars['String']['input']>;
|
|
152210
152876
|
textQuery?: InputMaybe<Scalars['String']['input']>;
|
|
152211
|
-
workContainerAri?: InputMaybe<Scalars['String']['input']>;
|
|
152212
152877
|
};
|
|
152213
152878
|
export declare type MercuryProviderOrchestrationQueryApiSearchWorkByChangeProposalArgs = {
|
|
152214
152879
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -154715,7 +155380,6 @@ export declare type MercuryWorkspaceContext = {
|
|
|
154715
155380
|
};
|
|
154716
155381
|
export declare type MercuryWorkspaceSettings = {
|
|
154717
155382
|
__typename?: 'MercuryWorkspaceSettings';
|
|
154718
|
-
focusAreaRankingEnabled: Scalars['Boolean']['output'];
|
|
154719
155383
|
laborCostEnabled: Scalars['Boolean']['output'];
|
|
154720
155384
|
managedTeamsOnlyEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
154721
155385
|
};
|
|
@@ -155017,19 +155681,19 @@ export declare type Mutation = {
|
|
|
155017
155681
|
agentWorkspace_assignAgentsToSkill?: Maybe<AgentWorkspaceAssignAgentsToSkillPayload>;
|
|
155018
155682
|
agentWorkspace_cancelRoutingTableGeneration?: Maybe<AgentWorkspaceCancelRoutingTableGenerationPayload>;
|
|
155019
155683
|
agentWorkspace_createAndLinkTeamsFromGroups?: Maybe<AgentWorkspaceCreateAndLinkTeamsPayload>;
|
|
155020
|
-
|
|
155684
|
+
agentWorkspace_createDraftedRoutingTableEntries?: Maybe<AgentWorkspaceCreateDraftedRoutingTableEntriesPayload>;
|
|
155021
155685
|
agentWorkspace_createSchedule?: Maybe<AgentWorkspaceCreateSchedulePayload>;
|
|
155022
155686
|
agentWorkspace_createSkill?: Maybe<AgentWorkspaceSkillCreatePayload>;
|
|
155023
|
-
agentWorkspace_deleteCoverShift?: Maybe<
|
|
155687
|
+
agentWorkspace_deleteCoverShift?: Maybe<AgentWorkspaceDeleteCoverShiftPayload>;
|
|
155024
155688
|
agentWorkspace_deleteSchedule?: Maybe<AgentWorkspaceDeleteSchedulePayload>;
|
|
155025
155689
|
agentWorkspace_deleteShift?: Maybe<AgentWorkspaceDeleteShiftPayload>;
|
|
155026
|
-
|
|
155027
|
-
agentWorkspace_editCoverShift?: Maybe<AgentWorkspaceEditShiftPayload>;
|
|
155690
|
+
agentWorkspace_editCoverShift?: Maybe<AgentWorkspaceEditCoverShiftPayload>;
|
|
155028
155691
|
agentWorkspace_editShift?: Maybe<AgentWorkspaceEditShiftPayload>;
|
|
155029
155692
|
agentWorkspace_endBreak?: Maybe<AgentWorkspaceAgentAvailability>;
|
|
155030
155693
|
agentWorkspace_restoreSkill?: Maybe<AgentWorkspaceRestoreSkillPayload>;
|
|
155031
155694
|
agentWorkspace_setAvailabilityStatus?: Maybe<AgentWorkspaceAvailabilityStatusPayload>;
|
|
155032
155695
|
agentWorkspace_setDefaultCapacity?: Maybe<AgentWorkspaceSetDefaultCapacityPayload>;
|
|
155696
|
+
agentWorkspace_setDraftedRoutingTableServiceField?: Maybe<AgentWorkspaceSetDraftedRoutingTableServiceFieldPayload>;
|
|
155033
155697
|
agentWorkspace_setProjectDefaultAvailability?: Maybe<AgentWorkspaceProjectDefaultAvailabilityPayload>;
|
|
155034
155698
|
agentWorkspace_setTeamCapacities?: Maybe<AgentWorkspaceSetTeamCapacitiesPayload>;
|
|
155035
155699
|
agentWorkspace_startBreak?: Maybe<AgentWorkspaceAgentAvailability>;
|
|
@@ -155049,6 +155713,7 @@ export declare type Mutation = {
|
|
|
155049
155713
|
aiManagedObject_deleteAiManagedObject?: Maybe<Scalars['Boolean']['output']>;
|
|
155050
155714
|
aiManagedObject_updateAiManagedObject?: Maybe<AiManagedObject>;
|
|
155051
155715
|
aiops_createInvestigation?: Maybe<AiOpsCreateInvestigationPayload>;
|
|
155716
|
+
aiops_reviewRootCause?: Maybe<AiOpsReviewRootCausePayload>;
|
|
155052
155717
|
aiops_triggerInvestigation?: Maybe<AiOpsCreateInvestigationPayload>;
|
|
155053
155718
|
appRecommendations?: Maybe<AppRecMutation>;
|
|
155054
155719
|
appStorage?: Maybe<AppStorageMutation>;
|
|
@@ -155121,17 +155786,22 @@ export declare type Mutation = {
|
|
|
155121
155786
|
assetsDM_updateDefaultCleansingRule?: Maybe<AssetsDmUpdateDefaultCleansingRuleResponse>;
|
|
155122
155787
|
assetsVertical_archiveInsight?: Maybe<AssetsVerticalArchiveInsightPayload>;
|
|
155123
155788
|
assetsVertical_createAssetTypesTrackings?: Maybe<AssetsVerticalAssetTypesTrackingsPayload>;
|
|
155789
|
+
assetsVertical_createCustomInsight?: Maybe<AssetsVerticalCreateCustomInsightPayload>;
|
|
155124
155790
|
assetsVertical_createDepreciationRule?: Maybe<AssetsVerticalDepreciationRulePayload>;
|
|
155125
155791
|
assetsVertical_createItemMappings?: Maybe<AssetsVerticalItemMappingsPayload>;
|
|
155126
155792
|
assetsVertical_createRoleAssignments?: Maybe<AssetsVerticalRoleAssignmentsMutationPayload>;
|
|
155127
155793
|
assetsVertical_createVerticalInstantiation?: Maybe<AssetsVerticalVerticalInstantiationPayload>;
|
|
155128
155794
|
assetsVertical_createVerticalInstantiationCategory?: Maybe<AssetsVerticalVerticalInstantiationCategoryPayload>;
|
|
155129
155795
|
assetsVertical_deleteAssetTypesTracking?: Maybe<AssetsVerticalAssetTypesTrackingPayload>;
|
|
155796
|
+
assetsVertical_deleteCustomInsight?: Maybe<AssetsVerticalDeleteCustomInsightPayload>;
|
|
155130
155797
|
assetsVertical_deleteDepreciationRule?: Maybe<AssetsVerticalDepreciationRulePayload>;
|
|
155131
155798
|
assetsVertical_deleteItemMapping?: Maybe<AssetsVerticalItemMappingPayload>;
|
|
155132
155799
|
assetsVertical_deleteRoleAssignments?: Maybe<AssetsVerticalRoleAssignmentsMutationPayload>;
|
|
155800
|
+
assetsVertical_enableCustomInsight?: Maybe<AssetsVerticalEnableCustomInsightPayload>;
|
|
155801
|
+
assetsVertical_generateCustomInsight?: Maybe<AssetsVerticalGenerateCustomInsightPayload>;
|
|
155133
155802
|
assetsVertical_generateInsights?: Maybe<AssetsVerticalGenerateInsightsPayload>;
|
|
155134
155803
|
assetsVertical_instantiateBundleByType?: Maybe<AssetsVerticalAsyncTaskPayload>;
|
|
155804
|
+
assetsVertical_updateCustomInsight?: Maybe<AssetsVerticalUpdateCustomInsightPayload>;
|
|
155135
155805
|
assetsVertical_updateDepreciationRule?: Maybe<AssetsVerticalDepreciationRulePayload>;
|
|
155136
155806
|
assetsVertical_updateRoleAssignments?: Maybe<AssetsVerticalRoleAssignmentsMutationPayload>;
|
|
155137
155807
|
assetsVertical_updateVerticalInstantiation?: Maybe<AssetsVerticalVerticalInstantiationPayload>;
|
|
@@ -155169,6 +155839,7 @@ export declare type Mutation = {
|
|
|
155169
155839
|
avp_trackDashboardView?: Maybe<AvpTrackDashboardViewPayload>;
|
|
155170
155840
|
avp_unstarDashboard?: Maybe<AvpUnstarDashboardPayload>;
|
|
155171
155841
|
avp_updateChart?: Maybe<AvpUpdateChartPayload>;
|
|
155842
|
+
avp_updateChartByConfigId?: Maybe<AvpUpdateChartPayload>;
|
|
155172
155843
|
avp_updateDashboard?: Maybe<AvpUpdateDashboardPayload>;
|
|
155173
155844
|
avp_updateDashboardFilter?: Maybe<AvpUpdateDashboardFilterPayload>;
|
|
155174
155845
|
avp_updateDashboardIdentityAccess?: Maybe<AvpUpdateDashboardIdentityAccessPayload>;
|
|
@@ -155390,6 +156061,8 @@ export declare type Mutation = {
|
|
|
155390
156061
|
cpls_addContributorScopeAssociation?: Maybe<CplsAddContributorScopeAssociationPayload>;
|
|
155391
156062
|
cpls_addContributorWorkAssociation?: Maybe<CplsAddContributorWorkAssociationPayload>;
|
|
155392
156063
|
cpls_addWorkScopeAssociations?: Maybe<CplsAddWorkScopeAssociationsPayload>;
|
|
156064
|
+
cpls_copyContributorToWorks?: Maybe<CplsCopyContributorToWorksPayload>;
|
|
156065
|
+
cpls_copyWorkToContributors?: Maybe<CplsCopyWorkToContributorsPayload>;
|
|
155393
156066
|
cpls_createCustomContributionTarget?: Maybe<CplsCreateCustomContributionTargetPayload>;
|
|
155394
156067
|
cpls_createCustomContributionTargetWithWorkAssociation?: Maybe<CplsCreateCustomContributionTargetWithWorkAssociationPayload>;
|
|
155395
156068
|
cpls_createSuggestions?: Maybe<CplsCreateSuggestionsPayload>;
|
|
@@ -155533,6 +156206,7 @@ export declare type Mutation = {
|
|
|
155533
156206
|
devai_autodevNextRemoveMembers?: Maybe<DevAiAutodevNextRemoveMembersPayload>;
|
|
155534
156207
|
devai_autodevNextRemoveProjects?: Maybe<DevAiAutodevNextRemoveProjectsPayload>;
|
|
155535
156208
|
devai_autodevNextSendWorkstreamNudges?: Maybe<DevAiAutodevNextSendWorkstreamNudgesPayload>;
|
|
156209
|
+
devai_autodevNextTriggerWorkstreamScan?: Maybe<DevAiAutodevNextTriggerWorkstreamScanPayload>;
|
|
155536
156210
|
devai_autodevNextUpdateWorkstream?: Maybe<DevAiAutodevNextUpdateWorkstreamPayload>;
|
|
155537
156211
|
devai_completeFlowSession?: Maybe<DevAiFlowSessionCompletePayload>;
|
|
155538
156212
|
devai_continueJobWithPrompt?: Maybe<DevAiAutodevContinueJobWithPromptPayload>;
|
|
@@ -155598,6 +156272,7 @@ export declare type Mutation = {
|
|
|
155598
156272
|
goals_createDecision?: Maybe<TownsquareGoalsCreateDecisionPayload>;
|
|
155599
156273
|
goals_createGoalTypePair?: Maybe<TownsquareCreateGoalTypePairPayload>;
|
|
155600
156274
|
goals_createLearning?: Maybe<TownsquareGoalsCreateLearningPayload>;
|
|
156275
|
+
goals_createMetricValue?: Maybe<TownsquareGoalsCreateMetricValuePayload>;
|
|
155601
156276
|
goals_createRisk?: Maybe<TownsquareGoalsCreateRiskPayload>;
|
|
155602
156277
|
goals_createUpdate?: Maybe<TownsquareGoalsCreateUpdatePayload>;
|
|
155603
156278
|
goals_deleteComment?: Maybe<TownsquareGoalsDeleteCommentPayload>;
|
|
@@ -155632,13 +156307,16 @@ export declare type Mutation = {
|
|
|
155632
156307
|
goals_removeTextCustomFieldValue?: Maybe<TownsquareGoalsRemoveTextCustomFieldValuePayload>;
|
|
155633
156308
|
goals_removeUserCustomFieldValue?: Maybe<TownsquareGoalsRemoveUserCustomFieldValuePayload>;
|
|
155634
156309
|
goals_removeWatchers?: Maybe<TownsquareGoalsRemoveWatchersPayload>;
|
|
156310
|
+
goals_restoreGoals?: Maybe<TownsquareGoalsRestoreGoalsPayload>;
|
|
155635
156311
|
goals_revokeAccess?: Maybe<TownsquareGoalRevokeAccessPayload>;
|
|
156312
|
+
goals_setParentGoal?: Maybe<TownsquareGoalsSetParentGoalPayload>;
|
|
155636
156313
|
goals_setRollupProgress?: Maybe<TownsquareGoalsSetRollupProgressPayload>;
|
|
155637
156314
|
goals_setUserWatchingTeam?: Maybe<TownsquareGoalsSetUserWatchingTeamPayload>;
|
|
155638
156315
|
goals_setWatchingGoal?: Maybe<TownsquareGoalsSetWatchingGoalPayload>;
|
|
155639
156316
|
goals_setWatchingTeam?: Maybe<TownsquareGoalsSetWatchingTeamPayload>;
|
|
155640
156317
|
goals_shareGoal?: Maybe<TownsquareGoalsShareGoalPayload>;
|
|
155641
156318
|
goals_shareUpdate?: Maybe<TownsquareGoalsShareUpdatePayload>;
|
|
156319
|
+
goals_softDeleteGoals?: Maybe<TownsquareGoalsSoftDeleteGoalsPayload>;
|
|
155642
156320
|
goals_unlinkJiraAlignProject?: Maybe<TownsquareGoalsUnlinkJiraAlignProjectPayload>;
|
|
155643
156321
|
goals_unlinkWorkItem?: Maybe<TownsquareGoalsUnlinkWorkItemPayload>;
|
|
155644
156322
|
goals_updateAppPermissionPolicies?: Maybe<TownsquareUpdateGoalsAppPermissionPoliciesPayload>;
|
|
@@ -155703,6 +156381,7 @@ export declare type Mutation = {
|
|
|
155703
156381
|
jira_createBoardViewIssue?: Maybe<JiraBoardViewIssueCreatePayload>;
|
|
155704
156382
|
jira_createBoardViewStatusColumn?: Maybe<JiraCreateBoardViewStatusColumnPayload>;
|
|
155705
156383
|
jira_createBoardViewsForWorkflows?: Maybe<JiraCreateBoardViewsForWorkflowsPayload>;
|
|
156384
|
+
jira_createCategoryOption?: Maybe<JiraCreateCategoryOptionPayload>;
|
|
155706
156385
|
jira_createCustomBackground?: Maybe<JiraProjectCreateCustomBackgroundMutationPayload>;
|
|
155707
156386
|
jira_createFieldScheme?: Maybe<JiraFieldSchemePayload>;
|
|
155708
156387
|
jira_createGlobalCustomField?: Maybe<JiraCreateGlobalCustomFieldPayload>;
|
|
@@ -155876,6 +156555,7 @@ export declare type Mutation = {
|
|
|
155876
156555
|
kitsune_resyncFeedback?: Maybe<KitsuneJob>;
|
|
155877
156556
|
kitsune_syncCsmProperties?: Maybe<KitsuneJob>;
|
|
155878
156557
|
kitsune_syncCustomerFields?: Maybe<KitsuneJob>;
|
|
156558
|
+
kitsune_syncCustomers?: Maybe<KitsuneJob>;
|
|
155879
156559
|
kitsune_updateCustomer?: Maybe<KitsuneCustomer>;
|
|
155880
156560
|
kitsune_updateFeedback?: Maybe<KitsuneFeedback>;
|
|
155881
156561
|
kitsune_updateField?: Maybe<KitsuneField>;
|
|
@@ -156611,8 +157291,8 @@ export declare type MutationAgentWorkspace_CancelRoutingTableGenerationArgs = {
|
|
|
156611
157291
|
export declare type MutationAgentWorkspace_CreateAndLinkTeamsFromGroupsArgs = {
|
|
156612
157292
|
input: AgentWorkspaceCreateAndLinkTeamsInput;
|
|
156613
157293
|
};
|
|
156614
|
-
export declare type
|
|
156615
|
-
input:
|
|
157294
|
+
export declare type MutationAgentWorkspace_CreateDraftedRoutingTableEntriesArgs = {
|
|
157295
|
+
input: AgentWorkspaceCreateDraftedRoutingTableEntriesInput;
|
|
156616
157296
|
};
|
|
156617
157297
|
export declare type MutationAgentWorkspace_CreateScheduleArgs = {
|
|
156618
157298
|
input: AgentWorkspaceCreateScheduleInput;
|
|
@@ -156629,9 +157309,6 @@ export declare type MutationAgentWorkspace_DeleteScheduleArgs = {
|
|
|
156629
157309
|
export declare type MutationAgentWorkspace_DeleteShiftArgs = {
|
|
156630
157310
|
input: AgentWorkspaceDeleteShiftInput;
|
|
156631
157311
|
};
|
|
156632
|
-
export declare type MutationAgentWorkspace_DiscardDraftedRoutingTableArgs = {
|
|
156633
|
-
input: AgentWorkspaceDiscardDraftedRoutingTableInput;
|
|
156634
|
-
};
|
|
156635
157312
|
export declare type MutationAgentWorkspace_EditCoverShiftArgs = {
|
|
156636
157313
|
input: AgentWorkspaceEditCoverShiftInput;
|
|
156637
157314
|
};
|
|
@@ -156651,6 +157328,9 @@ export declare type MutationAgentWorkspace_SetAvailabilityStatusArgs = {
|
|
|
156651
157328
|
export declare type MutationAgentWorkspace_SetDefaultCapacityArgs = {
|
|
156652
157329
|
input: AgentWorkspaceSetDefaultCapacityInput;
|
|
156653
157330
|
};
|
|
157331
|
+
export declare type MutationAgentWorkspace_SetDraftedRoutingTableServiceFieldArgs = {
|
|
157332
|
+
input: AgentWorkspaceSetDraftedRoutingTableServiceFieldInput;
|
|
157333
|
+
};
|
|
156654
157334
|
export declare type MutationAgentWorkspace_SetProjectDefaultAvailabilityArgs = {
|
|
156655
157335
|
input: AgentWorkspaceSetProjectDefaultAvailabilityInput;
|
|
156656
157336
|
};
|
|
@@ -156712,6 +157392,10 @@ export declare type MutationAiManagedObject_UpdateAiManagedObjectArgs = {
|
|
|
156712
157392
|
export declare type MutationAiops_CreateInvestigationArgs = {
|
|
156713
157393
|
input: AiOpsCreateInvestigationInput;
|
|
156714
157394
|
};
|
|
157395
|
+
export declare type MutationAiops_ReviewRootCauseArgs = {
|
|
157396
|
+
cloudId: Scalars['ID']['input'];
|
|
157397
|
+
input: AiOpsReviewRootCauseInput;
|
|
157398
|
+
};
|
|
156715
157399
|
export declare type MutationAiops_TriggerInvestigationArgs = {
|
|
156716
157400
|
cloudId: Scalars['ID']['input'];
|
|
156717
157401
|
input: AiOpsTriggerInvestigationInput;
|
|
@@ -157054,6 +157738,9 @@ export declare type MutationAssetsVertical_ArchiveInsightArgs = {
|
|
|
157054
157738
|
export declare type MutationAssetsVertical_CreateAssetTypesTrackingsArgs = {
|
|
157055
157739
|
input: AssetsVerticalCreateAssetTypesTrackingsInput;
|
|
157056
157740
|
};
|
|
157741
|
+
export declare type MutationAssetsVertical_CreateCustomInsightArgs = {
|
|
157742
|
+
input: AssetsVerticalCreateCustomInsightInput;
|
|
157743
|
+
};
|
|
157057
157744
|
export declare type MutationAssetsVertical_CreateDepreciationRuleArgs = {
|
|
157058
157745
|
input: AssetsVerticalCreateDepreciationRuleInput;
|
|
157059
157746
|
};
|
|
@@ -157072,6 +157759,9 @@ export declare type MutationAssetsVertical_CreateVerticalInstantiationCategoryAr
|
|
|
157072
157759
|
export declare type MutationAssetsVertical_DeleteAssetTypesTrackingArgs = {
|
|
157073
157760
|
input: AssetsVerticalDeleteAssetTypesTrackingInput;
|
|
157074
157761
|
};
|
|
157762
|
+
export declare type MutationAssetsVertical_DeleteCustomInsightArgs = {
|
|
157763
|
+
input: AssetsVerticalDeleteCustomInsightInput;
|
|
157764
|
+
};
|
|
157075
157765
|
export declare type MutationAssetsVertical_DeleteDepreciationRuleArgs = {
|
|
157076
157766
|
input: AssetsVerticalDeleteDepreciationRuleInput;
|
|
157077
157767
|
};
|
|
@@ -157081,12 +157771,21 @@ export declare type MutationAssetsVertical_DeleteItemMappingArgs = {
|
|
|
157081
157771
|
export declare type MutationAssetsVertical_DeleteRoleAssignmentsArgs = {
|
|
157082
157772
|
input: AssetsVerticalDeleteRoleAssignmentsInput;
|
|
157083
157773
|
};
|
|
157774
|
+
export declare type MutationAssetsVertical_EnableCustomInsightArgs = {
|
|
157775
|
+
input: AssetsVerticalEnableCustomInsightInput;
|
|
157776
|
+
};
|
|
157777
|
+
export declare type MutationAssetsVertical_GenerateCustomInsightArgs = {
|
|
157778
|
+
input: AssetsVerticalGenerateCustomInsightInput;
|
|
157779
|
+
};
|
|
157084
157780
|
export declare type MutationAssetsVertical_GenerateInsightsArgs = {
|
|
157085
157781
|
input: AssetsVerticalGenerateInsightsInput;
|
|
157086
157782
|
};
|
|
157087
157783
|
export declare type MutationAssetsVertical_InstantiateBundleByTypeArgs = {
|
|
157088
157784
|
input: AssetsVerticalInstantiateBundleByTypeInput;
|
|
157089
157785
|
};
|
|
157786
|
+
export declare type MutationAssetsVertical_UpdateCustomInsightArgs = {
|
|
157787
|
+
input: AssetsVerticalUpdateCustomInsightInput;
|
|
157788
|
+
};
|
|
157090
157789
|
export declare type MutationAssetsVertical_UpdateDepreciationRuleArgs = {
|
|
157091
157790
|
input: AssetsVerticalUpdateDepreciationRuleInput;
|
|
157092
157791
|
};
|
|
@@ -157202,6 +157901,9 @@ export declare type MutationAvp_UnstarDashboardArgs = {
|
|
|
157202
157901
|
export declare type MutationAvp_UpdateChartArgs = {
|
|
157203
157902
|
input: AvpUpdateChartInput;
|
|
157204
157903
|
};
|
|
157904
|
+
export declare type MutationAvp_UpdateChartByConfigIdArgs = {
|
|
157905
|
+
input: AvpUpdateChartByConfigIdInput;
|
|
157906
|
+
};
|
|
157205
157907
|
export declare type MutationAvp_UpdateDashboardArgs = {
|
|
157206
157908
|
input: AvpUpdateDashboardInput;
|
|
157207
157909
|
};
|
|
@@ -158015,6 +158717,12 @@ export declare type MutationCpls_AddContributorWorkAssociationArgs = {
|
|
|
158015
158717
|
export declare type MutationCpls_AddWorkScopeAssociationsArgs = {
|
|
158016
158718
|
input: CplsAddWorkScopeAssociationsInput;
|
|
158017
158719
|
};
|
|
158720
|
+
export declare type MutationCpls_CopyContributorToWorksArgs = {
|
|
158721
|
+
input: CplsCopyContributorToWorksInput;
|
|
158722
|
+
};
|
|
158723
|
+
export declare type MutationCpls_CopyWorkToContributorsArgs = {
|
|
158724
|
+
input: CplsCopyWorkToContributorsInput;
|
|
158725
|
+
};
|
|
158018
158726
|
export declare type MutationCpls_CreateCustomContributionTargetArgs = {
|
|
158019
158727
|
input: CplsCreateCustomContributionTargetInput;
|
|
158020
158728
|
};
|
|
@@ -158502,6 +159210,9 @@ export declare type MutationDevai_AutodevNextRemoveProjectsArgs = {
|
|
|
158502
159210
|
export declare type MutationDevai_AutodevNextSendWorkstreamNudgesArgs = {
|
|
158503
159211
|
input: DevAiAutodevNextSendWorkstreamNudgesInput;
|
|
158504
159212
|
};
|
|
159213
|
+
export declare type MutationDevai_AutodevNextTriggerWorkstreamScanArgs = {
|
|
159214
|
+
input: DevAiAutodevNextTriggerWorkstreamScanInput;
|
|
159215
|
+
};
|
|
158505
159216
|
export declare type MutationDevai_AutodevNextUpdateWorkstreamArgs = {
|
|
158506
159217
|
input: DevAiAutodevNextUpdateWorkstreamInput;
|
|
158507
159218
|
};
|
|
@@ -158713,6 +159424,9 @@ export declare type MutationGoals_CreateGoalTypePairArgs = {
|
|
|
158713
159424
|
export declare type MutationGoals_CreateLearningArgs = {
|
|
158714
159425
|
input: TownsquareGoalsCreateLearningInput;
|
|
158715
159426
|
};
|
|
159427
|
+
export declare type MutationGoals_CreateMetricValueArgs = {
|
|
159428
|
+
input: TownsquareGoalsCreateMetricValueInput;
|
|
159429
|
+
};
|
|
158716
159430
|
export declare type MutationGoals_CreateRiskArgs = {
|
|
158717
159431
|
input: TownsquareGoalsCreateRiskInput;
|
|
158718
159432
|
};
|
|
@@ -158815,9 +159529,15 @@ export declare type MutationGoals_RemoveUserCustomFieldValueArgs = {
|
|
|
158815
159529
|
export declare type MutationGoals_RemoveWatchersArgs = {
|
|
158816
159530
|
input: TownsquareGoalsRemoveWatchersInput;
|
|
158817
159531
|
};
|
|
159532
|
+
export declare type MutationGoals_RestoreGoalsArgs = {
|
|
159533
|
+
input: TownsquareGoalsRestoreGoalsInput;
|
|
159534
|
+
};
|
|
158818
159535
|
export declare type MutationGoals_RevokeAccessArgs = {
|
|
158819
159536
|
input: TownsquareGoalRevokeAccessInput;
|
|
158820
159537
|
};
|
|
159538
|
+
export declare type MutationGoals_SetParentGoalArgs = {
|
|
159539
|
+
input: TownsquareGoalsSetParentGoalInput;
|
|
159540
|
+
};
|
|
158821
159541
|
export declare type MutationGoals_SetRollupProgressArgs = {
|
|
158822
159542
|
input: TownsquareGoalsSetRollupProgressInput;
|
|
158823
159543
|
};
|
|
@@ -158836,6 +159556,9 @@ export declare type MutationGoals_ShareGoalArgs = {
|
|
|
158836
159556
|
export declare type MutationGoals_ShareUpdateArgs = {
|
|
158837
159557
|
input: TownsquareGoalsShareUpdateInput;
|
|
158838
159558
|
};
|
|
159559
|
+
export declare type MutationGoals_SoftDeleteGoalsArgs = {
|
|
159560
|
+
input: TownsquareGoalsSoftDeleteGoalsInput;
|
|
159561
|
+
};
|
|
158839
159562
|
export declare type MutationGoals_UnlinkJiraAlignProjectArgs = {
|
|
158840
159563
|
input: TownsquareGoalsUnlinkJiraAlignProjectInput;
|
|
158841
159564
|
};
|
|
@@ -159024,6 +159747,9 @@ export declare type MutationJira_CreateBoardViewStatusColumnArgs = {
|
|
|
159024
159747
|
export declare type MutationJira_CreateBoardViewsForWorkflowsArgs = {
|
|
159025
159748
|
input: JiraCreateBoardViewsForWorkflowsInput;
|
|
159026
159749
|
};
|
|
159750
|
+
export declare type MutationJira_CreateCategoryOptionArgs = {
|
|
159751
|
+
input: JiraCreateCategoryOptionInput;
|
|
159752
|
+
};
|
|
159027
159753
|
export declare type MutationJira_CreateCustomBackgroundArgs = {
|
|
159028
159754
|
input: JiraCreateCustomBackgroundInput;
|
|
159029
159755
|
};
|
|
@@ -159618,6 +160344,9 @@ export declare type MutationKitsune_SyncCsmPropertiesArgs = {
|
|
|
159618
160344
|
export declare type MutationKitsune_SyncCustomerFieldsArgs = {
|
|
159619
160345
|
workspaceAri: Scalars['ID']['input'];
|
|
159620
160346
|
};
|
|
160347
|
+
export declare type MutationKitsune_SyncCustomersArgs = {
|
|
160348
|
+
workspaceAri: Scalars['ID']['input'];
|
|
160349
|
+
};
|
|
159621
160350
|
export declare type MutationKitsune_UpdateCustomerArgs = {
|
|
159622
160351
|
ari: Scalars['ID']['input'];
|
|
159623
160352
|
name?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -164011,6 +164740,7 @@ export declare type Query = {
|
|
|
164011
164740
|
agentStudio_scenarioListByContainerId?: Maybe<AgentStudioScenariosResult>;
|
|
164012
164741
|
agentStudio_scenariosByIds?: Maybe<Array<Maybe<AgentStudioScenario>>>;
|
|
164013
164742
|
agentStudio_suggestConversationStarters?: Maybe<AgentStudioSuggestConversationStartersResult>;
|
|
164743
|
+
agentStudio_testConversationListByContainerId?: Maybe<AgentStudioConversationListResult>;
|
|
164014
164744
|
agentStudio_toolIntegrations?: Maybe<AgentStudioToolIntegrationsConnection>;
|
|
164015
164745
|
agentStudio_tools?: Maybe<AgentStudioToolsConnection>;
|
|
164016
164746
|
agentStudio_validateScenario?: Maybe<AgentStudioScenarioValidationPayload>;
|
|
@@ -164031,15 +164761,16 @@ export declare type Query = {
|
|
|
164031
164761
|
agentWorkspace_clusterServiceCategories?: Maybe<AgentWorkspaceServiceClusteringResult>;
|
|
164032
164762
|
agentWorkspace_coverShiftEditBounds?: Maybe<AgentWorkspaceShiftEditBounds>;
|
|
164033
164763
|
agentWorkspace_defaultCapacity?: Maybe<AgentWorkspaceDefaultCapacity>;
|
|
164034
|
-
|
|
164764
|
+
agentWorkspace_draftedRoutingTableEntries?: Maybe<AgentWorkspaceDraftedRoutingTableEntries>;
|
|
164765
|
+
agentWorkspace_draftedRoutingTableStatus?: Maybe<AgentWorkspaceDraftedRoutingTableStatus>;
|
|
164035
164766
|
agentWorkspace_eligibleGroups?: Maybe<AgentWorkspaceEligibleGroupsPayload>;
|
|
164767
|
+
agentWorkspace_issueRoutingHistory?: Maybe<AgentWorkspaceIssueRoutingHistory>;
|
|
164768
|
+
agentWorkspace_liveRoutingTable?: Maybe<AgentWorkspaceLiveRoutingTable>;
|
|
164036
164769
|
agentWorkspace_projectDefaultAvailability?: Maybe<AgentWorkspaceProjectDefaultAvailability>;
|
|
164037
|
-
agentWorkspace_recommendedAgentsForCoverageGap?: Maybe<
|
|
164770
|
+
agentWorkspace_recommendedAgentsForCoverageGap?: Maybe<AgentWorkspaceRecommendedAgentsForCoverageGapPayload>;
|
|
164038
164771
|
agentWorkspace_recommendedAgentsForGap?: Maybe<Array<AgentWorkspaceAgent>>;
|
|
164039
164772
|
agentWorkspace_recommendedAssignees?: Maybe<AgentWorkspaceRecommendedAssigneesResponse>;
|
|
164040
164773
|
agentWorkspace_routingConfig?: Maybe<AgentWorkspaceSmartRoutingConfig>;
|
|
164041
|
-
agentWorkspace_routingSetupState?: Maybe<AgentWorkspaceRoutingSetupState>;
|
|
164042
|
-
agentWorkspace_routingTableEntries?: Maybe<AgentWorkspaceRoutingTableEntries>;
|
|
164043
164774
|
agentWorkspace_routingTableGenerationStatus?: Maybe<AgentWorkspaceRoutingTableGeneration>;
|
|
164044
164775
|
agentWorkspace_schedule?: Maybe<AgentWorkspaceSchedule>;
|
|
164045
164776
|
agentWorkspace_schedules?: Maybe<AgentWorkspaceSchedulesConnection>;
|
|
@@ -164069,6 +164800,7 @@ export declare type Query = {
|
|
|
164069
164800
|
aiops_echo?: Maybe<Scalars['String']['output']>;
|
|
164070
164801
|
aiops_incidentRelatedAlerts?: Maybe<AiOpsIncidentRelatedAlertsResponse>;
|
|
164071
164802
|
aiops_incidentSuggestion?: Maybe<AiOpsIncidentSuggestionResponse>;
|
|
164803
|
+
aiops_investigationById?: Maybe<AiOpsInvestigation>;
|
|
164072
164804
|
aiops_latestInvestigationByEntityTypeId?: Maybe<AiOpsInvestigationQueryResult>;
|
|
164073
164805
|
aiops_latestInvestigationByIssueId?: Maybe<AiOpsInvestigationQueryResult>;
|
|
164074
164806
|
allIndividualSpaces?: Maybe<SpaceInfoConnection>;
|
|
@@ -164158,11 +164890,14 @@ export declare type Query = {
|
|
|
164158
164890
|
assetsDM_savedSearchDetails?: Maybe<AssetsDmSavedSearchDetails>;
|
|
164159
164891
|
assetsDM_savedSearchesList?: Maybe<AssetsDmSavedSearchesList>;
|
|
164160
164892
|
assetsDM_transformedData?: Maybe<AssetsDmTransformedDataResponse>;
|
|
164893
|
+
assetsVertical_allInsights?: Maybe<AssetsVerticalAllInsightsResult>;
|
|
164161
164894
|
assetsVertical_assetTypesTracking?: Maybe<AssetsVerticalAssetTypesTrackingResult>;
|
|
164162
164895
|
assetsVertical_assetTypesTrackings?: Maybe<AssetsVerticalAssetTypesTrackingConnection>;
|
|
164163
164896
|
assetsVertical_bundle?: Maybe<AssetsVerticalBundleResult>;
|
|
164164
164897
|
assetsVertical_configuredObjectTypes?: Maybe<AssetsVerticalObjectTypesResult>;
|
|
164165
164898
|
assetsVertical_countByStatus?: Maybe<AssetsVerticalCountByStatusResult>;
|
|
164899
|
+
assetsVertical_customInsightResult?: Maybe<AssetsVerticalCustomInsightResultUnion>;
|
|
164900
|
+
assetsVertical_customInsights?: Maybe<AssetsVerticalCustomInsightsResult>;
|
|
164166
164901
|
assetsVertical_depreciationRule?: Maybe<AssetsVerticalDepreciationRuleResult>;
|
|
164167
164902
|
assetsVertical_depreciationRules?: Maybe<AssetsVerticalDepreciationRuleConnection>;
|
|
164168
164903
|
assetsVertical_insightDefinitions?: Maybe<AssetsVerticalInsightDefinitionResult>;
|
|
@@ -164875,6 +165610,7 @@ export declare type Query = {
|
|
|
164875
165610
|
kitsune_searchFields?: Maybe<KitsuneFieldConnection>;
|
|
164876
165611
|
kitsune_searchInsights?: Maybe<KitsuneInsightConnection>;
|
|
164877
165612
|
kitsune_searchOrganizations?: Maybe<KitsuneOrganizationConnection>;
|
|
165613
|
+
kitsune_searchSnippets?: Maybe<KitsuneSnippetConnection>;
|
|
164878
165614
|
kitsune_sections?: Maybe<Array<Maybe<KitsuneSection>>>;
|
|
164879
165615
|
kitsune_snippets?: Maybe<Array<Maybe<KitsuneSnippet>>>;
|
|
164880
165616
|
kitsune_spaces?: Maybe<Array<Maybe<KitsuneSpace>>>;
|
|
@@ -165901,6 +166637,15 @@ export declare type QueryAgentStudio_SuggestConversationStartersArgs = {
|
|
|
165901
166637
|
cloudId: Scalars['String']['input'];
|
|
165902
166638
|
input: AgentStudioSuggestConversationStartersInput;
|
|
165903
166639
|
};
|
|
166640
|
+
export declare type QueryAgentStudio_TestConversationListByContainerIdArgs = {
|
|
166641
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
166642
|
+
cloudId: Scalars['String']['input'];
|
|
166643
|
+
containerAri: Scalars['ID']['input'];
|
|
166644
|
+
experienceId: Scalars['String']['input'];
|
|
166645
|
+
filter?: InputMaybe<AgentStudioLiveConversationFilterInput>;
|
|
166646
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
166647
|
+
productType: AgentStudioProductType;
|
|
166648
|
+
};
|
|
165904
166649
|
export declare type QueryAgentStudio_ToolIntegrationsArgs = {
|
|
165905
166650
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
165906
166651
|
cloudId: Scalars['String']['input'];
|
|
@@ -166006,12 +166751,25 @@ export declare type QueryAgentWorkspace_DefaultCapacityArgs = {
|
|
|
166006
166751
|
cloudId: Scalars['ID']['input'];
|
|
166007
166752
|
projectKey: Scalars['String']['input'];
|
|
166008
166753
|
};
|
|
166009
|
-
export declare type
|
|
166010
|
-
|
|
166754
|
+
export declare type QueryAgentWorkspace_DraftedRoutingTableEntriesArgs = {
|
|
166755
|
+
cloudId: Scalars['ID']['input'];
|
|
166756
|
+
projectKey: Scalars['String']['input'];
|
|
166757
|
+
};
|
|
166758
|
+
export declare type QueryAgentWorkspace_DraftedRoutingTableStatusArgs = {
|
|
166759
|
+
cloudId: Scalars['ID']['input'];
|
|
166760
|
+
projectKey: Scalars['String']['input'];
|
|
166011
166761
|
};
|
|
166012
166762
|
export declare type QueryAgentWorkspace_EligibleGroupsArgs = {
|
|
166013
166763
|
projectAri: Scalars['ID']['input'];
|
|
166014
166764
|
};
|
|
166765
|
+
export declare type QueryAgentWorkspace_IssueRoutingHistoryArgs = {
|
|
166766
|
+
cloudId: Scalars['ID']['input'];
|
|
166767
|
+
issueKey: Scalars['String']['input'];
|
|
166768
|
+
};
|
|
166769
|
+
export declare type QueryAgentWorkspace_LiveRoutingTableArgs = {
|
|
166770
|
+
cloudId: Scalars['ID']['input'];
|
|
166771
|
+
projectKey: Scalars['String']['input'];
|
|
166772
|
+
};
|
|
166015
166773
|
export declare type QueryAgentWorkspace_ProjectDefaultAvailabilityArgs = {
|
|
166016
166774
|
cloudId: Scalars['ID']['input'];
|
|
166017
166775
|
projectId: Scalars['ID']['input'];
|
|
@@ -166031,12 +166789,6 @@ export declare type QueryAgentWorkspace_RoutingConfigArgs = {
|
|
|
166031
166789
|
cloudId: Scalars['ID']['input'];
|
|
166032
166790
|
projectKey: Scalars['String']['input'];
|
|
166033
166791
|
};
|
|
166034
|
-
export declare type QueryAgentWorkspace_RoutingSetupStateArgs = {
|
|
166035
|
-
projectAri: Scalars['ID']['input'];
|
|
166036
|
-
};
|
|
166037
|
-
export declare type QueryAgentWorkspace_RoutingTableEntriesArgs = {
|
|
166038
|
-
projectAri: Scalars['ID']['input'];
|
|
166039
|
-
};
|
|
166040
166792
|
export declare type QueryAgentWorkspace_RoutingTableGenerationStatusArgs = {
|
|
166041
166793
|
cloudId: Scalars['ID']['input'];
|
|
166042
166794
|
generationId: Scalars['ID']['input'];
|
|
@@ -166090,6 +166842,7 @@ export declare type QueryAgentWorkspace_SkillCategoriesInProjectArgs = {
|
|
|
166090
166842
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
166091
166843
|
agentAccountIds?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
166092
166844
|
categoryIds?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
166845
|
+
categoryQuery?: InputMaybe<Scalars['String']['input']>;
|
|
166093
166846
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
166094
166847
|
projectId: Scalars['ID']['input'];
|
|
166095
166848
|
skillsQuery?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -166187,6 +166940,10 @@ export declare type QueryAiops_IncidentSuggestionArgs = {
|
|
|
166187
166940
|
cloudId: Scalars['ID']['input'];
|
|
166188
166941
|
issueKey: Scalars['String']['input'];
|
|
166189
166942
|
};
|
|
166943
|
+
export declare type QueryAiops_InvestigationByIdArgs = {
|
|
166944
|
+
cloudId: Scalars['ID']['input'];
|
|
166945
|
+
investigationId: Scalars['ID']['input'];
|
|
166946
|
+
};
|
|
166190
166947
|
export declare type QueryAiops_LatestInvestigationByEntityTypeIdArgs = {
|
|
166191
166948
|
cloudId: Scalars['ID']['input'];
|
|
166192
166949
|
entityId: Scalars['ID']['input'];
|
|
@@ -166693,6 +167450,11 @@ export declare type QueryAssetsDm_TransformedDataArgs = {
|
|
|
166693
167450
|
pagination?: InputMaybe<AssetsDmPaginationInput>;
|
|
166694
167451
|
workspaceId: Scalars['ID']['input'];
|
|
166695
167452
|
};
|
|
167453
|
+
export declare type QueryAssetsVertical_AllInsightsArgs = {
|
|
167454
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
167455
|
+
cloudId: Scalars['ID']['input'];
|
|
167456
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
167457
|
+
};
|
|
166696
167458
|
export declare type QueryAssetsVertical_AssetTypesTrackingArgs = {
|
|
166697
167459
|
cloudId: Scalars['ID']['input'];
|
|
166698
167460
|
id: Scalars['ID']['input'];
|
|
@@ -166716,6 +167478,16 @@ export declare type QueryAssetsVertical_CountByStatusArgs = {
|
|
|
166716
167478
|
cloudId: Scalars['ID']['input'];
|
|
166717
167479
|
input: AssetsVerticalCountByStatusInput;
|
|
166718
167480
|
};
|
|
167481
|
+
export declare type QueryAssetsVertical_CustomInsightResultArgs = {
|
|
167482
|
+
cloudId: Scalars['ID']['input'];
|
|
167483
|
+
insightId: Scalars['ID']['input'];
|
|
167484
|
+
jobId?: InputMaybe<Scalars['ID']['input']>;
|
|
167485
|
+
};
|
|
167486
|
+
export declare type QueryAssetsVertical_CustomInsightsArgs = {
|
|
167487
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
167488
|
+
cloudId: Scalars['ID']['input'];
|
|
167489
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
167490
|
+
};
|
|
166719
167491
|
export declare type QueryAssetsVertical_DepreciationRuleArgs = {
|
|
166720
167492
|
cloudId: Scalars['ID']['input'];
|
|
166721
167493
|
id: Scalars['ID']['input'];
|
|
@@ -169760,6 +170532,16 @@ export declare type QueryKitsune_SearchOrganizationsArgs = {
|
|
|
169760
170532
|
query?: InputMaybe<Scalars['String']['input']>;
|
|
169761
170533
|
workspaceAri: Scalars['ID']['input'];
|
|
169762
170534
|
};
|
|
170535
|
+
export declare type QueryKitsune_SearchSnippetsArgs = {
|
|
170536
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
170537
|
+
before?: InputMaybe<Scalars['String']['input']>;
|
|
170538
|
+
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
170539
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
170540
|
+
insightAri?: InputMaybe<Scalars['ID']['input']>;
|
|
170541
|
+
last?: InputMaybe<Scalars['Int']['input']>;
|
|
170542
|
+
query?: InputMaybe<Scalars['String']['input']>;
|
|
170543
|
+
workspaceAri: Scalars['ID']['input'];
|
|
170544
|
+
};
|
|
169763
170545
|
export declare type QueryKitsune_SectionsArgs = {
|
|
169764
170546
|
ids: Array<Scalars['ID']['input']>;
|
|
169765
170547
|
};
|
|
@@ -171791,6 +172573,8 @@ export declare type RadarMoney = {
|
|
|
171791
172573
|
__typename?: 'RadarMoney';
|
|
171792
172574
|
amount: Scalars['String']['output'];
|
|
171793
172575
|
currency: Scalars['String']['output'];
|
|
172576
|
+
displayValue?: Maybe<Scalars['String']['output']>;
|
|
172577
|
+
displayValueCompact?: Maybe<Scalars['String']['output']>;
|
|
171794
172578
|
};
|
|
171795
172579
|
export declare type RadarMoneyFieldValue = {
|
|
171796
172580
|
__typename?: 'RadarMoneyFieldValue';
|
|
@@ -173812,6 +174596,10 @@ export declare enum Scope {
|
|
|
173812
174596
|
ReadFeedbackSource = "READ_FEEDBACK_SOURCE",
|
|
173813
174597
|
ReadFeedbackSpace = "READ_FEEDBACK_SPACE",
|
|
173814
174598
|
ReadFeedbackView = "READ_FEEDBACK_VIEW",
|
|
174599
|
+
ReadGuardDetectAlert = "READ_GUARD_DETECT_ALERT",
|
|
174600
|
+
ReadGuardDetectDetection = "READ_GUARD_DETECT_DETECTION",
|
|
174601
|
+
ReadGuardDetectDetectionSetting = "READ_GUARD_DETECT_DETECTION_SETTING",
|
|
174602
|
+
ReadGuardDetectSubscription = "READ_GUARD_DETECT_SUBSCRIPTION",
|
|
173815
174603
|
ReadHomeTwgCli = "READ_HOME_TWG_CLI",
|
|
173816
174604
|
ReadInsightJpd = "READ_INSIGHT_JPD",
|
|
173817
174605
|
ReadItamConfigJsm = "READ_ITAM_CONFIG_JSM",
|
|
@@ -173969,6 +174757,12 @@ export declare enum Scope {
|
|
|
173969
174757
|
WriteFeedbackJob = "WRITE_FEEDBACK_JOB",
|
|
173970
174758
|
WriteFeedbackSpace = "WRITE_FEEDBACK_SPACE",
|
|
173971
174759
|
WriteFeedbackView = "WRITE_FEEDBACK_VIEW",
|
|
174760
|
+
WriteGuardDetectAlert = "WRITE_GUARD_DETECT_ALERT",
|
|
174761
|
+
WriteGuardDetectDetection = "WRITE_GUARD_DETECT_DETECTION",
|
|
174762
|
+
WriteGuardDetectDetectionSetting = "WRITE_GUARD_DETECT_DETECTION_SETTING",
|
|
174763
|
+
WriteGuardDetectRedaction = "WRITE_GUARD_DETECT_REDACTION",
|
|
174764
|
+
WriteGuardDetectRestoration = "WRITE_GUARD_DETECT_RESTORATION",
|
|
174765
|
+
WriteGuardDetectSubscription = "WRITE_GUARD_DETECT_SUBSCRIPTION",
|
|
173972
174766
|
WriteHomeTwgCli = "WRITE_HOME_TWG_CLI",
|
|
173973
174767
|
WriteInsightJpd = "WRITE_INSIGHT_JPD",
|
|
173974
174768
|
WriteItamConfigJsm = "WRITE_ITAM_CONFIG_JSM",
|
|
@@ -174429,6 +175223,7 @@ export declare type SearchLayerDefinition = {
|
|
|
174429
175223
|
layerId?: InputMaybe<Scalars['String']['input']>;
|
|
174430
175224
|
providerId?: InputMaybe<Scalars['String']['input']>;
|
|
174431
175225
|
shadowId?: InputMaybe<Scalars['String']['input']>;
|
|
175226
|
+
statsigLayerId?: InputMaybe<Scalars['String']['input']>;
|
|
174432
175227
|
subEntity?: InputMaybe<Scalars['String']['input']>;
|
|
174433
175228
|
};
|
|
174434
175229
|
export declare enum SearchLinkedEntitiesType {
|
|
@@ -199674,6 +200469,7 @@ export declare type TeamMutation = {
|
|
|
199674
200469
|
linkExternalTeam?: Maybe<TeamLinkExternalTeamPayload>;
|
|
199675
200470
|
removeChild?: Maybe<TeamV2>;
|
|
199676
200471
|
removeParent?: Maybe<TeamV2>;
|
|
200472
|
+
restoreExternalTeam?: Maybe<TeamRestoreExternalTeamPayload>;
|
|
199677
200473
|
setNotificationConfiguration?: Maybe<TeamNotificationConfiguration>;
|
|
199678
200474
|
setScopeNotificationConfiguration?: Maybe<TeamScopeNotificationConfiguration>;
|
|
199679
200475
|
unlinkCustomFieldFromOption?: Maybe<TeamCustomFieldKeyValues>;
|
|
@@ -199759,6 +200555,9 @@ export declare type TeamMutationRemoveParentArgs = {
|
|
|
199759
200555
|
siteId: Scalars['ID']['input'];
|
|
199760
200556
|
teamId: Scalars['ID']['input'];
|
|
199761
200557
|
};
|
|
200558
|
+
export declare type TeamMutationRestoreExternalTeamArgs = {
|
|
200559
|
+
input: TeamRestoreExternalTeamInput;
|
|
200560
|
+
};
|
|
199762
200561
|
export declare type TeamMutationSetNotificationConfigurationArgs = {
|
|
199763
200562
|
input: TeamSetNotificationConfigurationInput;
|
|
199764
200563
|
};
|
|
@@ -199968,6 +200767,17 @@ export declare type TeamQueryTypesWithinScopeArgs = {
|
|
|
199968
200767
|
first?: Scalars['Int']['input'];
|
|
199969
200768
|
scopeId: Scalars['ID']['input'];
|
|
199970
200769
|
};
|
|
200770
|
+
export declare type TeamRestoreExternalTeamInput = {
|
|
200771
|
+
externalReference: TeamExternalReferenceInput;
|
|
200772
|
+
scopeId: Scalars['ID']['input'];
|
|
200773
|
+
teamId: Scalars['ID']['input'];
|
|
200774
|
+
};
|
|
200775
|
+
export declare type TeamRestoreExternalTeamPayload = Payload & {
|
|
200776
|
+
__typename?: 'TeamRestoreExternalTeamPayload';
|
|
200777
|
+
errors?: Maybe<Array<MutationError>>;
|
|
200778
|
+
success: Scalars['Boolean']['output'];
|
|
200779
|
+
teamId?: Maybe<Scalars['ID']['output']>;
|
|
200780
|
+
};
|
|
199971
200781
|
export declare enum TeamRole {
|
|
199972
200782
|
TeamsAdmin = "TEAMS_ADMIN",
|
|
199973
200783
|
TeamsObserver = "TEAMS_OBSERVER",
|
|
@@ -201398,6 +202208,7 @@ export declare type TownsquareGoal = Node & {
|
|
|
201398
202208
|
risks?: Maybe<TownsquareRiskConnection>;
|
|
201399
202209
|
scoringMode?: Maybe<TownsquareGoalScoringMode>;
|
|
201400
202210
|
slackChannels?: Maybe<TownsquareSlackConnectionConnection>;
|
|
202211
|
+
softDeleted?: Maybe<Scalars['Boolean']['output']>;
|
|
201401
202212
|
startDate?: Maybe<Scalars['Date']['output']>;
|
|
201402
202213
|
state?: Maybe<TownsquareGoalState>;
|
|
201403
202214
|
status?: Maybe<TownsquareStatus>;
|
|
@@ -201591,6 +202402,7 @@ export declare type TownsquareGoalCapabilities = {
|
|
|
201591
202402
|
canCommentOnGoal?: Maybe<Scalars['Boolean']['output']>;
|
|
201592
202403
|
canCommentOnUpdates?: Maybe<Scalars['Boolean']['output']>;
|
|
201593
202404
|
canCreateUpdates?: Maybe<Scalars['Boolean']['output']>;
|
|
202405
|
+
canDeleteGoal?: Maybe<Scalars['Boolean']['output']>;
|
|
201594
202406
|
canDeleteUpdates?: Maybe<Scalars['Boolean']['output']>;
|
|
201595
202407
|
canEditCustomFields?: Maybe<Scalars['Boolean']['output']>;
|
|
201596
202408
|
canEditMetadata?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -201733,6 +202545,7 @@ export declare type TownsquareGoalProgressTypeChange = {
|
|
|
201733
202545
|
__typename?: 'TownsquareGoalProgressTypeChange';
|
|
201734
202546
|
newProgressType: TownsquareGoalProgressType;
|
|
201735
202547
|
oldProgressType: TownsquareGoalProgressType;
|
|
202548
|
+
successMeasure?: Maybe<TownsquareGoalType>;
|
|
201736
202549
|
};
|
|
201737
202550
|
export declare type TownsquareGoalRenamedChange = {
|
|
201738
202551
|
__typename?: 'TownsquareGoalRenamedChange';
|
|
@@ -202160,6 +202973,17 @@ export declare type TownsquareGoalsCreateLearningPayload = {
|
|
|
202160
202973
|
learning?: Maybe<TownsquareLearning>;
|
|
202161
202974
|
success: Scalars['Boolean']['output'];
|
|
202162
202975
|
};
|
|
202976
|
+
export declare type TownsquareGoalsCreateMetricValueInput = {
|
|
202977
|
+
metricId: Scalars['ID']['input'];
|
|
202978
|
+
time?: InputMaybe<Scalars['DateTime']['input']>;
|
|
202979
|
+
value: Scalars['Float']['input'];
|
|
202980
|
+
};
|
|
202981
|
+
export declare type TownsquareGoalsCreateMetricValuePayload = {
|
|
202982
|
+
__typename?: 'TownsquareGoalsCreateMetricValuePayload';
|
|
202983
|
+
errors?: Maybe<Array<MutationError>>;
|
|
202984
|
+
metricValue?: Maybe<TownsquareMetricValue>;
|
|
202985
|
+
success: Scalars['Boolean']['output'];
|
|
202986
|
+
};
|
|
202163
202987
|
export declare type TownsquareGoalsCreatePayload = {
|
|
202164
202988
|
__typename?: 'TownsquareGoalsCreatePayload';
|
|
202165
202989
|
errors?: Maybe<Array<MutationError>>;
|
|
@@ -202523,6 +203347,27 @@ export declare type TownsquareGoalsRemoveWatchersPayload = {
|
|
|
202523
203347
|
removedWatcherIds?: Maybe<Array<Scalars['ID']['output']>>;
|
|
202524
203348
|
success: Scalars['Boolean']['output'];
|
|
202525
203349
|
};
|
|
203350
|
+
export declare type TownsquareGoalsRestoreGoalsInput = {
|
|
203351
|
+
goalIds: Array<Scalars['ID']['input']>;
|
|
203352
|
+
};
|
|
203353
|
+
export declare type TownsquareGoalsRestoreGoalsPayload = {
|
|
203354
|
+
__typename?: 'TownsquareGoalsRestoreGoalsPayload';
|
|
203355
|
+
errors?: Maybe<Array<MutationError>>;
|
|
203356
|
+
restoredGoals?: Maybe<Array<TownsquareGoal>>;
|
|
203357
|
+
success: Scalars['Boolean']['output'];
|
|
203358
|
+
};
|
|
203359
|
+
export declare type TownsquareGoalsSetParentGoalInput = {
|
|
203360
|
+
goalId: Scalars['ID']['input'];
|
|
203361
|
+
parentGoalId?: InputMaybe<Scalars['ID']['input']>;
|
|
203362
|
+
};
|
|
203363
|
+
export declare type TownsquareGoalsSetParentGoalPayload = {
|
|
203364
|
+
__typename?: 'TownsquareGoalsSetParentGoalPayload';
|
|
203365
|
+
errors?: Maybe<Array<MutationError>>;
|
|
203366
|
+
goal?: Maybe<TownsquareGoal>;
|
|
203367
|
+
parentGoal?: Maybe<TownsquareGoal>;
|
|
203368
|
+
removedParentGoal?: Maybe<TownsquareGoal>;
|
|
203369
|
+
success: Scalars['Boolean']['output'];
|
|
203370
|
+
};
|
|
202526
203371
|
export declare type TownsquareGoalsSetRollupProgressInput = {
|
|
202527
203372
|
enableRollupProgress?: InputMaybe<Scalars['Boolean']['input']>;
|
|
202528
203373
|
goalId: Scalars['ID']['input'];
|
|
@@ -202591,6 +203436,15 @@ export declare type TownsquareGoalsShareUpdatePayload = {
|
|
|
202591
203436
|
isShared: Scalars['Boolean']['output'];
|
|
202592
203437
|
success: Scalars['Boolean']['output'];
|
|
202593
203438
|
};
|
|
203439
|
+
export declare type TownsquareGoalsSoftDeleteGoalsInput = {
|
|
203440
|
+
goalIds: Array<Scalars['ID']['input']>;
|
|
203441
|
+
};
|
|
203442
|
+
export declare type TownsquareGoalsSoftDeleteGoalsPayload = {
|
|
203443
|
+
__typename?: 'TownsquareGoalsSoftDeleteGoalsPayload';
|
|
203444
|
+
errors?: Maybe<Array<MutationError>>;
|
|
203445
|
+
softDeletedGoals?: Maybe<Array<TownsquareGoal>>;
|
|
203446
|
+
success: Scalars['Boolean']['output'];
|
|
203447
|
+
};
|
|
202594
203448
|
export declare type TownsquareGoalsUnlinkJiraAlignProjectInput = {
|
|
202595
203449
|
goalId: Scalars['ID']['input'];
|
|
202596
203450
|
jiraAlignProjectId: Scalars['ID']['input'];
|
|
@@ -204197,6 +205051,7 @@ export declare type TownsquareSetParentGoalPayload = {
|
|
|
204197
205051
|
__typename?: 'TownsquareSetParentGoalPayload';
|
|
204198
205052
|
goal?: Maybe<TownsquareGoal>;
|
|
204199
205053
|
parentGoal?: Maybe<TownsquareGoal>;
|
|
205054
|
+
removedParentGoal?: Maybe<TownsquareGoal>;
|
|
204200
205055
|
};
|
|
204201
205056
|
export declare type TownsquareShareGoalUserInput = {
|
|
204202
205057
|
accountId?: InputMaybe<Scalars['ID']['input']>;
|
|
@@ -204901,6 +205756,7 @@ export declare type TrelloAddMemberToCardPayload = Payload & {
|
|
|
204901
205756
|
success: Scalars['Boolean']['output'];
|
|
204902
205757
|
};
|
|
204903
205758
|
export declare type TrelloAddOnboardingInboxCardsCardInput = {
|
|
205759
|
+
complete?: InputMaybe<Scalars['Boolean']['input']>;
|
|
204904
205760
|
description?: InputMaybe<Scalars['String']['input']>;
|
|
204905
205761
|
externalSource?: InputMaybe<TrelloCardExternalSource>;
|
|
204906
205762
|
name: Scalars['String']['input'];
|
|
@@ -206396,6 +207252,7 @@ export declare type TrelloCloseBoardInput = {
|
|
|
206396
207252
|
export declare type TrelloCloseBoardPayload = Payload & {
|
|
206397
207253
|
__typename?: 'TrelloCloseBoardPayload';
|
|
206398
207254
|
board?: Maybe<TrelloBoard>;
|
|
207255
|
+
boardV2?: Maybe<TrelloBaseBoard>;
|
|
206399
207256
|
errors?: Maybe<Array<MutationError>>;
|
|
206400
207257
|
success: Scalars['Boolean']['output'];
|
|
206401
207258
|
};
|
|
@@ -206448,6 +207305,7 @@ export declare type TrelloCompleteOnboardingBoardInput = {
|
|
|
206448
207305
|
name: Scalars['String']['input'];
|
|
206449
207306
|
};
|
|
206450
207307
|
export declare type TrelloCompleteOnboardingCardInput = {
|
|
207308
|
+
complete?: InputMaybe<Scalars['Boolean']['input']>;
|
|
206451
207309
|
description?: InputMaybe<Scalars['String']['input']>;
|
|
206452
207310
|
name: Scalars['String']['input'];
|
|
206453
207311
|
position: Scalars['Float']['input'];
|
|
@@ -206479,6 +207337,7 @@ export declare type TrelloConvertTemplateToBoardInput = {
|
|
|
206479
207337
|
export declare type TrelloConvertTemplateToBoardPayload = Payload & {
|
|
206480
207338
|
__typename?: 'TrelloConvertTemplateToBoardPayload';
|
|
206481
207339
|
board?: Maybe<TrelloBoard>;
|
|
207340
|
+
boardV2?: Maybe<TrelloBaseBoard>;
|
|
206482
207341
|
errors?: Maybe<Array<MutationError>>;
|
|
206483
207342
|
success: Scalars['Boolean']['output'];
|
|
206484
207343
|
};
|
|
@@ -206692,7 +207551,7 @@ export declare type TrelloCreateCheckItemInput = {
|
|
|
206692
207551
|
creationMethod?: InputMaybe<TrelloCheckItemCreationMethod>;
|
|
206693
207552
|
due?: InputMaybe<TrelloCheckItemDueInfoInput>;
|
|
206694
207553
|
name: Scalars['String']['input'];
|
|
206695
|
-
position?: InputMaybe<
|
|
207554
|
+
position?: InputMaybe<TrelloPosition>;
|
|
206696
207555
|
userId?: InputMaybe<Scalars['ID']['input']>;
|
|
206697
207556
|
};
|
|
206698
207557
|
export declare type TrelloCreateCheckItemPayload = Payload & {
|
|
@@ -207502,6 +208361,7 @@ export declare type TrelloLabelUpdatedConnection = {
|
|
|
207502
208361
|
nodes?: Maybe<Array<TrelloLabel>>;
|
|
207503
208362
|
};
|
|
207504
208363
|
export declare enum TrelloLabsFeature {
|
|
208364
|
+
AiBoardBuilder = "AI_BOARD_BUILDER",
|
|
207505
208365
|
GenerateChecklist = "GENERATE_CHECKLIST",
|
|
207506
208366
|
MergeCards = "MERGE_CARDS",
|
|
207507
208367
|
RovoChat = "ROVO_CHAT",
|
|
@@ -209824,6 +210684,7 @@ export declare type TrelloReopenBoardInput = {
|
|
|
209824
210684
|
export declare type TrelloReopenBoardPayload = Payload & {
|
|
209825
210685
|
__typename?: 'TrelloReopenBoardPayload';
|
|
209826
210686
|
board?: Maybe<TrelloBoard>;
|
|
210687
|
+
boardV2?: Maybe<TrelloBaseBoard>;
|
|
209827
210688
|
errors?: Maybe<Array<MutationError>>;
|
|
209828
210689
|
success: Scalars['Boolean']['output'];
|
|
209829
210690
|
};
|
|
@@ -210183,6 +211044,8 @@ export declare type TrelloUpdateApplicationIconInput = {
|
|
|
210183
211044
|
};
|
|
210184
211045
|
export declare type TrelloUpdateApplicationInput = {
|
|
210185
211046
|
author?: InputMaybe<Scalars['String']['input']>;
|
|
211047
|
+
capabilities?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
211048
|
+
capabilitiesOptions?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
210186
211049
|
categories?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
210187
211050
|
email?: InputMaybe<Scalars['String']['input']>;
|
|
210188
211051
|
icon?: InputMaybe<TrelloUpdateApplicationIconInput>;
|
|
@@ -210223,6 +211086,7 @@ export declare type TrelloUpdateBoardDescriptionInput = {
|
|
|
210223
211086
|
export declare type TrelloUpdateBoardDescriptionPayload = Payload & {
|
|
210224
211087
|
__typename?: 'TrelloUpdateBoardDescriptionPayload';
|
|
210225
211088
|
board?: Maybe<TrelloBoard>;
|
|
211089
|
+
boardV2?: Maybe<TrelloBaseBoard>;
|
|
210226
211090
|
errors?: Maybe<Array<MutationError>>;
|
|
210227
211091
|
success: Scalars['Boolean']['output'];
|
|
210228
211092
|
};
|
|
@@ -210501,11 +211365,12 @@ export declare type TrelloUpdateCardRolePayload = Payload & {
|
|
|
210501
211365
|
};
|
|
210502
211366
|
export declare type TrelloUpdateCheckItemInput = {
|
|
210503
211367
|
checkItemId: Scalars['ID']['input'];
|
|
210504
|
-
checklistId
|
|
211368
|
+
checklistId: Scalars['ID']['input'];
|
|
210505
211369
|
due?: InputMaybe<TrelloCheckItemDueInfoInput>;
|
|
210506
211370
|
name?: InputMaybe<Scalars['String']['input']>;
|
|
210507
211371
|
position?: InputMaybe<TrelloPosition>;
|
|
210508
211372
|
state?: InputMaybe<TrelloCheckItemState>;
|
|
211373
|
+
targetChecklistId?: InputMaybe<Scalars['ID']['input']>;
|
|
210509
211374
|
userId?: InputMaybe<Scalars['ID']['input']>;
|
|
210510
211375
|
};
|
|
210511
211376
|
export declare type TrelloUpdateCheckItemPayload = Payload & {
|