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.
@@ -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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "repzo",
3
- "version": "1.0.262",
3
+ "version": "1.0.263",
4
4
  "description": "Repzo TypeScript SDK",
5
5
  "main": "./lib/index.js",
6
6
  "types": "./lib/index.d.ts",
@@ -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;