@dynamic-labs/sdk-api-core 0.0.687 → 0.0.689

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.
Files changed (37) hide show
  1. package/package.json +1 -1
  2. package/src/apis/SDKApi.cjs +174 -0
  3. package/src/apis/SDKApi.d.ts +60 -1
  4. package/src/apis/SDKApi.js +174 -0
  5. package/src/index.cjs +40 -0
  6. package/src/index.js +8 -0
  7. package/src/models/BackupKeySharesToLocationRequest.cjs +33 -0
  8. package/src/models/BackupKeySharesToLocationRequest.d.ts +28 -0
  9. package/src/models/BackupKeySharesToLocationRequest.js +27 -0
  10. package/src/models/BackupKeySharesToLocationResponse.cjs +37 -0
  11. package/src/models/BackupKeySharesToLocationResponse.d.ts +40 -0
  12. package/src/models/BackupKeySharesToLocationResponse.js +31 -0
  13. package/src/models/GetPasskeyRegistrationOptionsResponse.cjs +58 -0
  14. package/src/models/GetPasskeyRegistrationOptionsResponse.d.ts +88 -0
  15. package/src/models/GetPasskeyRegistrationOptionsResponse.js +52 -0
  16. package/src/models/PasskeyExcludeCredential.cjs +46 -0
  17. package/src/models/PasskeyExcludeCredential.d.ts +47 -0
  18. package/src/models/PasskeyExcludeCredential.js +40 -0
  19. package/src/models/PasskeyExtension.cjs +39 -0
  20. package/src/models/PasskeyExtension.d.ts +45 -0
  21. package/src/models/PasskeyExtension.js +33 -0
  22. package/src/models/PasskeyRegistrationCredential.cjs +3 -0
  23. package/src/models/PasskeyRegistrationCredential.d.ts +6 -0
  24. package/src/models/PasskeyRegistrationCredential.js +3 -0
  25. package/src/models/PasskeyRelyingParty.cjs +45 -0
  26. package/src/models/PasskeyRelyingParty.d.ts +33 -0
  27. package/src/models/PasskeyRelyingParty.js +39 -0
  28. package/src/models/PasskeyTransport.cjs +42 -0
  29. package/src/models/PasskeyTransport.d.ts +25 -0
  30. package/src/models/PasskeyTransport.js +36 -0
  31. package/src/models/PasskeyUser.cjs +47 -0
  32. package/src/models/PasskeyUser.d.ts +39 -0
  33. package/src/models/PasskeyUser.js +41 -0
  34. package/src/models/WaasBackupOptionsEnum.cjs +1 -0
  35. package/src/models/WaasBackupOptionsEnum.d.ts +2 -1
  36. package/src/models/WaasBackupOptionsEnum.js +1 -0
  37. package/src/models/index.d.ts +8 -0
