@forge/cli-shared

8.5.0-next.78.5.0-next.8
out/graphql/graphql-types.d.ts
~out/graphql/graphql-types.d.tsModified
+139−1
Index: package/out/graphql/graphql-types.d.ts
===================================================================
--- package/out/graphql/graphql-types.d.ts
+++ package/out/graphql/graphql-types.d.ts
@@ -1993,8 +1993,9 @@
     actions?: Maybe<Array<AgentStudioAction>>;
 };
 export declare type AgentStudioActionConfigurationInput = {
     actions?: InputMaybe<Array<AgentStudioActionInput>>;
+    etag?: InputMaybe<Scalars['String']['input']>;
 };
 export declare type AgentStudioActionInput = {
     actionKey: Scalars['String']['input'];
 };
@@ -2028,8 +2029,9 @@
 };
 export declare type AgentStudioAgent = {
     connectedChannels?: Maybe<AgentStudioConnectedChannels>;
     description?: Maybe<Scalars['String']['output']>;
+    etag?: Maybe<Scalars['String']['output']>;
     id: Scalars['ID']['output'];
     knowledgeSources?: Maybe<AgentStudioKnowledgeConfiguration>;
     name?: Maybe<Scalars['String']['output']>;
     permissions?: Maybe<AgentStudioAgentPermissions>;
@@ -2090,8 +2092,9 @@
     conversationStarters?: Maybe<Array<Scalars['String']['output']>>;
     creator?: Maybe<User>;
     creatorType?: Maybe<Scalars['String']['output']>;
     description?: Maybe<Scalars['String']['output']>;
+    etag?: Maybe<Scalars['String']['output']>;
     externalConfigReference?: Maybe<Scalars['String']['output']>;
     icon?: Maybe<Scalars['String']['output']>;
     id: Scalars['ID']['output'];
     identityAccountId?: Maybe<Scalars['String']['output']>;
@@ -2237,8 +2240,9 @@
     sources?: Maybe<Array<AgentStudioKnowledgeSource>>;
 };
 export declare type AgentStudioKnowledgeConfigurationInput = {
     enabled?: InputMaybe<Scalars['Boolean']['input']>;
+    etag?: InputMaybe<Scalars['String']['input']>;
     sources?: InputMaybe<Array<AgentStudioKnowledgeSourceInput>>;
 };
 export declare type AgentStudioKnowledgeFilter = AgentStudioConfluenceKnowledgeFilter | AgentStudioJiraKnowledgeFilter | AgentStudioJsmKnowledgeFilter | AgentStudioSlackKnowledgeFilter;
 export declare type AgentStudioKnowledgeFiltersInput = {
@@ -2348,8 +2352,9 @@
     __typename?: 'AgentStudioServiceAgent';
     connectedChannels?: Maybe<AgentStudioConnectedChannels>;
     defaultJiraRequestTypeId?: Maybe<Scalars['String']['output']>;
     description?: Maybe<Scalars['String']['output']>;
+    etag?: Maybe<Scalars['String']['output']>;
     id: Scalars['ID']['output'];
     knowledgeSources?: Maybe<AgentStudioKnowledgeConfiguration>;
     linkedJiraProject?: Maybe<JiraProject>;
     name?: Maybe<Scalars['String']['output']>;
@@ -2458,8 +2463,9 @@
     behaviour?: InputMaybe<Scalars['String']['input']>;
     creatorId?: InputMaybe<Scalars['ID']['input']>;
     defaultJiraRequestTypeId?: InputMaybe<Scalars['String']['input']>;
     description?: InputMaybe<Scalars['String']['input']>;
+    etag?: InputMaybe<Scalars['String']['input']>;
     instructions?: InputMaybe<Scalars['String']['input']>;
     name?: InputMaybe<Scalars['String']['input']>;
 };
 export declare type AgentStudioUpdateAgentDetailsPayload = Payload & {
@@ -2485,8 +2491,9 @@
     users?: Maybe<Array<Maybe<User>>>;
 };
 export declare type AgentStudioUpdateConversationStartersInput = {
     conversationStarters?: InputMaybe<Array<Scalars['String']['input']>>;
+    etag?: InputMaybe<Scalars['String']['input']>;
 };
 export declare type AgentStudioUpdateConversationStartersPayload = Payload & {
     __typename?: 'AgentStudioUpdateConversationStartersPayload';
     agent?: Maybe<AgentStudioAgent>;
@@ -6396,8 +6403,26 @@
     __typename?: 'CcpExperienceCapability';
     experienceUrl?: Maybe<Scalars['String']['output']>;
     isAvailableToUser?: Maybe<Scalars['Boolean']['output']>;
 };
