@forge/cli-shared

8.17.1-next.18.17.1-next.2
out/graphql/graphql-types.d.ts
~out/graphql/graphql-types.d.tsModified
+240−17
Index: package/out/graphql/graphql-types.d.ts
===================================================================
--- package/out/graphql/graphql-types.d.ts
+++ package/out/graphql/graphql-types.d.ts
@@ -238,8 +238,18 @@
     __typename?: 'AVPAnalyticsDataSourceModelsConnection';
     edges?: Maybe<Array<AvpAnalyticsDataSourceModelEdge>>;
     pageInfo: PageInfo;
 };
+export declare type AvpAnalyticsDeleteModelInput = {
+    forceDelete: Scalars['Boolean']['input'];
+    modelId: Scalars['ID']['input'];
+    modelVersion?: InputMaybe<Scalars['Int']['input']>;
+};
+export declare type AvpAnalyticsDeleteModelPayload = Payload & {
+    __typename?: 'AVPAnalyticsDeleteModelPayload';
+    errors?: Maybe<Array<MutationError>>;
+    success: Scalars['Boolean']['output'];
+};
 export declare type AvpAnalyticsError = {
     __typename?: 'AVPAnalyticsError';
     message: Scalars['String']['output'];
 };
@@ -3697,8 +3707,23 @@
     suggestedNextSteps?: Maybe<AgentAiSuggestedNextSteps>;
     summary?: Maybe<Scalars['String']['output']>;
 };
 export declare type AgentAiContextPanelResult = AgentAiContextPanelResponse | QueryError;
