@stigg/js-client-sdk 0.33.1 → 0.34.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 +16 -1
- package/dist/index.js +1 -1
- package/dist/index.js.map +1 -1
- package/dist/models.d.ts +6 -1
- package/dist/utils/ModelMapper.d.ts +1 -0
- package/package.json +1 -1
package/dist/models.d.ts
CHANGED
|
@@ -87,6 +87,7 @@ export declare type Price = {
|
|
|
87
87
|
feature?: {
|
|
88
88
|
units?: string | null | undefined;
|
|
89
89
|
unitsPlural?: string | null | undefined;
|
|
90
|
+
unitQuantity?: number | null;
|
|
90
91
|
displayName: string;
|
|
91
92
|
} | null;
|
|
92
93
|
};
|
|
@@ -180,8 +181,12 @@ export declare type Subscription = {
|
|
|
180
181
|
billingId?: string;
|
|
181
182
|
crmId?: string;
|
|
182
183
|
startDate: Date;
|
|
183
|
-
endDate?: Date;
|
|
184
184
|
currentBillingPeriodEnd?: Date;
|
|
185
|
+
/**
|
|
186
|
+
* The calculated end date after which the subscription will be canceled, which takes trial expiration and scheduled cancellations into consideration
|
|
187
|
+
*/
|
|
188
|
+
effectiveEndDate?: Date;
|
|
189
|
+
endDate?: Date;
|
|
185
190
|
trialEndDate?: Date;
|
|
186
191
|
cancellationDate?: Date;
|
|
187
192
|
};
|