@parra/parra-js-sdk 0.3.150 → 0.3.152
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 +6 -5
- package/package.json +1 -1
package/dist/ParraAPI.d.ts
CHANGED
|
@@ -1537,11 +1537,11 @@ export interface PasskeysConfig {
|
|
|
1537
1537
|
allow_local_enrollment: boolean;
|
|
1538
1538
|
}
|
|
1539
1539
|
export interface AuthDatabaseConnection {
|
|
1540
|
-
password
|
|
1541
|
-
username
|
|
1542
|
-
email
|
|
1543
|
-
phone_number
|
|
1544
|
-
passkeys
|
|
1540
|
+
password: PasswordConfig;
|
|
1541
|
+
username: UsernameConfig;
|
|
1542
|
+
email: EmailConfig;
|
|
1543
|
+
phone_number: PhoneNumberConfig;
|
|
1544
|
+
passkeys: PasskeysConfig;
|
|
1545
1545
|
}
|
|
1546
1546
|
export interface UpdateAuthDatabaseConnection {
|
|
1547
1547
|
disabled?: boolean;
|
|
@@ -1767,6 +1767,7 @@ export declare enum DomainType {
|
|
|
1767
1767
|
export interface Domain {
|
|
1768
1768
|
id: string;
|
|
1769
1769
|
type: DomainType;
|
|
1770
|
+
name: string;
|
|
1770
1771
|
title: string;
|
|
1771
1772
|
url: string;
|
|
1772
1773
|
}
|