+export declare type AgentAiDraftReplyPillData = {
+    __typename?: 'AgentAIDraftReplyPillData';
+    category: Scalars['String']['output'];
+    example?: Maybe<Scalars['String']['output']>;
+    goal?: Maybe<Scalars['String']['output']>;
+    intent?: Maybe<Scalars['String']['output']>;
+    pillId: Scalars['String']['output'];
+    text: Scalars['String']['output'];
+    triggerSummary?: Maybe<Scalars['String']['output']>;
+};
+export declare type AgentAiInlineAction = {
+    __typename?: 'AgentAIInlineAction';
+    draftReplyPill?: Maybe<AgentAiDraftReplyPillData>;
+    type: Scalars['String']['output'];
+};
 export declare type AgentAiIssueSummary = {
     __typename?: 'AgentAIIssueSummary';
     createdAt?: Maybe<Scalars['Long']['output']>;
     id?: Maybe<Scalars['String']['output']>;
@@ -3707,8 +3732,9 @@
 export declare type AgentAiIssueSummaryResult = AgentAiIssueSummary | QueryError;
 export declare type AgentAiNextStep = {
     __typename?: 'AgentAINextStep';
     content: Scalars['String']['output'];
+    inlineAction?: Maybe<AgentAiInlineAction>;
 };
 export declare type AgentAiPanel = {
     __typename?: 'AgentAIPanel';
     changesFromLastVisit?: Maybe<Scalars['String']['output']>;
@@ -5252,17 +5278,87 @@
     totalCapacity: Scalars['Int']['output'];
 };
 export declare type AgentWorkspaceCatalog = {
     __typename?: 'AgentWorkspaceCatalog';
+    catalogConfigs?: Maybe<Array<AgentWorkspaceCatalogConfig>>;
     catalogType: AgentWorkspaceCatalogType;
     childCatalogs?: Maybe<Array<AgentWorkspaceCatalog>>;
     description?: Maybe<Scalars['String']['output']>;
     id: Scalars['ID']['output'];
     name: Scalars['String']['output'];
-    parentCatalogs?: Maybe<Array<Maybe<AgentWorkspaceCatalog>>>;
+    parentCatalog?: Maybe<AgentWorkspaceCatalog>;
     proficiencyDefinitions: Array<Scalars['String']['output']>;
-    skills?: Maybe<Array<AgentWorkspaceSkill>>;
 };
+export declare type AgentWorkspaceCatalogAssociationInput = {
+    catalogId: Scalars['ID']['input'];
+    minSkillProficiencyLevel?: InputMaybe<Scalars['Int']['input']>;
+    proficiencyLevel?: InputMaybe<Scalars['Int']['input']>;
+    skillRequirement?: InputMaybe<AgentWorkspaceSkillRequirementEnum>;
+};
+export declare type AgentWorkspaceCatalogConfig = {
+    __typename?: 'AgentWorkspaceCatalogConfig';
+    catalog?: Maybe<AgentWorkspaceCatalog>;
+    catalogId: Scalars['ID']['output'];
+    id: Scalars['ID']['output'];
+    minSkillProficiencyLevel?: Maybe<Scalars['Int']['output']>;
+    proficiencyLevel: Scalars['Int']['output'];
+    skill?: Maybe<AgentWorkspaceSkill>;
+    skillId: Scalars['ID']['output'];
+    skillRequirement?: Maybe<AgentWorkspaceSkillRequirementEnum>;
+};
+export declare type AgentWorkspaceCatalogConfigConnection = {
+    __typename?: 'AgentWorkspaceCatalogConfigConnection';
+    edges?: Maybe<Array<AgentWorkspaceCatalogConfigEdge>>;
+    nodes?: Maybe<Array<Maybe<AgentWorkspaceCatalogConfig>>>;
+    pageInfo: AgentWorkspacePageInfo;
+};
+export declare type AgentWorkspaceCatalogConfigCreateResponse = {
+    __typename?: 'AgentWorkspaceCatalogConfigCreateResponse';
+    catalogConfig?: Maybe<AgentWorkspaceCatalogConfig>;
+    error?: Maybe<Scalars['String']['output']>;
+    success: Scalars['Boolean']['output'];
+};
+export declare type AgentWorkspaceCatalogConfigDeleteInput = {
+    cloudId: Scalars['ID']['input'];
+    id: Scalars['ID']['input'];
+    projectId?: InputMaybe<Scalars['ID']['input']>;
+    projectKey?: InputMaybe<Scalars['String']['input']>;
+};
+export declare type AgentWorkspaceCatalogConfigDeleteResponse = {
+    __typename?: 'AgentWorkspaceCatalogConfigDeleteResponse';
+    deletedCatalogConfigId?: Maybe<Scalars['ID']['output']>;
+    error?: Maybe<Scalars['String']['output']>;
+    success: Scalars['Boolean']['output'];
+};
+export declare type AgentWorkspaceCatalogConfigEdge = {
+    __typename?: 'AgentWorkspaceCatalogConfigEdge';
+    cursor: Scalars['String']['output'];
+    node: AgentWorkspaceCatalogConfig;
+};
+export declare type AgentWorkspaceCatalogConfigFilterInput = {
+    catalogId: Scalars['ID']['input'];
+    proficiencyLevel?: InputMaybe<Scalars['Int']['input']>;
+    skillId?: InputMaybe<Scalars['ID']['input']>;
+};
+export declare type AgentWorkspaceCatalogConfigInput = {
+    cloudId: Scalars['ID']['input'];
+    id: Scalars['ID']['input'];
+    projectId?: InputMaybe<Scalars['ID']['input']>;
+    projectKey?: InputMaybe<Scalars['String']['input']>;
+};
+export declare type AgentWorkspaceCatalogConfigUpdateResponse = {
+    __typename?: 'AgentWorkspaceCatalogConfigUpdateResponse';
+    catalogConfig?: Maybe<AgentWorkspaceCatalogConfig>;
+    error?: Maybe<Scalars['String']['output']>;
+    success: Scalars['Boolean']['output'];
+};
+export declare type AgentWorkspaceCatalogConfigsInput = {
+    cloudId: Scalars['ID']['input'];
+    filter?: InputMaybe<AgentWorkspaceCatalogConfigFilterInput>;
+    pagination?: InputMaybe<AgentWorkspacePaginationInput>;
+    projectId?: InputMaybe<Scalars['ID']['input']>;
+    projectKey?: InputMaybe<Scalars['String']['input']>;
+};
 export declare type AgentWorkspaceCatalogConnection = {
     __typename?: 'AgentWorkspaceCatalogConnection';
     edges?: Maybe<Array<AgentWorkspaceCatalogEdge>>;
     nodes?: Maybe<Array<Maybe<AgentWorkspaceCatalog>>>;
@@ -5305,13 +5401,14 @@
 };
 export declare type AgentWorkspaceCatalogType = {
     __typename?: 'AgentWorkspaceCatalogType';
     catalogs?: Maybe<Array<AgentWorkspaceCatalog>>;
+    childCatalogType?: Maybe<AgentWorkspaceCatalogType>;
     description?: Maybe<Scalars['String']['output']>;
     hierarchyDefinition: AgentWorkspaceHierarchyDefinition;
     id: Scalars['ID']['output'];
-    level: Scalars['Int']['output'];
     name: Scalars['String']['output'];
+    parentCatalogType?: Maybe<AgentWorkspaceCatalogType>;
 };
 export declare type AgentWorkspaceCatalogTypeConnection = {
     __typename?: 'AgentWorkspaceCatalogTypeConnection';
     edges?: Maybe<Array<AgentWorkspaceCatalogTypeEdge>>;
@@ -5343,9 +5440,8 @@
 };
 export declare type AgentWorkspaceCatalogTypeFilterInput = {
     hierarchyDefinitionId?: InputMaybe<Scalars['ID']['input']>;
     ids?: InputMaybe<Array<Scalars['ID']['input']>>;
-    level?: InputMaybe<Scalars['Int']['input']>;
     nameContains?: InputMaybe<Scalars['String']['input']>;
 };
 export declare type AgentWorkspaceCatalogTypeInput = {
     cloudId: Scalars['ID']['input'];
@@ -5378,24 +5474,35 @@
     pagination?: InputMaybe<AgentWorkspacePaginationInput>;
     projectId?: InputMaybe<Scalars['ID']['input']>;
     projectKey?: InputMaybe<Scalars['String']['input']>;
 };
+export declare type AgentWorkspaceCreateCatalogConfigInput = {
+    catalogId: Scalars['ID']['input'];
+    cloudId: Scalars['ID']['input'];
+    minSkillProficiencyLevel?: InputMaybe<Scalars['Int']['input']>;
+    proficiencyLevel?: InputMaybe<Scalars['Int']['input']>;
+    projectId?: InputMaybe<Scalars['ID']['input']>;
+    projectKey?: InputMaybe<Scalars['String']['input']>;
+    skillId: Scalars['ID']['input'];
+    skillRequirement?: InputMaybe<AgentWorkspaceSkillRequirementEnum>;
+};
 export declare type AgentWorkspaceCreateCatalogInput = {
     cloudId: Scalars['ID']['input'];
     description?: InputMaybe<Scalars['String']['input']>;
     hierarchyDefinitionId?: InputMaybe<Scalars['ID']['input']>;
     name: Scalars['String']['input'];
-    parentCatalogIds?: InputMaybe<Array<Scalars['ID']['input']>>;
+    parentCatalogId?: InputMaybe<Scalars['ID']['input']>;
     proficiencyDefinitions?: InputMaybe<Array<Scalars['String']['input']>>;
     projectId?: InputMaybe<Scalars['ID']['input']>;
     projectKey?: InputMaybe<Scalars['String']['input']>;
+    thresholdLevels?: InputMaybe<Array<Scalars['Float']['input']>>;
 };
 export declare type AgentWorkspaceCreateCatalogTypeInput = {
     cloudId: Scalars['ID']['input'];
     description?: InputMaybe<Scalars['String']['input']>;
-    hierarchyDefinitionId: Scalars['ID']['input'];
-    level: Scalars['Int']['input'];
+    hierarchyDefinitionId?: InputMaybe<Scalars['ID']['input']>;
     name: Scalars['String']['input'];
+    parentCatalogTypeId?: InputMaybe<Scalars['ID']['input']>;
     projectId?: InputMaybe<Scalars['ID']['input']>;
     projectKey?: InputMaybe<Scalars['String']['input']>;
 };
 export declare type AgentWorkspaceCreateHierarchyDefinitionInput = {
@@ -5849,12 +5956,12 @@
     totalShifts: Scalars['Int']['output'];
 };
 export declare type AgentWorkspaceSkill = {
     __typename?: 'AgentWorkspaceSkill';
+    catalogConfigs?: Maybe<Array<AgentWorkspaceCatalogConfig>>;
     description?: Maybe<Scalars['String']['output']>;
     id: Scalars['ID']['output'];
     name: Scalars['String']['output'];
-    parentCatalogs: Array<AgentWorkspaceCatalog>;
     proficiencyDefinitions: Array<Scalars['String']['output']>;
     projectSkills?: Maybe<Array<AgentWorkspaceProjectSkill>>;
     userSkills?: Maybe<Array<AgentWorkspaceUserSkill>>;
 };
@@ -5864,12 +5971,12 @@
     nodes?: Maybe<Array<Maybe<AgentWorkspaceSkill>>>;
     pageInfo: AgentWorkspacePageInfo;
 };
 export declare type AgentWorkspaceSkillCreateInput = {
+    catalogAssociations: Array<AgentWorkspaceCatalogAssociationInput>;
     cloudId: Scalars['ID']['input'];
     description?: InputMaybe<Scalars['String']['input']>;
     name: Scalars['String']['input'];
-    parentCatalogIds: Array<Scalars['ID']['input']>;
     proficiencyDefinitions?: InputMaybe<Array<Scalars['String']['input']>>;
     projectId?: InputMaybe<Scalars['ID']['input']>;
     projectKey?: InputMaybe<Scalars['String']['input']>;
 };
