@dynamic-labs/sdk-api-core 0.0.601 → 0.0.603
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 +1 -13
- package/src/apis/SDKApi.d.ts +1 -13
- package/src/apis/SDKApi.js +2 -14
- package/src/index.cjs +8 -4
- package/src/index.js +2 -1
- package/src/models/GetAccountBalancesNetworkIdEnum.cjs +44 -0
- package/src/models/GetAccountBalancesNetworkIdEnum.d.ts +27 -0
- package/src/models/GetAccountBalancesNetworkIdEnum.js +38 -0
- package/src/models/index.d.ts +1 -0
package/package.json
CHANGED
package/src/apis/SDKApi.cjs
CHANGED
|
@@ -56,6 +56,7 @@ var ExternalAuthSigninRequest = require('../models/ExternalAuthSigninRequest.cjs
|
|
|
56
56
|
require('../models/ExternalWalletFundingDefaultChain.cjs');
|
|
57
57
|
var FarcasterSignInRequest = require('../models/FarcasterSignInRequest.cjs');
|
|
58
58
|
require('../models/OnrampProviders.cjs');
|
|
59
|
+
require('../models/GetAccountBalancesNetworkIdEnum.cjs');
|
|
59
60
|
var GetUserPasskeysResponse = require('../models/GetUserPasskeysResponse.cjs');
|
|
60
61
|
var GlobalWalletSettings = require('../models/GlobalWalletSettings.cjs');
|
|
61
62
|
var HealthcheckResponse = require('../models/HealthcheckResponse.cjs');
|
|
@@ -6171,19 +6172,6 @@ exports.GetAccountBalancesChainNameEnum = void 0;
|
|
|
6171
6172
|
GetAccountBalancesChainNameEnum["Evm"] = "EVM";
|
|
6172
6173
|
GetAccountBalancesChainNameEnum["Sol"] = "SOL";
|
|
6173
6174
|
})(exports.GetAccountBalancesChainNameEnum || (exports.GetAccountBalancesChainNameEnum = {}));
|
|
6174
|
-
/**
|
|
6175
|
-
* @export
|
|
6176
|
-
* @enum {string}
|
|
6177
|
-
*/
|
|
6178
|
-
exports.GetAccountBalancesNetworkIdEnum = void 0;
|
|
6179
|
-
(function (GetAccountBalancesNetworkIdEnum) {
|
|
6180
|
-
GetAccountBalancesNetworkIdEnum[GetAccountBalancesNetworkIdEnum["NUMBER_0"] = 0] = "NUMBER_0";
|
|
6181
|
-
GetAccountBalancesNetworkIdEnum[GetAccountBalancesNetworkIdEnum["NUMBER_1"] = 1] = "NUMBER_1";
|
|
6182
|
-
GetAccountBalancesNetworkIdEnum[GetAccountBalancesNetworkIdEnum["NUMBER_10"] = 10] = "NUMBER_10";
|
|
6183
|
-
GetAccountBalancesNetworkIdEnum[GetAccountBalancesNetworkIdEnum["NUMBER_137"] = 137] = "NUMBER_137";
|
|
6184
|
-
GetAccountBalancesNetworkIdEnum[GetAccountBalancesNetworkIdEnum["NUMBER_42161"] = 42161] = "NUMBER_42161";
|
|
6185
|
-
GetAccountBalancesNetworkIdEnum[GetAccountBalancesNetworkIdEnum["NUMBER_8453"] = 8453] = "NUMBER_8453";
|
|
6186
|
-
})(exports.GetAccountBalancesNetworkIdEnum || (exports.GetAccountBalancesNetworkIdEnum = {}));
|
|
6187
6175
|
/**
|
|
6188
6176
|
* @export
|
|
6189
6177
|
* @enum {string}
|
package/src/apis/SDKApi.d.ts
CHANGED
|
@@ -166,7 +166,7 @@ export interface GetAccountBalancesRequest {
|
|
|
166
166
|
environmentId: string;
|
|
167
167
|
chainName: GetAccountBalancesChainNameEnum;
|
|
168
168
|
accountAddress: string;
|
|
169
|
-
networkId?:
|
|
169
|
+
networkId?: number;
|
|
170
170
|
includePrices?: boolean;
|
|
171
171
|
includeNative?: boolean;
|
|
172
172
|
}
|
|
@@ -2227,18 +2227,6 @@ export declare enum GetAccountBalancesChainNameEnum {
|
|
|
2227
2227
|
Evm = "EVM",
|
|
2228
2228
|
Sol = "SOL"
|
|
2229
2229
|
}
|
|
2230
|
-
/**
|
|
2231
|
-
* @export
|
|
2232
|
-
* @enum {string}
|
|
2233
|
-
*/
|
|
2234
|
-
export declare enum GetAccountBalancesNetworkIdEnum {
|
|
2235
|
-
NUMBER_0 = 0,
|
|
2236
|
-
NUMBER_1 = 1,
|
|
2237
|
-
NUMBER_10 = 10,
|
|
2238
|
-
NUMBER_137 = 137,
|
|
2239
|
-
NUMBER_42161 = 42161,
|
|
2240
|
-
NUMBER_8453 = 8453
|
|
2241
|
-
}
|
|
2242
2230
|
/**
|
|
2243
2231
|
* @export
|
|
2244
2232
|
* @enum {string}
|
package/src/apis/SDKApi.js
CHANGED
|
@@ -52,6 +52,7 @@ import { ExternalAuthSigninRequestToJSON } from '../models/ExternalAuthSigninReq
|
|
|
52
52
|
import '../models/ExternalWalletFundingDefaultChain.js';
|
|
53
53
|
import { FarcasterSignInRequestToJSON } from '../models/FarcasterSignInRequest.js';
|
|
54
54
|
import '../models/OnrampProviders.js';
|
|
55
|
+
import '../models/GetAccountBalancesNetworkIdEnum.js';
|
|
55
56
|
import { GetUserPasskeysResponseFromJSON } from '../models/GetUserPasskeysResponse.js';
|
|
56
57
|
import { GlobalWalletSettingsFromJSON } from '../models/GlobalWalletSettings.js';
|
|
57
58
|
import { HealthcheckResponseFromJSON } from '../models/HealthcheckResponse.js';
|
|
@@ -6167,19 +6168,6 @@ var GetAccountBalancesChainNameEnum;
|
|
|
6167
6168
|
GetAccountBalancesChainNameEnum["Evm"] = "EVM";
|
|
6168
6169
|
GetAccountBalancesChainNameEnum["Sol"] = "SOL";
|
|
6169
6170
|
})(GetAccountBalancesChainNameEnum || (GetAccountBalancesChainNameEnum = {}));
|
|
6170
|
-
/**
|
|
6171
|
-
* @export
|
|
6172
|
-
* @enum {string}
|
|
6173
|
-
*/
|
|
6174
|
-
var GetAccountBalancesNetworkIdEnum;
|
|
6175
|
-
(function (GetAccountBalancesNetworkIdEnum) {
|
|
6176
|
-
GetAccountBalancesNetworkIdEnum[GetAccountBalancesNetworkIdEnum["NUMBER_0"] = 0] = "NUMBER_0";
|
|
6177
|
-
GetAccountBalancesNetworkIdEnum[GetAccountBalancesNetworkIdEnum["NUMBER_1"] = 1] = "NUMBER_1";
|
|
6178
|
-
GetAccountBalancesNetworkIdEnum[GetAccountBalancesNetworkIdEnum["NUMBER_10"] = 10] = "NUMBER_10";
|
|
6179
|
-
GetAccountBalancesNetworkIdEnum[GetAccountBalancesNetworkIdEnum["NUMBER_137"] = 137] = "NUMBER_137";
|
|
6180
|
-
GetAccountBalancesNetworkIdEnum[GetAccountBalancesNetworkIdEnum["NUMBER_42161"] = 42161] = "NUMBER_42161";
|
|
6181
|
-
GetAccountBalancesNetworkIdEnum[GetAccountBalancesNetworkIdEnum["NUMBER_8453"] = 8453] = "NUMBER_8453";
|
|
6182
|
-
})(GetAccountBalancesNetworkIdEnum || (GetAccountBalancesNetworkIdEnum = {}));
|
|
6183
6171
|
/**
|
|
6184
6172
|
* @export
|
|
6185
6173
|
* @enum {string}
|
|
@@ -6190,4 +6178,4 @@ var GetAccountBalancesOptionsChainNameEnum;
|
|
|
6190
6178
|
GetAccountBalancesOptionsChainNameEnum["Sol"] = "SOL";
|
|
6191
6179
|
})(GetAccountBalancesOptionsChainNameEnum || (GetAccountBalancesOptionsChainNameEnum = {}));
|
|
6192
6180
|
|
|
6193
|
-
export { GetAccountBalancesChainNameEnum,
|
|
6181
|
+
export { GetAccountBalancesChainNameEnum, GetAccountBalancesOptionsChainNameEnum, SDKApi };
|
package/src/index.cjs
CHANGED
|
@@ -77,6 +77,7 @@ var FrameworkSettings = require('./models/FrameworkSettings.cjs');
|
|
|
77
77
|
var Funding = require('./models/Funding.cjs');
|
|
78
78
|
var FundingExternalWallets = require('./models/FundingExternalWallets.cjs');
|
|
79
79
|
var FundingExternalWalletsMinAmount = require('./models/FundingExternalWalletsMinAmount.cjs');
|
|
80
|
+
var GetAccountBalancesNetworkIdEnum = require('./models/GetAccountBalancesNetworkIdEnum.cjs');
|
|
80
81
|
var GetUserPasskeysResponse = require('./models/GetUserPasskeysResponse.cjs');
|
|
81
82
|
var GlobalWalletSettings = require('./models/GlobalWalletSettings.cjs');
|
|
82
83
|
var HCaptchaSettings = require('./models/HCaptchaSettings.cjs');
|
|
@@ -285,10 +286,6 @@ Object.defineProperty(exports, 'GetAccountBalancesChainNameEnum', {
|
|
|
285
286
|
enumerable: true,
|
|
286
287
|
get: function () { return SDKApi.GetAccountBalancesChainNameEnum; }
|
|
287
288
|
});
|
|
288
|
-
Object.defineProperty(exports, 'GetAccountBalancesNetworkIdEnum', {
|
|
289
|
-
enumerable: true,
|
|
290
|
-
get: function () { return SDKApi.GetAccountBalancesNetworkIdEnum; }
|
|
291
|
-
});
|
|
292
289
|
Object.defineProperty(exports, 'GetAccountBalancesOptionsChainNameEnum', {
|
|
293
290
|
enumerable: true,
|
|
294
291
|
get: function () { return SDKApi.GetAccountBalancesOptionsChainNameEnum; }
|
|
@@ -577,6 +574,13 @@ exports.FundingExternalWalletsToJSON = FundingExternalWallets.FundingExternalWal
|
|
|
577
574
|
exports.FundingExternalWalletsMinAmountFromJSON = FundingExternalWalletsMinAmount.FundingExternalWalletsMinAmountFromJSON;
|
|
578
575
|
exports.FundingExternalWalletsMinAmountFromJSONTyped = FundingExternalWalletsMinAmount.FundingExternalWalletsMinAmountFromJSONTyped;
|
|
579
576
|
exports.FundingExternalWalletsMinAmountToJSON = FundingExternalWalletsMinAmount.FundingExternalWalletsMinAmountToJSON;
|
|
577
|
+
Object.defineProperty(exports, 'GetAccountBalancesNetworkIdEnum', {
|
|
578
|
+
enumerable: true,
|
|
579
|
+
get: function () { return GetAccountBalancesNetworkIdEnum.GetAccountBalancesNetworkIdEnum; }
|
|
580
|
+
});
|
|
581
|
+
exports.GetAccountBalancesNetworkIdEnumFromJSON = GetAccountBalancesNetworkIdEnum.GetAccountBalancesNetworkIdEnumFromJSON;
|
|
582
|
+
exports.GetAccountBalancesNetworkIdEnumFromJSONTyped = GetAccountBalancesNetworkIdEnum.GetAccountBalancesNetworkIdEnumFromJSONTyped;
|
|
583
|
+
exports.GetAccountBalancesNetworkIdEnumToJSON = GetAccountBalancesNetworkIdEnum.GetAccountBalancesNetworkIdEnumToJSON;
|
|
580
584
|
exports.GetUserPasskeysResponseFromJSON = GetUserPasskeysResponse.GetUserPasskeysResponseFromJSON;
|
|
581
585
|
exports.GetUserPasskeysResponseFromJSONTyped = GetUserPasskeysResponse.GetUserPasskeysResponseFromJSONTyped;
|
|
582
586
|
exports.GetUserPasskeysResponseToJSON = GetUserPasskeysResponse.GetUserPasskeysResponseToJSON;
|
package/src/index.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
export { BASE_PATH, BaseAPI, BlobApiResponse, COLLECTION_FORMATS, Configuration, JSONApiResponse, RequiredError, TextApiResponse, VoidApiResponse, canConsumeForm, exists, mapValues, querystring } from './runtime.js';
|
|
2
|
-
export { GetAccountBalancesChainNameEnum,
|
|
2
|
+
export { GetAccountBalancesChainNameEnum, GetAccountBalancesOptionsChainNameEnum, SDKApi } from './apis/SDKApi.js';
|
|
3
3
|
export { AssetFromJSON, AssetFromJSONTyped, AssetToJSON } from './models/Asset.js';
|
|
4
4
|
export { AssetDiffFromJSON, AssetDiffFromJSONTyped, AssetDiffToJSON } from './models/AssetDiff.js';
|
|
5
5
|
export { AssetTransferFromJSON, AssetTransferFromJSONTyped, AssetTransferToJSON } from './models/AssetTransfer.js';
|
|
@@ -73,6 +73,7 @@ export { FrameworkSettingsFromJSON, FrameworkSettingsFromJSONTyped, FrameworkSet
|
|
|
73
73
|
export { FundingFromJSON, FundingFromJSONTyped, FundingToJSON } from './models/Funding.js';
|
|
74
74
|
export { FundingExternalWalletsFromJSON, FundingExternalWalletsFromJSONTyped, FundingExternalWalletsToJSON } from './models/FundingExternalWallets.js';
|
|
75
75
|
export { FundingExternalWalletsMinAmountFromJSON, FundingExternalWalletsMinAmountFromJSONTyped, FundingExternalWalletsMinAmountToJSON } from './models/FundingExternalWalletsMinAmount.js';
|
|
76
|
+
export { GetAccountBalancesNetworkIdEnum, GetAccountBalancesNetworkIdEnumFromJSON, GetAccountBalancesNetworkIdEnumFromJSONTyped, GetAccountBalancesNetworkIdEnumToJSON } from './models/GetAccountBalancesNetworkIdEnum.js';
|
|
76
77
|
export { GetUserPasskeysResponseFromJSON, GetUserPasskeysResponseFromJSONTyped, GetUserPasskeysResponseToJSON } from './models/GetUserPasskeysResponse.js';
|
|
77
78
|
export { GlobalWalletSettingsFromJSON, GlobalWalletSettingsFromJSONTyped, GlobalWalletSettingsToJSON } from './models/GlobalWalletSettings.js';
|
|
78
79
|
export { HCaptchaSettingsFromJSON, HCaptchaSettingsFromJSONTyped, HCaptchaSettingsToJSON } from './models/HCaptchaSettings.js';
|
|
@@ -0,0 +1,44 @@
|
|
|
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.GetAccountBalancesNetworkIdEnum = void 0;
|
|
24
|
+
(function (GetAccountBalancesNetworkIdEnum) {
|
|
25
|
+
GetAccountBalancesNetworkIdEnum[GetAccountBalancesNetworkIdEnum["NUMBER_0"] = 0] = "NUMBER_0";
|
|
26
|
+
GetAccountBalancesNetworkIdEnum[GetAccountBalancesNetworkIdEnum["NUMBER_1"] = 1] = "NUMBER_1";
|
|
27
|
+
GetAccountBalancesNetworkIdEnum[GetAccountBalancesNetworkIdEnum["NUMBER_10"] = 10] = "NUMBER_10";
|
|
28
|
+
GetAccountBalancesNetworkIdEnum[GetAccountBalancesNetworkIdEnum["NUMBER_137"] = 137] = "NUMBER_137";
|
|
29
|
+
GetAccountBalancesNetworkIdEnum[GetAccountBalancesNetworkIdEnum["NUMBER_42161"] = 42161] = "NUMBER_42161";
|
|
30
|
+
GetAccountBalancesNetworkIdEnum[GetAccountBalancesNetworkIdEnum["NUMBER_8453"] = 8453] = "NUMBER_8453";
|
|
31
|
+
})(exports.GetAccountBalancesNetworkIdEnum || (exports.GetAccountBalancesNetworkIdEnum = {}));
|
|
32
|
+
function GetAccountBalancesNetworkIdEnumFromJSON(json) {
|
|
33
|
+
return GetAccountBalancesNetworkIdEnumFromJSONTyped(json);
|
|
34
|
+
}
|
|
35
|
+
function GetAccountBalancesNetworkIdEnumFromJSONTyped(json, ignoreDiscriminator) {
|
|
36
|
+
return json;
|
|
37
|
+
}
|
|
38
|
+
function GetAccountBalancesNetworkIdEnumToJSON(value) {
|
|
39
|
+
return value;
|
|
40
|
+
}
|
|
41
|
+
|
|
42
|
+
exports.GetAccountBalancesNetworkIdEnumFromJSON = GetAccountBalancesNetworkIdEnumFromJSON;
|
|
43
|
+
exports.GetAccountBalancesNetworkIdEnumFromJSONTyped = GetAccountBalancesNetworkIdEnumFromJSONTyped;
|
|
44
|
+
exports.GetAccountBalancesNetworkIdEnumToJSON = GetAccountBalancesNetworkIdEnumToJSON;
|
|
@@ -0,0 +1,27 @@
|
|
|
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 GetAccountBalancesNetworkIdEnum {
|
|
18
|
+
NUMBER_0 = 0,
|
|
19
|
+
NUMBER_1 = 1,
|
|
20
|
+
NUMBER_10 = 10,
|
|
21
|
+
NUMBER_137 = 137,
|
|
22
|
+
NUMBER_42161 = 42161,
|
|
23
|
+
NUMBER_8453 = 8453
|
|
24
|
+
}
|
|
25
|
+
export declare function GetAccountBalancesNetworkIdEnumFromJSON(json: any): GetAccountBalancesNetworkIdEnum;
|
|
26
|
+
export declare function GetAccountBalancesNetworkIdEnumFromJSONTyped(json: any, ignoreDiscriminator: boolean): GetAccountBalancesNetworkIdEnum;
|
|
27
|
+
export declare function GetAccountBalancesNetworkIdEnumToJSON(value?: GetAccountBalancesNetworkIdEnum | null): any;
|
|
@@ -0,0 +1,38 @@
|
|
|
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 GetAccountBalancesNetworkIdEnum;
|
|
20
|
+
(function (GetAccountBalancesNetworkIdEnum) {
|
|
21
|
+
GetAccountBalancesNetworkIdEnum[GetAccountBalancesNetworkIdEnum["NUMBER_0"] = 0] = "NUMBER_0";
|
|
22
|
+
GetAccountBalancesNetworkIdEnum[GetAccountBalancesNetworkIdEnum["NUMBER_1"] = 1] = "NUMBER_1";
|
|
23
|
+
GetAccountBalancesNetworkIdEnum[GetAccountBalancesNetworkIdEnum["NUMBER_10"] = 10] = "NUMBER_10";
|
|
24
|
+
GetAccountBalancesNetworkIdEnum[GetAccountBalancesNetworkIdEnum["NUMBER_137"] = 137] = "NUMBER_137";
|
|
25
|
+
GetAccountBalancesNetworkIdEnum[GetAccountBalancesNetworkIdEnum["NUMBER_42161"] = 42161] = "NUMBER_42161";
|
|
26
|
+
GetAccountBalancesNetworkIdEnum[GetAccountBalancesNetworkIdEnum["NUMBER_8453"] = 8453] = "NUMBER_8453";
|
|
27
|
+
})(GetAccountBalancesNetworkIdEnum || (GetAccountBalancesNetworkIdEnum = {}));
|
|
28
|
+
function GetAccountBalancesNetworkIdEnumFromJSON(json) {
|
|
29
|
+
return GetAccountBalancesNetworkIdEnumFromJSONTyped(json);
|
|
30
|
+
}
|
|
31
|
+
function GetAccountBalancesNetworkIdEnumFromJSONTyped(json, ignoreDiscriminator) {
|
|
32
|
+
return json;
|
|
33
|
+
}
|
|
34
|
+
function GetAccountBalancesNetworkIdEnumToJSON(value) {
|
|
35
|
+
return value;
|
|
36
|
+
}
|
|
37
|
+
|
|
38
|
+
export { GetAccountBalancesNetworkIdEnum, GetAccountBalancesNetworkIdEnumFromJSON, GetAccountBalancesNetworkIdEnumFromJSONTyped, GetAccountBalancesNetworkIdEnumToJSON };
|
package/src/models/index.d.ts
CHANGED
|
@@ -71,6 +71,7 @@ export * from './FrameworkSettings';
|
|
|
71
71
|
export * from './Funding';
|
|
72
72
|
export * from './FundingExternalWallets';
|
|
73
73
|
export * from './FundingExternalWalletsMinAmount';
|
|
74
|
+
export * from './GetAccountBalancesNetworkIdEnum';
|
|
74
75
|
export * from './GetUserPasskeysResponse';
|
|
75
76
|
export * from './GlobalWalletSettings';
|
|
76
77
|
export * from './HCaptchaSettings';
|