@asgardeo/javascript 0.2.14 → 0.2.15
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/cjs/index.js +2 -0
- package/dist/cjs/index.js.map +2 -2
- package/dist/index.js +2 -0
- package/dist/index.js.map +2 -2
- package/dist/models/v2/embedded-flow-v2.d.ts +4 -0
- package/package.json +1 -1
|
@@ -42,6 +42,10 @@ export declare enum EmbeddedFlowComponentType {
|
|
|
42
42
|
PasswordInput = "PASSWORD_INPUT",
|
|
43
43
|
/** Email input field with validation for email addresses. */
|
|
44
44
|
EmailInput = "EMAIL_INPUT",
|
|
45
|
+
/** One-time password input field for multi-factor authentication */
|
|
46
|
+
OtpInput = "OTP_INPUT",
|
|
47
|
+
/** Phone number input field with country code support */
|
|
48
|
+
PhoneInput = "PHONE_INPUT",
|
|
45
49
|
/** Text display component for labels, headings, and messages */
|
|
46
50
|
Text = "TEXT",
|
|
47
51
|
/** Interactive action component (buttons, links) for user interactions */
|