@forge/cli-shared 3.7.0-next.3-experimental-2a9dda4 → 3.7.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,20 +1,27 @@
|
|
|
1
1
|
# @forge/cli-shared
|
|
2
2
|
|
|
3
|
-
## 3.7.
|
|
3
|
+
## 3.7.1-next.0
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- Updated dependencies [32ca02fd]
|
|
8
|
+
- @forge/manifest@4.8.0-next.0
|
|
9
|
+
|
|
10
|
+
## 3.7.0
|
|
4
11
|
|
|
5
12
|
### Minor Changes
|
|
6
13
|
|
|
7
|
-
-
|
|
14
|
+
- 1911d76: Added "forge environment create" command
|
|
8
15
|
|
|
9
16
|
### Patch Changes
|
|
10
17
|
|
|
11
|
-
-
|
|
18
|
+
- 589467c: Bumping dependencies via Renovate:
|
|
12
19
|
|
|
13
20
|
- cross-spawn
|
|
14
21
|
|
|
15
22
|
- 1eca527f: Type-safe argument and option handling
|
|
16
|
-
- Updated dependencies [
|
|
17
|
-
- @forge/manifest@4.7.1
|
|
23
|
+
- Updated dependencies [23a89df]
|
|
24
|
+
- @forge/manifest@4.7.1
|
|
18
25
|
|
|
19
26
|
## 3.7.0-next.3
|
|
20
27
|
|
|
@@ -20904,6 +20904,7 @@ export declare type ShepherdMutation = {
|
|
|
20904
20904
|
subscription?: Maybe<ShepherdSubscriptionMutations>;
|
|
20905
20905
|
testSubscription?: Maybe<ShepherdTestSubscriptionPayload>;
|
|
20906
20906
|
updateAlert?: Maybe<ShepherdUpdateAlertPayload>;
|
|
20907
|
+
updateAlerts?: Maybe<ShepherdUpdateAlertsPayload>;
|
|
20907
20908
|
updateOrganization?: Maybe<ShepherdUpdateOrganizationPayload>;
|
|
20908
20909
|
updateSubscription?: Maybe<ShepherdUpdateSubscriptionPayload>;
|
|
20909
20910
|
workspace?: Maybe<ShepherdWorkspaceMutations>;
|
|
@@ -20933,6 +20934,10 @@ export declare type ShepherdMutationUpdateAlertArgs = {
|
|
|
20933
20934
|
id: Scalars['ID'];
|
|
20934
20935
|
input: ShepherdUpdateAlertInput;
|
|
20935
20936
|
};
|
|
20937
|
+
export declare type ShepherdMutationUpdateAlertsArgs = {
|
|
20938
|
+
ids: Array<Maybe<Scalars['ID']>>;
|
|
20939
|
+
input: ShepherdUpdateAlertInput;
|
|
20940
|
+
};
|
|
20936
20941
|
export declare type ShepherdMutationUpdateOrganizationArgs = {
|
|
20937
20942
|
id: Scalars['ID'];
|
|
20938
20943
|
input: ShepherdUpdateOrganizationInput;
|
|
@@ -20942,6 +20947,8 @@ export declare type ShepherdMutationUpdateSubscriptionArgs = {
|
|
|
20942
20947
|
input: ShepherdUpdateSubscriptionInput;
|
|
20943
20948
|
};
|
|
20944
20949
|
export declare enum ShepherdMutationErrorType {
|
|
20950
|
+
BadRequest = "BAD_REQUEST",
|
|
20951
|
+
InternalServerError = "INTERNAL_SERVER_ERROR",
|
|
20945
20952
|
NoProductAccess = "NO_PRODUCT_ACCESS",
|
|
20946
20953
|
Unauthorized = "UNAUTHORIZED"
|
|
20947
20954
|
}
|
|
@@ -21006,6 +21013,8 @@ export declare type ShepherdQueryWorkspaceArgs = {
|
|
|
21006
21013
|
orgId?: Maybe<Scalars['ID']>;
|
|
21007
21014
|
};
|
|
21008
21015
|
export declare enum ShepherdQueryErrorType {
|
|
21016
|
+
BadRequest = "BAD_REQUEST",
|
|
21017
|
+
InternalServerError = "INTERNAL_SERVER_ERROR",
|
|
21009
21018
|
NoProductAccess = "NO_PRODUCT_ACCESS",
|
|
21010
21019
|
Unauthorized = "UNAUTHORIZED"
|
|
21011
21020
|
}
|
|
@@ -21142,6 +21151,12 @@ export declare type ShepherdUpdateAlertPayload = Payload & {
|
|
|
21142
21151
|
node?: Maybe<ShepherdAlert>;
|
|
21143
21152
|
success: Scalars['Boolean'];
|
|
21144
21153
|
};
|
|
21154
|
+
export declare type ShepherdUpdateAlertsPayload = Payload & {
|
|
21155
|
+
__typename?: 'ShepherdUpdateAlertsPayload';
|
|
21156
|
+
errors?: Maybe<Array<MutationError>>;
|
|
21157
|
+
nodes?: Maybe<Array<Maybe<ShepherdAlert>>>;
|
|
21158
|
+
success: Scalars['Boolean'];
|
|
21159
|
+
};
|
|
21145
21160
|
export declare type ShepherdUpdateEmailInput = {
|
|
21146
21161
|
email?: Maybe<ShepherdCreateEmailInput>;
|
|
21147
21162
|
status?: Maybe<ShepherdSubscriptionStatus>;
|