@forge/cli-shared 3.9.1-next.1 → 3.10.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 +24 -0
- package/out/graphql/graphql-types.d.ts +41 -10
- package/out/graphql/graphql-types.d.ts.map +1 -1
- package/out/graphql/graphql-types.js +2 -0
- package/out/graphql/minimal-graphql-runner.d.ts.map +1 -1
- package/out/graphql/minimal-graphql-runner.js +3 -1
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,29 @@
|
|
|
1
1
|
# @forge/cli-shared
|
|
2
2
|
|
|
3
|
+
## 3.10.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- 48a73ca: Improve forge CLI GraphQLProviderServiceError reading
|
|
8
|
+
|
|
9
|
+
### Patch Changes
|
|
10
|
+
|
|
11
|
+
- e7f0fb6: Added additional error tagging
|
|
12
|
+
- Updated dependencies [b34b84d]
|
|
13
|
+
- Updated dependencies [cc6e80a]
|
|
14
|
+
- @forge/manifest@4.9.1
|
|
15
|
+
|
|
16
|
+
## 3.10.0-next.2
|
|
17
|
+
|
|
18
|
+
### Minor Changes
|
|
19
|
+
|
|
20
|
+
- 48a73ca: Improve forge CLI GraphQLProviderServiceError reading
|
|
21
|
+
|
|
22
|
+
### Patch Changes
|
|
23
|
+
|
|
24
|
+
- Updated dependencies [cc6e80a]
|
|
25
|
+
- @forge/manifest@4.9.1-next.1
|
|
26
|
+
|
|
3
27
|
## 3.9.1-next.1
|
|
4
28
|
|
|
5
29
|
### Patch Changes
|
|
@@ -1123,7 +1123,7 @@ export declare type AquaOutgoingEmailLogItem = {
|
|
|
1123
1123
|
author?: Maybe<User>;
|
|
1124
1124
|
issueContext?: Maybe<AquaIssueContext>;
|
|
1125
1125
|
notificationDetails?: Maybe<AquaNotificationDetails>;
|
|
1126
|
-
|
|
1126
|
+
notificationActionType?: Maybe<Scalars['String']>;
|
|
1127
1127
|
notificationType?: Maybe<Scalars['String']>;
|
|
1128
1128
|
projectContext?: Maybe<AquaProjectContext>;
|
|
1129
1129
|
recipient?: Maybe<User>;
|
|
@@ -1139,7 +1139,7 @@ export declare type AquaOutgoingEmailLogsQueryApi = {
|
|
|
1139
1139
|
};
|
|
1140
1140
|
export declare type AquaOutgoingEmailLogsQueryApiGetNotificationLogsArgs = {
|
|
1141
1141
|
fromTimestamp?: Maybe<Scalars['DateTime']>;
|
|
1142
|
-
|
|
1142
|
+
notificationActionType?: Maybe<Scalars['String']>;
|
|
1143
1143
|
notificationType?: Maybe<Scalars['String']>;
|
|
1144
1144
|
projectId?: Maybe<Scalars['Long']>;
|
|
1145
1145
|
toTimestamp?: Maybe<Scalars['DateTime']>;
|
|
@@ -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';
|
|
@@ -13308,7 +13307,8 @@ export declare enum JiraProjectSortField {
|
|
|
13308
13307
|
Name = "NAME",
|
|
13309
13308
|
Key = "KEY",
|
|
13310
13309
|
Lead = "LEAD",
|
|
13311
|
-
Category = "CATEGORY"
|
|
13310
|
+
Category = "CATEGORY",
|
|
13311
|
+
LastIssueUpdatedTime = "LAST_ISSUE_UPDATED_TIME"
|
|
13312
13312
|
}
|
|
13313
13313
|
export declare type JiraProjectSortInput = {
|
|
13314
13314
|
sortBy?: Maybe<JiraProjectSortField>;
|
|
@@ -13387,6 +13387,7 @@ export declare type JiraQuery = {
|
|
|
13387
13387
|
issueSearchTotalCount?: Maybe<Scalars['Int']>;
|
|
13388
13388
|
issueSearchStatus?: Maybe<JiraIssueSearchStatus>;
|
|
13389
13389
|
permission?: Maybe<JiraPermission>;
|
|
13390
|
+
requestTypeTemplateById?: Maybe<JiraServiceManagementRequestTypeTemplate>;
|
|
13390
13391
|
requestTypeTemplates?: Maybe<Array<JiraServiceManagementRequestTypeTemplate>>;
|
|
13391
13392
|
requestTypeTemplateDefaultConfigurationDependencies?: Maybe<JiraServiceManagementRequestTypeTemplateDefaultConfigurationDependencies>;
|
|
13392
13393
|
resourceUsageMetricById?: Maybe<JiraResourceUsageMetric>;
|
|
@@ -13487,6 +13488,7 @@ export declare type JiraQueryJiraProjectsArgs = {
|
|
|
13487
13488
|
export declare type JiraQueryJiraProjectByKeyArgs = {
|
|
13488
13489
|
key: Scalars['String'];
|
|
13489
13490
|
cloudId: Scalars['ID'];
|
|
13491
|
+
ignoreDeleteStatus?: Maybe<Scalars['Boolean']>;
|
|
13490
13492
|
};
|
|
13491
13493
|
export declare type JiraQueryVersionArgs = {
|
|
13492
13494
|
id: Scalars['ID'];
|
|
@@ -13553,6 +13555,10 @@ export declare type JiraQueryPermissionArgs = {
|
|
|
13553
13555
|
cloudId: Scalars['ID'];
|
|
13554
13556
|
type: JiraPermissionType;
|
|
13555
13557
|
};
|
|
13558
|
+
export declare type JiraQueryRequestTypeTemplateByIdArgs = {
|
|
13559
|
+
cloudId: Scalars['ID'];
|
|
13560
|
+
templateId: Scalars['ID'];
|
|
13561
|
+
};
|
|
13556
13562
|
export declare type JiraQueryRequestTypeTemplatesArgs = {
|
|
13557
13563
|
cloudId: Scalars['ID'];
|
|
13558
13564
|
};
|
|
@@ -14325,7 +14331,7 @@ export declare type JiraServiceManagementCreateAndAssociateWorkflowFromTemplateI
|
|
|
14325
14331
|
projectId: Scalars['ID'];
|
|
14326
14332
|
workflowName?: Maybe<Scalars['String']>;
|
|
14327
14333
|
issueTypeName?: Maybe<Scalars['String']>;
|
|
14328
|
-
|
|
14334
|
+
avatarId?: Maybe<Scalars['ID']>;
|
|
14329
14335
|
};
|
|
14330
14336
|
export declare type JiraServiceManagementCreateAndAssociateWorkflowFromTemplatePayload = Payload & {
|
|
14331
14337
|
__typename?: 'JiraServiceManagementCreateAndAssociateWorkflowFromTemplatePayload';
|
|
@@ -14356,7 +14362,8 @@ export declare type JiraServiceManagementCreateRequestTypeFromTemplateRequestFor
|
|
|
14356
14362
|
templateFormReferenceInput?: Maybe<JiraServiceManagementCreateRequestTypeFromTemplateReferenceInput>;
|
|
14357
14363
|
};
|
|
14358
14364
|
export declare enum JiraServiceManagementCreateRequestTypeFromTemplateRequestFormInputType {
|
|
14359
|
-
FormTemplateReference = "FORM_TEMPLATE_REFERENCE"
|
|
14365
|
+
FormTemplateReference = "FORM_TEMPLATE_REFERENCE",
|
|
14366
|
+
RequestTypeTemplateReference = "REQUEST_TYPE_TEMPLATE_REFERENCE"
|
|
14360
14367
|
}
|
|
14361
14368
|
export declare type JiraServiceManagementCreateRequestTypeFromTemplateRequestTypeGroupInput = {
|
|
14362
14369
|
requestTypeGroupInternalIds: Array<Scalars['String']>;
|
|
@@ -14657,6 +14664,7 @@ export declare type JiraServiceManagementRequestTypeTemplate = {
|
|
|
14657
14664
|
name?: Maybe<Scalars['String']>;
|
|
14658
14665
|
description?: Maybe<Scalars['String']>;
|
|
14659
14666
|
groups?: Maybe<Array<Maybe<Scalars['String']>>>;
|
|
14667
|
+
previewImageUrl?: Maybe<Scalars['URL']>;
|
|
14660
14668
|
};
|
|
14661
14669
|
export declare type JiraServiceManagementRequestTypeTemplateDefaultConfigurationDependencies = {
|
|
14662
14670
|
__typename?: 'JiraServiceManagementRequestTypeTemplateDefaultConfigurationDependencies';
|
|
@@ -14729,7 +14737,9 @@ export declare type JiraServiceManagementUserResponder = {
|
|
|
14729
14737
|
export declare type JiraServiceManagementWorkflowAndIssueSummary = {
|
|
14730
14738
|
__typename?: 'JiraServiceManagementWorkflowAndIssueSummary';
|
|
14731
14739
|
workflowId?: Maybe<Scalars['String']>;
|
|
14740
|
+
workflowName?: Maybe<Scalars['String']>;
|
|
14732
14741
|
issueTypeId?: Maybe<Scalars['String']>;
|
|
14742
|
+
issueTypeName?: Maybe<Scalars['String']>;
|
|
14733
14743
|
};
|
|
14734
14744
|
export declare type JiraServiceManagementWorkflowTemplateMetadata = {
|
|
14735
14745
|
__typename?: 'JiraServiceManagementWorkflowTemplateMetadata';
|
|
@@ -23563,6 +23573,12 @@ export declare type UserInstallationRulesPayload = Payload & {
|
|
|
23563
23573
|
success: Scalars['Boolean'];
|
|
23564
23574
|
errors?: Maybe<Array<MutationError>>;
|
|
23565
23575
|
};
|
|
23576
|
+
export declare type VirtualAgentChannelConfig = {
|
|
23577
|
+
__typename?: 'VirtualAgentChannelConfig';
|
|
23578
|
+
triage?: Maybe<VirtualAgentSlackChannel>;
|
|
23579
|
+
test?: Maybe<VirtualAgentSlackChannel>;
|
|
23580
|
+
production?: Maybe<Array<Maybe<VirtualAgentSlackChannel>>>;
|
|
23581
|
+
};
|
|
23566
23582
|
export declare type VirtualAgentConfiguration = Node & {
|
|
23567
23583
|
__typename?: 'VirtualAgentConfiguration';
|
|
23568
23584
|
id: Scalars['ID'];
|
|
@@ -23572,6 +23588,8 @@ export declare type VirtualAgentConfiguration = Node & {
|
|
|
23572
23588
|
virtualAgentStatisticsProjection?: Maybe<VirtualAgentStatisticsProjection>;
|
|
23573
23589
|
standardFlowEditors?: Maybe<VirtualAgentFlowEditorsConnection>;
|
|
23574
23590
|
flowEditorFlow?: Maybe<VirtualAgentFlowEditor>;
|
|
23591
|
+
properties?: Maybe<VirtualAgentProperties>;
|
|
23592
|
+
virtualAgentChannelConfig?: Maybe<VirtualAgentChannelConfig>;
|
|
23575
23593
|
};
|
|
23576
23594
|
export declare type VirtualAgentConfigurationIntentRuleProjectionsArgs = {
|
|
23577
23595
|
first?: Maybe<Scalars['Int']>;
|
|
@@ -23778,6 +23796,10 @@ export declare type VirtualAgentMutationApiHandleFlowEditorActionsArgs = {
|
|
|
23778
23796
|
virtualAgentFlowEditorId: Scalars['ID'];
|
|
23779
23797
|
input: VirtualAgentFlowEditorActionInput;
|
|
23780
23798
|
};
|
|
23799
|
+
export declare type VirtualAgentProperties = {
|
|
23800
|
+
__typename?: 'VirtualAgentProperties';
|
|
23801
|
+
defaultJiraRequestTypeId?: Maybe<Scalars['String']>;
|
|
23802
|
+
};
|
|
23781
23803
|
export declare type VirtualAgentPropertiesInput = {
|
|
23782
23804
|
defaultJiraRequestTypeId?: Maybe<Scalars['String']>;
|
|
23783
23805
|
};
|
|
@@ -23801,6 +23823,15 @@ export declare type VirtualAgentQueryError = {
|
|
|
23801
23823
|
message?: Maybe<Scalars['String']>;
|
|
23802
23824
|
extensions?: Maybe<Array<QueryErrorExtension>>;
|
|
23803
23825
|
};
|
|
23826
|
+
export declare type VirtualAgentSlackChannel = {
|
|
23827
|
+
__typename?: 'VirtualAgentSlackChannel';
|
|
23828
|
+
id?: Maybe<Scalars['String']>;
|
|
23829
|
+
slackChannelId?: Maybe<Scalars['String']>;
|
|
23830
|
+
channelName?: Maybe<Scalars['String']>;
|
|
23831
|
+
isVirtualAgentChannel?: Maybe<Scalars['Boolean']>;
|
|
23832
|
+
isVirtualAgentTestChannel?: Maybe<Scalars['Boolean']>;
|
|
23833
|
+
channelLink?: Maybe<Scalars['String']>;
|
|
23834
|
+
};
|
|
23804
23835
|
export declare type VirtualAgentStatisticsPercentageChangeProjection = {
|
|
23805
23836
|
__typename?: 'VirtualAgentStatisticsPercentageChangeProjection';
|
|
23806
23837
|
traffic?: Maybe<Scalars['Float']>;
|