repzo 1.0.262 → 1.0.263
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/lib/types/index.d.ts +1 -0
- package/package.json +1 -1
- package/src/types/index.ts +5 -0
package/lib/types/index.d.ts
CHANGED
|
@@ -14556,6 +14556,7 @@ export declare namespace Service {
|
|
|
14556
14556
|
}
|
|
14557
14557
|
}
|
|
14558
14558
|
namespace AuthenticateAdmin {
|
|
14559
|
+
export type MfaMethod = "email" | "whatsapp" | "authenticator" | "recovery_codes";
|
|
14559
14560
|
interface Subscription_data {
|
|
14560
14561
|
name_space: string;
|
|
14561
14562
|
grace_until: number;
|
package/package.json
CHANGED
package/src/types/index.ts
CHANGED
|
@@ -15626,6 +15626,11 @@ export namespace Service {
|
|
|
15626
15626
|
}
|
|
15627
15627
|
|
|
15628
15628
|
export namespace AuthenticateAdmin {
|
|
15629
|
+
export type MfaMethod =
|
|
15630
|
+
| "email"
|
|
15631
|
+
| "whatsapp"
|
|
15632
|
+
| "authenticator"
|
|
15633
|
+
| "recovery_codes";
|
|
15629
15634
|
interface Subscription_data {
|
|
15630
15635
|
name_space: string;
|
|
15631
15636
|
grace_until: number;
|