@forge/cli-shared 8.24.1-next.1 → 8.24.1-next.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/CHANGELOG.md CHANGED
@@ -1,5 +1,11 @@
1
1
  # @forge/cli-shared
2
2
 
3
+ ## 8.24.1-next.2
4
+
5
+ ### Patch Changes
6
+
7
+ - ab1dcaa: Update JSM to be its own product
8
+
3
9
  ## 8.24.1-next.1
4
10
 
5
11
  ### Patch Changes
@@ -5530,6 +5530,12 @@ export declare type AdminWorkspaceTypeEdge = {
5530
5530
  cursor: Scalars['String']['output'];
5531
5531
  node?: Maybe<AdminWorkspaceType>;
5532
5532
  };
5533
+ export declare type AdvisorySignalIndicator = {
5534
+ __typename?: 'AdvisorySignalIndicator';
5535
+ advisorySignalId: Scalars['String']['output'];
5536
+ advisorySignalSummary: Scalars['String']['output'];
5537
+ provenance: Array<IndicatorProvenance>;
5538
+ };
5533
5539
  export declare type AgentAiCitation = {
5534
5540
  __typename?: 'AgentAICitation';
5535
5541
  confidence?: Maybe<Scalars['Float']['output']>;
@@ -36283,6 +36289,48 @@ export declare type ConfluenceWorkflowApplicationDetails = {
36283
36289
  workflowId?: Maybe<Scalars['ID']['output']>;
36284
36290
  workflowStatusId?: Maybe<Scalars['ID']['output']>;
36285
36291
  };
36292
+ export declare type ConfluenceWorkflowApplicationHistoryActor = {
36293
+ __typename?: 'ConfluenceWorkflowApplicationHistoryActor';
36294
+ accountId?: Maybe<Scalars['ID']['output']>;
36295
+ displayName?: Maybe<Scalars['String']['output']>;
36296
+ };
36297
+ export declare type ConfluenceWorkflowApplicationHistoryConnection = {
36298
+ __typename?: 'ConfluenceWorkflowApplicationHistoryConnection';
36299
+ edges?: Maybe<Array<Maybe<ConfluenceWorkflowApplicationHistoryEdge>>>;
36300
+ nodes?: Maybe<Array<Maybe<ConfluenceWorkflowApplicationHistoryEntry>>>;
36301
+ pageInfo: ConfluencePageInfo;
36302
+ };
36303
+ export declare type ConfluenceWorkflowApplicationHistoryEdge = {
36304
+ __typename?: 'ConfluenceWorkflowApplicationHistoryEdge';
36305
+ cursor: Scalars['String']['output'];
36306
+ node?: Maybe<ConfluenceWorkflowApplicationHistoryEntry>;
36307
+ };
36308
+ export declare type ConfluenceWorkflowApplicationHistoryEntry = {
36309
+ __typename?: 'ConfluenceWorkflowApplicationHistoryEntry';
36310
+ action: Scalars['String']['output'];
36311
+ actor?: Maybe<ConfluenceWorkflowApplicationHistoryActor>;
36312
+ contentId: Scalars['ID']['output'];
36313
+ contentStatus: GraphQlContentStatus;
36314
+ contentVersion?: Maybe<Scalars['Int']['output']>;
36315
+ creationDate: ConfluenceApprovalsDate;
36316
+ id: Scalars['ID']['output'];
36317
+ reviewDecision?: Maybe<ConfluenceWorkflowApplicationHistoryReviewDecision>;
36318
+ targetPrincipal?: Maybe<ConfluenceWorkflowApplicationHistoryTargetPrincipal>;
36319
+ triggerSource?: Maybe<Scalars['String']['output']>;
36320
+ workflowApplicationId: Scalars['ID']['output'];
36321
+ workflowReviewId?: Maybe<Scalars['ID']['output']>;
36322
+ workflowStatus?: Maybe<ConfluenceApprovalsWorkflowStatus>;
36323
+ };
36324
+ export declare type ConfluenceWorkflowApplicationHistoryReviewDecision = {
36325
+ __typename?: 'ConfluenceWorkflowApplicationHistoryReviewDecision';
36326
+ comment?: Maybe<Scalars['String']['output']>;
36327
+ decisionStatus?: Maybe<Scalars['String']['output']>;
36328
+ };
36329
+ export declare type ConfluenceWorkflowApplicationHistoryTargetPrincipal = {
36330
+ __typename?: 'ConfluenceWorkflowApplicationHistoryTargetPrincipal';
36331
+ principalId?: Maybe<Scalars['ID']['output']>;
36332
+ principalType?: Maybe<Scalars['String']['output']>;
36333
+ };
36286
36334
  export declare type ConfluenceWorkflowApplicationPayload = {
36287
36335
  __typename?: 'ConfluenceWorkflowApplicationPayload';
36288
36336
  errors: Array<MutationError>;
@@ -115150,6 +115198,14 @@ export declare type HydratingJiraIssueEdge = {
115150
115198
  cursor: Scalars['String']['output'];
115151
115199
  node?: Maybe<JiraIssue>;
115152
115200
  };
115201
+ export declare type HypothesisIndicator = {
115202
+ __typename?: 'HypothesisIndicator';
115203
+ hypothesisId: Scalars['ID']['output'];
115204
+ hypothesisSummary: Scalars['String']['output'];
115205
+ hypothesisType?: Maybe<MitigationHypothesisType>;
115206
+ investigationId: Scalars['ID']['output'];
115207
+ provenance: Array<IndicatorProvenance>;
115208
+ };
115153
115209
  export declare type Icon = {
115154
115210
  __typename?: 'Icon';
115155
115211
  height?: Maybe<Scalars['Int']['output']>;
@@ -115180,6 +115236,24 @@ export declare type IncomingLinksCount = {
115180
115236
  export declare type IndexHintInputType = {
115181
115237
  hints?: InputMaybe<Array<InputMaybe<PreferredIndexInputType>>>;
115182
115238
  };
115239
+ export declare type IndicatorProvenance = {
115240
+ __typename?: 'IndicatorProvenance';
115241
+ sourceId: Scalars['ID']['output'];
115242
+ sourceType: Scalars['String']['output'];
115243
+ };
115244
+ export declare type IndicatorRejectionPayload = Payload & {
115245
+ __typename?: 'IndicatorRejectionPayload';
115246
+ errors?: Maybe<Array<MutationError>>;
115247
+ indicator?: Maybe<MitigationIndicator>;
115248
+ success: Scalars['Boolean']['output'];
115249
+ };
115250
+ export declare enum IndicatorRejectionReason {
115251
+ Duplicate = "DUPLICATE",
115252
+ Incorrect = "INCORRECT",
115253
+ LowConfidence = "LOW_CONFIDENCE",
115254
+ NotRelevant = "NOT_RELEVANT",
115255
+ Other = "OTHER"
115256
+ }
115183
115257
  export declare type IndividualInlineTaskNotification = {
115184
115258
  __typename?: 'IndividualInlineTaskNotification';
115185
115259
  notificationAction?: Maybe<NotificationAction>;
@@ -115813,6 +115887,7 @@ export declare type InvokeExtensionPayloadErrorExtension = MutationErrorExtensio
115813
115887
  __typename?: 'InvokeExtensionPayloadErrorExtension';
115814
115888
  errorType?: Maybe<Scalars['String']['output']>;
115815
115889
  fields?: Maybe<InvokeExtensionPayloadErrorExtensionFields>;
115890
+ rateLimitProperties?: Maybe<RateLimitProperties>;
115816
115891
  statusCode?: Maybe<Scalars['Int']['output']>;
115817
115892
  };
115818
115893
  export declare type InvokeExtensionPayloadErrorExtensionFields = {
@@ -115826,6 +115901,7 @@ export declare type InvokeExtensionResponse = Payload & {
115826
115901
  errors?: Maybe<Array<MutationError>>;
115827
115902
  externalAuth?: Maybe<Array<Maybe<ExternalAuthProvider>>>;
115828
115903
  metrics?: Maybe<InvocationMetrics>;
115904
+ rateLimitProperties?: Maybe<RateLimitProperties>;
115829
115905
  response?: Maybe<InvocationResponsePayload>;
115830
115906
  success: Scalars['Boolean']['output'];
115831
115907
  };
@@ -161258,6 +161334,105 @@ export declare type MissionControlOverview = {
161258
161334
  metricOrder: Array<InputMaybe<Scalars['String']['input']>>;
161259
161335
  spaceId?: InputMaybe<Scalars['Long']['input']>;
161260
161336
  };
161337
+ export declare type Mitigation = {
161338
+ __typename?: 'Mitigation';
161339
+ createdAt: Scalars['DateTime']['output'];
161340
+ indicators: Array<MitigationIndicator>;
161341
+ latestRequestId?: Maybe<Scalars['ID']['output']>;
161342
+ mitigationId: Scalars['ID']['output'];
161343
+ progressSteps: Array<MitigationProgressStep>;
161344
+ scopeId: Scalars['ID']['output'];
161345
+ scopeType: MitigationScopeType;
161346
+ updatedAt?: Maybe<Scalars['DateTime']['output']>;
161347
+ version: Scalars['Int']['output'];
161348
+ };
161349
+ export declare type MitigationIndicatorsArgs = {
161350
+ includeRejected?: InputMaybe<Scalars['Boolean']['input']>;
161351
+ };
161352
+ export declare enum MitigationDocumentType {
161353
+ Confluence = "CONFLUENCE",
161354
+ GoogleDoc = "GOOGLE_DOC",
161355
+ Playbook = "PLAYBOOK",
161356
+ Sharepoint = "SHAREPOINT"
161357
+ }
161358
+ export declare enum MitigationHypothesisType {
161359
+ FfChange = "FF_CHANGE",
161360
+ PrChange = "PR_CHANGE",
161361
+ Unknown = "UNKNOWN"
161362
+ }
161363
+ export declare type MitigationIndicator = {
161364
+ __typename?: 'MitigationIndicator';
161365
+ advisorySignal?: Maybe<AdvisorySignalIndicator>;
161366
+ confidenceScore?: Maybe<Scalars['Float']['output']>;
161367
+ createdAt: Scalars['DateTime']['output'];
161368
+ hypothesis?: Maybe<HypothesisIndicator>;
161369
+ indicatorId: Scalars['ID']['output'];
161370
+ indicatorType: MitigationIndicatorType;
161371
+ mitigationId: Scalars['ID']['output'];
161372
+ plans: Array<MitigationPlan>;
161373
+ rejected: Scalars['Boolean']['output'];
161374
+ rejectedAt?: Maybe<Scalars['DateTime']['output']>;
161375
+ rejectedByUserId?: Maybe<Scalars['ID']['output']>;
161376
+ rejectionReason?: Maybe<IndicatorRejectionReason>;
161377
+ rejectionSource?: Maybe<MitigationRejectionSource>;
161378
+ symptom?: Maybe<SymptomIndicator>;
161379
+ updatedAt?: Maybe<Scalars['DateTime']['output']>;
161380
+ };
161381
+ export declare type MitigationIndicatorPlansArgs = {
161382
+ includeRejected?: InputMaybe<Scalars['Boolean']['input']>;
161383
+ };
161384
+ export declare enum MitigationIndicatorType {
161385
+ AdvisorySignal = "ADVISORY_SIGNAL",
161386
+ Hypothesis = "HYPOTHESIS",
161387
+ Symptom = "SYMPTOM"
161388
+ }
161389
+ export declare enum MitigationPipelineStep {
161390
+ IndicatorDeduplication = "INDICATOR_DEDUPLICATION",
161391
+ IndicatorExtraction = "INDICATOR_EXTRACTION",
161392
+ PlanGeneration = "PLAN_GENERATION"
161393
+ }
161394
+ export declare type MitigationPlan = {
161395
+ __typename?: 'MitigationPlan';
161396
+ createdAt: Scalars['DateTime']['output'];
161397
+ indicatorId: Scalars['ID']['output'];
161398
+ mitigationId: Scalars['ID']['output'];
161399
+ planId: Scalars['ID']['output'];
161400
+ planSources: Array<PlanSource>;
161401
+ playbook?: Maybe<JiraPlaybook>;
161402
+ rejected: Scalars['Boolean']['output'];
161403
+ rejectedAt?: Maybe<Scalars['DateTime']['output']>;
161404
+ rejectedByUserId?: Maybe<Scalars['ID']['output']>;
161405
+ rejectionReason?: Maybe<PlanRejectionReason>;
161406
+ rejectionSource?: Maybe<MitigationRejectionSource>;
161407
+ summary?: Maybe<Scalars['String']['output']>;
161408
+ title: Scalars['String']['output'];
161409
+ updatedAt: Scalars['DateTime']['output'];
161410
+ };
161411
+ export declare type MitigationProgressStep = {
161412
+ __typename?: 'MitigationProgressStep';
161413
+ completedAt?: Maybe<Scalars['DateTime']['output']>;
161414
+ failureReason?: Maybe<Scalars['String']['output']>;
161415
+ startedAt?: Maybe<Scalars['DateTime']['output']>;
161416
+ step?: Maybe<MitigationPipelineStep>;
161417
+ stepStatus?: Maybe<MitigationStepStatus>;
161418
+ };
161419
+ export declare enum MitigationRejectionSource {
161420
+ Human = "HUMAN",
161421
+ System = "SYSTEM"
161422
+ }
161423
+ export declare type MitigationResult = Mitigation | QueryError;
161424
+ export declare enum MitigationScopeType {
161425
+ Icc = "ICC"
161426
+ }
161427
+ export declare enum MitigationStepStatus {
161428
+ Done = "DONE",
161429
+ Errored = "ERRORED",
161430
+ InProgress = "IN_PROGRESS"
161431
+ }
161432
+ export declare enum MitigationSymptomType {
161433
+ LinkedAlerts = "LINKED_ALERTS",
161434
+ RelatedAlerts = "RELATED_ALERTS"
161435
+ }
161261
161436
  export declare enum MobilePlatform {
161262
161437
  Android = "ANDROID",
161263
161438
  Ios = "IOS"
@@ -162551,12 +162726,15 @@ export declare type Mutation = {
162551
162726
  playbook_createJiraPlaybookLabel?: Maybe<CreateJiraPlaybookLabelPayload>;
162552
162727
  playbook_createJiraPlaybookStepRun?: Maybe<CreateJiraPlaybookStepRunPayload>;
162553
162728
  playbook_deleteJiraPlaybook?: Maybe<DeleteJiraPlaybookPayload>;
162729
+ playbook_rejectIndicator?: Maybe<IndicatorRejectionPayload>;
162730
+ playbook_rejectPlan?: Maybe<PlanRejectionPayload>;
162731
+ playbook_triggerMitigation?: Maybe<TriggerMitigationPayload>;
162554
162732
  playbook_unassignJiraPlaybookLabelFromJiraPlaybook?: Maybe<JiraPlaybookLabelAssignmentPayload>;
162733
+ playbook_unrejectIndicator?: Maybe<IndicatorRejectionPayload>;
162734
+ playbook_unrejectPlan?: Maybe<PlanRejectionPayload>;
162555
162735
  playbook_updateJiraPlaybook?: Maybe<UpdateJiraPlaybookPayload>;
162556
162736
  playbook_updateJiraPlaybookLabel?: Maybe<UpdateJiraPlaybookLabelPayload>;
162557
162737
  playbook_updateJiraPlaybookState?: Maybe<UpdateJiraPlaybookStatePayload>;
162558
- polarisAddReaction?: Maybe<PolarisAddReactionPayload>;
162559
- polarisDeleteReaction?: Maybe<PolarisDeleteReactionPayload>;
162560
162738
  projects_addGoalLink?: Maybe<TownsquareProjectsAddGoalLinkPayload>;
162561
162739
  projects_addJiraWorkItemLink?: Maybe<TownsquareProjectsAddJiraWorkItemLinkPayload>;
162562
162740
  projects_addMembers?: Maybe<TownsquareProjectsAddMembersPayload>;
@@ -167188,10 +167366,25 @@ export declare type MutationPlaybook_CreateJiraPlaybookStepRunArgs = {
167188
167366
  export declare type MutationPlaybook_DeleteJiraPlaybookArgs = {
167189
167367
  input: DeleteJiraPlaybookInput;
167190
167368
  };
167369
+ export declare type MutationPlaybook_RejectIndicatorArgs = {
167370
+ input: RejectIndicatorInput;
167371
+ };
167372
+ export declare type MutationPlaybook_RejectPlanArgs = {
167373
+ input: RejectPlanInput;
167374
+ };
167375
+ export declare type MutationPlaybook_TriggerMitigationArgs = {
167376
+ input: TriggerMitigationInput;
167377
+ };
167191
167378
  export declare type MutationPlaybook_UnassignJiraPlaybookLabelFromJiraPlaybookArgs = {
167192
167379
  labelId: Scalars['ID']['input'];
167193
167380
  playbookId: Scalars['ID']['input'];
167194
167381
  };
167382
+ export declare type MutationPlaybook_UnrejectIndicatorArgs = {
167383
+ input: UnrejectIndicatorInput;
167384
+ };
167385
+ export declare type MutationPlaybook_UnrejectPlanArgs = {
167386
+ input: UnrejectPlanInput;
167387
+ };
167195
167388
  export declare type MutationPlaybook_UpdateJiraPlaybookArgs = {
167196
167389
  input: UpdateJiraPlaybookInput;
167197
167390
  };
@@ -167201,12 +167394,6 @@ export declare type MutationPlaybook_UpdateJiraPlaybookLabelArgs = {
167201
167394
  export declare type MutationPlaybook_UpdateJiraPlaybookStateArgs = {
167202
167395
  input: UpdateJiraPlaybookStateInput;
167203
167396
  };
167204
- export declare type MutationPolarisAddReactionArgs = {
167205
- input: PolarisAddReactionInput;
167206
- };
167207
- export declare type MutationPolarisDeleteReactionArgs = {
167208
- input: PolarisDeleteReactionInput;
167209
- };
167210
167397
  export declare type MutationProjects_AddGoalLinkArgs = {
167211
167398
  input: TownsquareProjectsAddGoalLink;
167212
167399
  };
@@ -170122,6 +170309,28 @@ export declare enum PlanModeDestination {
170122
170309
  Board = "BOARD",
170123
170310
  Sprint = "SPRINT"
170124
170311
  }
170312
+ export declare type PlanRejectionPayload = Payload & {
170313
+ __typename?: 'PlanRejectionPayload';
170314
+ errors?: Maybe<Array<MutationError>>;
170315
+ plan?: Maybe<MitigationPlan>;
170316
+ success: Scalars['Boolean']['output'];
170317
+ };
170318
+ export declare enum PlanRejectionReason {
170319
+ Incorrect = "INCORRECT",
170320
+ LowScore = "LOW_SCORE",
170321
+ NotHelpful = "NOT_HELPFUL",
170322
+ Other = "OTHER",
170323
+ Outdated = "OUTDATED"
170324
+ }
170325
+ export declare type PlanSource = {
170326
+ __typename?: 'PlanSource';
170327
+ documentType: MitigationDocumentType;
170328
+ rerankerScore?: Maybe<Scalars['Float']['output']>;
170329
+ retrievedAt?: Maybe<Scalars['DateTime']['output']>;
170330
+ sourceId: Scalars['ID']['output'];
170331
+ title: Scalars['String']['output'];
170332
+ url: Scalars['String']['output'];
170333
+ };
170125
170334
  export declare enum Platform {
170126
170335
  Android = "ANDROID",
170127
170336
  Ios = "IOS",
@@ -170212,18 +170421,6 @@ export declare type PokemonTrainersQueryGetByIdArgs = {
170212
170421
  export declare type PokemonTrainersQueryGetByIdsArgs = {
170213
170422
  ids?: InputMaybe<Array<InputMaybe<SkyBridgeIdInput>>>;
170214
170423
  };
170215
- export declare type PolarisAddReactionInput = {
170216
- ari: Scalars['String']['input'];
170217
- containerAri: Scalars['String']['input'];
170218
- emojiId: Scalars['String']['input'];
170219
- metadata?: InputMaybe<Scalars['JSON']['input']>;
170220
- };
170221
- export declare type PolarisAddReactionPayload = Payload & {
170222
- __typename?: 'PolarisAddReactionPayload';
170223
- errors?: Maybe<Array<MutationError>>;
170224
- node: Array<PolarisReactionSummary>;
170225
- success: Scalars['Boolean']['output'];
170226
- };
170227
170424
  export declare enum PolarisColorStyle {
170228
170425
  Background = "BACKGROUND",
170229
170426
  Highlight = "HIGHLIGHT"
@@ -170270,18 +170467,6 @@ export declare type PolarisDelegationToken = {
170270
170467
  token: Scalars['String']['output'];
170271
170468
  url: Scalars['String']['output'];
170272
170469
  };
170273
- export declare type PolarisDeleteReactionInput = {
170274
- ari: Scalars['String']['input'];
170275
- containerAri: Scalars['String']['input'];
170276
- emojiId: Scalars['String']['input'];
170277
- metadata?: InputMaybe<Scalars['JSON']['input']>;
170278
- };
170279
- export declare type PolarisDeleteReactionPayload = Payload & {
170280
- __typename?: 'PolarisDeleteReactionPayload';
170281
- errors?: Maybe<Array<MutationError>>;
170282
- node: Array<PolarisReactionSummary>;
170283
- success: Scalars['Boolean']['output'];
170284
- };
170285
170470
  export declare enum PolarisFilterEnumType {
170286
170471
  BoardColumn = "BOARD_COLUMN",
170287
170472
  ViewGroup = "VIEW_GROUP"
@@ -170289,15 +170474,6 @@ export declare enum PolarisFilterEnumType {
170289
170474
  export declare type PolarisFilterInput = {
170290
170475
  jql?: InputMaybe<Scalars['String']['input']>;
170291
170476
  };
170292
- export declare type PolarisGetDetailedReactionInput = {
170293
- ari: Scalars['String']['input'];
170294
- containerAri: Scalars['String']['input'];
170295
- emojiId: Scalars['String']['input'];
170296
- };
170297
- export declare type PolarisGetReactionsInput = {
170298
- aris?: InputMaybe<Array<Scalars['String']['input']>>;
170299
- containerAri: Scalars['String']['input'];
170300
- };
170301
170477
  export declare type PolarisGroupValue = {
170302
170478
  __typename?: 'PolarisGroupValue';
170303
170479
  id?: Maybe<Scalars['String']['output']>;
@@ -170466,25 +170642,6 @@ export declare type PolarisQueryNamespace = {
170466
170642
  __typename?: 'PolarisQueryNamespace';
170467
170643
  insights?: Maybe<PolarisInsightsQueryNamespace>;
170468
170644
  };
170469
- export declare type PolarisReaction = {
170470
- __typename?: 'PolarisReaction';
170471
- key: Scalars['String']['output'];
170472
- value: Array<PolarisReactionSummary>;
170473
- };
170474
- export declare type PolarisReactionSummary = {
170475
- __typename?: 'PolarisReactionSummary';
170476
- ari: Scalars['String']['output'];
170477
- containerAri: Scalars['String']['output'];
170478
- count: Scalars['Int']['output'];
170479
- emojiId: Scalars['String']['output'];
170480
- reacted: Scalars['Boolean']['output'];
170481
- users?: Maybe<Array<PolarisReactionUser>>;
170482
- };
170483
- export declare type PolarisReactionUser = {
170484
- __typename?: 'PolarisReactionUser';
170485
- displayName: Scalars['String']['output'];
170486
- id: Scalars['String']['output'];
170487
- };
170488
170645
  export declare enum PolarisRefreshError {
170489
170646
  InternalError = "INTERNAL_ERROR",
170490
170647
  InvalidSnippet = "INVALID_SNIPPET",
@@ -172082,6 +172239,7 @@ export declare type Query = {
172082
172239
  confluence_validateConvertPageToMarkdownMode?: Maybe<ConfluenceValidateConvertPageToMarkdownModeResult>;
172083
172240
  confluence_watermarkConfig?: Maybe<ConfluenceWatermarkConfig>;
172084
172241
  confluence_whiteboardTemplates?: Maybe<PaginatedConfluenceWhiteboardTemplateInfoList>;
172242
+ confluence_workflowApplicationHistory?: Maybe<ConfluenceWorkflowApplicationHistoryConnection>;
172085
172243
  connectionManager_connectionsByJiraProject?: Maybe<ConnectionManagerConnectionsByJiraProjectResult>;
172086
172244
  contactAdminPageConfig?: Maybe<ContactAdminPageConfig>;
172087
172245
  content?: Maybe<PaginatedContentListWithChild>;
@@ -174700,14 +174858,14 @@ export declare type Query = {
174700
174858
  playbook_jiraPlaybookTemplate?: Maybe<JiraPlaybookTemplateQueryPayload>;
174701
174859
  playbook_jiraPlaybookTemplateCategories?: Maybe<JiraPlaybookTemplateCategoryQueryPayload>;
174702
174860
  playbook_jiraPlaybooksForProject?: Maybe<JiraPlaybookConnection>;
174861
+ playbook_mitigationById?: Maybe<MitigationResult>;
174862
+ playbook_mitigationByScope?: Maybe<MitigationResult>;
174703
174863
  pokemon?: Maybe<PokemonQuery>;
174704
174864
  pokemonTrainers?: Maybe<PokemonTrainersQuery>;
174705
174865
  polaris?: Maybe<PolarisQueryNamespace>;
174706
174866
  polarisCollabToken?: Maybe<PolarisDelegationToken>;
174707
174867
  polarisCommentByCommentARI?: Maybe<PolarisComment>;
174708
- polarisGetDetailedReaction?: Maybe<PolarisReactionSummary>;
174709
174868
  polarisGetEarliestOnboardedProjectForCloudId?: Maybe<EarliestOnboardedProjectForCloudId>;
174710
- polarisGetReactions?: Maybe<Array<Maybe<PolarisReaction>>>;
174711
174869
  polarisIdeaTemplates?: Maybe<Array<PolarisIdeaTemplate>>;
174712
174870
  polarisInsight?: Maybe<PolarisInsight>;
174713
174871
  polarisInsights?: Maybe<Array<PolarisInsight>>;
@@ -178001,6 +178159,13 @@ export declare type QueryConfluence_WatermarkConfigArgs = {
178001
178159
  export declare type QueryConfluence_WhiteboardTemplatesArgs = {
178002
178160
  cloudId: Scalars['ID']['input'];
178003
178161
  };
178162
+ export declare type QueryConfluence_WorkflowApplicationHistoryArgs = {
178163
+ after?: InputMaybe<Scalars['String']['input']>;
178164
+ cloudId: Scalars['ID']['input'];
178165
+ contentId: Scalars['ID']['input'];
178166
+ contentStatuses: Array<InputMaybe<GraphQlContentStatus>>;
178167
+ first?: InputMaybe<Scalars['Int']['input']>;
178168
+ };
178004
178169
  export declare type QueryConnectionManager_ConnectionsByJiraProjectArgs = {
178005
178170
  filter?: InputMaybe<ConnectionManagerConnectionsFilter>;
178006
178171
  jiraProjectARI?: InputMaybe<Scalars['String']['input']>;
@@ -195536,21 +195701,24 @@ export declare type QueryPlaybook_JiraPlaybooksForProjectArgs = {
195536
195701
  projectKey: Scalars['String']['input'];
195537
195702
  sort?: InputMaybe<Array<JiraPlaybooksSortInput>>;
195538
195703
  };
195704
+ export declare type QueryPlaybook_MitigationByIdArgs = {
195705
+ cloudId: Scalars['ID']['input'];
195706
+ mitigationId: Scalars['ID']['input'];
195707
+ };
195708
+ export declare type QueryPlaybook_MitigationByScopeArgs = {
195709
+ cloudId: Scalars['ID']['input'];
195710
+ scopeId: Scalars['ID']['input'];
195711
+ scopeType: MitigationScopeType;
195712
+ };
195539
195713
  export declare type QueryPolarisCollabTokenArgs = {
195540
195714
  viewID: Scalars['ID']['input'];
195541
195715
  };
195542
195716
  export declare type QueryPolarisCommentByCommentAriArgs = {
195543
195717
  commentAri: Scalars['ID']['input'];
195544
195718
  };
195545
- export declare type QueryPolarisGetDetailedReactionArgs = {
195546
- input: PolarisGetDetailedReactionInput;
195547
- };
195548
195719
  export declare type QueryPolarisGetEarliestOnboardedProjectForCloudIdArgs = {
195549
195720
  id: Scalars['ID']['input'];
195550
195721
  };
195551
- export declare type QueryPolarisGetReactionsArgs = {
195552
- input: PolarisGetReactionsInput;
195553
- };
195554
195722
  export declare type QueryPolarisIdeaTemplatesArgs = {
195555
195723
  project: Scalars['ID']['input'];
195556
195724
  };
@@ -196976,6 +197144,7 @@ export declare type RadarConnector = {
196976
197144
  type?: Maybe<RadarConnectorType>;
196977
197145
  };
196978
197146
  export declare enum RadarConnectorType {
197147
+ Ai = "AI",
196979
197148
  Csv = "CSV",
196980
197149
  HrisS3 = "HRIS_S3",
196981
197150
  Workday = "WORKDAY"
@@ -197302,6 +197471,11 @@ export declare type RadarLongFieldValue = {
197302
197471
  isRestricted?: Maybe<Scalars['Boolean']['output']>;
197303
197472
  value?: Maybe<Scalars['Long']['output']>;
197304
197473
  };
197474
+ export declare enum RadarMetricScopeType {
197475
+ All = "ALL",
197476
+ FocusArea = "FOCUS_AREA",
197477
+ ReportingLine = "REPORTING_LINE"
197478
+ }
197305
197479
  export declare type RadarMetricSettings = {
197306
197480
  __typename?: 'RadarMetricSettings';
197307
197481
  id: Scalars['ID']['output'];
@@ -197324,11 +197498,15 @@ export declare type RadarMetricValue = {
197324
197498
  __typename?: 'RadarMetricValue';
197325
197499
  dimensionName: Scalars['String']['output'];
197326
197500
  id: Scalars['ID']['output'];
197501
+ scopeId?: Maybe<Scalars['String']['output']>;
197502
+ scopeType?: Maybe<RadarMetricScopeType>;
197327
197503
  target: Scalars['Float']['output'];
197328
197504
  tolerance?: Maybe<Scalars['Float']['output']>;
197329
197505
  };
197330
197506
  export declare type RadarMetricValueInput = {
197331
197507
  dimensionName: Scalars['String']['input'];
197508
+ scopeId?: InputMaybe<Scalars['String']['input']>;
197509
+ scopeType?: InputMaybe<RadarMetricScopeType>;
197332
197510
  target: Scalars['Float']['input'];
197333
197511
  tolerance?: InputMaybe<Scalars['Float']['input']>;
197334
197512
  };
@@ -197816,6 +197994,12 @@ export declare type RateLimitPolicyProperty = {
197816
197994
  argumentPath: Scalars['String']['input'];
197817
197995
  useCloudIdFromARI?: Scalars['Boolean']['input'];
197818
197996
  };
197997
+ export declare type RateLimitProperties = {
197998
+ __typename?: 'RateLimitProperties';
197999
+ rateLimitRemaining?: Maybe<Scalars['Int']['output']>;
198000
+ rateLimitReset?: Maybe<Scalars['Int']['output']>;
198001
+ rateLimitValue?: Maybe<Scalars['Int']['output']>;
198002
+ };
197819
198003
  export declare enum RateLimitingCurrency {
197820
198004
  CannedResponseMutationCurrency = "CANNED_RESPONSE_MUTATION_CURRENCY",
197821
198005
  CannedResponseQueryCurrency = "CANNED_RESPONSE_QUERY_CURRENCY",
@@ -198048,6 +198232,16 @@ export declare type RegisterTunnelResponse = Payload & {
198048
198232
  tunnelToken?: Maybe<Scalars['String']['output']>;
198049
198233
  tunnelUrl?: Maybe<Scalars['String']['output']>;
198050
198234
  };
198235
+ export declare type RejectIndicatorInput = {
198236
+ cloudId: Scalars['ID']['input'];
198237
+ indicatorId: Scalars['ID']['input'];
198238
+ reason: IndicatorRejectionReason;
198239
+ };
198240
+ export declare type RejectPlanInput = {
198241
+ cloudId: Scalars['ID']['input'];
198242
+ planId: Scalars['ID']['input'];
198243
+ reason: PlanRejectionReason;
198244
+ };
198051
198245
  export declare enum RelationSourceType {
198052
198246
  User = "user"
198053
198247
  }
@@ -220430,7 +220624,9 @@ export declare type SmartsContextServiceCollaboratorRecommendation = {
220430
220624
  __typename?: 'SmartsContextServiceCollaboratorRecommendation';
220431
220625
  context?: Maybe<Scalars['String']['output']>;
220432
220626
  id: Scalars['ID']['output'];
220627
+ kwShare?: Maybe<Scalars['Float']['output']>;
220433
220628
  score?: Maybe<Scalars['Float']['output']>;
220629
+ topKw?: Maybe<Scalars['String']['output']>;
220434
220630
  user?: Maybe<User>;
220435
220631
  };
220436
220632
  export declare type SmartsContextServiceOrbitObjectRecommendation = {
@@ -225117,6 +225313,13 @@ export declare enum SwimlaneStrategy {
225117
225313
  None = "NONE",
225118
225314
  Townsquareproject = "TOWNSQUAREPROJECT"
225119
225315
  }
225316
+ export declare type SymptomIndicator = {
225317
+ __typename?: 'SymptomIndicator';
225318
+ provenance: Array<IndicatorProvenance>;
225319
+ summary: Scalars['String']['output'];
225320
+ symptomId: Scalars['String']['output'];
225321
+ symptomType: MitigationSymptomType;
225322
+ };
225120
225323
  export declare type SystemSpaceHomepageInput = {
225121
225324
  systemSpaceHomepageTemplate: SystemSpaceHomepageTemplate;
225122
225325
  };
@@ -233932,6 +234135,7 @@ export declare type TrelloMember = Node & {
233932
234135
  avatarUrl?: Maybe<Scalars['URL']['output']>;
233933
234136
  bio?: Maybe<Scalars['String']['output']>;
233934
234137
  bioData?: Maybe<Scalars['JSON']['output']>;
234138
+ boardBackgrounds?: Maybe<TrelloMemberBoardBackgroundConnection>;
233935
234139
  boardStars?: Maybe<TrelloMemberBoardStarConnection>;
233936
234140
  boards?: Maybe<TrelloMemberBoardConnection>;
233937
234141
  boardsV2?: Maybe<TrelloMemberBaseBoardConnection>;
@@ -233965,6 +234169,10 @@ export declare type TrelloMemberAtlassianSitesArgs = {
233965
234169
  after?: InputMaybe<Scalars['String']['input']>;
233966
234170
  first?: InputMaybe<Scalars['Int']['input']>;
233967
234171
  };
234172
+ export declare type TrelloMemberBoardBackgroundsArgs = {
234173
+ after?: InputMaybe<Scalars['String']['input']>;
234174
+ first?: InputMaybe<Scalars['Int']['input']>;
234175
+ };
233968
234176
  export declare type TrelloMemberBoardStarsArgs = {
233969
234177
  after?: InputMaybe<Scalars['String']['input']>;
233970
234178
  first?: InputMaybe<Scalars['Int']['input']>;
@@ -234029,6 +234237,17 @@ export declare type TrelloMemberBaseBoardEdge = {
234029
234237
  cursor: Scalars['String']['output'];
234030
234238
  node?: Maybe<TrelloBaseBoard>;
234031
234239
  };
234240
+ export declare type TrelloMemberBoardBackgroundConnection = {
234241
+ __typename?: 'TrelloMemberBoardBackgroundConnection';
234242
+ edges?: Maybe<Array<TrelloMemberBoardBackgroundEdge>>;
234243
+ nodes?: Maybe<Array<TrelloBoardBackground>>;
234244
+ pageInfo: PageInfo;
234245
+ };
234246
+ export declare type TrelloMemberBoardBackgroundEdge = {
234247
+ __typename?: 'TrelloMemberBoardBackgroundEdge';
234248
+ cursor: Scalars['String']['output'];
234249
+ node?: Maybe<TrelloBoardBackground>;
234250
+ };
234032
234251
  export declare type TrelloMemberBoardConnection = {
234033
234252
  __typename?: 'TrelloMemberBoardConnection';
234034
234253
  edges?: Maybe<Array<TrelloMemberBoardEdge>>;
@@ -237273,6 +237492,17 @@ export declare type TrelloWorkspaceUpdated = {
237273
237492
  planner?: Maybe<TrelloPlannerUpdated>;
237274
237493
  powerUpData?: Maybe<TrelloPowerUpDataConnectionUpdated>;
237275
237494
  };
237495
+ export declare type TriggerMitigationInput = {
237496
+ cloudId: Scalars['ID']['input'];
237497
+ scopeId: Scalars['ID']['input'];
237498
+ scopeType: MitigationScopeType;
237499
+ };
237500
+ export declare type TriggerMitigationPayload = Payload & {
237501
+ __typename?: 'TriggerMitigationPayload';
237502
+ errors?: Maybe<Array<MutationError>>;
237503
+ mitigation?: Maybe<Mitigation>;
237504
+ success: Scalars['Boolean']['output'];
237505
+ };
237276
237506
  export declare type TrustSignal = {
237277
237507
  __typename?: 'TrustSignal';
237278
237508
  key: Scalars['ID']['output'];
@@ -238836,6 +239066,14 @@ export declare type UnlinkExternalSourcePayload = Payload & {
238836
239066
  errors?: Maybe<Array<MutationError>>;
238837
239067
  success: Scalars['Boolean']['output'];
238838
239068
  };
239069
+ export declare type UnrejectIndicatorInput = {
239070
+ cloudId: Scalars['ID']['input'];
239071
+ indicatorId: Scalars['ID']['input'];
239072
+ };
239073
+ export declare type UnrejectPlanInput = {
239074
+ cloudId: Scalars['ID']['input'];
239075
+ planId: Scalars['ID']['input'];
239076
+ };
238839
239077
  export declare type UnwatchMarketplaceAppPayload = Payload & {
238840
239078
  __typename?: 'UnwatchMarketplaceAppPayload';
238841
239079
  errors?: Maybe<Array<MutationError>>;