@dynamic-labs/sdk-api 0.0.408 → 0.0.410

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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@dynamic-labs/sdk-api",
3
- "version": "0.0.408",
3
+ "version": "0.0.410",
4
4
  "author": "Dynamic Labs",
5
5
  "license": "Apache-2.0",
6
6
  "publishConfig": {
@@ -21,6 +21,7 @@ function CreateEmbeddedWalletParamsFromJSONTyped(json, ignoreDiscriminator) {
21
21
  'embeddedWalletProvider': EmbeddedWalletProviderEnum.EmbeddedWalletProviderEnumFromJSON(json['embeddedWalletProvider']),
22
22
  'embeddedWalletSpecificOpts': !runtime.exists(json, 'embeddedWalletSpecificOpts') ? undefined : CreateEmbeddedWalletSpecificOpts.CreateEmbeddedWalletSpecificOptsFromJSON(json['embeddedWalletSpecificOpts']),
23
23
  'isAuthenticatorAttached': !runtime.exists(json, 'isAuthenticatorAttached') ? undefined : json['isAuthenticatorAttached'],
24
+ 'passkeyAlias': !runtime.exists(json, 'passkeyAlias') ? undefined : json['passkeyAlias'],
24
25
  };
25
26
  }
26
27
  function CreateEmbeddedWalletParamsToJSON(value) {
@@ -36,6 +37,7 @@ function CreateEmbeddedWalletParamsToJSON(value) {
36
37
  'embeddedWalletProvider': EmbeddedWalletProviderEnum.EmbeddedWalletProviderEnumToJSON(value.embeddedWalletProvider),
37
38
  'embeddedWalletSpecificOpts': CreateEmbeddedWalletSpecificOpts.CreateEmbeddedWalletSpecificOptsToJSON(value.embeddedWalletSpecificOpts),
38
39
  'isAuthenticatorAttached': value.isAuthenticatorAttached,
40
+ 'passkeyAlias': value.passkeyAlias,
39
41
  };
40
42
  }
41
43
 
@@ -48,6 +48,12 @@ export interface CreateEmbeddedWalletParams {
48
48
  * @memberof CreateEmbeddedWalletParams
49
49
  */
50
50
  isAuthenticatorAttached?: boolean;
51
+ /**
52
+ * The alias for the passkey
53
+ * @type {string}
54
+ * @memberof CreateEmbeddedWalletParams
55
+ */
56
+ passkeyAlias?: string;
51
57
  }
52
58
  export declare function CreateEmbeddedWalletParamsFromJSON(json: any): CreateEmbeddedWalletParams;
53
59
  export declare function CreateEmbeddedWalletParamsFromJSONTyped(json: any, ignoreDiscriminator: boolean): CreateEmbeddedWalletParams;
@@ -17,6 +17,7 @@ function CreateEmbeddedWalletParamsFromJSONTyped(json, ignoreDiscriminator) {
17
17
  'embeddedWalletProvider': EmbeddedWalletProviderEnumFromJSON(json['embeddedWalletProvider']),
18
18
  'embeddedWalletSpecificOpts': !exists(json, 'embeddedWalletSpecificOpts') ? undefined : CreateEmbeddedWalletSpecificOptsFromJSON(json['embeddedWalletSpecificOpts']),
19
19
  'isAuthenticatorAttached': !exists(json, 'isAuthenticatorAttached') ? undefined : json['isAuthenticatorAttached'],
20
+ 'passkeyAlias': !exists(json, 'passkeyAlias') ? undefined : json['passkeyAlias'],
20
21
  };
21
22
  }
22
23
  function CreateEmbeddedWalletParamsToJSON(value) {
@@ -32,6 +33,7 @@ function CreateEmbeddedWalletParamsToJSON(value) {
32
33
  'embeddedWalletProvider': EmbeddedWalletProviderEnumToJSON(value.embeddedWalletProvider),
33
34
  'embeddedWalletSpecificOpts': CreateEmbeddedWalletSpecificOptsToJSON(value.embeddedWalletSpecificOpts),
34
35
  'isAuthenticatorAttached': value.isAuthenticatorAttached,
36
+ 'passkeyAlias': value.passkeyAlias,
35
37
  };
36
38
  }
37
39
 
