@forge/cli-shared 3.2.1-next.0 → 3.2.2-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,18 @@
1
1
  # @forge/cli-shared
2
2
 
3
+ ## 3.2.2-next.0
4
+
5
+ ### Patch Changes
6
+
7
+ - Updated dependencies [138bb0a]
8
+ - @forge/manifest@4.4.1-next.0
9
+
10
+ ## 3.2.1
11
+
12
+ ### Patch Changes
13
+
14
+ - 567bf35: Fix displaying site prompt for install --upgrade
15
+
3
16
  ## 3.2.1-next.0
4
17
 
5
18
  ### Patch Changes
@@ -18134,6 +18134,7 @@ export declare type ShepherdMutation = {
18134
18134
  createExampleAlert?: Maybe<ShepherdCreateExampleAlertPayload>;
18135
18135
  createOrganization?: Maybe<ShepherdCreateOrganizationPayload>;
18136
18136
  createSubscription?: Maybe<ShepherdCreateSubscriptionPayload>;
18137
+ deleteSubscription?: Maybe<ShepherdSubscriptionMutationPayload>;
18137
18138
  testSubscription?: Maybe<ShepherdTestSubscriptionPayload>;
18138
18139
  updateAlert?: Maybe<ShepherdUpdateAlertPayload>;
18139
18140
  updateOrganization?: Maybe<ShepherdUpdateOrganizationPayload>;
@@ -18151,6 +18152,11 @@ export declare type ShepherdMutationCreateOrganizationArgs = {
18151
18152
  export declare type ShepherdMutationCreateSubscriptionArgs = {
18152
18153
  input: ShepherdCreateSubscriptionInput;
18153
18154
  };
18155
+ export declare type ShepherdMutationDeleteSubscriptionArgs = {
18156
+ hardDelete?: Maybe<Scalars['Boolean']>;
18157
+ orgId: Scalars['ID'];
18158
+ subscriptionId: Scalars['ID'];
18159
+ };
18154
18160
  export declare type ShepherdMutationTestSubscriptionArgs = {
18155
18161
  orgId: Scalars['ID'];
18156
18162
  subscriptionId: Scalars['ID'];
@@ -18247,6 +18253,12 @@ export declare type ShepherdSubscriptionEdge = {
18247
18253
  cursor?: Maybe<Scalars['String']>;
18248
18254
  node?: Maybe<ShepherdSubscription>;
18249
18255
  };
18256
+ export declare type ShepherdSubscriptionMutationPayload = Payload & {
18257
+ __typename?: 'ShepherdSubscriptionMutationPayload';
18258
+ errors?: Maybe<Array<MutationError>>;
18259
+ node?: Maybe<ShepherdSubscription>;
18260
+ success: Scalars['Boolean'];
18261
+ };
18250
18262
  export declare enum ShepherdSubscriptionStatus {
18251
18263
  Active = "ACTIVE",
18252
18264
  Inactive = "INACTIVE"