@dynamic-labs/sdk-api 0.0.364 → 0.0.365
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/package.json
CHANGED
|
@@ -16,6 +16,7 @@ function SupportedSecurityMethodsFromJSONTyped(json, ignoreDiscriminator) {
|
|
|
16
16
|
return {
|
|
17
17
|
'passkey': !runtime.exists(json, 'passkey') ? undefined : SupportedSecurityMethod.SupportedSecurityMethodFromJSON(json['passkey']),
|
|
18
18
|
'email': !runtime.exists(json, 'email') ? undefined : SupportedSecurityMethod.SupportedSecurityMethodFromJSON(json['email']),
|
|
19
|
+
'password': !runtime.exists(json, 'password') ? undefined : SupportedSecurityMethod.SupportedSecurityMethodFromJSON(json['password']),
|
|
19
20
|
};
|
|
20
21
|
}
|
|
21
22
|
function SupportedSecurityMethodsToJSON(value) {
|
|
@@ -28,6 +29,7 @@ function SupportedSecurityMethodsToJSON(value) {
|
|
|
28
29
|
return {
|
|
29
30
|
'passkey': SupportedSecurityMethod.SupportedSecurityMethodToJSON(value.passkey),
|
|
30
31
|
'email': SupportedSecurityMethod.SupportedSecurityMethodToJSON(value.email),
|
|
32
|
+
'password': SupportedSecurityMethod.SupportedSecurityMethodToJSON(value.password),
|
|
31
33
|
};
|
|
32
34
|
}
|
|
33
35
|
|
|
@@ -28,6 +28,12 @@ export interface SupportedSecurityMethods {
|
|
|
28
28
|
* @memberof SupportedSecurityMethods
|
|
29
29
|
*/
|
|
30
30
|
email?: SupportedSecurityMethod;
|
|
31
|
+
/**
|
|
32
|
+
*
|
|
33
|
+
* @type {SupportedSecurityMethod}
|
|
34
|
+
* @memberof SupportedSecurityMethods
|
|
35
|
+
*/
|
|
36
|
+
password?: SupportedSecurityMethod;
|
|
31
37
|
}
|
|
32
38
|
export declare function SupportedSecurityMethodsFromJSON(json: any): SupportedSecurityMethods;
|
|
33
39
|
export declare function SupportedSecurityMethodsFromJSONTyped(json: any, ignoreDiscriminator: boolean): SupportedSecurityMethods;
|
|
@@ -12,6 +12,7 @@ function SupportedSecurityMethodsFromJSONTyped(json, ignoreDiscriminator) {
|
|
|
12
12
|
return {
|
|
13
13
|
'passkey': !exists(json, 'passkey') ? undefined : SupportedSecurityMethodFromJSON(json['passkey']),
|
|
14
14
|
'email': !exists(json, 'email') ? undefined : SupportedSecurityMethodFromJSON(json['email']),
|
|
15
|
+
'password': !exists(json, 'password') ? undefined : SupportedSecurityMethodFromJSON(json['password']),
|
|
15
16
|
};
|
|
16
17
|
}
|
|
17
18
|
function SupportedSecurityMethodsToJSON(value) {
|
|
@@ -24,6 +25,7 @@ function SupportedSecurityMethodsToJSON(value) {
|
|
|
24
25
|
return {
|
|
25
26
|
'passkey': SupportedSecurityMethodToJSON(value.passkey),
|
|
26
27
|
'email': SupportedSecurityMethodToJSON(value.email),
|
|
28
|
+
'password': SupportedSecurityMethodToJSON(value.password),
|
|
27
29
|
};
|
|
28
30
|
}
|
|
29
31
|
|