@@ -5916,8 +6023,12 @@
 export declare enum AgentWorkspaceSkillMatchType {
     All = "ALL",
     Any = "ANY"
 }
+export declare enum AgentWorkspaceSkillRequirementEnum {
+    Optional = "OPTIONAL",
+    Required = "REQUIRED"
+}
 export declare type AgentWorkspaceSkillRequirementInput = {
     minProficiencyLevel: Scalars['Int']['input'];
     skillId: Scalars['ID']['input'];
 };
@@ -6020,24 +6131,30 @@
     deletedProjectSkillId?: Maybe<Scalars['ID']['output']>;
     error?: Maybe<Scalars['String']['output']>;
     success: Scalars['Boolean']['output'];
 };
+export declare type AgentWorkspaceUpdateCatalogConfigInput = {
+    cloudId: Scalars['ID']['input'];
+    id: Scalars['ID']['input'];
+    minSkillProficiencyLevel?: InputMaybe<Scalars['Int']['input']>;
+    projectId?: InputMaybe<Scalars['ID']['input']>;
+    projectKey?: InputMaybe<Scalars['String']['input']>;
+    skillRequirement?: InputMaybe<AgentWorkspaceSkillRequirementEnum>;
+};
 export declare type AgentWorkspaceUpdateCatalogInput = {
     cloudId: Scalars['ID']['input'];
     description?: InputMaybe<Scalars['String']['input']>;
     id: Scalars['ID']['input'];
     name?: InputMaybe<Scalars['String']['input']>;
-    parentCatalogIds?: InputMaybe<Array<Scalars['ID']['input']>>;
     proficiencyDefinitions?: InputMaybe<Array<Scalars['String']['input']>>;
     projectId?: InputMaybe<Scalars['ID']['input']>;
     projectKey?: InputMaybe<Scalars['String']['input']>;
+    thresholdLevels?: InputMaybe<Array<Scalars['Float']['input']>>;
 };
 export declare type AgentWorkspaceUpdateCatalogTypeInput = {
     cloudId: Scalars['ID']['input'];
     description?: InputMaybe<Scalars['String']['input']>;
-    hierarchyDefinitionId?: InputMaybe<Scalars['ID']['input']>;
     id: Scalars['ID']['input'];
-    level?: InputMaybe<Scalars['Int']['input']>;
     name?: InputMaybe<Scalars['String']['input']>;
     projectId?: InputMaybe<Scalars['ID']['input']>;
     projectKey?: InputMaybe<Scalars['String']['input']>;
 };
@@ -6048,8 +6165,13 @@
     name?: InputMaybe<Scalars['String']['input']>;
     projectId?: InputMaybe<Scalars['ID']['input']>;
     projectKey?: InputMaybe<Scalars['String']['input']>;
 };
