@mediahub-bg/ott-objects 0.4.24 → 0.4.27
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 -1
package/package.json
CHANGED
package/web/types.ts
CHANGED
|
@@ -895,10 +895,15 @@ export interface InRefreshToken {
|
|
|
895
895
|
}
|
|
896
896
|
export interface InResetPassword {
|
|
897
897
|
email: string;
|
|
898
|
-
secret
|
|
898
|
+
secret?: string;
|
|
899
|
+
otp?: string;
|
|
899
900
|
password: string;
|
|
900
901
|
repeatPassword: string;
|
|
901
902
|
}
|
|
903
|
+
export interface InUserStatus {
|
|
904
|
+
email: string;
|
|
905
|
+
otp?: string;
|
|
906
|
+
}
|
|
902
907
|
export interface InDelUser {
|
|
903
908
|
password: string;
|
|
904
909
|
}
|