@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/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;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@stigg/js-client-sdk",
3
- "version": "1.5.0",
3
+ "version": "1.6.0",
4
4
  "description": "Stigg client-side SDK for Browser",
5
5
  "main": "dist/index.js",
6
6
  "typings": "dist/index.d.ts",