+export declare type AgentWorkspaceUpdateRoutingConfigInput = {
+    cloudId: Scalars['ID']['input'];
+    enabled: Scalars['Boolean']['input'];
+    projectKey: Scalars['String']['input'];
+};
 export declare type AgentWorkspaceUpdateScheduleInput = {
     agentIds: Array<Scalars['ID']['input']>;
     cloudId: Scalars['ID']['input'];
     description?: InputMaybe<Scalars['String']['input']>;
@@ -14408,9 +14530,11 @@
     source?: Maybe<ClassificationLevelSource>;
     userOverrideSetting?: Maybe<Scalars['String']['output']>;
 };
 export declare enum ClassificationLevelSource {
+    Auto = "AUTO",
     Content = "CONTENT",
+    None = "NONE",
     Organization = "ORGANIZATION",
     Space = "SPACE"
 }
 export declare type CloudAppScope = {
@@ -24857,8 +24981,14 @@
     isRequired?: InputMaybe<Scalars['Boolean']['input']>;
     principalId: Scalars['String']['input'];
     principalType: ConfluencePrincipalType;
 };
+export declare type ConfluenceContentApprovalsSpaceSettingsPayload = {
+    __typename?: 'ConfluenceContentApprovalsSpaceSettingsPayload';
+    errors: Array<MutationError>;
+    isContentApprovalsEnabled?: Maybe<Scalars['Boolean']['output']>;
+    success: Scalars['Boolean']['output'];
+};
 export declare type ConfluenceContentBlueprintSpec = {
     __typename?: 'ConfluenceContentBlueprintSpec';
     blueprintId?: Maybe<Scalars['String']['output']>;
     contentTemplateId?: Maybe<Scalars['String']['output']>;
@@ -28002,8 +28132,13 @@
     totalGroups: Scalars['Int']['output'];
     totalTeams: Scalars['Int']['output'];
     totalUsers: Scalars['Int']['output'];
 };
+export declare type ConfluencePermittedClassificationLevels = {
+    __typename?: 'ConfluencePermittedClassificationLevels';
+    classificationLevels?: Maybe<Array<ContentDataClassificationLevel>>;
+    lowestPermittedLevelSource?: Maybe<ClassificationLevelSource>;
+};
 export declare type ConfluencePerson = {
     __typename?: 'ConfluencePerson';
     accountId?: Maybe<Scalars['String']['output']>;
     accountType?: Maybe<Scalars['String']['output']>;
@@ -29036,13 +29171,11 @@
     __typename?: 'ConfluenceSpacePermissionCombinationConnection';
     edges?: Maybe<Array<Maybe<ConfluenceSpacePermissionCombinationEdge>>>;
     lastUpdatedAt?: Maybe<Scalars['String']['output']>;
     pageInfo: ConfluenceSpacePermissionCombinationPageInfo;
-    percentComplete?: Maybe<Scalars['String']['output']>;
     spacePermissionCombinationWithAssignedSpaceRoleCount?: Maybe<Scalars['Long']['output']>;
     spacePermissionCombinationWithoutAssignedSpaceRoleCount?: Maybe<Scalars['Long']['output']>;
     totalCount?: Maybe<Scalars['Long']['output']>;
-    totalOccurrences?: Maybe<Scalars['String']['output']>;
     totalRoleMatchCount?: Maybe<Scalars['Long']['output']>;
 };
 export declare type ConfluenceSpacePermissionCombinationEdge = {
     __typename?: 'ConfluenceSpacePermissionCombinationEdge';
@@ -40544,8 +40677,9 @@
     isAnalyticsEnabled: Scalars['Boolean']['output'];
     isAppsEnabled: Scalars['Boolean']['output'];
     isAutomationEnabled: Scalars['Boolean']['output'];
     isCalendarsEnabled: Scalars['Boolean']['output'];
+    isContentApprovalsEnabled?: Maybe<Scalars['Boolean']['output']>;
     isContentManagerEnabled: Scalars['Boolean']['output'];
     isQuestionsEnabled: Scalars['Boolean']['output'];
     isShortcutsEnabled: Scalars['Boolean']['output'];
 };
@@ -40553,8 +40687,9 @@
     isAnalyticsEnabled?: InputMaybe<Scalars['Boolean']['input']>;
     isAppsEnabled?: InputMaybe<Scalars['Boolean']['input']>;
     isAutomationEnabled?: InputMaybe<Scalars['Boolean']['input']>;
     isCalendarsEnabled?: InputMaybe<Scalars['Boolean']['input']>;
+    isContentApprovalsEnabled?: InputMaybe<Scalars['Boolean']['input']>;
     isContentManagerEnabled?: InputMaybe<Scalars['Boolean']['input']>;
     isQuestionsEnabled?: InputMaybe<Scalars['Boolean']['input']>;
     isShortcutsEnabled?: InputMaybe<Scalars['Boolean']['input']>;
 };
@@ -134390,9 +134525,9 @@
 export declare type MercuryChangeProposalFunding = {
     __typename?: 'MercuryChangeProposalFunding';
     fundsRequested?: Maybe<Scalars['BigDecimal']['output']>;
     targetBenefit?: Maybe<Scalars['BigDecimal']['output']>;
-    targetRoi?: Maybe<Scalars['Float']['output']>;
+    targetRoi?: Maybe<Scalars['BigDecimal']['output']>;
 };
 export declare type MercuryChangeProposalImpact = {
     __typename?: 'MercuryChangeProposalImpact';
     key: Scalars['String']['output'];
@@ -137896,8 +138031,9 @@
     transitionRiskStatus?: Maybe<MercuryTransitionRiskPayload>;
     unlinkRiskFromFocusAreas?: Maybe<MercuryUnlinkRiskFromFocusAreasPayload>;
     updateRiskDescription?: Maybe<MercuryUpdateRiskPayload>;
     updateRiskImpact?: Maybe<MercuryUpdateRiskPayload>;
+    updateRiskJustification?: Maybe<MercuryUpdateRiskPayload>;
     updateRiskLikelihood?: Maybe<MercuryUpdateRiskPayload>;
     updateRiskName?: Maybe<MercuryUpdateRiskPayload>;
     updateRiskOwner?: Maybe<MercuryUpdateRiskPayload>;
     updateRiskSubmitter?: Maybe<MercuryUpdateRiskPayload>;
@@ -137923,8 +138059,11 @@
 };
 export declare type MercuryRisksMutationApiUpdateRiskImpactArgs = {
     input: MercuryUpdateRiskImpactInput;
 };