@@ -0,0 +1,40 @@
1
+ import { exists } from '../runtime.js';
2
+ import { PasskeyTransportFromJSON, PasskeyTransportToJSON } from './PasskeyTransport.js';
3
+
4
+ /* tslint:disable */
5
+ /**
6
+ * @export
7
+ * @enum {string}
8
+ */
9
+ var PasskeyExcludeCredentialTypeEnum;
10
+ (function (PasskeyExcludeCredentialTypeEnum) {
11
+ PasskeyExcludeCredentialTypeEnum["PublicKey"] = "public-key";
12
+ })(PasskeyExcludeCredentialTypeEnum || (PasskeyExcludeCredentialTypeEnum = {}));
13
+ function PasskeyExcludeCredentialFromJSON(json) {
14
+ return PasskeyExcludeCredentialFromJSONTyped(json);
15
+ }
16
+ function PasskeyExcludeCredentialFromJSONTyped(json, ignoreDiscriminator) {
17
+ if ((json === undefined) || (json === null)) {
18
+ return json;
19
+ }
20
+ return {
21
+ 'id': json['id'],
22
+ 'transports': !exists(json, 'transports') ? undefined : (json['transports'].map(PasskeyTransportFromJSON)),
23
+ 'type': json['type'],
24
+ };
25
+ }
26
+ function PasskeyExcludeCredentialToJSON(value) {
27
+ if (value === undefined) {
28
+ return undefined;
29
+ }
30
+ if (value === null) {
31
+ return null;
32
+ }
33
+ return {
34
+ 'id': value.id,
35
+ 'transports': value.transports === undefined ? undefined : (value.transports.map(PasskeyTransportToJSON)),
36
+ 'type': value.type,
37
+ };
38
+ }
39
+
40
+ export { PasskeyExcludeCredentialFromJSON, PasskeyExcludeCredentialFromJSONTyped, PasskeyExcludeCredentialToJSON, PasskeyExcludeCredentialTypeEnum };
@@ -0,0 +1,39 @@
1
+ 'use strict';
2
+
3
+ Object.defineProperty(exports, '__esModule', { value: true });
4
+
5
+ var runtime = require('../runtime.cjs');
6
+
7
+ /* tslint:disable */
8
+ function PasskeyExtensionFromJSON(json) {
9
+ return PasskeyExtensionFromJSONTyped(json);
10
+ }
11
+ function PasskeyExtensionFromJSONTyped(json, ignoreDiscriminator) {
12
+ if ((json === undefined) || (json === null)) {
13
+ return json;
14
+ }
15
+ return {
16
+ 'appid': !runtime.exists(json, 'appid') ? undefined : json['appid'],
17
+ 'appidExclude': !runtime.exists(json, 'appidExclude') ? undefined : json['appidExclude'],
18
+ 'credProps': !runtime.exists(json, 'credProps') ? undefined : json['credProps'],
19
+ 'uvm': !runtime.exists(json, 'uvm') ? undefined : json['uvm'],
20
+ };
21
+ }
22
+ function PasskeyExtensionToJSON(value) {
23
+ if (value === undefined) {
24
+ return undefined;
25
+ }
26
+ if (value === null) {
27
+ return null;
28
+ }
29
+ return {
30
+ 'appid': value.appid,
31
+ 'appidExclude': value.appidExclude,
32
+ 'credProps': value.credProps,
33
+ 'uvm': value.uvm,
34
+ };
35
+ }
36
+
37
+ exports.PasskeyExtensionFromJSON = PasskeyExtensionFromJSON;
38
+ exports.PasskeyExtensionFromJSONTyped = PasskeyExtensionFromJSONTyped;
39
+ exports.PasskeyExtensionToJSON = PasskeyExtensionToJSON;
@@ -0,0 +1,45 @@
1
+ /**
2
+ * Dashboard API
3
+ * Dashboard API documentation
4
+ *
5
+ * The version of the OpenAPI document: 1.0.0
6
+ *
7
+ *
8
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
9
+ * https://openapi-generator.tech
10
+ * Do not edit the class manually.
11
+ */
12
+ /**
13
+ *
14
+ * @export
15
+ * @interface PasskeyExtension
16
+ */
17
+ export interface PasskeyExtension {
18
+ /**
19
+ * FIDO AppID
20
+ * @type {string}
21
+ * @memberof PasskeyExtension
22
+ */
23
+ appid?: string;
24
+ /**
25
+ * FIDO AppID exclusion
26
+ * @type {string}
27
+ * @memberof PasskeyExtension
28
+ */
29
+ appidExclude?: string;
30
+ /**
31
+ * Request credential properties
32
+ * @type {boolean}
33
+ * @memberof PasskeyExtension
34
+ */
35
+ credProps?: boolean;
36
+ /**
37
+ * Request user verification method
38
+ * @type {boolean}
39
+ * @memberof PasskeyExtension
40
+ */
41
+ uvm?: boolean;
42
+ }
43
+ export declare function PasskeyExtensionFromJSON(json: any): PasskeyExtension;
44
+ export declare function PasskeyExtensionFromJSONTyped(json: any, ignoreDiscriminator: boolean): PasskeyExtension;
45
+ export declare function PasskeyExtensionToJSON(value?: PasskeyExtension | null): any;
@@ -0,0 +1,33 @@
1
+ import { exists } from '../runtime.js';
2
+
3
+ /* tslint:disable */
4
+ function PasskeyExtensionFromJSON(json) {
5
+ return PasskeyExtensionFromJSONTyped(json);
6
+ }
7
+ function PasskeyExtensionFromJSONTyped(json, ignoreDiscriminator) {
8
+ if ((json === undefined) || (json === null)) {
9
+ return json;
10
+ }
11
+ return {
12
+ 'appid': !exists(json, 'appid') ? undefined : json['appid'],
13
+ 'appidExclude': !exists(json, 'appidExclude') ? undefined : json['appidExclude'],
14
+ 'credProps': !exists(json, 'credProps') ? undefined : json['credProps'],
15
+ 'uvm': !exists(json, 'uvm') ? undefined : json['uvm'],
16
+ };
17
+ }
18
+ function PasskeyExtensionToJSON(value) {
19
+ if (value === undefined) {
20
+ return undefined;
21
+ }
22
+ if (value === null) {
23
+ return null;
24
+ }
25
+ return {
26
+ 'appid': value.appid,
27
+ 'appidExclude': value.appidExclude,
28
+ 'credProps': value.credProps,
29
+ 'uvm': value.uvm,
30
+ };
31
+ }
32
+
33
+ export { PasskeyExtensionFromJSON, PasskeyExtensionFromJSONTyped, PasskeyExtensionToJSON };
@@ -2,6 +2,7 @@
2
2
 
