@forge/cli-shared 8.23.0-next.8 → 8.23.0-next.9

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.
@@ -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,6 +2459,7 @@ 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
  };
@@ -6801,6 +6922,15 @@ export declare type AgentWorkspaceAgentCapacityEdge = {
6801
6922
  cursor: Scalars['String']['output'];
6802
6923
  node: AgentWorkspaceAgentCapacity;
6803
6924
  };
6925
+ export declare type AgentWorkspaceAgentExclusionReason = {
6926
+ __typename?: 'AgentWorkspaceAgentExclusionReason';
6927
+ code: AgentWorkspaceAgentExclusionReasonCode;
6928
+ message?: Maybe<Scalars['String']['output']>;
6929
+ };
6930
+ export declare enum AgentWorkspaceAgentExclusionReasonCode {
6931
+ AssignedToSameSchedule = "ASSIGNED_TO_SAME_SCHEDULE",
6932
+ Unknown = "UNKNOWN"
6933
+ }
6804
6934
  export declare type AgentWorkspaceAgentRebalancingRecommendationsInput = {
6805
6935
  agentId: Scalars['ID']['input'];
6806
6936
  projectARI: Scalars['ID']['input'];
@@ -7131,6 +7261,11 @@ export declare type AgentWorkspaceDeleteCoverShiftInput = {
7131
7261
  scheduleId: Scalars['ID']['input'];
7132
7262
  shiftSegmentId: Scalars['ID']['input'];
7133
7263
  };
7264
+ export declare type AgentWorkspaceDeleteCoverShiftPayload = {
7265
+ __typename?: 'AgentWorkspaceDeleteCoverShiftPayload';
7266
+ errors?: Maybe<Array<AgentWorkspaceScheduleError>>;
7267
+ success: Scalars['Boolean']['output'];
7268
+ };
7134
7269
  export declare type AgentWorkspaceDeleteScheduleInput = {
7135
7270
  cloudId: Scalars['ID']['input'];
7136
7271
  projectId?: InputMaybe<Scalars['ID']['input']>;
@@ -7175,7 +7310,6 @@ export declare type AgentWorkspaceDraftedRoutingTableEntry = {
7175
7310
  serviceId: Scalars['ID']['output'];
7176
7311
  serviceName: Scalars['String']['output'];
7177
7312
  teamAri?: Maybe<Scalars['ID']['output']>;
7178
- teamName?: Maybe<Scalars['String']['output']>;
7179
7313
  };
7180
7314
  export declare type AgentWorkspaceDraftedRoutingTableEntryPatch = {
7181
7315
  confidence?: InputMaybe<Scalars['Float']['input']>;
@@ -7183,22 +7317,33 @@ export declare type AgentWorkspaceDraftedRoutingTableEntryPatch = {
7183
7317
  serviceName?: InputMaybe<Scalars['String']['input']>;
7184
7318
  source?: InputMaybe<AgentWorkspaceDraftedRoutingTableEntrySource>;
7185
7319
  teamAri?: InputMaybe<Scalars['ID']['input']>;
7186
- teamName?: InputMaybe<Scalars['String']['input']>;
7187
7320
  };
7188
7321
  export declare enum AgentWorkspaceDraftedRoutingTableEntrySource {
7189
7322
  Manual = "MANUAL",
7190
7323
  Rovo = "ROVO"
7191
7324
  }
7325
+ export declare type AgentWorkspaceDraftedRoutingTableStatus = {
7326
+ __typename?: 'AgentWorkspaceDraftedRoutingTableStatus';
7327
+ serviceFieldId?: Maybe<Scalars['String']['output']>;
7328
+ };
7192
7329
  export declare type AgentWorkspaceEditCoverShiftInput = {
7193
7330
  agentId: Scalars['ID']['input'];
7331
+ newAgentId?: InputMaybe<Scalars['ID']['input']>;
7194
7332
  newEndTime: Scalars['DateTime']['input'];
7195
7333
  newStartTime: Scalars['DateTime']['input'];
7196
7334
  projectARI: Scalars['ID']['input'];
7197
7335
  scheduleId: Scalars['ID']['input'];
7198
7336
  shiftSegmentId: Scalars['ID']['input'];
7199
7337
  };
7338
+ export declare type AgentWorkspaceEditCoverShiftPayload = {
7339
+ __typename?: 'AgentWorkspaceEditCoverShiftPayload';
7340
+ errors?: Maybe<Array<AgentWorkspaceScheduleError>>;
7341
+ resultingCoveringShifts: Array<AgentWorkspaceCoveringShift>;
7342
+ success: Scalars['Boolean']['output'];
7343
+ };
7200
7344
  export declare type AgentWorkspaceEditShiftInput = {
7201
7345
  agentId: Scalars['ID']['input'];
7346
+ newAgentId?: InputMaybe<Scalars['ID']['input']>;
7202
7347
  newEndTime: Scalars['DateTime']['input'];
7203
7348
  newStartTime: Scalars['DateTime']['input'];
7204
7349
  occurrenceStartTime: Scalars['DateTime']['input'];
@@ -7207,6 +7352,7 @@ export declare type AgentWorkspaceEditShiftInput = {
7207
7352
  };
7208
7353
  export declare type AgentWorkspaceEditShiftPayload = {
7209
7354
  __typename?: 'AgentWorkspaceEditShiftPayload';
7355
+ createdCoveringShifts: Array<AgentWorkspaceCoveringShift>;
7210
7356
  errors?: Maybe<Array<AgentWorkspaceScheduleError>>;
7211
7357
  shift?: Maybe<AgentWorkspaceShift>;
7212
7358
  success: Scalars['Boolean']['output'];
@@ -7222,6 +7368,11 @@ export declare type AgentWorkspaceEligibleGroupsPayload = {
7222
7368
  eligibleGroups: Array<AgentWorkspaceEligibleGroup>;
7223
7369
  groupsTooLarge: Array<AgentWorkspaceGroupTooLarge>;
7224
7370
  };
7371
+ export declare type AgentWorkspaceExcludedAgent = {
7372
+ __typename?: 'AgentWorkspaceExcludedAgent';
7373
+ agent: AgentWorkspaceAgent;
7374
+ exclusionReasons: Array<AgentWorkspaceAgentExclusionReason>;
7375
+ };
7225
7376
  export declare type AgentWorkspaceGroupMember = {
7226
7377
  __typename?: 'AgentWorkspaceGroupMember';
7227
7378
  accountId: Scalars['String']['output'];
@@ -7237,6 +7388,15 @@ export declare type AgentWorkspaceIssueRebalancingRecommendation = {
7237
7388
  issueARI: Scalars['ID']['output'];
7238
7389
  recommendations: Array<AgentWorkspaceRebalancingRecommendation>;
7239
7390
  };
7391
+ export declare type AgentWorkspaceIssueRoutingHistory = {
7392
+ __typename?: 'AgentWorkspaceIssueRoutingHistory';
7393
+ events: AgentWorkspaceRoutingHistoryEventConnection;
7394
+ issueKey: Scalars['String']['output'];
7395
+ };
7396
+ export declare type AgentWorkspaceIssueRoutingHistoryEventsArgs = {
7397
+ after?: InputMaybe<Scalars['String']['input']>;
7398
+ first?: InputMaybe<Scalars['Int']['input']>;
7399
+ };
7240
7400
  export declare type AgentWorkspaceMutationError = {
7241
7401
  __typename?: 'AgentWorkspaceMutationError';
7242
7402
  code?: Maybe<Scalars['String']['output']>;
@@ -7274,6 +7434,11 @@ export declare type AgentWorkspaceRecommendedAgentsForCoverageGapInput = {
7274
7434
  scheduleId: Scalars['ID']['input'];
7275
7435
  shiftSegmentId: Scalars['ID']['input'];
7276
7436
  };
7437
+ export declare type AgentWorkspaceRecommendedAgentsForCoverageGapPayload = {
7438
+ __typename?: 'AgentWorkspaceRecommendedAgentsForCoverageGapPayload';
7439
+ excludedAgents: Array<AgentWorkspaceExcludedAgent>;
7440
+ recommendedAgents: Array<AgentWorkspaceAgent>;
7441
+ };
7277
7442
  export declare type AgentWorkspaceRecommendedAgentsForGapInput = {
7278
7443
  originalAgentId: Scalars['ID']['input'];
7279
7444
  projectARI: Scalars['ID']['input'];
@@ -7321,6 +7486,36 @@ export declare type AgentWorkspaceRestoreSkillPayload = {
7321
7486
  errors?: Maybe<Array<MutationError>>;
7322
7487
  success: Scalars['Boolean']['output'];
7323
7488
  };
7489
+ export declare type AgentWorkspaceRoutingHistoryEvent = {
7490
+ __typename?: 'AgentWorkspaceRoutingHistoryEvent';
7491
+ details: Array<Scalars['String']['output']>;
7492
+ headline: Scalars['String']['output'];
7493
+ id: Scalars['ID']['output'];
7494
+ kind: AgentWorkspaceRoutingHistoryEventKind;
7495
+ occurredAt: Scalars['DateTime']['output'];
7496
+ };
7497
+ export declare type AgentWorkspaceRoutingHistoryEventConnection = {
7498
+ __typename?: 'AgentWorkspaceRoutingHistoryEventConnection';
7499
+ edges: Array<AgentWorkspaceRoutingHistoryEventEdge>;
7500
+ pageInfo: AgentWorkspaceRoutingHistoryPageInfo;
7501
+ };
7502
+ export declare type AgentWorkspaceRoutingHistoryEventEdge = {
7503
+ __typename?: 'AgentWorkspaceRoutingHistoryEventEdge';
7504
+ cursor: Scalars['String']['output'];
7505
+ node: AgentWorkspaceRoutingHistoryEvent;
7506
+ };
7507
+ export declare enum AgentWorkspaceRoutingHistoryEventKind {
7508
+ DeterminedService = "DETERMINED_SERVICE",
7509
+ Routed = "ROUTED",
7510
+ Skipped = "SKIPPED"
7511
+ }
7512
+ export declare type AgentWorkspaceRoutingHistoryPageInfo = {
7513
+ __typename?: 'AgentWorkspaceRoutingHistoryPageInfo';
7514
+ endCursor?: Maybe<Scalars['String']['output']>;
7515
+ hasNextPage: Scalars['Boolean']['output'];
7516
+ hasPreviousPage: Scalars['Boolean']['output'];
7517
+ startCursor?: Maybe<Scalars['String']['output']>;
7518
+ };
7324
7519
  export declare type AgentWorkspaceRoutingSetupState = {
7325
7520
  __typename?: 'AgentWorkspaceRoutingSetupState';
7326
7521
  hasCommittedTable: Scalars['Boolean']['output'];
@@ -7498,6 +7693,15 @@ export declare type AgentWorkspaceSetDefaultCapacityPayload = {
7498
7693
  errors?: Maybe<Array<AgentWorkspaceCapacityError>>;
7499
7694
  success: Scalars['Boolean']['output'];
7500
7695
  };
7696
+ export declare type AgentWorkspaceSetDraftedRoutingTableServiceFieldInput = {
7697
+ cloudId: Scalars['ID']['input'];
7698
+ projectKey: Scalars['String']['input'];
7699
+ serviceFieldId: Scalars['String']['input'];
7700
+ };
7701
+ export declare type AgentWorkspaceSetDraftedRoutingTableServiceFieldPayload = {
7702
+ __typename?: 'AgentWorkspaceSetDraftedRoutingTableServiceFieldPayload';
7703
+ serviceFieldId: Scalars['String']['output'];
7704
+ };
7501
7705
  export declare type AgentWorkspaceSetProjectDefaultAvailabilityInput = {
7502
7706
  cloudId: Scalars['ID']['input'];
7503
7707
  projectId: Scalars['ID']['input'];
@@ -8540,6 +8744,12 @@ export declare type AppDeploymentConnection = {
8540
8744
  nodes: Array<Maybe<AppDeployment>>;
8541
8745
  pageInfo?: Maybe<PageInfo>;
8542
8746
  };
8747
+ export declare type AppDeploymentDisplayEvent = AppDeploymentEvent & {
8748
+ __typename?: 'AppDeploymentDisplayEvent';
8749
+ createdAt: Scalars['String']['output'];
8750
+ message?: Maybe<Scalars['String']['output']>;
8751
+ stepName: Scalars['String']['output'];
8752
+ };
8543
8753
  export declare type AppDeploymentEdge = {
8544
8754
  __typename?: 'AppDeploymentEdge';
8545
8755
  cursor: Scalars['String']['output'];
@@ -12895,6 +13105,12 @@ export declare type AssetsUserAttributeValue = {
12895
13105
  id?: Maybe<Scalars['String']['output']>;
12896
13106
  name?: Maybe<Scalars['String']['output']>;
12897
13107
  };
13108
+ export declare type AssetsVerticalAllInsightsResponse = {
13109
+ __typename?: 'AssetsVerticalAllInsightsResponse';
13110
+ items: Array<AssetsVerticalInsightItem>;
13111
+ pageInfo: PageInfo;
13112
+ };
13113
+ export declare type AssetsVerticalAllInsightsResult = AssetsVerticalAllInsightsResponse | QueryError;
12898
13114
  export declare type AssetsVerticalArchiveInsightInput = {
12899
13115
  archived: Scalars['Boolean']['input'];
12900
13116
  cloudId: Scalars['ID']['input'];
@@ -13062,6 +13278,19 @@ export declare type AssetsVerticalCreateAssetTypesTrackingsInput = {
13062
13278
  cloudId: Scalars['ID']['input'];
13063
13279
  verticalInstantiationCategoryId: Scalars['ID']['input'];
13064
13280
  };
13281
+ export declare type AssetsVerticalCreateCustomInsightInput = {
13282
+ category: AssetsVerticalInsightCategory;
13283
+ cloudId: Scalars['ID']['input'];
13284
+ description?: InputMaybe<Scalars['String']['input']>;
13285
+ name: Scalars['String']['input'];
13286
+ nlQuery: Scalars['String']['input'];
13287
+ };
13288
+ export declare type AssetsVerticalCreateCustomInsightPayload = Payload & {
13289
+ __typename?: 'AssetsVerticalCreateCustomInsightPayload';
13290
+ definition?: Maybe<AssetsVerticalCustomInsightDefinition>;
13291
+ errors?: Maybe<Array<MutationError>>;
13292
+ success: Scalars['Boolean']['output'];
13293
+ };
13065
13294
  export declare type AssetsVerticalCreateDepreciationRuleInput = {
13066
13295
  assetTypes: Array<AssetsVerticalDepreciationRuleAssetTypeInput>;
13067
13296
  cloudId: Scalars['ID']['input'];
@@ -13111,6 +13340,43 @@ export declare type AssetsVerticalCreateVerticalInstantiationInput = {
13111
13340
  depreciationRules?: InputMaybe<Array<AssetsVerticalCreateDepreciationRuleWithinInstantiationInput>>;
13112
13341
  type: AssetsVerticalVerticalType;
13113
13342
  };
13343
+ export declare type AssetsVerticalCustomInsightDefinition = {
13344
+ __typename?: 'AssetsVerticalCustomInsightDefinition';
13345
+ category: AssetsVerticalInsightCategory;
13346
+ createdAt: Scalars['DateTime']['output'];
13347
+ createdBy: Scalars['String']['output'];
13348
+ ctaRovoPrompt: Scalars['String']['output'];
13349
+ description?: Maybe<Scalars['String']['output']>;
13350
+ id: Scalars['ID']['output'];
13351
+ isEnabled: Scalars['Boolean']['output'];
13352
+ lastResult?: Maybe<AssetsVerticalCustomInsightResult>;
13353
+ lastRunAt?: Maybe<Scalars['DateTime']['output']>;
13354
+ name: Scalars['String']['output'];
13355
+ nlQuery: Scalars['String']['output'];
13356
+ updatedAt: Scalars['DateTime']['output'];
13357
+ updatedBy: Scalars['String']['output'];
13358
+ };
13359
+ export declare type AssetsVerticalCustomInsightResult = {
13360
+ __typename?: 'AssetsVerticalCustomInsightResult';
13361
+ jobId: Scalars['ID']['output'];
13362
+ status: AssetsVerticalCustomInsightStatus;
13363
+ suggestedPollIntervalMs?: Maybe<Scalars['Int']['output']>;
13364
+ summary?: Maybe<Scalars['String']['output']>;
13365
+ };
13366
+ export declare type AssetsVerticalCustomInsightResultUnion = AssetsVerticalCustomInsightResult | QueryError;
13367
+ export declare enum AssetsVerticalCustomInsightStatus {
13368
+ Completed = "COMPLETED",
13369
+ Failed = "FAILED",
13370
+ InProgress = "IN_PROGRESS",
13371
+ NotStarted = "NOT_STARTED",
13372
+ Pending = "PENDING"
13373
+ }
13374
+ export declare type AssetsVerticalCustomInsightsResponse = {
13375
+ __typename?: 'AssetsVerticalCustomInsightsResponse';
13376
+ items: Array<AssetsVerticalCustomInsightDefinition>;
13377
+ pageInfo: PageInfo;
13378
+ };
13379
+ export declare type AssetsVerticalCustomInsightsResult = AssetsVerticalCustomInsightsResponse | QueryError;
13114
13380
  export declare type AssetsVerticalDefaultAttribute = AssetsVerticalObjectTypeAttribute & {
13115
13381
  __typename?: 'AssetsVerticalDefaultAttribute';
13116
13382
  isEditable?: Maybe<Scalars['Boolean']['output']>;
@@ -13136,6 +13402,15 @@ export declare type AssetsVerticalDeleteAssetTypesTrackingInput = {
13136
13402
  cloudId: Scalars['ID']['input'];
13137
13403
  id: Scalars['ID']['input'];
13138
13404
  };
13405
+ export declare type AssetsVerticalDeleteCustomInsightInput = {
13406
+ cloudId: Scalars['ID']['input'];
13407
+ insightId: Scalars['ID']['input'];
13408
+ };
13409
+ export declare type AssetsVerticalDeleteCustomInsightPayload = Payload & {
13410
+ __typename?: 'AssetsVerticalDeleteCustomInsightPayload';
13411
+ errors?: Maybe<Array<MutationError>>;
13412
+ success: Scalars['Boolean']['output'];
13413
+ };
13139
13414
  export declare type AssetsVerticalDeleteDepreciationRuleInput = {
13140
13415
  cloudId: Scalars['ID']['input'];
13141
13416
  id: Scalars['ID']['input'];
@@ -13247,10 +13522,32 @@ export declare type AssetsVerticalDepreciationRuleQueryErrorExtension = QueryErr
13247
13522
  statusCode?: Maybe<Scalars['Int']['output']>;
13248
13523
  };
13249
13524
  export declare type AssetsVerticalDepreciationRuleResult = AssetsVerticalDepreciationRule | QueryError;
13525
+ export declare type AssetsVerticalEnableCustomInsightInput = {
13526
+ cloudId: Scalars['ID']['input'];
13527
+ enabled: Scalars['Boolean']['input'];
13528
+ insightId: Scalars['ID']['input'];
13529
+ };
13530
+ export declare type AssetsVerticalEnableCustomInsightPayload = Payload & {
13531
+ __typename?: 'AssetsVerticalEnableCustomInsightPayload';
13532
+ definition?: Maybe<AssetsVerticalCustomInsightDefinition>;
13533
+ errors?: Maybe<Array<MutationError>>;
13534
+ success: Scalars['Boolean']['output'];
13535
+ };
13250
13536
  export declare enum AssetsVerticalFlowType {
13251
13537
  Existing = "EXISTING",
13252
13538
  New = "NEW"
13253
13539
  }
13540
+ export declare type AssetsVerticalGenerateCustomInsightInput = {
13541
+ cloudId: Scalars['ID']['input'];
13542
+ insightId: Scalars['ID']['input'];
13543
+ };
13544
+ export declare type AssetsVerticalGenerateCustomInsightPayload = Payload & {
13545
+ __typename?: 'AssetsVerticalGenerateCustomInsightPayload';
13546
+ errors?: Maybe<Array<MutationError>>;
13547
+ jobId?: Maybe<Scalars['ID']['output']>;
13548
+ success: Scalars['Boolean']['output'];
13549
+ suggestedPollIntervalMs?: Maybe<Scalars['Int']['output']>;
13550
+ };
13254
13551
  export declare type AssetsVerticalGenerateInsightsInput = {
13255
13552
  cloudId: Scalars['ID']['input'];
13256
13553
  };
@@ -13275,6 +13572,11 @@ export declare type AssetsVerticalInsightCard = {
13275
13572
  summary: Scalars['String']['output'];
13276
13573
  title: Scalars['String']['output'];
13277
13574
  };
13575
+ export declare enum AssetsVerticalInsightCategory {
13576
+ Financial = "FINANCIAL",
13577
+ Operational = "OPERATIONAL",
13578
+ Security = "SECURITY"
13579
+ }
13278
13580
  export declare type AssetsVerticalInsightDefinition = {
13279
13581
  __typename?: 'AssetsVerticalInsightDefinition';
13280
13582
  category: Scalars['String']['output'];
@@ -13308,6 +13610,22 @@ export declare type AssetsVerticalInsightGenerationError = {
13308
13610
  message: Scalars['String']['output'];
13309
13611
  retryable: Scalars['Boolean']['output'];
13310
13612
  };
13613
+ export declare type AssetsVerticalInsightItem = {
13614
+ __typename?: 'AssetsVerticalInsightItem';
13615
+ category: AssetsVerticalInsightCategory;
13616
+ ctaRovoPrompt: Scalars['String']['output'];
13617
+ customInsightId?: Maybe<Scalars['ID']['output']>;
13618
+ insightType?: Maybe<Scalars['ID']['output']>;
13619
+ isEnabled: Scalars['Boolean']['output'];
13620
+ isPinned: Scalars['Boolean']['output'];
13621
+ itemType: AssetsVerticalInsightItemType;
13622
+ lastResult?: Maybe<AssetsVerticalCustomInsightResult>;
13623
+ name: Scalars['String']['output'];
13624
+ };
13625
+ export declare enum AssetsVerticalInsightItemType {
13626
+ Custom = "CUSTOM",
13627
+ Ootb = "OOTB"
13628
+ }
13311
13629
  export declare enum AssetsVerticalInsightSource {
13312
13630
  Custom = "CUSTOM",
13313
13631
  Ootb = "OOTB"
@@ -13517,6 +13835,12 @@ export declare type AssetsVerticalObjectsSuccess = {
13517
13835
  pageInfo?: Maybe<PageInfo>;
13518
13836
  totalCount?: Maybe<Scalars['Int']['output']>;
13519
13837
  };
13838
+ export declare type AssetsVerticalPinInsightPayload = Payload & {
13839
+ __typename?: 'AssetsVerticalPinInsightPayload';
13840
+ errors?: Maybe<Array<MutationError>>;
13841
+ isPinned?: Maybe<Scalars['Boolean']['output']>;
13842
+ success: Scalars['Boolean']['output'];
13843
+ };
13520
13844
  export declare type AssetsVerticalProblemDetail = {
13521
13845
  correctionGuidance?: Maybe<Scalars['String']['output']>;
13522
13846
  detail: Scalars['String']['output'];
@@ -13563,6 +13887,12 @@ export declare enum AssetsVerticalRoleAssignmentErrorCode {
13563
13887
  UnexpectedError = "UNEXPECTED_ERROR",
13564
13888
  ValidationFailed = "VALIDATION_FAILED"
13565
13889
  }
13890
+ export declare type AssetsVerticalRoleAssignmentMutationErrorExtension = MutationErrorExtension & {
13891
+ __typename?: 'AssetsVerticalRoleAssignmentMutationErrorExtension';
13892
+ code?: Maybe<AssetsVerticalRoleAssignmentErrorCode>;
13893
+ errorType?: Maybe<Scalars['String']['output']>;
13894
+ statusCode?: Maybe<Scalars['Int']['output']>;
13895
+ };
13566
13896
  export declare enum AssetsVerticalRoleAssignmentOperation {
13567
13897
  Create = "CREATE",
13568
13898
  Delete = "DELETE"
@@ -13626,6 +13956,20 @@ export declare type AssetsVerticalStockroomObjectsInput = {
13626
13956
  workspaceId: Scalars['ID']['input'];
13627
13957
  };
13628
13958
  export declare type AssetsVerticalStockroomObjectsResult = AssetsVerticalStockroomObjects | QueryError;
13959
+ export declare type AssetsVerticalUpdateCustomInsightInput = {
13960
+ category: AssetsVerticalInsightCategory;
13961
+ cloudId: Scalars['ID']['input'];
13962
+ description?: InputMaybe<Scalars['String']['input']>;
13963
+ insightId: Scalars['ID']['input'];
13964
+ name: Scalars['String']['input'];
13965
+ nlQuery: Scalars['String']['input'];
13966
+ };
13967
+ export declare type AssetsVerticalUpdateCustomInsightPayload = Payload & {
13968
+ __typename?: 'AssetsVerticalUpdateCustomInsightPayload';
13969
+ definition?: Maybe<AssetsVerticalCustomInsightDefinition>;
13970
+ errors?: Maybe<Array<MutationError>>;
13971
+ success: Scalars['Boolean']['output'];
13972
+ };
13629
13973
  export declare type AssetsVerticalUpdateDepreciationRuleInput = {
13630
13974
  assetTypes?: InputMaybe<Array<AssetsVerticalDepreciationRuleAssetTypeInput>>;
13631
13975
  cloudId: Scalars['ID']['input'];
@@ -30088,6 +30432,9 @@ export declare type ConfluenceJiraMacroAppLinksScanningStatus = {
30088
30432
  __typename?: 'ConfluenceJiraMacroAppLinksScanningStatus';
30089
30433
  additionalMessage?: Maybe<Scalars['String']['output']>;
30090
30434
  problems?: Maybe<ConfluenceJiraMacroAppLinksValidatorResult>;
30435
+ reportDownloadUrl?: Maybe<Scalars['String']['output']>;
30436
+ reportFileStoreId?: Maybe<Scalars['String']['output']>;
30437
+ startedAtEpochMillis?: Maybe<Scalars['Long']['output']>;
30091
30438
  status: ConfluenceJiraMacroAppLinksValidationStatus;
30092
30439
  };
30093
30440
  export declare enum ConfluenceJiraMacroAppLinksValidationStatus {
@@ -36060,6 +36407,10 @@ export declare type CplsContributionAggregation = {
36060
36407
  totalContributionFormats?: Maybe<CplsValueFormats>;
36061
36408
  totalContributionHours: Scalars['Float']['output'];
36062
36409
  };
36410
+ export declare enum CplsContributionCopyMode {
36411
+ CurrentAndFuture = "CURRENT_AND_FUTURE",
36412
+ None = "NONE"
36413
+ }
36063
36414
  export declare enum CplsContributionValueType {
36064
36415
  Days = "DAYS",
36065
36416
  Hours = "HOURS",
@@ -36141,6 +36492,48 @@ export declare type CplsContributorWorkEdge = {
36141
36492
  isSuggestion?: Maybe<Scalars['Boolean']['output']>;
36142
36493
  node?: Maybe<CplsWorkData>;
36143
36494
  };
36495
+ export declare type CplsCopyContributorToWorksInput = {
36496
+ cloudId: Scalars['ID']['input'];
36497
+ contributionCopyMode: CplsContributionCopyMode;
36498
+ contributorDataId: Scalars['ID']['input'];
36499
+ destinationWorkIds: Array<Scalars['ID']['input']>;
36500
+ scopeId: Scalars['ID']['input'];
36501
+ sourceWorkId: Scalars['ID']['input'];
36502
+ };
36503
+ export declare type CplsCopyContributorToWorksPayload = Payload & {
36504
+ __typename?: 'CplsCopyContributorToWorksPayload';
36505
+ errors?: Maybe<Array<MutationError>>;
36506
+ success: Scalars['Boolean']['output'];
36507
+ workContributorAssociationsByScope?: Maybe<Array<CplsWorkContributorEdge>>;
36508
+ worksByScope?: Maybe<Array<CplsWork>>;
36509
+ };
36510
+ export declare type CplsCopyContributorToWorksPayloadWorkContributorAssociationsByScopeArgs = {
36511
+ scopeId: Scalars['ID']['input'];
36512
+ };
36513
+ export declare type CplsCopyContributorToWorksPayloadWorksByScopeArgs = {
36514
+ scopeId: Scalars['ID']['input'];
36515
+ };
36516
+ export declare type CplsCopyWorkToContributorsInput = {
36517
+ cloudId: Scalars['ID']['input'];
36518
+ contributionCopyMode: CplsContributionCopyMode;
36519
+ destinationContributorDataIds: Array<Scalars['ID']['input']>;
36520
+ scopeId: Scalars['ID']['input'];
36521
+ sourceContributorDataId: Scalars['ID']['input'];
36522
+ workId: Scalars['ID']['input'];
36523
+ };
36524
+ export declare type CplsCopyWorkToContributorsPayload = Payload & {
36525
+ __typename?: 'CplsCopyWorkToContributorsPayload';
36526
+ contributorWorkAssociationsByScope?: Maybe<Array<CplsContributorWorkEdge>>;
36527
+ contributorsByScope?: Maybe<Array<CplsContributor>>;
36528
+ errors?: Maybe<Array<MutationError>>;
36529
+ success: Scalars['Boolean']['output'];
36530
+ };
36531
+ export declare type CplsCopyWorkToContributorsPayloadContributorWorkAssociationsByScopeArgs = {
36532
+ scopeId: Scalars['ID']['input'];
36533
+ };
36534
+ export declare type CplsCopyWorkToContributorsPayloadContributorsByScopeArgs = {
36535
+ scopeId: Scalars['ID']['input'];
36536
+ };
36144
36537
  export declare type CplsCreateCustomContributionTargetInput = {
36145
36538
  cloudId: Scalars['ID']['input'];
36146
36539
  name: Scalars['String']['input'];
@@ -36646,6 +37039,7 @@ export declare type CreateAppDeploymentInput = {
36646
37039
  environmentKey: Scalars['String']['input'];
36647
37040
  hostedResourceUploadId?: InputMaybe<Scalars['ID']['input']>;
36648
37041
  majorVersion?: InputMaybe<Scalars['Int']['input']>;
37042
+ skipRollout?: InputMaybe<Scalars['Boolean']['input']>;
36649
37043
  };
36650
37044
  export declare type CreateAppDeploymentResponse = Payload & {
36651
37045
  __typename?: 'CreateAppDeploymentResponse';
@@ -44066,6 +44460,7 @@ export declare type EcosystemQuery = {
44066
44460
  fortifiedMetrics?: Maybe<FortifiedMetricsQuery>;
44067
44461
  globalInstallationConfig?: Maybe<Array<Maybe<EcosystemGlobalInstallationOverride>>>;
44068
44462
  marketplaceData?: Maybe<EcosystemMarketplaceData>;
44463
+ rollingReleaseEligibility?: Maybe<EcosystemRollingReleaseEligibility>;
44069
44464
  rollingReleases?: Maybe<EcosystemRollingReleaseConnection>;
44070
44465
  siteEntitlements?: Maybe<EcosystemSiteEntitlementsResult>;
44071
44466
  unitsByInstallationId?: Maybe<Array<Maybe<EcosystemAddonInstallationUnit>>>;
@@ -44150,6 +44545,11 @@ export declare type EcosystemQueryMarketplaceDataArgs = {
44150
44545
  appKey?: InputMaybe<Scalars['ID']['input']>;
44151
44546
  cloudAppId?: InputMaybe<Scalars['ID']['input']>;
44152
44547
  };
44548
+ export declare type EcosystemQueryRollingReleaseEligibilityArgs = {
44549
+ appId: Scalars['ID']['input'];
44550
+ environmentId: Scalars['ID']['input'];
44551
+ targetVersionId?: InputMaybe<Scalars['ID']['input']>;
44552
+ };
44153
44553
  export declare type EcosystemQueryRollingReleasesArgs = {
44154
44554
  after?: InputMaybe<Scalars['String']['input']>;
44155
44555
  appId: Scalars['ID']['input'];
@@ -44218,6 +44618,12 @@ export declare type EcosystemRollingReleaseEdge = {
44218
44618
  cursor: Scalars['String']['output'];
44219
44619
  node?: Maybe<EcosystemRollingRelease>;
44220
44620
  };
44621
+ export declare type EcosystemRollingReleaseEligibility = {
44622
+ __typename?: 'EcosystemRollingReleaseEligibility';
44623
+ targetVersionId: Scalars['ID']['output'];
44624
+ totalEligibleInstallationCount: Scalars['Int']['output'];
44625
+ versionEligibilityBreakdown: Array<EcosystemVersionEligibilityBreakdown>;
44626
+ };
44221
44627
  export declare type EcosystemRollingReleasePageInfo = {
44222
44628
  __typename?: 'EcosystemRollingReleasePageInfo';
44223
44629
  endCursor?: Maybe<Scalars['String']['output']>;
@@ -44278,6 +44684,14 @@ export declare type EcosystemUpdateInstallationRemoteRegionResponse = Payload &
44278
44684
  errors?: Maybe<Array<MutationError>>;
44279
44685
  success: Scalars['Boolean']['output'];
44280
44686
  };
44687
+ export declare type EcosystemVersionEligibilityBreakdown = {
44688
+ __typename?: 'EcosystemVersionEligibilityBreakdown';
44689
+ failingEligibilityRules: Array<Scalars['String']['output']>;
44690
+ installationCount: Scalars['Int']['output'];
44691
+ isEligible: Scalars['Boolean']['output'];
44692
+ semVer: Scalars['String']['output'];
44693
+ sourceVersionId: Scalars['ID']['output'];
44694
+ };
44281
44695
  export declare type EditSprintInput = {
44282
44696
  autoManaged?: InputMaybe<AutoManagedSprintSetting>;
44283
44697
  boardId: Scalars['ID']['input'];
@@ -45760,8 +46174,11 @@ export declare type ExternalMessageLink = {
45760
46174
  export declare type ExternalOrganisation = Node & {
45761
46175
  __typename?: 'ExternalOrganisation';
45762
46176
  associatedWith?: Maybe<ExternalAssociationConnection>;
46177
+ container?: Maybe<ExternalEntity>;
46178
+ containerId?: Maybe<Scalars['ID']['output']>;
45763
46179
  createdAt?: Maybe<Scalars['String']['output']>;
45764
46180
  createdBy?: Maybe<ExternalUser>;
46181
+ description?: Maybe<Scalars['String']['output']>;
45765
46182
  displayName?: Maybe<Scalars['String']['output']>;
45766
46183
  entityExtendedValues?: Maybe<Array<Maybe<ExternalEntityExtendedValue>>>;
45767
46184
  externalId?: Maybe<Scalars['String']['output']>;
@@ -113459,14 +113876,20 @@ export declare type JiraBoardView = JiraView & Node & {
113459
113876
  canArchiveIssues?: Maybe<Scalars['Boolean']['output']>;
113460
113877
  canAssignIssues?: Maybe<Scalars['Boolean']['output']>;
113461
113878
  canConfigureStatusColumnMapping?: Maybe<Scalars['Boolean']['output']>;
113879
+ canCreateStatuses?: Maybe<Scalars['Boolean']['output']>;
113880
+ canDeleteStatuses?: Maybe<Scalars['Boolean']['output']>;
113462
113881
  canEditIssues?: Maybe<Scalars['Boolean']['output']>;
113882
+ canInlineCreateStatusColumns?: Maybe<Scalars['Boolean']['output']>;
113883
+ canInlineDeleteStatusColumns?: Maybe<Scalars['Boolean']['output']>;
113463
113884
  canInlineEditStatusColumns?: Maybe<Scalars['Boolean']['output']>;
113464
113885
  canInlineEditTransitionAgents?: Maybe<Scalars['Boolean']['output']>;
113886
+ canInlineRenameStatusColumns?: Maybe<Scalars['Boolean']['output']>;
113465
113887
  canManageSprints?: Maybe<Scalars['Boolean']['output']>;
113466
113888
  canManageStatuses?: Maybe<Scalars['Boolean']['output']>;
113467
113889
  canMoveIssueBetweenSwimlanes?: Maybe<Scalars['Boolean']['output']>;
113468
113890
  canMoveIssuesBetweenSwimlanes?: Maybe<Scalars['Boolean']['output']>;
113469
113891
  canPublishViewConfig?: Maybe<Scalars['Boolean']['output']>;
113892
+ canRenameStatuses?: Maybe<Scalars['Boolean']['output']>;
113470
113893
  canScheduleIssues?: Maybe<Scalars['Boolean']['output']>;
113471
113894
  canTransitionIssues?: Maybe<Scalars['Boolean']['output']>;
113472
113895
  cardOptions?: Maybe<JiraBoardViewCardOptionConnection>;
@@ -113819,6 +114242,7 @@ export declare type JiraBoardViewStatusColumnWorkflowsArgs = {
113819
114242
  };
113820
114243
  export declare type JiraBoardViewStatusColumnMapping = {
113821
114244
  id?: InputMaybe<Scalars['ID']['input']>;
114245
+ maximumIssueCount?: InputMaybe<Scalars['Int']['input']>;
113822
114246
  name: Scalars['String']['input'];
113823
114247
  statusIds: Array<Scalars['ID']['input']>;
113824
114248
  };
@@ -115225,6 +115649,7 @@ export declare type JiraCmdbStatusType = {
115225
115649
  };
115226
115650
  export declare enum JiraCollapsibleSection {
115227
115651
  Activity = "ACTIVITY",
115652
+ AiPanelServicedesk = "AI_PANEL_SERVICEDESK",
115228
115653
  Attachments = "ATTACHMENTS",
115229
115654
  ChildWorkItem = "CHILD_WORK_ITEM",
115230
115655
  Description = "DESCRIPTION",
@@ -125688,6 +126113,7 @@ export declare enum JiraNavigationItemTypeKey {
125688
126113
  Inbox = "INBOX",
125689
126114
  Incidents = "INCIDENTS",
125690
126115
  Issues = "ISSUES",
126116
+ Knowledge = "KNOWLEDGE",
125691
126117
  List = "LIST",
125692
126118
  OnCall = "ON_CALL",
125693
126119
  Pages = "PAGES",
@@ -132838,6 +133264,46 @@ export declare type JiraServiceManagementSentimentFieldPayload = Payload & {
132838
133264
  field?: Maybe<JiraServiceManagementSentimentField>;
132839
133265
  success: Scalars['Boolean']['output'];
132840
133266
  };
133267
+ export declare type JiraServiceManagementSla = {
133268
+ __typename?: 'JiraServiceManagementSla';
133269
+ completedCycles?: Maybe<JiraServiceManagementSlaCompletedCycleConnection>;
133270
+ displayFormat?: Maybe<Scalars['String']['output']>;
133271
+ error?: Maybe<JiraServiceManagementSlaError>;
133272
+ goalView?: Maybe<JiraServiceManagementSlaGoalView>;
133273
+ ongoingCycle?: Maybe<JiraServiceManagementSlaOngoingCycle>;
133274
+ timeMetricId?: Maybe<Scalars['String']['output']>;
133275
+ timeMetricName?: Maybe<Scalars['String']['output']>;
133276
+ timelineEvents?: Maybe<JiraServiceManagementSlaTimelineEventConnection>;
133277
+ };
133278
+ export declare type JiraServiceManagementSlaCompletedCyclesArgs = {
133279
+ after?: InputMaybe<Scalars['String']['input']>;
133280
+ first?: InputMaybe<Scalars['Int']['input']>;
133281
+ };
133282
+ export declare type JiraServiceManagementSlaTimelineEventsArgs = {
133283
+ after?: InputMaybe<Scalars['String']['input']>;
133284
+ first?: InputMaybe<Scalars['Int']['input']>;
133285
+ };
133286
+ export declare type JiraServiceManagementSlaCalendar = {
133287
+ __typename?: 'JiraServiceManagementSlaCalendar';
133288
+ calendarId?: Maybe<Scalars['String']['output']>;
133289
+ holidays?: Maybe<JiraServiceManagementSlaHolidayConnection>;
133290
+ kind?: Maybe<JiraServiceManagementSlaCalendarKind>;
133291
+ name?: Maybe<Scalars['String']['output']>;
133292
+ timezone?: Maybe<Scalars['String']['output']>;
133293
+ workingTimes?: Maybe<JiraServiceManagementSlaWorkingTimeConnection>;
133294
+ };
133295
+ export declare type JiraServiceManagementSlaCalendarHolidaysArgs = {
133296
+ after?: InputMaybe<Scalars['String']['input']>;
133297
+ first?: InputMaybe<Scalars['Int']['input']>;
133298
+ };
133299
+ export declare type JiraServiceManagementSlaCalendarWorkingTimesArgs = {
133300
+ after?: InputMaybe<Scalars['String']['input']>;
133301
+ first?: InputMaybe<Scalars['Int']['input']>;
133302
+ };
133303
+ export declare enum JiraServiceManagementSlaCalendarKind {
133304
+ Custom = "CUSTOM",
133305
+ Standard = "STANDARD"
133306
+ }
132841
133307
  export declare type JiraServiceManagementSlaCompleteGoal = {
132842
133308
  __typename?: 'JiraServiceManagementSlaCompleteGoal';
132843
133309
  breachTime?: Maybe<Scalars['String']['output']>;
@@ -132847,6 +133313,76 @@ export declare type JiraServiceManagementSlaCompleteGoal = {
132847
133313
  startTime?: Maybe<Scalars['String']['output']>;
132848
133314
  stopTime?: Maybe<Scalars['String']['output']>;
132849
133315
  };
133316
+ export declare type JiraServiceManagementSlaCompletedCycle = {
133317
+ __typename?: 'JiraServiceManagementSlaCompletedCycle';
133318
+ breachTime?: Maybe<Scalars['DateTime']['output']>;
133319
+ breached?: Maybe<Scalars['Boolean']['output']>;
133320
+ calendarName?: Maybe<Scalars['String']['output']>;
133321
+ elapsed?: Maybe<Scalars['String']['output']>;
133322
+ goalDuration?: Maybe<Scalars['String']['output']>;
133323
+ remaining?: Maybe<Scalars['String']['output']>;
133324
+ startTime?: Maybe<Scalars['DateTime']['output']>;
133325
+ stopTime?: Maybe<Scalars['DateTime']['output']>;
133326
+ };
133327
+ export declare type JiraServiceManagementSlaCompletedCycleConnection = {
133328
+ __typename?: 'JiraServiceManagementSlaCompletedCycleConnection';
133329
+ edges?: Maybe<Array<Maybe<JiraServiceManagementSlaCompletedCycleEdge>>>;
133330
+ pageInfo: PageInfo;
133331
+ totalCount?: Maybe<Scalars['Int']['output']>;
133332
+ };
133333
+ export declare type JiraServiceManagementSlaCompletedCycleEdge = {
133334
+ __typename?: 'JiraServiceManagementSlaCompletedCycleEdge';
133335
+ cursor?: Maybe<Scalars['String']['output']>;
133336
+ node?: Maybe<JiraServiceManagementSlaCompletedCycle>;
133337
+ };
133338
+ export declare enum JiraServiceManagementSlaDayOfWeek {
133339
+ Friday = "FRIDAY",
133340
+ Monday = "MONDAY",
133341
+ Saturday = "SATURDAY",
133342
+ Sunday = "SUNDAY",
133343
+ Thursday = "THURSDAY",
133344
+ Tuesday = "TUESDAY",
133345
+ Wednesday = "WEDNESDAY"
133346
+ }
133347
+ export declare enum JiraServiceManagementSlaEmergencyLevel {
133348
+ Breached = "BREACHED",
133349
+ Important = "IMPORTANT",
133350
+ Urgent = "URGENT"
133351
+ }
133352
+ export declare type JiraServiceManagementSlaError = {
133353
+ __typename?: 'JiraServiceManagementSlaError';
133354
+ errorCode?: Maybe<JiraServiceManagementSlaErrorCode>;
133355
+ goalId?: Maybe<Scalars['String']['output']>;
133356
+ timeMetricId?: Maybe<Scalars['String']['output']>;
133357
+ };
133358
+ export declare enum JiraServiceManagementSlaErrorCode {
133359
+ GoalNotFound = "GOAL_NOT_FOUND",
133360
+ TimeMetricsNotFound = "TIME_METRICS_NOT_FOUND",
133361
+ Unrecognized = "UNRECOGNIZED"
133362
+ }
133363
+ export declare type JiraServiceManagementSlaField = JiraIssueField & JiraIssueFieldConfiguration & JiraListRowField & Node & {
133364
+ __typename?: 'JiraServiceManagementSlaField';
133365
+ aliasFieldId?: Maybe<Scalars['ID']['output']>;
133366
+ description?: Maybe<Scalars['String']['output']>;
133367
+ fieldConfig?: Maybe<JiraFieldConfig>;
133368
+ fieldId: Scalars['String']['output'];
133369
+ fieldOperations?: Maybe<JiraFieldOperation>;
133370
+ hasValue?: Maybe<Scalars['Boolean']['output']>;
133371
+ id: Scalars['ID']['output'];
133372
+ isEditableInIssueTransition?: Maybe<Scalars['Boolean']['output']>;
133373
+ isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
133374
+ isSearchableInJql?: Maybe<Scalars['Boolean']['output']>;
133375
+ issue?: Maybe<JiraIssue>;
133376
+ name: Scalars['String']['output'];
133377
+ sla?: Maybe<JiraServiceManagementSla>;
133378
+ type: Scalars['String']['output'];
133379
+ };
133380
+ export declare type JiraServiceManagementSlaGoal = {
133381
+ __typename?: 'JiraServiceManagementSlaGoal';
133382
+ calendar?: Maybe<JiraServiceManagementSlaCalendar>;
133383
+ duration?: Maybe<Scalars['String']['output']>;
133384
+ goalId?: Maybe<Scalars['String']['output']>;
133385
+ };
132850
133386
  export declare type JiraServiceManagementSlaGoalDetailedView = {
132851
133387
  __typename?: 'JiraServiceManagementSlaGoalDetailedView';
132852
133388
  active?: Maybe<Scalars['Boolean']['output']>;
@@ -132869,6 +133405,33 @@ export declare type JiraServiceManagementSlaGoalDetailedView = {
132869
133405
  startTime?: Maybe<Scalars['String']['output']>;
132870
133406
  stopTime?: Maybe<Scalars['String']['output']>;
132871
133407
  };
133408
+ export declare type JiraServiceManagementSlaGoalView = {
133409
+ __typename?: 'JiraServiceManagementSlaGoalView';
133410
+ active?: Maybe<Scalars['Boolean']['output']>;
133411
+ calculatedAt?: Maybe<Scalars['String']['output']>;
133412
+ closed?: Maybe<Scalars['Boolean']['output']>;
133413
+ emergencyLevel?: Maybe<JiraServiceManagementSlaEmergencyLevel>;
133414
+ failed?: Maybe<Scalars['Boolean']['output']>;
133415
+ paused?: Maybe<Scalars['Boolean']['output']>;
133416
+ remainingTime?: Maybe<Scalars['String']['output']>;
133417
+ };
133418
+ export declare type JiraServiceManagementSlaHoliday = {
133419
+ __typename?: 'JiraServiceManagementSlaHoliday';
133420
+ date?: Maybe<Scalars['DateTime']['output']>;
133421
+ holidayId?: Maybe<Scalars['String']['output']>;
133422
+ recurring?: Maybe<Scalars['Boolean']['output']>;
133423
+ };
133424
+ export declare type JiraServiceManagementSlaHolidayConnection = {
133425
+ __typename?: 'JiraServiceManagementSlaHolidayConnection';
133426
+ edges?: Maybe<Array<Maybe<JiraServiceManagementSlaHolidayEdge>>>;
133427
+ pageInfo: PageInfo;
133428
+ totalCount?: Maybe<Scalars['Int']['output']>;
133429
+ };
133430
+ export declare type JiraServiceManagementSlaHolidayEdge = {
133431
+ __typename?: 'JiraServiceManagementSlaHolidayEdge';
133432
+ cursor?: Maybe<Scalars['String']['output']>;
133433
+ node?: Maybe<JiraServiceManagementSlaHoliday>;
133434
+ };
132872
133435
  export declare type JiraServiceManagementSlaIssue = {
132873
133436
  __typename?: 'JiraServiceManagementSlaIssue';
132874
133437
  goalViews?: Maybe<Array<JiraServiceManagementSlaGoalDetailedView>>;
@@ -132879,6 +133442,69 @@ export declare type JiraServiceManagementSlaIssueResult = {
132879
133442
  errors?: Maybe<Array<QueryError>>;
132880
133443
  slaIssue?: Maybe<JiraServiceManagementSlaIssue>;
132881
133444
  };
133445
+ export declare type JiraServiceManagementSlaOngoingCycle = {
133446
+ __typename?: 'JiraServiceManagementSlaOngoingCycle';
133447
+ goal?: Maybe<JiraServiceManagementSlaGoal>;
133448
+ paused?: Maybe<Scalars['Boolean']['output']>;
133449
+ startTime?: Maybe<Scalars['DateTime']['output']>;
133450
+ };
133451
+ export declare type JiraServiceManagementSlaTimelineEvent = {
133452
+ __typename?: 'JiraServiceManagementSlaTimelineEvent';
133453
+ datetime?: Maybe<Scalars['DateTime']['output']>;
133454
+ types?: Maybe<JiraServiceManagementSlaTimelineEventTypeConnection>;
133455
+ };
133456
+ export declare type JiraServiceManagementSlaTimelineEventTypesArgs = {
133457
+ after?: InputMaybe<Scalars['String']['input']>;
133458
+ first?: InputMaybe<Scalars['Int']['input']>;
133459
+ };
133460
+ export declare type JiraServiceManagementSlaTimelineEventConnection = {
133461
+ __typename?: 'JiraServiceManagementSlaTimelineEventConnection';
133462
+ edges?: Maybe<Array<Maybe<JiraServiceManagementSlaTimelineEventEdge>>>;
133463
+ pageInfo: PageInfo;
133464
+ totalCount?: Maybe<Scalars['Int']['output']>;
133465
+ };
133466
+ export declare type JiraServiceManagementSlaTimelineEventEdge = {
133467
+ __typename?: 'JiraServiceManagementSlaTimelineEventEdge';
133468
+ cursor?: Maybe<Scalars['String']['output']>;
133469
+ node?: Maybe<JiraServiceManagementSlaTimelineEvent>;
133470
+ };
133471
+ export declare enum JiraServiceManagementSlaTimelineEventType {
133472
+ Pause = "PAUSE",
133473
+ Restart = "RESTART",
133474
+ Start = "START",
133475
+ Stop = "STOP",
133476
+ Unpause = "UNPAUSE",
133477
+ Unrecognized = "UNRECOGNIZED"
133478
+ }
133479
+ export declare type JiraServiceManagementSlaTimelineEventTypeConnection = {
133480
+ __typename?: 'JiraServiceManagementSlaTimelineEventTypeConnection';
133481
+ edges?: Maybe<Array<Maybe<JiraServiceManagementSlaTimelineEventTypeEdge>>>;
133482
+ pageInfo: PageInfo;
133483
+ totalCount?: Maybe<Scalars['Int']['output']>;
133484
+ };
133485
+ export declare type JiraServiceManagementSlaTimelineEventTypeEdge = {
133486
+ __typename?: 'JiraServiceManagementSlaTimelineEventTypeEdge';
133487
+ cursor?: Maybe<Scalars['String']['output']>;
133488
+ node?: Maybe<JiraServiceManagementSlaTimelineEventType>;
133489
+ };
133490
+ export declare type JiraServiceManagementSlaWorkingTime = {
133491
+ __typename?: 'JiraServiceManagementSlaWorkingTime';
133492
+ end?: Maybe<Scalars['DateTime']['output']>;
133493
+ start?: Maybe<Scalars['DateTime']['output']>;
133494
+ weekday?: Maybe<JiraServiceManagementSlaDayOfWeek>;
133495
+ workingTimeId?: Maybe<Scalars['String']['output']>;
133496
+ };
133497
+ export declare type JiraServiceManagementSlaWorkingTimeConnection = {
133498
+ __typename?: 'JiraServiceManagementSlaWorkingTimeConnection';
133499
+ edges?: Maybe<Array<Maybe<JiraServiceManagementSlaWorkingTimeEdge>>>;
133500
+ pageInfo: PageInfo;
133501
+ totalCount?: Maybe<Scalars['Int']['output']>;
133502
+ };
133503
+ export declare type JiraServiceManagementSlaWorkingTimeEdge = {
133504
+ __typename?: 'JiraServiceManagementSlaWorkingTimeEdge';
133505
+ cursor?: Maybe<Scalars['String']['output']>;
133506
+ node?: Maybe<JiraServiceManagementSlaWorkingTime>;
133507
+ };
132882
133508
  export declare type JiraServiceManagementTeamResponder = {
132883
133509
  __typename?: 'JiraServiceManagementTeamResponder';
132884
133510
  teamId?: Maybe<Scalars['String']['output']>;
@@ -133120,7 +133746,7 @@ export declare type JiraSetBoardViewStatusColumnIssueCountLimitInput = {
133120
133746
  maximumIssueCount?: InputMaybe<Scalars['Int']['input']>;
133121
133747
  settings?: InputMaybe<JiraBoardViewSettings>;
133122
133748
  };
133123
- export declare type JiraSetBoardViewStatusColumnIssueCountLimitPayload = {
133749
+ export declare type JiraSetBoardViewStatusColumnIssueCountLimitPayload = Payload & {
133124
133750
  __typename?: 'JiraSetBoardViewStatusColumnIssueCountLimitPayload';
133125
133751
  boardView?: Maybe<JiraBoardView>;
133126
133752
  column?: Maybe<JiraBoardViewStatusColumn>;
@@ -138286,7 +138912,9 @@ export declare type JpdViewsServiceTimelineConfigInput2 = {
138286
138912
  };
138287
138913
  export declare enum JpdViewsServiceTimelineMode {
138288
138914
  Months = "MONTHS",
138289
- Quarters = "QUARTERS"
138915
+ Quarters = "QUARTERS",
138916
+ Weeks = "WEEKS",
138917
+ Years = "YEARS"
138290
138918
  }
138291
138919
  export declare enum JpdViewsServiceTodayMarker {
138292
138920
  Disabled = "DISABLED",
@@ -138457,6 +139085,7 @@ export declare type JsmChannelsConditionNode = JsmChannelsPlanNode & {
138457
139085
  };
138458
139086
  export declare enum JsmChannelsConnectionType {
138459
139087
  Identitynow = "IDENTITYNOW",
139088
+ Intune = "INTUNE",
138460
139089
  Okta = "OKTA"
138461
139090
  }
138462
139091
  export declare type JsmChannelsConversationsByContainerAriResult = JsmChannelsOrchestratorConversationsConnection | QueryError;
@@ -138558,6 +139187,12 @@ export declare type JsmChannelsJqlEnablementRuleInput = {
138558
139187
  name?: InputMaybe<Scalars['String']['input']>;
138559
139188
  priority: Scalars['Int']['input'];
138560
139189
  };
139190
+ export declare type JsmChannelsMsIntuneTaskAgentConfiguration = {
139191
+ __typename?: 'JsmChannelsMsIntuneTaskAgentConfiguration';
139192
+ accountId: Scalars['String']['output'];
139193
+ serviceKey: Scalars['String']['output'];
139194
+ tenantId: Scalars['String']['output'];
139195
+ };
138561
139196
  export declare type JsmChannelsOktaTaskAgentConfiguration = {
138562
139197
  __typename?: 'JsmChannelsOktaTaskAgentConfiguration';
138563
139198
  accountId: Scalars['String']['output'];
@@ -138812,7 +139447,7 @@ export declare type JsmChannelsTaskAgent = {
138812
139447
  displayName: Scalars['String']['output'];
138813
139448
  status: JsmChannelsTaskAgentStatus;
138814
139449
  };
138815
- export declare type JsmChannelsTaskAgentConfigurationDetails = JsmChannelsIdentityNowTaskAgentConfiguration | JsmChannelsOktaTaskAgentConfiguration;
139450
+ export declare type JsmChannelsTaskAgentConfigurationDetails = JsmChannelsIdentityNowTaskAgentConfiguration | JsmChannelsMsIntuneTaskAgentConfiguration | JsmChannelsOktaTaskAgentConfiguration;
138816
139451
  export declare type JsmChannelsTaskAgentConfigurationInput = {
138817
139452
  configuration?: InputMaybe<Scalars['JSON']['input']>;
138818
139453
  status: JsmChannelsTaskAgentStatus;
@@ -139556,6 +140191,10 @@ export declare enum JsmConversationStatus {
139556
140191
  Unassigned = "UNASSIGNED"
139557
140192
  }
139558
140193
  export declare type JsmConversationUpdate = JsmConversation | JsmConversationClaimedConversationMessage | QueryError;
140194
+ export declare type JsmSolutionComposerFollowupTask = {
140195
+ __typename?: 'JsmSolutionComposerFollowupTask';
140196
+ taskType: Scalars['String']['output'];
140197
+ };
139559
140198
  export declare type JsmSolutionComposerPlanQueryApi = {
139560
140199
  __typename?: 'JsmSolutionComposerPlanQueryApi';
139561
140200
  jsmSolutionComposerPlanStatus?: Maybe<JsmSolutionComposerPlanStatusResult>;
@@ -139569,6 +140208,7 @@ export declare type JsmSolutionComposerPlanStatusMetadata = {
139569
140208
  };
139570
140209
  export declare type JsmSolutionComposerPlanStatusResponse = {
139571
140210
  __typename?: 'JsmSolutionComposerPlanStatusResponse';
140211
+ followupTasks?: Maybe<Array<Maybe<JsmSolutionComposerFollowupTask>>>;
139572
140212
  id: Scalars['ID']['output'];
139573
140213
  metadata?: Maybe<JsmSolutionComposerPlanStatusMetadata>;
139574
140214
  projectAri: Scalars['ID']['output'];
@@ -140245,7 +140885,8 @@ export declare enum KitsuneJobType {
140245
140885
  ImportFeedback = "IMPORT_FEEDBACK",
140246
140886
  ImportOrganization = "IMPORT_ORGANIZATION",
140247
140887
  ResyncFeedback = "RESYNC_FEEDBACK",
140248
- SyncCsmProperties = "SYNC_CSM_PROPERTIES"
140888
+ SyncCsmProperties = "SYNC_CSM_PROPERTIES",
140889
+ SyncCustomer = "SYNC_CUSTOMER"
140249
140890
  }
140250
140891
  export declare enum KitsuneLogicalOperator {
140251
140892
  And = "AND",
@@ -140351,6 +140992,7 @@ export declare type KitsuneSnippetConnection = KitsuneConnection & {
140351
140992
  __typename?: 'KitsuneSnippetConnection';
140352
140993
  edges: Array<KitsuneSnippetEdge>;
140353
140994
  pageInfo: PageInfo;
140995
+ totalCount?: Maybe<Scalars['Int']['output']>;
140354
140996
  };
140355
140997
  export declare type KitsuneSnippetEdge = KitsuneEdge & {
140356
140998
  __typename?: 'KitsuneSnippetEdge';
@@ -141710,6 +142352,7 @@ export declare type KnowledgeDiscoveryQueryApiSearchUsersV2Args = {
141710
142352
  };
141711
142353
  export declare type KnowledgeDiscoveryQueryApiSingleUserArgs = {
141712
142354
  accountId: Scalars['String']['input'];
142355
+ orgId?: InputMaybe<Scalars['String']['input']>;
141713
142356
  requestingUserId: Scalars['String']['input'];
141714
142357
  tenantId: Scalars['String']['input'];
141715
142358
  };
@@ -141997,6 +142640,7 @@ export declare type KnowledgeDiscoveryUserManager = {
141997
142640
  __typename?: 'KnowledgeDiscoveryUserManager';
141998
142641
  id?: Maybe<Scalars['String']['output']>;
141999
142642
  jobTitle?: Maybe<Scalars['String']['output']>;
142643
+ name?: Maybe<Scalars['String']['output']>;
142000
142644
  picture?: Maybe<Scalars['String']['output']>;
142001
142645
  };
142002
142646
  export declare type KnowledgeDiscoveryUserProfile = {
@@ -142525,6 +143169,10 @@ export declare type LoomAcceptOrganizationInvitation = {
142525
143169
  redirectUri?: Maybe<Scalars['String']['output']>;
142526
143170
  success: Scalars['String']['output'];
142527
143171
  };
143172
+ export declare type LoomAgentBrief = {
143173
+ __typename?: 'LoomAgentBrief';
143174
+ structuredOutput?: Maybe<Scalars['String']['output']>;
143175
+ };
142528
143176
  export declare enum LoomCalendarIntegrationType {
142529
143177
  GoogleCalendar = "GOOGLE_CALENDAR",
142530
143178
  MicrosoftOutlook = "MICROSOFT_OUTLOOK"
@@ -142821,6 +143469,7 @@ export declare type LoomValidateSlackUserIds = {
142821
143469
  };
142822
143470
  export declare type LoomVideo = Node & {
142823
143471
  __typename?: 'LoomVideo';
143472
+ agentBriefs?: Maybe<Array<Maybe<LoomAgentBrief>>>;
142824
143473
  collaborators?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
142825
143474
  commentCount?: Maybe<Scalars['Int']['output']>;
142826
143475
  comments?: Maybe<LoomCommentConnection>;
@@ -146127,6 +146776,7 @@ export declare type MarketplaceStoreInstallAppInput = {
146127
146776
  export declare type MarketplaceStoreInstallAppResponse = {
146128
146777
  __typename?: 'MarketplaceStoreInstallAppResponse';
146129
146778
  id: Scalars['ID']['output'];
146779
+ isGlobalAppInstall?: Maybe<Scalars['Boolean']['output']>;
146130
146780
  isUpmInstall?: Maybe<Scalars['Boolean']['output']>;
146131
146781
  orderId?: Maybe<Scalars['ID']['output']>;
146132
146782
  status: MarketplaceStoreInstallAppStatus;
@@ -146142,8 +146792,13 @@ export declare enum MarketplaceStoreInstallAppStatus {
146142
146792
  }
146143
146793
  export declare type MarketplaceStoreInstallAppTargetInput = {
146144
146794
  cloudId: Scalars['ID']['input'];
146145
- product: MarketplaceStoreInstallationTargetProduct;
146795
+ installationTarget?: InputMaybe<MarketplaceStoreInstallationTarget>;
146796
+ product?: InputMaybe<MarketplaceStoreInstallationTargetProduct>;
146146
146797
  };
146798
+ export declare enum MarketplaceStoreInstallationTarget {
146799
+ Site = "SITE",
146800
+ Unit = "UNIT"
146801
+ }
146147
146802
  export declare enum MarketplaceStoreInstallationTargetProduct {
146148
146803
  Bitbucket = "BITBUCKET",
146149
146804
  Compass = "COMPASS",
@@ -146783,6 +147438,7 @@ export declare type MarketplaceStoreQueryApiHostStatusArgs = {
146783
147438
  };
146784
147439
  export declare type MarketplaceStoreQueryApiInstallAppStatusArgs = {
146785
147440
  id: Scalars['ID']['input'];
147441
+ isGlobalAppInstall?: InputMaybe<Scalars['Boolean']['input']>;
146786
147442
  isUpmInstall?: InputMaybe<Scalars['Boolean']['input']>;
146787
147443
  orderId?: InputMaybe<Scalars['ID']['input']>;
146788
147444
  target?: InputMaybe<MarketplaceStoreInstallAppTargetInput>;
@@ -155019,16 +155675,17 @@ export declare type Mutation = {
155019
155675
  agentWorkspace_createDraftedRoutingTable?: Maybe<AgentWorkspaceCreateDraftedRoutingTablePayload>;
155020
155676
  agentWorkspace_createSchedule?: Maybe<AgentWorkspaceCreateSchedulePayload>;
155021
155677
  agentWorkspace_createSkill?: Maybe<AgentWorkspaceSkillCreatePayload>;
155022
- agentWorkspace_deleteCoverShift?: Maybe<AgentWorkspaceDeleteShiftPayload>;
155678
+ agentWorkspace_deleteCoverShift?: Maybe<AgentWorkspaceDeleteCoverShiftPayload>;
155023
155679
  agentWorkspace_deleteSchedule?: Maybe<AgentWorkspaceDeleteSchedulePayload>;
155024
155680
  agentWorkspace_deleteShift?: Maybe<AgentWorkspaceDeleteShiftPayload>;
155025
155681
  agentWorkspace_discardDraftedRoutingTable?: Maybe<AgentWorkspaceDiscardDraftedRoutingTablePayload>;
155026
- agentWorkspace_editCoverShift?: Maybe<AgentWorkspaceEditShiftPayload>;
155682
+ agentWorkspace_editCoverShift?: Maybe<AgentWorkspaceEditCoverShiftPayload>;
155027
155683
  agentWorkspace_editShift?: Maybe<AgentWorkspaceEditShiftPayload>;
155028
155684
  agentWorkspace_endBreak?: Maybe<AgentWorkspaceAgentAvailability>;
155029
155685
  agentWorkspace_restoreSkill?: Maybe<AgentWorkspaceRestoreSkillPayload>;
155030
155686
  agentWorkspace_setAvailabilityStatus?: Maybe<AgentWorkspaceAvailabilityStatusPayload>;
155031
155687
  agentWorkspace_setDefaultCapacity?: Maybe<AgentWorkspaceSetDefaultCapacityPayload>;
155688
+ agentWorkspace_setDraftedRoutingTableServiceField?: Maybe<AgentWorkspaceSetDraftedRoutingTableServiceFieldPayload>;
155032
155689
  agentWorkspace_setProjectDefaultAvailability?: Maybe<AgentWorkspaceProjectDefaultAvailabilityPayload>;
155033
155690
  agentWorkspace_setTeamCapacities?: Maybe<AgentWorkspaceSetTeamCapacitiesPayload>;
155034
155691
  agentWorkspace_startBreak?: Maybe<AgentWorkspaceAgentAvailability>;
@@ -155048,6 +155705,7 @@ export declare type Mutation = {
155048
155705
  aiManagedObject_deleteAiManagedObject?: Maybe<Scalars['Boolean']['output']>;
155049
155706
  aiManagedObject_updateAiManagedObject?: Maybe<AiManagedObject>;
155050
155707
  aiops_createInvestigation?: Maybe<AiOpsCreateInvestigationPayload>;
155708
+ aiops_reviewRootCause?: Maybe<AiOpsReviewRootCausePayload>;
155051
155709
  aiops_triggerInvestigation?: Maybe<AiOpsCreateInvestigationPayload>;
155052
155710
  appRecommendations?: Maybe<AppRecMutation>;
155053
155711
  appStorage?: Maybe<AppStorageMutation>;
@@ -155120,17 +155778,22 @@ export declare type Mutation = {
155120
155778
  assetsDM_updateDefaultCleansingRule?: Maybe<AssetsDmUpdateDefaultCleansingRuleResponse>;
155121
155779
  assetsVertical_archiveInsight?: Maybe<AssetsVerticalArchiveInsightPayload>;
155122
155780
  assetsVertical_createAssetTypesTrackings?: Maybe<AssetsVerticalAssetTypesTrackingsPayload>;
155781
+ assetsVertical_createCustomInsight?: Maybe<AssetsVerticalCreateCustomInsightPayload>;
155123
155782
  assetsVertical_createDepreciationRule?: Maybe<AssetsVerticalDepreciationRulePayload>;
155124
155783
  assetsVertical_createItemMappings?: Maybe<AssetsVerticalItemMappingsPayload>;
155125
155784
  assetsVertical_createRoleAssignments?: Maybe<AssetsVerticalRoleAssignmentsMutationPayload>;
155126
155785
  assetsVertical_createVerticalInstantiation?: Maybe<AssetsVerticalVerticalInstantiationPayload>;
155127
155786
  assetsVertical_createVerticalInstantiationCategory?: Maybe<AssetsVerticalVerticalInstantiationCategoryPayload>;
155128
155787
  assetsVertical_deleteAssetTypesTracking?: Maybe<AssetsVerticalAssetTypesTrackingPayload>;
155788
+ assetsVertical_deleteCustomInsight?: Maybe<AssetsVerticalDeleteCustomInsightPayload>;
155129
155789
  assetsVertical_deleteDepreciationRule?: Maybe<AssetsVerticalDepreciationRulePayload>;
155130
155790
  assetsVertical_deleteItemMapping?: Maybe<AssetsVerticalItemMappingPayload>;
155131
155791
  assetsVertical_deleteRoleAssignments?: Maybe<AssetsVerticalRoleAssignmentsMutationPayload>;
155792
+ assetsVertical_enableCustomInsight?: Maybe<AssetsVerticalEnableCustomInsightPayload>;
155793
+ assetsVertical_generateCustomInsight?: Maybe<AssetsVerticalGenerateCustomInsightPayload>;
155132
155794
  assetsVertical_generateInsights?: Maybe<AssetsVerticalGenerateInsightsPayload>;
155133
155795
  assetsVertical_instantiateBundleByType?: Maybe<AssetsVerticalAsyncTaskPayload>;
155796
+ assetsVertical_updateCustomInsight?: Maybe<AssetsVerticalUpdateCustomInsightPayload>;
155134
155797
  assetsVertical_updateDepreciationRule?: Maybe<AssetsVerticalDepreciationRulePayload>;
155135
155798
  assetsVertical_updateRoleAssignments?: Maybe<AssetsVerticalRoleAssignmentsMutationPayload>;
155136
155799
  assetsVertical_updateVerticalInstantiation?: Maybe<AssetsVerticalVerticalInstantiationPayload>;
@@ -155389,6 +156052,8 @@ export declare type Mutation = {
155389
156052
  cpls_addContributorScopeAssociation?: Maybe<CplsAddContributorScopeAssociationPayload>;
155390
156053
  cpls_addContributorWorkAssociation?: Maybe<CplsAddContributorWorkAssociationPayload>;
155391
156054
  cpls_addWorkScopeAssociations?: Maybe<CplsAddWorkScopeAssociationsPayload>;
156055
+ cpls_copyContributorToWorks?: Maybe<CplsCopyContributorToWorksPayload>;
156056
+ cpls_copyWorkToContributors?: Maybe<CplsCopyWorkToContributorsPayload>;
155392
156057
  cpls_createCustomContributionTarget?: Maybe<CplsCreateCustomContributionTargetPayload>;
155393
156058
  cpls_createCustomContributionTargetWithWorkAssociation?: Maybe<CplsCreateCustomContributionTargetWithWorkAssociationPayload>;
155394
156059
  cpls_createSuggestions?: Maybe<CplsCreateSuggestionsPayload>;
@@ -155631,13 +156296,16 @@ export declare type Mutation = {
155631
156296
  goals_removeTextCustomFieldValue?: Maybe<TownsquareGoalsRemoveTextCustomFieldValuePayload>;
155632
156297
  goals_removeUserCustomFieldValue?: Maybe<TownsquareGoalsRemoveUserCustomFieldValuePayload>;
155633
156298
  goals_removeWatchers?: Maybe<TownsquareGoalsRemoveWatchersPayload>;
156299
+ goals_restoreGoals?: Maybe<TownsquareGoalsRestoreGoalsPayload>;
155634
156300
  goals_revokeAccess?: Maybe<TownsquareGoalRevokeAccessPayload>;
156301
+ goals_setParentGoal?: Maybe<TownsquareGoalsSetParentGoalPayload>;
155635
156302
  goals_setRollupProgress?: Maybe<TownsquareGoalsSetRollupProgressPayload>;
155636
156303
  goals_setUserWatchingTeam?: Maybe<TownsquareGoalsSetUserWatchingTeamPayload>;
155637
156304
  goals_setWatchingGoal?: Maybe<TownsquareGoalsSetWatchingGoalPayload>;
155638
156305
  goals_setWatchingTeam?: Maybe<TownsquareGoalsSetWatchingTeamPayload>;
155639
156306
  goals_shareGoal?: Maybe<TownsquareGoalsShareGoalPayload>;
155640
156307
  goals_shareUpdate?: Maybe<TownsquareGoalsShareUpdatePayload>;
156308
+ goals_softDeleteGoals?: Maybe<TownsquareGoalsSoftDeleteGoalsPayload>;
155641
156309
  goals_unlinkJiraAlignProject?: Maybe<TownsquareGoalsUnlinkJiraAlignProjectPayload>;
155642
156310
  goals_unlinkWorkItem?: Maybe<TownsquareGoalsUnlinkWorkItemPayload>;
155643
156311
  goals_updateAppPermissionPolicies?: Maybe<TownsquareUpdateGoalsAppPermissionPoliciesPayload>;
@@ -155875,6 +156543,7 @@ export declare type Mutation = {
155875
156543
  kitsune_resyncFeedback?: Maybe<KitsuneJob>;
155876
156544
  kitsune_syncCsmProperties?: Maybe<KitsuneJob>;
155877
156545
  kitsune_syncCustomerFields?: Maybe<KitsuneJob>;
156546
+ kitsune_syncCustomers?: Maybe<KitsuneJob>;
155878
156547
  kitsune_updateCustomer?: Maybe<KitsuneCustomer>;
155879
156548
  kitsune_updateFeedback?: Maybe<KitsuneFeedback>;
155880
156549
  kitsune_updateField?: Maybe<KitsuneField>;
@@ -156650,6 +157319,9 @@ export declare type MutationAgentWorkspace_SetAvailabilityStatusArgs = {
156650
157319
  export declare type MutationAgentWorkspace_SetDefaultCapacityArgs = {
156651
157320
  input: AgentWorkspaceSetDefaultCapacityInput;
156652
157321
  };
157322
+ export declare type MutationAgentWorkspace_SetDraftedRoutingTableServiceFieldArgs = {
157323
+ input: AgentWorkspaceSetDraftedRoutingTableServiceFieldInput;
157324
+ };
156653
157325
  export declare type MutationAgentWorkspace_SetProjectDefaultAvailabilityArgs = {
156654
157326
  input: AgentWorkspaceSetProjectDefaultAvailabilityInput;
156655
157327
  };
@@ -156711,6 +157383,10 @@ export declare type MutationAiManagedObject_UpdateAiManagedObjectArgs = {
156711
157383
  export declare type MutationAiops_CreateInvestigationArgs = {
156712
157384
  input: AiOpsCreateInvestigationInput;
156713
157385
  };
157386
+ export declare type MutationAiops_ReviewRootCauseArgs = {
157387
+ cloudId: Scalars['ID']['input'];
157388
+ input: AiOpsReviewRootCauseInput;
157389
+ };
156714
157390
  export declare type MutationAiops_TriggerInvestigationArgs = {
156715
157391
  cloudId: Scalars['ID']['input'];
156716
157392
  input: AiOpsTriggerInvestigationInput;
@@ -157053,6 +157729,9 @@ export declare type MutationAssetsVertical_ArchiveInsightArgs = {
157053
157729
  export declare type MutationAssetsVertical_CreateAssetTypesTrackingsArgs = {
157054
157730
  input: AssetsVerticalCreateAssetTypesTrackingsInput;
157055
157731
  };
157732
+ export declare type MutationAssetsVertical_CreateCustomInsightArgs = {
157733
+ input: AssetsVerticalCreateCustomInsightInput;
157734
+ };
157056
157735
  export declare type MutationAssetsVertical_CreateDepreciationRuleArgs = {
157057
157736
  input: AssetsVerticalCreateDepreciationRuleInput;
157058
157737
  };
@@ -157071,6 +157750,9 @@ export declare type MutationAssetsVertical_CreateVerticalInstantiationCategoryAr
157071
157750
  export declare type MutationAssetsVertical_DeleteAssetTypesTrackingArgs = {
157072
157751
  input: AssetsVerticalDeleteAssetTypesTrackingInput;
157073
157752
  };
157753
+ export declare type MutationAssetsVertical_DeleteCustomInsightArgs = {
157754
+ input: AssetsVerticalDeleteCustomInsightInput;
157755
+ };
157074
157756
  export declare type MutationAssetsVertical_DeleteDepreciationRuleArgs = {
157075
157757
  input: AssetsVerticalDeleteDepreciationRuleInput;
157076
157758
  };
@@ -157080,12 +157762,21 @@ export declare type MutationAssetsVertical_DeleteItemMappingArgs = {
157080
157762
  export declare type MutationAssetsVertical_DeleteRoleAssignmentsArgs = {
157081
157763
  input: AssetsVerticalDeleteRoleAssignmentsInput;
157082
157764
  };
157765
+ export declare type MutationAssetsVertical_EnableCustomInsightArgs = {
157766
+ input: AssetsVerticalEnableCustomInsightInput;
157767
+ };
157768
+ export declare type MutationAssetsVertical_GenerateCustomInsightArgs = {
157769
+ input: AssetsVerticalGenerateCustomInsightInput;
157770
+ };
157083
157771
  export declare type MutationAssetsVertical_GenerateInsightsArgs = {
157084
157772
  input: AssetsVerticalGenerateInsightsInput;
157085
157773
  };
157086
157774
  export declare type MutationAssetsVertical_InstantiateBundleByTypeArgs = {
157087
157775
  input: AssetsVerticalInstantiateBundleByTypeInput;
157088
157776
  };
157777
+ export declare type MutationAssetsVertical_UpdateCustomInsightArgs = {
157778
+ input: AssetsVerticalUpdateCustomInsightInput;
157779
+ };
157089
157780
  export declare type MutationAssetsVertical_UpdateDepreciationRuleArgs = {
157090
157781
  input: AssetsVerticalUpdateDepreciationRuleInput;
157091
157782
  };
@@ -158014,6 +158705,12 @@ export declare type MutationCpls_AddContributorWorkAssociationArgs = {
158014
158705
  export declare type MutationCpls_AddWorkScopeAssociationsArgs = {
158015
158706
  input: CplsAddWorkScopeAssociationsInput;
158016
158707
  };
158708
+ export declare type MutationCpls_CopyContributorToWorksArgs = {
158709
+ input: CplsCopyContributorToWorksInput;
158710
+ };
158711
+ export declare type MutationCpls_CopyWorkToContributorsArgs = {
158712
+ input: CplsCopyWorkToContributorsInput;
158713
+ };
158017
158714
  export declare type MutationCpls_CreateCustomContributionTargetArgs = {
158018
158715
  input: CplsCreateCustomContributionTargetInput;
158019
158716
  };
@@ -158814,9 +159511,15 @@ export declare type MutationGoals_RemoveUserCustomFieldValueArgs = {
158814
159511
  export declare type MutationGoals_RemoveWatchersArgs = {
158815
159512
  input: TownsquareGoalsRemoveWatchersInput;
158816
159513
  };
159514
+ export declare type MutationGoals_RestoreGoalsArgs = {
159515
+ input: TownsquareGoalsRestoreGoalsInput;
159516
+ };
158817
159517
  export declare type MutationGoals_RevokeAccessArgs = {
158818
159518
  input: TownsquareGoalRevokeAccessInput;
158819
159519
  };
159520
+ export declare type MutationGoals_SetParentGoalArgs = {
159521
+ input: TownsquareGoalsSetParentGoalInput;
159522
+ };
158820
159523
  export declare type MutationGoals_SetRollupProgressArgs = {
158821
159524
  input: TownsquareGoalsSetRollupProgressInput;
158822
159525
  };
@@ -158835,6 +159538,9 @@ export declare type MutationGoals_ShareGoalArgs = {
158835
159538
  export declare type MutationGoals_ShareUpdateArgs = {
158836
159539
  input: TownsquareGoalsShareUpdateInput;
158837
159540
  };
159541
+ export declare type MutationGoals_SoftDeleteGoalsArgs = {
159542
+ input: TownsquareGoalsSoftDeleteGoalsInput;
159543
+ };
158838
159544
  export declare type MutationGoals_UnlinkJiraAlignProjectArgs = {
158839
159545
  input: TownsquareGoalsUnlinkJiraAlignProjectInput;
158840
159546
  };
@@ -159617,6 +160323,9 @@ export declare type MutationKitsune_SyncCsmPropertiesArgs = {
159617
160323
  export declare type MutationKitsune_SyncCustomerFieldsArgs = {
159618
160324
  workspaceAri: Scalars['ID']['input'];
159619
160325
  };
160326
+ export declare type MutationKitsune_SyncCustomersArgs = {
160327
+ workspaceAri: Scalars['ID']['input'];
160328
+ };
159620
160329
  export declare type MutationKitsune_UpdateCustomerArgs = {
159621
160330
  ari: Scalars['ID']['input'];
159622
160331
  name?: InputMaybe<Scalars['String']['input']>;
@@ -164010,6 +164719,7 @@ export declare type Query = {
164010
164719
  agentStudio_scenarioListByContainerId?: Maybe<AgentStudioScenariosResult>;
164011
164720
  agentStudio_scenariosByIds?: Maybe<Array<Maybe<AgentStudioScenario>>>;
164012
164721
  agentStudio_suggestConversationStarters?: Maybe<AgentStudioSuggestConversationStartersResult>;
164722
+ agentStudio_testConversationListByContainerId?: Maybe<AgentStudioConversationListResult>;
164013
164723
  agentStudio_toolIntegrations?: Maybe<AgentStudioToolIntegrationsConnection>;
164014
164724
  agentStudio_tools?: Maybe<AgentStudioToolsConnection>;
164015
164725
  agentStudio_validateScenario?: Maybe<AgentStudioScenarioValidationPayload>;
@@ -164031,9 +164741,11 @@ export declare type Query = {
164031
164741
  agentWorkspace_coverShiftEditBounds?: Maybe<AgentWorkspaceShiftEditBounds>;
164032
164742
  agentWorkspace_defaultCapacity?: Maybe<AgentWorkspaceDefaultCapacity>;
164033
164743
  agentWorkspace_draftedRoutingTable?: Maybe<AgentWorkspaceDraftedRoutingTable>;
164744
+ agentWorkspace_draftedRoutingTableStatus?: Maybe<AgentWorkspaceDraftedRoutingTableStatus>;
164034
164745
  agentWorkspace_eligibleGroups?: Maybe<AgentWorkspaceEligibleGroupsPayload>;
164746
+ agentWorkspace_issueRoutingHistory?: Maybe<AgentWorkspaceIssueRoutingHistory>;
164035
164747
  agentWorkspace_projectDefaultAvailability?: Maybe<AgentWorkspaceProjectDefaultAvailability>;
164036
- agentWorkspace_recommendedAgentsForCoverageGap?: Maybe<Array<AgentWorkspaceAgent>>;
164748
+ agentWorkspace_recommendedAgentsForCoverageGap?: Maybe<AgentWorkspaceRecommendedAgentsForCoverageGapPayload>;
164037
164749
  agentWorkspace_recommendedAgentsForGap?: Maybe<Array<AgentWorkspaceAgent>>;
164038
164750
  agentWorkspace_recommendedAssignees?: Maybe<AgentWorkspaceRecommendedAssigneesResponse>;
164039
164751
  agentWorkspace_routingConfig?: Maybe<AgentWorkspaceSmartRoutingConfig>;
@@ -164068,6 +164780,7 @@ export declare type Query = {
164068
164780
  aiops_echo?: Maybe<Scalars['String']['output']>;
164069
164781
  aiops_incidentRelatedAlerts?: Maybe<AiOpsIncidentRelatedAlertsResponse>;
164070
164782
  aiops_incidentSuggestion?: Maybe<AiOpsIncidentSuggestionResponse>;
164783
+ aiops_investigationById?: Maybe<AiOpsInvestigation>;
164071
164784
  aiops_latestInvestigationByEntityTypeId?: Maybe<AiOpsInvestigationQueryResult>;
164072
164785
  aiops_latestInvestigationByIssueId?: Maybe<AiOpsInvestigationQueryResult>;
164073
164786
  allIndividualSpaces?: Maybe<SpaceInfoConnection>;
@@ -164157,11 +164870,14 @@ export declare type Query = {
164157
164870
  assetsDM_savedSearchDetails?: Maybe<AssetsDmSavedSearchDetails>;
164158
164871
  assetsDM_savedSearchesList?: Maybe<AssetsDmSavedSearchesList>;
164159
164872
  assetsDM_transformedData?: Maybe<AssetsDmTransformedDataResponse>;
164873
+ assetsVertical_allInsights?: Maybe<AssetsVerticalAllInsightsResult>;
164160
164874
  assetsVertical_assetTypesTracking?: Maybe<AssetsVerticalAssetTypesTrackingResult>;
164161
164875
  assetsVertical_assetTypesTrackings?: Maybe<AssetsVerticalAssetTypesTrackingConnection>;
164162
164876
  assetsVertical_bundle?: Maybe<AssetsVerticalBundleResult>;
164163
164877
  assetsVertical_configuredObjectTypes?: Maybe<AssetsVerticalObjectTypesResult>;
164164
164878
  assetsVertical_countByStatus?: Maybe<AssetsVerticalCountByStatusResult>;
164879
+ assetsVertical_customInsightResult?: Maybe<AssetsVerticalCustomInsightResultUnion>;
164880
+ assetsVertical_customInsights?: Maybe<AssetsVerticalCustomInsightsResult>;
164165
164881
  assetsVertical_depreciationRule?: Maybe<AssetsVerticalDepreciationRuleResult>;
164166
164882
  assetsVertical_depreciationRules?: Maybe<AssetsVerticalDepreciationRuleConnection>;
164167
164883
  assetsVertical_insightDefinitions?: Maybe<AssetsVerticalInsightDefinitionResult>;
@@ -164874,6 +165590,7 @@ export declare type Query = {
164874
165590
  kitsune_searchFields?: Maybe<KitsuneFieldConnection>;
164875
165591
  kitsune_searchInsights?: Maybe<KitsuneInsightConnection>;
164876
165592
  kitsune_searchOrganizations?: Maybe<KitsuneOrganizationConnection>;
165593
+ kitsune_searchSnippets?: Maybe<KitsuneSnippetConnection>;
164877
165594
  kitsune_sections?: Maybe<Array<Maybe<KitsuneSection>>>;
164878
165595
  kitsune_snippets?: Maybe<Array<Maybe<KitsuneSnippet>>>;
164879
165596
  kitsune_spaces?: Maybe<Array<Maybe<KitsuneSpace>>>;
@@ -165900,6 +166617,15 @@ export declare type QueryAgentStudio_SuggestConversationStartersArgs = {
165900
166617
  cloudId: Scalars['String']['input'];
165901
166618
  input: AgentStudioSuggestConversationStartersInput;
165902
166619
  };
166620
+ export declare type QueryAgentStudio_TestConversationListByContainerIdArgs = {
166621
+ after?: InputMaybe<Scalars['String']['input']>;
166622
+ cloudId: Scalars['String']['input'];
166623
+ containerAri: Scalars['ID']['input'];
166624
+ experienceId: Scalars['String']['input'];
166625
+ filter?: InputMaybe<AgentStudioLiveConversationFilterInput>;
166626
+ first?: InputMaybe<Scalars['Int']['input']>;
166627
+ productType: AgentStudioProductType;
166628
+ };
165903
166629
  export declare type QueryAgentStudio_ToolIntegrationsArgs = {
165904
166630
  after?: InputMaybe<Scalars['String']['input']>;
165905
166631
  cloudId: Scalars['String']['input'];
@@ -166008,9 +166734,17 @@ export declare type QueryAgentWorkspace_DefaultCapacityArgs = {
166008
166734
  export declare type QueryAgentWorkspace_DraftedRoutingTableArgs = {
166009
166735
  projectAri: Scalars['ID']['input'];
166010
166736
  };
166737
+ export declare type QueryAgentWorkspace_DraftedRoutingTableStatusArgs = {
166738
+ cloudId: Scalars['ID']['input'];
166739
+ projectKey: Scalars['String']['input'];
166740
+ };
166011
166741
  export declare type QueryAgentWorkspace_EligibleGroupsArgs = {
166012
166742
  projectAri: Scalars['ID']['input'];
166013
166743
  };
166744
+ export declare type QueryAgentWorkspace_IssueRoutingHistoryArgs = {
166745
+ cloudId: Scalars['ID']['input'];
166746
+ issueKey: Scalars['String']['input'];
166747
+ };
166014
166748
  export declare type QueryAgentWorkspace_ProjectDefaultAvailabilityArgs = {
166015
166749
  cloudId: Scalars['ID']['input'];
166016
166750
  projectId: Scalars['ID']['input'];
@@ -166089,6 +166823,7 @@ export declare type QueryAgentWorkspace_SkillCategoriesInProjectArgs = {
166089
166823
  after?: InputMaybe<Scalars['String']['input']>;
166090
166824
  agentAccountIds?: InputMaybe<Array<Scalars['ID']['input']>>;
166091
166825
  categoryIds?: InputMaybe<Array<Scalars['ID']['input']>>;
166826
+ categoryQuery?: InputMaybe<Scalars['String']['input']>;
166092
166827
  first?: InputMaybe<Scalars['Int']['input']>;
166093
166828
  projectId: Scalars['ID']['input'];
166094
166829
  skillsQuery?: InputMaybe<Scalars['String']['input']>;
@@ -166186,6 +166921,10 @@ export declare type QueryAiops_IncidentSuggestionArgs = {
166186
166921
  cloudId: Scalars['ID']['input'];
166187
166922
  issueKey: Scalars['String']['input'];
166188
166923
  };
166924
+ export declare type QueryAiops_InvestigationByIdArgs = {
166925
+ cloudId: Scalars['ID']['input'];
166926
+ investigationId: Scalars['ID']['input'];
166927
+ };
166189
166928
  export declare type QueryAiops_LatestInvestigationByEntityTypeIdArgs = {
166190
166929
  cloudId: Scalars['ID']['input'];
166191
166930
  entityId: Scalars['ID']['input'];
@@ -166692,6 +167431,11 @@ export declare type QueryAssetsDm_TransformedDataArgs = {
166692
167431
  pagination?: InputMaybe<AssetsDmPaginationInput>;
166693
167432
  workspaceId: Scalars['ID']['input'];
166694
167433
  };
167434
+ export declare type QueryAssetsVertical_AllInsightsArgs = {
167435
+ after?: InputMaybe<Scalars['String']['input']>;
167436
+ cloudId: Scalars['ID']['input'];
167437
+ first?: InputMaybe<Scalars['Int']['input']>;
167438
+ };
166695
167439
  export declare type QueryAssetsVertical_AssetTypesTrackingArgs = {
166696
167440
  cloudId: Scalars['ID']['input'];
166697
167441
  id: Scalars['ID']['input'];
@@ -166715,6 +167459,16 @@ export declare type QueryAssetsVertical_CountByStatusArgs = {
166715
167459
  cloudId: Scalars['ID']['input'];
166716
167460
  input: AssetsVerticalCountByStatusInput;
166717
167461
  };
167462
+ export declare type QueryAssetsVertical_CustomInsightResultArgs = {
167463
+ cloudId: Scalars['ID']['input'];
167464
+ insightId: Scalars['ID']['input'];
167465
+ jobId?: InputMaybe<Scalars['ID']['input']>;
167466
+ };
167467
+ export declare type QueryAssetsVertical_CustomInsightsArgs = {
167468
+ after?: InputMaybe<Scalars['String']['input']>;
167469
+ cloudId: Scalars['ID']['input'];
167470
+ first?: InputMaybe<Scalars['Int']['input']>;
167471
+ };
166718
167472
  export declare type QueryAssetsVertical_DepreciationRuleArgs = {
166719
167473
  cloudId: Scalars['ID']['input'];
166720
167474
  id: Scalars['ID']['input'];
@@ -169759,6 +170513,16 @@ export declare type QueryKitsune_SearchOrganizationsArgs = {
169759
170513
  query?: InputMaybe<Scalars['String']['input']>;
169760
170514
  workspaceAri: Scalars['ID']['input'];
169761
170515
  };
170516
+ export declare type QueryKitsune_SearchSnippetsArgs = {
170517
+ after?: InputMaybe<Scalars['String']['input']>;
170518
+ before?: InputMaybe<Scalars['String']['input']>;
170519
+ cloudId?: InputMaybe<Scalars['ID']['input']>;
170520
+ first?: InputMaybe<Scalars['Int']['input']>;
170521
+ insightAri?: InputMaybe<Scalars['ID']['input']>;
170522
+ last?: InputMaybe<Scalars['Int']['input']>;
170523
+ query?: InputMaybe<Scalars['String']['input']>;
170524
+ workspaceAri: Scalars['ID']['input'];
170525
+ };
169762
170526
  export declare type QueryKitsune_SectionsArgs = {
169763
170527
  ids: Array<Scalars['ID']['input']>;
169764
170528
  };
@@ -199673,6 +200437,7 @@ export declare type TeamMutation = {
199673
200437
  linkExternalTeam?: Maybe<TeamLinkExternalTeamPayload>;
199674
200438
  removeChild?: Maybe<TeamV2>;
199675
200439
  removeParent?: Maybe<TeamV2>;
200440
+ restoreExternalTeam?: Maybe<TeamRestoreExternalTeamPayload>;
199676
200441
  setNotificationConfiguration?: Maybe<TeamNotificationConfiguration>;
199677
200442
  setScopeNotificationConfiguration?: Maybe<TeamScopeNotificationConfiguration>;
199678
200443
  unlinkCustomFieldFromOption?: Maybe<TeamCustomFieldKeyValues>;
@@ -199758,6 +200523,9 @@ export declare type TeamMutationRemoveParentArgs = {
199758
200523
  siteId: Scalars['ID']['input'];
199759
200524
  teamId: Scalars['ID']['input'];
199760
200525
  };
200526
+ export declare type TeamMutationRestoreExternalTeamArgs = {
200527
+ input: TeamRestoreExternalTeamInput;
200528
+ };
199761
200529
  export declare type TeamMutationSetNotificationConfigurationArgs = {
199762
200530
  input: TeamSetNotificationConfigurationInput;
199763
200531
  };
@@ -199967,6 +200735,17 @@ export declare type TeamQueryTypesWithinScopeArgs = {
199967
200735
  first?: Scalars['Int']['input'];
199968
200736
  scopeId: Scalars['ID']['input'];
199969
200737
  };
200738
+ export declare type TeamRestoreExternalTeamInput = {
200739
+ externalReference: TeamExternalReferenceInput;
200740
+ scopeId: Scalars['ID']['input'];
200741
+ teamId: Scalars['ID']['input'];
200742
+ };
200743
+ export declare type TeamRestoreExternalTeamPayload = Payload & {
200744
+ __typename?: 'TeamRestoreExternalTeamPayload';
200745
+ errors?: Maybe<Array<MutationError>>;
200746
+ success: Scalars['Boolean']['output'];
200747
+ teamId?: Maybe<Scalars['ID']['output']>;
200748
+ };
199970
200749
  export declare enum TeamRole {
199971
200750
  TeamsAdmin = "TEAMS_ADMIN",
199972
200751
  TeamsObserver = "TEAMS_OBSERVER",
@@ -201397,6 +202176,7 @@ export declare type TownsquareGoal = Node & {
201397
202176
  risks?: Maybe<TownsquareRiskConnection>;
201398
202177
  scoringMode?: Maybe<TownsquareGoalScoringMode>;
201399
202178
  slackChannels?: Maybe<TownsquareSlackConnectionConnection>;
202179
+ softDeleted?: Maybe<Scalars['Boolean']['output']>;
201400
202180
  startDate?: Maybe<Scalars['Date']['output']>;
201401
202181
  state?: Maybe<TownsquareGoalState>;
201402
202182
  status?: Maybe<TownsquareStatus>;
@@ -201590,6 +202370,7 @@ export declare type TownsquareGoalCapabilities = {
201590
202370
  canCommentOnGoal?: Maybe<Scalars['Boolean']['output']>;
201591
202371
  canCommentOnUpdates?: Maybe<Scalars['Boolean']['output']>;
201592
202372
  canCreateUpdates?: Maybe<Scalars['Boolean']['output']>;
202373
+ canDeleteGoal?: Maybe<Scalars['Boolean']['output']>;
201593
202374
  canDeleteUpdates?: Maybe<Scalars['Boolean']['output']>;
201594
202375
  canEditCustomFields?: Maybe<Scalars['Boolean']['output']>;
201595
202376
  canEditMetadata?: Maybe<Scalars['Boolean']['output']>;
@@ -202522,6 +203303,27 @@ export declare type TownsquareGoalsRemoveWatchersPayload = {
202522
203303
  removedWatcherIds?: Maybe<Array<Scalars['ID']['output']>>;
202523
203304
  success: Scalars['Boolean']['output'];
202524
203305
  };
203306
+ export declare type TownsquareGoalsRestoreGoalsInput = {
203307
+ goalIds: Array<Scalars['ID']['input']>;
203308
+ };
203309
+ export declare type TownsquareGoalsRestoreGoalsPayload = {
203310
+ __typename?: 'TownsquareGoalsRestoreGoalsPayload';
203311
+ errors?: Maybe<Array<MutationError>>;
203312
+ restoredGoals?: Maybe<Array<TownsquareGoal>>;
203313
+ success: Scalars['Boolean']['output'];
203314
+ };
203315
+ export declare type TownsquareGoalsSetParentGoalInput = {
203316
+ goalId: Scalars['ID']['input'];
203317
+ parentGoalId?: InputMaybe<Scalars['ID']['input']>;
203318
+ };
203319
+ export declare type TownsquareGoalsSetParentGoalPayload = {
203320
+ __typename?: 'TownsquareGoalsSetParentGoalPayload';
203321
+ errors?: Maybe<Array<MutationError>>;
203322
+ goal?: Maybe<TownsquareGoal>;
203323
+ parentGoal?: Maybe<TownsquareGoal>;
203324
+ removedParentGoal?: Maybe<TownsquareGoal>;
203325
+ success: Scalars['Boolean']['output'];
203326
+ };
202525
203327
  export declare type TownsquareGoalsSetRollupProgressInput = {
202526
203328
  enableRollupProgress?: InputMaybe<Scalars['Boolean']['input']>;
202527
203329
  goalId: Scalars['ID']['input'];
@@ -202590,6 +203392,15 @@ export declare type TownsquareGoalsShareUpdatePayload = {
202590
203392
  isShared: Scalars['Boolean']['output'];
202591
203393
  success: Scalars['Boolean']['output'];
202592
203394
  };
203395
+ export declare type TownsquareGoalsSoftDeleteGoalsInput = {
203396
+ goalIds: Array<Scalars['ID']['input']>;
203397
+ };
203398
+ export declare type TownsquareGoalsSoftDeleteGoalsPayload = {
203399
+ __typename?: 'TownsquareGoalsSoftDeleteGoalsPayload';
203400
+ errors?: Maybe<Array<MutationError>>;
203401
+ softDeletedGoals?: Maybe<Array<TownsquareGoal>>;
203402
+ success: Scalars['Boolean']['output'];
203403
+ };
202593
203404
  export declare type TownsquareGoalsUnlinkJiraAlignProjectInput = {
202594
203405
  goalId: Scalars['ID']['input'];
202595
203406
  jiraAlignProjectId: Scalars['ID']['input'];
@@ -204196,6 +205007,7 @@ export declare type TownsquareSetParentGoalPayload = {
204196
205007
  __typename?: 'TownsquareSetParentGoalPayload';
204197
205008
  goal?: Maybe<TownsquareGoal>;
204198
205009
  parentGoal?: Maybe<TownsquareGoal>;
205010
+ removedParentGoal?: Maybe<TownsquareGoal>;
204199
205011
  };
204200
205012
  export declare type TownsquareShareGoalUserInput = {
204201
205013
  accountId?: InputMaybe<Scalars['ID']['input']>;
@@ -204900,6 +205712,7 @@ export declare type TrelloAddMemberToCardPayload = Payload & {
204900
205712
  success: Scalars['Boolean']['output'];
204901
205713
  };
204902
205714
  export declare type TrelloAddOnboardingInboxCardsCardInput = {
205715
+ complete?: InputMaybe<Scalars['Boolean']['input']>;
204903
205716
  description?: InputMaybe<Scalars['String']['input']>;
204904
205717
  externalSource?: InputMaybe<TrelloCardExternalSource>;
204905
205718
  name: Scalars['String']['input'];
@@ -206395,6 +207208,7 @@ export declare type TrelloCloseBoardInput = {
206395
207208
  export declare type TrelloCloseBoardPayload = Payload & {
206396
207209
  __typename?: 'TrelloCloseBoardPayload';
206397
207210
  board?: Maybe<TrelloBoard>;
207211
+ boardV2?: Maybe<TrelloBaseBoard>;
206398
207212
  errors?: Maybe<Array<MutationError>>;
206399
207213
  success: Scalars['Boolean']['output'];
206400
207214
  };
@@ -206447,6 +207261,7 @@ export declare type TrelloCompleteOnboardingBoardInput = {
206447
207261
  name: Scalars['String']['input'];
206448
207262
  };
206449
207263
  export declare type TrelloCompleteOnboardingCardInput = {
207264
+ complete?: InputMaybe<Scalars['Boolean']['input']>;
206450
207265
  description?: InputMaybe<Scalars['String']['input']>;
206451
207266
  name: Scalars['String']['input'];
206452
207267
  position: Scalars['Float']['input'];
@@ -206478,6 +207293,7 @@ export declare type TrelloConvertTemplateToBoardInput = {
206478
207293
  export declare type TrelloConvertTemplateToBoardPayload = Payload & {
206479
207294
  __typename?: 'TrelloConvertTemplateToBoardPayload';
206480
207295
  board?: Maybe<TrelloBoard>;
207296
+ boardV2?: Maybe<TrelloBaseBoard>;
206481
207297
  errors?: Maybe<Array<MutationError>>;
206482
207298
  success: Scalars['Boolean']['output'];
206483
207299
  };
@@ -206691,7 +207507,7 @@ export declare type TrelloCreateCheckItemInput = {
206691
207507
  creationMethod?: InputMaybe<TrelloCheckItemCreationMethod>;
206692
207508
  due?: InputMaybe<TrelloCheckItemDueInfoInput>;
206693
207509
  name: Scalars['String']['input'];
206694
- position?: InputMaybe<TrelloRelativePosition>;
207510
+ position?: InputMaybe<TrelloPosition>;
206695
207511
  userId?: InputMaybe<Scalars['ID']['input']>;
206696
207512
  };
206697
207513
  export declare type TrelloCreateCheckItemPayload = Payload & {
@@ -207501,6 +208317,7 @@ export declare type TrelloLabelUpdatedConnection = {
207501
208317
  nodes?: Maybe<Array<TrelloLabel>>;
207502
208318
  };
207503
208319
  export declare enum TrelloLabsFeature {
208320
+ AiBoardBuilder = "AI_BOARD_BUILDER",
207504
208321
  GenerateChecklist = "GENERATE_CHECKLIST",
207505
208322
  MergeCards = "MERGE_CARDS",
207506
208323
  RovoChat = "ROVO_CHAT",
@@ -209823,6 +210640,7 @@ export declare type TrelloReopenBoardInput = {
209823
210640
  export declare type TrelloReopenBoardPayload = Payload & {
209824
210641
  __typename?: 'TrelloReopenBoardPayload';
209825
210642
  board?: Maybe<TrelloBoard>;
210643
+ boardV2?: Maybe<TrelloBaseBoard>;
209826
210644
  errors?: Maybe<Array<MutationError>>;
209827
210645
  success: Scalars['Boolean']['output'];
209828
210646
  };
@@ -210182,6 +211000,8 @@ export declare type TrelloUpdateApplicationIconInput = {
210182
211000
  };
210183
211001
  export declare type TrelloUpdateApplicationInput = {
210184
211002
  author?: InputMaybe<Scalars['String']['input']>;
211003
+ capabilities?: InputMaybe<Array<Scalars['String']['input']>>;
211004
+ capabilitiesOptions?: InputMaybe<Array<Scalars['String']['input']>>;
210185
211005
  categories?: InputMaybe<Array<Scalars['String']['input']>>;
210186
211006
  email?: InputMaybe<Scalars['String']['input']>;
210187
211007
  icon?: InputMaybe<TrelloUpdateApplicationIconInput>;
@@ -210222,6 +211042,7 @@ export declare type TrelloUpdateBoardDescriptionInput = {
210222
211042
  export declare type TrelloUpdateBoardDescriptionPayload = Payload & {
210223
211043
  __typename?: 'TrelloUpdateBoardDescriptionPayload';
210224
211044
  board?: Maybe<TrelloBoard>;
211045
+ boardV2?: Maybe<TrelloBaseBoard>;
210225
211046
  errors?: Maybe<Array<MutationError>>;
210226
211047
  success: Scalars['Boolean']['output'];
210227
211048
  };
@@ -210500,11 +211321,12 @@ export declare type TrelloUpdateCardRolePayload = Payload & {
210500
211321
  };
210501
211322
  export declare type TrelloUpdateCheckItemInput = {
210502
211323
  checkItemId: Scalars['ID']['input'];
210503
- checklistId?: InputMaybe<Scalars['ID']['input']>;
211324
+ checklistId: Scalars['ID']['input'];
210504
211325
  due?: InputMaybe<TrelloCheckItemDueInfoInput>;
210505
211326
  name?: InputMaybe<Scalars['String']['input']>;
210506
211327
  position?: InputMaybe<TrelloPosition>;
210507
211328
  state?: InputMaybe<TrelloCheckItemState>;
211329
+ targetChecklistId?: InputMaybe<Scalars['ID']['input']>;
210508
211330
  userId?: InputMaybe<Scalars['ID']['input']>;
210509
211331
  };
210510
211332
  export declare type TrelloUpdateCheckItemPayload = Payload & {