+export declare type CcpExtension = {
+    __typename?: 'CcpExtension';
+    ari?: Maybe<Scalars['String']['output']>;
+    catalogAccountId?: Maybe<Scalars['String']['output']>;
+    createdAt?: Maybe<Scalars['Float']['output']>;
+    data?: Maybe<Array<Maybe<CcpMapEntry>>>;
+    entityKey?: Maybe<Scalars['String']['output']>;
+    entityType?: Maybe<CcpExtensionEntityType>;
+    key?: Maybe<Scalars['String']['output']>;
+    revisionKey?: Maybe<Scalars['String']['output']>;
+    updatedAt?: Maybe<Scalars['Float']['output']>;
+    version?: Maybe<Scalars['Int']['output']>;
+};
+export declare enum CcpExtensionEntityType {
+    Offering = "OFFERING",
+    PricingPlan = "PRICING_PLAN",
+    Product = "PRODUCT"
+}
 export declare type CcpInvoiceGroup = CommerceInvoiceGroup & {
     __typename?: 'CcpInvoiceGroup';
     experienceCapabilities?: Maybe<CcpInvoiceGroupExperienceCapabilities>;
     id: Scalars['ID']['output'];
@@ -6932,15 +6957,19 @@
 }
 export declare type CcpProduct = Node & {
     __typename?: 'CcpProduct';
     catalogAccountId?: Maybe<Scalars['ID']['output']>;
+    extensions?: Maybe<Array<Maybe<CcpExtension>>>;
     id: Scalars['ID']['output'];
     name?: Maybe<Scalars['String']['output']>;
     offerings?: Maybe<Array<Maybe<CcpOffering>>>;
     status?: Maybe<CcpProductStatus>;
     supportedBillingSystems?: Maybe<Array<Maybe<CcpSupportedBillingSystems>>>;
     version?: Maybe<Scalars['Int']['output']>;
 };
+export declare type CcpProductExtensionsArgs = {
+    revisionKeys?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
+};
 export declare enum CcpProductStatus {
     Active = "ACTIVE",
     AtNotice = "AT_NOTICE",
     Draft = "DRAFT",
@@ -14652,8 +14681,26 @@
     customContentTypeKey: Scalars['String']['output'];
     customContentTypeName: Scalars['String']['output'];
     supportedPermissions: Array<Maybe<ConfluenceCustomContentPermissionType>>;
 };
+export declare type ConfluenceCustomContentPermissionAssignment = {
+    __typename?: 'ConfluenceCustomContentPermissionAssignment';
+    confluenceCustomContentPrincipal?: Maybe<ConfluenceCustomContentPrincipal>;
+    customContentTypeKey?: Maybe<Scalars['String']['output']>;
+    customContentTypeName?: Maybe<Scalars['String']['output']>;
+    permissionType?: Maybe<ConfluenceCustomContentPermissionType>;
+};
+export declare type ConfluenceCustomContentPermissionAssignmentConnection = {
+    __typename?: 'ConfluenceCustomContentPermissionAssignmentConnection';
+    edges?: Maybe<Array<Maybe<ConfluenceCustomContentPermissionAssignmentEdge>>>;
+    nodes?: Maybe<Array<Maybe<ConfluenceCustomContentPermissionAssignment>>>;
+    pageInfo: ConfluencePageInfo;
+};
+export declare type ConfluenceCustomContentPermissionAssignmentEdge = {
+    __typename?: 'ConfluenceCustomContentPermissionAssignmentEdge';
+    cursor: Scalars['String']['output'];
+    node?: Maybe<ConfluenceCustomContentPermissionAssignment>;
+};
 export declare type ConfluenceCustomContentPermissionInput = {
     customContentTypeKey: Scalars['String']['input'];
     permission: ConfluenceCustomContentPermissionType;
 };
@@ -14667,8 +14714,13 @@
     Create = "CREATE",
     Delete = "DELETE",
     Read = "READ"
 }
+export declare type ConfluenceCustomContentPrincipal = {
+    __typename?: 'ConfluenceCustomContentPrincipal';
+    principalId: Scalars['ID']['output'];
+    principalType: ConfluenceCustomContentPermissionPrincipalType;
+};
 export declare type ConfluenceCustomContentPrincipalInput = {
     principalId: Scalars['ID']['input'];
     principalType: ConfluenceCustomContentPermissionPrincipalType;
 };
