@forge/cli-shared

8.17.0-next.28.17.0-next.3
out/graphql/graphql-types.d.ts
~out/graphql/graphql-types.d.tsModified
+310−26
Index: package/out/graphql/graphql-types.d.ts
===================================================================
--- package/out/graphql/graphql-types.d.ts
+++ package/out/graphql/graphql-types.d.ts
@@ -181,11 +181,16 @@
     formula?: InputMaybe<AvpAnalyticsFormulaColumnInput>;
     simple?: InputMaybe<AvpAnalyticsSimpleColumnInput>;
 };
 export declare enum AvpAnalyticsColumnType {
+    Boolean = "BOOLEAN",
+    Date = "DATE",
     DateTime = "DATE_TIME",
+    Double = "DOUBLE",
     Integer = "INTEGER",
-    Text = "TEXT"
+    Reference = "REFERENCE",
+    Text = "TEXT",
+    Time = "TIME"
 }
 export declare type AvpAnalyticsCreateModelInput = {
     modelDefinition?: InputMaybe<AvpAnalyticsModelDefinitionInput>;
     modelDescription?: InputMaybe<Scalars['String']['input']>;
@@ -505,8 +510,23 @@
 export declare enum AvpAnalyticsSortType {
     Asc = "ASC",
     Desc = "DESC"
 }
+export declare type AvpAnalyticsUpdateModelInput = {
+    forceUpdate: Scalars['Boolean']['input'];
+    modelDefinition: AvpAnalyticsModelDefinitionInput;
+    modelDescription?: InputMaybe<Scalars['String']['input']>;
+    modelId: Scalars['ID']['input'];
+    modelName?: InputMaybe<Scalars['String']['input']>;
+    modelVersion: Scalars['Int']['input'];
+    shouldPublish: Scalars['Boolean']['input'];
+};
+export declare type AvpAnalyticsUpdateModelPayload = Payload & {
+    __typename?: 'AVPAnalyticsUpdateModelPayload';
+    errors?: Maybe<Array<MutationError>>;
+    model?: Maybe<AvpAnalyticsModel>;
+    success: Scalars['Boolean']['output'];
+};
 export declare enum AvpCanvasRowHeight {
     Large = "large",
     Medium = "medium",
     Small = "small",
@@ -10419,8 +10439,21 @@
 export declare enum AssetsVerticalBundleType {
     Cdm = "CDM",
     Osc = "OSC"
 }
+export declare type AssetsVerticalCountByStatus = {
+    __typename?: 'AssetsVerticalCountByStatus';
+    counts?: Maybe<Array<Maybe<AssetsVerticalStatusCount>>>;
+};
+export declare type AssetsVerticalCountByStatusInput = {
+    category: AssetsVerticalAttributeCategory;
+    filters?: InputMaybe<Array<InputMaybe<Array<InputMaybe<AssetsVerticalObjectsFilterCondition>>>>>;
+    statusField: Scalars['String']['input'];
+    statuses: Array<Scalars['String']['input']>;
+    verticalInstantiationId: Scalars['ID']['input'];
+    workspaceId: Scalars['ID']['input'];
+};
+export declare type AssetsVerticalCountByStatusResult = AssetsVerticalCountByStatus | QueryError;
 export declare type AssetsVerticalGenerateInsightsInput = {
     cloudId: Scalars['ID']['input'];
 };
 export declare type AssetsVerticalGenerateInsightsPayload = Payload & {
@@ -10472,8 +10505,13 @@
     NotFound = "NOT_FOUND",
     Timeout = "TIMEOUT",
     ValidationError = "VALIDATION_ERROR"
 }
+export declare type AssetsVerticalInventoryErrorExtension = QueryErrorExtension & {
+    __typename?: 'AssetsVerticalInventoryErrorExtension';
+    errorType?: Maybe<Scalars['String']['output']>;
+    statusCode?: Maybe<Scalars['Int']['output']>;
+};
 export declare type AssetsVerticalObject = AssetsVerticalObjectNode & {
     __typename?: 'AssetsVerticalObject';
     avatar?: Maybe<AssetsVerticalAvatar>;
     hasAvatar?: Maybe<Scalars['Boolean']['output']>;
@@ -10497,8 +10535,18 @@
     label?: Maybe<Scalars['String']['output']>;
     name?: Maybe<Scalars['String']['output']>;
     objectKey?: Maybe<Scalars['String']['output']>;
 };
+export declare type AssetsVerticalObjectsFilterCondition = {
+    key?: InputMaybe<Scalars['String']['input']>;
+    operator?: InputMaybe<AssetsVerticalObjectsFilterOperator>;
+    values?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
+};
+export declare enum AssetsVerticalObjectsFilterOperator {
+    Equals = "EQUALS",
+    In = "IN",
+    Like = "LIKE"
+}
 export declare type AssetsVerticalSchemaTemplate = {
     __typename?: 'AssetsVerticalSchemaTemplate';
     description?: Maybe<Scalars['String']['output']>;
     displayName: Scalars['String']['output'];
@@ -10507,8 +10555,13 @@
     name: Scalars['String']['output'];
     objectTypeCount?: Maybe<Scalars['Int']['output']>;
     type: Scalars['String']['output'];
 };
+export declare type AssetsVerticalStatusCount = {
+    __typename?: 'AssetsVerticalStatusCount';
+    count?: Maybe<Scalars['Int']['output']>;
+    statusKey?: Maybe<Scalars['String']['output']>;
+};
 export declare type AssetsVerticalStatusType = {
     __typename?: 'AssetsVerticalStatusType';
     category?: Maybe<Scalars['Int']['output']>;
     description?: Maybe<Scalars['String']['output']>;
@@ -14254,8 +14307,12 @@
 export declare type CloudifyCloudProjectTarget = {
     __typename?: 'CloudifyCloudProjectTarget';
     project: CloudifyProjectAri;
 };
+export declare type CloudifyCloudProjectTargetInput = {
+    projectId: Scalars['ID']['input'];
+    siteId: Scalars['ID']['input'];
+};
 export declare type CloudifyEnactment = {
     __typename?: 'CloudifyEnactment';
     completedAt?: Maybe<Scalars['String']['output']>;
     errorMessage?: Maybe<Scalars['String']['output']>;
@@ -14290,15 +14347,20 @@
     steps: Array<CloudifyRecommendationStep>;
     target: CloudifyRecommendationTarget;
     title: Scalars['String']['output'];
 };
+export declare type CloudifyRecommendationFilterInput = {
+    cloudProject?: InputMaybe<CloudifyCloudProjectTargetInput>;
+    siteId?: InputMaybe<Scalars['ID']['input']>;
+};
 export declare type CloudifyRecommendationId = {
     __typename?: 'CloudifyRecommendationId';
     value: Scalars['String']['output'];
 };
 export declare type CloudifyRecommendationInput = {
     reasoning: Scalars['String']['input'];
     steps: Array<CloudifyStepInput>;
+    target: CloudifyTargetInput;
     title: Scalars['String']['input'];
 };
 export declare type CloudifyRecommendationStep = {
     __typename?: 'CloudifyRecommendationStep';
@@ -14313,8 +14375,11 @@
     reasoning: Scalars['String']['input'];
     title: Scalars['String']['input'];
     toolId: Scalars['String']['input'];
 };
+export declare type CloudifyTargetInput = {
+    cloudProject?: InputMaybe<CloudifyCloudProjectTargetInput>;
+};
 export declare type CloudifyToolId = {
     __typename?: 'CloudifyToolId';
     value: Scalars['String']['output'];
 };
@@ -15144,8 +15209,9 @@
     relatedCustomerAdvocateGeneratedQuoteOpenRevision?: Maybe<CommerceExpCcpQuote>;
     relatedEnterpriseEntitlementForBac?: Maybe<CommerceExpCcpEntitlement>;
     relatedEnterpriseInstanceEntitlements2?: Maybe<CommerceExpCcpEntitlementConnection>;
     relatedEnterpriseInstanceEntitlementsForBac?: Maybe<Array<Maybe<CommerceExpCcpEntitlement>>>;
+    relatedInvoices?: Maybe<Array<Maybe<CommerceExpCcpInvoice>>>;
     relatedQuotes?: Maybe<Array<Maybe<CommerceExpCcpQuote>>>;
     relatesFromEntitlements?: Maybe<Array<Maybe<CommerceExpCcpEntitlementRelationship>>>;
     relatesToEntitlements?: Maybe<Array<Maybe<CommerceExpCcpEntitlementRelationship>>>;
     scheduledPromotions?: Maybe<Array<Maybe<CommerceExpCcpPromotion>>>;
@@ -28386,16 +28452,29 @@
 }
 export declare type ConfluenceSmartSpaceOverview = {
     __typename?: 'ConfluenceSmartSpaceOverview';
     summary?: Maybe<ConfluenceSmartSpaceOverviewSummary>;
+    topLinks?: Maybe<ConfluenceSmartSpaceOverviewTopLinks>;
 };
 export declare type ConfluenceSmartSpaceOverviewSummary = {
     __typename?: 'ConfluenceSmartSpaceOverviewSummary';
     body?: Maybe<Scalars['String']['output']>;
     contentId?: Maybe<Scalars['ID']['output']>;
     isPinned?: Maybe<Scalars['Boolean']['output']>;
-    lastRefreshed?: Maybe<Scalars['String']['output']>;
+    lastRefreshed?: Maybe<Scalars['DateTime']['output']>;
 };
+export declare type ConfluenceSmartSpaceOverviewTopLink = {
+    __typename?: 'ConfluenceSmartSpaceOverviewTopLink';
+    isPinned?: Maybe<Scalars['Boolean']['output']>;
+    title?: Maybe<Scalars['String']['output']>;
+    url?: Maybe<Scalars['String']['output']>;
+};
+export declare type ConfluenceSmartSpaceOverviewTopLinks = {
+    __typename?: 'ConfluenceSmartSpaceOverviewTopLinks';
+    contentId?: Maybe<Scalars['ID']['output']>;
+    lastRefreshed?: Maybe<Scalars['DateTime']['output']>;
+    links?: Maybe<Array<Maybe<ConfluenceSmartSpaceOverviewTopLink>>>;
+};
 export declare type ConfluenceSpace = Node & {
     __typename?: 'ConfluenceSpace';
     alias?: Maybe<Scalars['String']['output']>;
     createdBy?: Maybe<ConfluenceUserInfo>;
@@ -32956,8 +33035,9 @@
     startDate: Scalars['Date']['output'];
     valueFormats?: Maybe<CplsValueFormats>;
 };
 export declare enum CplsWorkType {
+    AtlasProject = "ATLAS_PROJECT",
     CustomContributionTarget = "CUSTOM_CONTRIBUTION_TARGET",
     JiraWorkItem = "JIRA_WORK_ITEM"
 }
 export declare type CplsWorkView = CplsCapacityPlanningWorkView | QueryError;
@@ -34932,8 +35012,18 @@
 };
 export declare enum CustomerServiceEscalationType {
     SupportEscalation = "SUPPORT_ESCALATION"
 }
+export declare type CustomerServiceExternalStatus = {
+    __typename?: 'CustomerServiceExternalStatus';
+    externalLabel: Scalars['String']['output'];
+    jiraStatusIds: Array<Scalars['String']['output']>;
+};
+export declare type CustomerServiceExternalStatusesQueryResult = CustomerServiceExternalStatusesResponse | QueryError;
+export declare type CustomerServiceExternalStatusesResponse = {
+    __typename?: 'CustomerServiceExternalStatusesResponse';
+    externalStatuses: Array<CustomerServiceExternalStatus>;
+};
 export declare type CustomerServiceFilterInput = {
     context: CustomerServiceContext;
 };
 export declare type CustomerServiceIndividual = Node & {
@@ -35381,8 +35471,9 @@
     brandingMediaConfigByEntityType?: Maybe<CustomerServiceBrandingMediaConfigQueryResult>;
     customDetailsByEntityType?: Maybe<CustomerServiceCustomDetailsQueryResult>;
     entitlementById?: Maybe<CustomerServiceEntitlementQueryResult>;
     escalatableJiraProjects?: Maybe<CustomerServiceEscalatableJiraProjectsConnection>;
+    externalStatusesByHelpCenterId?: Maybe<CustomerServiceExternalStatusesQueryResult>;
     individualAttributes?: Maybe<CustomerServiceAttributesQueryResult>;
     individualByAccountId?: Maybe<CustomerServiceIndividualQueryResult>;
     organizationAttributes?: Maybe<CustomerServiceAttributesQueryResult>;
     organizationByOrganizationId?: Maybe<CustomerServiceOrganizationQueryResult>;
@@ -35412,8 +35503,11 @@
     after?: InputMaybe<Scalars['String']['input']>;
     first?: InputMaybe<Scalars['Int']['input']>;
     projectId: Scalars['ID']['input'];
 };
+export declare type CustomerServiceQueryApiExternalStatusesByHelpCenterIdArgs = {
+    helpCenterId: Scalars['ID']['input'];
+};
 export declare type CustomerServiceQueryApiIndividualByAccountIdArgs = {
     accountId: Scalars['ID']['input'];
     filter?: InputMaybe<CustomerServiceFilterInput>;
 };
@@ -44353,9 +44447,9 @@
     __typename?: 'GraphIntegrationDirectoryFilterDimensionEdge';
     cursor: Scalars['String']['output'];
     node?: Maybe<GraphIntegrationDirectoryFilterDimension>;
 };
