@forge/cli-shared

8.15.28.15.3-next.0
out/graphql/graphql-types.d.ts
~out/graphql/graphql-types.d.tsModified
+60
Index: package/out/graphql/graphql-types.d.ts
===================================================================
--- package/out/graphql/graphql-types.d.ts
+++ package/out/graphql/graphql-types.d.ts
@@ -4846,8 +4846,14 @@
     nodes: Array<AgentWorkspaceAgentAvailability>;
     pageInfo: AgentWorkspaceAvailabilityPageInfo;
     summary: AgentWorkspaceAvailabilitySummary;
 };
+export declare type AgentWorkspaceAvailabilityError = {
+    __typename?: 'AgentWorkspaceAvailabilityError';
+    code: Scalars['String']['output'];
+    field?: Maybe<Scalars['String']['output']>;
+    message: Scalars['String']['output'];
+};
 export declare type AgentWorkspaceAvailabilityInput = {
     agentIds?: InputMaybe<Array<Scalars['ID']['input']>>;
     cloudId: Scalars['ID']['input'];
     page?: InputMaybe<Scalars['Int']['input']>;
@@ -4869,8 +4875,20 @@
 export declare enum AgentWorkspaceAvailabilityStatus {
     Available = "AVAILABLE",
     OnBreak = "ON_BREAK"
 }
+export declare type AgentWorkspaceAvailabilityStatusInput = {
+    agentAccountId: Scalars['ID']['input'];
+    cloudId: Scalars['ID']['input'];
+    projectId: Scalars['ID']['input'];
+    status: AgentWorkspaceAvailabilityStatus;
+};
+export declare type AgentWorkspaceAvailabilityStatusPayload = {
+    __typename?: 'AgentWorkspaceAvailabilityStatusPayload';
+    availability?: Maybe<AgentWorkspaceAgentAvailability>;
+    errors?: Maybe<Array<AgentWorkspaceAvailabilityError>>;
+    success: Scalars['Boolean']['output'];
+};
 export declare type AgentWorkspaceAvailabilitySummary = {
     __typename?: 'AgentWorkspaceAvailabilitySummary';
     activeAgents: Scalars['Int']['output'];
     onBreak: Scalars['Int']['output'];
@@ -33730,8 +33748,9 @@
     updateOrganizationAttributeValue?: Maybe<CustomerServiceOrganizationUpdateAttributeValuePayload>;
     updateOrganizationAttributeValueByName?: Maybe<CustomerServiceOrganizationUpdateAttributeValuePayload>;
     updateParticipants?: Maybe<CustomerServiceRequestUpdateParticipantsPayload>;
     updateProduct?: Maybe<CustomerServiceProductUpdatePayload>;
+    updateStatusMapping?: Maybe<CustomerServiceStatusMappingUpdatePayload>;
     updateTemplateForm?: Maybe<CustomerServiceTemplateFormUpdatePayload>;
     upsertBranding?: Maybe<CustomerServiceBrandingUpsertPayload>;
 };
 export declare type CustomerServiceMutationApiAcceptEscalationArgs = {
@@ -33852,8 +33871,11 @@
 };
 export declare type CustomerServiceMutationApiUpdateProductArgs = {
     input: CustomerServiceProductUpdateInput;
 };
+export declare type CustomerServiceMutationApiUpdateStatusMappingArgs = {
+    input: CustomerServiceStatusMappingUpdateInput;
+};
 export declare type CustomerServiceMutationApiUpdateTemplateFormArgs = {
     helpCenterId: Scalars['ID']['input'];
     input: CustomerServiceTemplateFormUpdateInput;
     templateFormId: Scalars['ID']['input'];
@@ -34076,8 +34098,9 @@
     organizationByOrganizationId?: Maybe<CustomerServiceOrganizationQueryResult>;
     productConnections?: Maybe<CustomerServiceProductConnection>;
     products?: Maybe<CustomerServiceProductQueryResult>;
     requestByIssueKey?: Maybe<CustomerServiceRequestByKeyResult>;
+    statusMapping?: Maybe<CustomerServiceStatusMappingQueryResult>;
     templateFormById?: Maybe<CustomerServiceTemplateFormQueryResult>;
     templateForms?: Maybe<CustomerServiceTemplateFormConnection>;
 };
 export declare type CustomerServiceQueryApiBrandingByEntityTypeArgs = {
@@ -34121,8 +34144,12 @@
 export declare type CustomerServiceQueryApiRequestByIssueKeyArgs = {
     helpCenterId?: InputMaybe<Scalars['ID']['input']>;
     issueKey: Scalars['String']['input'];
 };
+export declare type CustomerServiceQueryApiStatusMappingArgs = {
+    helpCenterId: Scalars['ID']['input'];
+    workflowId: Scalars['String']['input'];
+};
 export declare type CustomerServiceQueryApiTemplateFormByIdArgs = {
     helpCenterId: Scalars['ID']['input'];
     templateFormId: Scalars['ID']['input'];
 };
@@ -34242,8 +34269,35 @@
 export declare enum CustomerServiceStatusKey {
     Resolved = "RESOLVED",
     Submitted = "SUBMITTED"
 }
+export declare type CustomerServiceStatusMapping = {
+    __typename?: 'CustomerServiceStatusMapping';
+    externalLabel: Scalars['String']['output'];
+    jiraStatusId: Scalars['String']['output'];
+};
+export declare type CustomerServiceStatusMappingConfig = {
+    __typename?: 'CustomerServiceStatusMappingConfig';
+    customMappings: Array<CustomerServiceStatusMapping>;
+    helpCenterId: Scalars['ID']['output'];
+    workflowId: Scalars['String']['output'];
+};
+export declare type CustomerServiceStatusMappingInput = {
+    externalLabel: Scalars['String']['input'];
+    jiraStatusId: Scalars['String']['input'];
+};
+export declare type CustomerServiceStatusMappingQueryResult = CustomerServiceStatusMappingConfig | QueryError;
+export declare type CustomerServiceStatusMappingUpdateInput = {
+    customMappings: Array<CustomerServiceStatusMappingInput>;
+    helpCenterId: Scalars['ID']['input'];
+    workflowId: Scalars['String']['input'];
+};
+export declare type CustomerServiceStatusMappingUpdatePayload = {
+    __typename?: 'CustomerServiceStatusMappingUpdatePayload';
+    errors?: Maybe<Array<MutationError>>;
+    success: Scalars['Boolean']['output'];
+    updatedStatusMapping?: Maybe<CustomerServiceStatusMappingConfig>;
+};
 export declare type CustomerServiceStatusPayload = Payload & {
     __typename?: 'CustomerServiceStatusPayload';
     errors?: Maybe<Array<MutationError>>;
     success: Scalars['Boolean']['output'];
@@ -42966,9 +43020,11 @@
     name: Scalars['String']['output'];
 };
 export declare enum GraphIntegrationMcpAdminManagementMcpToolStatus {
     Allow = "ALLOW",
+    AllowServerRemoved = "ALLOW_SERVER_REMOVED",
     Deny = "DENY",
+    DenyServerRemoved = "DENY_SERVER_REMOVED",
     NewToolDeny = "NEW_TOOL_DENY"
 }
 export declare type GraphIntegrationMcpAdminManagementRegisterMcpServerInput = {
     cloudId: Scalars['ID']['input'];
@@ -133286,8 +133342,9 @@
     agentWorkspace_deleteSchedule?: Maybe<AgentWorkspaceDeleteSchedulePayload>;
     agentWorkspace_deleteSkill?: Maybe<AgentWorkspaceSkillDeletePayload>;
     agentWorkspace_deleteUserSkill?: Maybe<AgentWorkspaceDeleteUserSkillPayload>;
     agentWorkspace_endBreak?: Maybe<AgentWorkspaceAgentAvailability>;
+    agentWorkspace_setAvailabilityStatus?: Maybe<AgentWorkspaceAvailabilityStatusPayload>;
     agentWorkspace_setDefaultCapacity?: Maybe<AgentWorkspaceSetDefaultCapacityPayload>;
     agentWorkspace_startBreak?: Maybe<AgentWorkspaceAgentAvailability>;
     agentWorkspace_updateCatalog?: Maybe<AgentWorkspaceCatalogUpdateResponse>;
     agentWorkspace_updateCatalogType?: Maybe<AgentWorkspaceCatalogTypeUpdateResponse>;
@@ -134565,8 +134622,11 @@
 export declare type MutationAgentWorkspace_EndBreakArgs = {
     agentId: Scalars['ID']['input'];
     cloudId: Scalars['ID']['input'];
 };
+export declare type MutationAgentWorkspace_SetAvailabilityStatusArgs = {
+    input: AgentWorkspaceAvailabilityStatusInput;
+};
 export declare type MutationAgentWorkspace_SetDefaultCapacityArgs = {
     input: AgentWorkspaceSetDefaultCapacityInput;
 };
 export declare type MutationAgentWorkspace_StartBreakArgs = {