@ollaid/native-sso 2.7.4 → 2.7.6

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.
@@ -112,6 +112,8 @@ export interface MobileResendOtpResponse {
112
112
  otp_code?: string;
113
113
  cooldown_remaining?: number;
114
114
  otp_code_dev?: string;
115
+ otp_method?: 'email' | 'sms';
116
+ otp_sent_to?: string;
115
117
  }
116
118
  export interface MobileAuthFinalResponse {
117
119
  success: boolean;
@@ -124,6 +124,7 @@ export interface NativeResendOtpResponse {
124
124
  error_type?: 'cooldown_active' | 'session_expired' | string;
125
125
  cooldown_remaining?: number;
126
126
  otp_sent_to?: string;
127
+ otp_method?: 'email' | 'sms';
127
128
  otp_expires_in?: number;
128
129
  otp_code_dev?: string;
129
130
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ollaid/native-sso",
3
- "version": "2.7.4",
3
+ "version": "2.7.6",
4
4
  "description": "Package NPM fullstack pour l'authentification Native SSO Ollaid - Frontend-First (Link APIs & Refresh support)",
5
5
  "type": "module",
6
6
  "main": "dist/index.cjs",