-export declare type GraphIntegrationDirectoryItem = GraphIntegrationActionDirectoryItem | GraphIntegrationMcpServer | GraphIntegrationMcpTool | GraphIntegrationSkillDirectoryItem;
+export declare type GraphIntegrationDirectoryItem = GraphIntegrationActionDirectoryItem | GraphIntegrationMcpServer | GraphIntegrationMcpTool | GraphIntegrationSkillDirectoryItem | GraphIntegrationSkillItem;
 export declare type GraphIntegrationDirectoryItemConnection = {
     __typename?: 'GraphIntegrationDirectoryItemConnection';
     edges: Array<GraphIntegrationDirectoryItemEdge>;
     error?: Maybe<QueryError>;
@@ -44622,8 +44716,17 @@
     errors?: Maybe<Array<MutationError>>;
     setting?: Maybe<GraphIntegrationTwgPlatformCapabilityGlobalAdminSetting>;
     success: Scalars['Boolean']['output'];
 };
+export declare type GraphIntegrationSkill = {
+    __typename?: 'GraphIntegrationSkill';
+    description: Scalars['String']['output'];
+    id: Scalars['ID']['output'];
+    instructions: Scalars['String']['output'];
+    metadata: GraphIntegrationSkillMetadata;
+    name: Scalars['String']['output'];
+    uiMetadata: GraphIntegrationSkillUiMetadata;
+};
 export declare enum GraphIntegrationSkillColor {
     Blue = "BLUE",
     Default = "DEFAULT",
     Gray = "GRAY",
@@ -44647,8 +44750,28 @@
     name: Scalars['String']['output'];
     slashCommand?: Maybe<Scalars['String']['output']>;
     tags: Array<GraphIntegrationDirectoryFilterDimension>;
 };