+export declare type MercuryRisksMutationApiUpdateRiskJustificationArgs = {
+    input: MercuryUpdateRiskJustificationInput;
+};
 export declare type MercuryRisksMutationApiUpdateRiskLikelihoodArgs = {
     input: MercuryUpdateRiskLikelihoodInput;
 };
 export declare type MercuryRisksMutationApiUpdateRiskNameArgs = {
@@ -138760,9 +138899,9 @@
     targetBenefit?: InputMaybe<Scalars['BigDecimal']['input']>;
 };
 export declare type MercuryUpdateChangeProposalTargetRoiInput = {
     id: Scalars['ID']['input'];
-    targetRoi?: InputMaybe<Scalars['Float']['input']>;
+    targetRoi?: InputMaybe<Scalars['BigDecimal']['input']>;
 };
 export declare type MercuryUpdateChangeProposalsViewNameInput = {
     id: Scalars['ID']['input'];
     name: Scalars['String']['input'];
@@ -139007,8 +139146,12 @@
 export declare type MercuryUpdateRiskImpactInput = {
     id: Scalars['ID']['input'];
     impact: Scalars['Int']['input'];
 };
+export declare type MercuryUpdateRiskJustificationInput = {
+    id: Scalars['ID']['input'];
+    justification: Scalars['String']['input'];
+};
 export declare type MercuryUpdateRiskLikelihoodInput = {
     id: Scalars['ID']['input'];
     likelihood: Scalars['Int']['input'];
 };
@@ -139454,13 +139597,15 @@
     agentStudio_uploadDatasetCsv?: Maybe<AgentStudioBatchEvalUploadDatasetPayload>;
     agentWorkspace_archiveSkill?: Maybe<AgentWorkspaceArchiveSkillPayload>;
     agentWorkspace_assignSkill?: Maybe<AgentWorkspaceAssignSkillPayload>;
     agentWorkspace_createCatalog?: Maybe<AgentWorkspaceCatalogCreateResponse>;
+    agentWorkspace_createCatalogConfig?: Maybe<AgentWorkspaceCatalogConfigCreateResponse>;
     agentWorkspace_createCatalogType?: Maybe<AgentWorkspaceCatalogTypeCreateResponse>;
     agentWorkspace_createHierarchyDefinition?: Maybe<AgentWorkspaceHierarchyDefinitionCreateResponse>;
     agentWorkspace_createSchedule?: Maybe<AgentWorkspaceCreateSchedulePayload>;
     agentWorkspace_createSkill?: Maybe<AgentWorkspaceSkillCreatePayload>;
     agentWorkspace_deleteCatalog?: Maybe<AgentWorkspaceCatalogDeleteResponse>;
+    agentWorkspace_deleteCatalogConfig?: Maybe<AgentWorkspaceCatalogConfigDeleteResponse>;
     agentWorkspace_deleteCatalogType?: Maybe<AgentWorkspaceCatalogTypeDeleteResponse>;
     agentWorkspace_deleteHierarchyDefinition?: Maybe<AgentWorkspaceHierarchyDefinitionDeleteResponse>;
     agentWorkspace_deleteSchedule?: Maybe<AgentWorkspaceDeleteSchedulePayload>;
     agentWorkspace_deleteShift?: Maybe<AgentWorkspaceDeleteShiftPayload>;
@@ -139475,10 +139620,12 @@
     agentWorkspace_startBreak?: Maybe<AgentWorkspaceAgentAvailability>;
     agentWorkspace_subscribeSkill?: Maybe<AgentWorkspaceSubscribeSkillPayload>;
     agentWorkspace_unsubscribeSkill?: Maybe<AgentWorkspaceUnsubscribeSkillPayload>;
     agentWorkspace_updateCatalog?: Maybe<AgentWorkspaceCatalogUpdateResponse>;
+    agentWorkspace_updateCatalogConfig?: Maybe<AgentWorkspaceCatalogConfigUpdateResponse>;
     agentWorkspace_updateCatalogType?: Maybe<AgentWorkspaceCatalogTypeUpdateResponse>;
     agentWorkspace_updateHierarchyDefinition?: Maybe<AgentWorkspaceHierarchyDefinitionUpdateResponse>;
+    agentWorkspace_updateRoutingConfig?: Maybe<AgentWorkspaceUpdateSmartRoutingConfigPayload>;
     agentWorkspace_updateSchedule?: Maybe<AgentWorkspaceUpdateSchedulePayload>;
     agentWorkspace_updateSkill?: Maybe<AgentWorkspaceSkillUpdatePayload>;
     agentWorkspace_updateSkillProficiency?: Maybe<AgentWorkspaceUpdateSkillProficiencyPayload>;
     agentWorkspace_updateSmartRoutingConfig?: Maybe<AgentWorkspaceUpdateSmartRoutingConfigPayload>;
@@ -139580,8 +139727,9 @@
     avp_updateDashboardStatus?: Maybe<AvpUpdateDashboardStatusPayload>;
     avp_updateFilterExpression?: Maybe<AvpUpdateFilterExpressionPayload>;
     avp_updateVariable?: Maybe<AvpUpdateVariablePayload>;
     avpanalytics_createModel?: Maybe<AvpAnalyticsCreateModelPayload>;
+    avpanalytics_deleteModel?: Maybe<AvpAnalyticsDeleteModelPayload>;
     avpanalytics_updateModel?: Maybe<AvpAnalyticsUpdateModelPayload>;
     blockService_batchCreateBlocks?: Maybe<BlockServiceBatchRetrieveBlocksPayload>;
     blockService_batchDeleteBlocks?: Maybe<BlockServiceBatchRetrieveBlocksPayload>;
     blockService_batchUpdateBlocks?: Maybe<BlockServiceBatchRetrieveBlocksPayload>;
@@ -139702,8 +139850,9 @@
     confluence_reorderTracks?: Maybe<ConfluenceReorderTrackPayload>;
     confluence_resolveComments?: Maybe<ConfluenceResolveCommentsPayload>;
     confluence_resolveCommentsByContentId?: Maybe<ConfluenceResolveCommentByContentIdPayload>;
     confluence_restoreContentVersion?: Maybe<ConfluenceRestoreContentVersionPayload>;
+    confluence_setContentApprovalsSpaceSettings?: Maybe<ConfluenceContentApprovalsSpaceSettingsPayload>;
     confluence_setContentGeneralAccessMode?: Maybe<ConfluenceSetContentGeneralAccessModePayload>;
     confluence_setSubCalendarReminder?: Maybe<ConfluenceSetSubCalendarReminderPayload>;
     confluence_shareContent?: Maybe<ConfluenceShareContentPayload>;
     confluence_subscribeCalendars?: Maybe<ConfluenceSubscribeCalendarPayload>;
@@ -139908,8 +140057,9 @@
     disablePublicLinkForPage?: Maybe<DisablePublicLinkForPagePayload>;
     disablePublicLinkForSite?: Maybe<PublicLinkSitePayload>;
     disableSuperAdmin?: Maybe<SuperAdminPayload>;
     dlp_reClassify?: Maybe<DlpClassificationJobResponse>;
+    dlp_saveAutoClassificationRuleScope?: Maybe<Scalars['Boolean']['output']>;
     dlp_saveDetectorClassificationMapping?: Maybe<Scalars['Boolean']['output']>;
     dlp_startPreviewRulesImpact?: Maybe<DlpStartPreviewResponse>;
     dlp_unClassify?: Maybe<DlpClassificationJobResponse>;
     ecosystem?: Maybe<EcosystemMutation>;
@@ -140141,8 +140291,9 @@
     jpdViewsService_unassociateGlobalView?: Maybe<JpdViewsServiceUnassociateGlobalViewPayload>;
     jpdViewsService_updateGlobalView?: Maybe<JpdViewsServiceUpdateGlobalViewPayload>;
     jsmAgentWorkspace_updateLocations?: Maybe<Scalars['String']['output']>;
     jsmChannels_establishConnection: JsmChannelsEstablishConnectionPayload;
+    jsmChannels_executeDraftResolutionPlanDeletion: JsmChannelsResolutionPlanActionPayload;
     jsmChannels_executeResolutionPlanAction: JsmChannelsResolutionPlanActionPayload;
     jsmChannels_updateExperienceConfiguration: JsmChannelsExperienceConfigurationPayload;
     jsmChannels_updateTaskAgentConfiguration: JsmChannelsTaskAgentConfigurationPayload;
     jsmChat?: Maybe<JsmChatMutation>;
@@ -140794,8 +140945,11 @@
 };
 export declare type MutationAgentWorkspace_CreateCatalogArgs = {
     input: AgentWorkspaceCreateCatalogInput;
 };
