@forge/cli-shared

8.16.0-next.48.16.0-next.5
out/graphql/graphql-types.d.ts
~out/graphql/graphql-types.d.tsModified
+517−146
Index: package/out/graphql/graphql-types.d.ts
===================================================================
--- package/out/graphql/graphql-types.d.ts
+++ package/out/graphql/graphql-types.d.ts
@@ -207,18 +207,39 @@
     __typename?: 'AVPAnalyticsDataSource';
     hasSubDataSources: Scalars['Boolean']['output'];
     id: Scalars['ID']['output'];
     metadata?: Maybe<AvpAnalyticsDataSourceMetadata>;
+    models?: Maybe<AvpAnalyticsDataSourceModelsConnection>;
     name: Scalars['String']['output'];
     subDataSources?: Maybe<Array<AvpAnalyticsDataSource>>;
 };
+export declare type AvpAnalyticsDataSourceModelsArgs = {
+    paginationInput?: InputMaybe<AvpAnalyticsPaginationInput>;
+    searchInput?: InputMaybe<AvpAnalyticsSearchInput>;
+};
 export declare type AvpAnalyticsDataSourceSubDataSourcesArgs = {
     searchInput?: InputMaybe<AvpAnalyticsSearchInput>;
 };
 export declare type AvpAnalyticsDataSourceMetadata = {
     __typename?: 'AVPAnalyticsDataSourceMetadata';
     icon: Scalars['String']['output'];
 };
+export declare type AvpAnalyticsDataSourceModel = {
+    __typename?: 'AVPAnalyticsDataSourceModel';
+    createdAt?: Maybe<Scalars['DateTime']['output']>;
+    id: Scalars['ID']['output'];
+    name: Scalars['String']['output'];
+};
+export declare type AvpAnalyticsDataSourceModelEdge = {
+    __typename?: 'AVPAnalyticsDataSourceModelEdge';
+    cursor?: Maybe<Scalars['String']['output']>;
+    node: AvpAnalyticsDataSourceModel;
+};
+export declare type AvpAnalyticsDataSourceModelsConnection = {
+    __typename?: 'AVPAnalyticsDataSourceModelsConnection';
+    edges?: Maybe<Array<AvpAnalyticsDataSourceModelEdge>>;
+    pageInfo: PageInfo;
+};
 export declare type AvpAnalyticsFilter = {
     type: AvpAnalyticsFilterType;
     values: Array<Scalars['String']['input']>;
 };
@@ -265,8 +286,13 @@
     isHidden: Scalars['Boolean']['input'];
     name: Scalars['String']['input'];
     type: AvpAnalyticsColumnType;
 };
+export declare type AvpAnalyticsGetDataSourceInput = {
+    cloudId: Scalars['ID']['input'];
+    dataSourceId: Scalars['ID']['input'];
+    workspaceId: Scalars['ID']['input'];
+};
 export declare type AvpAnalyticsGetDataSourcesInput = {
     cloudId: Scalars['ID']['input'];
     searchInput?: InputMaybe<AvpAnalyticsSearchInput>;
     workspaceId: Scalars['ID']['input'];
@@ -4835,21 +4861,17 @@
     teamIds: Array<Scalars['ID']['output']>;
     teamNames: Array<Scalars['String']['output']>;
     teams?: Maybe<Array<TeamV2>>;
     updatedAt?: Maybe<Scalars['DateTime']['output']>;
+    updatedBy?: Maybe<Scalars['ID']['output']>;
 };
 export declare type AgentWorkspaceAgentCapacity = {
     __typename?: 'AgentWorkspaceAgentCapacity';
-    agentId: Scalars['ID']['output'];
-    agentName: Scalars['String']['output'];
+    agent: AgentWorkspaceAgent;
     availableSlots: Scalars['Int']['output'];
     currentLoad: Scalars['Int']['output'];
     maxCapacity: Scalars['Int']['output'];
     status: AgentWorkspaceCapacityStatus;
-    teamARIs: Array<Scalars['ID']['output']>;
-    teamIds: Array<Scalars['ID']['output']>;
-    teamNames: Array<Scalars['String']['output']>;
-    teams?: Maybe<Array<TeamV2>>;
     updatedAt: Scalars['DateTime']['output'];
     utilizationPercent: Scalars['Float']['output'];
 };
 export declare type AgentWorkspaceAgentCapacityEdge = {
@@ -4879,24 +4901,31 @@
 };
 export declare type AgentWorkspaceAssignSkillInput = {
     cloudId: Scalars['ID']['input'];
     proficiencyLevel: Scalars['Int']['input'];
+    projectId?: InputMaybe<Scalars['ID']['input']>;
+    projectKey?: InputMaybe<Scalars['String']['input']>;
     skillId: Scalars['ID']['input'];
     userId: Scalars['ID']['input'];
 };
 export declare type AgentWorkspaceAssignSkillPayload = {
     __typename?: 'AgentWorkspaceAssignSkillPayload';
     error?: Maybe<Scalars['String']['output']>;
     success: Scalars['Boolean']['output'];
-    user?: Maybe<AgentWorkspaceAgent>;
     userSkill?: Maybe<AgentWorkspaceUserSkill>;
 };
 export declare type AgentWorkspaceAvailabilityConnection = {
     __typename?: 'AgentWorkspaceAvailabilityConnection';
+    edges: Array<AgentWorkspaceAvailabilityEdge>;
     nodes: Array<AgentWorkspaceAgentAvailability>;
     pageInfo: AgentWorkspaceAvailabilityPageInfo;
     summary: AgentWorkspaceAvailabilitySummary;
 };
+export declare type AgentWorkspaceAvailabilityEdge = {
+    __typename?: 'AgentWorkspaceAvailabilityEdge';
+    cursor: Scalars['String']['output'];
+    node: AgentWorkspaceAgentAvailability;
+};
 export declare type AgentWorkspaceAvailabilityError = {
     __typename?: 'AgentWorkspaceAvailabilityError';
     code: Scalars['String']['output'];
     field?: Maybe<Scalars['String']['output']>;
@@ -4914,11 +4943,13 @@
 };
 export declare type AgentWorkspaceAvailabilityPageInfo = {
     __typename?: 'AgentWorkspaceAvailabilityPageInfo';
     currentPage: Scalars['Int']['output'];
+    endCursor?: Maybe<Scalars['String']['output']>;
     hasNextPage: Scalars['Boolean']['output'];
     hasPreviousPage: Scalars['Boolean']['output'];
     pageSize: Scalars['Int']['output'];
+    startCursor?: Maybe<Scalars['String']['output']>;
     totalCount: Scalars['Int']['output'];
     totalPages: Scalars['Int']['output'];
 };
 export declare enum AgentWorkspaceAvailabilityStatus {
@@ -5014,8 +5045,14 @@
     catalog?: Maybe<AgentWorkspaceCatalog>;
     error?: Maybe<Scalars['String']['output']>;
     success: Scalars['Boolean']['output'];
 };
+export declare type AgentWorkspaceCatalogDeleteInput = {
+    cloudId: Scalars['ID']['input'];
+    id: Scalars['ID']['input'];
+    projectId?: InputMaybe<Scalars['ID']['input']>;
+    projectKey?: InputMaybe<Scalars['String']['input']>;
+};
 export declare type AgentWorkspaceCatalogDeleteResponse = {
     __typename?: 'AgentWorkspaceCatalogDeleteResponse';
     deletedCatalogId?: Maybe<Scalars['ID']['output']>;
     error?: Maybe<Scalars['String']['output']>;
@@ -5030,8 +5067,15 @@
     catalogTypeId?: InputMaybe<Scalars['ID']['input']>;
     ids?: InputMaybe<Array<Scalars['ID']['input']>>;
     nameContains?: InputMaybe<Scalars['String']['input']>;
 };
+export declare type AgentWorkspaceCatalogInput = {
+    cloudId: Scalars['ID']['input'];
+    id: Scalars['ID']['input'];
+    maxDepth?: InputMaybe<Scalars['Int']['input']>;
+    projectId?: InputMaybe<Scalars['ID']['input']>;
+    projectKey?: InputMaybe<Scalars['String']['input']>;
+};
 export declare type AgentWorkspaceCatalogType = {
     __typename?: 'AgentWorkspaceCatalogType';
     catalogs?: Maybe<Array<AgentWorkspaceCatalog>>;
     childType?: Maybe<AgentWorkspaceCatalogType>;
@@ -5059,8 +5103,14 @@
     catalogType?: Maybe<AgentWorkspaceCatalogType>;
     error?: Maybe<Scalars['String']['output']>;
     success: Scalars['Boolean']['output'];
 };
