@forge/cli-shared 3.10.0-next.2 → 3.10.1-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,27 @@
|
|
|
1
1
|
# @forge/cli-shared
|
|
2
2
|
|
|
3
|
+
## 3.10.1-next.0
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- e8d41b0: Bumping dependencies via Renovate:
|
|
8
|
+
|
|
9
|
+
- ignore-walk
|
|
10
|
+
- @types/ignore-walk
|
|
11
|
+
|
|
12
|
+
## 3.10.0
|
|
13
|
+
|
|
14
|
+
### Minor Changes
|
|
15
|
+
|
|
16
|
+
- 48a73ca: Improve forge CLI GraphQLProviderServiceError reading
|
|
17
|
+
|
|
18
|
+
### Patch Changes
|
|
19
|
+
|
|
20
|
+
- e7f0fb6: Added additional error tagging
|
|
21
|
+
- Updated dependencies [b34b84d]
|
|
22
|
+
- Updated dependencies [cc6e80a]
|
|
23
|
+
- @forge/manifest@4.9.1
|
|
24
|
+
|
|
3
25
|
## 3.10.0-next.2
|
|
4
26
|
|
|
5
27
|
### Minor 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']>;
|
|
@@ -9277,6 +9277,10 @@ export declare type JiraBooleanField = Node & JiraIssueField & JiraIssueFieldCon
|
|
|
9277
9277
|
fieldConfig?: Maybe<JiraFieldConfig>;
|
|
9278
9278
|
userFieldConfig?: Maybe<JiraUserFieldConfig>;
|
|
9279
9279
|
};
|
|
9280
|
+
export declare type JiraCcMessage = {
|
|
9281
|
+
role: Scalars['String'];
|
|
9282
|
+
content: Scalars['String'];
|
|
9283
|
+
};
|
|
9280
9284
|
export declare type JiraCmdbField = Node & JiraIssueField & JiraIssueFieldConfiguration & {
|
|
9281
9285
|
__typename?: 'JiraCMDBField';
|
|
9282
9286
|
id: Scalars['ID'];
|
|
@@ -11446,6 +11450,10 @@ export declare enum JiraIssueViewTimestampDisplayMode {
|
|
|
11446
11450
|
Absolute = "ABSOLUTE",
|
|
11447
11451
|
Relative = "RELATIVE"
|
|
11448
11452
|
}
|
|
11453
|
+
export declare enum JiraIteration {
|
|
11454
|
+
Iteration_1 = "ITERATION_1",
|
|
11455
|
+
Iteration_2 = "ITERATION_2"
|
|
11456
|
+
}
|
|
11449
11457
|
export declare enum JiraJqlBuilderSearchMode {
|
|
11450
11458
|
Basic = "BASIC",
|
|
11451
11459
|
Advanced = "ADVANCED"
|
|
@@ -11456,6 +11464,12 @@ export declare type JiraJqlBuilderSearchModeMutationPayload = Payload & {
|
|
|
11456
11464
|
errors?: Maybe<Array<MutationError>>;
|
|
11457
11465
|
userSearchMode?: Maybe<JiraJqlBuilderSearchMode>;
|
|
11458
11466
|
};
|
|
11467
|
+
export declare type JiraJqlFromNaturalLanguage = {
|
|
11468
|
+
__typename?: 'JiraJQLFromNaturalLanguage';
|
|
11469
|
+
generatedJQL?: Maybe<Scalars['String']>;
|
|
11470
|
+
generatedJQLError?: Maybe<JiraJqlGenerationError>;
|
|
11471
|
+
};
|
|
11472
|
+
export declare type JiraJqlGenerationError = JiraInvalidJqlError | JiraInvalidSyntaxError | JiraServerError;
|
|
11459
11473
|
export declare enum JiraJqlAutocompleteType {
|
|
11460
11474
|
None = "NONE",
|
|
11461
11475
|
Component = "COMPONENT",
|
|
@@ -11632,8 +11646,8 @@ export declare type JiraJqlFunction = {
|
|
|
11632
11646
|
};
|
|
11633
11647
|
export declare type JiraJqlFunctionProcessingStatus = {
|
|
11634
11648
|
__typename?: 'JiraJqlFunctionProcessingStatus';
|
|
11635
|
-
status
|
|
11636
|
-
function
|
|
11649
|
+
status: JiraJqlFunctionStatus;
|
|
11650
|
+
function: Scalars['String'];
|
|
11637
11651
|
app?: Maybe<Scalars['String']>;
|
|
11638
11652
|
};
|
|
11639
11653
|
export declare enum JiraJqlFunctionStatus {
|
|
@@ -12366,6 +12380,11 @@ export declare type JiraMutationUpdateProjectShortcutArgs = {
|
|
|
12366
12380
|
export declare type JiraMutationDeleteProjectShortcutArgs = {
|
|
12367
12381
|
input: JiraDeleteShortcutInput;
|
|
12368
12382
|
};
|
|
12383
|
+
export declare type JiraNaturalLanguageToJqlInput = {
|
|
12384
|
+
naturalLanguageInput: Scalars['String'];
|
|
12385
|
+
iteration?: Maybe<JiraIteration>;
|
|
12386
|
+
initMessages?: Maybe<Array<JiraCcMessage>>;
|
|
12387
|
+
};
|
|
12369
12388
|
export declare type JiraNumberField = Node & JiraIssueField & JiraIssueFieldConfiguration & JiraUserIssueFieldConfiguration & {
|
|
12370
12389
|
__typename?: 'JiraNumberField';
|
|
12371
12390
|
id: Scalars['ID'];
|
|
@@ -13307,7 +13326,8 @@ export declare enum JiraProjectSortField {
|
|
|
13307
13326
|
Name = "NAME",
|
|
13308
13327
|
Key = "KEY",
|
|
13309
13328
|
Lead = "LEAD",
|
|
13310
|
-
Category = "CATEGORY"
|
|
13329
|
+
Category = "CATEGORY",
|
|
13330
|
+
LastIssueUpdatedTime = "LAST_ISSUE_UPDATED_TIME"
|
|
13311
13331
|
}
|
|
13312
13332
|
export declare type JiraProjectSortInput = {
|
|
13313
13333
|
sortBy?: Maybe<JiraProjectSortField>;
|
|
@@ -13385,6 +13405,7 @@ export declare type JiraQuery = {
|
|
|
13385
13405
|
issueSearchStable?: Maybe<JiraIssueConnection>;
|
|
13386
13406
|
issueSearchTotalCount?: Maybe<Scalars['Int']>;
|
|
13387
13407
|
issueSearchStatus?: Maybe<JiraIssueSearchStatus>;
|
|
13408
|
+
naturalLanguageToJql?: Maybe<JiraJqlFromNaturalLanguage>;
|
|
13388
13409
|
permission?: Maybe<JiraPermission>;
|
|
13389
13410
|
requestTypeTemplateById?: Maybe<JiraServiceManagementRequestTypeTemplate>;
|
|
13390
13411
|
requestTypeTemplates?: Maybe<Array<JiraServiceManagementRequestTypeTemplate>>;
|
|
@@ -13550,6 +13571,10 @@ export declare type JiraQueryIssueSearchStatusArgs = {
|
|
|
13550
13571
|
cloudId: Scalars['ID'];
|
|
13551
13572
|
jql: Scalars['String'];
|
|
13552
13573
|
};
|
|
13574
|
+
export declare type JiraQueryNaturalLanguageToJqlArgs = {
|
|
13575
|
+
cloudId: Scalars['ID'];
|
|
13576
|
+
input: JiraNaturalLanguageToJqlInput;
|
|
13577
|
+
};
|
|
13553
13578
|
export declare type JiraQueryPermissionArgs = {
|
|
13554
13579
|
cloudId: Scalars['ID'];
|
|
13555
13580
|
type: JiraPermissionType;
|
|
@@ -15571,6 +15596,7 @@ export declare type JiraVersion = Node & {
|
|
|
15571
15596
|
canViewVersionDetailsPage?: Maybe<Scalars['Boolean']>;
|
|
15572
15597
|
warningsCount?: Maybe<Scalars['Long']>;
|
|
15573
15598
|
contributors?: Maybe<JiraVersionContributorConnection>;
|
|
15599
|
+
driver?: Maybe<User>;
|
|
15574
15600
|
releaseNotesConfiguration?: Maybe<JiraReleaseNotesConfiguration>;
|
|
15575
15601
|
availableSites?: Maybe<JiraReleaseNotesInConfluenceAvailableSitesConnection>;
|
|
15576
15602
|
relatedWork?: Maybe<JiraVersionRelatedWorkConnection>;
|
|
@@ -20858,6 +20884,7 @@ export declare type SearchResultJiraProject = SearchResult & {
|
|
|
20858
20884
|
export declare enum SearchResultType {
|
|
20859
20885
|
Page = "page",
|
|
20860
20886
|
Blogpost = "blogpost",
|
|
20887
|
+
Whiteboard = "whiteboard",
|
|
20861
20888
|
Space = "space",
|
|
20862
20889
|
Attachment = "attachment",
|
|
20863
20890
|
Comment = "comment",
|
|
@@ -23577,6 +23604,7 @@ export declare type VirtualAgentChannelConfig = {
|
|
|
23577
23604
|
triage?: Maybe<VirtualAgentSlackChannel>;
|
|
23578
23605
|
test?: Maybe<VirtualAgentSlackChannel>;
|
|
23579
23606
|
production?: Maybe<Array<Maybe<VirtualAgentSlackChannel>>>;
|
|
23607
|
+
jsmChatContext?: Maybe<VirtualAgentJsmChatContext>;
|
|
23580
23608
|
};
|
|
23581
23609
|
export declare type VirtualAgentConfiguration = Node & {
|
|
23582
23610
|
__typename?: 'VirtualAgentConfiguration';
|
|
@@ -23753,6 +23781,12 @@ export declare type VirtualAgentIntentStatisticsProjection = {
|
|
|
23753
23781
|
resolutionRate?: Maybe<Scalars['Float']>;
|
|
23754
23782
|
averageCsat?: Maybe<Scalars['Float']>;
|
|
23755
23783
|
};
|
|
23784
|
+
export declare type VirtualAgentJsmChatContext = {
|
|
23785
|
+
__typename?: 'VirtualAgentJSMChatContext';
|
|
23786
|
+
connectivityState: Scalars['String'];
|
|
23787
|
+
slackSetupLink?: Maybe<Scalars['String']>;
|
|
23788
|
+
errorMessage?: Maybe<Scalars['String']>;
|
|
23789
|
+
};
|
|
23756
23790
|
export declare type VirtualAgentMutationApi = {
|
|
23757
23791
|
__typename?: 'VirtualAgentMutationApi';
|
|
23758
23792
|
createVirtualAgentConfiguration?: Maybe<VirtualAgentCreateConfigurationPayload>;
|