@@ -20088,8 +20140,9 @@
 };
 export declare type CplsAddContributionsInput = {
     cloudId: Scalars['ID']['input'];
     contributions: Array<CplsAddContributionInput>;
+    scopeId: Scalars['ID']['input'];
 };
 export declare type CplsAddContributionsPayload = {
     __typename?: 'CplsAddContributionsPayload';
     contributors: Array<CplsContributorEdge>;
@@ -26039,8 +26092,9 @@
     installationId: Scalars['ID']['input'];
     isGlobal?: InputMaybe<Scalars['Boolean']['input']>;
     name: Scalars['String']['input'];
     payload: Scalars['String']['input'];
+    token?: InputMaybe<Scalars['String']['input']>;
 };
 export declare type EcosystemMutationRemoveAppContributorsArgs = {
     input: RemoveAppContributorsInput;
 };
@@ -26207,8 +26261,9 @@
     context?: InputMaybe<Scalars['String']['input']>;
     installationId: Scalars['ID']['input'];
     isGlobal?: InputMaybe<Scalars['Boolean']['input']>;
     name: Scalars['String']['input'];
+    token?: InputMaybe<Scalars['String']['input']>;
 };
 export declare type EcosystemUpdateAppOAuthClientResult = Payload & {
     __typename?: 'EcosystemUpdateAppOAuthClientResult';
     errors?: Maybe<Array<MutationError>>;
@@ -33190,8 +33245,10 @@
     contentReferencedEntityInverseRelationship?: Maybe<GraphStoreFullContentReferencedEntityConnection>;
     contentReferencedEntityRelationship?: Maybe<GraphStoreFullContentReferencedEntityConnection>;
     conversationHasMessage?: Maybe<GraphStoreSimplifiedConversationHasMessageConnection>;
     conversationHasMessageInverse?: Maybe<GraphStoreSimplifiedConversationHasMessageInverseConnection>;
+    customerAssociatedIssue?: Maybe<GraphStoreSimplifiedCustomerAssociatedIssueConnection>;
+    customerAssociatedIssueInverse?: Maybe<GraphStoreSimplifiedCustomerAssociatedIssueInverseConnection>;
     cypherQuery: GraphStoreCypherQueryConnection;
     cypherQueryV2: GraphStoreCypherQueryV2Connection;
     cypherQueryV2Batch: GraphStoreCypherQueryV2BatchConnection;
     deploymentAssociatedDeployment?: Maybe<GraphStoreSimplifiedDeploymentAssociatedDeploymentConnection>;
@@ -34628,8 +34685,22 @@
     first?: InputMaybe<Scalars['Int']['input']>;
     id: Scalars['ID']['input'];
     sort?: InputMaybe<GraphStoreConversationHasMessageSortInput>;
 };
+export declare type GraphStoreCustomerAssociatedIssueArgs = {
+    after?: InputMaybe<Scalars['String']['input']>;
+    consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
+    first?: InputMaybe<Scalars['Int']['input']>;
+    id: Scalars['ID']['input'];
+    sort?: InputMaybe<GraphStoreCustomerAssociatedIssueSortInput>;
+};
+export declare type GraphStoreCustomerAssociatedIssueInverseArgs = {
+    after?: InputMaybe<Scalars['String']['input']>;
+    consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
+    first?: InputMaybe<Scalars['Int']['input']>;
+    id: Scalars['ID']['input'];
+    sort?: InputMaybe<GraphStoreCustomerAssociatedIssueSortInput>;
+};
 export declare type GraphStoreCypherQueryArgs = {
     additionalInputs?: InputMaybe<Scalars['JSON']['input']>;
     after?: InputMaybe<Scalars['String']['input']>;
     first?: InputMaybe<Scalars['Int']['input']>;
@@ -40997,8 +41068,11 @@
     Sast = "SAST",
     Sca = "SCA",
     Unknown = "UNKNOWN"
 }
+export declare type GraphStoreCustomerAssociatedIssueSortInput = {
+    lastModified?: InputMaybe<GraphStoreSortInput>;
+};
 export declare type GraphStoreCypherQueryBooleanObject = {
     __typename?: 'GraphStoreCypherQueryBooleanObject';
     value: Scalars['Boolean']['output'];
 };
