@mediahub-bg/ott-objects 0.5.59 → 0.5.61
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 +16 -1
package/package.json
CHANGED
package/web/types.ts
CHANGED
|
@@ -192,6 +192,9 @@ export interface PubBillingCustomer {
|
|
|
192
192
|
excessPayments: number /* int64 */;
|
|
193
193
|
cf_marketing?: boolean;
|
|
194
194
|
cid?: string;
|
|
195
|
+
/**
|
|
196
|
+
* PlayTV billing field, this must be removed at some point
|
|
197
|
+
*/
|
|
195
198
|
automaticPayment?: boolean;
|
|
196
199
|
}
|
|
197
200
|
export interface PubBillingCoupon {
|
|
@@ -237,6 +240,9 @@ export interface PubBillingPlanDetails {
|
|
|
237
240
|
addons?: PubBillingAddon[];
|
|
238
241
|
oldClient?: boolean;
|
|
239
242
|
cid?: string;
|
|
243
|
+
/**
|
|
244
|
+
* PlayTV billing field, this must be removed at some point
|
|
245
|
+
*/
|
|
240
246
|
automaticPayment?: boolean;
|
|
241
247
|
/**
|
|
242
248
|
* This will be moved to the CMS
|
|
@@ -748,6 +754,10 @@ export interface InUserUpdate extends InProfileUpdate {
|
|
|
748
754
|
cf_terms?: boolean;
|
|
749
755
|
cf_guide?: string;
|
|
750
756
|
cf_req_payment?: boolean;
|
|
757
|
+
/**
|
|
758
|
+
* PlayTV billing field, must be removed in the future
|
|
759
|
+
*/
|
|
760
|
+
automaticPayment?: boolean;
|
|
751
761
|
}
|
|
752
762
|
export interface InUpdateTrial {
|
|
753
763
|
name: string;
|
|
@@ -796,10 +806,15 @@ export interface InResetPassword {
|
|
|
796
806
|
password: string;
|
|
797
807
|
repeatPassword: string;
|
|
798
808
|
}
|
|
809
|
+
export interface CaptchaInput {
|
|
810
|
+
'g-recaptcha-response'?: string;
|
|
811
|
+
captchaAction?: string;
|
|
812
|
+
captchaSiteKey?: string;
|
|
813
|
+
}
|
|
799
814
|
export interface InUserStatus {
|
|
800
815
|
email: string;
|
|
801
816
|
otp?: string;
|
|
802
|
-
|
|
817
|
+
CaptchaInput: CaptchaInput;
|
|
803
818
|
}
|
|
804
819
|
export interface InDelUser {
|
|
805
820
|
password?: string;
|