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

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