@retinalabsllc/zairusjs 15.0.80 → 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 +6 -4
- package/dist/index.d.ts +6 -4
- package/dist/index.js +230 -116
- package/dist/index.mjs +340 -226
- 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;
|
|
@@ -516,6 +517,7 @@ interface CompanyDetails {
|
|
|
516
517
|
lines?: string[];
|
|
517
518
|
/** Phone number (automatically formats into a clickable tel: link) */
|
|
518
519
|
phone?: string;
|
|
520
|
+
phone2?: string;
|
|
519
521
|
}
|
|
520
522
|
interface ManagedContactBlockProps {
|
|
521
523
|
/** The small tracking text above the main title */
|
|
@@ -642,7 +644,7 @@ interface TextInputProps {
|
|
|
642
644
|
maxLength?: number;
|
|
643
645
|
disabled?: boolean;
|
|
644
646
|
readOnly?: boolean;
|
|
645
|
-
type?: 'text' | 'password' | 'email' | 'url';
|
|
647
|
+
type?: 'text' | 'password' | 'email' | 'url' | 'tel';
|
|
646
648
|
onClick?: (e: React.MouseEvent<HTMLDivElement>) => void;
|
|
647
649
|
}
|
|
648
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;
|
|
@@ -516,6 +517,7 @@ interface CompanyDetails {
|
|
|
516
517
|
lines?: string[];
|
|
517
518
|
/** Phone number (automatically formats into a clickable tel: link) */
|
|
518
519
|
phone?: string;
|
|
520
|
+
phone2?: string;
|
|
519
521
|
}
|
|
520
522
|
interface ManagedContactBlockProps {
|
|
521
523
|
/** The small tracking text above the main title */
|
|
@@ -642,7 +644,7 @@ interface TextInputProps {
|
|
|
642
644
|
maxLength?: number;
|
|
643
645
|
disabled?: boolean;
|
|
644
646
|
readOnly?: boolean;
|
|
645
|
-
type?: 'text' | 'password' | 'email' | 'url';
|
|
647
|
+
type?: 'text' | 'password' | 'email' | 'url' | 'tel';
|
|
646
648
|
onClick?: (e: React.MouseEvent<HTMLDivElement>) => void;
|
|
647
649
|
}
|
|
648
650
|
interface NumberInputProps {
|