3
3
  Object.defineProperty(exports, '__esModule', { value: true });
4
4
 
5
+ var runtime = require('../runtime.cjs');
5
6
  var AuthenticatorTransportProtocol = require('./AuthenticatorTransportProtocol.cjs');
6
7
 
7
8
  /* tslint:disable */
@@ -17,6 +18,7 @@ function PasskeyRegistrationCredentialFromJSONTyped(json, ignoreDiscriminator) {
17
18
  'clientDataJson': json['clientDataJson'],
18
19
  'credentialId': json['credentialId'],
19
20
  'transports': (json['transports'].map(AuthenticatorTransportProtocol.AuthenticatorTransportProtocolFromJSON)),
21
+ 'publicKey': !runtime.exists(json, 'publicKey') ? undefined : json['publicKey'],
20
22
  };
21
23
  }
22
24
  function PasskeyRegistrationCredentialToJSON(value) {
@@ -31,6 +33,7 @@ function PasskeyRegistrationCredentialToJSON(value) {
31
33
  'clientDataJson': value.clientDataJson,
32
34
  'credentialId': value.credentialId,
33
35
  'transports': (value.transports.map(AuthenticatorTransportProtocol.AuthenticatorTransportProtocolToJSON)),
36
+ 'publicKey': value.publicKey,
34
37
  };
35
38
  }
36
39
 
@@ -40,6 +40,12 @@ export interface PasskeyRegistrationCredential {
40
40
  * @memberof PasskeyRegistrationCredential
41
41
  */
42
42
  transports: Array<AuthenticatorTransportProtocol>;
43
+ /**
44
+ *
45
+ * @type {string}
46
+ * @memberof PasskeyRegistrationCredential
47
+ */
48
+ publicKey?: string;
43
49
  }
44
50
  export declare function PasskeyRegistrationCredentialFromJSON(json: any): PasskeyRegistrationCredential;
45
51
  export declare function PasskeyRegistrationCredentialFromJSONTyped(json: any, ignoreDiscriminator: boolean): PasskeyRegistrationCredential;
@@ -1,3 +1,4 @@
1
+ import { exists } from '../runtime.js';
1
2
  import { AuthenticatorTransportProtocolFromJSON, AuthenticatorTransportProtocolToJSON } from './AuthenticatorTransportProtocol.js';
2
3
 
3
4
  /* tslint:disable */
@@ -13,6 +14,7 @@ function PasskeyRegistrationCredentialFromJSONTyped(json, ignoreDiscriminator) {
13
14
  'clientDataJson': json['clientDataJson'],
14
15
  'credentialId': json['credentialId'],
15
16
  'transports': (json['transports'].map(AuthenticatorTransportProtocolFromJSON)),
17
+ 'publicKey': !exists(json, 'publicKey') ? undefined : json['publicKey'],
16
18
  };
17
19
  }
