@mediahub-bg/ott-objects 0.5.60 → 0.5.62
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 -2
package/package.json
CHANGED
package/web/types.ts
CHANGED
|
@@ -806,10 +806,14 @@ export interface InResetPassword {
|
|
|
806
806
|
password: string;
|
|
807
807
|
repeatPassword: string;
|
|
808
808
|
}
|
|
809
|
-
export interface
|
|
809
|
+
export interface CaptchaInput {
|
|
810
|
+
'g-recaptcha-response'?: string;
|
|
811
|
+
captchaAction?: string;
|
|
812
|
+
captchaSiteKey?: string;
|
|
813
|
+
}
|
|
814
|
+
export interface InUserStatus extends CaptchaInput {
|
|
810
815
|
email: string;
|
|
811
816
|
otp?: string;
|
|
812
|
-
'g-recaptcha-response'?: string;
|
|
813
817
|
}
|
|
814
818
|
export interface InDelUser {
|
|
815
819
|
password?: string;
|