@@ -47536,8 +47610,36 @@
     node?: Maybe<GraphStoreSimplifiedConversationHasMessageInverseUnion>;
 };
 export declare type GraphStoreSimplifiedConversationHasMessageInverseUnion = ExternalConversation;
 export declare type GraphStoreSimplifiedConversationHasMessageUnion = ExternalMessage;
+export declare type GraphStoreSimplifiedCustomerAssociatedIssueConnection = HasPageInfo & {
+    __typename?: 'GraphStoreSimplifiedCustomerAssociatedIssueConnection';
+    edges?: Maybe<Array<Maybe<GraphStoreSimplifiedCustomerAssociatedIssueEdge>>>;
+    pageInfo: PageInfo;
+};
+export declare type GraphStoreSimplifiedCustomerAssociatedIssueEdge = {
+    __typename?: 'GraphStoreSimplifiedCustomerAssociatedIssueEdge';
+    createdAt: Scalars['DateTime']['output'];
+    cursor?: Maybe<Scalars['String']['output']>;
+    id: Scalars['ID']['output'];
+    lastUpdated: Scalars['DateTime']['output'];
+    node?: Maybe<GraphStoreSimplifiedCustomerAssociatedIssueUnion>;
+};
+export declare type GraphStoreSimplifiedCustomerAssociatedIssueInverseConnection = HasPageInfo & {
+    __typename?: 'GraphStoreSimplifiedCustomerAssociatedIssueInverseConnection';
+    edges?: Maybe<Array<Maybe<GraphStoreSimplifiedCustomerAssociatedIssueInverseEdge>>>;
+    pageInfo: PageInfo;
+};
+export declare type GraphStoreSimplifiedCustomerAssociatedIssueInverseEdge = {
+    __typename?: 'GraphStoreSimplifiedCustomerAssociatedIssueInverseEdge';
+    createdAt: Scalars['DateTime']['output'];
+    cursor?: Maybe<Scalars['String']['output']>;
+    id: Scalars['ID']['output'];
+    lastUpdated: Scalars['DateTime']['output'];
+    node?: Maybe<GraphStoreSimplifiedCustomerAssociatedIssueInverseUnion>;
+};
+export declare type GraphStoreSimplifiedCustomerAssociatedIssueInverseUnion = Customer360Customer;
+export declare type GraphStoreSimplifiedCustomerAssociatedIssueUnion = JiraIssue;
 export declare type GraphStoreSimplifiedDeploymentAssociatedDeploymentConnection = HasPageInfo & {
     __typename?: 'GraphStoreSimplifiedDeploymentAssociatedDeploymentConnection';
     edges?: Maybe<Array<Maybe<GraphStoreSimplifiedDeploymentAssociatedDeploymentEdge>>>;
     pageInfo: PageInfo;
@@ -56128,9 +56230,11 @@
     trialType: GrowthUnifiedProfileTrialType;
 };
 export declare enum GrowthUnifiedProfileTrialTrigger {
     AutoUpgradeUserLimit = "AUTO_UPGRADE_USER_LIMIT",
+    CrossflowUserLimit = "CROSSFLOW_USER_LIMIT",
     EditionParity = "EDITION_PARITY",
+    Reactivation = "REACTIVATION",
     ReverseTrial = "REVERSE_TRIAL",
     Ui = "UI"
 }
 export declare enum GrowthUnifiedProfileTrialType {
@@ -67027,9 +67131,10 @@
     NinGlobalSchemaRefactor = "NIN_GLOBAL_SCHEMA_REFACTOR",
     NinGlobalShadowRequest = "NIN_GLOBAL_SHADOW_REQUEST",
     NinProject = "NIN_PROJECT",
     NinProjectSchemaRefactor = "NIN_PROJECT_SCHEMA_REFACTOR",
-    NinProjectShadowRequest = "NIN_PROJECT_SHADOW_REQUEST"
+    NinProjectShadowRequest = "NIN_PROJECT_SHADOW_REQUEST",
+    TimelineProject = "TIMELINE_PROJECT"
 }
 export declare type JiraIssueSearchOptions = {
     issueKey?: InputMaybe<Scalars['String']['input']>;
 };
@@ -87920,8 +88025,9 @@
     helpLayout?: Maybe<HelpLayoutMutationApi>;
     helpObjectStore?: Maybe<HelpObjectStoreMutationApi>;
     home_addTagsById?: Maybe<TownsquareAddTagToEntityPayload>;
     home_addTagsByName?: Maybe<TownsquareAddTagsByNamePayload>;