+export declare type GraphIntegrationSkillItem = {
+    __typename?: 'GraphIntegrationSkillItem';
+    description: Scalars['String']['output'];
+    id: Scalars['ID']['output'];
+    metadata: GraphIntegrationSkillMetadata;
+    name: Scalars['String']['output'];
+    uiMetadata: GraphIntegrationSkillUiMetadata;
+};
+export declare type GraphIntegrationSkillMetadata = {
+    __typename?: 'GraphIntegrationSkillMetadata';
+    tags: Array<Scalars['String']['output']>;
+    version: Scalars['String']['output'];
+};
+export declare type GraphIntegrationSkillUiMetadata = {
+    __typename?: 'GraphIntegrationSkillUiMetadata';
+    color?: Maybe<GraphIntegrationSkillColor>;
+    displayName: Scalars['String']['output'];
+    iconKey?: Maybe<Scalars['String']['output']>;
+    iconUrl?: Maybe<Scalars['String']['output']>;
+};
 export declare enum GraphIntegrationStatus {
     Disabled = "DISABLED",
     Enabled = "ENABLED"
 }
@@ -60390,8 +60513,9 @@
     Draft = "DRAFT",
     Merged = "MERGED",
     NotSet = "NOT_SET",
     Open = "OPEN",
+    Queued = "QUEUED",
     Unknown = "UNKNOWN"
 }
 export declare type GraphStoreFullIssueAssociatedPrRelationshipObjectMetadataOutput = {
     __typename?: 'GraphStoreFullIssueAssociatedPrRelationshipObjectMetadataOutput';
@@ -61062,8 +61186,9 @@
     Draft = "DRAFT",
     Merged = "MERGED",
     NotSet = "NOT_SET",
     Open = "OPEN",
+    Queued = "QUEUED",
     Unknown = "UNKNOWN"
 }
 export declare type GraphStoreFullPrInRepoRelationshipObjectMetadataOutput = {
     __typename?: 'GraphStoreFullPrInRepoRelationshipObjectMetadataOutput';
@@ -61406,8 +61531,9 @@
     Draft = "DRAFT",
     Merged = "MERGED",
     NotSet = "NOT_SET",
     Open = "OPEN",
+    Queued = "QUEUED",
     Unknown = "UNKNOWN"
 }
 export declare type GraphStoreFullProjectAssociatedPrRelationshipMetadataOutput = {
     __typename?: 'GraphStoreFullProjectAssociatedPrRelationshipMetadataOutput';
@@ -62232,8 +62358,9 @@
     Draft = "DRAFT",
     Merged = "MERGED",
     NotSet = "NOT_SET",
     Open = "OPEN",
+    Queued = "QUEUED",
     Unknown = "UNKNOWN"
 }
 export declare type GraphStoreFullSprintAssociatedPrRelationshipMetadataOutput = {
     __typename?: 'GraphStoreFullSprintAssociatedPrRelationshipMetadataOutput';
@@ -64041,8 +64168,9 @@
     Draft = "DRAFT",
     Merged = "MERGED",
     NotSet = "NOT_SET",
     Open = "OPEN",
+    Queued = "QUEUED",
     Unknown = "UNKNOWN"
 }
 export declare type GraphStoreProjectAssociatedPrPullRequestStatusFilterInput = {
     is?: InputMaybe<Array<GraphStoreProjectAssociatedPrPullRequestStatus>>;
@@ -75894,8 +76022,9 @@
     Draft = "DRAFT",
     Merged = "MERGED",
     NotSet = "NOT_SET",
     Open = "OPEN",
+    Queued = "QUEUED",
     Unknown = "UNKNOWN"
 }
 export declare type GraphStoreSprintAssociatedPrPullRequestStatusFilterInput = {
     is?: InputMaybe<Array<GraphStoreSprintAssociatedPrPullRequestStatus>>;
@@ -84651,8 +84780,9 @@
     Draft = "DRAFT",
     Merged = "MERGED",
     NotSet = "NOT_SET",
     Open = "OPEN",
+    Queued = "QUEUED",
     Unknown = "UNKNOWN"
 }
 export declare type GraphStoreV2JiraSpaceLinksExternalPullRequestPullRequestStatusFilterInput = {
     is?: InputMaybe<Array<GraphStoreV2JiraSpaceLinksExternalPullRequestPullRequestStatus>>;
@@ -85001,8 +85131,9 @@
     Draft = "DRAFT",
     Merged = "MERGED",
     NotSet = "NOT_SET",
     Open = "OPEN",
+    Queued = "QUEUED",
     Unknown = "UNKNOWN"
 }
 export declare type GraphStoreV2JiraSprintHasExternalPullRequestPullRequestStatusFilterInput = {
     is?: InputMaybe<Array<GraphStoreV2JiraSprintHasExternalPullRequestPullRequestStatus>>;
@@ -104452,9 +104583,10 @@
     __typename?: 'JiraCommentItem';
     commentItem?: Maybe<JiraComment>;
 };
 export declare enum JiraCommentSortField {
-    Created = "CREATED"
+    Created = "CREATED",
+    LatestActivity = "LATEST_ACTIVITY"
 }
 export declare type JiraCommentSortInput = {
     field: JiraCommentSortField;
     order: SortDirection;
@@ -106867,8 +106999,12 @@
     __typename?: 'JiraFieldEdge';
     cursor?: Maybe<Scalars['String']['output']>;
     node?: Maybe<JiraField>;
 };
+export declare type JiraFieldForGlobalView = {
+    __typename?: 'JiraFieldForGlobalView';
+    id: Scalars['ID']['output'];
+};
 export declare type JiraFieldFormatConfig = JiraNumberFieldFormatConfig;
 export declare type JiraFieldFormatConfigInput = {
     jiraNumberFieldFormatConfigInput?: InputMaybe<JiraNumberFieldFormatConfigInput>;
 };
