@dynamic-labs/sdk-api-core 0.0.672 → 0.0.674
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/apis/SDKApi.cjs +146 -0
- package/src/apis/SDKApi.d.ts +53 -1
- package/src/apis/SDKApi.js +146 -0
- package/src/index.cjs +24 -4
- package/src/index.js +5 -1
- package/src/models/Account.cjs +45 -0
- package/src/models/Account.d.ts +59 -0
- package/src/models/Account.js +39 -0
- package/src/models/AccountBalances.cjs +37 -0
- package/src/models/AccountBalances.d.ts +39 -0
- package/src/models/AccountBalances.js +31 -0
- package/src/models/ExchangeKeyEnum.cjs +39 -0
- package/src/models/ExchangeKeyEnum.d.ts +22 -0
- package/src/models/ExchangeKeyEnum.js +33 -0
- package/src/models/RampConfiguration.cjs +39 -0
- package/src/models/RampConfiguration.d.ts +46 -0
- package/src/models/RampConfiguration.js +33 -0
- package/src/models/SupportedOfframpsResponse.cjs +34 -0
- package/src/models/SupportedOfframpsResponse.d.ts +28 -0
- package/src/models/SupportedOfframpsResponse.js +28 -0
- package/src/models/SupportedOnrampsResponse.cjs +3 -3
- package/src/models/SupportedOnrampsResponse.d.ts +3 -3
- package/src/models/SupportedOnrampsResponse.js +3 -3
- package/src/models/UnprocessableEntityErrorCode.cjs +1 -0
- package/src/models/UnprocessableEntityErrorCode.d.ts +1 -0
- package/src/models/UnprocessableEntityErrorCode.js +1 -0
- package/src/models/index.d.ts +5 -1
- package/src/models/OnrampConfiguration.cjs +0 -40
- package/src/models/OnrampConfiguration.d.ts +0 -46
- package/src/models/OnrampConfiguration.js +0 -34
package/src/models/index.d.ts
CHANGED
|
@@ -1,3 +1,5 @@
|
|
|
1
|
+
export * from './Account';
|
|
2
|
+
export * from './AccountBalances';
|
|
1
3
|
export * from './Asset';
|
|
2
4
|
export * from './AssetDiff';
|
|
3
5
|
export * from './AssetExposure';
|
|
@@ -60,6 +62,7 @@ export * from './EmbeddedWalletSecurityMethod';
|
|
|
60
62
|
export * from './EmbeddedWalletVersionEnum';
|
|
61
63
|
export * from './EnvironmentEnum';
|
|
62
64
|
export * from './ErrorMessageWithCode';
|
|
65
|
+
export * from './ExchangeKeyEnum';
|
|
63
66
|
export * from './ExportEmbeddedWalletResponse';
|
|
64
67
|
export * from './ExportWaasWalletPrivateKeyRequest';
|
|
65
68
|
export * from './ExternalAuth';
|
|
@@ -148,7 +151,6 @@ export * from './OauthRequest';
|
|
|
148
151
|
export * from './OauthResultRequest';
|
|
149
152
|
export * from './OauthResultResponse';
|
|
150
153
|
export * from './OauthResultStatus';
|
|
151
|
-
export * from './OnrampConfiguration';
|
|
152
154
|
export * from './OnrampProviders';
|
|
153
155
|
export * from './OpenRoomResponse';
|
|
154
156
|
export * from './OpenRoomResponseForReshare';
|
|
@@ -191,6 +193,7 @@ export * from './PublicKeyCredentialType';
|
|
|
191
193
|
export * from './PublicKeyCredentialUserEntity';
|
|
192
194
|
export * from './PublishEvents';
|
|
193
195
|
export * from './PublishEventsEvents';
|
|
196
|
+
export * from './RampConfiguration';
|
|
194
197
|
export * from './ReactSettings';
|
|
195
198
|
export * from './RecoverMultipleClientKeySharesRequest';
|
|
196
199
|
export * from './RecoverMultipleClientKeySharesResponse';
|
|
@@ -226,6 +229,7 @@ export * from './SocialSignInProvider';
|
|
|
226
229
|
export * from './SocialSignInProviderEnum';
|
|
227
230
|
export * from './SolanaTransactionOptimizationRequest';
|
|
228
231
|
export * from './SolanaTransactionOptimizationResponse';
|
|
232
|
+
export * from './SupportedOfframpsResponse';
|
|
229
233
|
export * from './SupportedOnrampsResponse';
|
|
230
234
|
export * from './SupportedSecurityMethod';
|
|
231
235
|
export * from './SupportedSecurityMethods';
|
|
@@ -1,40 +0,0 @@
|
|
|
1
|
-
'use strict';
|
|
2
|
-
|
|
3
|
-
Object.defineProperty(exports, '__esModule', { value: true });
|
|
4
|
-
|
|
5
|
-
var runtime = require('../runtime.cjs');
|
|
6
|
-
var ProviderEnum = require('./ProviderEnum.cjs');
|
|
7
|
-
|
|
8
|
-
/* tslint:disable */
|
|
9
|
-
function OnrampConfigurationFromJSON(json) {
|
|
10
|
-
return OnrampConfigurationFromJSONTyped(json);
|
|
11
|
-
}
|
|
12
|
-
function OnrampConfigurationFromJSONTyped(json, ignoreDiscriminator) {
|
|
13
|
-
if ((json === undefined) || (json === null)) {
|
|
14
|
-
return json;
|
|
15
|
-
}
|
|
16
|
-
return {
|
|
17
|
-
'provider': !runtime.exists(json, 'provider') ? undefined : ProviderEnum.ProviderEnumFromJSON(json['provider']),
|
|
18
|
-
'name': !runtime.exists(json, 'name') ? undefined : json['name'],
|
|
19
|
-
'iconUrl': !runtime.exists(json, 'iconUrl') ? undefined : json['iconUrl'],
|
|
20
|
-
'url': !runtime.exists(json, 'url') ? undefined : json['url'],
|
|
21
|
-
};
|
|
22
|
-
}
|
|
23
|
-
function OnrampConfigurationToJSON(value) {
|
|
24
|
-
if (value === undefined) {
|
|
25
|
-
return undefined;
|
|
26
|
-
}
|
|
27
|
-
if (value === null) {
|
|
28
|
-
return null;
|
|
29
|
-
}
|
|
30
|
-
return {
|
|
31
|
-
'provider': ProviderEnum.ProviderEnumToJSON(value.provider),
|
|
32
|
-
'name': value.name,
|
|
33
|
-
'iconUrl': value.iconUrl,
|
|
34
|
-
'url': value.url,
|
|
35
|
-
};
|
|
36
|
-
}
|
|
37
|
-
|
|
38
|
-
exports.OnrampConfigurationFromJSON = OnrampConfigurationFromJSON;
|
|
39
|
-
exports.OnrampConfigurationFromJSONTyped = OnrampConfigurationFromJSONTyped;
|
|
40
|
-
exports.OnrampConfigurationToJSON = OnrampConfigurationToJSON;
|
|
@@ -1,46 +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 { ProviderEnum } from './ProviderEnum';
|
|
13
|
-
/**
|
|
14
|
-
*
|
|
15
|
-
* @export
|
|
16
|
-
* @interface OnrampConfiguration
|
|
17
|
-
*/
|
|
18
|
-
export interface OnrampConfiguration {
|
|
19
|
-
/**
|
|
20
|
-
*
|
|
21
|
-
* @type {ProviderEnum}
|
|
22
|
-
* @memberof OnrampConfiguration
|
|
23
|
-
*/
|
|
24
|
-
provider?: ProviderEnum;
|
|
25
|
-
/**
|
|
26
|
-
*
|
|
27
|
-
* @type {string}
|
|
28
|
-
* @memberof OnrampConfiguration
|
|
29
|
-
*/
|
|
30
|
-
name?: string;
|
|
31
|
-
/**
|
|
32
|
-
*
|
|
33
|
-
* @type {string}
|
|
34
|
-
* @memberof OnrampConfiguration
|
|
35
|
-
*/
|
|
36
|
-
iconUrl?: string;
|
|
37
|
-
/**
|
|
38
|
-
*
|
|
39
|
-
* @type {string}
|
|
40
|
-
* @memberof OnrampConfiguration
|
|
41
|
-
*/
|
|
42
|
-
url?: string;
|
|
43
|
-
}
|
|
44
|
-
export declare function OnrampConfigurationFromJSON(json: any): OnrampConfiguration;
|
|
45
|
-
export declare function OnrampConfigurationFromJSONTyped(json: any, ignoreDiscriminator: boolean): OnrampConfiguration;
|
|
46
|
-
export declare function OnrampConfigurationToJSON(value?: OnrampConfiguration | null): any;
|
|
@@ -1,34 +0,0 @@
|
|
|
1
|
-
import { exists } from '../runtime.js';
|
|
2
|
-
import { ProviderEnumFromJSON, ProviderEnumToJSON } from './ProviderEnum.js';
|
|
3
|
-
|
|
4
|
-
/* tslint:disable */
|
|
5
|
-
function OnrampConfigurationFromJSON(json) {
|
|
6
|
-
return OnrampConfigurationFromJSONTyped(json);
|
|
7
|
-
}
|
|
8
|
-
function OnrampConfigurationFromJSONTyped(json, ignoreDiscriminator) {
|
|
9
|
-
if ((json === undefined) || (json === null)) {
|
|
10
|
-
return json;
|
|
11
|
-
}
|
|
12
|
-
return {
|
|
13
|
-
'provider': !exists(json, 'provider') ? undefined : ProviderEnumFromJSON(json['provider']),
|
|
14
|
-
'name': !exists(json, 'name') ? undefined : json['name'],
|
|
15
|
-
'iconUrl': !exists(json, 'iconUrl') ? undefined : json['iconUrl'],
|
|
16
|
-
'url': !exists(json, 'url') ? undefined : json['url'],
|
|
17
|
-
};
|
|
18
|
-
}
|
|
19
|
-
function OnrampConfigurationToJSON(value) {
|
|
20
|
-
if (value === undefined) {
|
|
21
|
-
return undefined;
|
|
22
|
-
}
|
|
23
|
-
if (value === null) {
|
|
24
|
-
return null;
|
|
25
|
-
}
|
|
26
|
-
return {
|
|
27
|
-
'provider': ProviderEnumToJSON(value.provider),
|
|
28
|
-
'name': value.name,
|
|
29
|
-
'iconUrl': value.iconUrl,
|
|
30
|
-
'url': value.url,
|
|
31
|
-
};
|
|
32
|
-
}
|
|
33
|
-
|
|
34
|
-
export { OnrampConfigurationFromJSON, OnrampConfigurationFromJSONTyped, OnrampConfigurationToJSON };
|