@forge/cli-shared 8.23.0-next.8 → 8.23.0-next.8-experimental-2e302e1

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