@forge/cli-shared 3.2.1-next.0 → 3.2.1
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
|
@@ -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"
|