@@ -108603,8 +108739,9 @@
     parentIssueField?: Maybe<JiraParentIssueField>;
     pinnedComments?: Maybe<JiraPinnedCommentsResponse>;
     planScenarioValues?: Maybe<JiraScenarioIssueValues>;
     postIncidentReviewLinks?: Maybe<GraphIncidentAssociatedPostIncidentReviewLinkRelationshipConnection>;
+    priority?: Maybe<JiraPriority>;
     priorityField?: Maybe<JiraPriorityField>;
     projectField?: Maybe<JiraProjectField>;
     projectRoleCommentVisibilities?: Maybe<JiraRoleConnection>;
     redactedFields?: Maybe<JiraFieldConnection>;
@@ -115299,8 +115436,12 @@
 export declare type JiraPlaybooksSortInput = {
     by: JiraPlaybooksSortBy;
     order?: SortDirection;
 };
+export declare type JiraPolarisGlobalViewFields = {
+    __typename?: 'JiraPolarisGlobalViewFields';
+    fields: Array<JiraFieldForGlobalView>;
+};
 export declare type JiraPostIncidentReviewLink = Node & {
     __typename?: 'JiraPostIncidentReviewLink';
     id: Scalars['ID']['output'];
     title?: Maybe<Scalars['String']['output']>;
@@ -116574,8 +116715,9 @@
     jiraProjectsMappedToHelpCenter?: Maybe<JiraProjectConnection>;
     jiraServiceManagementRequestTypeCategoriesByProject?: Maybe<JiraServiceManagementRequestTypeCategoryConnection>;
     jiraServiceManagementSlaIssue?: Maybe<JiraServiceManagementSlaIssueResult>;
     jpdDeliveryIssueLinkTypeId?: Maybe<Scalars['ID']['output']>;
+    jpdGlobalViewFields?: Maybe<JiraPolarisGlobalViewFields>;
     jqlBuilder?: Maybe<JiraJqlBuilder>;
     jsmProjectTeamType?: Maybe<JiraServiceManagementProjectTeamType>;
     jsmWorkflowTemplates?: Maybe<JiraServiceManagementWorkflowTemplatesMetadataConnection>;
     jsonUserProperty?: Maybe<JiraEntityPropertyJson>;
@@ -117351,8 +117493,11 @@
 };
 export declare type JiraQueryJpdDeliveryIssueLinkTypeIdArgs = {
     cloudId: Scalars['ID']['input'];
 };
+export declare type JiraQueryJpdGlobalViewFieldsArgs = {
+    cloudId: Scalars['ID']['input'];
+};
 export declare type JiraQueryJqlBuilderArgs = {
     cloudId: Scalars['ID']['input'];
 };
 export declare type JiraQueryJsmProjectTeamTypeArgs = {
@@ -126649,8 +126794,9 @@
     customerId?: Maybe<Scalars['ID']['output']>;
     id: Scalars['ID']['output'];
     reporter?: Maybe<User>;
     reporterId?: Maybe<Scalars['ID']['output']>;
+    snippets: KitsuneSnippetConnection;
     source: KitsuneSource;
     sourceCategory: KitsuneSourceCategory;
     summary?: Maybe<KitsuneSummary>;
     title?: Maybe<Scalars['String']['output']>;
@@ -126662,8 +126808,14 @@
     first?: InputMaybe<Scalars['Int']['input']>;
     last?: InputMaybe<Scalars['Int']['input']>;
     pagination?: InputMaybe<KitsunePaginationInput>;
 };
+export declare type KitsuneFeedbackSnippetsArgs = {
+    after?: InputMaybe<Scalars['String']['input']>;
+    before?: InputMaybe<Scalars['String']['input']>;
+    first?: InputMaybe<Scalars['Int']['input']>;
+    last?: InputMaybe<Scalars['Int']['input']>;
+};
 export declare type KitsuneFeedbackConnection = KitsuneConnection & {
     __typename?: 'KitsuneFeedbackConnection';
     edges: Array<KitsuneFeedbackEdge>;
     pageInfo: PageInfo;
@@ -126752,11 +126904,18 @@
     createdAt: Scalars['DateTime']['output'];
     creator?: Maybe<User>;
     creatorId?: Maybe<Scalars['ID']['output']>;
     id: Scalars['ID']['output'];
+    snippets: KitsuneSnippetConnection;
     summary?: Maybe<KitsuneSummary>;
     title: Scalars['String']['output'];
 };
+export declare type KitsuneInsightSnippetsArgs = {
+    after?: InputMaybe<Scalars['String']['input']>;
+    before?: InputMaybe<Scalars['String']['input']>;
+    first?: InputMaybe<Scalars['Int']['input']>;
+    last?: InputMaybe<Scalars['Int']['input']>;
+};
 export declare enum KitsuneLogicalOperator {
     And = "AND",
     Or = "OR"
 }
@@ -126801,8 +126960,29 @@
     before?: InputMaybe<Scalars['String']['input']>;
     first?: InputMaybe<Scalars['Int']['input']>;
     last?: InputMaybe<Scalars['Int']['input']>;
 };
