@stigg/js-client-sdk 0.45.1 → 0.45.2
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/dist/api/generated/types.d.ts +5 -2
- package/dist/index.js +1 -1
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
|
@@ -669,6 +669,7 @@ export declare enum ErrorCode {
|
|
|
669
669
|
BillingPeriodMissingError = "BillingPeriodMissingError",
|
|
670
670
|
CannotDeleteCustomerError = "CannotDeleteCustomerError",
|
|
671
671
|
CannotDeleteFeatureError = "CannotDeleteFeatureError",
|
|
672
|
+
CannotEditPackageInNonDraftMode = "CannotEditPackageInNonDraftMode",
|
|
672
673
|
CheckoutIsNotSupported = "CheckoutIsNotSupported",
|
|
673
674
|
CouponNotFound = "CouponNotFound",
|
|
674
675
|
CustomerHasNoPaymentMethod = "CustomerHasNoPaymentMethod",
|
|
@@ -677,6 +678,7 @@ export declare enum ErrorCode {
|
|
|
677
678
|
DraftPlanCantBeArchived = "DraftPlanCantBeArchived",
|
|
678
679
|
DuplicatedEntityNotAllowed = "DuplicatedEntityNotAllowed",
|
|
679
680
|
EditAllowedOnDraftPackageOnlyError = "EditAllowedOnDraftPackageOnlyError",
|
|
681
|
+
EntitlementsMustBelongToSamePackage = "EntitlementsMustBelongToSamePackage",
|
|
680
682
|
EnvironmentMissing = "EnvironmentMissing",
|
|
681
683
|
ExperimentAlreadyRunning = "ExperimentAlreadyRunning",
|
|
682
684
|
ExperimentNotFoundError = "ExperimentNotFoundError",
|
|
@@ -1595,6 +1597,7 @@ export declare type ProvisionCustomerInput = {
|
|
|
1595
1597
|
crmId?: InputMaybe<Scalars['String']>;
|
|
1596
1598
|
email?: InputMaybe<Scalars['String']>;
|
|
1597
1599
|
environmentId?: InputMaybe<Scalars['String']>;
|
|
1600
|
+
excludeFromExperiment?: InputMaybe<Scalars['Boolean']>;
|
|
1598
1601
|
name?: InputMaybe<Scalars['String']>;
|
|
1599
1602
|
refId: Scalars['String'];
|
|
1600
1603
|
shouldSyncFree?: InputMaybe<Scalars['Boolean']>;
|
|
@@ -2370,9 +2373,9 @@ export declare type SubscriptionFragment = {
|
|
|
2370
2373
|
prices?: Array<{
|
|
2371
2374
|
__typename?: 'SubscriptionPrice';
|
|
2372
2375
|
usageLimit?: number | null | undefined;
|
|
2373
|
-
price
|
|
2376
|
+
price?: ({
|
|
2374
2377
|
__typename?: 'Price';
|
|
2375
|
-
} & PriceFragment;
|
|
2378
|
+
} & PriceFragment) | null | undefined;
|
|
2376
2379
|
}> | null | undefined;
|
|
2377
2380
|
totalPrice?: ({
|
|
2378
2381
|
__typename?: 'CustomerSubscriptionTotalPrice';
|