18
20
  function PasskeyRegistrationCredentialToJSON(value) {
@@ -27,6 +29,7 @@ function PasskeyRegistrationCredentialToJSON(value) {
27
29
  'clientDataJson': value.clientDataJson,
28
30
  'credentialId': value.credentialId,
29
31
  'transports': (value.transports.map(AuthenticatorTransportProtocolToJSON)),
32
+ 'publicKey': value.publicKey,
30
33
  };
31
34
  }
32
35
 
@@ -0,0 +1,45 @@
1
+ 'use strict';
2
+
3
+ Object.defineProperty(exports, '__esModule', { value: true });
4
+
5
+ /* tslint:disable */
6
+ /* eslint-disable */
7
+ /**
8
+ * Dashboard API
9
+ * Dashboard API documentation
10
+ *
11
+ * The version of the OpenAPI document: 1.0.0
12
+ *
13
+ *
14
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
15
+ * https://openapi-generator.tech
16
+ * Do not edit the class manually.
17
+ */
18
+ function PasskeyRelyingPartyFromJSON(json) {
19
+ return PasskeyRelyingPartyFromJSONTyped(json);
20
+ }
21
+ function PasskeyRelyingPartyFromJSONTyped(json, ignoreDiscriminator) {
22
+ if ((json === undefined) || (json === null)) {
23
+ return json;
24
+ }
25
+ return {
26
+ 'id': json['id'],
27
+ 'name': json['name'],
28
+ };
29
+ }
30
+ function PasskeyRelyingPartyToJSON(value) {
31
+ if (value === undefined) {
32
+ return undefined;
33
+ }
34
+ if (value === null) {
35
+ return null;
36
+ }
37
+ return {
38
+ 'id': value.id,
39
+ 'name': value.name,
40
+ };
41
+ }
42
+
43
+ exports.PasskeyRelyingPartyFromJSON = PasskeyRelyingPartyFromJSON;
44
+ exports.PasskeyRelyingPartyFromJSONTyped = PasskeyRelyingPartyFromJSONTyped;
45
+ exports.PasskeyRelyingPartyToJSON = PasskeyRelyingPartyToJSON;
@@ -0,0 +1,33 @@
1
+ /**
2
+ * Dashboard API
3
+ * Dashboard API documentation
4
+ *
5
+ * The version of the OpenAPI document: 1.0.0
6
+ *
7
+ *
8
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
9
+ * https://openapi-generator.tech
10
+ * Do not edit the class manually.
11
+ */
12
+ /**
13
+ *
14
+ * @export
15
+ * @interface PasskeyRelyingParty
16
+ */
17
+ export interface PasskeyRelyingParty {
18
+ /**
19
+ * Relying Party ID (domain)
20
+ * @type {string}
21
+ * @memberof PasskeyRelyingParty
22
+ */
23
+ id: string;
24
+ /**
25
+ * Human-readable name of the Relying Party
26
+ * @type {string}
27
+ * @memberof PasskeyRelyingParty
28
+ */
29
+ name: string;
30
+ }
31
+ export declare function PasskeyRelyingPartyFromJSON(json: any): PasskeyRelyingParty;
32
+ export declare function PasskeyRelyingPartyFromJSONTyped(json: any, ignoreDiscriminator: boolean): PasskeyRelyingParty;
33
+ export declare function PasskeyRelyingPartyToJSON(value?: PasskeyRelyingParty | null): any;
@@ -0,0 +1,39 @@
1
+ /* tslint:disable */
2
+ /* eslint-disable */
3
+ /**
4
+ * Dashboard API
5
+ * Dashboard API documentation
6
+ *
7
+ * The version of the OpenAPI document: 1.0.0
8
+ *
9
+ *
10
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
11
+ * https://openapi-generator.tech
12
+ * Do not edit the class manually.
13
+ */
14
+ function PasskeyRelyingPartyFromJSON(json) {
15
+ return PasskeyRelyingPartyFromJSONTyped(json);
16
+ }
17
+ function PasskeyRelyingPartyFromJSONTyped(json, ignoreDiscriminator) {
18
+ if ((json === undefined) || (json === null)) {
19
+ return json;
20
+ }
21
+ return {
22
+ 'id': json['id'],
23
+ 'name': json['name'],
24
+ };
25
+ }
26
+ function PasskeyRelyingPartyToJSON(value) {
27
+ if (value === undefined) {
28
+ return undefined;
29
+ }
30
+ if (value === null) {
31
+ return null;
32
+ }
33
+ return {
34
+ 'id': value.id,
35
+ 'name': value.name,
36
+ };
37
+ }
38
+
39
+ export { PasskeyRelyingPartyFromJSON, PasskeyRelyingPartyFromJSONTyped, PasskeyRelyingPartyToJSON };
@@ -0,0 +1,42 @@
1
+ 'use strict';
2
+
3
+ Object.defineProperty(exports, '__esModule', { value: true });
4
+
5
+ /* tslint:disable */
6
+ /* eslint-disable */
7
+ /**
8
+ * Dashboard API
9
+ * Dashboard API documentation
10
+ *
11
+ * The version of the OpenAPI document: 1.0.0
12
+ *
13
+ *
14
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
15
+ * https://openapi-generator.tech
16
+ * Do not edit the class manually.
17
+ */
18
+ /**
19
+ *
20
+ * @export
21
+ * @enum {string}
22
+ */
23
+ exports.PasskeyTransport = void 0;
24
+ (function (PasskeyTransport) {
25
+ PasskeyTransport["Usb"] = "usb";
26
+ PasskeyTransport["Nfc"] = "nfc";
27
+ PasskeyTransport["Ble"] = "ble";
28
+ PasskeyTransport["Internal"] = "internal";
29
+ })(exports.PasskeyTransport || (exports.PasskeyTransport = {}));
30
+ function PasskeyTransportFromJSON(json) {
31
+ return PasskeyTransportFromJSONTyped(json);
32
+ }
33
+ function PasskeyTransportFromJSONTyped(json, ignoreDiscriminator) {
34
+ return json;
35
+ }
36
+ function PasskeyTransportToJSON(value) {
37
+ return value;
38
+ }
39
+
40
+ exports.PasskeyTransportFromJSON = PasskeyTransportFromJSON;
41
+ exports.PasskeyTransportFromJSONTyped = PasskeyTransportFromJSONTyped;
42
+ exports.PasskeyTransportToJSON = PasskeyTransportToJSON;
@@ -0,0 +1,25 @@
1
+ /**
2
+ * Dashboard API
3
+ * Dashboard API documentation
4
+ *
5
+ * The version of the OpenAPI document: 1.0.0
6
+ *
7
+ *
8
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
9
+ * https://openapi-generator.tech
10
+ * Do not edit the class manually.
11
+ */
12
+ /**
13
+ *
14
+ * @export
15
+ * @enum {string}
16
+ */
17
+ export declare enum PasskeyTransport {
18
+ Usb = "usb",
19
+ Nfc = "nfc",
20
+ Ble = "ble",
21
+ Internal = "internal"
22
+ }
23
+ export declare function PasskeyTransportFromJSON(json: any): PasskeyTransport;
24
+ export declare function PasskeyTransportFromJSONTyped(json: any, ignoreDiscriminator: boolean): PasskeyTransport;
25
+ export declare function PasskeyTransportToJSON(value?: PasskeyTransport | null): any;
@@ -0,0 +1,36 @@
1
+ /* tslint:disable */
2
+ /* eslint-disable */
3
+ /**
4
+ * Dashboard API
5
+ * Dashboard API documentation
6
+ *
7
+ * The version of the OpenAPI document: 1.0.0
8
+ *
9
+ *
10
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
11
+ * https://openapi-generator.tech
12
+ * Do not edit the class manually.
13
+ */
14
+ /**
15
+ *
16
+ * @export
17
+ * @enum {string}
18
+ */
19
+ var PasskeyTransport;
20
+ (function (PasskeyTransport) {
21
+ PasskeyTransport["Usb"] = "usb";
22
+ PasskeyTransport["Nfc"] = "nfc";
23
+ PasskeyTransport["Ble"] = "ble";
24
+ PasskeyTransport["Internal"] = "internal";
25
+ })(PasskeyTransport || (PasskeyTransport = {}));
26
+ function PasskeyTransportFromJSON(json) {
27
+ return PasskeyTransportFromJSONTyped(json);
28
+ }
29
+ function PasskeyTransportFromJSONTyped(json, ignoreDiscriminator) {
30
+ return json;
31
+ }
32
+ function PasskeyTransportToJSON(value) {
33
+ return value;
34
+ }
35
+
36
+ export { PasskeyTransport, PasskeyTransportFromJSON, PasskeyTransportFromJSONTyped, PasskeyTransportToJSON };
@@ -0,0 +1,47 @@
1
+ 'use strict';
2
+
3
+ Object.defineProperty(exports, '__esModule', { value: true });
4
+
5
+ /* tslint:disable */
6
+ /* eslint-disable */
7
+ /**
8
+ * Dashboard API
9
+ * Dashboard API documentation
10
+ *
11
+ * The version of the OpenAPI document: 1.0.0
12
+ *
13
+ *
14
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
15
+ * https://openapi-generator.tech
16
+ * Do not edit the class manually.
17
+ */
18
+ function PasskeyUserFromJSON(json) {
19
+ return PasskeyUserFromJSONTyped(json);
20
+ }
21
+ function PasskeyUserFromJSONTyped(json, ignoreDiscriminator) {
22
+ if ((json === undefined) || (json === null)) {
23
+ return json;
24
+ }
25
+ return {
26
+ 'displayName': json['displayName'],
27
+ 'id': json['id'],
28
+ 'name': json['name'],
29
+ };
30
+ }
31
+ function PasskeyUserToJSON(value) {
32
+ if (value === undefined) {
33
+ return undefined;
34
+ }
35
+ if (value === null) {
36
+ return null;
37
+ }
38
+ return {
39
+ 'displayName': value.displayName,
40
+ 'id': value.id,
41
+ 'name': value.name,
42
+ };
43
+ }
44
+
45
+ exports.PasskeyUserFromJSON = PasskeyUserFromJSON;
46
+ exports.PasskeyUserFromJSONTyped = PasskeyUserFromJSONTyped;
47
+ exports.PasskeyUserToJSON = PasskeyUserToJSON;
@@ -0,0 +1,39 @@
1
+ /**
2
+ * Dashboard API
3
+ * Dashboard API documentation
4
+ *
5
+ * The version of the OpenAPI document: 1.0.0
6
+ *
7
+ *
8
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
9
+ * https://openapi-generator.tech
10
+ * Do not edit the class manually.
11
+ */
12
+ /**
13
+ *
14
+ * @export
15
+ * @interface PasskeyUser
16
+ */
17
+ export interface PasskeyUser {
18
+ /**
19
+ * User's display name
20
+ * @type {string}
21
+ * @memberof PasskeyUser
22
+ */
23
+ displayName: string;
24
+ /**
25
+ * Base64URL encoded user ID
26
+ * @type {string}
27
+ * @memberof PasskeyUser
28
+ */
29
+ id: string;
30
+ /**
31
+ * User's email or username
32
+ * @type {string}
33
+ * @memberof PasskeyUser
34
+ */
35
+ name: string;
36
+ }
37
+ export declare function PasskeyUserFromJSON(json: any): PasskeyUser;
38
+ export declare function PasskeyUserFromJSONTyped(json: any, ignoreDiscriminator: boolean): PasskeyUser;
39
+ export declare function PasskeyUserToJSON(value?: PasskeyUser | null): any;
@@ -0,0 +1,41 @@
1
+ /* tslint:disable */
2
+ /* eslint-disable */
3
+ /**
4
+ * Dashboard API
5
+ * Dashboard API documentation
6
+ *
7
+ * The version of the OpenAPI document: 1.0.0
8
+ *
9
+ *
10
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
11
+ * https://openapi-generator.tech
12
+ * Do not edit the class manually.
13
+ */
14
+ function PasskeyUserFromJSON(json) {
15
+ return PasskeyUserFromJSONTyped(json);
16
+ }
17
+ function PasskeyUserFromJSONTyped(json, ignoreDiscriminator) {
18
+ if ((json === undefined) || (json === null)) {
19
+ return json;
20
+ }
21
+ return {
22
+ 'displayName': json['displayName'],
23
+ 'id': json['id'],
24
+ 'name': json['name'],
25
+ };
26
+ }
27
+ function PasskeyUserToJSON(value) {
28
+ if (value === undefined) {
29
+ return undefined;
30
+ }
31
+ if (value === null) {
32
+ return null;
33
+ }
34
+ return {
35
+ 'displayName': value.displayName,
36
+ 'id': value.id,
37
+ 'name': value.name,
38
+ };
39
+ }
40
+
41
+ export { PasskeyUserFromJSON, PasskeyUserFromJSONTyped, PasskeyUserToJSON };
@@ -24,6 +24,7 @@ exports.WaasBackupOptionsEnum = void 0;
24
24
  (function (WaasBackupOptionsEnum) {
25
25
  WaasBackupOptionsEnum["GoogleDrive"] = "googleDrive";
26
26
  WaasBackupOptionsEnum["Icloud"] = "icloud";
27
+ WaasBackupOptionsEnum["Dynamic"] = "dynamic";
27
28
  })(exports.WaasBackupOptionsEnum || (exports.WaasBackupOptionsEnum = {}));