+export declare type MutationAgentWorkspace_CreateCatalogConfigArgs = {
+    input: AgentWorkspaceCreateCatalogConfigInput;
+};
 export declare type MutationAgentWorkspace_CreateCatalogTypeArgs = {
     input: AgentWorkspaceCreateCatalogTypeInput;
 };
 export declare type MutationAgentWorkspace_CreateHierarchyDefinitionArgs = {
@@ -140809,8 +140963,11 @@
 };
 export declare type MutationAgentWorkspace_DeleteCatalogArgs = {
     input: AgentWorkspaceCatalogDeleteInput;
 };
+export declare type MutationAgentWorkspace_DeleteCatalogConfigArgs = {
+    input: AgentWorkspaceCatalogConfigDeleteInput;
+};
 export declare type MutationAgentWorkspace_DeleteCatalogTypeArgs = {
     input: AgentWorkspaceCatalogTypeDeleteInput;
 };
 export declare type MutationAgentWorkspace_DeleteHierarchyDefinitionArgs = {
@@ -140859,14 +141016,20 @@
 };
 export declare type MutationAgentWorkspace_UpdateCatalogArgs = {
     input: AgentWorkspaceUpdateCatalogInput;
 };
+export declare type MutationAgentWorkspace_UpdateCatalogConfigArgs = {
+    input: AgentWorkspaceUpdateCatalogConfigInput;
+};
 export declare type MutationAgentWorkspace_UpdateCatalogTypeArgs = {
     input: AgentWorkspaceUpdateCatalogTypeInput;
 };
 export declare type MutationAgentWorkspace_UpdateHierarchyDefinitionArgs = {
     input: AgentWorkspaceUpdateHierarchyDefinitionInput;
 };