+export declare type AgentWorkspaceCatalogTypeDeleteInput = {
+    cloudId: Scalars['ID']['input'];
+    id: Scalars['ID']['input'];
+    projectId?: InputMaybe<Scalars['ID']['input']>;
+    projectKey?: InputMaybe<Scalars['String']['input']>;
+};
 export declare type AgentWorkspaceCatalogTypeDeleteResponse = {
     __typename?: 'AgentWorkspaceCatalogTypeDeleteResponse';
     deletedCatalogTypeId?: Maybe<Scalars['ID']['output']>;
     error?: Maybe<Scalars['String']['output']>;
@@ -5074,33 +5124,57 @@
 export declare type AgentWorkspaceCatalogTypeFilterInput = {
     ids?: InputMaybe<Array<Scalars['ID']['input']>>;
     nameContains?: InputMaybe<Scalars['String']['input']>;
 };
+export declare type AgentWorkspaceCatalogTypeInput = {
+    cloudId: Scalars['ID']['input'];
+    id: Scalars['ID']['input'];
+    projectId?: InputMaybe<Scalars['ID']['input']>;
+    projectKey?: InputMaybe<Scalars['String']['input']>;
+};
 export declare type AgentWorkspaceCatalogTypeUpdateResponse = {
     __typename?: 'AgentWorkspaceCatalogTypeUpdateResponse';
     catalogType?: Maybe<AgentWorkspaceCatalogType>;
     error?: Maybe<Scalars['String']['output']>;
     success: Scalars['Boolean']['output'];
 };
+export declare type AgentWorkspaceCatalogTypesInput = {
+    cloudId: Scalars['ID']['input'];
+    filter?: InputMaybe<AgentWorkspaceCatalogTypeFilterInput>;
+    pagination?: InputMaybe<AgentWorkspacePaginationInput>;
+    projectId?: InputMaybe<Scalars['ID']['input']>;
+    projectKey?: InputMaybe<Scalars['String']['input']>;
+};
 export declare type AgentWorkspaceCatalogUpdateResponse = {
     __typename?: 'AgentWorkspaceCatalogUpdateResponse';
     catalog?: Maybe<AgentWorkspaceCatalog>;
     error?: Maybe<Scalars['String']['output']>;
     success: Scalars['Boolean']['output'];
 };
+export declare type AgentWorkspaceCatalogsInput = {
+    cloudId: Scalars['ID']['input'];
+    filter?: InputMaybe<AgentWorkspaceCatalogFilterInput>;
+    pagination?: InputMaybe<AgentWorkspacePaginationInput>;
+    projectId?: InputMaybe<Scalars['ID']['input']>;
+    projectKey?: InputMaybe<Scalars['String']['input']>;
+};
 export declare type AgentWorkspaceCreateCatalogInput = {
     catalogTypeId: Scalars['ID']['input'];
     cloudId: Scalars['ID']['input'];
     description?: InputMaybe<Scalars['String']['input']>;
     name: 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']>;
 };
 export declare type AgentWorkspaceCreateCatalogTypeInput = {
     cloudId: Scalars['ID']['input'];
     description?: InputMaybe<Scalars['String']['input']>;
     name: Scalars['String']['input'];
     parentTypeId?: InputMaybe<Scalars['ID']['input']>;
+    projectId?: InputMaybe<Scalars['ID']['input']>;
+    projectKey?: InputMaybe<Scalars['String']['input']>;
 };
 export declare type AgentWorkspaceCreateScheduleInput = {
     agentIds: Array<Scalars['ID']['input']>;
     cloudId: Scalars['ID']['input'];
@@ -5150,17 +5224,18 @@
     success: Scalars['Boolean']['output'];
 };
 export declare type AgentWorkspaceDeleteUserSkillInput = {
     cloudId: Scalars['ID']['input'];
+    projectId?: InputMaybe<Scalars['ID']['input']>;
+    projectKey?: InputMaybe<Scalars['String']['input']>;
     skillId: Scalars['ID']['input'];
     userId: Scalars['ID']['input'];
 };
 export declare type AgentWorkspaceDeleteUserSkillPayload = {
     __typename?: 'AgentWorkspaceDeleteUserSkillPayload';
     deletedUserSkillId?: Maybe<Scalars['ID']['output']>;
     error?: Maybe<Scalars['String']['output']>;
     success: Scalars['Boolean']['output'];
-    user?: Maybe<AgentWorkspaceAgent>;
 };
 export declare type AgentWorkspacePageInfo = {
     __typename?: 'AgentWorkspacePageInfo';
     endCursor?: Maybe<Scalars['String']['output']>;
@@ -5302,9 +5377,8 @@
     id: Scalars['ID']['output'];
     name: Scalars['String']['output'];
     parentCatalogs: Array<AgentWorkspaceCatalog>;
     proficiencyDefinitions: Array<Scalars['String']['output']>;
-    userSkillIds: Array<Scalars['ID']['output']>;
     userSkills?: Maybe<Array<AgentWorkspaceUserSkill>>;
 };
 export declare type AgentWorkspaceSkillUserSkillsArgs = {
     includeSkillDetails?: InputMaybe<Scalars['Boolean']['input']>;
@@ -5320,15 +5394,23 @@
     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']>;
 };
 export declare type AgentWorkspaceSkillCreatePayload = {
     __typename?: 'AgentWorkspaceSkillCreatePayload';
     error?: Maybe<Scalars['String']['output']>;
     skill?: Maybe<AgentWorkspaceSkill>;
     success: Scalars['Boolean']['output'];
 };
+export declare type AgentWorkspaceSkillDeleteInput = {
+    cloudId: Scalars['ID']['input'];
+    id: Scalars['ID']['input'];
+    projectId?: InputMaybe<Scalars['ID']['input']>;
+    projectKey?: InputMaybe<Scalars['String']['input']>;
+};
 export declare type AgentWorkspaceSkillDeletePayload = {
     __typename?: 'AgentWorkspaceSkillDeletePayload';
     deletedSkillId?: Maybe<Scalars['ID']['output']>;
     error?: Maybe<Scalars['String']['output']>;
@@ -5343,35 +5425,66 @@
     ids?: InputMaybe<Array<Scalars['ID']['input']>>;
     nameContains?: InputMaybe<Scalars['String']['input']>;
     parentCatalogIds?: InputMaybe<Array<Scalars['ID']['input']>>;
 };
+export declare type AgentWorkspaceSkillGapsInput = {
+    cloudId: Scalars['ID']['input'];
+    pagination?: InputMaybe<AgentWorkspacePaginationInput>;
+    projectId?: InputMaybe<Scalars['ID']['input']>;
+    projectKey?: InputMaybe<Scalars['String']['input']>;
+};
+export declare type AgentWorkspaceSkillInput = {
+    cloudId: Scalars['ID']['input'];
+    id: Scalars['ID']['input'];
+    projectId?: InputMaybe<Scalars['ID']['input']>;
+    projectKey?: InputMaybe<Scalars['String']['input']>;
+};
 export declare enum AgentWorkspaceSkillMatchType {
     All = "ALL",
     Any = "ANY"
 }
 export declare type AgentWorkspaceSkillUpdateInput = {
+    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']>;
 };
 export declare type AgentWorkspaceSkillUpdatePayload = {
     __typename?: 'AgentWorkspaceSkillUpdatePayload';
     error?: Maybe<Scalars['String']['output']>;
     skill?: Maybe<AgentWorkspaceSkill>;
     success: Scalars['Boolean']['output'];
 };
+export declare type AgentWorkspaceSkillsInput = {
+    cloudId: Scalars['ID']['input'];
+    filter?: InputMaybe<AgentWorkspaceSkillFilterInput>;
+    pagination?: InputMaybe<AgentWorkspacePaginationInput>;
+    projectId?: InputMaybe<Scalars['ID']['input']>;
+    projectKey?: InputMaybe<Scalars['String']['input']>;
+};
 export declare type AgentWorkspaceUpdateCatalogInput = {
     catalogTypeId?: InputMaybe<Scalars['ID']['input']>;
+    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']>;
 };
 export declare type AgentWorkspaceUpdateCatalogTypeInput = {
+    cloudId: Scalars['ID']['input'];
     description?: InputMaybe<Scalars['String']['input']>;
+    id: Scalars['ID']['input'];
     name?: InputMaybe<Scalars['String']['input']>;
     parentTypeId?: InputMaybe<Scalars['ID']['input']>;
+    projectId?: InputMaybe<Scalars['ID']['input']>;
+    projectKey?: InputMaybe<Scalars['String']['input']>;
 };
 export declare type AgentWorkspaceUpdateScheduleInput = {
     agentIds: Array<Scalars['ID']['input']>;
     cloudId: Scalars['ID']['input'];
@@ -5397,16 +5510,17 @@
 };
 export declare type AgentWorkspaceUpdateSkillProficiencyInput = {
     cloudId: Scalars['ID']['input'];
     proficiencyLevel: Scalars['Int']['input'];
+    projectId?: InputMaybe<Scalars['ID']['input']>;
+    projectKey?: InputMaybe<Scalars['String']['input']>;
     skillId: Scalars['ID']['input'];
     userId: Scalars['ID']['input'];
 };
 export declare type AgentWorkspaceUpdateSkillProficiencyPayload = {
     __typename?: 'AgentWorkspaceUpdateSkillProficiencyPayload';
     error?: Maybe<Scalars['String']['output']>;
     success: Scalars['Boolean']['output'];
-    user?: Maybe<AgentWorkspaceAgent>;
     userSkill?: Maybe<AgentWorkspaceUserSkill>;
 };
 export declare type AgentWorkspaceUserConnection = {
     __typename?: 'AgentWorkspaceUserConnection';
@@ -5442,8 +5556,29 @@
     proficiencyLevel?: InputMaybe<Scalars['Int']['input']>;
     skillIds?: InputMaybe<Array<Scalars['ID']['input']>>;
     userIds?: InputMaybe<Array<Scalars['ID']['input']>>;
 };
+export declare type AgentWorkspaceUserSkillInput = {
+    cloudId: Scalars['ID']['input'];
+    id: Scalars['ID']['input'];
+    projectId?: InputMaybe<Scalars['ID']['input']>;
+    projectKey?: InputMaybe<Scalars['String']['input']>;
+};
+export declare type AgentWorkspaceUserSkillsInput = {
+    cloudId: Scalars['ID']['input'];
+    filter?: InputMaybe<AgentWorkspaceUserSkillFilterInput>;
+    pagination?: InputMaybe<AgentWorkspacePaginationInput>;
+    projectId?: InputMaybe<Scalars['ID']['input']>;
+    projectKey?: InputMaybe<Scalars['String']['input']>;
+};
+export declare type AgentWorkspaceUsersBySkillsInput = {
+    cloudId: Scalars['ID']['input'];
+    pagination?: InputMaybe<AgentWorkspacePaginationInput>;
+    projectId?: InputMaybe<Scalars['ID']['input']>;
+    projectKey?: InputMaybe<Scalars['String']['input']>;
+    skillIds: Array<Scalars['ID']['input']>;
+    skillMatchType?: InputMaybe<AgentWorkspaceSkillMatchType>;
+};
 export declare enum AiCoreApiQuestionType {
     DraftDocument = "DRAFT_DOCUMENT",
     KnowledgeBase = "KNOWLEDGE_BASE"
 }
@@ -10177,8 +10312,11 @@
 };
 export declare type BlockServiceBatchCreateBlocksInput = {
     blocks: Array<BlockServiceCreateBlockInput>;
 };
+export declare type BlockServiceBatchDeleteBlocksInput = {
+    blocks: Array<BlockServiceDeleteBlockInput>;
+};
 export declare type BlockServiceBatchRetrieveBlocksInput = {
     blockAris: Array<Scalars['String']['input']>;
     blockIdentifiers?: InputMaybe<Array<BlockServiceBlockIdentifierInput>>;
     documentAri?: InputMaybe<Scalars['String']['input']>;
@@ -14176,10 +14314,9 @@
     __typename?: 'CommerceExpBillingPeriodDetails';
     billingAnchorTimestamp?: Maybe<Scalars['Float']['output']>;
     nextBillingTimestamp?: Maybe<Scalars['Float']['output']>;
 };
-export declare type CommerceExpBillingPeriodItem = CommerceExpContainerQuoteLineItem | CommerceExpGroupedByOrgQuoteLineItem | CommerceExpGroupedBySiteQuoteLineItem | CommerceExpSingleQuoteLineItem;
-export declare type CommerceExpBillingScheduleItem = CommerceExpContainerQuoteLineItem | CommerceExpGroupedByBillingPeriodLineItem | CommerceExpGroupedByOrgQuoteLineItem | CommerceExpGroupedBySiteQuoteLineItem | CommerceExpSingleQuoteLineItem;
+export declare type CommerceExpBillingScheduleItem = CommerceExpContainerQuoteLineItem | CommerceExpGroupedByOrgQuoteLineItem | CommerceExpGroupedBySiteQuoteLineItem | CommerceExpSingleQuoteLineItem;
 export declare type CommerceExpBuyCurrentTrialInput = {
     entitlementId: Scalars['String']['input'];
 };
 export declare type CommerceExpCanceledReason = {
@@ -14216,8 +14353,13 @@
     before?: InputMaybe<Scalars['String']['input']>;
     first?: InputMaybe<Scalars['Int']['input']>;
     last?: InputMaybe<Scalars['Int']['input']>;
 };
+export declare type CommerceExpCcpChargeElementTransition = {
+    __typename?: 'CommerceExpCcpChargeElementTransition';
+    from?: Maybe<Scalars['String']['output']>;
+    to?: Maybe<Scalars['String']['output']>;
+};
 export declare type CommerceExpCcpCreditNote = {
     __typename?: 'CommerceExpCcpCreditNote';
     additionalNotes?: Maybe<Scalars['String']['output']>;
     arn?: Maybe<Scalars['String']['output']>;
@@ -14555,8 +14697,13 @@
     __typename?: 'CommerceExpCcpMutationWithQuery';
     ccp?: Maybe<CommerceExpCcpMutation>;
     query?: Maybe<Query>;
 };
+export declare type CommerceExpCcpOfferingEntityTransition = {
+    __typename?: 'CommerceExpCcpOfferingEntityTransition';
+    from?: Maybe<Scalars['ID']['output']>;
+    to?: Maybe<Scalars['ID']['output']>;
+};
 export declare enum CommerceExpCcpOfferingRelationshipDirection {
     From = "FROM",
     To = "TO"
 }
@@ -14665,8 +14812,15 @@
 };
 export declare type CommerceExpCcpPricingPlanItemsArgs = {
     chargeTypesFilter?: InputMaybe<Array<InputMaybe<CommerceExpPricingPlanItemChargeType>>>;
 };
+export declare type CommerceExpCcpPricingPlanEntityTransition = {
+    __typename?: 'CommerceExpCcpPricingPlanEntityTransition';
+    from?: Maybe<Scalars['ID']['output']>;
+    fromPricingPlan?: Maybe<CommerceExpCcpPricingPlan>;
+    to?: Maybe<Scalars['ID']['output']>;
+    toPricingPlan?: Maybe<CommerceExpCcpPricingPlan>;
+};
 export declare enum CommerceExpCcpPricingType {
     External = "EXTERNAL",
     Free = "FREE",
     LimitedFree = "LIMITED_FREE",
@@ -14872,8 +15026,9 @@
     pauseBilling?: Maybe<CommerceExpPauseBilling>;
     scheduledChanges?: Maybe<CommerceExpScheduledChanges>;
     startTimestamp?: Maybe<Scalars['Float']['output']>;
     status?: Maybe<CommerceExpSubscriptionStatus>;
+    transition?: Maybe<CommerceExpCcpSubscriptionTransition>;
     trial?: Maybe<CommerceExpCcpSubscriptionTrial>;
     unpaidInvoices?: Maybe<Array<Maybe<CommerceExpCcpInvoice>>>;
 };
 export declare type CommerceExpCcpSubscriptionIsInPreDunningArgs = {
@@ -14881,8 +15036,20 @@
 };
 export declare type CommerceExpCcpSubscriptionIsInvoiceGenerationPendingArgs = {
     invoiceRequestStatus: CommerceExpInvoiceRequestStatusType;
 };