+export declare type KitsuneSnippet = Node & {
+    __typename?: 'KitsuneSnippet';
+    content: Array<Scalars['String']['output']>;
+    createdAt: Scalars['DateTime']['output'];
+    creator?: Maybe<User>;
+    creatorId?: Maybe<Scalars['ID']['output']>;
+    feedback: KitsuneFeedback;
+    id: Scalars['ID']['output'];
+    insight: KitsuneInsight;
+    markId?: Maybe<Scalars['ID']['output']>;
+};
+export declare type KitsuneSnippetConnection = KitsuneConnection & {
+    __typename?: 'KitsuneSnippetConnection';
+    edges: Array<KitsuneSnippetEdge>;
+    pageInfo: PageInfo;
+};
+export declare type KitsuneSnippetEdge = KitsuneEdge & {
+    __typename?: 'KitsuneSnippetEdge';
+    cursor: Scalars['String']['output'];
+    node?: Maybe<KitsuneSnippet>;
+};
 export declare type KitsuneSource = {
     __typename?: 'KitsuneSource';
     sourceCategory: KitsuneSourceCategory;
     url: Scalars['String']['output'];
@@ -137951,8 +138131,9 @@
     avp_updateDashboardStatus?: Maybe<AvpUpdateDashboardStatusPayload>;
     avp_updateFilterExpression?: Maybe<AvpUpdateFilterExpressionPayload>;
     avp_updateVariable?: Maybe<AvpUpdateVariablePayload>;
     avpanalytics_createModel?: Maybe<AvpAnalyticsCreateModelPayload>;
+    avpanalytics_updateModel?: Maybe<AvpAnalyticsUpdateModelPayload>;
     blockService_batchCreateBlocks?: Maybe<BlockServiceBatchRetrieveBlocksPayload>;
     blockService_batchDeleteBlocks?: Maybe<BlockServiceBatchRetrieveBlocksPayload>;
     blockService_batchUpdateBlocks?: Maybe<BlockServiceBatchRetrieveBlocksPayload>;
     blockService_createBlock?: Maybe<BlockServiceBlockPayload>;
@@ -138518,21 +138699,23 @@
     kitsune_createFeedback?: Maybe<KitsuneFeedback>;
     kitsune_createInsight?: Maybe<KitsuneInsight>;
     kitsune_createOrganization?: Maybe<KitsuneOrganization>;
     kitsune_createSection?: Maybe<KitsuneSection>;
+    kitsune_createSnippet?: Maybe<KitsuneSnippet>;
     kitsune_createSpace?: Maybe<KitsuneSpace>;
     kitsune_createView?: Maybe<KitsuneView>;
     kitsune_generateFeedbackSummary?: Maybe<KitsuneFeedback>;
     kitsune_moveSection?: Maybe<KitsuneSpace>;
     kitsune_moveView?: Maybe<KitsuneSpace>;
     kitsune_removeFeedback?: Maybe<KitsuneDeletedRecord>;
     kitsune_removeInsight?: Maybe<KitsuneDeletedRecord>;
     kitsune_removeSection?: Maybe<KitsuneDeletedRecord>;
+    kitsune_removeSnippet?: Maybe<KitsuneDeletedRecord>;
     kitsune_removeView?: Maybe<KitsuneDeletedRecord>;
-    kitsune_suggestSnippets?: Maybe<Scalars['Boolean']['output']>;
     kitsune_updateFeedback?: Maybe<KitsuneFeedback>;
     kitsune_updateInsight?: Maybe<KitsuneInsight>;
     kitsune_updateSection?: Maybe<KitsuneSection>;
+    kitsune_updateSnippet?: Maybe<KitsuneSnippet>;
     kitsune_updateSpace?: Maybe<KitsuneSpace>;
     kitsune_updateView?: Maybe<KitsuneView>;
     knowledgeBase?: Maybe<KnowledgeBaseMutationApi>;
     knowledgeBaseSpacePermission_updateView: KnowledgeBaseSpacePermissionMutationResponse;
@@ -139637,8 +139820,12 @@
 export declare type MutationAvpanalytics_CreateModelArgs = {
     cloudId: Scalars['ID']['input'];
     input?: InputMaybe<AvpAnalyticsCreateModelInput>;
 };
+export declare type MutationAvpanalytics_UpdateModelArgs = {
+    cloudId: Scalars['ID']['input'];
+    input?: InputMaybe<AvpAnalyticsUpdateModelInput>;
+};
 export declare type MutationBlockService_BatchCreateBlocksArgs = {
     input: BlockServiceBatchCreateBlocksInput;
 };
 export declare type MutationBlockService_BatchDeleteBlocksArgs = {
@@ -139756,21 +139943,17 @@
     contentId: Scalars['ID']['input'];
 };
 export declare type MutationCloudify_AddRecommendationArgs = {
     input: CloudifyRecommendationInput;
-    projectId: Scalars['ID']['input'];
-    siteId: Scalars['ID']['input'];
 };
 export declare type MutationCloudify_DeleteRecommendationsArgs = {
-    projectId: Scalars['ID']['input'];
-    siteId: Scalars['ID']['input'];
+    target: CloudifyTargetInput;
 };
 export declare type MutationCloudify_EnactRecommendationArgs = {
     recommendationId: Scalars['ID']['input'];
 };
 export declare type MutationCloudify_RequestAnalysisArgs = {
-    projectId: Scalars['ID']['input'];
-    siteId: Scalars['ID']['input'];
+    target: CloudifyTargetInput;
 };
 export declare type MutationCommerceExp_ApprovalDeskArgs = {
     input: CommerceExpApprovalDeskTenantInput;
 };
@@ -141565,8 +141748,14 @@
     description?: InputMaybe<Scalars['String']['input']>;
     name: Scalars['String']['input'];
     spaceAri: Scalars['ID']['input'];
 };
+export declare type MutationKitsune_CreateSnippetArgs = {
+    content: Array<Scalars['String']['input']>;
+    feedbackId: Scalars['ID']['input'];
+    insightId: Scalars['ID']['input'];
+    markId?: InputMaybe<Scalars['ID']['input']>;
+};
 export declare type MutationKitsune_CreateSpaceArgs = {
     name: Scalars['String']['input'];
     workspaceAri: Scalars['ID']['input'];
 };
@@ -141597,15 +141786,14 @@
 };
 export declare type MutationKitsune_RemoveSectionArgs = {
     sectionAri: Scalars['ID']['input'];
 };
+export declare type MutationKitsune_RemoveSnippetArgs = {
+    id: Scalars['ID']['input'];
+};
 export declare type MutationKitsune_RemoveViewArgs = {
     viewAri: Scalars['ID']['input'];
 };
-export declare type MutationKitsune_SuggestSnippetsArgs = {
-    title: Scalars['String']['input'];
-    workspaceAri: Scalars['ID']['input'];
-};
 export declare type MutationKitsune_UpdateFeedbackArgs = {
     content?: InputMaybe<Scalars['KitsuneADF']['input']>;
     customerId?: InputMaybe<Scalars['ID']['input']>;
     id: Scalars['ID']['input'];
@@ -141623,8 +141811,13 @@
     description?: InputMaybe<Scalars['String']['input']>;
     name?: InputMaybe<Scalars['String']['input']>;
     sectionAri: Scalars['ID']['input'];
 };
