@forge/cli-shared 3.9.1-next.1 → 3.10.0-next.2

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,16 @@
1
1
  # @forge/cli-shared
2
2
 
3
+ ## 3.10.0-next.2
4
+
5
+ ### Minor Changes
6
+
7
+ - 48a73ca: Improve forge CLI GraphQLProviderServiceError reading
8
+
9
+ ### Patch Changes
10
+
11
+ - Updated dependencies [cc6e80a]
12
+ - @forge/manifest@4.9.1-next.1
13
+
3
14
  ## 3.9.1-next.1
4
15
 
5
16
  ### Patch Changes
@@ -5849,10 +5849,10 @@ export declare type CustomerServiceMutationApi = {
5849
5849
  createOrganization?: Maybe<CustomerServiceOrganizationCreatePayload>;
5850
5850
  updateOrganization?: Maybe<CustomerServiceOrganizationUpdatePayload>;
5851
5851
  deleteOrganization?: Maybe<CustomerServiceOrganizationDeletePayload>;
5852
- updateOrganizationAttributeValue?: Maybe<CustomerServiceOrganizationUpdatePayload>;
5853
5852
  createOrganizationAttribute?: Maybe<CustomerServiceAttributeCreatePayload>;
5854
5853
  updateOrganizationAttribute?: Maybe<CustomerServiceAttributeUpdatePayload>;
5855
5854
  deleteOrganizationAttribute?: Maybe<CustomerServiceAttributeDeletePayload>;
5855
+ updateOrganizationAttributeValue?: Maybe<CustomerServiceOrganizationUpdateAttributeValuePayload>;
5856
5856
  createIndividualAttribute?: Maybe<CustomerServiceAttributeCreatePayload>;
5857
5857
  updateIndividualAttribute?: Maybe<CustomerServiceAttributeUpdatePayload>;
5858
5858
  deleteIndividualAttribute?: Maybe<CustomerServiceAttributeDeletePayload>;
@@ -5866,9 +5866,6 @@ export declare type CustomerServiceMutationApiUpdateOrganizationArgs = {
5866
5866
  export declare type CustomerServiceMutationApiDeleteOrganizationArgs = {
5867
5867
  input: CustomerServiceOrganizationDeleteInput;
5868
5868
  };
5869
- export declare type CustomerServiceMutationApiUpdateOrganizationAttributeValueArgs = {
5870
- input: CustomerServiceOrganizationUpdateAttributeInput;
5871
- };
5872
5869
  export declare type CustomerServiceMutationApiCreateOrganizationAttributeArgs = {
5873
5870
  input: CustomerServiceAttributeCreateInput;
5874
5871
  };
@@ -5878,6 +5875,9 @@ export declare type CustomerServiceMutationApiUpdateOrganizationAttributeArgs =
5878
5875
  export declare type CustomerServiceMutationApiDeleteOrganizationAttributeArgs = {
5879
5876
  input: CustomerServiceAttributeDeleteInput;
5880
5877
  };
5878
+ export declare type CustomerServiceMutationApiUpdateOrganizationAttributeValueArgs = {
5879
+ input: CustomerServiceOrganizationUpdateAttributeInput;
5880
+ };
5881
5881
  export declare type CustomerServiceMutationApiCreateIndividualAttributeArgs = {
5882
5882
  input: CustomerServiceAttributeCreateInput;
5883
5883
  };
@@ -9311,7 +9311,6 @@ export declare type JiraCannedResponse = Node & {
9311
9311
  scope: JiraCannedResponseScope;
9312
9312
  lastUpdatedAt?: Maybe<Scalars['Long']>;
9313
9313
  createdBy?: Maybe<Scalars['ID']>;
9314
- usageCount?: Maybe<Scalars['Int']>;
9315
9314
  };
9316
9315
  export declare type JiraCannedResponseConnection = {
9317
9316
  __typename?: 'JiraCannedResponseConnection';
@@ -13387,6 +13386,7 @@ export declare type JiraQuery = {
13387
13386
  issueSearchTotalCount?: Maybe<Scalars['Int']>;
13388
13387
  issueSearchStatus?: Maybe<JiraIssueSearchStatus>;
13389
13388
  permission?: Maybe<JiraPermission>;
13389
+ requestTypeTemplateById?: Maybe<JiraServiceManagementRequestTypeTemplate>;
13390
13390
  requestTypeTemplates?: Maybe<Array<JiraServiceManagementRequestTypeTemplate>>;
13391
13391
  requestTypeTemplateDefaultConfigurationDependencies?: Maybe<JiraServiceManagementRequestTypeTemplateDefaultConfigurationDependencies>;
13392
13392
  resourceUsageMetricById?: Maybe<JiraResourceUsageMetric>;
@@ -13487,6 +13487,7 @@ export declare type JiraQueryJiraProjectsArgs = {
13487
13487
  export declare type JiraQueryJiraProjectByKeyArgs = {
13488
13488
  key: Scalars['String'];
13489
13489
  cloudId: Scalars['ID'];
13490
+ ignoreDeleteStatus?: Maybe<Scalars['Boolean']>;
13490
13491
  };
13491
13492
  export declare type JiraQueryVersionArgs = {
13492
13493
  id: Scalars['ID'];
@@ -13553,6 +13554,10 @@ export declare type JiraQueryPermissionArgs = {
13553
13554
  cloudId: Scalars['ID'];
13554
13555
  type: JiraPermissionType;
13555
13556
  };
13557
+ export declare type JiraQueryRequestTypeTemplateByIdArgs = {
13558
+ cloudId: Scalars['ID'];
13559
+ templateId: Scalars['ID'];
13560
+ };
13556
13561
  export declare type JiraQueryRequestTypeTemplatesArgs = {
13557
13562
  cloudId: Scalars['ID'];
13558
13563
  };
@@ -14325,7 +14330,7 @@ export declare type JiraServiceManagementCreateAndAssociateWorkflowFromTemplateI
14325
14330
  projectId: Scalars['ID'];
14326
14331
  workflowName?: Maybe<Scalars['String']>;
14327
14332
  issueTypeName?: Maybe<Scalars['String']>;
14328
- issueTypeIcon?: Maybe<Scalars['String']>;
14333
+ avatarId?: Maybe<Scalars['ID']>;
14329
14334
  };
14330
14335
  export declare type JiraServiceManagementCreateAndAssociateWorkflowFromTemplatePayload = Payload & {
14331
14336
  __typename?: 'JiraServiceManagementCreateAndAssociateWorkflowFromTemplatePayload';
@@ -14356,7 +14361,8 @@ export declare type JiraServiceManagementCreateRequestTypeFromTemplateRequestFor
14356
14361
  templateFormReferenceInput?: Maybe<JiraServiceManagementCreateRequestTypeFromTemplateReferenceInput>;
14357
14362
  };
14358
14363
  export declare enum JiraServiceManagementCreateRequestTypeFromTemplateRequestFormInputType {
14359
- FormTemplateReference = "FORM_TEMPLATE_REFERENCE"
14364
+ FormTemplateReference = "FORM_TEMPLATE_REFERENCE",
14365
+ RequestTypeTemplateReference = "REQUEST_TYPE_TEMPLATE_REFERENCE"
14360
14366
  }
14361
14367
  export declare type JiraServiceManagementCreateRequestTypeFromTemplateRequestTypeGroupInput = {
14362
14368
  requestTypeGroupInternalIds: Array<Scalars['String']>;
@@ -14657,6 +14663,7 @@ export declare type JiraServiceManagementRequestTypeTemplate = {
14657
14663
  name?: Maybe<Scalars['String']>;
14658
14664
  description?: Maybe<Scalars['String']>;
14659
14665
  groups?: Maybe<Array<Maybe<Scalars['String']>>>;
14666
+ previewImageUrl?: Maybe<Scalars['URL']>;
14660
14667
  };
14661
14668
  export declare type JiraServiceManagementRequestTypeTemplateDefaultConfigurationDependencies = {
14662
14669
  __typename?: 'JiraServiceManagementRequestTypeTemplateDefaultConfigurationDependencies';
@@ -14729,7 +14736,9 @@ export declare type JiraServiceManagementUserResponder = {
14729
14736
  export declare type JiraServiceManagementWorkflowAndIssueSummary = {
14730
14737
  __typename?: 'JiraServiceManagementWorkflowAndIssueSummary';
14731
14738
  workflowId?: Maybe<Scalars['String']>;
14739
+ workflowName?: Maybe<Scalars['String']>;
14732
14740
  issueTypeId?: Maybe<Scalars['String']>;
14741
+ issueTypeName?: Maybe<Scalars['String']>;
14733
14742
  };
14734
14743
  export declare type JiraServiceManagementWorkflowTemplateMetadata = {
14735
14744
  __typename?: 'JiraServiceManagementWorkflowTemplateMetadata';
@@ -23563,6 +23572,12 @@ export declare type UserInstallationRulesPayload = Payload & {
23563
23572
  success: Scalars['Boolean'];
23564
23573
  errors?: Maybe<Array<MutationError>>;
23565
23574
  };
23575
+ export declare type VirtualAgentChannelConfig = {
23576
+ __typename?: 'VirtualAgentChannelConfig';
23577
+ triage?: Maybe<VirtualAgentSlackChannel>;
23578
+ test?: Maybe<VirtualAgentSlackChannel>;
23579
+ production?: Maybe<Array<Maybe<VirtualAgentSlackChannel>>>;
23580
+ };
23566
23581
  export declare type VirtualAgentConfiguration = Node & {
23567
23582
  __typename?: 'VirtualAgentConfiguration';
23568
23583
  id: Scalars['ID'];
@@ -23572,6 +23587,8 @@ export declare type VirtualAgentConfiguration = Node & {
23572
23587
  virtualAgentStatisticsProjection?: Maybe<VirtualAgentStatisticsProjection>;
23573
23588
  standardFlowEditors?: Maybe<VirtualAgentFlowEditorsConnection>;
23574
23589
  flowEditorFlow?: Maybe<VirtualAgentFlowEditor>;
23590
+ properties?: Maybe<VirtualAgentProperties>;
23591
+ virtualAgentChannelConfig?: Maybe<VirtualAgentChannelConfig>;
23575
23592
  };
23576
23593
  export declare type VirtualAgentConfigurationIntentRuleProjectionsArgs = {
23577
23594
  first?: Maybe<Scalars['Int']>;
@@ -23778,6 +23795,10 @@ export declare type VirtualAgentMutationApiHandleFlowEditorActionsArgs = {
23778
23795
  virtualAgentFlowEditorId: Scalars['ID'];
23779
23796
  input: VirtualAgentFlowEditorActionInput;
23780
23797
  };
23798
+ export declare type VirtualAgentProperties = {
23799
+ __typename?: 'VirtualAgentProperties';
23800
+ defaultJiraRequestTypeId?: Maybe<Scalars['String']>;
23801
+ };
23781
23802
  export declare type VirtualAgentPropertiesInput = {
23782
23803
  defaultJiraRequestTypeId?: Maybe<Scalars['String']>;
23783
23804
  };
@@ -23801,6 +23822,15 @@ export declare type VirtualAgentQueryError = {
23801
23822
  message?: Maybe<Scalars['String']>;
23802
23823
  extensions?: Maybe<Array<QueryErrorExtension>>;
23803
23824
  };
23825
+ export declare type VirtualAgentSlackChannel = {
23826
+ __typename?: 'VirtualAgentSlackChannel';
23827
+ id?: Maybe<Scalars['String']>;
23828
+ slackChannelId?: Maybe<Scalars['String']>;
23829
+ channelName?: Maybe<Scalars['String']>;
23830
+ isVirtualAgentChannel?: Maybe<Scalars['Boolean']>;
23831
+ isVirtualAgentTestChannel?: Maybe<Scalars['Boolean']>;
23832
+ channelLink?: Maybe<Scalars['String']>;
23833
+ };
23804
23834
  export declare type VirtualAgentStatisticsPercentageChangeProjection = {
23805
23835
  __typename?: 'VirtualAgentStatisticsPercentageChangeProjection';
23806
23836
  traffic?: Maybe<Scalars['Float']>;