@forge/cli-shared 3.11.0-next.4 → 3.11.0-next.6
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 +16 -1
- package/out/graphql/graphql-types.d.ts +5 -2
- 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 +0 -2
- package/out/graphql/minimal-graphql-runner.d.ts.map +1 -1
- package/out/graphql/minimal-graphql-runner.js +1 -5
- package/out/graphql/mutation-aware-graphql-client.d.ts +1 -2
- package/out/graphql/mutation-aware-graphql-client.d.ts.map +1 -1
- package/out/graphql/mutation-aware-graphql-client.js +1 -4
- package/out/shared/error-handling.d.ts +4 -0
- package/out/shared/error-handling.d.ts.map +1 -1
- package/out/shared/error-handling.js +12 -1
- package/package.json +3 -3
package/CHANGELOG.md
CHANGED
|
@@ -1,10 +1,25 @@
|
|
|
1
1
|
# @forge/cli-shared
|
|
2
2
|
|
|
3
|
+
## 3.11.0-next.6
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- b91c323: output request ID in analytics for all GraphQL errors
|
|
8
|
+
|
|
9
|
+
## 3.11.0-next.5
|
|
10
|
+
|
|
11
|
+
### Patch Changes
|
|
12
|
+
|
|
13
|
+
- 87b2440: Bumping dependencies via Renovate:
|
|
14
|
+
|
|
15
|
+
- recursive-readdir
|
|
16
|
+
- @types/recursive-readdir
|
|
17
|
+
|
|
3
18
|
## 3.11.0-next.4
|
|
4
19
|
|
|
5
20
|
### Patch Changes
|
|
6
21
|
|
|
7
|
-
- Updated dependencies [
|
|
22
|
+
- Updated dependencies [9c3f9e47]
|
|
8
23
|
- @forge/manifest@4.10.0-next.2
|
|
9
24
|
|
|
10
25
|
## 3.11.0-next.3
|
|
@@ -10522,7 +10522,7 @@ export declare type JiraGlobalPermission = {
|
|
|
10522
10522
|
};
|
|
10523
10523
|
export declare type JiraGlobalPermissionAddGroupGrantInput = {
|
|
10524
10524
|
key: Scalars['String'];
|
|
10525
|
-
|
|
10525
|
+
groupAri: Scalars['ID'];
|
|
10526
10526
|
};
|
|
10527
10527
|
export declare type JiraGlobalPermissionAddGroupGrantPayload = Payload & {
|
|
10528
10528
|
__typename?: 'JiraGlobalPermissionAddGroupGrantPayload';
|
|
@@ -10531,7 +10531,7 @@ export declare type JiraGlobalPermissionAddGroupGrantPayload = Payload & {
|
|
|
10531
10531
|
};
|
|
10532
10532
|
export declare type JiraGlobalPermissionDeleteGroupGrantInput = {
|
|
10533
10533
|
key: Scalars['String'];
|
|
10534
|
-
|
|
10534
|
+
groupAri: Scalars['ID'];
|
|
10535
10535
|
};
|
|
10536
10536
|
export declare type JiraGlobalPermissionDeleteGroupGrantPayload = Payload & {
|
|
10537
10537
|
__typename?: 'JiraGlobalPermissionDeleteGroupGrantPayload';
|
|
@@ -18135,6 +18135,7 @@ export declare type PolarisIdeaIntervalField = PolarisIdeaField & {
|
|
|
18135
18135
|
description?: Maybe<Scalars['String']>;
|
|
18136
18136
|
emoji?: Maybe<Scalars['String']>;
|
|
18137
18137
|
builtin?: Maybe<BuiltinPolarisIdeaField>;
|
|
18138
|
+
configuration?: Maybe<Scalars['JSON']>;
|
|
18138
18139
|
};
|
|
18139
18140
|
export declare type PolarisIdeaIssueCommentsField = PolarisIdeaField & {
|
|
18140
18141
|
__typename?: 'PolarisIdeaIssueCommentsField';
|
|
@@ -21164,6 +21165,8 @@ export declare type ShepherdAlertResult = QueryError | ShepherdAlert;
|
|
|
21164
21165
|
export declare enum ShepherdAlertStatus {
|
|
21165
21166
|
InProgress = "IN_PROGRESS",
|
|
21166
21167
|
Triaged = "TRIAGED",
|
|
21168
|
+
TriagedExpectedActivity = "TRIAGED_EXPECTED_ACTIVITY",
|
|
21169
|
+
TriagedTruePositive = "TRIAGED_TRUE_POSITIVE",
|
|
21167
21170
|
Untriaged = "UNTRIAGED"
|
|
21168
21171
|
}
|
|
21169
21172
|
export declare type ShepherdAlertSupportingData = {
|