+export declare type MutationAgentWorkspace_UpdateRoutingConfigArgs = {
+    input: AgentWorkspaceUpdateRoutingConfigInput;
+};
 export declare type MutationAgentWorkspace_UpdateScheduleArgs = {
     input: AgentWorkspaceUpdateScheduleInput;
 };
 export declare type MutationAgentWorkspace_UpdateSkillArgs = {
@@ -141279,8 +141442,12 @@
 export declare type MutationAvpanalytics_CreateModelArgs = {
     cloudId: Scalars['ID']['input'];
     input?: InputMaybe<AvpAnalyticsCreateModelInput>;
 };
+export declare type MutationAvpanalytics_DeleteModelArgs = {
+    cloudId: Scalars['ID']['input'];
+    input?: InputMaybe<AvpAnalyticsDeleteModelInput>;
+};
 export declare type MutationAvpanalytics_UpdateModelArgs = {
     cloudId: Scalars['ID']['input'];
     input?: InputMaybe<AvpAnalyticsUpdateModelInput>;
 };
@@ -141705,8 +141872,13 @@
 export declare type MutationConfluence_RestoreContentVersionArgs = {
     cloudId: Scalars['ID']['input'];
     input?: InputMaybe<ConfluenceRestoreContentVersionInput>;
 };
+export declare type MutationConfluence_SetContentApprovalsSpaceSettingsArgs = {
+    cloudId: Scalars['ID']['input'];
+    enabled: Scalars['Boolean']['input'];
+    spaceKey: Scalars['String']['input'];
+};
 export declare type MutationConfluence_SetContentGeneralAccessModeArgs = {
     cloudId: Scalars['ID']['input'];
     input: ConfluenceSetContentGeneralAccessModeInput;
 };
@@ -142471,8 +142643,12 @@
 };
 export declare type MutationDlp_ReClassifyArgs = {
     orgId?: InputMaybe<Scalars['String']['input']>;
 };
+export declare type MutationDlp_SaveAutoClassificationRuleScopeArgs = {
+    orgId: Scalars['String']['input'];
+    scope?: InputMaybe<DlpScopeInput>;
+};
 export declare type MutationDlp_SaveDetectorClassificationMappingArgs = {
     mappingRequests?: InputMaybe<Array<InputMaybe<DlpDetectorClassificationMappingRequestInput>>>;
     orgId?: InputMaybe<Scalars['String']['input']>;
 };
@@ -143173,8 +143349,12 @@
 export declare type MutationJsmChannels_EstablishConnectionArgs = {
     input: JsmChannelsEstablishConnectionInput;
     jiraProjectAri: Scalars['ID']['input'];
 };
+export declare type MutationJsmChannels_ExecuteDraftResolutionPlanDeletionArgs = {
+    conversationId: Scalars['ID']['input'];
+    jiraProjectAri: Scalars['ID']['input'];
+};
 export declare type MutationJsmChannels_ExecuteResolutionPlanActionArgs = {
     action: JsmChannelsResolutionPlanAction;
     comment?: InputMaybe<Scalars['String']['input']>;
     jiraProjectAri: Scalars['ID']['input'];
@@ -147486,8 +147666,10 @@
     agentWorkspace_availableAgents?: Maybe<Array<AgentWorkspaceAgent>>;
     agentWorkspace_capacity?: Maybe<AgentWorkspaceCapacityConnection>;
     agentWorkspace_capacitySummary?: Maybe<AgentWorkspaceCapacitySummary>;
     agentWorkspace_catalog?: Maybe<AgentWorkspaceCatalog>;
+    agentWorkspace_catalogConfig?: Maybe<AgentWorkspaceCatalogConfig>;
+    agentWorkspace_catalogConfigs?: Maybe<AgentWorkspaceCatalogConfigConnection>;
     agentWorkspace_catalogType?: Maybe<AgentWorkspaceCatalogType>;
     agentWorkspace_catalogTypes?: Maybe<AgentWorkspaceCatalogTypeConnection>;
     agentWorkspace_catalogs?: Maybe<AgentWorkspaceCatalogConnection>;
     agentWorkspace_defaultCapacity?: Maybe<AgentWorkspaceDefaultCapacity>;
@@ -147498,8 +147680,9 @@
     agentWorkspace_projectDefaultAvailability?: Maybe<AgentWorkspaceProjectDefaultAvailability>;
     agentWorkspace_projectSkill?: Maybe<AgentWorkspaceProjectSkill>;
     agentWorkspace_projectSkills?: Maybe<AgentWorkspaceProjectSkillConnection>;
     agentWorkspace_recommendedAssignees?: Maybe<AgentWorkspaceRecommendedAssigneesResponse>;
+    agentWorkspace_routingConfig?: Maybe<AgentWorkspaceSmartRoutingConfig>;
     agentWorkspace_schedule?: Maybe<AgentWorkspaceSchedule>;
     agentWorkspace_schedules?: Maybe<AgentWorkspaceSchedulesConnection>;
     agentWorkspace_shifts?: Maybe<AgentWorkspaceShiftsConnection>;
     agentWorkspace_skill?: Maybe<AgentWorkspaceSkill>;
@@ -147809,8 +147992,10 @@
     confluence_notesByProductLink?: Maybe<NoteConnection>;
     confluence_pdfExportDownloadLink?: Maybe<ConfluencePdfExportDownloadLink>;
     confluence_pdfExportTask?: Maybe<ConfluencePdfExportTask>;
     confluence_pendingRequestExists?: Maybe<ConfluencePendingAccessRequest>;
+    confluence_permittedClassificationLevelsForContent?: Maybe<ConfluencePermittedClassificationLevels>;
+    confluence_permittedClassificationLevelsForSpaceDefault?: Maybe<ConfluencePermittedClassificationLevels>;
     confluence_popularCalendars?: Maybe<ConfluenceCalendarConnection>;
     confluence_principalsByCombinationId?: Maybe<ConfluencePermissionTransitionPrincipalsConnection>;
     confluence_publicLinkSpaceHomePage?: Maybe<PublicLinkPage>;
     confluence_question?: Maybe<ConfluenceQuestion>;
@@ -149132,8 +149317,14 @@
 };
 export declare type QueryAgentWorkspace_CatalogArgs = {
     input: AgentWorkspaceCatalogInput;
 };
