@mediahub-bg/ott-objects 0.5.55 → 0.5.58
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/package.json +1 -1
- package/web/types.ts +6 -0
package/package.json
CHANGED
package/web/types.ts
CHANGED
|
@@ -192,6 +192,7 @@ export interface PubBillingCustomer {
|
|
|
192
192
|
excessPayments: number /* int64 */;
|
|
193
193
|
cf_marketing?: boolean;
|
|
194
194
|
cid?: string;
|
|
195
|
+
automaticPayment?: boolean;
|
|
195
196
|
}
|
|
196
197
|
export interface PubBillingCoupon {
|
|
197
198
|
id: string;
|
|
@@ -236,6 +237,7 @@ export interface PubBillingPlanDetails {
|
|
|
236
237
|
addons?: PubBillingAddon[];
|
|
237
238
|
oldClient?: boolean;
|
|
238
239
|
cid?: string;
|
|
240
|
+
automaticPayment?: boolean;
|
|
239
241
|
/**
|
|
240
242
|
* This will be moved to the CMS
|
|
241
243
|
*/
|
|
@@ -284,6 +286,10 @@ export interface CustomerInfo extends CustomBillingFields {
|
|
|
284
286
|
sameAddress?: boolean;
|
|
285
287
|
billingAddress?: InClientAddress;
|
|
286
288
|
subscription?: CustomerInfoSub;
|
|
289
|
+
/**
|
|
290
|
+
* PlayTV billing stupidity, this field should NOT be here
|
|
291
|
+
*/
|
|
292
|
+
automaticPayment?: boolean;
|
|
287
293
|
}
|
|
288
294
|
export interface InAddon {
|
|
289
295
|
id: string;
|