+export declare type MutationKitsune_UpdateSnippetArgs = {
+    content?: InputMaybe<Array<Scalars['String']['input']>>;
+    id: Scalars['ID']['input'];
+    insightId?: InputMaybe<Scalars['ID']['input']>;
+};
 export declare type MutationKitsune_UpdateSpaceArgs = {
     description?: InputMaybe<Scalars['String']['input']>;
     id: Scalars['ID']['input'];
     name?: InputMaybe<Scalars['String']['input']>;
@@ -145000,11 +145193,17 @@
 export declare type PolarisTreeHierarchyItem = {
     __typename?: 'PolarisTreeHierarchyItem';
     fields?: Maybe<Array<PolarisIdeaField>>;
     filter?: Maybe<Array<PolarisViewFilter>>;
-    items?: Maybe<Array<Scalars['JSON']['output']>>;
+    items?: Maybe<Array<PolarisTreeHierarchyItemEntry>>;
     type?: Maybe<PolarisTreeHierarchyType>;
 };
+export declare type PolarisTreeHierarchyItemEntry = {
+    __typename?: 'PolarisTreeHierarchyItemEntry';
+    fieldKey?: Maybe<Scalars['String']['output']>;
+    issueId?: Maybe<Scalars['String']['output']>;
+    issueTypeName?: Maybe<Scalars['String']['output']>;
+};
 export declare enum PolarisTreeHierarchyType {
     Field = "FIELD",
     Issue = "ISSUE",
     IssueType = "ISSUE_TYPE"
@@ -145881,8 +146080,9 @@
     assetsDM_savedSearchesList?: Maybe<AssetsDmSavedSearchesList>;
     assetsDM_transformedData?: Maybe<AssetsDmTransformedDataResponse>;
     assetsVertical_attributeValues?: Maybe<AssetsVerticalAttributeValuesResult>;
     assetsVertical_bundle: AssetsVerticalBundle;
+    assetsVertical_countByStatus?: Maybe<AssetsVerticalCountByStatusResult>;
     assetsVertical_insights?: Maybe<AssetsVerticalInsights>;
     assets_objectById?: Maybe<AssetsObjectNode>;
     assets_objectTypeAttributesBySchemaIds?: Maybe<Array<Maybe<AssetsObjectTypeAttribute>>>;
     assets_objectTypeAttributesForServices?: Maybe<Array<Maybe<AssetsObjectTypeAttribute>>>;
@@ -146016,8 +146216,10 @@
     confluence_calendarSubscriptionInfoById?: Maybe<ConfluenceCalendarSubscriptionInfo>;
     confluence_calendarTimezones?: Maybe<ConfluenceCalendarTimezones>;
     confluence_calendarsByCriteria?: Maybe<ConfluenceCalendarConnection>;
     confluence_categorizeNbmChains?: Maybe<ConfluenceCategorizeNbmChainsResult>;
+    confluence_classificationLevelsForContent?: Maybe<Array<ContentDataClassificationLevel>>;
+    confluence_classificationLevelsForSpaceDefault?: Maybe<Array<ContentDataClassificationLevel>>;
     confluence_commentMediaSession?: Maybe<ContentMediaSession>;
     confluence_contentAISummaries?: Maybe<Array<Maybe<ConfluenceContentAiSummaryResponse>>>;
     confluence_contentAccessRequestByStatus?: Maybe<ConfluenceContentAccessRequestConnection>;
     confluence_contentAnalyticsCountUserByContentType?: Maybe<ConfluenceContentAnalyticsCountUserByContentType>;
@@ -146336,8 +146538,9 @@
     graphIntegration_mcpAdminManagementMcpServers?: Maybe<GraphIntegrationMcpAdminManagementMcpServerConnection>;
     graphIntegration_mcpAdminManagementMcpTools?: Maybe<GraphIntegrationMcpAdminManagementMcpToolConnection>;
     graphIntegration_mcpServers?: Maybe<Array<Maybe<GraphIntegrationMcpServerNode>>>;
     graphIntegration_mcpTools?: Maybe<Array<Maybe<GraphIntegrationMcpToolNode>>>;
+    graphIntegration_skill?: Maybe<GraphIntegrationSkill>;
     graphIntegration_twgCapabilityContainer?: Maybe<GraphIntegrationTwgCapabilityContainer>;
     graphIntegration_twgCapabilityContainersInContext?: Maybe<GraphIntegrationTwgCapabilityContainerConnection>;
     graphIntegration_twgPlatformCapabilityGlobalAdminSettings?: Maybe<GraphIntegrationTwgPlatformCapabilityGlobalAdminSettings>;
     graphStore?: Maybe<GraphStore>;
@@ -146473,8 +146676,9 @@
     kitsune_insights?: Maybe<Array<Maybe<KitsuneInsight>>>;
     kitsune_node?: Maybe<KitsuneNode>;
     kitsune_searchFeedback?: Maybe<KitsuneFeedbackConnection>;
     kitsune_sections?: Maybe<Array<Maybe<KitsuneSection>>>;
+    kitsune_snippets?: Maybe<Array<Maybe<KitsuneSnippet>>>;
     kitsune_spaces?: Maybe<Array<Maybe<KitsuneSpace>>>;
     kitsune_spacesForWorkspace?: Maybe<KitsuneSpaceConnection>;
     kitsune_views?: Maybe<Array<Maybe<KitsuneView>>>;
     knowledgeBase?: Maybe<KnowledgeBaseQueryApi>;
@@ -146641,8 +146845,10 @@
     radar_positionLaborCostEstimateSettings?: Maybe<RadarPositionLaborCostEstimateSettings>;
     radar_positionsByAris?: Maybe<Array<RadarPosition>>;
     radar_positionsByEntitySearch?: Maybe<RadarPositionsByEntityConnection>;
     radar_positionsSearch?: Maybe<RadarPositionConnection>;
+    radar_skillByAri?: Maybe<RadarSkill>;
+    radar_skillsByAris?: Maybe<Array<RadarSkill>>;
     radar_viewByAri?: Maybe<RadarView>;
     radar_viewsByAris?: Maybe<Array<RadarView>>;
     radar_viewsSearch?: Maybe<RadarViewConnection>;
     radar_workerByAri?: Maybe<RadarWorker>;
@@ -147967,8 +148173,12 @@
 export declare type QueryAssetsVertical_BundleArgs = {
     cloudId: Scalars['ID']['input'];
     type: AssetsVerticalBundleType;
 };
+export declare type QueryAssetsVertical_CountByStatusArgs = {
+    cloudId: Scalars['ID']['input'];
+    input: AssetsVerticalCountByStatusInput;
+};
 export declare type QueryAssetsVertical_InsightsArgs = {
     cloudId: Scalars['ID']['input'];
     jobId?: InputMaybe<Scalars['ID']['input']>;
 };
@@ -148286,15 +148496,12 @@
 export declare type QueryClassificationLevelArgs = {
     id: Scalars['String']['input'];
 };
 export declare type QueryClassificationLevelsArgs = {
-    contentId?: InputMaybe<Scalars['ID']['input']>;
     reclassificationFilterScope?: InputMaybe<ReclassificationFilterScope>;
-    spaceKey?: InputMaybe<Scalars['String']['input']>;
 };
 export declare type QueryCloudify_AnalysisExecutionsArgs = {
-    projectId: Scalars['ID']['input'];
-    siteId: Scalars['ID']['input'];
+    target: CloudifyTargetInput;
 };
 export declare type QueryCloudify_EnactmentArgs = {
     enactmentId: Scalars['ID']['input'];
 };
@@ -148304,10 +148511,9 @@
 export declare type QueryCloudify_GreetingArgs = {
     name?: InputMaybe<Scalars['String']['input']>;
 };
 export declare type QueryCloudify_RecommendationsArgs = {
-    projectId: Scalars['ID']['input'];
-    siteId: Scalars['ID']['input'];
+    filter: CloudifyRecommendationFilterInput;
 };
 export declare type QueryCodeInJiraArgs = {
     cloudId: Scalars['ID']['input'];
 };
@@ -148464,8 +148670,15 @@
 export declare type QueryConfluence_CategorizeNbmChainsArgs = {
     cloudId: Scalars['ID']['input'];
     nbmChains: Array<InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>>;
 };
+export declare type QueryConfluence_ClassificationLevelsForContentArgs = {
+    cloudId: Scalars['ID']['input'];
+    contentId: Scalars['ID']['input'];
+};
+export declare type QueryConfluence_ClassificationLevelsForSpaceDefaultArgs = {
+    cloudId: Scalars['ID']['input'];
+};
 export declare type QueryConfluence_CommentMediaSessionArgs = {
     cloudId: Scalars['ID']['input'];
     contentId: Scalars['ID']['input'];
 };
@@ -148873,8 +149086,9 @@
     spaceKey: Scalars['String']['input'];
 };
 export declare type QueryConfluence_SpaceMediaSessionArgs = {
     cloudId: Scalars['ID']['input'];
+    contentId?: InputMaybe<Scalars['String']['input']>;
     contentType: Scalars['String']['input'];
     spaceKey: Scalars['String']['input'];
 };
 export declare type QueryConfluence_SpacePermissionCombinationsByCriteriaArgs = {
@@ -149945,8 +150159,12 @@
 };
 export declare type QueryGraphIntegration_McpToolsArgs = {
     ids: Array<Scalars['ID']['input']>;
 };
+export declare type QueryGraphIntegration_SkillArgs = {
+    contextAri: Scalars['ID']['input'];
+    skillAri: Scalars['ID']['input'];
+};
 export declare type QueryGraphIntegration_TwgCapabilityContainerArgs = {
     contextAri: Scalars['ID']['input'];
     id: Scalars['String']['input'];
 };
@@ -150440,8 +150658,11 @@
 };
 export declare type QueryKitsune_SectionsArgs = {
     ids: Array<Scalars['ID']['input']>;
 };