+    home_createTag?: Maybe<TownsquareCreateTagPayload>;
     home_removeTags?: Maybe<TownsquareRemoveTagsPayload>;
     insightsMutation?: Maybe<InsightsMutation>;
     installApp?: Maybe<AppInstallationResponse>;
     invokeAuxEffects?: Maybe<InvokeAuxEffectsResponse>;
@@ -89370,8 +89476,11 @@
 };
 export declare type MutationHome_AddTagsByNameArgs = {
     input: TownsquareAddTagsByNameInput;
 };
+export declare type MutationHome_CreateTagArgs = {
+    input: TownsquareCreateTagInput;
+};
 export declare type MutationHome_RemoveTagsArgs = {
     input: TownsquareRemoveTagsInput;
 };
 export declare type MutationInstallAppArgs = {
@@ -93400,8 +93509,9 @@
     confluence_externalCollaboratorsByCriteria?: Maybe<ConfluencePersonConnection>;
     confluence_forgeExtensionsByType?: Maybe<Array<Maybe<ConfluenceForgeExtension>>>;
     confluence_generateSpaceKey?: Maybe<ConfluenceGeneratedSpaceKey>;
     confluence_getAllApps?: Maybe<ConfluenceAppConnection>;
+    confluence_getCustomContentPermissionAssignments?: Maybe<ConfluenceCustomContentPermissionAssignmentConnection>;
     confluence_getWacTemplate?: Maybe<ConfluenceWacTemplate>;
     confluence_hasClearPermissionForSpace?: Maybe<Scalars['Boolean']['output']>;
     confluence_hasDivergedFromDefaultSpacePermissions?: Maybe<Scalars['Boolean']['output']>;
     confluence_importsAll?: Maybe<Array<Maybe<ConfluenceImport>>>;
@@ -94742,8 +94852,16 @@
     after?: InputMaybe<Scalars['String']['input']>;
     cloudId: Scalars['ID']['input'];
     first?: InputMaybe<Scalars['Int']['input']>;
 };
