@forge/cli-shared 8.15.2 → 8.15.3-next.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/CHANGELOG.md CHANGED
@@ -1,5 +1,12 @@
1
1
  # @forge/cli-shared
2
2
 
3
+ ## 8.15.3-next.0
4
+
5
+ ### Patch Changes
6
+
7
+ - Updated dependencies [ad5a470]
8
+ - @forge/manifest@12.1.2-next.0
9
+
3
10
  ## 8.15.2
4
11
 
5
12
  ### Patch Changes
@@ -4847,6 +4847,12 @@ export declare type AgentWorkspaceAvailabilityConnection = {
4847
4847
  pageInfo: AgentWorkspaceAvailabilityPageInfo;
4848
4848
  summary: AgentWorkspaceAvailabilitySummary;
4849
4849
  };
4850
+ export declare type AgentWorkspaceAvailabilityError = {
4851
+ __typename?: 'AgentWorkspaceAvailabilityError';
4852
+ code: Scalars['String']['output'];
4853
+ field?: Maybe<Scalars['String']['output']>;
4854
+ message: Scalars['String']['output'];
4855
+ };
4850
4856
  export declare type AgentWorkspaceAvailabilityInput = {
4851
4857
  agentIds?: InputMaybe<Array<Scalars['ID']['input']>>;
4852
4858
  cloudId: Scalars['ID']['input'];
@@ -4870,6 +4876,18 @@ export declare enum AgentWorkspaceAvailabilityStatus {
4870
4876
  Available = "AVAILABLE",
4871
4877
  OnBreak = "ON_BREAK"
4872
4878
  }
4879
+ export declare type AgentWorkspaceAvailabilityStatusInput = {
4880
+ agentAccountId: Scalars['ID']['input'];
4881
+ cloudId: Scalars['ID']['input'];
4882
+ projectId: Scalars['ID']['input'];
4883
+ status: AgentWorkspaceAvailabilityStatus;
4884
+ };
4885
+ export declare type AgentWorkspaceAvailabilityStatusPayload = {
4886
+ __typename?: 'AgentWorkspaceAvailabilityStatusPayload';
4887
+ availability?: Maybe<AgentWorkspaceAgentAvailability>;
4888
+ errors?: Maybe<Array<AgentWorkspaceAvailabilityError>>;
4889
+ success: Scalars['Boolean']['output'];
4890
+ };
4873
4891
  export declare type AgentWorkspaceAvailabilitySummary = {
4874
4892
  __typename?: 'AgentWorkspaceAvailabilitySummary';
4875
4893
  activeAgents: Scalars['Int']['output'];
@@ -33731,6 +33749,7 @@ export declare type CustomerServiceMutationApi = {
33731
33749
  updateOrganizationAttributeValueByName?: Maybe<CustomerServiceOrganizationUpdateAttributeValuePayload>;
33732
33750
  updateParticipants?: Maybe<CustomerServiceRequestUpdateParticipantsPayload>;
33733
33751
  updateProduct?: Maybe<CustomerServiceProductUpdatePayload>;
33752
+ updateStatusMapping?: Maybe<CustomerServiceStatusMappingUpdatePayload>;
33734
33753
  updateTemplateForm?: Maybe<CustomerServiceTemplateFormUpdatePayload>;
33735
33754
  upsertBranding?: Maybe<CustomerServiceBrandingUpsertPayload>;
33736
33755
  };
@@ -33853,6 +33872,9 @@ export declare type CustomerServiceMutationApiUpdateParticipantsArgs = {
33853
33872
  export declare type CustomerServiceMutationApiUpdateProductArgs = {
33854
33873
  input: CustomerServiceProductUpdateInput;
33855
33874
  };
33875
+ export declare type CustomerServiceMutationApiUpdateStatusMappingArgs = {
33876
+ input: CustomerServiceStatusMappingUpdateInput;
33877
+ };
33856
33878
  export declare type CustomerServiceMutationApiUpdateTemplateFormArgs = {
33857
33879
  helpCenterId: Scalars['ID']['input'];
33858
33880
  input: CustomerServiceTemplateFormUpdateInput;
@@ -34077,6 +34099,7 @@ export declare type CustomerServiceQueryApi = {
34077
34099
  productConnections?: Maybe<CustomerServiceProductConnection>;
34078
34100
  products?: Maybe<CustomerServiceProductQueryResult>;
34079
34101
  requestByIssueKey?: Maybe<CustomerServiceRequestByKeyResult>;
34102
+ statusMapping?: Maybe<CustomerServiceStatusMappingQueryResult>;
34080
34103
  templateFormById?: Maybe<CustomerServiceTemplateFormQueryResult>;
34081
34104
  templateForms?: Maybe<CustomerServiceTemplateFormConnection>;
34082
34105
  };
@@ -34122,6 +34145,10 @@ export declare type CustomerServiceQueryApiRequestByIssueKeyArgs = {
34122
34145
  helpCenterId?: InputMaybe<Scalars['ID']['input']>;
34123
34146
  issueKey: Scalars['String']['input'];
34124
34147
  };
34148
+ export declare type CustomerServiceQueryApiStatusMappingArgs = {
34149
+ helpCenterId: Scalars['ID']['input'];
34150
+ workflowId: Scalars['String']['input'];
34151
+ };
34125
34152
  export declare type CustomerServiceQueryApiTemplateFormByIdArgs = {
34126
34153
  helpCenterId: Scalars['ID']['input'];
34127
34154
  templateFormId: Scalars['ID']['input'];
@@ -34243,6 +34270,33 @@ export declare enum CustomerServiceStatusKey {
34243
34270
  Resolved = "RESOLVED",
34244
34271
  Submitted = "SUBMITTED"
34245
34272
  }
34273
+ export declare type CustomerServiceStatusMapping = {
34274
+ __typename?: 'CustomerServiceStatusMapping';
34275
+ externalLabel: Scalars['String']['output'];
34276
+ jiraStatusId: Scalars['String']['output'];
34277
+ };
34278
+ export declare type CustomerServiceStatusMappingConfig = {
34279
+ __typename?: 'CustomerServiceStatusMappingConfig';
34280
+ customMappings: Array<CustomerServiceStatusMapping>;
34281
+ helpCenterId: Scalars['ID']['output'];
34282
+ workflowId: Scalars['String']['output'];
34283
+ };
34284
+ export declare type CustomerServiceStatusMappingInput = {
34285
+ externalLabel: Scalars['String']['input'];
34286
+ jiraStatusId: Scalars['String']['input'];
34287
+ };
34288
+ export declare type CustomerServiceStatusMappingQueryResult = CustomerServiceStatusMappingConfig | QueryError;
34289
+ export declare type CustomerServiceStatusMappingUpdateInput = {
34290
+ customMappings: Array<CustomerServiceStatusMappingInput>;
34291
+ helpCenterId: Scalars['ID']['input'];
34292
+ workflowId: Scalars['String']['input'];
34293
+ };
34294
+ export declare type CustomerServiceStatusMappingUpdatePayload = {
34295
+ __typename?: 'CustomerServiceStatusMappingUpdatePayload';
34296
+ errors?: Maybe<Array<MutationError>>;
34297
+ success: Scalars['Boolean']['output'];
34298
+ updatedStatusMapping?: Maybe<CustomerServiceStatusMappingConfig>;
34299
+ };
34246
34300
  export declare type CustomerServiceStatusPayload = Payload & {
34247
34301
  __typename?: 'CustomerServiceStatusPayload';
34248
34302
  errors?: Maybe<Array<MutationError>>;
@@ -42967,7 +43021,9 @@ export declare type GraphIntegrationMcpAdminManagementMcpToolNode = {
42967
43021
  };
42968
43022
  export declare enum GraphIntegrationMcpAdminManagementMcpToolStatus {
42969
43023
  Allow = "ALLOW",
43024
+ AllowServerRemoved = "ALLOW_SERVER_REMOVED",
42970
43025
  Deny = "DENY",
43026
+ DenyServerRemoved = "DENY_SERVER_REMOVED",
42971
43027
  NewToolDeny = "NEW_TOOL_DENY"
42972
43028
  }
42973
43029
  export declare type GraphIntegrationMcpAdminManagementRegisterMcpServerInput = {
@@ -133287,6 +133343,7 @@ export declare type Mutation = {
133287
133343
  agentWorkspace_deleteSkill?: Maybe<AgentWorkspaceSkillDeletePayload>;
133288
133344
  agentWorkspace_deleteUserSkill?: Maybe<AgentWorkspaceDeleteUserSkillPayload>;
133289
133345
  agentWorkspace_endBreak?: Maybe<AgentWorkspaceAgentAvailability>;
133346
+ agentWorkspace_setAvailabilityStatus?: Maybe<AgentWorkspaceAvailabilityStatusPayload>;
133290
133347
  agentWorkspace_setDefaultCapacity?: Maybe<AgentWorkspaceSetDefaultCapacityPayload>;
133291
133348
  agentWorkspace_startBreak?: Maybe<AgentWorkspaceAgentAvailability>;
133292
133349
  agentWorkspace_updateCatalog?: Maybe<AgentWorkspaceCatalogUpdateResponse>;
@@ -134566,6 +134623,9 @@ export declare type MutationAgentWorkspace_EndBreakArgs = {
134566
134623
  agentId: Scalars['ID']['input'];
134567
134624
  cloudId: Scalars['ID']['input'];
134568
134625
  };
134626
+ export declare type MutationAgentWorkspace_SetAvailabilityStatusArgs = {
134627
+ input: AgentWorkspaceAvailabilityStatusInput;
134628
+ };
134569
134629
  export declare type MutationAgentWorkspace_SetDefaultCapacityArgs = {
134570
134630
  input: AgentWorkspaceSetDefaultCapacityInput;
134571
134631
  };