@forge/cli-shared 8.17.1-next.0 → 8.17.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.
@@ -239,6 +239,16 @@ export declare type AvpAnalyticsDataSourceModelsConnection = {
239
239
  edges?: Maybe<Array<AvpAnalyticsDataSourceModelEdge>>;
240
240
  pageInfo: PageInfo;
241
241
  };
242
+ export declare type AvpAnalyticsDeleteModelInput = {
243
+ forceDelete: Scalars['Boolean']['input'];
244
+ modelId: Scalars['ID']['input'];
245
+ modelVersion?: InputMaybe<Scalars['Int']['input']>;
246
+ };
247
+ export declare type AvpAnalyticsDeleteModelPayload = Payload & {
248
+ __typename?: 'AVPAnalyticsDeleteModelPayload';
249
+ errors?: Maybe<Array<MutationError>>;
250
+ success: Scalars['Boolean']['output'];
251
+ };
242
252
  export declare type AvpAnalyticsError = {
243
253
  __typename?: 'AVPAnalyticsError';
244
254
  message: Scalars['String']['output'];
@@ -3698,6 +3708,21 @@ export declare type AgentAiContextPanelResponse = {
3698
3708
  summary?: Maybe<Scalars['String']['output']>;
3699
3709
  };
3700
3710
  export declare type AgentAiContextPanelResult = AgentAiContextPanelResponse | QueryError;
3711
+ export declare type AgentAiDraftReplyPillData = {
3712
+ __typename?: 'AgentAIDraftReplyPillData';
3713
+ category: Scalars['String']['output'];
3714
+ example?: Maybe<Scalars['String']['output']>;
3715
+ goal?: Maybe<Scalars['String']['output']>;
3716
+ intent?: Maybe<Scalars['String']['output']>;
3717
+ pillId: Scalars['String']['output'];
3718
+ text: Scalars['String']['output'];
3719
+ triggerSummary?: Maybe<Scalars['String']['output']>;
3720
+ };
3721
+ export declare type AgentAiInlineAction = {
3722
+ __typename?: 'AgentAIInlineAction';
3723
+ draftReplyPill?: Maybe<AgentAiDraftReplyPillData>;
3724
+ type: Scalars['String']['output'];
3725
+ };
3701
3726
  export declare type AgentAiIssueSummary = {
3702
3727
  __typename?: 'AgentAIIssueSummary';
3703
3728
  createdAt?: Maybe<Scalars['Long']['output']>;
@@ -3708,6 +3733,7 @@ export declare type AgentAiIssueSummaryResult = AgentAiIssueSummary | QueryError
3708
3733
  export declare type AgentAiNextStep = {
3709
3734
  __typename?: 'AgentAINextStep';
3710
3735
  content: Scalars['String']['output'];
3736
+ inlineAction?: Maybe<AgentAiInlineAction>;
3711
3737
  };
3712
3738
  export declare type AgentAiPanel = {
3713
3739
  __typename?: 'AgentAIPanel';
@@ -5253,14 +5279,84 @@ export declare type AgentWorkspaceCapacitySummary = {
5253
5279
  };
5254
5280
  export declare type AgentWorkspaceCatalog = {
5255
5281
  __typename?: 'AgentWorkspaceCatalog';
5282
+ catalogConfigs?: Maybe<Array<AgentWorkspaceCatalogConfig>>;
5256
5283
  catalogType: AgentWorkspaceCatalogType;
5257
5284
  childCatalogs?: Maybe<Array<AgentWorkspaceCatalog>>;
5258
5285
  description?: Maybe<Scalars['String']['output']>;
5259
5286
  id: Scalars['ID']['output'];
5260
5287
  name: Scalars['String']['output'];
5261
- parentCatalogs?: Maybe<Array<Maybe<AgentWorkspaceCatalog>>>;
5288
+ parentCatalog?: Maybe<AgentWorkspaceCatalog>;
5262
5289
  proficiencyDefinitions: Array<Scalars['String']['output']>;
5263
- skills?: Maybe<Array<AgentWorkspaceSkill>>;
5290
+ };
5291
+ export declare type AgentWorkspaceCatalogAssociationInput = {
5292
+ catalogId: Scalars['ID']['input'];
5293
+ minSkillProficiencyLevel?: InputMaybe<Scalars['Int']['input']>;
5294
+ proficiencyLevel?: InputMaybe<Scalars['Int']['input']>;
5295
+ skillRequirement?: InputMaybe<AgentWorkspaceSkillRequirementEnum>;
5296
+ };
5297
+ export declare type AgentWorkspaceCatalogConfig = {
5298
+ __typename?: 'AgentWorkspaceCatalogConfig';
5299
+ catalog?: Maybe<AgentWorkspaceCatalog>;
5300
+ catalogId: Scalars['ID']['output'];
5301
+ id: Scalars['ID']['output'];
5302
+ minSkillProficiencyLevel?: Maybe<Scalars['Int']['output']>;
5303
+ proficiencyLevel: Scalars['Int']['output'];
5304
+ skill?: Maybe<AgentWorkspaceSkill>;
5305
+ skillId: Scalars['ID']['output'];
5306
+ skillRequirement?: Maybe<AgentWorkspaceSkillRequirementEnum>;
5307
+ };
5308
+ export declare type AgentWorkspaceCatalogConfigConnection = {
5309
+ __typename?: 'AgentWorkspaceCatalogConfigConnection';
5310
+ edges?: Maybe<Array<AgentWorkspaceCatalogConfigEdge>>;
5311
+ nodes?: Maybe<Array<Maybe<AgentWorkspaceCatalogConfig>>>;
5312
+ pageInfo: AgentWorkspacePageInfo;
5313
+ };
5314
+ export declare type AgentWorkspaceCatalogConfigCreateResponse = {
5315
+ __typename?: 'AgentWorkspaceCatalogConfigCreateResponse';
5316
+ catalogConfig?: Maybe<AgentWorkspaceCatalogConfig>;
5317
+ error?: Maybe<Scalars['String']['output']>;
5318
+ success: Scalars['Boolean']['output'];
5319
+ };
5320
+ export declare type AgentWorkspaceCatalogConfigDeleteInput = {
5321
+ cloudId: Scalars['ID']['input'];
5322
+ id: Scalars['ID']['input'];
5323
+ projectId?: InputMaybe<Scalars['ID']['input']>;
5324
+ projectKey?: InputMaybe<Scalars['String']['input']>;
5325
+ };
5326
+ export declare type AgentWorkspaceCatalogConfigDeleteResponse = {
5327
+ __typename?: 'AgentWorkspaceCatalogConfigDeleteResponse';
5328
+ deletedCatalogConfigId?: Maybe<Scalars['ID']['output']>;
5329
+ error?: Maybe<Scalars['String']['output']>;
5330
+ success: Scalars['Boolean']['output'];
5331
+ };
5332
+ export declare type AgentWorkspaceCatalogConfigEdge = {
5333
+ __typename?: 'AgentWorkspaceCatalogConfigEdge';
5334
+ cursor: Scalars['String']['output'];
5335
+ node: AgentWorkspaceCatalogConfig;
5336
+ };
5337
+ export declare type AgentWorkspaceCatalogConfigFilterInput = {
5338
+ catalogId: Scalars['ID']['input'];
5339
+ proficiencyLevel?: InputMaybe<Scalars['Int']['input']>;
5340
+ skillId?: InputMaybe<Scalars['ID']['input']>;
5341
+ };
5342
+ export declare type AgentWorkspaceCatalogConfigInput = {
5343
+ cloudId: Scalars['ID']['input'];
5344
+ id: Scalars['ID']['input'];
5345
+ projectId?: InputMaybe<Scalars['ID']['input']>;
5346
+ projectKey?: InputMaybe<Scalars['String']['input']>;
5347
+ };
5348
+ export declare type AgentWorkspaceCatalogConfigUpdateResponse = {
5349
+ __typename?: 'AgentWorkspaceCatalogConfigUpdateResponse';
5350
+ catalogConfig?: Maybe<AgentWorkspaceCatalogConfig>;
5351
+ error?: Maybe<Scalars['String']['output']>;
5352
+ success: Scalars['Boolean']['output'];
5353
+ };
5354
+ export declare type AgentWorkspaceCatalogConfigsInput = {
5355
+ cloudId: Scalars['ID']['input'];
5356
+ filter?: InputMaybe<AgentWorkspaceCatalogConfigFilterInput>;
5357
+ pagination?: InputMaybe<AgentWorkspacePaginationInput>;
5358
+ projectId?: InputMaybe<Scalars['ID']['input']>;
5359
+ projectKey?: InputMaybe<Scalars['String']['input']>;
5264
5360
  };
5265
5361
  export declare type AgentWorkspaceCatalogConnection = {
5266
5362
  __typename?: 'AgentWorkspaceCatalogConnection';
@@ -5306,11 +5402,12 @@ export declare type AgentWorkspaceCatalogInput = {
5306
5402
  export declare type AgentWorkspaceCatalogType = {
5307
5403
  __typename?: 'AgentWorkspaceCatalogType';
5308
5404
  catalogs?: Maybe<Array<AgentWorkspaceCatalog>>;
5405
+ childCatalogType?: Maybe<AgentWorkspaceCatalogType>;
5309
5406
  description?: Maybe<Scalars['String']['output']>;
5310
5407
  hierarchyDefinition: AgentWorkspaceHierarchyDefinition;
5311
5408
  id: Scalars['ID']['output'];
5312
- level: Scalars['Int']['output'];
5313
5409
  name: Scalars['String']['output'];
5410
+ parentCatalogType?: Maybe<AgentWorkspaceCatalogType>;
5314
5411
  };
5315
5412
  export declare type AgentWorkspaceCatalogTypeConnection = {
5316
5413
  __typename?: 'AgentWorkspaceCatalogTypeConnection';
@@ -5344,7 +5441,6 @@ export declare type AgentWorkspaceCatalogTypeEdge = {
5344
5441
  export declare type AgentWorkspaceCatalogTypeFilterInput = {
5345
5442
  hierarchyDefinitionId?: InputMaybe<Scalars['ID']['input']>;
5346
5443
  ids?: InputMaybe<Array<Scalars['ID']['input']>>;
5347
- level?: InputMaybe<Scalars['Int']['input']>;
5348
5444
  nameContains?: InputMaybe<Scalars['String']['input']>;
5349
5445
  };
5350
5446
  export declare type AgentWorkspaceCatalogTypeInput = {
@@ -5379,22 +5475,33 @@ export declare type AgentWorkspaceCatalogsInput = {
5379
5475
  projectId?: InputMaybe<Scalars['ID']['input']>;
5380
5476
  projectKey?: InputMaybe<Scalars['String']['input']>;
5381
5477
  };
5478
+ export declare type AgentWorkspaceCreateCatalogConfigInput = {
5479
+ catalogId: Scalars['ID']['input'];
5480
+ cloudId: Scalars['ID']['input'];
5481
+ minSkillProficiencyLevel?: InputMaybe<Scalars['Int']['input']>;
5482
+ proficiencyLevel?: InputMaybe<Scalars['Int']['input']>;
5483
+ projectId?: InputMaybe<Scalars['ID']['input']>;
5484
+ projectKey?: InputMaybe<Scalars['String']['input']>;
5485
+ skillId: Scalars['ID']['input'];
5486
+ skillRequirement?: InputMaybe<AgentWorkspaceSkillRequirementEnum>;
5487
+ };
5382
5488
  export declare type AgentWorkspaceCreateCatalogInput = {
5383
5489
  cloudId: Scalars['ID']['input'];
5384
5490
  description?: InputMaybe<Scalars['String']['input']>;
5385
5491
  hierarchyDefinitionId?: InputMaybe<Scalars['ID']['input']>;
5386
5492
  name: Scalars['String']['input'];
5387
- parentCatalogIds?: InputMaybe<Array<Scalars['ID']['input']>>;
5493
+ parentCatalogId?: InputMaybe<Scalars['ID']['input']>;
5388
5494
  proficiencyDefinitions?: InputMaybe<Array<Scalars['String']['input']>>;
5389
5495
  projectId?: InputMaybe<Scalars['ID']['input']>;
5390
5496
  projectKey?: InputMaybe<Scalars['String']['input']>;
5497
+ thresholdLevels?: InputMaybe<Array<Scalars['Float']['input']>>;
5391
5498
  };
5392
5499
  export declare type AgentWorkspaceCreateCatalogTypeInput = {
5393
5500
  cloudId: Scalars['ID']['input'];
5394
5501
  description?: InputMaybe<Scalars['String']['input']>;
5395
- hierarchyDefinitionId: Scalars['ID']['input'];
5396
- level: Scalars['Int']['input'];
5502
+ hierarchyDefinitionId?: InputMaybe<Scalars['ID']['input']>;
5397
5503
  name: Scalars['String']['input'];
5504
+ parentCatalogTypeId?: InputMaybe<Scalars['ID']['input']>;
5398
5505
  projectId?: InputMaybe<Scalars['ID']['input']>;
5399
5506
  projectKey?: InputMaybe<Scalars['String']['input']>;
5400
5507
  };
@@ -5850,10 +5957,10 @@ export declare type AgentWorkspaceShiftsSummary = {
5850
5957
  };
5851
5958
  export declare type AgentWorkspaceSkill = {
5852
5959
  __typename?: 'AgentWorkspaceSkill';
5960
+ catalogConfigs?: Maybe<Array<AgentWorkspaceCatalogConfig>>;
5853
5961
  description?: Maybe<Scalars['String']['output']>;
5854
5962
  id: Scalars['ID']['output'];
5855
5963
  name: Scalars['String']['output'];
5856
- parentCatalogs: Array<AgentWorkspaceCatalog>;
5857
5964
  proficiencyDefinitions: Array<Scalars['String']['output']>;
5858
5965
  projectSkills?: Maybe<Array<AgentWorkspaceProjectSkill>>;
5859
5966
  userSkills?: Maybe<Array<AgentWorkspaceUserSkill>>;
@@ -5865,10 +5972,10 @@ export declare type AgentWorkspaceSkillConnection = {
5865
5972
  pageInfo: AgentWorkspacePageInfo;
5866
5973
  };
5867
5974
  export declare type AgentWorkspaceSkillCreateInput = {
5975
+ catalogAssociations: Array<AgentWorkspaceCatalogAssociationInput>;
5868
5976
  cloudId: Scalars['ID']['input'];
5869
5977
  description?: InputMaybe<Scalars['String']['input']>;
5870
5978
  name: Scalars['String']['input'];
5871
- parentCatalogIds: Array<Scalars['ID']['input']>;
5872
5979
  proficiencyDefinitions?: InputMaybe<Array<Scalars['String']['input']>>;
5873
5980
  projectId?: InputMaybe<Scalars['ID']['input']>;
5874
5981
  projectKey?: InputMaybe<Scalars['String']['input']>;
@@ -5917,6 +6024,10 @@ export declare enum AgentWorkspaceSkillMatchType {
5917
6024
  All = "ALL",
5918
6025
  Any = "ANY"
5919
6026
  }
6027
+ export declare enum AgentWorkspaceSkillRequirementEnum {
6028
+ Optional = "OPTIONAL",
6029
+ Required = "REQUIRED"
6030
+ }
5920
6031
  export declare type AgentWorkspaceSkillRequirementInput = {
5921
6032
  minProficiencyLevel: Scalars['Int']['input'];
5922
6033
  skillId: Scalars['ID']['input'];
@@ -6021,22 +6132,28 @@ export declare type AgentWorkspaceUnsubscribeSkillPayload = {
6021
6132
  error?: Maybe<Scalars['String']['output']>;
6022
6133
  success: Scalars['Boolean']['output'];
6023
6134
  };
6135
+ export declare type AgentWorkspaceUpdateCatalogConfigInput = {
6136
+ cloudId: Scalars['ID']['input'];
6137
+ id: Scalars['ID']['input'];
6138
+ minSkillProficiencyLevel?: InputMaybe<Scalars['Int']['input']>;
6139
+ projectId?: InputMaybe<Scalars['ID']['input']>;
6140
+ projectKey?: InputMaybe<Scalars['String']['input']>;
6141
+ skillRequirement?: InputMaybe<AgentWorkspaceSkillRequirementEnum>;
6142
+ };
6024
6143
  export declare type AgentWorkspaceUpdateCatalogInput = {
6025
6144
  cloudId: Scalars['ID']['input'];
6026
6145
  description?: InputMaybe<Scalars['String']['input']>;
6027
6146
  id: Scalars['ID']['input'];
6028
6147
  name?: InputMaybe<Scalars['String']['input']>;
6029
- parentCatalogIds?: InputMaybe<Array<Scalars['ID']['input']>>;
6030
6148
  proficiencyDefinitions?: InputMaybe<Array<Scalars['String']['input']>>;
6031
6149
  projectId?: InputMaybe<Scalars['ID']['input']>;
6032
6150
  projectKey?: InputMaybe<Scalars['String']['input']>;
6151
+ thresholdLevels?: InputMaybe<Array<Scalars['Float']['input']>>;
6033
6152
  };
6034
6153
  export declare type AgentWorkspaceUpdateCatalogTypeInput = {
6035
6154
  cloudId: Scalars['ID']['input'];
6036
6155
  description?: InputMaybe<Scalars['String']['input']>;
6037
- hierarchyDefinitionId?: InputMaybe<Scalars['ID']['input']>;
6038
6156
  id: Scalars['ID']['input'];
6039
- level?: InputMaybe<Scalars['Int']['input']>;
6040
6157
  name?: InputMaybe<Scalars['String']['input']>;
6041
6158
  projectId?: InputMaybe<Scalars['ID']['input']>;
6042
6159
  projectKey?: InputMaybe<Scalars['String']['input']>;
@@ -6049,6 +6166,11 @@ export declare type AgentWorkspaceUpdateHierarchyDefinitionInput = {
6049
6166
  projectId?: InputMaybe<Scalars['ID']['input']>;
6050
6167
  projectKey?: InputMaybe<Scalars['String']['input']>;
6051
6168
  };
6169
+ export declare type AgentWorkspaceUpdateRoutingConfigInput = {
6170
+ cloudId: Scalars['ID']['input'];
6171
+ enabled: Scalars['Boolean']['input'];
6172
+ projectKey: Scalars['String']['input'];
6173
+ };
6052
6174
  export declare type AgentWorkspaceUpdateScheduleInput = {
6053
6175
  agentIds: Array<Scalars['ID']['input']>;
6054
6176
  cloudId: Scalars['ID']['input'];
@@ -14409,7 +14531,9 @@ export declare type ClassificationLevelDetails = {
14409
14531
  userOverrideSetting?: Maybe<Scalars['String']['output']>;
14410
14532
  };
14411
14533
  export declare enum ClassificationLevelSource {
14534
+ Auto = "AUTO",
14412
14535
  Content = "CONTENT",
14536
+ None = "NONE",
14413
14537
  Organization = "ORGANIZATION",
14414
14538
  Space = "SPACE"
14415
14539
  }
@@ -24858,6 +24982,12 @@ export declare type ConfluenceContentApprovalReviewerInput = {
24858
24982
  principalId: Scalars['String']['input'];
24859
24983
  principalType: ConfluencePrincipalType;
24860
24984
  };
24985
+ export declare type ConfluenceContentApprovalsSpaceSettingsPayload = {
24986
+ __typename?: 'ConfluenceContentApprovalsSpaceSettingsPayload';
24987
+ errors: Array<MutationError>;
24988
+ isContentApprovalsEnabled?: Maybe<Scalars['Boolean']['output']>;
24989
+ success: Scalars['Boolean']['output'];
24990
+ };
24861
24991
  export declare type ConfluenceContentBlueprintSpec = {
24862
24992
  __typename?: 'ConfluenceContentBlueprintSpec';
24863
24993
  blueprintId?: Maybe<Scalars['String']['output']>;
@@ -28003,6 +28133,11 @@ export declare type ConfluencePermissionsSummary = {
28003
28133
  totalTeams: Scalars['Int']['output'];
28004
28134
  totalUsers: Scalars['Int']['output'];
28005
28135
  };
28136
+ export declare type ConfluencePermittedClassificationLevels = {
28137
+ __typename?: 'ConfluencePermittedClassificationLevels';
28138
+ classificationLevels?: Maybe<Array<ContentDataClassificationLevel>>;
28139
+ lowestPermittedLevelSource?: Maybe<ClassificationLevelSource>;
28140
+ };
28006
28141
  export declare type ConfluencePerson = {
28007
28142
  __typename?: 'ConfluencePerson';
28008
28143
  accountId?: Maybe<Scalars['String']['output']>;
@@ -29037,11 +29172,9 @@ export declare type ConfluenceSpacePermissionCombinationConnection = {
29037
29172
  edges?: Maybe<Array<Maybe<ConfluenceSpacePermissionCombinationEdge>>>;
29038
29173
  lastUpdatedAt?: Maybe<Scalars['String']['output']>;
29039
29174
  pageInfo: ConfluenceSpacePermissionCombinationPageInfo;
29040
- percentComplete?: Maybe<Scalars['String']['output']>;
29041
29175
  spacePermissionCombinationWithAssignedSpaceRoleCount?: Maybe<Scalars['Long']['output']>;
29042
29176
  spacePermissionCombinationWithoutAssignedSpaceRoleCount?: Maybe<Scalars['Long']['output']>;
29043
29177
  totalCount?: Maybe<Scalars['Long']['output']>;
29044
- totalOccurrences?: Maybe<Scalars['String']['output']>;
29045
29178
  totalRoleMatchCount?: Maybe<Scalars['Long']['output']>;
29046
29179
  };
29047
29180
  export declare type ConfluenceSpacePermissionCombinationEdge = {
@@ -32795,6 +32928,17 @@ export declare type ConvoAiHomeThreadsThirdPartySource = {
32795
32928
  __typename?: 'ConvoAiHomeThreadsThirdPartySource';
32796
32929
  url: Scalars['String']['output'];
32797
32930
  };
32931
+ export declare type ConvoAiJira1p3pRelatedLinksEdge = {
32932
+ __typename?: 'ConvoAiJira1p3pRelatedLinksEdge';
32933
+ node?: Maybe<ConvoAiRelatedLink>;
32934
+ };
32935
+ export declare type ConvoAiJira1p3pRelatedLinksResult = {
32936
+ __typename?: 'ConvoAiJira1p3pRelatedLinksResult';
32937
+ edges?: Maybe<Array<ConvoAiJira1p3pRelatedLinksEdge>>;
32938
+ errors?: Maybe<Array<QueryError>>;
32939
+ no3pConnectorEnabled?: Maybe<Scalars['Boolean']['output']>;
32940
+ no3pConnectorOauthEnabled?: Maybe<Scalars['Boolean']['output']>;
32941
+ };
32798
32942
  export declare type ConvoAiJira3pRelatedLinksEdge = {
32799
32943
  __typename?: 'ConvoAiJira3pRelatedLinksEdge';
32800
32944
  node?: Maybe<ConvoAiThirdPartyRelatedLink>;
@@ -32870,6 +33014,21 @@ export declare enum ConvoAiMessageAuthorRole {
32870
33014
  Assistant = "ASSISTANT",
32871
33015
  Human = "HUMAN"
32872
33016
  }
33017
+ export declare type ConvoAiRelatedLink = {
33018
+ __typename?: 'ConvoAiRelatedLink';
33019
+ iconUrl?: Maybe<Scalars['String']['output']>;
33020
+ id: Scalars['String']['output'];
33021
+ linkType?: Maybe<Scalars['String']['output']>;
33022
+ name: Scalars['String']['output'];
33023
+ productSource?: Maybe<Scalars['String']['output']>;
33024
+ thirdPartySourceProduct?: Maybe<Scalars['String']['output']>;
33025
+ url: Scalars['String']['output'];
33026
+ };
33027
+ export declare enum ConvoAiRelatedLinksMode {
33028
+ FirstParty = "FIRST_PARTY",
33029
+ ThirdParty = "THIRD_PARTY",
33030
+ Unified = "UNIFIED"
33031
+ }
32873
33032
  export declare type ConvoAiThirdPartyRelatedLink = {
32874
33033
  __typename?: 'ConvoAiThirdPartyRelatedLink';
32875
33034
  iconUrl?: Maybe<Scalars['String']['output']>;
@@ -40519,6 +40678,7 @@ export declare type EnabledFeatures = {
40519
40678
  isAppsEnabled: Scalars['Boolean']['output'];
40520
40679
  isAutomationEnabled: Scalars['Boolean']['output'];
40521
40680
  isCalendarsEnabled: Scalars['Boolean']['output'];
40681
+ isContentApprovalsEnabled?: Maybe<Scalars['Boolean']['output']>;
40522
40682
  isContentManagerEnabled: Scalars['Boolean']['output'];
40523
40683
  isQuestionsEnabled: Scalars['Boolean']['output'];
40524
40684
  isShortcutsEnabled: Scalars['Boolean']['output'];
@@ -40528,6 +40688,7 @@ export declare type EnabledFeaturesInput = {
40528
40688
  isAppsEnabled?: InputMaybe<Scalars['Boolean']['input']>;
40529
40689
  isAutomationEnabled?: InputMaybe<Scalars['Boolean']['input']>;
40530
40690
  isCalendarsEnabled?: InputMaybe<Scalars['Boolean']['input']>;
40691
+ isContentApprovalsEnabled?: InputMaybe<Scalars['Boolean']['input']>;
40531
40692
  isContentManagerEnabled?: InputMaybe<Scalars['Boolean']['input']>;
40532
40693
  isQuestionsEnabled?: InputMaybe<Scalars['Boolean']['input']>;
40533
40694
  isShortcutsEnabled?: InputMaybe<Scalars['Boolean']['input']>;
@@ -134365,7 +134526,7 @@ export declare type MercuryChangeProposalFunding = {
134365
134526
  __typename?: 'MercuryChangeProposalFunding';
134366
134527
  fundsRequested?: Maybe<Scalars['BigDecimal']['output']>;
134367
134528
  targetBenefit?: Maybe<Scalars['BigDecimal']['output']>;
134368
- targetRoi?: Maybe<Scalars['Float']['output']>;
134529
+ targetRoi?: Maybe<Scalars['BigDecimal']['output']>;
134369
134530
  };
134370
134531
  export declare type MercuryChangeProposalImpact = {
134371
134532
  __typename?: 'MercuryChangeProposalImpact';
@@ -137871,6 +138032,7 @@ export declare type MercuryRisksMutationApi = {
137871
138032
  unlinkRiskFromFocusAreas?: Maybe<MercuryUnlinkRiskFromFocusAreasPayload>;
137872
138033
  updateRiskDescription?: Maybe<MercuryUpdateRiskPayload>;
137873
138034
  updateRiskImpact?: Maybe<MercuryUpdateRiskPayload>;
138035
+ updateRiskJustification?: Maybe<MercuryUpdateRiskPayload>;
137874
138036
  updateRiskLikelihood?: Maybe<MercuryUpdateRiskPayload>;
137875
138037
  updateRiskName?: Maybe<MercuryUpdateRiskPayload>;
137876
138038
  updateRiskOwner?: Maybe<MercuryUpdateRiskPayload>;
@@ -137898,6 +138060,9 @@ export declare type MercuryRisksMutationApiUpdateRiskDescriptionArgs = {
137898
138060
  export declare type MercuryRisksMutationApiUpdateRiskImpactArgs = {
137899
138061
  input: MercuryUpdateRiskImpactInput;
137900
138062
  };
138063
+ export declare type MercuryRisksMutationApiUpdateRiskJustificationArgs = {
138064
+ input: MercuryUpdateRiskJustificationInput;
138065
+ };
137901
138066
  export declare type MercuryRisksMutationApiUpdateRiskLikelihoodArgs = {
137902
138067
  input: MercuryUpdateRiskLikelihoodInput;
137903
138068
  };
@@ -138735,7 +138900,7 @@ export declare type MercuryUpdateChangeProposalTargetBenefitInput = {
138735
138900
  };
138736
138901
  export declare type MercuryUpdateChangeProposalTargetRoiInput = {
138737
138902
  id: Scalars['ID']['input'];
138738
- targetRoi?: InputMaybe<Scalars['Float']['input']>;
138903
+ targetRoi?: InputMaybe<Scalars['BigDecimal']['input']>;
138739
138904
  };
138740
138905
  export declare type MercuryUpdateChangeProposalsViewNameInput = {
138741
138906
  id: Scalars['ID']['input'];
@@ -138982,6 +139147,10 @@ export declare type MercuryUpdateRiskImpactInput = {
138982
139147
  id: Scalars['ID']['input'];
138983
139148
  impact: Scalars['Int']['input'];
138984
139149
  };
139150
+ export declare type MercuryUpdateRiskJustificationInput = {
139151
+ id: Scalars['ID']['input'];
139152
+ justification: Scalars['String']['input'];
139153
+ };
138985
139154
  export declare type MercuryUpdateRiskLikelihoodInput = {
138986
139155
  id: Scalars['ID']['input'];
138987
139156
  likelihood: Scalars['Int']['input'];
@@ -139429,11 +139598,13 @@ export declare type Mutation = {
139429
139598
  agentWorkspace_archiveSkill?: Maybe<AgentWorkspaceArchiveSkillPayload>;
139430
139599
  agentWorkspace_assignSkill?: Maybe<AgentWorkspaceAssignSkillPayload>;
139431
139600
  agentWorkspace_createCatalog?: Maybe<AgentWorkspaceCatalogCreateResponse>;
139601
+ agentWorkspace_createCatalogConfig?: Maybe<AgentWorkspaceCatalogConfigCreateResponse>;
139432
139602
  agentWorkspace_createCatalogType?: Maybe<AgentWorkspaceCatalogTypeCreateResponse>;
139433
139603
  agentWorkspace_createHierarchyDefinition?: Maybe<AgentWorkspaceHierarchyDefinitionCreateResponse>;
139434
139604
  agentWorkspace_createSchedule?: Maybe<AgentWorkspaceCreateSchedulePayload>;
139435
139605
  agentWorkspace_createSkill?: Maybe<AgentWorkspaceSkillCreatePayload>;
139436
139606
  agentWorkspace_deleteCatalog?: Maybe<AgentWorkspaceCatalogDeleteResponse>;
139607
+ agentWorkspace_deleteCatalogConfig?: Maybe<AgentWorkspaceCatalogConfigDeleteResponse>;
139437
139608
  agentWorkspace_deleteCatalogType?: Maybe<AgentWorkspaceCatalogTypeDeleteResponse>;
139438
139609
  agentWorkspace_deleteHierarchyDefinition?: Maybe<AgentWorkspaceHierarchyDefinitionDeleteResponse>;
139439
139610
  agentWorkspace_deleteSchedule?: Maybe<AgentWorkspaceDeleteSchedulePayload>;
@@ -139450,8 +139621,10 @@ export declare type Mutation = {
139450
139621
  agentWorkspace_subscribeSkill?: Maybe<AgentWorkspaceSubscribeSkillPayload>;
139451
139622
  agentWorkspace_unsubscribeSkill?: Maybe<AgentWorkspaceUnsubscribeSkillPayload>;
139452
139623
  agentWorkspace_updateCatalog?: Maybe<AgentWorkspaceCatalogUpdateResponse>;
139624
+ agentWorkspace_updateCatalogConfig?: Maybe<AgentWorkspaceCatalogConfigUpdateResponse>;
139453
139625
  agentWorkspace_updateCatalogType?: Maybe<AgentWorkspaceCatalogTypeUpdateResponse>;
139454
139626
  agentWorkspace_updateHierarchyDefinition?: Maybe<AgentWorkspaceHierarchyDefinitionUpdateResponse>;
139627
+ agentWorkspace_updateRoutingConfig?: Maybe<AgentWorkspaceUpdateSmartRoutingConfigPayload>;
139455
139628
  agentWorkspace_updateSchedule?: Maybe<AgentWorkspaceUpdateSchedulePayload>;
139456
139629
  agentWorkspace_updateSkill?: Maybe<AgentWorkspaceSkillUpdatePayload>;
139457
139630
  agentWorkspace_updateSkillProficiency?: Maybe<AgentWorkspaceUpdateSkillProficiencyPayload>;
@@ -139555,6 +139728,7 @@ export declare type Mutation = {
139555
139728
  avp_updateFilterExpression?: Maybe<AvpUpdateFilterExpressionPayload>;
139556
139729
  avp_updateVariable?: Maybe<AvpUpdateVariablePayload>;
139557
139730
  avpanalytics_createModel?: Maybe<AvpAnalyticsCreateModelPayload>;
139731
+ avpanalytics_deleteModel?: Maybe<AvpAnalyticsDeleteModelPayload>;
139558
139732
  avpanalytics_updateModel?: Maybe<AvpAnalyticsUpdateModelPayload>;
139559
139733
  blockService_batchCreateBlocks?: Maybe<BlockServiceBatchRetrieveBlocksPayload>;
139560
139734
  blockService_batchDeleteBlocks?: Maybe<BlockServiceBatchRetrieveBlocksPayload>;
@@ -139677,6 +139851,7 @@ export declare type Mutation = {
139677
139851
  confluence_resolveComments?: Maybe<ConfluenceResolveCommentsPayload>;
139678
139852
  confluence_resolveCommentsByContentId?: Maybe<ConfluenceResolveCommentByContentIdPayload>;
139679
139853
  confluence_restoreContentVersion?: Maybe<ConfluenceRestoreContentVersionPayload>;
139854
+ confluence_setContentApprovalsSpaceSettings?: Maybe<ConfluenceContentApprovalsSpaceSettingsPayload>;
139680
139855
  confluence_setContentGeneralAccessMode?: Maybe<ConfluenceSetContentGeneralAccessModePayload>;
139681
139856
  confluence_setSubCalendarReminder?: Maybe<ConfluenceSetSubCalendarReminderPayload>;
139682
139857
  confluence_shareContent?: Maybe<ConfluenceShareContentPayload>;
@@ -139883,6 +140058,7 @@ export declare type Mutation = {
139883
140058
  disablePublicLinkForSite?: Maybe<PublicLinkSitePayload>;
139884
140059
  disableSuperAdmin?: Maybe<SuperAdminPayload>;
139885
140060
  dlp_reClassify?: Maybe<DlpClassificationJobResponse>;
140061
+ dlp_saveAutoClassificationRuleScope?: Maybe<Scalars['Boolean']['output']>;
139886
140062
  dlp_saveDetectorClassificationMapping?: Maybe<Scalars['Boolean']['output']>;
139887
140063
  dlp_startPreviewRulesImpact?: Maybe<DlpStartPreviewResponse>;
139888
140064
  dlp_unClassify?: Maybe<DlpClassificationJobResponse>;
@@ -140116,6 +140292,7 @@ export declare type Mutation = {
140116
140292
  jpdViewsService_updateGlobalView?: Maybe<JpdViewsServiceUpdateGlobalViewPayload>;
140117
140293
  jsmAgentWorkspace_updateLocations?: Maybe<Scalars['String']['output']>;
140118
140294
  jsmChannels_establishConnection: JsmChannelsEstablishConnectionPayload;
140295
+ jsmChannels_executeDraftResolutionPlanDeletion: JsmChannelsResolutionPlanActionPayload;
140119
140296
  jsmChannels_executeResolutionPlanAction: JsmChannelsResolutionPlanActionPayload;
140120
140297
  jsmChannels_updateExperienceConfiguration: JsmChannelsExperienceConfigurationPayload;
140121
140298
  jsmChannels_updateTaskAgentConfiguration: JsmChannelsTaskAgentConfigurationPayload;
@@ -140769,6 +140946,9 @@ export declare type MutationAgentWorkspace_AssignSkillArgs = {
140769
140946
  export declare type MutationAgentWorkspace_CreateCatalogArgs = {
140770
140947
  input: AgentWorkspaceCreateCatalogInput;
140771
140948
  };
140949
+ export declare type MutationAgentWorkspace_CreateCatalogConfigArgs = {
140950
+ input: AgentWorkspaceCreateCatalogConfigInput;
140951
+ };
140772
140952
  export declare type MutationAgentWorkspace_CreateCatalogTypeArgs = {
140773
140953
  input: AgentWorkspaceCreateCatalogTypeInput;
140774
140954
  };
@@ -140784,6 +140964,9 @@ export declare type MutationAgentWorkspace_CreateSkillArgs = {
140784
140964
  export declare type MutationAgentWorkspace_DeleteCatalogArgs = {
140785
140965
  input: AgentWorkspaceCatalogDeleteInput;
140786
140966
  };
140967
+ export declare type MutationAgentWorkspace_DeleteCatalogConfigArgs = {
140968
+ input: AgentWorkspaceCatalogConfigDeleteInput;
140969
+ };
140787
140970
  export declare type MutationAgentWorkspace_DeleteCatalogTypeArgs = {
140788
140971
  input: AgentWorkspaceCatalogTypeDeleteInput;
140789
140972
  };
@@ -140834,12 +141017,18 @@ export declare type MutationAgentWorkspace_UnsubscribeSkillArgs = {
140834
141017
  export declare type MutationAgentWorkspace_UpdateCatalogArgs = {
140835
141018
  input: AgentWorkspaceUpdateCatalogInput;
140836
141019
  };
141020
+ export declare type MutationAgentWorkspace_UpdateCatalogConfigArgs = {
141021
+ input: AgentWorkspaceUpdateCatalogConfigInput;
141022
+ };
140837
141023
  export declare type MutationAgentWorkspace_UpdateCatalogTypeArgs = {
140838
141024
  input: AgentWorkspaceUpdateCatalogTypeInput;
140839
141025
  };
140840
141026
  export declare type MutationAgentWorkspace_UpdateHierarchyDefinitionArgs = {
140841
141027
  input: AgentWorkspaceUpdateHierarchyDefinitionInput;
140842
141028
  };
141029
+ export declare type MutationAgentWorkspace_UpdateRoutingConfigArgs = {
141030
+ input: AgentWorkspaceUpdateRoutingConfigInput;
141031
+ };
140843
141032
  export declare type MutationAgentWorkspace_UpdateScheduleArgs = {
140844
141033
  input: AgentWorkspaceUpdateScheduleInput;
140845
141034
  };
@@ -141254,6 +141443,10 @@ export declare type MutationAvpanalytics_CreateModelArgs = {
141254
141443
  cloudId: Scalars['ID']['input'];
141255
141444
  input?: InputMaybe<AvpAnalyticsCreateModelInput>;
141256
141445
  };
141446
+ export declare type MutationAvpanalytics_DeleteModelArgs = {
141447
+ cloudId: Scalars['ID']['input'];
141448
+ input?: InputMaybe<AvpAnalyticsDeleteModelInput>;
141449
+ };
141257
141450
  export declare type MutationAvpanalytics_UpdateModelArgs = {
141258
141451
  cloudId: Scalars['ID']['input'];
141259
141452
  input?: InputMaybe<AvpAnalyticsUpdateModelInput>;
@@ -141680,6 +141873,11 @@ export declare type MutationConfluence_RestoreContentVersionArgs = {
141680
141873
  cloudId: Scalars['ID']['input'];
141681
141874
  input?: InputMaybe<ConfluenceRestoreContentVersionInput>;
141682
141875
  };
141876
+ export declare type MutationConfluence_SetContentApprovalsSpaceSettingsArgs = {
141877
+ cloudId: Scalars['ID']['input'];
141878
+ enabled: Scalars['Boolean']['input'];
141879
+ spaceKey: Scalars['String']['input'];
141880
+ };
141683
141881
  export declare type MutationConfluence_SetContentGeneralAccessModeArgs = {
141684
141882
  cloudId: Scalars['ID']['input'];
141685
141883
  input: ConfluenceSetContentGeneralAccessModeInput;
@@ -142446,6 +142644,10 @@ export declare type MutationDisablePublicLinkForPageArgs = {
142446
142644
  export declare type MutationDlp_ReClassifyArgs = {
142447
142645
  orgId?: InputMaybe<Scalars['String']['input']>;
142448
142646
  };
142647
+ export declare type MutationDlp_SaveAutoClassificationRuleScopeArgs = {
142648
+ orgId: Scalars['String']['input'];
142649
+ scope?: InputMaybe<DlpScopeInput>;
142650
+ };
142449
142651
  export declare type MutationDlp_SaveDetectorClassificationMappingArgs = {
142450
142652
  mappingRequests?: InputMaybe<Array<InputMaybe<DlpDetectorClassificationMappingRequestInput>>>;
142451
142653
  orgId?: InputMaybe<Scalars['String']['input']>;
@@ -143148,6 +143350,10 @@ export declare type MutationJsmChannels_EstablishConnectionArgs = {
143148
143350
  input: JsmChannelsEstablishConnectionInput;
143149
143351
  jiraProjectAri: Scalars['ID']['input'];
143150
143352
  };
143353
+ export declare type MutationJsmChannels_ExecuteDraftResolutionPlanDeletionArgs = {
143354
+ conversationId: Scalars['ID']['input'];
143355
+ jiraProjectAri: Scalars['ID']['input'];
143356
+ };
143151
143357
  export declare type MutationJsmChannels_ExecuteResolutionPlanActionArgs = {
143152
143358
  action: JsmChannelsResolutionPlanAction;
143153
143359
  comment?: InputMaybe<Scalars['String']['input']>;
@@ -147461,6 +147667,8 @@ export declare type Query = {
147461
147667
  agentWorkspace_capacity?: Maybe<AgentWorkspaceCapacityConnection>;
147462
147668
  agentWorkspace_capacitySummary?: Maybe<AgentWorkspaceCapacitySummary>;
147463
147669
  agentWorkspace_catalog?: Maybe<AgentWorkspaceCatalog>;
147670
+ agentWorkspace_catalogConfig?: Maybe<AgentWorkspaceCatalogConfig>;
147671
+ agentWorkspace_catalogConfigs?: Maybe<AgentWorkspaceCatalogConfigConnection>;
147464
147672
  agentWorkspace_catalogType?: Maybe<AgentWorkspaceCatalogType>;
147465
147673
  agentWorkspace_catalogTypes?: Maybe<AgentWorkspaceCatalogTypeConnection>;
147466
147674
  agentWorkspace_catalogs?: Maybe<AgentWorkspaceCatalogConnection>;
@@ -147473,6 +147681,7 @@ export declare type Query = {
147473
147681
  agentWorkspace_projectSkill?: Maybe<AgentWorkspaceProjectSkill>;
147474
147682
  agentWorkspace_projectSkills?: Maybe<AgentWorkspaceProjectSkillConnection>;
147475
147683
  agentWorkspace_recommendedAssignees?: Maybe<AgentWorkspaceRecommendedAssigneesResponse>;
147684
+ agentWorkspace_routingConfig?: Maybe<AgentWorkspaceSmartRoutingConfig>;
147476
147685
  agentWorkspace_schedule?: Maybe<AgentWorkspaceSchedule>;
147477
147686
  agentWorkspace_schedules?: Maybe<AgentWorkspaceSchedulesConnection>;
147478
147687
  agentWorkspace_shifts?: Maybe<AgentWorkspaceShiftsConnection>;
@@ -147784,6 +147993,8 @@ export declare type Query = {
147784
147993
  confluence_pdfExportDownloadLink?: Maybe<ConfluencePdfExportDownloadLink>;
147785
147994
  confluence_pdfExportTask?: Maybe<ConfluencePdfExportTask>;
147786
147995
  confluence_pendingRequestExists?: Maybe<ConfluencePendingAccessRequest>;
147996
+ confluence_permittedClassificationLevelsForContent?: Maybe<ConfluencePermittedClassificationLevels>;
147997
+ confluence_permittedClassificationLevelsForSpaceDefault?: Maybe<ConfluencePermittedClassificationLevels>;
147787
147998
  confluence_popularCalendars?: Maybe<ConfluenceCalendarConnection>;
147788
147999
  confluence_principalsByCombinationId?: Maybe<ConfluencePermissionTransitionPrincipalsConnection>;
147789
148000
  confluence_publicLinkSpaceHomePage?: Maybe<PublicLinkPage>;
@@ -147866,6 +148077,7 @@ export declare type Query = {
147866
148077
  convoai_confluenceSpaceSummary?: Maybe<ConvoAiConfluenceSpaceSummary>;
147867
148078
  convoai_homeThreads?: Maybe<ConvoAiHomeThreadsResult>;
147868
148079
  convoai_jiraEchoAiFeature?: Maybe<Scalars['String']['output']>;
148080
+ convoai_jiraRelated1p3pLinksSuggestionsByIssueId?: Maybe<ConvoAiJira1p3pRelatedLinksResult>;
147869
148081
  convoai_jiraRelated3pLinksSuggestionsByIssueId?: Maybe<ConvoAiJira3pRelatedLinksResult>;
147870
148082
  convoai_jiraRelatedResourcesSuggestions?: Maybe<ConvoAiJiraIssueRelatedResourcesResult>;
147871
148083
  convoai_jiraSimilarWorkItems?: Maybe<ConvoAiJiraSimilarWorkItemsConnection>;
@@ -149106,6 +149318,12 @@ export declare type QueryAgentWorkspace_CapacitySummaryArgs = {
149106
149318
  export declare type QueryAgentWorkspace_CatalogArgs = {
149107
149319
  input: AgentWorkspaceCatalogInput;
149108
149320
  };
149321
+ export declare type QueryAgentWorkspace_CatalogConfigArgs = {
149322
+ input: AgentWorkspaceCatalogConfigInput;
149323
+ };
149324
+ export declare type QueryAgentWorkspace_CatalogConfigsArgs = {
149325
+ input: AgentWorkspaceCatalogConfigsInput;
149326
+ };
149109
149327
  export declare type QueryAgentWorkspace_CatalogTypeArgs = {
149110
149328
  input: AgentWorkspaceCatalogTypeInput;
149111
149329
  };
@@ -149146,6 +149364,10 @@ export declare type QueryAgentWorkspace_RecommendedAssigneesArgs = {
149146
149364
  issueId?: InputMaybe<Scalars['ID']['input']>;
149147
149365
  projectARI: Scalars['ID']['input'];
149148
149366
  };
149367
+ export declare type QueryAgentWorkspace_RoutingConfigArgs = {
149368
+ cloudId: Scalars['ID']['input'];
149369
+ projectKey: Scalars['String']['input'];
149370
+ };
149149
149371
  export declare type QueryAgentWorkspace_ScheduleArgs = {
149150
149372
  cloudId: Scalars['ID']['input'];
149151
149373
  projectId?: InputMaybe<Scalars['ID']['input']>;
@@ -149164,6 +149386,7 @@ export declare type QueryAgentWorkspace_ShiftsArgs = {
149164
149386
  after?: InputMaybe<Scalars['String']['input']>;
149165
149387
  first?: InputMaybe<Scalars['Int']['input']>;
149166
149388
  input: AgentWorkspaceShiftsQueryInput;
149389
+ isInitialFetch?: InputMaybe<Scalars['Boolean']['input']>;
149167
149390
  };
149168
149391
  export declare type QueryAgentWorkspace_SkillArgs = {
149169
149392
  input: AgentWorkspaceSkillInput;
@@ -149181,6 +149404,7 @@ export declare type QueryAgentWorkspace_TeamSchedulesArgs = {
149181
149404
  after?: InputMaybe<Scalars['String']['input']>;
149182
149405
  first?: InputMaybe<Scalars['Int']['input']>;
149183
149406
  input: AgentWorkspaceTeamSchedulesQueryInput;
149407
+ isInitialFetch?: InputMaybe<Scalars['Boolean']['input']>;
149184
149408
  };
149185
149409
  export declare type QueryAgentWorkspace_UserSkillArgs = {
149186
149410
  input: AgentWorkspaceUserSkillInput;
@@ -150542,6 +150766,13 @@ export declare type QueryConfluence_PendingRequestExistsArgs = {
150542
150766
  cloudId: Scalars['ID']['input'];
150543
150767
  contentId: Scalars['ID']['input'];
150544
150768
  };
150769
+ export declare type QueryConfluence_PermittedClassificationLevelsForContentArgs = {
150770
+ cloudId: Scalars['ID']['input'];
150771
+ contentId: Scalars['ID']['input'];
150772
+ };
150773
+ export declare type QueryConfluence_PermittedClassificationLevelsForSpaceDefaultArgs = {
150774
+ cloudId: Scalars['ID']['input'];
150775
+ };
150545
150776
  export declare type QueryConfluence_PopularCalendarsArgs = {
150546
150777
  after?: InputMaybe<Scalars['String']['input']>;
150547
150778
  before?: InputMaybe<Scalars['String']['input']>;
@@ -150982,6 +151213,16 @@ export declare type QueryConvoai_JiraEchoAiFeatureArgs = {
150982
151213
  cloudId?: InputMaybe<Scalars['ID']['input']>;
150983
151214
  text?: InputMaybe<Scalars['String']['input']>;
150984
151215
  };
151216
+ export declare type QueryConvoai_JiraRelated1p3pLinksSuggestionsByIssueIdArgs = {
151217
+ after?: InputMaybe<Scalars['String']['input']>;
151218
+ before?: InputMaybe<Scalars['String']['input']>;
151219
+ first?: InputMaybe<Scalars['Int']['input']>;
151220
+ id: Scalars['ID']['input'];
151221
+ issueKey: Scalars['String']['input'];
151222
+ last?: InputMaybe<Scalars['Int']['input']>;
151223
+ mode: ConvoAiRelatedLinksMode;
151224
+ projectId?: InputMaybe<Scalars['ID']['input']>;
151225
+ };
150985
151226
  export declare type QueryConvoai_JiraRelated3pLinksSuggestionsByIssueIdArgs = {
150986
151227
  after?: InputMaybe<Scalars['String']['input']>;
150987
151228
  before?: InputMaybe<Scalars['String']['input']>;
@@ -156646,7 +156887,26 @@ export declare type SearchQueryApi = {
156646
156887
  search?: Maybe<SearchItemConnection>;
156647
156888
  };
156648
156889
  export declare type SearchQueryApiAsyncSearchArgs = {
156649
- input: SearchInput;
156890
+ after?: InputMaybe<Scalars['String']['input']>;
156891
+ analytics?: InputMaybe<SearchAnalyticsInput>;
156892
+ before?: InputMaybe<Scalars['String']['input']>;
156893
+ disableQueryReplacement?: InputMaybe<Scalars['Boolean']['input']>;
156894
+ disableWildcardMatching?: InputMaybe<Scalars['Boolean']['input']>;
156895
+ enableHighlighting?: InputMaybe<Scalars['Boolean']['input']>;
156896
+ enableRelevanceDebugging?: InputMaybe<Scalars['Boolean']['input']>;
156897
+ expectResult?: InputMaybe<Scalars['Boolean']['input']>;
156898
+ experience: Scalars['String']['input'];
156899
+ experimentContext?: InputMaybe<SearchExperimentContextInput>;
156900
+ fanoutExperimentCohort?: InputMaybe<Scalars['String']['input']>;
156901
+ filters: SearchFilterInput;
156902
+ first?: InputMaybe<Scalars['Int']['input']>;
156903
+ includeBoostedLinks?: InputMaybe<Scalars['Boolean']['input']>;
156904
+ input?: InputMaybe<SearchInput>;
156905
+ interleaveResults?: InputMaybe<Scalars['Boolean']['input']>;
156906
+ isSearchTool?: InputMaybe<Scalars['Boolean']['input']>;
156907
+ last?: InputMaybe<Scalars['Int']['input']>;
156908
+ query?: InputMaybe<Scalars['String']['input']>;
156909
+ sort?: InputMaybe<Array<InputMaybe<SearchSortInput>>>;
156650
156910
  };
156651
156911
  export declare type SearchQueryApiConfigurationArgs = {
156652
156912
  cloudId: Scalars['ID']['input'];
@@ -178606,11 +178866,13 @@ export declare type SprintWithStatistics = BaseSprint & {
178606
178866
  startDate?: Maybe<Scalars['DateTime']['output']>;
178607
178867
  };
178608
178868
  export declare type SpssExportFullSiteScanResultsInput = {
178869
+ bootstrapId?: InputMaybe<Scalars['ID']['input']>;
178609
178870
  scanId: Scalars['ID']['input'];
178610
178871
  };
178611
178872
  export declare type SpssExportFullSiteScanResultsPayload = {
178612
178873
  __typename?: 'SpssExportFullSiteScanResultsPayload';
178613
178874
  beganProcessing: Scalars['Boolean']['output'];
178875
+ bootstrapId?: Maybe<Scalars['ID']['output']>;
178614
178876
  scanId: Scalars['ID']['output'];
178615
178877
  skippedProcessingReason?: Maybe<Scalars['String']['output']>;
178616
178878
  };