@@ -1,27 +0,0 @@
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 CoinbaseResponse
16
- */
17
- export interface CoinbaseResponse {
18
- /**
19
- *
20
- * @type {string}
21
- * @memberof CoinbaseResponse
22
- */
23
- token: string;
24
- }
25
- export declare function CoinbaseResponseFromJSON(json: any): CoinbaseResponse;
26
- export declare function CoinbaseResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): CoinbaseResponse;
27
- export declare function CoinbaseResponseToJSON(value?: CoinbaseResponse | null): any;
@@ -1,27 +0,0 @@
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 EmbeddedWalletExportRequest
16
- */
17
- export interface EmbeddedWalletExportRequest {
18
- /**
19
- * The public key of the wallet that will be used to encrypt the exported wallet.
20
- * @type {string}
21
- * @memberof EmbeddedWalletExportRequest
22
- */
23
- targetPublicKey: string;
24
- }
25
- export declare function EmbeddedWalletExportRequestFromJSON(json: any): EmbeddedWalletExportRequest;
26
- export declare function EmbeddedWalletExportRequestFromJSONTyped(json: any, ignoreDiscriminator: boolean): EmbeddedWalletExportRequest;
27
- export declare function EmbeddedWalletExportRequestToJSON(value?: EmbeddedWalletExportRequest | null): any;
@@ -1,27 +0,0 @@
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 EmbeddedWalletExportResponse
16
- */
17
- export interface EmbeddedWalletExportResponse {
18
- /**
19
- *
20
- * @type {object}
21
- * @memberof EmbeddedWalletExportResponse
22
- */
23
- exportBundle: object;
24
- }
25
- export declare function EmbeddedWalletExportResponseFromJSON(json: any): EmbeddedWalletExportResponse;
26
- export declare function EmbeddedWalletExportResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): EmbeddedWalletExportResponse;
27
- export declare function EmbeddedWalletExportResponseToJSON(value?: EmbeddedWalletExportResponse | null): any;
@@ -1,33 +0,0 @@
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 EmbeddedWalletPasscode
16
- */
17
- export interface EmbeddedWalletPasscode {
18
- /**
19
- *
20
- * @type {string}
21
- * @memberof EmbeddedWalletPasscode
22
- */
23
- walletId: string;
24
- /**
25
- *
26
- * @type {string}
27
- * @memberof EmbeddedWalletPasscode
28
- */
29
- passcode: string;
30
- }
31
- export declare function EmbeddedWalletPasscodeFromJSON(json: any): EmbeddedWalletPasscode;
32
- export declare function EmbeddedWalletPasscodeFromJSONTyped(json: any, ignoreDiscriminator: boolean): EmbeddedWalletPasscode;
33
- export declare function EmbeddedWalletPasscodeToJSON(value?: EmbeddedWalletPasscode | null): any;
@@ -1,28 +0,0 @@
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
- import { EmbeddedWalletPasscode } from './EmbeddedWalletPasscode';
13
- /**
14
- *
15
- * @export
16
- * @interface EmbeddedWalletPasscodesResponse
17
- */
18
- export interface EmbeddedWalletPasscodesResponse {
19
- /**
20
- *
21
- * @type {Array<EmbeddedWalletPasscode>}
22
- * @memberof EmbeddedWalletPasscodesResponse
23
- */
24
- wallets: Array<EmbeddedWalletPasscode>;
25
- }
26
- export declare function EmbeddedWalletPasscodesResponseFromJSON(json: any): EmbeddedWalletPasscodesResponse;
27
- export declare function EmbeddedWalletPasscodesResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): EmbeddedWalletPasscodesResponse;
28
- export declare function EmbeddedWalletPasscodesResponseToJSON(value?: EmbeddedWalletPasscodesResponse | null): any;
@@ -1,40 +0,0 @@
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
- import { PasswordSourceTypeEnum } from './PasswordSourceTypeEnum';
13
- /**
14
- *
15
- * @export
16
- * @interface EmbeddedWalletSecretAllOf
17
- */
18
- export interface EmbeddedWalletSecretAllOf {
19
- /**
20
- *
21
- * @type {string}
22
- * @memberof EmbeddedWalletSecretAllOf
23
- */
24
- walletId: string;
25
- /**
26
- *
27
- * @type {string}
28
- * @memberof EmbeddedWalletSecretAllOf
29
- */
30
- secret: string;
31
- /**
32
- *
33
- * @type {PasswordSourceTypeEnum}
34
- * @memberof EmbeddedWalletSecretAllOf
35
- */
36
- source?: PasswordSourceTypeEnum;
37
- }
38
- export declare function EmbeddedWalletSecretAllOfFromJSON(json: any): EmbeddedWalletSecretAllOf;
39
- export declare function EmbeddedWalletSecretAllOfFromJSONTyped(json: any, ignoreDiscriminator: boolean): EmbeddedWalletSecretAllOf;
40
- export declare function EmbeddedWalletSecretAllOfToJSON(value?: EmbeddedWalletSecretAllOf | null): any;
@@ -1,27 +0,0 @@
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 ExportEmbeddedWalletRequest
16
- */
17
- export interface ExportEmbeddedWalletRequest {
18
- /**
19
- * The public key of the wallet that will be used to encrypt the exported wallet.
20
- * @type {string}
21
- * @memberof ExportEmbeddedWalletRequest
22
- */
23
- targetPublicKey: string;
24
- }
25
- export declare function ExportEmbeddedWalletRequestFromJSON(json: any): ExportEmbeddedWalletRequest;
26
- export declare function ExportEmbeddedWalletRequestFromJSONTyped(json: any, ignoreDiscriminator: boolean): ExportEmbeddedWalletRequest;
27
- export declare function ExportEmbeddedWalletRequestToJSON(value?: ExportEmbeddedWalletRequest | null): any;
@@ -1,33 +0,0 @@
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 ExportEmbeddedWalletsRequest
16
- */
17
- export interface ExportEmbeddedWalletsRequest {
18
- /**
19
- * Unique identifier for the wallet.
20
- * @type {string}
21
- * @memberof ExportEmbeddedWalletsRequest
22
- */
23
- walletId: string;
24
- /**
25
- * The public key of the wallet that will be used to encrypt the exported wallet.
26
- * @type {string}
27
- * @memberof ExportEmbeddedWalletsRequest
28
- */
29
- targetPublicKey: string;
30
- }
31
- export declare function ExportEmbeddedWalletsRequestFromJSON(json: any): ExportEmbeddedWalletsRequest;
32
- export declare function ExportEmbeddedWalletsRequestFromJSONTyped(json: any, ignoreDiscriminator: boolean): ExportEmbeddedWalletsRequest;
33
- export declare function ExportEmbeddedWalletsRequestToJSON(value?: ExportEmbeddedWalletsRequest | null): any;
@@ -1,27 +0,0 @@
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 InternalUserFieldsAllOf
16
- */
17
- export interface InternalUserFieldsAllOf {
18
- /**
19
- *
20
- * @type {object}
21
- * @memberof InternalUserFieldsAllOf
22
- */
23
- metadata?: object;
24
- }
25
- export declare function InternalUserFieldsAllOfFromJSON(json: any): InternalUserFieldsAllOf;
26
- export declare function InternalUserFieldsAllOfFromJSONTyped(json: any, ignoreDiscriminator: boolean): InternalUserFieldsAllOf;
27
- export declare function InternalUserFieldsAllOfToJSON(value?: InternalUserFieldsAllOf | null): any;
@@ -1,28 +0,0 @@
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
- import { MFADevice } from './MFADevice';
13
- /**
14
- *
15
- * @export
16
- * @interface MFAGetDeviceResponse
17
- */
18
- export interface MFAGetDeviceResponse {
19
- /**
20
- *
21
- * @type {MFADevice}
22
- * @memberof MFAGetDeviceResponse
23
- */
24
- device: MFADevice;
25
- }
26
- export declare function MFAGetDeviceResponseFromJSON(json: any): MFAGetDeviceResponse;
27
- export declare function MFAGetDeviceResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): MFAGetDeviceResponse;
28
- export declare function MFAGetDeviceResponseToJSON(value?: MFAGetDeviceResponse | null): any;
@@ -1,40 +0,0 @@
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
- import { MFADeviceType } from './MFADeviceType';
13
- /**
14
- *
15
- * @export
16
- * @interface MFARegisterDevicePostRequest
17
- */
18
- export interface MFARegisterDevicePostRequest {
19
- /**
20
- *
21
- * @type {MFADeviceType}
22
- * @memberof MFARegisterDevicePostRequest
23
- */
24
- type: MFADeviceType;
25
- /**
26
- *
27
- * @type {string}
28
- * @memberof MFARegisterDevicePostRequest
29
- */
30
- id: string;
31
- /**
32
- * The TOTP code generated by the user
33
- * @type {string}
34
- * @memberof MFARegisterDevicePostRequest
35
- */
36
- code: string;
37
- }
38
- export declare function MFARegisterDevicePostRequestFromJSON(json: any): MFARegisterDevicePostRequest;
39
- export declare function MFARegisterDevicePostRequestFromJSONTyped(json: any, ignoreDiscriminator: boolean): MFARegisterDevicePostRequest;
40
- export declare function MFARegisterDevicePostRequestToJSON(value?: MFARegisterDevicePostRequest | null): any;
@@ -1,27 +0,0 @@
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 NextSettings
16
- */
17
- export interface NextSettings {
18
- /**
19
- *
20
- * @type {string}
21
- * @memberof NextSettings
22
- */
23
- version?: string;
24
- }
25
- export declare function NextSettingsFromJSON(json: any): NextSettings;
26
- export declare function NextSettingsFromJSONTyped(json: any, ignoreDiscriminator: boolean): NextSettings;
27
- export declare function NextSettingsToJSON(value?: NextSettings | null): any;
@@ -1,39 +0,0 @@
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 OauthRedirectRequest
16
- */
17
- export interface OauthRedirectRequest {
18
- /**
19
- *
20
- * @type {string}
21
- * @memberof OauthRedirectRequest
22
- */
23
- state: string;
24
- /**
25
- *
26
- * @type {string}
27
- * @memberof OauthRedirectRequest
28
- */
29
- code: string;
30
- /**
31
- *
32
- * @type {string}
33
- * @memberof OauthRedirectRequest
34
- */
35
- idToken: string;
36
- }
37
- export declare function OauthRedirectRequestFromJSON(json: any): OauthRedirectRequest;
38
- export declare function OauthRedirectRequestFromJSONTyped(json: any, ignoreDiscriminator: boolean): OauthRedirectRequest;
39
- export declare function OauthRedirectRequestToJSON(value?: OauthRedirectRequest | null): any;
@@ -1,27 +0,0 @@
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 ProjectDocsResponse
16
- */
17
- export interface ProjectDocsResponse {
18
- /**
19
- *
20
- * @type {string}
21
- * @memberof ProjectDocsResponse
22
- */
23
- url: string;
24
- }
25
- export declare function ProjectDocsResponseFromJSON(json: any): ProjectDocsResponse;
26
- export declare function ProjectDocsResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): ProjectDocsResponse;
27
- export declare function ProjectDocsResponseToJSON(value?: ProjectDocsResponse | null): any;
@@ -1,27 +0,0 @@
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 ProjectSettingsRequest
16
- */
17
- export interface ProjectSettingsRequest {
18
- /**
19
- *
20
- * @type {object}
21
- * @memberof ProjectSettingsRequest
22
- */
23
- dynamicContextProps?: object;
24
- }
25
- export declare function ProjectSettingsRequestFromJSON(json: any): ProjectSettingsRequest;
26
- export declare function ProjectSettingsRequestFromJSONTyped(json: any, ignoreDiscriminator: boolean): ProjectSettingsRequest;
27
- export declare function ProjectSettingsRequestToJSON(value?: ProjectSettingsRequest | null): any;
@@ -1,22 +0,0 @@
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 ShortChainNameEnum {
18
- Evm = "evm"
19
- }
20
- export declare function ShortChainNameEnumFromJSON(json: any): ShortChainNameEnum;
21
- export declare function ShortChainNameEnumFromJSONTyped(json: any, ignoreDiscriminator: boolean): ShortChainNameEnum;
22
- export declare function ShortChainNameEnumToJSON(value?: ShortChainNameEnum | null): any;
@@ -1,28 +0,0 @@
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
- import { TurnkeySignedRequest } from './TurnkeySignedRequest';
13
- /**
14
- *
15
- * @export
16
- * @interface UpdateUserTurnkeyInfoRequest
17
- */
18
- export interface UpdateUserTurnkeyInfoRequest {
19
- /**
20
- *
21
- * @type {TurnkeySignedRequest}
22
- * @memberof UpdateUserTurnkeyInfoRequest
23
- */
24
- turnkeySignedRequest: TurnkeySignedRequest;
25
- }
26
- export declare function UpdateUserTurnkeyInfoRequestFromJSON(json: any): UpdateUserTurnkeyInfoRequest;
27
- export declare function UpdateUserTurnkeyInfoRequestFromJSONTyped(json: any, ignoreDiscriminator: boolean): UpdateUserTurnkeyInfoRequest;
28
- export declare function UpdateUserTurnkeyInfoRequestToJSON(value?: UpdateUserTurnkeyInfoRequest | null): any;