+export declare type QueryKitsune_SnippetsArgs = {
+    ids: Array<Scalars['ID']['input']>;
+};
 export declare type QueryKitsune_SpacesArgs = {
     ids: Array<Scalars['ID']['input']>;
 };
 export declare type QueryKitsune_SpacesForWorkspaceArgs = {
@@ -151008,8 +151229,14 @@
     first?: InputMaybe<Scalars['Int']['input']>;
     last?: InputMaybe<Scalars['Int']['input']>;
     rql?: InputMaybe<Scalars['String']['input']>;
 };
+export declare type QueryRadar_SkillByAriArgs = {
+    id: Scalars['ID']['input'];
+};
+export declare type QueryRadar_SkillsByArisArgs = {
+    ids: Array<Scalars['ID']['input']>;
+};
 export declare type QueryRadar_ViewByAriArgs = {
     id: Scalars['ID']['input'];
 };
 export declare type QueryRadar_ViewsByArisArgs = {
@@ -152240,9 +152467,9 @@
 export declare type RadarMutationResponse = {
     __typename?: 'RadarMutationResponse';
     success?: Maybe<Scalars['Boolean']['output']>;
 };
-export declare type RadarNode = RadarPosition | RadarView | RadarWorker;
+export declare type RadarNode = RadarPosition | RadarSkill | RadarView | RadarWorker;
 export declare type RadarNonNumericFieldDefinition = RadarFieldDefinition & {
     __typename?: 'RadarNonNumericFieldDefinition';
     defaultOrder?: Maybe<Scalars['Int']['output']>;
     displayName: Scalars['String']['output'];
@@ -152397,8 +152624,16 @@
 export declare type RadarSettings = {
     __typename?: 'RadarSettings';
     permissions: RadarPermissions;
 };
+export declare type RadarSkill = Node & {
+    __typename?: 'RadarSkill';
+    description?: Maybe<Scalars['String']['output']>;
+    id: Scalars['ID']['output'];
+    name: Scalars['String']['output'];
+    parent?: Maybe<RadarSkill>;
+    parentId?: Maybe<Scalars['ID']['output']>;
+};
 export declare type RadarStaticStringFilterOptions = RadarFilterOptions & {
     __typename?: 'RadarStaticStringFilterOptions';
     functionOptions: Array<RadarFunction>;
     functions: Array<RadarFunctionId>;
@@ -155112,9 +155347,8 @@
     owner?: Maybe<ThirdPartyUser>;
     permissionLevel?: Maybe<Scalars['String']['output']>;
     providerId?: Maybe<Scalars['String']['output']>;
     scoreL2Ranker?: Maybe<Scalars['Float']['output']>;
-    status?: Maybe<Scalars['String']['output']>;
     subtype?: Maybe<Scalars['String']['output']>;
     title: Scalars['String']['output'];
     type: SearchResultType;
     url: Scalars['String']['output'];
@@ -182987,8 +183221,9 @@
     workItem?: Maybe<JiraIssue>;
 };
 export declare type TownsquareProjectsRemoveMemberInput = {
     projectId: Scalars['ID']['input'];
+    revokeAccess?: InputMaybe<Scalars['Boolean']['input']>;
     userId: Scalars['ID']['input'];
 };
 export declare type TownsquareProjectsRemoveMemberPayload = {
     __typename?: 'TownsquareProjectsRemoveMemberPayload';
@@ -183009,8 +183244,9 @@
     valueId?: Maybe<Scalars['ID']['output']>;
 };
 export declare type TownsquareProjectsRemoveTeamContributorsInput = {
     projectId: Scalars['ID']['input'];
+    revokeAccess?: InputMaybe<Scalars['Boolean']['input']>;
     teamId: Scalars['ID']['input'];
 };
 export declare type TownsquareProjectsRemoveTeamContributorsPayload = {
     __typename?: 'TownsquareProjectsRemoveTeamContributorsPayload';
@@ -184609,8 +184845,17 @@
     __typename?: 'TrelloBoardWorkspaceUpdated';
     id?: Maybe<Scalars['ID']['output']>;
     objectId?: Maybe<Scalars['ID']['output']>;
 };
+export declare type TrelloBulkDeleteListInput = {
+    listIds: Array<Scalars['ID']['input']>;
+};
+export declare type TrelloBulkDeleteListPayload = Payload & {
+    __typename?: 'TrelloBulkDeleteListPayload';
+    errors?: Maybe<Array<MutationError>>;
+    failedListIds: Array<Scalars['ID']['output']>;
+    success: Scalars['Boolean']['output'];
+};
 export declare type TrelloCard = Node & TrelloBaseCard & {
     __typename?: 'TrelloCard';
     actions?: Maybe<TrelloCardActionConnection>;
     agent?: Maybe<TrelloCardAgent>;
@@ -185160,8 +185405,17 @@
     name?: Maybe<Scalars['String']['output']>;
     objectId: Scalars['ID']['output'];
     position?: Maybe<Scalars['Float']['output']>;
 };
+export declare type TrelloCloseBoardInput = {
+    boardId: Scalars['ID']['input'];
+};
+export declare type TrelloCloseBoardPayload = Payload & {
+    __typename?: 'TrelloCloseBoardPayload';
+    board?: Maybe<TrelloBoard>;
+    errors?: Maybe<Array<MutationError>>;
+    success: Scalars['Boolean']['output'];
+};
 export declare type TrelloCommentCardAction = TrelloAction & TrelloCardActionData & {
     __typename?: 'TrelloCommentCardAction';
     appCreator?: Maybe<TrelloAppCreator>;
     board?: Maybe<TrelloBoard>;
@@ -186380,8 +186634,10 @@
     addWorkspaceTagToBoard?: Maybe<TrelloAddWorkspaceTagToBoardPayload>;
     archiveCard?: Maybe<TrelloArchiveCardPayload>;
     assignCardToPlannerCalendarEvent?: Maybe<TrelloAssignCardToPlannerCalendarEventPayload>;
     assignCardsToPlannerCalendarEvent?: Maybe<TrelloAssignCardsToPlannerCalendarEventPayload>;
+    bulkDeleteList?: Maybe<TrelloBulkDeleteListPayload>;
+    closeBoard?: Maybe<TrelloCloseBoardPayload>;
     createApplication?: Maybe<TrelloCreateApplicationPayload>;
     createBoardWithAi?: Maybe<TrelloCreateBoardWithAiPayload>;
     createCard?: Maybe<TrelloCreateCardPayload>;
     createMemberAiRule?: Maybe<TrelloCreateMemberAiRulePayload>;
@@ -186423,8 +186679,9 @@
     undoAction?: Maybe<TrelloUndoActionPayload>;
     unwatchCard?: Maybe<TrelloWatchCardPayload>;
     updateAiRule?: Maybe<TrelloUpdateAiRulePayload>;
     updateBoardBackground?: Maybe<TrelloUpdateBoardBackgroundPayload>;
+    updateBoardDescription?: Maybe<TrelloUpdateBoardDescriptionPayload>;
     updateBoardIsTemplate?: Maybe<TrelloUpdateBoardIsTemplatePayload>;
     updateBoardName?: Maybe<TrelloUpdateBoardNamePayload>;
     updateBoardStarPosition?: Maybe<TrelloUpdateBoardStarPositionPayload>;
     updateBoardViewerAIBrowserExtension?: Maybe<TrelloUpdateBoardViewerAiBrowserExtensionPayload>;
@@ -186474,8 +186731,14 @@
 };
 export declare type TrelloMutationApiAssignCardsToPlannerCalendarEventArgs = {
     input: TrelloAssignCardsToPlannerCalendarEventInput;
 };
+export declare type TrelloMutationApiBulkDeleteListArgs = {
+    input: TrelloBulkDeleteListInput;
+};
+export declare type TrelloMutationApiCloseBoardArgs = {
+    input: TrelloCloseBoardInput;
+};
 export declare type TrelloMutationApiCreateApplicationArgs = {
     input: TrelloCreateApplicationInput;
 };
 export declare type TrelloMutationApiCreateBoardWithAiArgs = {
@@ -186597,8 +186860,11 @@
 };
 export declare type TrelloMutationApiUpdateBoardBackgroundArgs = {
     input: TrelloUpdateBoardBackgroundInput;
 };
+export declare type TrelloMutationApiUpdateBoardDescriptionArgs = {
+    input: TrelloUpdateBoardDescriptionInput;
+};
 export declare type TrelloMutationApiUpdateBoardIsTemplateArgs = {
     input: TrelloUpdateBoardIsTemplateInput;
 };
 export declare type TrelloMutationApiUpdateBoardNameArgs = {
@@ -187165,8 +187431,9 @@
 };
 export declare type TrelloPlannerDueDateCardsSettings = {
     __typename?: 'TrelloPlannerDueDateCardsSettings';
     assignedToMe?: Maybe<Scalars['Boolean']['output']>;
+    soloBoards?: Maybe<Scalars['Boolean']['output']>;
 };
 export declare type TrelloPlannerEventCardConnection = {
     __typename?: 'TrelloPlannerEventCardConnection';
     calendarStatus?: Maybe<TrelloPlannerCalendarStatus>;
@@ -188057,8 +188324,18 @@
     errors?: Maybe<Array<MutationError>>;
     prefs?: Maybe<TrelloBoardPrefs>;
     success: Scalars['Boolean']['output'];
 };
+export declare type TrelloUpdateBoardDescriptionInput = {
+    boardId: Scalars['ID']['input'];
+    description: Scalars['String']['input'];
+};
+export declare type TrelloUpdateBoardDescriptionPayload = Payload & {
+    __typename?: 'TrelloUpdateBoardDescriptionPayload';
+    board?: Maybe<TrelloBaseBoard>;
+    errors?: Maybe<Array<MutationError>>;
+    success: Scalars['Boolean']['output'];
+};
 export declare type TrelloUpdateBoardIsTemplateInput = {
     boardId: Scalars['ID']['input'];
     value: Scalars['Boolean']['input'];
 };
@@ -188069,9 +188346,9 @@
     success: Scalars['Boolean']['output'];
 };
 export declare type TrelloUpdateBoardNameInput = {
     boardId: Scalars['ID']['input'];
-    name?: InputMaybe<Scalars['String']['input']>;
+    name: Scalars['String']['input'];
 };
 export declare type TrelloUpdateBoardNamePayload = Payload & {
     __typename?: 'TrelloUpdateBoardNamePayload';
     board?: Maybe<TrelloBoard>;
@@ -188472,8 +188749,9 @@
 export declare enum TrelloWorkOverviewDashboardJobStatus {
     Completed = "COMPLETED",
     Creating = "CREATING",
     Failed = "FAILED",
+    Importing = "IMPORTING",
     Pending = "PENDING"
 }
 export declare type TrelloWorkOverviewDashboardJobUpdated = {
     __typename?: 'TrelloWorkOverviewDashboardJobUpdated';
@@ -188495,8 +188773,9 @@
     description?: Maybe<Scalars['String']['output']>;
     displayBoardCount?: Maybe<Scalars['Int']['output']>;
     displayName?: Maybe<Scalars['String']['output']>;
     enterprise?: Maybe<TrelloEnterprise>;
+    entitlement?: Maybe<CcpEntitlement>;
     id: Scalars['ID']['output'];
     jwmLink?: Maybe<TrelloJwmWorkspaceLink>;
     limits?: Maybe<TrelloWorkspaceLimits>;
     logoHash?: Maybe<Scalars['String']['output']>;
@@ -190682,11 +190961,16 @@
 };
 export declare type UpdatePolarisTreeHierarchyItem = {
     fields?: InputMaybe<Array<Scalars['ID']['input']>>;
     filter?: InputMaybe<Array<PolarisViewFilterInput>>;
-    items?: InputMaybe<Array<Scalars['JSON']['input']>>;
+    items?: InputMaybe<Array<UpdatePolarisTreeHierarchyItemEntry>>;
     type?: InputMaybe<PolarisTreeHierarchyType>;
 };
+export declare type UpdatePolarisTreeHierarchyItemEntry = {
+    fieldKey?: InputMaybe<Scalars['String']['input']>;
+    issueId?: InputMaybe<Scalars['String']['input']>;
+    issueTypeName?: InputMaybe<Scalars['String']['input']>;
+};
 export declare type UpdatePolarisViewArrangementInfoPayload = Payload & {
     __typename?: 'UpdatePolarisViewArrangementInfoPayload';
     errors?: Maybe<Array<MutationError>>;
     success: Scalars['Boolean']['output'];