+export declare type QueryConfluence_GetCustomContentPermissionAssignmentsArgs = {
+    after?: InputMaybe<Scalars['String']['input']>;
+    appId: Scalars['ID']['input'];
+    appType: ConfluenceAppType;
+    cloudId: Scalars['ID']['input'];
+    first?: InputMaybe<Scalars['Int']['input']>;
+    spaceId: Scalars['ID']['input'];
+};
 export declare type QueryConfluence_GetWacTemplateArgs = {
     cloudId: Scalars['ID']['input'];
 };
 export declare type QueryConfluence_HasClearPermissionForSpaceArgs = {
@@ -98903,10 +99021,13 @@
     DeleteConfluenceAttachment = "DELETE_CONFLUENCE_ATTACHMENT",
     DeleteConfluenceBlogpost = "DELETE_CONFLUENCE_BLOGPOST",
     DeleteConfluenceComment = "DELETE_CONFLUENCE_COMMENT",
     DeleteConfluenceCustomContent = "DELETE_CONFLUENCE_CUSTOM_CONTENT",
+    DeleteConfluenceDatabase = "DELETE_CONFLUENCE_DATABASE",
+    DeleteConfluenceFolder = "DELETE_CONFLUENCE_FOLDER",
     DeleteConfluencePage = "DELETE_CONFLUENCE_PAGE",
     DeleteConfluenceSpace = "DELETE_CONFLUENCE_SPACE",
+    DeleteConfluenceWhiteboard = "DELETE_CONFLUENCE_WHITEBOARD",
     DeleteJswBoardScopeAdmin = "DELETE_JSW_BOARD_SCOPE_ADMIN",
     DeleteJswSprint = "DELETE_JSW_SPRINT",
     DeleteOrganization = "DELETE_ORGANIZATION",
     DeleteOrganizationProperty = "DELETE_ORGANIZATION_PROPERTY",
@@ -99070,8 +99191,10 @@
     ReadConfluenceContentPermission = "READ_CONFLUENCE_CONTENT_PERMISSION",
     ReadConfluenceContentProperty = "READ_CONFLUENCE_CONTENT_PROPERTY",
     ReadConfluenceContentRestriction = "READ_CONFLUENCE_CONTENT_RESTRICTION",
     ReadConfluenceCustomContent = "READ_CONFLUENCE_CUSTOM_CONTENT",
+    ReadConfluenceDatabase = "READ_CONFLUENCE_DATABASE",
+    ReadConfluenceFolder = "READ_CONFLUENCE_FOLDER",
     ReadConfluenceGroup = "READ_CONFLUENCE_GROUP",
     ReadConfluenceInlineTask = "READ_CONFLUENCE_INLINE_TASK",
     ReadConfluenceLabel = "READ_CONFLUENCE_LABEL",
     ReadConfluencePage = "READ_CONFLUENCE_PAGE",
@@ -99083,8 +99206,9 @@
     ReadConfluenceTemplate = "READ_CONFLUENCE_TEMPLATE",
     ReadConfluenceUser = "READ_CONFLUENCE_USER",
     ReadConfluenceUserProperty = "READ_CONFLUENCE_USER_PROPERTY",
     ReadConfluenceWatcher = "READ_CONFLUENCE_WATCHER",
+    ReadConfluenceWhiteboard = "READ_CONFLUENCE_WHITEBOARD",
     ReadContainer = "READ_CONTAINER",
     ReadCustomer = "READ_CUSTOMER",
     ReadDesign = "READ_DESIGN",
     ReadJiraUser = "READ_JIRA_USER",
@@ -99178,8 +99302,10 @@
     WriteConfluenceConfiguration = "WRITE_CONFLUENCE_CONFIGURATION",
     WriteConfluenceContentProperty = "WRITE_CONFLUENCE_CONTENT_PROPERTY",
     WriteConfluenceContentRestriction = "WRITE_CONFLUENCE_CONTENT_RESTRICTION",
     WriteConfluenceCustomContent = "WRITE_CONFLUENCE_CUSTOM_CONTENT",
+    WriteConfluenceDatabase = "WRITE_CONFLUENCE_DATABASE",
+    WriteConfluenceFolder = "WRITE_CONFLUENCE_FOLDER",
     WriteConfluenceGroup = "WRITE_CONFLUENCE_GROUP",
     WriteConfluenceInlineTask = "WRITE_CONFLUENCE_INLINE_TASK",
     WriteConfluenceLabel = "WRITE_CONFLUENCE_LABEL",
     WriteConfluencePage = "WRITE_CONFLUENCE_PAGE",
@@ -99190,8 +99316,9 @@
     WriteConfluenceSpaceSetting = "WRITE_CONFLUENCE_SPACE_SETTING",
     WriteConfluenceTemplate = "WRITE_CONFLUENCE_TEMPLATE",
     WriteConfluenceUserProperty = "WRITE_CONFLUENCE_USER_PROPERTY",
     WriteConfluenceWatcher = "WRITE_CONFLUENCE_WATCHER",
+    WriteConfluenceWhiteboard = "WRITE_CONFLUENCE_WHITEBOARD",
     WriteContainer = "WRITE_CONTAINER",
     WriteCustomer = "WRITE_CUSTOMER",
     WriteDesign = "WRITE_DESIGN",
     WriteJiraWork = "WRITE_JIRA_WORK",
@@ -99594,8 +99721,9 @@
     experience: Scalars['String']['input'];
     experimentContext?: InputMaybe<SearchExperimentContextInput>;
     filters: SearchFilterInput;
     first?: InputMaybe<Scalars['Int']['input']>;
+    includeBoostedLinks?: InputMaybe<Scalars['Boolean']['input']>;
     interleaveResults?: InputMaybe<Scalars['Boolean']['input']>;
     last?: InputMaybe<Scalars['Int']['input']>;
     query?: InputMaybe<Scalars['String']['input']>;
     sort?: InputMaybe<Array<InputMaybe<SearchSortInput>>>;
@@ -105882,8 +106010,18 @@
     errors?: Maybe<Array<MutationError>>;
     relationships?: Maybe<Array<TownsquareRelationship>>;
     success: Scalars['Boolean']['output'];
 };
+export declare type TownsquareCreateTagInput = {
+    containerId: Scalars['ID']['input'];
+    name: Scalars['String']['input'];
+};
+export declare type TownsquareCreateTagPayload = {
+    __typename?: 'TownsquareCreateTagPayload';
+    errors?: Maybe<Array<MutationError>>;
+    success: Scalars['Boolean']['output'];
+    tag?: Maybe<TownsquareTag>;
+};
 export declare type TownsquareDecision = TownsquareHighlight & {
     __typename?: 'TownsquareDecision';
     creationDate?: Maybe<Scalars['DateTime']['output']>;
     creator?: Maybe<User>;