@dynamic-labs/sdk-api-core 0.0.628 → 0.0.630
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 +60 -1
- package/src/apis/SDKApi.d.ts +24 -0
- package/src/apis/SDKApi.js +60 -1
- package/src/index.cjs +0 -8
- package/src/index.js +0 -1
- package/src/models/index.d.ts +0 -1
- package/src/models/GetAccountBalancesNetworkIdEnum.cjs +0 -46
- package/src/models/GetAccountBalancesNetworkIdEnum.d.ts +0 -29
- package/src/models/GetAccountBalancesNetworkIdEnum.js +0 -40
package/package.json
CHANGED
package/src/apis/SDKApi.cjs
CHANGED
|
@@ -59,7 +59,6 @@ require('../models/ExternalWalletFundingDefaultChain.cjs');
|
|
|
59
59
|
require('../models/ExternalWalletFundingTokenRule.cjs');
|
|
60
60
|
var FarcasterSignInRequest = require('../models/FarcasterSignInRequest.cjs');
|
|
61
61
|
require('../models/OnrampProviders.cjs');
|
|
62
|
-
require('../models/GetAccountBalancesNetworkIdEnum.cjs');
|
|
63
62
|
var GetUserPasskeysResponse = require('../models/GetUserPasskeysResponse.cjs');
|
|
64
63
|
var GlobalWalletSettings = require('../models/GlobalWalletSettings.cjs');
|
|
65
64
|
var HealthcheckResponse = require('../models/HealthcheckResponse.cjs');
|
|
@@ -2014,6 +2013,66 @@ class SDKApi extends runtime.BaseAPI {
|
|
|
2014
2013
|
return yield response.value();
|
|
2015
2014
|
});
|
|
2016
2015
|
}
|
|
2016
|
+
/**
|
|
2017
|
+
* Get the access token for a user OAuth account
|
|
2018
|
+
*/
|
|
2019
|
+
getEndUserOauthAccessTokenRaw(requestParameters, initOverrides) {
|
|
2020
|
+
return _tslib.__awaiter(this, void 0, void 0, function* () {
|
|
2021
|
+
if (requestParameters.environmentId === null || requestParameters.environmentId === undefined) {
|
|
2022
|
+
throw new runtime.RequiredError('environmentId', 'Required parameter requestParameters.environmentId was null or undefined when calling getEndUserOauthAccessToken.');
|
|
2023
|
+
}
|
|
2024
|
+
if (requestParameters.oauthAccountId === null || requestParameters.oauthAccountId === undefined) {
|
|
2025
|
+
throw new runtime.RequiredError('oauthAccountId', 'Required parameter requestParameters.oauthAccountId was null or undefined when calling getEndUserOauthAccessToken.');
|
|
2026
|
+
}
|
|
2027
|
+
const queryParameters = {};
|
|
2028
|
+
const headerParameters = {};
|
|
2029
|
+
const response = yield this.request({
|
|
2030
|
+
path: `/sdk/{environmentId}/oauthAccounts/{oauthAccountId}/accessToken`.replace(`{${"environmentId"}}`, encodeURIComponent(String(requestParameters.environmentId))).replace(`{${"oauthAccountId"}}`, encodeURIComponent(String(requestParameters.oauthAccountId))),
|
|
2031
|
+
method: 'GET',
|
|
2032
|
+
headers: headerParameters,
|
|
2033
|
+
query: queryParameters,
|
|
2034
|
+
}, initOverrides);
|
|
2035
|
+
return new runtime.VoidApiResponse(response);
|
|
2036
|
+
});
|
|
2037
|
+
}
|
|
2038
|
+
/**
|
|
2039
|
+
* Get the access token for a user OAuth account
|
|
2040
|
+
*/
|
|
2041
|
+
getEndUserOauthAccessToken(requestParameters, initOverrides) {
|
|
2042
|
+
return _tslib.__awaiter(this, void 0, void 0, function* () {
|
|
2043
|
+
yield this.getEndUserOauthAccessTokenRaw(requestParameters, initOverrides);
|
|
2044
|
+
});
|
|
2045
|
+
}
|
|
2046
|
+
/**
|
|
2047
|
+
* Options call for this endpoint
|
|
2048
|
+
*/
|
|
2049
|
+
getEndUserOauthAccessTokenOptionsRaw(requestParameters, initOverrides) {
|
|
2050
|
+
return _tslib.__awaiter(this, void 0, void 0, function* () {
|
|
2051
|
+
if (requestParameters.environmentId === null || requestParameters.environmentId === undefined) {
|
|
2052
|
+
throw new runtime.RequiredError('environmentId', 'Required parameter requestParameters.environmentId was null or undefined when calling getEndUserOauthAccessTokenOptions.');
|
|
2053
|
+
}
|
|
2054
|
+
if (requestParameters.oauthAccountId === null || requestParameters.oauthAccountId === undefined) {
|
|
2055
|
+
throw new runtime.RequiredError('oauthAccountId', 'Required parameter requestParameters.oauthAccountId was null or undefined when calling getEndUserOauthAccessTokenOptions.');
|
|
2056
|
+
}
|
|
2057
|
+
const queryParameters = {};
|
|
2058
|
+
const headerParameters = {};
|
|
2059
|
+
const response = yield this.request({
|
|
2060
|
+
path: `/sdk/{environmentId}/oauthAccounts/{oauthAccountId}/accessToken`.replace(`{${"environmentId"}}`, encodeURIComponent(String(requestParameters.environmentId))).replace(`{${"oauthAccountId"}}`, encodeURIComponent(String(requestParameters.oauthAccountId))),
|
|
2061
|
+
method: 'OPTIONS',
|
|
2062
|
+
headers: headerParameters,
|
|
2063
|
+
query: queryParameters,
|
|
2064
|
+
}, initOverrides);
|
|
2065
|
+
return new runtime.VoidApiResponse(response);
|
|
2066
|
+
});
|
|
2067
|
+
}
|
|
2068
|
+
/**
|
|
2069
|
+
* Options call for this endpoint
|
|
2070
|
+
*/
|
|
2071
|
+
getEndUserOauthAccessTokenOptions(requestParameters, initOverrides) {
|
|
2072
|
+
return _tslib.__awaiter(this, void 0, void 0, function* () {
|
|
2073
|
+
yield this.getEndUserOauthAccessTokenOptionsRaw(requestParameters, initOverrides);
|
|
2074
|
+
});
|
|
2075
|
+
}
|
|
2017
2076
|
/**
|
|
2018
2077
|
* Get the environment\'s settings
|
|
2019
2078
|
*/
|
package/src/apis/SDKApi.d.ts
CHANGED
|
@@ -215,6 +215,14 @@ export interface GetEmbeddedWalletPasscodeOptionRequest {
|
|
|
215
215
|
export interface GetEmbeddedWalletsDeleteRequestRequest {
|
|
216
216
|
environmentId: string;
|
|
217
217
|
}
|
|
218
|
+
export interface GetEndUserOauthAccessTokenRequest {
|
|
219
|
+
environmentId: string;
|
|
220
|
+
oauthAccountId: string;
|
|
221
|
+
}
|
|
222
|
+
export interface GetEndUserOauthAccessTokenOptionsRequest {
|
|
223
|
+
environmentId: string;
|
|
224
|
+
oauthAccountId: string;
|
|
225
|
+
}
|
|
218
226
|
export interface GetEnvironmentSettingsRequest {
|
|
219
227
|
environmentId: string;
|
|
220
228
|
sdkVersion?: string;
|
|
@@ -1163,6 +1171,22 @@ export declare class SDKApi extends runtime.BaseAPI {
|
|
|
1163
1171
|
* Generates the turnkey request body for a user\'s delete wallets request
|
|
1164
1172
|
*/
|
|
1165
1173
|
getEmbeddedWalletsDeleteRequest(requestParameters: GetEmbeddedWalletsDeleteRequestRequest, initOverrides?: RequestInit): Promise<TurnkeyDeleteEmbeddedWalletsRequestBody>;
|
|
1174
|
+
/**
|
|
1175
|
+
* Get the access token for a user OAuth account
|
|
1176
|
+
*/
|
|
1177
|
+
getEndUserOauthAccessTokenRaw(requestParameters: GetEndUserOauthAccessTokenRequest, initOverrides?: RequestInit): Promise<runtime.ApiResponse<void>>;
|
|
1178
|
+
/**
|
|
1179
|
+
* Get the access token for a user OAuth account
|
|
1180
|
+
*/
|
|
1181
|
+
getEndUserOauthAccessToken(requestParameters: GetEndUserOauthAccessTokenRequest, initOverrides?: RequestInit): Promise<void>;
|
|
1182
|
+
/**
|
|
1183
|
+
* Options call for this endpoint
|
|
1184
|
+
*/
|
|
1185
|
+
getEndUserOauthAccessTokenOptionsRaw(requestParameters: GetEndUserOauthAccessTokenOptionsRequest, initOverrides?: RequestInit): Promise<runtime.ApiResponse<void>>;
|
|
1186
|
+
/**
|
|
1187
|
+
* Options call for this endpoint
|
|
1188
|
+
*/
|
|
1189
|
+
getEndUserOauthAccessTokenOptions(requestParameters: GetEndUserOauthAccessTokenOptionsRequest, initOverrides?: RequestInit): Promise<void>;
|
|
1166
1190
|
/**
|
|
1167
1191
|
* Get the environment\'s settings
|
|
1168
1192
|
*/
|
package/src/apis/SDKApi.js
CHANGED
|
@@ -55,7 +55,6 @@ import '../models/ExternalWalletFundingDefaultChain.js';
|
|
|
55
55
|
import '../models/ExternalWalletFundingTokenRule.js';
|
|
56
56
|
import { FarcasterSignInRequestToJSON } from '../models/FarcasterSignInRequest.js';
|
|
57
57
|
import '../models/OnrampProviders.js';
|
|
58
|
-
import '../models/GetAccountBalancesNetworkIdEnum.js';
|
|
59
58
|
import { GetUserPasskeysResponseFromJSON } from '../models/GetUserPasskeysResponse.js';
|
|
60
59
|
import { GlobalWalletSettingsFromJSON } from '../models/GlobalWalletSettings.js';
|
|
61
60
|
import { HealthcheckResponseFromJSON } from '../models/HealthcheckResponse.js';
|
|
@@ -2010,6 +2009,66 @@ class SDKApi extends BaseAPI {
|
|
|
2010
2009
|
return yield response.value();
|
|
2011
2010
|
});
|
|
2012
2011
|
}
|
|
2012
|
+
/**
|
|
2013
|
+
* Get the access token for a user OAuth account
|
|
2014
|
+
*/
|
|
2015
|
+
getEndUserOauthAccessTokenRaw(requestParameters, initOverrides) {
|
|
2016
|
+
return __awaiter(this, void 0, void 0, function* () {
|
|
2017
|
+
if (requestParameters.environmentId === null || requestParameters.environmentId === undefined) {
|
|
2018
|
+
throw new RequiredError('environmentId', 'Required parameter requestParameters.environmentId was null or undefined when calling getEndUserOauthAccessToken.');
|
|
2019
|
+
}
|
|
2020
|
+
if (requestParameters.oauthAccountId === null || requestParameters.oauthAccountId === undefined) {
|
|
2021
|
+
throw new RequiredError('oauthAccountId', 'Required parameter requestParameters.oauthAccountId was null or undefined when calling getEndUserOauthAccessToken.');
|
|
2022
|
+
}
|
|
2023
|
+
const queryParameters = {};
|
|
2024
|
+
const headerParameters = {};
|
|
2025
|
+
const response = yield this.request({
|
|
2026
|
+
path: `/sdk/{environmentId}/oauthAccounts/{oauthAccountId}/accessToken`.replace(`{${"environmentId"}}`, encodeURIComponent(String(requestParameters.environmentId))).replace(`{${"oauthAccountId"}}`, encodeURIComponent(String(requestParameters.oauthAccountId))),
|
|
2027
|
+
method: 'GET',
|
|
2028
|
+
headers: headerParameters,
|
|
2029
|
+
query: queryParameters,
|
|
2030
|
+
}, initOverrides);
|
|
2031
|
+
return new VoidApiResponse(response);
|
|
2032
|
+
});
|
|
2033
|
+
}
|
|
2034
|
+
/**
|
|
2035
|
+
* Get the access token for a user OAuth account
|
|
2036
|
+
*/
|
|
2037
|
+
getEndUserOauthAccessToken(requestParameters, initOverrides) {
|
|
2038
|
+
return __awaiter(this, void 0, void 0, function* () {
|
|
2039
|
+
yield this.getEndUserOauthAccessTokenRaw(requestParameters, initOverrides);
|
|
2040
|
+
});
|
|
2041
|
+
}
|
|
2042
|
+
/**
|
|
2043
|
+
* Options call for this endpoint
|
|
2044
|
+
*/
|
|
2045
|
+
getEndUserOauthAccessTokenOptionsRaw(requestParameters, initOverrides) {
|
|
2046
|
+
return __awaiter(this, void 0, void 0, function* () {
|
|
2047
|
+
if (requestParameters.environmentId === null || requestParameters.environmentId === undefined) {
|
|
2048
|
+
throw new RequiredError('environmentId', 'Required parameter requestParameters.environmentId was null or undefined when calling getEndUserOauthAccessTokenOptions.');
|
|
2049
|
+
}
|
|
2050
|
+
if (requestParameters.oauthAccountId === null || requestParameters.oauthAccountId === undefined) {
|
|
2051
|
+
throw new RequiredError('oauthAccountId', 'Required parameter requestParameters.oauthAccountId was null or undefined when calling getEndUserOauthAccessTokenOptions.');
|
|
2052
|
+
}
|
|
2053
|
+
const queryParameters = {};
|
|
2054
|
+
const headerParameters = {};
|
|
2055
|
+
const response = yield this.request({
|
|
2056
|
+
path: `/sdk/{environmentId}/oauthAccounts/{oauthAccountId}/accessToken`.replace(`{${"environmentId"}}`, encodeURIComponent(String(requestParameters.environmentId))).replace(`{${"oauthAccountId"}}`, encodeURIComponent(String(requestParameters.oauthAccountId))),
|
|
2057
|
+
method: 'OPTIONS',
|
|
2058
|
+
headers: headerParameters,
|
|
2059
|
+
query: queryParameters,
|
|
2060
|
+
}, initOverrides);
|
|
2061
|
+
return new VoidApiResponse(response);
|
|
2062
|
+
});
|
|
2063
|
+
}
|
|
2064
|
+
/**
|
|
2065
|
+
* Options call for this endpoint
|
|
2066
|
+
*/
|
|
2067
|
+
getEndUserOauthAccessTokenOptions(requestParameters, initOverrides) {
|
|
2068
|
+
return __awaiter(this, void 0, void 0, function* () {
|
|
2069
|
+
yield this.getEndUserOauthAccessTokenOptionsRaw(requestParameters, initOverrides);
|
|
2070
|
+
});
|
|
2071
|
+
}
|
|
2013
2072
|
/**
|
|
2014
2073
|
* Get the environment\'s settings
|
|
2015
2074
|
*/
|
package/src/index.cjs
CHANGED
|
@@ -84,7 +84,6 @@ var Funding = require('./models/Funding.cjs');
|
|
|
84
84
|
var FundingExternalWallets = require('./models/FundingExternalWallets.cjs');
|
|
85
85
|
var FundingExternalWalletsDefaultSettings = require('./models/FundingExternalWalletsDefaultSettings.cjs');
|
|
86
86
|
var FundingExternalWalletsMinAmount = require('./models/FundingExternalWalletsMinAmount.cjs');
|
|
87
|
-
var GetAccountBalancesNetworkIdEnum = require('./models/GetAccountBalancesNetworkIdEnum.cjs');
|
|
88
87
|
var GetUserPasskeysResponse = require('./models/GetUserPasskeysResponse.cjs');
|
|
89
88
|
var GlobalWalletSettings = require('./models/GlobalWalletSettings.cjs');
|
|
90
89
|
var HCaptchaSettings = require('./models/HCaptchaSettings.cjs');
|
|
@@ -609,13 +608,6 @@ exports.FundingExternalWalletsDefaultSettingsToJSON = FundingExternalWalletsDefa
|
|
|
609
608
|
exports.FundingExternalWalletsMinAmountFromJSON = FundingExternalWalletsMinAmount.FundingExternalWalletsMinAmountFromJSON;
|
|
610
609
|
exports.FundingExternalWalletsMinAmountFromJSONTyped = FundingExternalWalletsMinAmount.FundingExternalWalletsMinAmountFromJSONTyped;
|
|
611
610
|
exports.FundingExternalWalletsMinAmountToJSON = FundingExternalWalletsMinAmount.FundingExternalWalletsMinAmountToJSON;
|
|
612
|
-
Object.defineProperty(exports, 'GetAccountBalancesNetworkIdEnum', {
|
|
613
|
-
enumerable: true,
|
|
614
|
-
get: function () { return GetAccountBalancesNetworkIdEnum.GetAccountBalancesNetworkIdEnum; }
|
|
615
|
-
});
|
|
616
|
-
exports.GetAccountBalancesNetworkIdEnumFromJSON = GetAccountBalancesNetworkIdEnum.GetAccountBalancesNetworkIdEnumFromJSON;
|
|
617
|
-
exports.GetAccountBalancesNetworkIdEnumFromJSONTyped = GetAccountBalancesNetworkIdEnum.GetAccountBalancesNetworkIdEnumFromJSONTyped;
|
|
618
|
-
exports.GetAccountBalancesNetworkIdEnumToJSON = GetAccountBalancesNetworkIdEnum.GetAccountBalancesNetworkIdEnumToJSON;
|
|
619
611
|
exports.GetUserPasskeysResponseFromJSON = GetUserPasskeysResponse.GetUserPasskeysResponseFromJSON;
|
|
620
612
|
exports.GetUserPasskeysResponseFromJSONTyped = GetUserPasskeysResponse.GetUserPasskeysResponseFromJSONTyped;
|
|
621
613
|
exports.GetUserPasskeysResponseToJSON = GetUserPasskeysResponse.GetUserPasskeysResponseToJSON;
|
package/src/index.js
CHANGED
|
@@ -80,7 +80,6 @@ export { FundingFromJSON, FundingFromJSONTyped, FundingToJSON } from './models/F
|
|
|
80
80
|
export { FundingExternalWalletsFromJSON, FundingExternalWalletsFromJSONTyped, FundingExternalWalletsToJSON } from './models/FundingExternalWallets.js';
|
|
81
81
|
export { FundingExternalWalletsDefaultSettingsFromJSON, FundingExternalWalletsDefaultSettingsFromJSONTyped, FundingExternalWalletsDefaultSettingsToJSON } from './models/FundingExternalWalletsDefaultSettings.js';
|
|
82
82
|
export { FundingExternalWalletsMinAmountFromJSON, FundingExternalWalletsMinAmountFromJSONTyped, FundingExternalWalletsMinAmountToJSON } from './models/FundingExternalWalletsMinAmount.js';
|
|
83
|
-
export { GetAccountBalancesNetworkIdEnum, GetAccountBalancesNetworkIdEnumFromJSON, GetAccountBalancesNetworkIdEnumFromJSONTyped, GetAccountBalancesNetworkIdEnumToJSON } from './models/GetAccountBalancesNetworkIdEnum.js';
|
|
84
83
|
export { GetUserPasskeysResponseFromJSON, GetUserPasskeysResponseFromJSONTyped, GetUserPasskeysResponseToJSON } from './models/GetUserPasskeysResponse.js';
|
|
85
84
|
export { GlobalWalletSettingsFromJSON, GlobalWalletSettingsFromJSONTyped, GlobalWalletSettingsToJSON } from './models/GlobalWalletSettings.js';
|
|
86
85
|
export { HCaptchaSettingsFromJSON, HCaptchaSettingsFromJSONTyped, HCaptchaSettingsToJSON } from './models/HCaptchaSettings.js';
|
package/src/models/index.d.ts
CHANGED
|
@@ -78,7 +78,6 @@ export * from './Funding';
|
|
|
78
78
|
export * from './FundingExternalWallets';
|
|
79
79
|
export * from './FundingExternalWalletsDefaultSettings';
|
|
80
80
|
export * from './FundingExternalWalletsMinAmount';
|
|
81
|
-
export * from './GetAccountBalancesNetworkIdEnum';
|
|
82
81
|
export * from './GetUserPasskeysResponse';
|
|
83
82
|
export * from './GlobalWalletSettings';
|
|
84
83
|
export * from './HCaptchaSettings';
|
|
@@ -1,46 +0,0 @@
|
|
|
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_101"] = 101] = "NUMBER_101";
|
|
29
|
-
GetAccountBalancesNetworkIdEnum[GetAccountBalancesNetworkIdEnum["NUMBER_103"] = 103] = "NUMBER_103";
|
|
30
|
-
GetAccountBalancesNetworkIdEnum[GetAccountBalancesNetworkIdEnum["NUMBER_137"] = 137] = "NUMBER_137";
|
|
31
|
-
GetAccountBalancesNetworkIdEnum[GetAccountBalancesNetworkIdEnum["NUMBER_42161"] = 42161] = "NUMBER_42161";
|
|
32
|
-
GetAccountBalancesNetworkIdEnum[GetAccountBalancesNetworkIdEnum["NUMBER_8453"] = 8453] = "NUMBER_8453";
|
|
33
|
-
})(exports.GetAccountBalancesNetworkIdEnum || (exports.GetAccountBalancesNetworkIdEnum = {}));
|
|
34
|
-
function GetAccountBalancesNetworkIdEnumFromJSON(json) {
|
|
35
|
-
return GetAccountBalancesNetworkIdEnumFromJSONTyped(json);
|
|
36
|
-
}
|
|
37
|
-
function GetAccountBalancesNetworkIdEnumFromJSONTyped(json, ignoreDiscriminator) {
|
|
38
|
-
return json;
|
|
39
|
-
}
|
|
40
|
-
function GetAccountBalancesNetworkIdEnumToJSON(value) {
|
|
41
|
-
return value;
|
|
42
|
-
}
|
|
43
|
-
|
|
44
|
-
exports.GetAccountBalancesNetworkIdEnumFromJSON = GetAccountBalancesNetworkIdEnumFromJSON;
|
|
45
|
-
exports.GetAccountBalancesNetworkIdEnumFromJSONTyped = GetAccountBalancesNetworkIdEnumFromJSONTyped;
|
|
46
|
-
exports.GetAccountBalancesNetworkIdEnumToJSON = GetAccountBalancesNetworkIdEnumToJSON;
|
|
@@ -1,29 +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 GetAccountBalancesNetworkIdEnum {
|
|
18
|
-
NUMBER_0 = 0,
|
|
19
|
-
NUMBER_1 = 1,
|
|
20
|
-
NUMBER_10 = 10,
|
|
21
|
-
NUMBER_101 = 101,
|
|
22
|
-
NUMBER_103 = 103,
|
|
23
|
-
NUMBER_137 = 137,
|
|
24
|
-
NUMBER_42161 = 42161,
|
|
25
|
-
NUMBER_8453 = 8453
|
|
26
|
-
}
|
|
27
|
-
export declare function GetAccountBalancesNetworkIdEnumFromJSON(json: any): GetAccountBalancesNetworkIdEnum;
|
|
28
|
-
export declare function GetAccountBalancesNetworkIdEnumFromJSONTyped(json: any, ignoreDiscriminator: boolean): GetAccountBalancesNetworkIdEnum;
|
|
29
|
-
export declare function GetAccountBalancesNetworkIdEnumToJSON(value?: GetAccountBalancesNetworkIdEnum | null): any;
|
|
@@ -1,40 +0,0 @@
|
|
|
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_101"] = 101] = "NUMBER_101";
|
|
25
|
-
GetAccountBalancesNetworkIdEnum[GetAccountBalancesNetworkIdEnum["NUMBER_103"] = 103] = "NUMBER_103";
|
|
26
|
-
GetAccountBalancesNetworkIdEnum[GetAccountBalancesNetworkIdEnum["NUMBER_137"] = 137] = "NUMBER_137";
|
|
27
|
-
GetAccountBalancesNetworkIdEnum[GetAccountBalancesNetworkIdEnum["NUMBER_42161"] = 42161] = "NUMBER_42161";
|
|
28
|
-
GetAccountBalancesNetworkIdEnum[GetAccountBalancesNetworkIdEnum["NUMBER_8453"] = 8453] = "NUMBER_8453";
|
|
29
|
-
})(GetAccountBalancesNetworkIdEnum || (GetAccountBalancesNetworkIdEnum = {}));
|
|
30
|
-
function GetAccountBalancesNetworkIdEnumFromJSON(json) {
|
|
31
|
-
return GetAccountBalancesNetworkIdEnumFromJSONTyped(json);
|
|
32
|
-
}
|
|
33
|
-
function GetAccountBalancesNetworkIdEnumFromJSONTyped(json, ignoreDiscriminator) {
|
|
34
|
-
return json;
|
|
35
|
-
}
|
|
36
|
-
function GetAccountBalancesNetworkIdEnumToJSON(value) {
|
|
37
|
-
return value;
|
|
38
|
-
}
|
|
39
|
-
|
|
40
|
-
export { GetAccountBalancesNetworkIdEnum, GetAccountBalancesNetworkIdEnumFromJSON, GetAccountBalancesNetworkIdEnumFromJSONTyped, GetAccountBalancesNetworkIdEnumToJSON };
|