@forge/cli-shared 8.17.1-next.1 → 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.
package/CHANGELOG.md CHANGED
@@ -1,5 +1,12 @@
1
1
  # @forge/cli-shared
2
2
 
3
+ ## 8.17.1-next.2
4
+
5
+ ### Patch Changes
6
+
7
+ - Updated dependencies [34fc90d]
8
+ - @forge/manifest@12.4.0-next.1
9
+
3
10
  ## 8.17.1-next.1
4
11
 
5
12
  ### Patch Changes
@@ -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 = {
@@ -40545,6 +40678,7 @@ export declare type EnabledFeatures = {
40545
40678
  isAppsEnabled: Scalars['Boolean']['output'];
40546
40679
  isAutomationEnabled: Scalars['Boolean']['output'];
40547
40680
  isCalendarsEnabled: Scalars['Boolean']['output'];
40681
+ isContentApprovalsEnabled?: Maybe<Scalars['Boolean']['output']>;
40548
40682
  isContentManagerEnabled: Scalars['Boolean']['output'];
40549
40683
  isQuestionsEnabled: Scalars['Boolean']['output'];
40550
40684
  isShortcutsEnabled: Scalars['Boolean']['output'];
@@ -40554,6 +40688,7 @@ export declare type EnabledFeaturesInput = {
40554
40688
  isAppsEnabled?: InputMaybe<Scalars['Boolean']['input']>;
40555
40689
  isAutomationEnabled?: InputMaybe<Scalars['Boolean']['input']>;
40556
40690
  isCalendarsEnabled?: InputMaybe<Scalars['Boolean']['input']>;
40691
+ isContentApprovalsEnabled?: InputMaybe<Scalars['Boolean']['input']>;
40557
40692
  isContentManagerEnabled?: InputMaybe<Scalars['Boolean']['input']>;
40558
40693
  isQuestionsEnabled?: InputMaybe<Scalars['Boolean']['input']>;
40559
40694
  isShortcutsEnabled?: InputMaybe<Scalars['Boolean']['input']>;
@@ -134391,7 +134526,7 @@ export declare type MercuryChangeProposalFunding = {
134391
134526
  __typename?: 'MercuryChangeProposalFunding';
134392
134527
  fundsRequested?: Maybe<Scalars['BigDecimal']['output']>;
134393
134528
  targetBenefit?: Maybe<Scalars['BigDecimal']['output']>;
134394
- targetRoi?: Maybe<Scalars['Float']['output']>;
134529
+ targetRoi?: Maybe<Scalars['BigDecimal']['output']>;
134395
134530
  };
134396
134531
  export declare type MercuryChangeProposalImpact = {
134397
134532
  __typename?: 'MercuryChangeProposalImpact';
@@ -137897,6 +138032,7 @@ export declare type MercuryRisksMutationApi = {
137897
138032
  unlinkRiskFromFocusAreas?: Maybe<MercuryUnlinkRiskFromFocusAreasPayload>;
137898
138033
  updateRiskDescription?: Maybe<MercuryUpdateRiskPayload>;
137899
138034
  updateRiskImpact?: Maybe<MercuryUpdateRiskPayload>;
138035
+ updateRiskJustification?: Maybe<MercuryUpdateRiskPayload>;
137900
138036
  updateRiskLikelihood?: Maybe<MercuryUpdateRiskPayload>;
137901
138037
  updateRiskName?: Maybe<MercuryUpdateRiskPayload>;
137902
138038
  updateRiskOwner?: Maybe<MercuryUpdateRiskPayload>;
@@ -137924,6 +138060,9 @@ export declare type MercuryRisksMutationApiUpdateRiskDescriptionArgs = {
137924
138060
  export declare type MercuryRisksMutationApiUpdateRiskImpactArgs = {
137925
138061
  input: MercuryUpdateRiskImpactInput;
137926
138062
  };
138063
+ export declare type MercuryRisksMutationApiUpdateRiskJustificationArgs = {
138064
+ input: MercuryUpdateRiskJustificationInput;
138065
+ };
137927
138066
  export declare type MercuryRisksMutationApiUpdateRiskLikelihoodArgs = {
137928
138067
  input: MercuryUpdateRiskLikelihoodInput;
137929
138068
  };
@@ -138761,7 +138900,7 @@ export declare type MercuryUpdateChangeProposalTargetBenefitInput = {
138761
138900
  };
138762
138901
  export declare type MercuryUpdateChangeProposalTargetRoiInput = {
138763
138902
  id: Scalars['ID']['input'];
138764
- targetRoi?: InputMaybe<Scalars['Float']['input']>;
138903
+ targetRoi?: InputMaybe<Scalars['BigDecimal']['input']>;
138765
138904
  };
138766
138905
  export declare type MercuryUpdateChangeProposalsViewNameInput = {
138767
138906
  id: Scalars['ID']['input'];
@@ -139008,6 +139147,10 @@ export declare type MercuryUpdateRiskImpactInput = {
139008
139147
  id: Scalars['ID']['input'];
139009
139148
  impact: Scalars['Int']['input'];
139010
139149
  };
139150
+ export declare type MercuryUpdateRiskJustificationInput = {
139151
+ id: Scalars['ID']['input'];
139152
+ justification: Scalars['String']['input'];
139153
+ };
139011
139154
  export declare type MercuryUpdateRiskLikelihoodInput = {
139012
139155
  id: Scalars['ID']['input'];
139013
139156
  likelihood: Scalars['Int']['input'];
@@ -139455,11 +139598,13 @@ export declare type Mutation = {
139455
139598
  agentWorkspace_archiveSkill?: Maybe<AgentWorkspaceArchiveSkillPayload>;
139456
139599
  agentWorkspace_assignSkill?: Maybe<AgentWorkspaceAssignSkillPayload>;
139457
139600
  agentWorkspace_createCatalog?: Maybe<AgentWorkspaceCatalogCreateResponse>;
139601
+ agentWorkspace_createCatalogConfig?: Maybe<AgentWorkspaceCatalogConfigCreateResponse>;
139458
139602
  agentWorkspace_createCatalogType?: Maybe<AgentWorkspaceCatalogTypeCreateResponse>;
139459
139603
  agentWorkspace_createHierarchyDefinition?: Maybe<AgentWorkspaceHierarchyDefinitionCreateResponse>;
139460
139604
  agentWorkspace_createSchedule?: Maybe<AgentWorkspaceCreateSchedulePayload>;
139461
139605
  agentWorkspace_createSkill?: Maybe<AgentWorkspaceSkillCreatePayload>;
139462
139606
  agentWorkspace_deleteCatalog?: Maybe<AgentWorkspaceCatalogDeleteResponse>;
139607
+ agentWorkspace_deleteCatalogConfig?: Maybe<AgentWorkspaceCatalogConfigDeleteResponse>;
139463
139608
  agentWorkspace_deleteCatalogType?: Maybe<AgentWorkspaceCatalogTypeDeleteResponse>;
139464
139609
  agentWorkspace_deleteHierarchyDefinition?: Maybe<AgentWorkspaceHierarchyDefinitionDeleteResponse>;
139465
139610
  agentWorkspace_deleteSchedule?: Maybe<AgentWorkspaceDeleteSchedulePayload>;
@@ -139476,8 +139621,10 @@ export declare type Mutation = {
139476
139621
  agentWorkspace_subscribeSkill?: Maybe<AgentWorkspaceSubscribeSkillPayload>;
139477
139622
  agentWorkspace_unsubscribeSkill?: Maybe<AgentWorkspaceUnsubscribeSkillPayload>;
139478
139623
  agentWorkspace_updateCatalog?: Maybe<AgentWorkspaceCatalogUpdateResponse>;
139624
+ agentWorkspace_updateCatalogConfig?: Maybe<AgentWorkspaceCatalogConfigUpdateResponse>;
139479
139625
  agentWorkspace_updateCatalogType?: Maybe<AgentWorkspaceCatalogTypeUpdateResponse>;
139480
139626
  agentWorkspace_updateHierarchyDefinition?: Maybe<AgentWorkspaceHierarchyDefinitionUpdateResponse>;
139627
+ agentWorkspace_updateRoutingConfig?: Maybe<AgentWorkspaceUpdateSmartRoutingConfigPayload>;
139481
139628
  agentWorkspace_updateSchedule?: Maybe<AgentWorkspaceUpdateSchedulePayload>;
139482
139629
  agentWorkspace_updateSkill?: Maybe<AgentWorkspaceSkillUpdatePayload>;
139483
139630
  agentWorkspace_updateSkillProficiency?: Maybe<AgentWorkspaceUpdateSkillProficiencyPayload>;
@@ -139581,6 +139728,7 @@ export declare type Mutation = {
139581
139728
  avp_updateFilterExpression?: Maybe<AvpUpdateFilterExpressionPayload>;
139582
139729
  avp_updateVariable?: Maybe<AvpUpdateVariablePayload>;
139583
139730
  avpanalytics_createModel?: Maybe<AvpAnalyticsCreateModelPayload>;
139731
+ avpanalytics_deleteModel?: Maybe<AvpAnalyticsDeleteModelPayload>;
139584
139732
  avpanalytics_updateModel?: Maybe<AvpAnalyticsUpdateModelPayload>;
139585
139733
  blockService_batchCreateBlocks?: Maybe<BlockServiceBatchRetrieveBlocksPayload>;
139586
139734
  blockService_batchDeleteBlocks?: Maybe<BlockServiceBatchRetrieveBlocksPayload>;
@@ -139703,6 +139851,7 @@ export declare type Mutation = {
139703
139851
  confluence_resolveComments?: Maybe<ConfluenceResolveCommentsPayload>;
139704
139852
  confluence_resolveCommentsByContentId?: Maybe<ConfluenceResolveCommentByContentIdPayload>;
139705
139853
  confluence_restoreContentVersion?: Maybe<ConfluenceRestoreContentVersionPayload>;
139854
+ confluence_setContentApprovalsSpaceSettings?: Maybe<ConfluenceContentApprovalsSpaceSettingsPayload>;
139706
139855
  confluence_setContentGeneralAccessMode?: Maybe<ConfluenceSetContentGeneralAccessModePayload>;
139707
139856
  confluence_setSubCalendarReminder?: Maybe<ConfluenceSetSubCalendarReminderPayload>;
139708
139857
  confluence_shareContent?: Maybe<ConfluenceShareContentPayload>;
@@ -139909,6 +140058,7 @@ export declare type Mutation = {
139909
140058
  disablePublicLinkForSite?: Maybe<PublicLinkSitePayload>;
139910
140059
  disableSuperAdmin?: Maybe<SuperAdminPayload>;
139911
140060
  dlp_reClassify?: Maybe<DlpClassificationJobResponse>;
140061
+ dlp_saveAutoClassificationRuleScope?: Maybe<Scalars['Boolean']['output']>;
139912
140062
  dlp_saveDetectorClassificationMapping?: Maybe<Scalars['Boolean']['output']>;
139913
140063
  dlp_startPreviewRulesImpact?: Maybe<DlpStartPreviewResponse>;
139914
140064
  dlp_unClassify?: Maybe<DlpClassificationJobResponse>;
@@ -140142,6 +140292,7 @@ export declare type Mutation = {
140142
140292
  jpdViewsService_updateGlobalView?: Maybe<JpdViewsServiceUpdateGlobalViewPayload>;
140143
140293
  jsmAgentWorkspace_updateLocations?: Maybe<Scalars['String']['output']>;
140144
140294
  jsmChannels_establishConnection: JsmChannelsEstablishConnectionPayload;
140295
+ jsmChannels_executeDraftResolutionPlanDeletion: JsmChannelsResolutionPlanActionPayload;
140145
140296
  jsmChannels_executeResolutionPlanAction: JsmChannelsResolutionPlanActionPayload;
140146
140297
  jsmChannels_updateExperienceConfiguration: JsmChannelsExperienceConfigurationPayload;
140147
140298
  jsmChannels_updateTaskAgentConfiguration: JsmChannelsTaskAgentConfigurationPayload;
@@ -140795,6 +140946,9 @@ export declare type MutationAgentWorkspace_AssignSkillArgs = {
140795
140946
  export declare type MutationAgentWorkspace_CreateCatalogArgs = {
140796
140947
  input: AgentWorkspaceCreateCatalogInput;
140797
140948
  };
140949
+ export declare type MutationAgentWorkspace_CreateCatalogConfigArgs = {
140950
+ input: AgentWorkspaceCreateCatalogConfigInput;
140951
+ };
140798
140952
  export declare type MutationAgentWorkspace_CreateCatalogTypeArgs = {
140799
140953
  input: AgentWorkspaceCreateCatalogTypeInput;
140800
140954
  };
@@ -140810,6 +140964,9 @@ export declare type MutationAgentWorkspace_CreateSkillArgs = {
140810
140964
  export declare type MutationAgentWorkspace_DeleteCatalogArgs = {
140811
140965
  input: AgentWorkspaceCatalogDeleteInput;
140812
140966
  };
140967
+ export declare type MutationAgentWorkspace_DeleteCatalogConfigArgs = {
140968
+ input: AgentWorkspaceCatalogConfigDeleteInput;
140969
+ };
140813
140970
  export declare type MutationAgentWorkspace_DeleteCatalogTypeArgs = {
140814
140971
  input: AgentWorkspaceCatalogTypeDeleteInput;
140815
140972
  };
@@ -140860,12 +141017,18 @@ export declare type MutationAgentWorkspace_UnsubscribeSkillArgs = {
140860
141017
  export declare type MutationAgentWorkspace_UpdateCatalogArgs = {
140861
141018
  input: AgentWorkspaceUpdateCatalogInput;
140862
141019
  };
141020
+ export declare type MutationAgentWorkspace_UpdateCatalogConfigArgs = {
141021
+ input: AgentWorkspaceUpdateCatalogConfigInput;
141022
+ };
140863
141023
  export declare type MutationAgentWorkspace_UpdateCatalogTypeArgs = {
140864
141024
  input: AgentWorkspaceUpdateCatalogTypeInput;
140865
141025
  };
140866
141026
  export declare type MutationAgentWorkspace_UpdateHierarchyDefinitionArgs = {
140867
141027
  input: AgentWorkspaceUpdateHierarchyDefinitionInput;
140868
141028
  };
141029
+ export declare type MutationAgentWorkspace_UpdateRoutingConfigArgs = {
141030
+ input: AgentWorkspaceUpdateRoutingConfigInput;
141031
+ };
140869
141032
  export declare type MutationAgentWorkspace_UpdateScheduleArgs = {
140870
141033
  input: AgentWorkspaceUpdateScheduleInput;
140871
141034
  };
@@ -141280,6 +141443,10 @@ export declare type MutationAvpanalytics_CreateModelArgs = {
141280
141443
  cloudId: Scalars['ID']['input'];
141281
141444
  input?: InputMaybe<AvpAnalyticsCreateModelInput>;
141282
141445
  };
141446
+ export declare type MutationAvpanalytics_DeleteModelArgs = {
141447
+ cloudId: Scalars['ID']['input'];
141448
+ input?: InputMaybe<AvpAnalyticsDeleteModelInput>;
141449
+ };
141283
141450
  export declare type MutationAvpanalytics_UpdateModelArgs = {
141284
141451
  cloudId: Scalars['ID']['input'];
141285
141452
  input?: InputMaybe<AvpAnalyticsUpdateModelInput>;
@@ -141706,6 +141873,11 @@ export declare type MutationConfluence_RestoreContentVersionArgs = {
141706
141873
  cloudId: Scalars['ID']['input'];
141707
141874
  input?: InputMaybe<ConfluenceRestoreContentVersionInput>;
141708
141875
  };
141876
+ export declare type MutationConfluence_SetContentApprovalsSpaceSettingsArgs = {
141877
+ cloudId: Scalars['ID']['input'];
141878
+ enabled: Scalars['Boolean']['input'];
141879
+ spaceKey: Scalars['String']['input'];
141880
+ };
141709
141881
  export declare type MutationConfluence_SetContentGeneralAccessModeArgs = {
141710
141882
  cloudId: Scalars['ID']['input'];
141711
141883
  input: ConfluenceSetContentGeneralAccessModeInput;
@@ -142472,6 +142644,10 @@ export declare type MutationDisablePublicLinkForPageArgs = {
142472
142644
  export declare type MutationDlp_ReClassifyArgs = {
142473
142645
  orgId?: InputMaybe<Scalars['String']['input']>;
142474
142646
  };
142647
+ export declare type MutationDlp_SaveAutoClassificationRuleScopeArgs = {
142648
+ orgId: Scalars['String']['input'];
142649
+ scope?: InputMaybe<DlpScopeInput>;
142650
+ };
142475
142651
  export declare type MutationDlp_SaveDetectorClassificationMappingArgs = {
142476
142652
  mappingRequests?: InputMaybe<Array<InputMaybe<DlpDetectorClassificationMappingRequestInput>>>;
142477
142653
  orgId?: InputMaybe<Scalars['String']['input']>;
@@ -143174,6 +143350,10 @@ export declare type MutationJsmChannels_EstablishConnectionArgs = {
143174
143350
  input: JsmChannelsEstablishConnectionInput;
143175
143351
  jiraProjectAri: Scalars['ID']['input'];
143176
143352
  };
143353
+ export declare type MutationJsmChannels_ExecuteDraftResolutionPlanDeletionArgs = {
143354
+ conversationId: Scalars['ID']['input'];
143355
+ jiraProjectAri: Scalars['ID']['input'];
143356
+ };
143177
143357
  export declare type MutationJsmChannels_ExecuteResolutionPlanActionArgs = {
143178
143358
  action: JsmChannelsResolutionPlanAction;
143179
143359
  comment?: InputMaybe<Scalars['String']['input']>;
@@ -147487,6 +147667,8 @@ export declare type Query = {
147487
147667
  agentWorkspace_capacity?: Maybe<AgentWorkspaceCapacityConnection>;
147488
147668
  agentWorkspace_capacitySummary?: Maybe<AgentWorkspaceCapacitySummary>;
147489
147669
  agentWorkspace_catalog?: Maybe<AgentWorkspaceCatalog>;
147670
+ agentWorkspace_catalogConfig?: Maybe<AgentWorkspaceCatalogConfig>;
147671
+ agentWorkspace_catalogConfigs?: Maybe<AgentWorkspaceCatalogConfigConnection>;
147490
147672
  agentWorkspace_catalogType?: Maybe<AgentWorkspaceCatalogType>;
147491
147673
  agentWorkspace_catalogTypes?: Maybe<AgentWorkspaceCatalogTypeConnection>;
147492
147674
  agentWorkspace_catalogs?: Maybe<AgentWorkspaceCatalogConnection>;
@@ -147499,6 +147681,7 @@ export declare type Query = {
147499
147681
  agentWorkspace_projectSkill?: Maybe<AgentWorkspaceProjectSkill>;
147500
147682
  agentWorkspace_projectSkills?: Maybe<AgentWorkspaceProjectSkillConnection>;
147501
147683
  agentWorkspace_recommendedAssignees?: Maybe<AgentWorkspaceRecommendedAssigneesResponse>;
147684
+ agentWorkspace_routingConfig?: Maybe<AgentWorkspaceSmartRoutingConfig>;
147502
147685
  agentWorkspace_schedule?: Maybe<AgentWorkspaceSchedule>;
147503
147686
  agentWorkspace_schedules?: Maybe<AgentWorkspaceSchedulesConnection>;
147504
147687
  agentWorkspace_shifts?: Maybe<AgentWorkspaceShiftsConnection>;
@@ -147810,6 +147993,8 @@ export declare type Query = {
147810
147993
  confluence_pdfExportDownloadLink?: Maybe<ConfluencePdfExportDownloadLink>;
147811
147994
  confluence_pdfExportTask?: Maybe<ConfluencePdfExportTask>;
147812
147995
  confluence_pendingRequestExists?: Maybe<ConfluencePendingAccessRequest>;
147996
+ confluence_permittedClassificationLevelsForContent?: Maybe<ConfluencePermittedClassificationLevels>;
147997
+ confluence_permittedClassificationLevelsForSpaceDefault?: Maybe<ConfluencePermittedClassificationLevels>;
147813
147998
  confluence_popularCalendars?: Maybe<ConfluenceCalendarConnection>;
147814
147999
  confluence_principalsByCombinationId?: Maybe<ConfluencePermissionTransitionPrincipalsConnection>;
147815
148000
  confluence_publicLinkSpaceHomePage?: Maybe<PublicLinkPage>;
@@ -149133,6 +149318,12 @@ export declare type QueryAgentWorkspace_CapacitySummaryArgs = {
149133
149318
  export declare type QueryAgentWorkspace_CatalogArgs = {
149134
149319
  input: AgentWorkspaceCatalogInput;
149135
149320
  };
149321
+ export declare type QueryAgentWorkspace_CatalogConfigArgs = {
149322
+ input: AgentWorkspaceCatalogConfigInput;
149323
+ };
149324
+ export declare type QueryAgentWorkspace_CatalogConfigsArgs = {
149325
+ input: AgentWorkspaceCatalogConfigsInput;
149326
+ };
149136
149327
  export declare type QueryAgentWorkspace_CatalogTypeArgs = {
149137
149328
  input: AgentWorkspaceCatalogTypeInput;
149138
149329
  };
@@ -149173,6 +149364,10 @@ export declare type QueryAgentWorkspace_RecommendedAssigneesArgs = {
149173
149364
  issueId?: InputMaybe<Scalars['ID']['input']>;
149174
149365
  projectARI: Scalars['ID']['input'];
149175
149366
  };
149367
+ export declare type QueryAgentWorkspace_RoutingConfigArgs = {
149368
+ cloudId: Scalars['ID']['input'];
149369
+ projectKey: Scalars['String']['input'];
149370
+ };
149176
149371
  export declare type QueryAgentWorkspace_ScheduleArgs = {
149177
149372
  cloudId: Scalars['ID']['input'];
149178
149373
  projectId?: InputMaybe<Scalars['ID']['input']>;
@@ -150571,6 +150766,13 @@ export declare type QueryConfluence_PendingRequestExistsArgs = {
150571
150766
  cloudId: Scalars['ID']['input'];
150572
150767
  contentId: Scalars['ID']['input'];
150573
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
+ };
150574
150776
  export declare type QueryConfluence_PopularCalendarsArgs = {
150575
150777
  after?: InputMaybe<Scalars['String']['input']>;
150576
150778
  before?: InputMaybe<Scalars['String']['input']>;
@@ -156685,7 +156887,26 @@ export declare type SearchQueryApi = {
156685
156887
  search?: Maybe<SearchItemConnection>;
156686
156888
  };
156687
156889
  export declare type SearchQueryApiAsyncSearchArgs = {
156688
- 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>>>;
156689
156910
  };
156690
156911
  export declare type SearchQueryApiConfigurationArgs = {
156691
156912
  cloudId: Scalars['ID']['input'];
@@ -178645,11 +178866,13 @@ export declare type SprintWithStatistics = BaseSprint & {
178645
178866
  startDate?: Maybe<Scalars['DateTime']['output']>;
178646
178867
  };
178647
178868
  export declare type SpssExportFullSiteScanResultsInput = {
178869
+ bootstrapId?: InputMaybe<Scalars['ID']['input']>;
178648
178870
  scanId: Scalars['ID']['input'];
178649
178871
  };
178650
178872
  export declare type SpssExportFullSiteScanResultsPayload = {
178651
178873
  __typename?: 'SpssExportFullSiteScanResultsPayload';
178652
178874
  beganProcessing: Scalars['Boolean']['output'];
178875
+ bootstrapId?: Maybe<Scalars['ID']['output']>;
178653
178876
  scanId: Scalars['ID']['output'];
178654
178877
  skippedProcessingReason?: Maybe<Scalars['String']['output']>;
178655
178878
  };