+export declare type CommerceExpCcpSubscriptionTransition = {
+    __typename?: 'CommerceExpCcpSubscriptionTransition';
+    chargeElementTransition?: Maybe<CommerceExpCcpChargeElementTransition>;
+    expectedTransitionDate?: Maybe<Scalars['Float']['output']>;
+    id?: Maybe<Scalars['ID']['output']>;
+    offeringTransition?: Maybe<CommerceExpCcpOfferingEntityTransition>;
+    orderId?: Maybe<Scalars['String']['output']>;
+    orderItemId?: Maybe<Scalars['String']['output']>;
+    postTransitionSubscriptionState?: Maybe<CommerceExpPostTransitionSubscriptionState>;
+    pricingPlanTransition?: Maybe<CommerceExpCcpPricingPlanEntityTransition>;
+    transitionRequestDate?: Maybe<Scalars['Float']['output']>;
+};
 export declare type CommerceExpCcpSubscriptionTrial = {
     __typename?: 'CommerceExpCcpSubscriptionTrial';
     endBehaviour?: Maybe<CommerceExpSubscriptionTrialEndBehaviour>;
     endTimestamp?: Maybe<Scalars['Float']['output']>;
@@ -15785,14 +15952,8 @@
     __typename?: 'CommerceExpGenericMutationPayload';
     errors?: Maybe<Array<MutationError>>;
     success: Scalars['Boolean']['output'];
 };
-export declare type CommerceExpGroupedByBillingPeriodLineItem = {
-    __typename?: 'CommerceExpGroupedByBillingPeriodLineItem';
-    billingPeriod?: Maybe<CommerceExpPeriodResponse>;
-    billingPeriodItems?: Maybe<Array<Maybe<CommerceExpBillingPeriodItem>>>;
-    type: CommerceExpQuoteLineItemContainerType;
-};
 export declare type CommerceExpGroupedByBillingScheduleLineItem = {
     __typename?: 'CommerceExpGroupedByBillingScheduleLineItem';
     aggregatedDiscountTotal?: Maybe<Scalars['Float']['output']>;
     aggregatedTaxItems?: Maybe<Array<CommerceExpTaxItemsResponse>>;
@@ -15820,9 +15981,9 @@
     siteId?: Maybe<Scalars['ID']['output']>;
     siteItems?: Maybe<Array<Maybe<CommerceExpSiteItem>>>;
     type: CommerceExpQuoteLineItemContainerType;
 };
-export declare type CommerceExpGroupedQuoteLineItem = CommerceExpContainerQuoteLineItem | CommerceExpGroupedByBillingPeriodLineItem | CommerceExpGroupedByBillingScheduleLineItem | CommerceExpGroupedByOrgQuoteLineItem | CommerceExpGroupedBySiteQuoteLineItem | CommerceExpSingleQuoteLineItem;
+export declare type CommerceExpGroupedQuoteLineItem = CommerceExpContainerQuoteLineItem | CommerceExpGroupedByBillingScheduleLineItem | CommerceExpGroupedByOrgQuoteLineItem | CommerceExpGroupedBySiteQuoteLineItem | CommerceExpSingleQuoteLineItem;
 export declare type CommerceExpGupsMutation = {
     __typename?: 'CommerceExpGupsMutation';
     createEntitlementProfile?: Maybe<CommerceExpCreateEntitlementProfilePayload>;
 };
@@ -16700,8 +16861,33 @@
     __typename?: 'CommerceExpPlsQueryError';
     error?: Maybe<CommerceExpPlsErrorType>;
 };
 export declare type CommerceExpPlsQueryResult = CommerceExpPlsOrgEntitlementConnection | CommerceExpPlsQueryError;
+export declare enum CommerceExpPoaErrorType {
+    FetchFailed = "FETCH_FAILED",
+    NoPermission = "NO_PERMISSION"
+}
+export declare type CommerceExpPoaQuery = {
+    __typename?: 'CommerceExpPoaQuery';
+    siteEntitlements?: Maybe<CommerceExpPoaQueryResult>;
+};
+export declare type CommerceExpPoaQuerySiteEntitlementsArgs = {
+    siteAri: Scalars['String']['input'];
+};
+export declare type CommerceExpPoaQueryError = {
+    __typename?: 'CommerceExpPoaQueryError';
+    error?: Maybe<CommerceExpPoaErrorType>;
+};
+export declare type CommerceExpPoaQueryResult = CommerceExpPoaQueryError | CommerceExpPoaSiteEntitlementConnection;
+export declare type CommerceExpPoaSiteEntitlementConnection = {
+    __typename?: 'CommerceExpPoaSiteEntitlementConnection';
+    edges?: Maybe<Array<Maybe<CommerceExpCcpEntitlementEdge>>>;
+    pageInfo: PageInfo;
+};
+export declare enum CommerceExpPostTransitionSubscriptionState {
+    Cancel = "Cancel",
+    Continue = "Continue"
+}
 export declare type CommerceExpPostalAddress = {
     __typename?: 'CommerceExpPostalAddress';
     city?: Maybe<Scalars['String']['output']>;
     country: Scalars['String']['output'];
@@ -16926,9 +17112,8 @@
 export declare type CommerceExpQuoteFilter = {
     status?: InputMaybe<CommerceExpQuoteStatusFilter>;
 };
 export declare enum CommerceExpQuoteLineItemContainerType {
-    BillingPeriod = "BILLING_PERIOD",
     BillingSchedule = "BILLING_SCHEDULE",
     Container = "CONTAINER",
     Org = "ORG",
     Single = "SINGLE",
@@ -25550,8 +25735,13 @@
     __typename?: 'ConfluenceNbmAddGlobalTransformerPayload';
     errors?: Maybe<Array<MutationError>>;
     success: Scalars['Boolean']['output'];
 };
+export declare type ConfluenceNbmAddTransformerToConfigPayload = {
+    __typename?: 'ConfluenceNbmAddTransformerToConfigPayload';
+    errors?: Maybe<Array<MutationError>>;
+    success: Scalars['Boolean']['output'];
+};
 export declare type ConfluenceNbmBulkUpdateVerificationEntryInput = {
     scanId: Scalars['ID']['input'];
     verificationEntries: Array<InputMaybe<ConfluenceNbmVerificationEntryInput>>;
 };
@@ -25700,8 +25890,13 @@
     pageCount?: Maybe<Scalars['Int']['output']>;
     status?: Maybe<Scalars['String']['output']>;
     transformerId?: Maybe<Scalars['String']['output']>;
 };
+export declare type ConfluenceNbmRemoveTransformerFromConfigPayload = {
+    __typename?: 'ConfluenceNbmRemoveTransformerFromConfigPayload';
+    errors?: Maybe<Array<MutationError>>;
+    success: Scalars['Boolean']['output'];
+};
 export declare type ConfluenceNbmRetryPerfScanLongTaskInput = {
     scanId: Scalars['ID']['input'];
 };
 export declare type ConfluenceNbmRetryPerfScanLongTaskPayload = {
@@ -25893,8 +26088,13 @@
     description?: Maybe<Scalars['String']['output']>;
     name: Scalars['String']['output'];
     transformedChain?: Maybe<Scalars['String']['output']>;
 };
+export declare type ConfluenceNbmTransformerConfig = {
+    __typename?: 'ConfluenceNbmTransformerConfig';
+    scanId: Scalars['String']['output'];
+    transformerNames: Array<Maybe<Scalars['String']['output']>>;
+};
 export declare type ConfluenceNbmUploadTransformerConfigInput = {
     scanId: Scalars['ID']['input'];
     transformerNames: Array<InputMaybe<Scalars['String']['input']>>;
 };
@@ -31789,8 +31989,19 @@
     errors?: Maybe<Array<MutationError>>;
     success: Scalars['Boolean']['output'];
     viewSettings?: Maybe<CplsViewSettings>;
 };
