@retinalabsllc/zairusjs 15.0.85 → 15.0.90
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/dist/index.d.mts +5 -4
- package/dist/index.d.ts +5 -4
- package/dist/index.js +222 -115
- package/dist/index.mjs +332 -225
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -63,7 +63,8 @@ interface PipleAuthProps {
|
|
|
63
63
|
recaptchaSiteKey?: string;
|
|
64
64
|
defaultRedirectPath?: string;
|
|
65
65
|
onAuthRequest: (payload: {
|
|
66
|
-
|
|
66
|
+
phoneNumber: string;
|
|
67
|
+
country: string;
|
|
67
68
|
firstName?: string;
|
|
68
69
|
lastName?: string;
|
|
69
70
|
organizationName?: string;
|
|
@@ -73,12 +74,12 @@ interface PipleAuthProps {
|
|
|
73
74
|
}) => Promise<{
|
|
74
75
|
success: boolean;
|
|
75
76
|
error?: string;
|
|
76
|
-
has2FA?: boolean;
|
|
77
77
|
hasPasskey?: boolean;
|
|
78
|
+
needsPukSetup?: boolean;
|
|
78
79
|
passkeyOptions?: any;
|
|
79
80
|
}>;
|
|
80
81
|
onVerifyOtp: (payload: {
|
|
81
|
-
|
|
82
|
+
phoneNumber: string;
|
|
82
83
|
code?: string;
|
|
83
84
|
isPasskey?: boolean;
|
|
84
85
|
passkeyCredential?: any;
|
|
@@ -643,7 +644,7 @@ interface TextInputProps {
|
|
|
643
644
|
maxLength?: number;
|
|
644
645
|
disabled?: boolean;
|
|
645
646
|
readOnly?: boolean;
|
|
646
|
-
type?: 'text' | 'password' | 'email' | 'url';
|
|
647
|
+
type?: 'text' | 'password' | 'email' | 'url' | 'tel';
|
|
647
648
|
onClick?: (e: React.MouseEvent<HTMLDivElement>) => void;
|
|
648
649
|
}
|
|
649
650
|
interface NumberInputProps {
|
package/dist/index.d.ts
CHANGED
|
@@ -63,7 +63,8 @@ interface PipleAuthProps {
|
|
|
63
63
|
recaptchaSiteKey?: string;
|
|
64
64
|
defaultRedirectPath?: string;
|
|
65
65
|
onAuthRequest: (payload: {
|
|
66
|
-
|
|
66
|
+
phoneNumber: string;
|
|
67
|
+
country: string;
|
|
67
68
|
firstName?: string;
|
|
68
69
|
lastName?: string;
|
|
69
70
|
organizationName?: string;
|
|
@@ -73,12 +74,12 @@ interface PipleAuthProps {
|
|
|
73
74
|
}) => Promise<{
|
|
74
75
|
success: boolean;
|
|
75
76
|
error?: string;
|
|
76
|
-
has2FA?: boolean;
|
|
77
77
|
hasPasskey?: boolean;
|
|
78
|
+
needsPukSetup?: boolean;
|
|
78
79
|
passkeyOptions?: any;
|
|
79
80
|
}>;
|
|
80
81
|
onVerifyOtp: (payload: {
|
|
81
|
-
|
|
82
|
+
phoneNumber: string;
|
|
82
83
|
code?: string;
|
|
83
84
|
isPasskey?: boolean;
|
|
84
85
|
passkeyCredential?: any;
|
|
@@ -643,7 +644,7 @@ interface TextInputProps {
|
|
|
643
644
|
maxLength?: number;
|
|
644
645
|
disabled?: boolean;
|
|
645
646
|
readOnly?: boolean;
|
|
646
|
-
type?: 'text' | 'password' | 'email' | 'url';
|
|
647
|
+
type?: 'text' | 'password' | 'email' | 'url' | 'tel';
|
|
647
648
|
onClick?: (e: React.MouseEvent<HTMLDivElement>) => void;
|
|
648
649
|
}
|
|
649
650
|
interface NumberInputProps {
|