@parra/parra-js-sdk 0.3.189 → 0.3.191
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/ParraAPI.d.ts +8 -1
- package/package.json +1 -1
package/dist/ParraAPI.d.ts
CHANGED
|
@@ -1573,6 +1573,7 @@ export interface ExternalDomain {
|
|
|
1573
1573
|
configured: boolean;
|
|
1574
1574
|
verification_error?: string | null;
|
|
1575
1575
|
verification?: Array<ExternalDomainVerificationChallenge> | null;
|
|
1576
|
+
tenant_id: string;
|
|
1576
1577
|
}
|
|
1577
1578
|
export interface UpdateExternalDomainRequestBody {
|
|
1578
1579
|
name?: string;
|
|
@@ -1598,6 +1599,8 @@ export interface PasswordConfig {
|
|
|
1598
1599
|
disabled: boolean;
|
|
1599
1600
|
password_reset_disabled: boolean;
|
|
1600
1601
|
password_reset_mail_template_id?: string | null;
|
|
1602
|
+
password_reset_connected_app_connection_id?: string | null;
|
|
1603
|
+
password_reset_sms_message?: string | null;
|
|
1601
1604
|
ios_password_rules_descriptor?: string | null;
|
|
1602
1605
|
rules: Array<PasswordRule>;
|
|
1603
1606
|
}
|
|
@@ -1609,6 +1612,7 @@ export interface UsernameConfig {
|
|
|
1609
1612
|
export interface EmailConfig {
|
|
1610
1613
|
disabled: boolean;
|
|
1611
1614
|
required: boolean;
|
|
1615
|
+
verification_disabled: boolean;
|
|
1612
1616
|
require_verification: boolean;
|
|
1613
1617
|
verification_mail_template_id?: string | null;
|
|
1614
1618
|
allow_signup: boolean;
|
|
@@ -1616,8 +1620,9 @@ export interface EmailConfig {
|
|
|
1616
1620
|
export interface PhoneNumberConfig {
|
|
1617
1621
|
disabled: boolean;
|
|
1618
1622
|
required: boolean;
|
|
1619
|
-
require_verification: boolean;
|
|
1620
1623
|
allow_signup: boolean;
|
|
1624
|
+
verification_disabled: boolean;
|
|
1625
|
+
require_verification: boolean;
|
|
1621
1626
|
verification_connected_app_connection_id?: string | null;
|
|
1622
1627
|
verification_sms_message?: string | null;
|
|
1623
1628
|
}
|
|
@@ -1644,11 +1649,13 @@ export interface UpdateAuthDatabaseConnection {
|
|
|
1644
1649
|
password_reset_mail_template_id?: string | null;
|
|
1645
1650
|
email_disabled?: boolean;
|
|
1646
1651
|
email_required?: boolean;
|
|
1652
|
+
email_verification_disabled?: boolean;
|
|
1647
1653
|
email_require_verification?: boolean;
|
|
1648
1654
|
email_verification_mail_template_id?: string | null;
|
|
1649
1655
|
email_allow_signup?: boolean;
|
|
1650
1656
|
phone_number_disabled?: boolean;
|
|
1651
1657
|
phone_number_required?: boolean;
|
|
1658
|
+
phone_number_verification_disabled?: boolean;
|
|
1652
1659
|
phone_number_require_verification?: boolean;
|
|
1653
1660
|
phone_number_verification_connected_app_connection_id?: string | null;
|
|
1654
1661
|
phone_number_verification_sms_message?: string | null;
|