@stigg/js-client-sdk 1.5.0 → 1.6.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/dist/api/generated/types.d.ts +18 -37
- package/dist/index.js +1 -1
- package/dist/index.js.map +1 -1
- package/dist/models.d.ts +3 -0
- package/package.json +1 -1
package/dist/models.d.ts
CHANGED
|
@@ -87,6 +87,7 @@ export declare type PromotionalEntitlement = {
|
|
|
87
87
|
export declare type Price = {
|
|
88
88
|
pricingModel: BillingModel;
|
|
89
89
|
billingPeriod: BillingPeriod;
|
|
90
|
+
billingId?: string | null;
|
|
90
91
|
amount: number;
|
|
91
92
|
currency: Currency;
|
|
92
93
|
minUnitQuantity?: number | null | undefined;
|
|
@@ -109,6 +110,7 @@ export declare type Plan = {
|
|
|
109
110
|
id: string;
|
|
110
111
|
displayName: string;
|
|
111
112
|
description?: string | null;
|
|
113
|
+
billingId?: string | null;
|
|
112
114
|
order: number;
|
|
113
115
|
basePlan?: BasePlan;
|
|
114
116
|
entitlements: PackageEntitlement[];
|
|
@@ -184,6 +186,7 @@ export declare type Addon = {
|
|
|
184
186
|
id: string;
|
|
185
187
|
displayName: string;
|
|
186
188
|
description: string;
|
|
189
|
+
billingId?: string | null;
|
|
187
190
|
entitlements: PackageEntitlement[];
|
|
188
191
|
pricePoints: Price[];
|
|
189
192
|
pricingType?: PricingType | null;
|