+export declare type QueryAgentWorkspace_CatalogConfigArgs = {
+    input: AgentWorkspaceCatalogConfigInput;
+};
+export declare type QueryAgentWorkspace_CatalogConfigsArgs = {
+    input: AgentWorkspaceCatalogConfigsInput;
+};
 export declare type QueryAgentWorkspace_CatalogTypeArgs = {
     input: AgentWorkspaceCatalogTypeInput;
 };
 export declare type QueryAgentWorkspace_CatalogTypesArgs = {
@@ -149172,8 +149363,12 @@
     cloudId?: InputMaybe<Scalars['ID']['input']>;
     issueId?: InputMaybe<Scalars['ID']['input']>;
     projectARI: Scalars['ID']['input'];
 };
+export declare type QueryAgentWorkspace_RoutingConfigArgs = {
+    cloudId: Scalars['ID']['input'];
+    projectKey: Scalars['String']['input'];
+};
 export declare type QueryAgentWorkspace_ScheduleArgs = {
     cloudId: Scalars['ID']['input'];
     projectId?: InputMaybe<Scalars['ID']['input']>;
     projectKey?: InputMaybe<Scalars['String']['input']>;
@@ -150570,8 +150765,15 @@
     accessRequestedAaid: Scalars['String']['input'];
     cloudId: Scalars['ID']['input'];
     contentId: Scalars['ID']['input'];
 };
+export declare type QueryConfluence_PermittedClassificationLevelsForContentArgs = {
+    cloudId: Scalars['ID']['input'];
+    contentId: Scalars['ID']['input'];
+};
+export declare type QueryConfluence_PermittedClassificationLevelsForSpaceDefaultArgs = {
+    cloudId: Scalars['ID']['input'];
+};
 export declare type QueryConfluence_PopularCalendarsArgs = {
     after?: InputMaybe<Scalars['String']['input']>;
     before?: InputMaybe<Scalars['String']['input']>;
     cloudId: Scalars['ID']['input'];
@@ -156684,9 +156886,28 @@
     recent?: Maybe<Array<SearchResult>>;
     search?: Maybe<SearchItemConnection>;
 };
 export declare type SearchQueryApiAsyncSearchArgs = {
-    input: SearchInput;
+    after?: InputMaybe<Scalars['String']['input']>;
+    analytics?: InputMaybe<SearchAnalyticsInput>;
+    before?: InputMaybe<Scalars['String']['input']>;
+    disableQueryReplacement?: InputMaybe<Scalars['Boolean']['input']>;
+    disableWildcardMatching?: InputMaybe<Scalars['Boolean']['input']>;
+    enableHighlighting?: InputMaybe<Scalars['Boolean']['input']>;
+    enableRelevanceDebugging?: InputMaybe<Scalars['Boolean']['input']>;
+    expectResult?: InputMaybe<Scalars['Boolean']['input']>;
+    experience: Scalars['String']['input'];
+    experimentContext?: InputMaybe<SearchExperimentContextInput>;
+    fanoutExperimentCohort?: InputMaybe<Scalars['String']['input']>;
+    filters: SearchFilterInput;
+    first?: InputMaybe<Scalars['Int']['input']>;
+    includeBoostedLinks?: InputMaybe<Scalars['Boolean']['input']>;
+    input?: InputMaybe<SearchInput>;
+    interleaveResults?: InputMaybe<Scalars['Boolean']['input']>;
+    isSearchTool?: InputMaybe<Scalars['Boolean']['input']>;
+    last?: InputMaybe<Scalars['Int']['input']>;
+    query?: InputMaybe<Scalars['String']['input']>;
+    sort?: InputMaybe<Array<InputMaybe<SearchSortInput>>>;
 };
 export declare type SearchQueryApiConfigurationArgs = {
     cloudId: Scalars['ID']['input'];
     experience?: InputMaybe<Scalars['String']['input']>;
@@ -178644,13 +178865,15 @@
     sprintState: SprintState;
     startDate?: Maybe<Scalars['DateTime']['output']>;
 };
 export declare type SpssExportFullSiteScanResultsInput = {
+    bootstrapId?: InputMaybe<Scalars['ID']['input']>;
     scanId: Scalars['ID']['input'];
 };
 export declare type SpssExportFullSiteScanResultsPayload = {
     __typename?: 'SpssExportFullSiteScanResultsPayload';
     beganProcessing: Scalars['Boolean']['output'];
+    bootstrapId?: Maybe<Scalars['ID']['output']>;
     scanId: Scalars['ID']['output'];
     skippedProcessingReason?: Maybe<Scalars['String']['output']>;
 };
 export declare enum StakeholderCommsAddedFromType {