28
29
  function WaasBackupOptionsEnumFromJSON(json) {
29
30
  return WaasBackupOptionsEnumFromJSONTyped(json);
@@ -16,7 +16,8 @@
16
16
  */
17
17
  export declare enum WaasBackupOptionsEnum {
18
18
  GoogleDrive = "googleDrive",
19
- Icloud = "icloud"
19
+ Icloud = "icloud",
20
+ Dynamic = "dynamic"
20
21
  }
21
22
  export declare function WaasBackupOptionsEnumFromJSON(json: any): WaasBackupOptionsEnum;
22
23
  export declare function WaasBackupOptionsEnumFromJSONTyped(json: any, ignoreDiscriminator: boolean): WaasBackupOptionsEnum;
@@ -20,6 +20,7 @@ var WaasBackupOptionsEnum;
20
20
  (function (WaasBackupOptionsEnum) {
21
21
  WaasBackupOptionsEnum["GoogleDrive"] = "googleDrive";
22
22
  WaasBackupOptionsEnum["Icloud"] = "icloud";
23
+ WaasBackupOptionsEnum["Dynamic"] = "dynamic";
23
24
  })(WaasBackupOptionsEnum || (WaasBackupOptionsEnum = {}));
24
25
  function WaasBackupOptionsEnumFromJSON(json) {
25
26
  return WaasBackupOptionsEnumFromJSONTyped(json);
@@ -16,6 +16,8 @@ export * from './AuthenticatorAttachment';
16
16
  export * from './AuthenticatorAttestationResponse';
17
17
  export * from './AuthenticatorSelectionCriteria';
18
18
  export * from './AuthenticatorTransportProtocol';
19
+ export * from './BackupKeySharesToLocationRequest';
20
+ export * from './BackupKeySharesToLocationResponse';
19
21
  export * from './BackupMultipleClientKeySharesRequest';
20
22
  export * from './BackupMultipleClientKeySharesResponse';
21
23
  export * from './BadGateway';
@@ -83,6 +85,7 @@ export * from './Funding';
83
85
  export * from './FundingExternalWallets';
84
86
  export * from './FundingExternalWalletsDefaultSettings';
85
87
  export * from './FundingExternalWalletsMinAmount';
88
+ export * from './GetPasskeyRegistrationOptionsResponse';
86
89
  export * from './GetUserPasskeysResponse';
87
90
  export * from './GlobalWalletAccessControlTypeEnum';
88
91
  export * from './GlobalWalletSettings';
@@ -158,9 +161,14 @@ export * from './OpenRoomResponse';
158
161
  export * from './OpenRoomResponseForReshare';
159
162
  export * from './OpenRoomResponseWithServerKeygenIds';
160
163
  export * from './PasskeyAuthRequest';
164
+ export * from './PasskeyExcludeCredential';
165
+ export * from './PasskeyExtension';
161
166
  export * from './PasskeyRegisterVerifyRequest';
162
167
  export * from './PasskeyRegistrationCredential';
168
+ export * from './PasskeyRelyingParty';
163
169
  export * from './PasskeyStorage';
170
+ export * from './PasskeyTransport';
171
+ export * from './PasskeyUser';
164
172
  export * from './PasswordSourceTypeEnum';
165
173
  export * from './PrefetchRequest';
166
174
  export * from './PriceData';