+export declare type CplsUpdateWorkResourcingEstimate = {
+    cloudId: Scalars['ID']['input'];
+    workDataId: Scalars['ID']['input'];
+    workResourcingEstimateHours: Scalars['Float']['input'];
+};
+export declare type CplsUpdateWorkResourcingEstimatePayload = Payload & {
+    __typename?: 'CplsUpdateWorkResourcingEstimatePayload';
+    errors?: Maybe<Array<MutationError>>;
+    resourceAllocated?: Maybe<CplsValueFormats>;
+    success: Scalars['Boolean']['output'];
+};
 export declare type CplsValueFormats = {
     __typename?: 'CplsValueFormats';
     days?: Maybe<Scalars['Float']['output']>;
     hours?: Maybe<Scalars['Float']['output']>;
@@ -37979,8 +38190,19 @@
 export declare enum DistributionStatus {
     Development = "DEVELOPMENT",
     Public = "PUBLIC"
 }
+export declare type DlpDetectionContentSummary = {
+    __typename?: 'DlpDetectionContentSummary';
+    containerCount?: Maybe<Scalars['Int']['output']>;
+    detectorId?: Maybe<Scalars['String']['output']>;
+    objectCount?: Maybe<Scalars['Int']['output']>;
+};
+export declare type DlpDetectionContentSummaryListResponse = {
+    __typename?: 'DlpDetectionContentSummaryListResponse';
+    cursor?: Maybe<Scalars['String']['output']>;
+    detectionContentSummaries?: Maybe<Array<Maybe<DlpDetectionContentSummary>>>;
+};
 export declare type DlpDetectorClassificationMappingListResponse = {
     __typename?: 'DlpDetectorClassificationMappingListResponse';
     cursor?: Maybe<Scalars['String']['output']>;
     detectorClassificationMappingResponseList?: Maybe<Array<Maybe<DlpDetectorClassificationMappingResponse>>>;
@@ -43284,8 +43506,19 @@
     errors?: Maybe<Array<MutationError>>;
     serverId?: Maybe<Scalars['ID']['output']>;
     success: Scalars['Boolean']['output'];
 };
+export declare type GraphIntegrationMcpAdminManagementUpdateMcpRegistrationInput = {
+    autoEnableNewTools?: InputMaybe<Scalars['Boolean']['input']>;
+    cloudId: Scalars['ID']['input'];
+    serverId: Scalars['ID']['input'];
+};
+export declare type GraphIntegrationMcpAdminManagementUpdateMcpRegistrationPayload = Payload & {
+    __typename?: 'GraphIntegrationMcpAdminManagementUpdateMcpRegistrationPayload';
+    errors?: Maybe<Array<MutationError>>;
+    server?: Maybe<GraphIntegrationMcpAdminManagementMcpServerNode>;
+    success: Scalars['Boolean']['output'];
+};
 export declare type GraphIntegrationMcpAdminManagementUpdateMcpToolConfigurationInput = {
     cloudId: Scalars['ID']['input'];
     serverId: Scalars['ID']['input'];
     toolConfigurations: Array<GraphIntegrationMcpAdminManagementMcpToolConfigurationInput>;
@@ -93801,8 +94034,36 @@
 export declare type GravityFieldRefMappingInput = {
     key: Scalars['String']['input'];
     ref: Scalars['VTRI']['input'];
 };
+export declare type GravityImportIdeasInput = {
+    csvContent?: InputMaybe<Scalars['String']['input']>;
+    imageContent?: InputMaybe<Scalars['String']['input']>;
+    imageMimeType?: InputMaybe<Scalars['String']['input']>;
+    pdfContent?: InputMaybe<Scalars['String']['input']>;
+    projectId?: InputMaybe<Scalars['String']['input']>;
+    sourceLabel?: InputMaybe<Scalars['String']['input']>;
+    sourceType: GravityImportSourceType;
+    textContent?: InputMaybe<Scalars['String']['input']>;
+};
+export declare type GravityImportIdeasMetadata = {
+    __typename?: 'GravityImportIdeasMetadata';
+    aiProcessingTimeMs: Scalars['Int']['output'];
+    itemsProcessed: Scalars['Int']['output'];
+    sourceType: GravityImportSourceType;
+};
+export declare type GravityImportIdeasResult = GravityImportIdeasSuccess | QueryError;
+export declare type GravityImportIdeasSuccess = {
+    __typename?: 'GravityImportIdeasSuccess';
+    metadata: GravityImportIdeasMetadata;
+    suggestedIdeas: Array<GravitySuggestedIdea>;
+};
+export declare enum GravityImportSourceType {
+    Csv = "CSV",
+    Image = "IMAGE",
+    Pdf = "PDF",
+    Text = "TEXT"
+}
 export declare type GravityRefMappingProposals = {
     __typename?: 'GravityRefMappingProposals';
     fields: Array<GravityFieldMappingProposals>;
 };
@@ -93819,8 +94080,14 @@
 export declare enum GravitySortOrder {
     Asc = "ASC",
     Desc = "DESC"
 }
+export declare type GravitySuggestedIdea = {
+    __typename?: 'GravitySuggestedIdea';
+    description: Scalars['String']['output'];
+    sourceReference: Scalars['String']['output'];
+    title: Scalars['String']['output'];
+};
 export declare type GravityView = {
     __typename?: 'GravityView';
     config: GravityViewConfig;
     description?: Maybe<Scalars['JSON']['output']>;
@@ -93942,8 +94209,18 @@
     alt?: Maybe<Scalars['String']['output']>;
     src: Scalars['String']['output'];
     srcDark?: Maybe<Scalars['String']['output']>;
 };
+export declare type GravityViewTemplateMappingProposalsResult = GravityViewTemplateMappingProposalsSuccess | QueryError;
+export declare type GravityViewTemplateMappingProposalsSuccess = {
+    __typename?: 'GravityViewTemplateMappingProposalsSuccess';
+    proposals: GravityRefMappingProposals;
+};
+export declare type GravityViewTemplatesResult = GravityViewTemplatesSuccess | QueryError;
+export declare type GravityViewTemplatesSuccess = {
+    __typename?: 'GravityViewTemplatesSuccess';
+    templates: Array<GravityViewTemplate>;
+};
 export declare enum GravityViewVisualizationType {
     Board = "BOARD",
     List = "LIST",
     Matrix = "MATRIX",
@@ -100193,8 +100470,9 @@
     column?: Maybe<JiraBoardViewColumn>;
     id: Scalars['ID']['output'];
     issuePositions?: Maybe<Array<JiraBoardViewCellIssuePosition>>;
     issues?: Maybe<JiraIssueConnection>;
+    swimlane?: Maybe<JiraBoardViewSwimlane>;
     workflows?: Maybe<JiraBoardViewWorkflowConnection>;
 };
 export declare type JiraBoardViewCellIssuePositionsArgs = {
     issueIds: Array<Scalars['ID']['input']>;
@@ -112603,8 +112881,9 @@
     isFavourite?: Maybe<Scalars['Boolean']['output']>;
     isGlobalComponentsEnabled?: Maybe<Scalars['Boolean']['output']>;
     isLiveTemplate?: Maybe<Scalars['Boolean']['output']>;
     isPlaybooksEnabled?: Maybe<Scalars['Boolean']['output']>;
+    isRootCauseAnalysisEnabled?: Maybe<Scalars['Boolean']['output']>;
     isVirtualAgentEnabled?: Maybe<Scalars['Boolean']['output']>;
     issueTypes?: Maybe<JiraIssueTypeConnection>;
     jsmChatInitialNativeConfig?: Maybe<JsmChatInitializeNativeConfigResponse>;
     jsmChatMsTeamsConfig?: Maybe<JsmChatMsTeamsConfig>;
@@ -122010,19 +122289,17 @@
     __typename?: 'JpdViewsServiceGlobalViewEdge';
     cursor?: Maybe<Scalars['String']['output']>;
     node?: Maybe<JpdViewsServiceGlobalView>;
 };
+export declare type JpdViewsServiceGlobalViewProjectsResponse = {
+    __typename?: 'JpdViewsServiceGlobalViewProjectsResponse';
+    projectIds: Array<Scalars['ID']['output']>;
+    projectsByIds?: Maybe<Array<Maybe<JiraProject>>>;
+    totalCount?: Maybe<Scalars['Int']['output']>;
+};
 export declare type JpdViewsServiceGlobalViewsByCriteriaInput = {
     containsText: Scalars['String']['input'];
 };
-export declare type JpdViewsServiceGlobalViewsHydrationExample = {
-    __typename?: 'JpdViewsServiceGlobalViewsHydrationExample';
-    cloudId: Scalars['ID']['output'];
-    viewsData?: Maybe<Array<Maybe<JpdViewsServiceGlobalView>>>;
-};
-export declare type JpdViewsServiceGlobalViewsHydrationExampleViewsDataArgs = {
-    ids: Array<Scalars['ID']['input']>;
-};
 export declare type JpdViewsServiceMatrixConfig = {
     __typename?: 'JpdViewsServiceMatrixConfig';
     axes: Array<JpdViewsServiceAxisConfig>;
 };
@@ -122066,21 +122343,12 @@
     __typename?: 'JpdViewsServiceSort';
     field: JpdViewsServiceField;
     order: Scalars['String']['output'];
 };
-export declare type JpdViewsServiceSortByInput = {
-    key?: InputMaybe<Scalars['String']['input']>;
-    mode?: InputMaybe<JpdViewsServiceViewSortMode>;
-    order?: InputMaybe<JpdViewsServiceSortOrder>;
-};
 export declare type JpdViewsServiceSortInput = {
     field: Scalars['String']['input'];
     order: Scalars['String']['input'];
 };
-export declare enum JpdViewsServiceSortOrder {
-    Asc = "ASC",
-    Desc = "DESC"
-}
 export declare type JpdViewsServiceTableColumnSize = {
     __typename?: 'JpdViewsServiceTableColumnSize';
     field: JpdViewsServiceField;
     size: Scalars['Int']['output'];
@@ -122105,8 +122373,18 @@
     startDateField: Scalars['String']['input'];
     startTimestamp: Scalars['String']['input'];
     summaryCardField: Scalars['String']['input'];
 };
+export declare type JpdViewsServiceUnassociateGlobalViewInput = {
+    containerId: Scalars['String']['input'];
+    containerType: JpdViewsServiceGlobalViewAssociationContainerType;
+    id: Scalars['ID']['input'];
+};
+export declare type JpdViewsServiceUnassociateGlobalViewPayload = Payload & {
+    __typename?: 'JpdViewsServiceUnassociateGlobalViewPayload';
+    errors?: Maybe<Array<MutationError>>;
+    success: Scalars['Boolean']['output'];
+};
 export declare type JpdViewsServiceUpdateGlobalViewInput = {
     boldColors?: InputMaybe<Scalars['Boolean']['input']>;
     colorBy?: InputMaybe<JpdViewsServiceFieldInput>;
     colorStyle?: InputMaybe<Scalars['String']['input']>;
@@ -122156,13 +122434,8 @@
     name: Scalars['String']['output'];
     rank?: Maybe<Scalars['Int']['output']>;
     visualizationType: JpdViewsServiceVisualizationType;
 };
-export declare enum JpdViewsServiceViewSortMode {
-    FieldsSort = "FIELDS_SORT",
-    ProjectRank = "PROJECT_RANK",
-    ViewRank = "VIEW_RANK"
-}
 export declare enum JpdViewsServiceVisualizationType {
     Board = "BOARD",
     Matrix = "MATRIX",
     Table = "TABLE",
@@ -123541,9 +123814,12 @@
 export declare type KitsuneFeedback = Node & {
     __typename?: 'KitsuneFeedback';
     chunks: KitsuneChunkConnection;
     content?: Maybe<Scalars['KitsuneADF']['output']>;
+    creator?: Maybe<User>;
+    creatorId?: Maybe<Scalars['ID']['output']>;
     id: Scalars['ID']['output'];
+    sourceCategory: KitsuneSourceCategory;
     summary?: Maybe<KitsuneFeedbackSummary>;
     title?: Maybe<Scalars['String']['output']>;
 };
 export declare type KitsuneFeedbackChunksArgs = {
@@ -123834,8 +124110,9 @@
     url: Scalars['String']['input'];
 };
 export declare type KitsuneSpace = Node & {
     __typename?: 'KitsuneSpace';
+    description?: Maybe<Scalars['String']['output']>;
     feedbacks: KitsuneFeedbackConnection;
     fields: KitsuneFieldConnection;
     id: Scalars['ID']['output'];
     name?: Maybe<Scalars['String']['output']>;
@@ -130850,16 +131127,8 @@
 export declare type MercuryFocusAreaLinks = {
     __typename?: 'MercuryFocusAreaLinks';
     links: Array<MercuryFocusAreaLink>;
 };
-export declare type MercuryFocusAreaNode = {
-    __typename?: 'MercuryFocusAreaNode';
-    childCount?: Maybe<Scalars['Int']['output']>;
-    depth?: Maybe<Scalars['Int']['output']>;
-    focusArea?: Maybe<MercuryFocusArea>;
-    hasChildren?: Maybe<Scalars['Boolean']['output']>;
-    id: Scalars['ID']['output'];
-};
 export declare enum MercuryFocusAreaPermission {
     Archive = "ARCHIVE",
     CreateGoalLink = "CREATE_GOAL_LINK",
     CreateLink = "CREATE_LINK",
@@ -131921,21 +132190,28 @@
     __typename?: 'MercuryNewPositionSummaryByChangeProposalStatus';
     countByStatus?: Maybe<Array<Maybe<MercuryNewPositionCountByStatus>>>;
     totalCount?: Maybe<Scalars['Int']['output']>;
 };
-export declare type MercuryNormalizedWork = {
+export declare type MercuryNormalizedWork = HasMercuryProjectFields & {
     __typename?: 'MercuryNormalizedWork';
     connectedFocusArea: Scalars['ID']['output'];
     depth?: Maybe<Scalars['Int']['output']>;
     externalOwner?: Maybe<MercuryExternalOwner>;
     id: Scalars['ID']['output'];
-    key?: Maybe<Scalars['String']['output']>;
-    name?: Maybe<Scalars['String']['output']>;
-    owner?: Maybe<User>;
-    sourceStatus?: Maybe<MercuryNormalizedWorkSourceStatus>;
-    status?: Maybe<MercuryNormalizedWorkStatus>;
-    targetDate?: Maybe<MercuryNormalizedWorkTargetDate>;
-    type?: Maybe<Scalars['String']['output']>;
+    mercuryOriginalProjectStatus?: Maybe<MercuryOriginalProjectStatus>;
+    mercuryProjectIcon?: Maybe<Scalars['URL']['output']>;
+    mercuryProjectKey?: Maybe<Scalars['String']['output']>;
+    mercuryProjectName?: Maybe<Scalars['String']['output']>;
+    mercuryProjectOwner?: Maybe<User>;
+    mercuryProjectProviderName?: Maybe<Scalars['String']['output']>;
+    mercuryProjectStatus?: Maybe<MercuryProjectStatus>;
+    mercuryProjectType?: Maybe<MercuryProjectType>;
+    mercuryProjectUrl?: Maybe<Scalars['URL']['output']>;
+    mercuryTargetDate?: Maybe<Scalars['String']['output']>;
+    mercuryTargetDateEnd?: Maybe<Scalars['DateTime']['output']>;
+    mercuryTargetDateStart?: Maybe<Scalars['DateTime']['output']>;
+    mercuryTargetDateType?: Maybe<MercuryProjectTargetDateType>;
+    workId: Scalars['ID']['output'];
 };
 export declare type MercuryNormalizedWorkConnection = {
     __typename?: 'MercuryNormalizedWorkConnection';
     edges?: Maybe<Array<MercuryNormalizedWorkEdge>>;
@@ -131944,10 +132220,15 @@
 };
 export declare type MercuryNormalizedWorkEdge = {
     __typename?: 'MercuryNormalizedWorkEdge';
     cursor: Scalars['String']['output'];
-    node?: Maybe<MercuryNormalizedWork>;
+    node?: Maybe<MercuryNormalizedWorkResult>;
 };
+export declare type MercuryNormalizedWorkProjectType = MercuryProjectType & {
+    __typename?: 'MercuryNormalizedWorkProjectType';
+    mercuryProjectTypeName?: Maybe<Scalars['String']['output']>;
+};
+export declare type MercuryNormalizedWorkResult = MercuryNormalizedWork | MercuryRestrictedWork;
 export declare type MercuryNormalizedWorkSearchFiltersInput = {
     owner?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
     source?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
     status?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
@@ -131966,39 +132247,21 @@
 export declare type MercuryNormalizedWorkSortInput = {
     field: MercuryNormalizedWorkSortField;
     order: SortOrder;
 };
-export declare type MercuryNormalizedWorkSourceStatus = {
+export declare type MercuryNormalizedWorkSourceStatus = MercuryOriginalProjectStatus & {
     __typename?: 'MercuryNormalizedWorkSourceStatus';
-    color?: Maybe<MercuryNormalizedWorkStatusColor>;
-    name: Scalars['String']['output'];
+    mercuryOriginalStatusName: Scalars['String']['output'];
 };
-export declare type MercuryNormalizedWorkStatus = {
+export declare type MercuryNormalizedWorkStatus = MercuryProjectStatus & {
     __typename?: 'MercuryNormalizedWorkStatus';
-    color: MercuryNormalizedWorkStatusColor;
-    name: Scalars['String']['output'];
+    mercuryColor: MercuryProjectStatusColor;
+    mercuryName: Scalars['String']['output'];
 };
-export declare enum MercuryNormalizedWorkStatusColor {
-    Blue = "BLUE",
-    Gray = "GRAY",
-    Green = "GREEN",
-    Red = "RED",
-    Yellow = "YELLOW"
-}
-export declare type MercuryNormalizedWorkTargetDate = {
-    __typename?: 'MercuryNormalizedWorkTargetDate';
-    targetDate?: Maybe<Scalars['String']['output']>;
-    targetDateType?: Maybe<MercuryNormalizedWorkTargetDateType>;
-};
 export declare type MercuryNormalizedWorkTargetDateInput = {
     targetDate?: InputMaybe<Scalars['String']['input']>;
-    targetDateType?: InputMaybe<MercuryNormalizedWorkTargetDateType>;
+    targetDateType?: InputMaybe<MercuryProjectTargetDateType>;
 };
-export declare enum MercuryNormalizedWorkTargetDateType {
-    Day = "DAY",
-    Month = "MONTH",
-    Quarter = "QUARTER"
-}
 export declare type MercuryNumberCustomField = MercuryCustomField & {
     __typename?: 'MercuryNumberCustomField';
     createdBy?: Maybe<User>;
     createdDate: Scalars['DateTime']['output'];
@@ -132752,8 +133015,16 @@
     __typename?: 'MercuryRestrictedStrategicEventEdge';
     cursor: Scalars['String']['output'];
     node?: Maybe<MercuryRestrictedStrategicEvent>;
 };
+export declare type MercuryRestrictedWork = {
+    __typename?: 'MercuryRestrictedWork';
+    connectedFocusArea: Scalars['ID']['output'];
+    depth?: Maybe<Scalars['Int']['output']>;
+    id: Scalars['ID']['output'];
+    workErrorType: MercuryProviderWorkErrorType;
+    workId: Scalars['ID']['output'];
+};
 export declare type MercuryRisk = Node & {
     __typename?: 'MercuryRisk';
     createdDate: Scalars['String']['output'];
     description?: Maybe<Scalars['String']['output']>;
@@ -132813,13 +133084,17 @@
 };
 export declare type MercuryRisksQueryApi = {
     __typename?: 'MercuryRisksQueryApi';
     risk?: Maybe<MercuryRisk>;
+    riskStatuses: Array<MercuryRiskStatus>;
     risks?: Maybe<Array<Maybe<MercuryRisk>>>;
 };
 export declare type MercuryRisksQueryApiRiskArgs = {
     id: Scalars['ID']['input'];
 };
+export declare type MercuryRisksQueryApiRiskStatusesArgs = {
+    cloudId: Scalars['ID']['input'];
+};
 export declare type MercuryRisksQueryApiRisksArgs = {
     ids: Array<Scalars['ID']['input']>;
 };
 export declare type MercurySetChangeProposalCustomFieldInput = {
@@ -133866,9 +134141,8 @@
 }
 export declare type MercuryWorkNormalizationQueryApi = {
     __typename?: 'MercuryWorkNormalizationQueryApi';
     linkedWorkByFocusAreas?: Maybe<MercuryNormalizedWorkConnection>;
-    workNormalizationByFocusAreaId?: Maybe<MercuryWorkNormalizationSearchConnection>;
 };
 export declare type MercuryWorkNormalizationQueryApiLinkedWorkByFocusAreasArgs = {
     after?: InputMaybe<Scalars['String']['input']>;
     filter?: InputMaybe<MercuryNormalizedWorkSearchFiltersInput>;
@@ -133876,23 +134150,8 @@
     focusAreaIds: Array<InputMaybe<Scalars['ID']['input']>>;
     sort?: InputMaybe<Array<InputMaybe<MercuryNormalizedWorkSortInput>>>;
     textQuery?: InputMaybe<Scalars['String']['input']>;
 };
-export declare type MercuryWorkNormalizationQueryApiWorkNormalizationByFocusAreaIdArgs = {
-    focusAreaId: Scalars['ID']['input'];
-};
-export declare type MercuryWorkNormalizationSearchConnection = {
-    __typename?: 'MercuryWorkNormalizationSearchConnection';
-    edges?: Maybe<Array<Maybe<MercuryWorkNormalizationSearchEdge>>>;
-    pageInfo: PageInfo;
-    totalCount?: Maybe<Scalars['Int']['output']>;
-};
-export declare type MercuryWorkNormalizationSearchEdge = {
-    __typename?: 'MercuryWorkNormalizationSearchEdge';
-    cursor: Scalars['String']['output'];
-    node?: Maybe<MercuryWorkNormalizationSearchResult>;
-};
-export declare type MercuryWorkNormalizationSearchResult = MercuryFocusAreaNode | MercuryNormalizedWork;
 export declare type MercuryWorkResult = MercuryProviderWork | MercuryProviderWorkError;
 export declare type MercuryWorkSuggestionsSearchItem = {
     __typename?: 'MercuryWorkSuggestionsSearchItem';
     icon?: Maybe<Scalars['String']['output']>;
@@ -134318,8 +134577,9 @@
     avp_updateFilterExpression?: Maybe<AvpUpdateFilterExpressionPayload>;
     avp_updateVariable?: Maybe<AvpUpdateVariablePayload>;
     avpanalytics_createModel?: Maybe<AvpAnalyticsCreateModelPayload>;
     blockService_batchCreateBlocks?: Maybe<BlockServiceBatchRetrieveBlocksPayload>;
+    blockService_batchDeleteBlocks?: Maybe<BlockServiceBatchRetrieveBlocksPayload>;
     blockService_batchUpdateBlocks?: Maybe<BlockServiceBatchRetrieveBlocksPayload>;
     blockService_createBlock?: Maybe<BlockServiceBlockPayload>;
     blockService_deleteBlock?: Maybe<BlockServiceDeleteBlockPayload>;
     blockService_updateBlock?: Maybe<BlockServiceBlockPayload>;
@@ -134406,10 +134666,12 @@
     confluence_inviteUsers?: Maybe<ConfluenceInviteUserPayload>;
     confluence_makeSubCalendarPrivateUrl?: Maybe<ConfluenceMakeSubCalendarPrivateUrlPayload>;
     confluence_markAllCommentsAsRead?: Maybe<ConfluenceMarkAllCommentsAsReadPayload>;
     confluence_nbmAddGlobalTransformer?: Maybe<ConfluenceNbmAddGlobalTransformerPayload>;
+    confluence_nbmAddTransformerToConfig?: Maybe<ConfluenceNbmAddTransformerToConfigPayload>;
     confluence_nbmBulkUpdateVerificationEntry?: Maybe<ConfluenceNbmBulkUpdateVerificationEntryPayload>;
     confluence_nbmExecuteTestTransformation?: Maybe<ConfluenceNbmExecuteTestTransformationPayload>;
+    confluence_nbmRemoveTransformerFromConfig?: Maybe<ConfluenceNbmRemoveTransformerFromConfigPayload>;
     confluence_nbmRetryPerfScanLongTask?: Maybe<ConfluenceNbmRetryPerfScanLongTaskPayload>;
     confluence_nbmRetryScanLongTask?: Maybe<ConfluenceNbmRetryScanLongTaskPayload>;
     confluence_nbmSetChainReadyForTransformation?: Maybe<ConfluenceNbmSetChainReadyForTransformationPayload>;
     confluence_nbmStartPerfScanLongTask?: Maybe<ConfluenceNbmStartPerfScanLongTaskPayload>;
@@ -134491,8 +134753,9 @@
     cpls_importCapacityData?: Maybe<CplsImportCapacityDataPayload>;
     cpls_updateCustomContributionTarget?: Maybe<CplsUpdateCustomContributionTargetPayload>;
     cpls_updateFilters?: Maybe<CplsUpdateFiltersPayload>;
     cpls_updateViewSettings?: Maybe<CplsUpdateViewSettingsPayload>;
+    cpls_updateWorkResourcingEstimate?: Maybe<CplsUpdateWorkResourcingEstimatePayload>;
     createAdminAnnouncementBanner?: Maybe<ConfluenceAdminAnnouncementBannerPayload>;
     createApp?: Maybe<CreateAppResponse>;
     createAppContainer?: Maybe<CreateAppContainerPayload>;
     createAppCustomScopes?: Maybe<CreateAppCustomScopesPayload>;
@@ -134698,8 +134961,9 @@
     graphIntegration_deleteDataConnectorConnection?: Maybe<GraphIntegrationDeleteConnectionPayload>;
     graphIntegration_mcpAdminManagementRegisterMcpServer?: Maybe<GraphIntegrationMcpAdminManagementRegisterMcpServerPayload>;
     graphIntegration_mcpAdminManagementTriggerToolSync?: Maybe<GraphIntegrationMcpAdminManagementTriggerToolSyncPayload>;
     graphIntegration_mcpAdminManagementUnregisterMcpServer?: Maybe<GraphIntegrationMcpAdminManagementUnregisterMcpServerPayload>;
+    graphIntegration_mcpAdminManagementUpdateMcpRegistration?: Maybe<GraphIntegrationMcpAdminManagementUpdateMcpRegistrationPayload>;
     graphIntegration_mcpAdminManagementUpdateMcpToolConfiguration?: Maybe<GraphIntegrationMcpAdminManagementUpdateMcpToolConfigurationPayload>;
     graphIntegration_removeTwgCapabilityContainer?: Maybe<GraphIntegrationRemoveTwgCapabilityContainerPayload>;
     graphIntegration_updateDataConnectorConnection?: Maybe<GraphIntegrationUpdateConnectionPayload>;
     graphStore?: Maybe<GraphStoreMutation>;
@@ -134849,8 +135113,9 @@
     jpdViewsService_createGlobalView?: Maybe<JpdViewsServiceCreateGlobalViewPayload>;
     jpdViewsService_deleteGlobalView?: Maybe<JpdViewsServiceDeleteGlobalViewPayload>;
     jpdViewsService_echo?: Maybe<Scalars['String']['output']>;
     jpdViewsService_rerankGlobalView?: Maybe<JpdViewsServiceRerankGlobalViewPayload>;
+    jpdViewsService_unassociateGlobalView?: Maybe<JpdViewsServiceUnassociateGlobalViewPayload>;
     jpdViewsService_updateGlobalView?: Maybe<JpdViewsServiceUpdateGlobalViewPayload>;
     jsmAgentWorkspace_updateLocations?: Maybe<Scalars['String']['output']>;
     jsmChannels_establishConnection: JsmChannelsEstablishConnectionPayload;
     jsmChannels_executeResolutionPlanAction: JsmChannelsResolutionPlanActionPayload;
@@ -135478,21 +135743,18 @@
 export declare type MutationAgentWorkspace_CreateSkillArgs = {
     input: AgentWorkspaceSkillCreateInput;
 };
 export declare type MutationAgentWorkspace_DeleteCatalogArgs = {
-    cloudId: Scalars['ID']['input'];
-    id: Scalars['ID']['input'];
+    input: AgentWorkspaceCatalogDeleteInput;
 };
 export declare type MutationAgentWorkspace_DeleteCatalogTypeArgs = {
-    cloudId: Scalars['ID']['input'];
-    id: Scalars['ID']['input'];
+    input: AgentWorkspaceCatalogTypeDeleteInput;
 };
 export declare type MutationAgentWorkspace_DeleteScheduleArgs = {
     input: AgentWorkspaceDeleteScheduleInput;
 };
 export declare type MutationAgentWorkspace_DeleteSkillArgs = {
-    cloudId: Scalars['ID']['input'];
-    id: Scalars['ID']['input'];
+    input: AgentWorkspaceSkillDeleteInput;
 };
 export declare type MutationAgentWorkspace_DeleteUserSkillArgs = {
     input: AgentWorkspaceDeleteUserSkillInput;
 };
@@ -135510,23 +135772,17 @@
     agentId: Scalars['ID']['input'];
     cloudId: Scalars['ID']['input'];
 };
 export declare type MutationAgentWorkspace_UpdateCatalogArgs = {
-    cloudId: Scalars['ID']['input'];
-    id: Scalars['ID']['input'];
     input: AgentWorkspaceUpdateCatalogInput;
 };
 export declare type MutationAgentWorkspace_UpdateCatalogTypeArgs = {
-    cloudId: Scalars['ID']['input'];
-    id: Scalars['ID']['input'];
     input: AgentWorkspaceUpdateCatalogTypeInput;
 };
 export declare type MutationAgentWorkspace_UpdateScheduleArgs = {
     input: AgentWorkspaceUpdateScheduleInput;
 };
 export declare type MutationAgentWorkspace_UpdateSkillArgs = {
-    cloudId: Scalars['ID']['input'];
-    id: Scalars['ID']['input'];
     input: AgentWorkspaceSkillUpdateInput;
 };
 export declare type MutationAgentWorkspace_UpdateSkillProficiencyArgs = {
     input: AgentWorkspaceUpdateSkillProficiencyInput;
@@ -135928,8 +136184,11 @@
 };
 export declare type MutationBlockService_BatchCreateBlocksArgs = {
     input: BlockServiceBatchCreateBlocksInput;
 };
+export declare type MutationBlockService_BatchDeleteBlocksArgs = {
+    input: BlockServiceBatchDeleteBlocksInput;
+};
 export declare type MutationBlockService_BatchUpdateBlocksArgs = {
     input: BlockServiceBatchUpdateBlocksInput;
 };
 export declare type MutationBlockService_CreateBlockArgs = {
@@ -136227,16 +136486,26 @@
 export declare type MutationConfluence_NbmAddGlobalTransformerArgs = {
     cloudId: Scalars['ID']['input'];
     input: ConfluenceNbmAddGlobalTransformerInput;
 };
+export declare type MutationConfluence_NbmAddTransformerToConfigArgs = {
+    cloudId: Scalars['ID']['input'];
+    scanId: Scalars['ID']['input'];
+    transformerId: Scalars['ID']['input'];
+};
 export declare type MutationConfluence_NbmBulkUpdateVerificationEntryArgs = {
     cloudId: Scalars['ID']['input'];
     input: ConfluenceNbmBulkUpdateVerificationEntryInput;
 };
 export declare type MutationConfluence_NbmExecuteTestTransformationArgs = {
     cloudId: Scalars['ID']['input'];
     input: ConfluenceNbmExecuteTestTransformationInput;
 };
+export declare type MutationConfluence_NbmRemoveTransformerFromConfigArgs = {
+    cloudId: Scalars['ID']['input'];
+    scanId: Scalars['ID']['input'];
+    transformerId: Scalars['ID']['input'];
+};
 export declare type MutationConfluence_NbmRetryPerfScanLongTaskArgs = {
     cloudId: Scalars['ID']['input'];
     input: ConfluenceNbmRetryPerfScanLongTaskInput;
 };
@@ -136553,8 +136822,11 @@
 };
 export declare type MutationCpls_UpdateViewSettingsArgs = {
     input: CplsUpdateViewSettingsInput;
 };
+export declare type MutationCpls_UpdateWorkResourcingEstimateArgs = {
+    input: CplsUpdateWorkResourcingEstimate;
+};
 export declare type MutationCreateAdminAnnouncementBannerArgs = {
     announcementBanner: ConfluenceCreateAdminAnnouncementBannerInput;
 };
 export declare type MutationCreateAppArgs = {
@@ -137258,8 +137530,11 @@
 };
 export declare type MutationGraphIntegration_McpAdminManagementUnregisterMcpServerArgs = {
     input: GraphIntegrationMcpAdminManagementUnregisterMcpServerInput;
 };
+export declare type MutationGraphIntegration_McpAdminManagementUpdateMcpRegistrationArgs = {
+    input: GraphIntegrationMcpAdminManagementUpdateMcpRegistrationInput;
+};
 export declare type MutationGraphIntegration_McpAdminManagementUpdateMcpToolConfigurationArgs = {
     input: GraphIntegrationMcpAdminManagementUpdateMcpToolConfigurationInput;
 };
 export declare type MutationGraphIntegration_RemoveTwgCapabilityContainerArgs = {
@@ -137723,8 +137998,11 @@
 };
 export declare type MutationJpdViewsService_RerankGlobalViewArgs = {
     input: JpdViewsServiceRerankGlobalViewInput;
 };
+export declare type MutationJpdViewsService_UnassociateGlobalViewArgs = {
+    input: JpdViewsServiceUnassociateGlobalViewInput;
+};
 export declare type MutationJpdViewsService_UpdateGlobalViewArgs = {
     input: JpdViewsServiceUpdateGlobalViewInput;
 };
 export declare type MutationJsmChannels_EstablishConnectionArgs = {
@@ -137799,9 +138077,9 @@
     sectionAri: Scalars['ID']['input'];
 };
 export declare type MutationKitsune_MoveViewArgs = {
     parentId?: InputMaybe<Scalars['ID']['input']>;
-    rank: KitsuneRankInput;
+    rank?: InputMaybe<KitsuneRankInput>;
     viewAri: Scalars['ID']['input'];
 };
 export declare type MutationKitsune_RemoveFeedbackArgs = {
     feedbackAri: Scalars['ID']['input'];
@@ -137827,8 +138105,9 @@
     name?: InputMaybe<Scalars['String']['input']>;
     sectionAri: Scalars['ID']['input'];
 };
 export declare type MutationKitsune_UpdateSpaceArgs = {
+    description?: InputMaybe<Scalars['String']['input']>;
     id: Scalars['ID']['input'];
     name?: InputMaybe<Scalars['String']['input']>;
 };
 export declare type MutationKitsune_UpdateViewArgs = {
@@ -141324,8 +141603,9 @@
     Matrix = "MATRIX",
     Section = "SECTION",
     Table = "TABLE",
     Timeline = "TIMELINE",
+    Tree = "TREE",
     Twoxtwo = "TWOXTWO"
 }
 export declare type PolarisWhiteboardConfig = {
     __typename?: 'PolarisWhiteboardConfig';
@@ -141360,8 +141640,9 @@
 };
 export declare type PostOfficeMessage = {
     __typename?: 'PostOfficeMessage';
     createdAt: Scalars['String']['output'];
+    data?: Maybe<PostOfficeMessageData>;
     eventTime: Scalars['String']['output'];
     messageCategory: Scalars['String']['output'];
     messageCreationType?: Maybe<PostOfficeMessageCreationType>;
     messageInstanceId: Scalars['String']['output'];
@@ -141372,12 +141653,33 @@
 export declare enum PostOfficeMessageCreationType {
     Explicit = "explicit",
     Implicit = "implicit"
 }
+export declare type PostOfficeMessageData = PostOfficeMessageLiveNudgeDemoMessageData | PostOfficeMessageRecommendationJpdData | PostOfficeMessageRecommendationJsmData | PostOfficeMessageRecommendationTwcData;
+export declare type PostOfficeMessageLiveNudgeDemoMessageData = {
+    __typename?: 'PostOfficeMessageLiveNudgeDemoMessageData';
+    message: Scalars['String']['output'];
+    title?: Maybe<Scalars['String']['output']>;
+};
 export declare type PostOfficeMessagePayload = {
     __typename?: 'PostOfficeMessagePayload';
     messages: Array<PostOfficeMessage>;
 };
+export declare type PostOfficeMessageRecommendationJpdData = {
+    __typename?: 'PostOfficeMessageRecommendationJpdData';
+    tenantId?: Maybe<Scalars['String']['output']>;
+};
+export declare type PostOfficeMessageRecommendationJsmData = {
+    __typename?: 'PostOfficeMessageRecommendationJsmData';
+    tenantId?: Maybe<Scalars['String']['output']>;
+};
+export declare type PostOfficeMessageRecommendationTwcData = {
+    __typename?: 'PostOfficeMessageRecommendationTwcData';
+    isAdmin: Scalars['Boolean']['output'];
+    locale: Scalars['String']['output'];
+    tenantId: Scalars['String']['output'];
+    variation: Scalars['String']['output'];
+};
 export declare type PostOfficeRecommendationSession = {
     __typename?: 'PostOfficeRecommendationSession';
     entityId: Scalars['String']['output'];
     sessionId: Scalars['String']['output'];
@@ -141984,8 +142286,9 @@
     avp_getDashboardIdBySlug?: Maybe<AvpGetDashboardIdBySlugPayload>;
     avp_getDashboardTemplates?: Maybe<Array<AvpDashboardTemplate>>;
     avp_getDashboardsByAris?: Maybe<Array<Maybe<AvpDashboard>>>;
     avp_getFilterExpression?: Maybe<AvpFilterExpression>;
+    avpanalytics_getDataSource?: Maybe<AvpAnalyticsDataSource>;
     avpanalytics_getDataSources?: Maybe<Array<AvpAnalyticsDataSource>>;
     avpanalytics_getModel?: Maybe<AvpAnalyticsModel>;
     avpanalytics_getModels?: Maybe<AvpAnalyticsModelConnection>;
     bitbucket?: Maybe<BitbucketQuery>;
@@ -142064,8 +142367,9 @@
     commerceExp_enterpriseGatekeeper?: Maybe<CommerceExpEnterpriseGatekeeper>;
     commerceExp_intercom?: Maybe<CommerceExpIntercomQuery>;
     commerceExp_node?: Maybe<CommerceExpNode>;
     commerceExp_pls?: Maybe<CommerceExpPlsQuery>;
+    commerceExp_poaQuery?: Maybe<CommerceExpPoaQuery>;
     commerceExp_taas?: Maybe<CommerceExpTaasQuery>;
     compass?: Maybe<CompassCatalogQueryApi>;
     confluence?: Maybe<ConfluenceQueryApi>;
     confluenceUsers?: Maybe<PaginatedPersonList>;
@@ -142140,8 +142444,9 @@
     confluence_nbmScanList?: Maybe<ConfluenceNbmScanConnection>;
     confluence_nbmScanResult?: Maybe<ConfluenceNbmScanResult>;
     confluence_nbmTransformationJobList?: Maybe<ConfluenceNbmTransformationJobConnection>;
     confluence_nbmTransformationList?: Maybe<ConfluenceNbmTransformationListConnection>;
+    confluence_nbmTransformerConfig?: Maybe<ConfluenceNbmTransformerConfig>;
     confluence_nbmVerificationResult?: Maybe<ConfluenceNbmVerificationResultConnection>;
     confluence_ncsPdfExportConfiguration?: Maybe<ConfluenceNcsPdfExportConfiguration>;
     confluence_note?: Maybe<NoteResponse>;
     confluence_notesByProductLink?: Maybe<NoteConnection>;
@@ -142164,8 +142469,9 @@
     confluence_shareConfiguration?: Maybe<ConfluenceShareConfiguration>;
     confluence_spaceMediaSession?: Maybe<ContentMediaSession>;
     confluence_spacePermissionCombinationsByCriteria?: Maybe<ConfluenceSpacePermissionCombinationConnection>;
     confluence_spacePermissionsByCombinationId?: Maybe<ConfluenceSpacePermissionConnection>;
+    confluence_spacePermissionsForSpaceRole?: Maybe<Array<SpacePermissionInfo>>;
     confluence_spaceProperty?: Maybe<ConfluenceSpaceProperty>;
     confluence_spaceRecommendations?: Maybe<ConfluenceSpaceRecommendations>;
     confluence_spaceRoleMode?: Maybe<ConfluenceSpaceRoleMode>;
     confluence_spaceWatchersUnfiltered?: Maybe<PaginatedPersonList>;
@@ -142324,8 +142630,9 @@
     developerLogAccess?: Maybe<Array<Maybe<DeveloperLogAccessResult>>>;
     developmentInformation?: Maybe<IssueDevOpsDevelopmentInformation>;
     devopsmetrics_echo?: Maybe<Scalars['String']['output']>;
     diagnostics?: Maybe<Scalars['JSON']['output']>;
+    dlp_getDetectionContentSummary?: Maybe<DlpDetectionContentSummaryListResponse>;
     dlp_getDetectorClassificationMapping?: Maybe<DlpDetectorClassificationMappingListResponse>;
     dvcs?: Maybe<DvcsQuery>;
     echo?: Maybe<Scalars['String']['output']>;
     ecosystem?: Maybe<EcosystemQuery>;
@@ -142400,11 +142707,12 @@
     graphIntegration_twgCapabilityContainer?: Maybe<GraphIntegrationTwgCapabilityContainer>;
     graphIntegration_twgCapabilityContainersInContext?: Maybe<GraphIntegrationTwgCapabilityContainerConnection>;
     graphStore?: Maybe<GraphStore>;
     graphStoreV2?: Maybe<GraphStoreV2>;
+    gravity_importIdeas: GravityImportIdeasResult;
     gravity_jpdImportIdeas?: Maybe<JpdImportIdeasPayload>;
-    gravity_viewTemplateMappingProposals: GravityRefMappingProposals;
-    gravity_viewTemplates: Array<GravityViewTemplate>;
+    gravity_viewTemplateMappingProposals: GravityViewTemplateMappingProposalsResult;
+    gravity_viewTemplates: GravityViewTemplatesResult;
     group?: Maybe<Group>;
     groupCounts?: Maybe<GraphQlGroupCountsResult>;
     groupMembers?: Maybe<PaginatedPersonList>;
     groups?: Maybe<PaginatedGroupList>;
@@ -142504,11 +142812,11 @@
     jira_versionsForProjectByKey?: Maybe<JiraVersionConnection>;
     jira_view?: Maybe<JiraViewResult>;
     jpdViewsService_echo?: Maybe<Scalars['String']['output']>;
     jpdViewsService_globalView?: Maybe<JpdViewsServiceGlobalView>;
+    jpdViewsService_globalViewSpaces?: Maybe<JpdViewsServiceGlobalViewProjectsResponse>;
     jpdViewsService_globalViewsByCriteria?: Maybe<JpdViewsServiceGlobalViewConnection>;
     jpdViewsService_globalViewsById?: Maybe<Array<Maybe<JpdViewsServiceGlobalView>>>;
-    jpdViewsService_hydrateGlobalViews?: Maybe<JpdViewsServiceGlobalViewsHydrationExample>;
     jpdViewsService_hydrateUser?: Maybe<JpdViewsServiceUserHydrationExample>;
     jsmAgentWorkspace_locations?: Maybe<JsmAgentWorkspaceLocations>;
     jsmChannels_conversationsByContainerAri?: Maybe<JsmChannelsConversationsByContainerAriResult>;
     jsmChannels_conversationsByIds?: Maybe<Array<Maybe<JsmChannelsOrchestratorConversation>>>;
@@ -143410,8 +143718,10 @@
     cloudId: Scalars['String']['input'];
     containerAri: Scalars['ID']['input'];
 };
 export declare type QueryAgentWorkspace_AvailabilityArgs = {
+    after?: InputMaybe<Scalars['String']['input']>;
+    first?: InputMaybe<Scalars['Int']['input']>;
     input: AgentWorkspaceAvailabilityInput;
 };
 export declare type QueryAgentWorkspace_AvailableAgentsArgs = {
     cloudId: Scalars['ID']['input'];
@@ -143425,25 +143735,18 @@
 export declare type QueryAgentWorkspace_CapacitySummaryArgs = {
     input: AgentWorkspaceCapacityInput;
 };
 export declare type QueryAgentWorkspace_CatalogArgs = {
-    cloudId: Scalars['ID']['input'];
-    id: Scalars['ID']['input'];
-    maxDepth?: InputMaybe<Scalars['Int']['input']>;
+    input: AgentWorkspaceCatalogInput;
 };
 export declare type QueryAgentWorkspace_CatalogTypeArgs = {
-    cloudId: Scalars['ID']['input'];
-    id: Scalars['ID']['input'];
+    input: AgentWorkspaceCatalogTypeInput;
 };
 export declare type QueryAgentWorkspace_CatalogTypesArgs = {
-    cloudId: Scalars['ID']['input'];
-    filter?: InputMaybe<AgentWorkspaceCatalogTypeFilterInput>;
-    pagination?: InputMaybe<AgentWorkspacePaginationInput>;
+    input: AgentWorkspaceCatalogTypesInput;
 };
 export declare type QueryAgentWorkspace_CatalogsArgs = {
-    cloudId: Scalars['ID']['input'];
-    filter?: InputMaybe<AgentWorkspaceCatalogFilterInput>;
-    pagination?: InputMaybe<AgentWorkspacePaginationInput>;
+    input: AgentWorkspaceCatalogsInput;
 };
 export declare type QueryAgentWorkspace_DefaultCapacityArgs = {
     cloudId: Scalars['ID']['input'];
     projectKey: Scalars['String']['input'];
@@ -143464,34 +143767,24 @@
     first?: InputMaybe<Scalars['Int']['input']>;
     input: AgentWorkspaceShiftsQueryInput;
 };
 export declare type QueryAgentWorkspace_SkillArgs = {
-    cloudId: Scalars['ID']['input'];
-    id: Scalars['ID']['input'];
+    input: AgentWorkspaceSkillInput;
 };
 export declare type QueryAgentWorkspace_SkillGapsArgs = {
-    cloudId: Scalars['ID']['input'];
-    pagination?: InputMaybe<AgentWorkspacePaginationInput>;
+    input: AgentWorkspaceSkillGapsInput;
 };
 export declare type QueryAgentWorkspace_SkillsArgs = {
-    cloudId: Scalars['ID']['input'];
-    filter?: InputMaybe<AgentWorkspaceSkillFilterInput>;
-    pagination?: InputMaybe<AgentWorkspacePaginationInput>;
+    input: AgentWorkspaceSkillsInput;
 };
 export declare type QueryAgentWorkspace_UserSkillArgs = {
-    cloudId: Scalars['ID']['input'];
-    id: Scalars['ID']['input'];
+    input: AgentWorkspaceUserSkillInput;
 };
 export declare type QueryAgentWorkspace_UserSkillsArgs = {
-    cloudId: Scalars['ID']['input'];
-    filter?: InputMaybe<AgentWorkspaceUserSkillFilterInput>;
-    pagination?: InputMaybe<AgentWorkspacePaginationInput>;
+    input: AgentWorkspaceUserSkillsInput;
 };
 export declare type QueryAgentWorkspace_UsersBySkillsArgs = {
-    cloudId: Scalars['ID']['input'];
-    pagination?: InputMaybe<AgentWorkspacePaginationInput>;
-    skillIds: Array<Scalars['ID']['input']>;
-    skillMatchType?: InputMaybe<AgentWorkspaceSkillMatchType>;
+    input: AgentWorkspaceUsersBySkillsInput;
 };
 export declare type QueryAiCoreApi_VsaQuestionsByProjectArgs = {
     projectAri: Scalars['ID']['input'];
 };
@@ -144070,8 +144363,11 @@
 };
 export declare type QueryAvp_GetFilterExpressionArgs = {
     dashboardAri: Scalars['ID']['input'];
 };
+export declare type QueryAvpanalytics_GetDataSourceArgs = {
+    input: AvpAnalyticsGetDataSourceInput;
+};
 export declare type QueryAvpanalytics_GetDataSourcesArgs = {
     cloudId: Scalars['ID']['input'];
     searchInput?: InputMaybe<AvpAnalyticsSearchInput>;
     workspaceId: Scalars['ID']['input'];
@@ -144296,8 +144592,9 @@
 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 QueryCodeInJiraArgs = {
@@ -144359,8 +144656,11 @@
 };
 export declare type QueryCommerceExp_PlsArgs = {
     id?: InputMaybe<Scalars['ID']['input']>;
 };
+export declare type QueryCommerceExp_PoaQueryArgs = {
+    id?: InputMaybe<Scalars['ID']['input']>;
+};
 export declare type QueryCommerceExp_TaasArgs = {
     id?: InputMaybe<Scalars['ID']['input']>;
 };
 export declare type QueryConfluenceArgs = {
@@ -144719,8 +145019,12 @@
     cloudId: Scalars['ID']['input'];
     first?: InputMaybe<Scalars['Int']['input']>;
     scanId: Scalars['ID']['input'];
 };
+export declare type QueryConfluence_NbmTransformerConfigArgs = {
+    cloudId: Scalars['ID']['input'];
+    scanId: Scalars['ID']['input'];
+};
 export declare type QueryConfluence_NbmVerificationResultArgs = {
     after?: InputMaybe<Scalars['String']['input']>;
     cloudId: Scalars['ID']['input'];
     direction?: InputMaybe<ConfluenceNbmVerificationResultDirection>;
@@ -144853,8 +145157,12 @@
     cloudId: Scalars['ID']['input'];
     combinationId: Scalars['String']['input'];
     first?: InputMaybe<Scalars['Int']['input']>;
 };
+export declare type QueryConfluence_SpacePermissionsForSpaceRoleArgs = {
+    cloudId: Scalars['ID']['input'];
+    roleId: Scalars['ID']['input'];
+};
 export declare type QueryConfluence_SpacePropertyArgs = {
     cloudId: Scalars['ID']['input'];
     key: Scalars['String']['input'];
     spaceId: Scalars['ID']['input'];
@@ -145625,8 +145933,14 @@
 };
 export declare type QueryDevopsmetrics_EchoArgs = {
     message: Scalars['String']['input'];
 };
+export declare type QueryDlp_GetDetectionContentSummaryArgs = {
+    cursor?: InputMaybe<Scalars['String']['input']>;
+    orgId?: InputMaybe<Scalars['String']['input']>;
+    pageSize?: InputMaybe<Scalars['Int']['input']>;
+    scope?: InputMaybe<DlpScopeInput>;
+};
 export declare type QueryDlp_GetDetectorClassificationMappingArgs = {
     cursor?: InputMaybe<Scalars['String']['input']>;
     orgId?: InputMaybe<Scalars['String']['input']>;
     pageSize?: InputMaybe<Scalars['Int']['input']>;
@@ -145901,8 +146215,12 @@
     contextAri: Scalars['ID']['input'];
     first?: InputMaybe<Scalars['Int']['input']>;
     last?: InputMaybe<Scalars['Int']['input']>;
 };
+export declare type QueryGravity_ImportIdeasArgs = {
+    cloudId: Scalars['ID']['input'];
+    input: GravityImportIdeasInput;
+};
 export declare type QueryGravity_JpdImportIdeasArgs = {
     cloudId?: InputMaybe<Scalars['ID']['input']>;
     input: JpdImportIdeasInput;
 };
@@ -146270,21 +146588,20 @@
 };
 export declare type QueryJpdViewsService_GlobalViewArgs = {
     id: Scalars['ID']['input'];
 };
+export declare type QueryJpdViewsService_GlobalViewSpacesArgs = {
+    id: Scalars['ID']['input'];
+};
 export declare type QueryJpdViewsService_GlobalViewsByCriteriaArgs = {
     cloudId: Scalars['ID']['input'];
     filter: JpdViewsServiceGlobalViewsByCriteriaInput;
     pagination: JpdViewsServicePaginationInput;
-    sortBy?: InputMaybe<JpdViewsServiceSortByInput>;
 };
 export declare type QueryJpdViewsService_GlobalViewsByIdArgs = {
     cloudId: Scalars['ID']['input'];
     ids: Array<Scalars['ID']['input']>;
 };
-export declare type QueryJpdViewsService_HydrateGlobalViewsArgs = {
-    cloudId: Scalars['ID']['input'];
-};
 export declare type QueryJpdViewsService_HydrateUserArgs = {
     cloudId: Scalars['ID']['input'];
 };
 export declare type QueryJsmAgentWorkspace_LocationsArgs = {
@@ -148549,8 +148866,9 @@
     HelpCenterCurrency = "HELP_CENTER_CURRENCY",
     HelpLayoutCurrency = "HELP_LAYOUT_CURRENCY",
     HelpObjectStoreCurrency = "HELP_OBJECT_STORE_CURRENCY",
     JpdContainerQueryCurrency = "JPD_CONTAINER_QUERY_CURRENCY",
+    JpdContainerWriteCurrency = "JPD_CONTAINER_WRITE_CURRENCY",
     KnowledgeBaseCurrency = "KNOWLEDGE_BASE_CURRENCY",
     PolarisBetaUserCurrency = "POLARIS_BETA_USER_CURRENCY",
     PolarisCollabTokenQueryCurrency = "POLARIS_COLLAB_TOKEN_QUERY_CURRENCY",
     PolarisCommentCurrency = "POLARIS_COMMENT_CURRENCY",
@@ -150573,8 +150891,9 @@
     errors?: Maybe<Array<SearchError>>;
     interleaverScrapingResult?: Maybe<SearchInterleaverScrapingResult>;
     pageInfo: PageInfo;
     queryInfo?: Maybe<SearchQueryInfo>;
+    searchSessionId?: Maybe<Scalars['String']['output']>;
     totalCount?: Maybe<Scalars['Int']['output']>;
     totalCounts: Array<SearchProductCount>;
 };
 export declare type SearchJiraFilter = {
@@ -150643,8 +150962,9 @@
     type: SearchResultType;
     url: Scalars['String']['output'];
 };
 export declare enum SearchLinkedResultCategory {
+    Child = "child",
     MentionedBy = "mentionedBy",
     Mentions = "mentions",
     Similar = "similar"
 }
@@ -150707,8 +151027,9 @@
     input: SearchInput;
 };
 export declare type SearchQueryApiConfigurationArgs = {
     cloudId: Scalars['ID']['input'];
+    experience?: InputMaybe<Scalars['String']['input']>;
 };
 export declare type SearchQueryApiRecentArgs = {
     analytics?: InputMaybe<SearchAnalyticsInput>;
     experience: Scalars['String']['input'];
@@ -151323,10 +151644,17 @@
     Spreadsheet = "spreadsheet",
     Tag = "tag",
     Type = "type",
     Unrecognised = "unrecognised",
+    Video = "video",
     Whiteboard = "whiteboard"
 }
+export declare type SearchSalesforceFilters = {
+    closeDate?: InputMaybe<Scalars['String']['input']>;
+    isClosed?: InputMaybe<Scalars['Boolean']['input']>;
+    owners?: InputMaybe<Array<Scalars['String']['input']>>;
+    stage?: InputMaybe<Array<Scalars['String']['input']>>;
+};
 export declare type SearchSortInput = {
     field: Scalars['String']['input'];
     key?: InputMaybe<Scalars['String']['input']>;
     order: SearchSortOrder;
@@ -151360,8 +151688,9 @@
     integrations?: InputMaybe<Array<Scalars['ID']['input']>>;
     labels?: InputMaybe<Array<Scalars['String']['input']>>;
     lastUpdatedBy?: InputMaybe<Array<Scalars['String']['input']>>;
     range?: InputMaybe<Array<InputMaybe<SearchThirdPartyRangeFilter>>>;
+    salesforceFilters?: InputMaybe<SearchSalesforceFilters>;
     subtypes?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
     teamsFilters?: InputMaybe<SearchTeamsFilters>;
     thirdPartyProducts?: InputMaybe<Array<SearchThirdPartyProduct>>;
     thirdPartyTypes?: InputMaybe<Array<Scalars['String']['input']>>;
@@ -151370,11 +151699,14 @@
 export declare type SearchThirdPartyMetadata = {
     __typename?: 'SearchThirdPartyMetadata';
     connectionId?: Maybe<Scalars['String']['output']>;
     datasourceId?: Maybe<Scalars['String']['output']>;
+    entityTypes?: Maybe<Array<Scalars['String']['output']>>;
+    environmentType?: Maybe<Scalars['String']['output']>;
     integrationARI: Scalars['String']['output'];
     isImpersonationAuthEnabled?: Maybe<Scalars['Boolean']['output']>;
     isUserOAuthed: Scalars['Boolean']['output'];
+    lightIcon?: Maybe<Scalars['String']['output']>;
     name: Scalars['String']['output'];
     outboundAuthUrl: Scalars['String']['output'];
     providerId?: Maybe<Scalars['String']['output']>;
     workspaceName?: Maybe<Scalars['String']['output']>;
@@ -176432,8 +176764,9 @@
 };
 export declare type TownsquareGoalFocusAreasArgs = {
     after?: InputMaybe<Scalars['String']['input']>;
     first?: InputMaybe<Scalars['Int']['input']>;
+    queryContext?: InputMaybe<Scalars['String']['input']>;
 };
 export declare type TownsquareGoalHighlightsArgs = {
     after?: InputMaybe<Scalars['String']['input']>;
     createdAfter?: InputMaybe<Scalars['DateTime']['input']>;
@@ -177807,8 +178140,9 @@
 };
 export declare type TownsquareProjectFocusAreasArgs = {
     after?: InputMaybe<Scalars['String']['input']>;
     first?: InputMaybe<Scalars['Int']['input']>;
+    queryContext?: InputMaybe<Scalars['String']['input']>;
 };
 export declare type TownsquareProjectGoalsArgs = {
     after?: InputMaybe<Scalars['String']['input']>;
     first?: InputMaybe<Scalars['Int']['input']>;
@@ -177824,8 +178158,9 @@
 };
 export declare type TownsquareProjectLinkedJiraWorkItemsArgs = {
     after?: InputMaybe<Scalars['String']['input']>;
     first?: InputMaybe<Scalars['Int']['input']>;
+    queryContext?: InputMaybe<Scalars['String']['input']>;
     sort?: InputMaybe<GraphStoreAtlasProjectTrackedOnJiraWorkItemSortInput>;
 };
 export declare type TownsquareProjectLinksArgs = {
     after?: InputMaybe<Scalars['String']['input']>;
@@ -181861,8 +182196,9 @@
     createCard?: Maybe<TrelloCreateCardPayload>;
     createMemberAiRule?: Maybe<TrelloCreateMemberAiRulePayload>;
     createOrUpdatePlannerCalendar?: Maybe<TrelloCreateOrUpdatePlannerCalendarPayload>;
     createPlannerCalendarEvent?: Maybe<TrelloCreatePlannerCalendarEventPayload>;
+    createWorkOverviewDashboard?: Maybe<TrelloWorkOverviewDashboardPayload>;
     createWorkspaceTag?: Maybe<TrelloCreateWorkspaceTagPayload>;
     deleteAiRule?: Maybe<TrelloDeleteAiRulePayload>;
     deleteBoardBackground?: Maybe<TrelloDeleteBoardBackgroundPayload>;
     deletePlannerCalendarEvent?: Maybe<TrelloDeletePlannerCalendarEventPayload>;
@@ -181967,8 +182303,11 @@
 };
 export declare type TrelloMutationApiCreatePlannerCalendarEventArgs = {
     input: TrelloCreatePlannerCalendarEventInput;
 };
+export declare type TrelloMutationApiCreateWorkOverviewDashboardArgs = {
+    input: TrelloWorkOverviewDashboardInput;
+};
 export declare type TrelloMutationApiCreateWorkspaceTagArgs = {
     input: TrelloCreateWorkspaceTagInput;
 };
 export declare type TrelloMutationApiDeleteAiRuleArgs = {
@@ -182702,8 +183041,9 @@
     id: Scalars['ID']['output'];
     isPrimary?: Maybe<Scalars['Boolean']['output']>;
     objectId?: Maybe<Scalars['ID']['output']>;
     providerCalendarId?: Maybe<Scalars['ID']['output']>;
+    readOnly?: Maybe<Scalars['Boolean']['output']>;
     timezone?: Maybe<Scalars['String']['output']>;
     title?: Maybe<Scalars['String']['output']>;
     type?: Maybe<TrelloSupportedPlannerProviders>;
 };
@@ -182771,8 +183111,9 @@
 export declare type TrelloPlannerUpdated = {
     __typename?: 'TrelloPlannerUpdated';
     accounts?: Maybe<TrelloPlannerCalendarAccountConnectionUpdated>;
     cardsWithDueDates?: Maybe<TrelloPlannerCardsWithDueDatesConnectionUpdated>;
+    dueDateCardsSettings?: Maybe<TrelloPlannerDueDateCardsSettings>;
     id: Scalars['ID']['output'];
     onBoardWithCardDueDeleted?: Maybe<Array<TrelloPlannerCardWithDueDateBoardDeleted>>;
     onCardWithDueDateDeleted?: Maybe<Array<TrelloPlannerCardWithDueDateDeleted>>;
     onListWithCardDueDeleted?: Maybe<Array<TrelloPlannerCardWithDueDateListDeleted>>;
@@ -182979,8 +183320,9 @@
     templateLanguages?: Maybe<Array<TrelloTemplateGalleryLanguage>>;
     userUnrestrictedAccessSummary?: Maybe<TrelloUserUnrestrictedAccessSummary>;
     userWorkspaceAccessSummary?: Maybe<TrelloWorkspaceAccessSummary>;
     usersById?: Maybe<Array<Maybe<TrelloMember>>>;
+    workOverviewDashboardJob?: Maybe<TrelloWorkOverviewDashboardJob>;
     workspace?: Maybe<TrelloWorkspace>;
 };
 export declare type TrelloQueryApiApplicationArgs = {
     id: Scalars['ID']['input'];
@@ -183100,8 +183442,11 @@
 };
 export declare type TrelloQueryApiUsersByIdArgs = {
     ids: Array<Scalars['ID']['input']>;
 };
+export declare type TrelloQueryApiWorkOverviewDashboardJobArgs = {
+    id: Scalars['ID']['input'];
+};
 export declare type TrelloQueryApiWorkspaceArgs = {
     id: Scalars['ID']['input'];
 };
 export declare type TrelloQuickCaptureBoard = {
@@ -183372,8 +183717,9 @@
     onCardBatchUpdated?: Maybe<TrelloCardBatch>;
     onInboxUpdated?: Maybe<TrelloInboxUpdated>;
     onMemberPlannerEventCardsUpdated?: Maybe<TrelloMemberPlannerEventCardsUpdated>;
     onMemberUpdated?: Maybe<TrelloMemberUpdated>;
+    onWorkOverviewDashboardJobUpdated?: Maybe<TrelloWorkOverviewDashboardJob>;
     onWorkspaceUpdated?: Maybe<TrelloWorkspaceUpdated>;
 };
 export declare type TrelloSubscriptionApiOnBoardCardSetUpdatedArgs = {
     cardIds?: InputMaybe<Array<InputMaybe<Scalars['ID']['input']>>>;
@@ -183394,8 +183740,11 @@
 };
 export declare type TrelloSubscriptionApiOnMemberUpdatedArgs = {
     id: Scalars['ID']['input'];
 };
+export declare type TrelloSubscriptionApiOnWorkOverviewDashboardJobUpdatedArgs = {
+    id: Scalars['ID']['input'];
+};
 export declare type TrelloSubscriptionApiOnWorkspaceUpdatedArgs = {
     id: Scalars['ID']['input'];
 };
 export declare enum TrelloSupportedPlannerProviders {
@@ -183691,8 +184040,9 @@
 };
 export declare type TrelloUpdateCardNamePayload = Payload & {
     __typename?: 'TrelloUpdateCardNamePayload';
     card?: Maybe<TrelloCard>;
+    cardOrInboxCard?: Maybe<TrelloBaseCard>;
     errors?: Maybe<Array<MutationError>>;
     success: Scalars['Boolean']['output'];
 };
 export declare type TrelloUpdateCardPositionOnPlannerCalendarEventInput = {
@@ -183906,8 +184256,29 @@
     card?: Maybe<TrelloCard>;
     errors?: Maybe<Array<MutationError>>;
     success: Scalars['Boolean']['output'];
 };
+export declare type TrelloWorkOverviewDashboardInput = {
+    workspaceId: Scalars['ID']['input'];
+};
+export declare type TrelloWorkOverviewDashboardJob = {
+    __typename?: 'TrelloWorkOverviewDashboardJob';
+    board?: Maybe<TrelloBoard>;
+    objectId: Scalars['ID']['output'];
+    status?: Maybe<TrelloWorkOverviewDashboardJobStatus>;
+};
+export declare enum TrelloWorkOverviewDashboardJobStatus {
+    Completed = "COMPLETED",
+    Creating = "CREATING",
+    Failed = "FAILED",
+    Pending = "PENDING"
+}
+export declare type TrelloWorkOverviewDashboardPayload = Payload & {
+    __typename?: 'TrelloWorkOverviewDashboardPayload';
+    errors?: Maybe<Array<MutationError>>;
+    job?: Maybe<TrelloWorkOverviewDashboardJob>;
+    success: Scalars['Boolean']['output'];
+};
 export declare type TrelloWorkspace = Node & {
     __typename?: 'TrelloWorkspace';
     aiEligible?: Maybe<Scalars['Boolean']['output']>;
     creationMethod?: Maybe<Scalars['String']['output']>;