@dynamic-labs/sdk-api 0.0.320 → 0.0.322
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 +1 -1
- package/src/models/ProviderCreateRequest.cjs +2 -0
- package/src/models/ProviderCreateRequest.d.ts +6 -0
- package/src/models/ProviderCreateRequest.js +2 -0
- package/src/models/ProviderUpdateRequest.cjs +2 -0
- package/src/models/ProviderUpdateRequest.d.ts +6 -0
- package/src/models/ProviderUpdateRequest.js +2 -0
- package/src/models/TurnkeyWalletProperties.cjs +2 -0
- package/src/models/TurnkeyWalletProperties.d.ts +6 -0
- package/src/models/TurnkeyWalletProperties.js +2 -0
package/package.json
CHANGED
|
@@ -21,6 +21,7 @@ function ProviderCreateRequestFromJSONTyped(json, ignoreDiscriminator) {
|
|
|
21
21
|
'defaultChainId': !runtime.exists(json, 'defaultChainId') ? undefined : json['defaultChainId'],
|
|
22
22
|
'keyExportUrl': !runtime.exists(json, 'keyExportUrl') ? undefined : json['keyExportUrl'],
|
|
23
23
|
'termsUrl': !runtime.exists(json, 'termsUrl') ? undefined : json['termsUrl'],
|
|
24
|
+
'useDynamicCredentials': !runtime.exists(json, 'useDynamicCredentials') ? undefined : json['useDynamicCredentials'],
|
|
24
25
|
'appleKeyId': !runtime.exists(json, 'appleKeyId') ? undefined : json['appleKeyId'],
|
|
25
26
|
'appleTeamId': !runtime.exists(json, 'appleTeamId') ? undefined : json['appleTeamId'],
|
|
26
27
|
};
|
|
@@ -40,6 +41,7 @@ function ProviderCreateRequestToJSON(value) {
|
|
|
40
41
|
'defaultChainId': value.defaultChainId,
|
|
41
42
|
'keyExportUrl': value.keyExportUrl,
|
|
42
43
|
'termsUrl': value.termsUrl,
|
|
44
|
+
'useDynamicCredentials': value.useDynamicCredentials,
|
|
43
45
|
'appleKeyId': value.appleKeyId,
|
|
44
46
|
'appleTeamId': value.appleTeamId,
|
|
45
47
|
};
|
|
@@ -58,6 +58,12 @@ export interface ProviderCreateRequest {
|
|
|
58
58
|
* @memberof ProviderCreateRequest
|
|
59
59
|
*/
|
|
60
60
|
termsUrl?: string;
|
|
61
|
+
/**
|
|
62
|
+
*
|
|
63
|
+
* @type {boolean}
|
|
64
|
+
* @memberof ProviderCreateRequest
|
|
65
|
+
*/
|
|
66
|
+
useDynamicCredentials?: boolean;
|
|
61
67
|
/**
|
|
62
68
|
* Key ID required for Apple Oauth2 applications. This is the identifier for a private key.
|
|
63
69
|
* @type {string}
|
|
@@ -17,6 +17,7 @@ function ProviderCreateRequestFromJSONTyped(json, ignoreDiscriminator) {
|
|
|
17
17
|
'defaultChainId': !exists(json, 'defaultChainId') ? undefined : json['defaultChainId'],
|
|
18
18
|
'keyExportUrl': !exists(json, 'keyExportUrl') ? undefined : json['keyExportUrl'],
|
|
19
19
|
'termsUrl': !exists(json, 'termsUrl') ? undefined : json['termsUrl'],
|
|
20
|
+
'useDynamicCredentials': !exists(json, 'useDynamicCredentials') ? undefined : json['useDynamicCredentials'],
|
|
20
21
|
'appleKeyId': !exists(json, 'appleKeyId') ? undefined : json['appleKeyId'],
|
|
21
22
|
'appleTeamId': !exists(json, 'appleTeamId') ? undefined : json['appleTeamId'],
|
|
22
23
|
};
|
|
@@ -36,6 +37,7 @@ function ProviderCreateRequestToJSON(value) {
|
|
|
36
37
|
'defaultChainId': value.defaultChainId,
|
|
37
38
|
'keyExportUrl': value.keyExportUrl,
|
|
38
39
|
'termsUrl': value.termsUrl,
|
|
40
|
+
'useDynamicCredentials': value.useDynamicCredentials,
|
|
39
41
|
'appleKeyId': value.appleKeyId,
|
|
40
42
|
'appleTeamId': value.appleTeamId,
|
|
41
43
|
};
|
|
@@ -18,6 +18,7 @@ function ProviderUpdateRequestFromJSONTyped(json, ignoreDiscriminator) {
|
|
|
18
18
|
'providerProjectId': !runtime.exists(json, 'providerProjectId') ? undefined : json['providerProjectId'],
|
|
19
19
|
'defaultChainId': !runtime.exists(json, 'defaultChainId') ? undefined : json['defaultChainId'],
|
|
20
20
|
'keyExportUrl': !runtime.exists(json, 'keyExportUrl') ? undefined : json['keyExportUrl'],
|
|
21
|
+
'useDynamicCredentials': !runtime.exists(json, 'useDynamicCredentials') ? undefined : json['useDynamicCredentials'],
|
|
21
22
|
'appleKeyId': !runtime.exists(json, 'appleKeyId') ? undefined : json['appleKeyId'],
|
|
22
23
|
'appleTeamId': !runtime.exists(json, 'appleTeamId') ? undefined : json['appleTeamId'],
|
|
23
24
|
};
|
|
@@ -35,6 +36,7 @@ function ProviderUpdateRequestToJSON(value) {
|
|
|
35
36
|
'providerProjectId': value.providerProjectId,
|
|
36
37
|
'defaultChainId': value.defaultChainId,
|
|
37
38
|
'keyExportUrl': value.keyExportUrl,
|
|
39
|
+
'useDynamicCredentials': value.useDynamicCredentials,
|
|
38
40
|
'appleKeyId': value.appleKeyId,
|
|
39
41
|
'appleTeamId': value.appleTeamId,
|
|
40
42
|
};
|
|
@@ -45,6 +45,12 @@ export interface ProviderUpdateRequest {
|
|
|
45
45
|
* @memberof ProviderUpdateRequest
|
|
46
46
|
*/
|
|
47
47
|
keyExportUrl?: string;
|
|
48
|
+
/**
|
|
49
|
+
*
|
|
50
|
+
* @type {boolean}
|
|
51
|
+
* @memberof ProviderUpdateRequest
|
|
52
|
+
*/
|
|
53
|
+
useDynamicCredentials?: boolean;
|
|
48
54
|
/**
|
|
49
55
|
* Key ID required for Apple Oauth2 applications. This is the identifier for a private key.
|
|
50
56
|
* @type {string}
|
|
@@ -14,6 +14,7 @@ function ProviderUpdateRequestFromJSONTyped(json, ignoreDiscriminator) {
|
|
|
14
14
|
'providerProjectId': !exists(json, 'providerProjectId') ? undefined : json['providerProjectId'],
|
|
15
15
|
'defaultChainId': !exists(json, 'defaultChainId') ? undefined : json['defaultChainId'],
|
|
16
16
|
'keyExportUrl': !exists(json, 'keyExportUrl') ? undefined : json['keyExportUrl'],
|
|
17
|
+
'useDynamicCredentials': !exists(json, 'useDynamicCredentials') ? undefined : json['useDynamicCredentials'],
|
|
17
18
|
'appleKeyId': !exists(json, 'appleKeyId') ? undefined : json['appleKeyId'],
|
|
18
19
|
'appleTeamId': !exists(json, 'appleTeamId') ? undefined : json['appleTeamId'],
|
|
19
20
|
};
|
|
@@ -31,6 +32,7 @@ function ProviderUpdateRequestToJSON(value) {
|
|
|
31
32
|
'providerProjectId': value.providerProjectId,
|
|
32
33
|
'defaultChainId': value.defaultChainId,
|
|
33
34
|
'keyExportUrl': value.keyExportUrl,
|
|
35
|
+
'useDynamicCredentials': value.useDynamicCredentials,
|
|
34
36
|
'appleKeyId': value.appleKeyId,
|
|
35
37
|
'appleTeamId': value.appleTeamId,
|
|
36
38
|
};
|
|
@@ -15,6 +15,7 @@ function TurnkeyWalletPropertiesFromJSONTyped(json, ignoreDiscriminator) {
|
|
|
15
15
|
return {
|
|
16
16
|
'turnkeySubOrganizationId': json['turnkeySubOrganizationId'],
|
|
17
17
|
'turnkeyPrivateKeyId': !runtime.exists(json, 'turnkeyPrivateKeyId') ? undefined : json['turnkeyPrivateKeyId'],
|
|
18
|
+
'turnkeyHDWalletId': !runtime.exists(json, 'turnkeyHDWalletId') ? undefined : json['turnkeyHDWalletId'],
|
|
18
19
|
'isAuthenticatorAttached': json['isAuthenticatorAttached'],
|
|
19
20
|
};
|
|
20
21
|
}
|
|
@@ -28,6 +29,7 @@ function TurnkeyWalletPropertiesToJSON(value) {
|
|
|
28
29
|
return {
|
|
29
30
|
'turnkeySubOrganizationId': value.turnkeySubOrganizationId,
|
|
30
31
|
'turnkeyPrivateKeyId': value.turnkeyPrivateKeyId,
|
|
32
|
+
'turnkeyHDWalletId': value.turnkeyHDWalletId,
|
|
31
33
|
'isAuthenticatorAttached': value.isAuthenticatorAttached,
|
|
32
34
|
};
|
|
33
35
|
}
|
|
@@ -27,6 +27,12 @@ export interface TurnkeyWalletProperties {
|
|
|
27
27
|
* @memberof TurnkeyWalletProperties
|
|
28
28
|
*/
|
|
29
29
|
turnkeyPrivateKeyId?: string;
|
|
30
|
+
/**
|
|
31
|
+
*
|
|
32
|
+
* @type {string}
|
|
33
|
+
* @memberof TurnkeyWalletProperties
|
|
34
|
+
*/
|
|
35
|
+
turnkeyHDWalletId?: string;
|
|
30
36
|
/**
|
|
31
37
|
* Whether or not the wallet has an authenticator (passkey, api key, etc) attached to it. If false, the wallet cannot currently be accessed
|
|
32
38
|
* @type {boolean}
|
|
@@ -11,6 +11,7 @@ function TurnkeyWalletPropertiesFromJSONTyped(json, ignoreDiscriminator) {
|
|
|
11
11
|
return {
|
|
12
12
|
'turnkeySubOrganizationId': json['turnkeySubOrganizationId'],
|
|
13
13
|
'turnkeyPrivateKeyId': !exists(json, 'turnkeyPrivateKeyId') ? undefined : json['turnkeyPrivateKeyId'],
|
|
14
|
+
'turnkeyHDWalletId': !exists(json, 'turnkeyHDWalletId') ? undefined : json['turnkeyHDWalletId'],
|
|
14
15
|
'isAuthenticatorAttached': json['isAuthenticatorAttached'],
|
|
15
16
|
};
|
|
16
17
|
}
|
|
@@ -24,6 +25,7 @@ function TurnkeyWalletPropertiesToJSON(value) {
|
|
|
24
25
|
return {
|
|
25
26
|
'turnkeySubOrganizationId': value.turnkeySubOrganizationId,
|
|
26
27
|
'turnkeyPrivateKeyId': value.turnkeyPrivateKeyId,
|
|
28
|
+
'turnkeyHDWalletId': value.turnkeyHDWalletId,
|
|
27
29
|
'isAuthenticatorAttached': value.isAuthenticatorAttached,
|
|
28
30
|
};
|
|
29
31
|
}
|