@dynamic-labs/sdk-api-core 0.0.551 → 0.0.553
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 +76 -14
- package/src/apis/SDKApi.d.ts +31 -8
- package/src/apis/SDKApi.js +76 -14
- package/src/index.cjs +28 -16
- package/src/index.js +6 -4
- package/src/models/{EvmAsset.cjs → Asset.cjs} +7 -9
- package/src/models/{EvmAsset.d.ts → Asset.d.ts} +15 -21
- package/src/models/{EvmAsset.js → Asset.js} +5 -7
- package/src/models/AssetDiff.cjs +8 -8
- package/src/models/AssetDiff.d.ts +8 -8
- package/src/models/AssetDiff.js +8 -8
- package/src/models/{EvmAssetTransfer.cjs → AssetTransfer.cjs} +7 -7
- package/src/models/{EvmAssetTransfer.d.ts → AssetTransfer.d.ts} +9 -9
- package/src/models/{EvmAssetTransfer.js → AssetTransfer.js} +5 -5
- package/src/models/ProjectSettingsSdkAccountAbstraction.cjs +2 -0
- package/src/models/ProjectSettingsSdkAccountAbstraction.d.ts +6 -0
- package/src/models/ProjectSettingsSdkAccountAbstraction.js +2 -0
- package/src/models/{SimulateEvmTransactionRequest.cjs → SimulateEVMTransactionRequest.cjs} +7 -7
- package/src/models/{SimulateEvmTransactionRequest.d.ts → SimulateEVMTransactionRequest.d.ts} +11 -11
- package/src/models/{SimulateEvmTransactionRequest.js → SimulateEVMTransactionRequest.js} +5 -5
- package/src/models/SimulateSVMTransactionRequest.cjs +41 -0
- package/src/models/SimulateSVMTransactionRequest.d.ts +52 -0
- package/src/models/SimulateSVMTransactionRequest.js +35 -0
- package/src/models/{SimulateEvmTransactionResponse.cjs → SimulateTransactionResponse.cjs} +7 -7
- package/src/models/SimulateTransactionResponse.d.ts +34 -0
- package/src/models/{SimulateEvmTransactionResponse.js → SimulateTransactionResponse.js} +5 -5
- package/src/models/SolanaChainType.cjs +40 -0
- package/src/models/SolanaChainType.d.ts +23 -0
- package/src/models/SolanaChainType.js +34 -0
- package/src/models/index.d.ts +6 -4
- package/src/models/SimulateEvmTransactionResponse.d.ts +0 -34
|
@@ -0,0 +1,40 @@
|
|
|
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.SolanaChainType = void 0;
|
|
24
|
+
(function (SolanaChainType) {
|
|
25
|
+
SolanaChainType["Mainnet"] = "mainnet";
|
|
26
|
+
SolanaChainType["Devnet"] = "devnet";
|
|
27
|
+
})(exports.SolanaChainType || (exports.SolanaChainType = {}));
|
|
28
|
+
function SolanaChainTypeFromJSON(json) {
|
|
29
|
+
return SolanaChainTypeFromJSONTyped(json);
|
|
30
|
+
}
|
|
31
|
+
function SolanaChainTypeFromJSONTyped(json, ignoreDiscriminator) {
|
|
32
|
+
return json;
|
|
33
|
+
}
|
|
34
|
+
function SolanaChainTypeToJSON(value) {
|
|
35
|
+
return value;
|
|
36
|
+
}
|
|
37
|
+
|
|
38
|
+
exports.SolanaChainTypeFromJSON = SolanaChainTypeFromJSON;
|
|
39
|
+
exports.SolanaChainTypeFromJSONTyped = SolanaChainTypeFromJSONTyped;
|
|
40
|
+
exports.SolanaChainTypeToJSON = SolanaChainTypeToJSON;
|
|
@@ -0,0 +1,23 @@
|
|
|
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 SolanaChainType {
|
|
18
|
+
Mainnet = "mainnet",
|
|
19
|
+
Devnet = "devnet"
|
|
20
|
+
}
|
|
21
|
+
export declare function SolanaChainTypeFromJSON(json: any): SolanaChainType;
|
|
22
|
+
export declare function SolanaChainTypeFromJSONTyped(json: any, ignoreDiscriminator: boolean): SolanaChainType;
|
|
23
|
+
export declare function SolanaChainTypeToJSON(value?: SolanaChainType | null): any;
|
|
@@ -0,0 +1,34 @@
|
|
|
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 SolanaChainType;
|
|
20
|
+
(function (SolanaChainType) {
|
|
21
|
+
SolanaChainType["Mainnet"] = "mainnet";
|
|
22
|
+
SolanaChainType["Devnet"] = "devnet";
|
|
23
|
+
})(SolanaChainType || (SolanaChainType = {}));
|
|
24
|
+
function SolanaChainTypeFromJSON(json) {
|
|
25
|
+
return SolanaChainTypeFromJSONTyped(json);
|
|
26
|
+
}
|
|
27
|
+
function SolanaChainTypeFromJSONTyped(json, ignoreDiscriminator) {
|
|
28
|
+
return json;
|
|
29
|
+
}
|
|
30
|
+
function SolanaChainTypeToJSON(value) {
|
|
31
|
+
return value;
|
|
32
|
+
}
|
|
33
|
+
|
|
34
|
+
export { SolanaChainType, SolanaChainTypeFromJSON, SolanaChainTypeFromJSONTyped, SolanaChainTypeToJSON };
|
package/src/models/index.d.ts
CHANGED
|
@@ -1,4 +1,6 @@
|
|
|
1
|
+
export * from './Asset';
|
|
1
2
|
export * from './AssetDiff';
|
|
3
|
+
export * from './AssetTransfer';
|
|
2
4
|
export * from './AttestationConveyancePreference';
|
|
3
5
|
export * from './AuthModeEnum';
|
|
4
6
|
export * from './AuthSettings';
|
|
@@ -51,8 +53,6 @@ export * from './EmbeddedWalletSecurityMethod';
|
|
|
51
53
|
export * from './EmbeddedWalletVersionEnum';
|
|
52
54
|
export * from './EnvironmentEnum';
|
|
53
55
|
export * from './ErrorMessageWithCode';
|
|
54
|
-
export * from './EvmAsset';
|
|
55
|
-
export * from './EvmAssetTransfer';
|
|
56
56
|
export * from './ExportEmbeddedWalletResponse';
|
|
57
57
|
export * from './ExternalAuth';
|
|
58
58
|
export * from './ExternalAuthSigninRequest';
|
|
@@ -175,8 +175,9 @@ export * from './SdkViewType';
|
|
|
175
175
|
export * from './SdkViewUpdateRequest';
|
|
176
176
|
export * from './SdkViewsResponse';
|
|
177
177
|
export * from './SignInProviderEnum';
|
|
178
|
-
export * from './
|
|
179
|
-
export * from './
|
|
178
|
+
export * from './SimulateEVMTransactionRequest';
|
|
179
|
+
export * from './SimulateSVMTransactionRequest';
|
|
180
|
+
export * from './SimulateTransactionResponse';
|
|
180
181
|
export * from './SmsCountryCode';
|
|
181
182
|
export * from './SmsVerificationCreateRequest';
|
|
182
183
|
export * from './SmsVerificationCreateResponse';
|
|
@@ -184,6 +185,7 @@ export * from './SmsVerificationRetryRequest';
|
|
|
184
185
|
export * from './SmsVerificationVerifyRequest';
|
|
185
186
|
export * from './SocialSignInProvider';
|
|
186
187
|
export * from './SocialSignInProviderEnum';
|
|
188
|
+
export * from './SolanaChainType';
|
|
187
189
|
export * from './SolanaTransactionOptimizationRequest';
|
|
188
190
|
export * from './SolanaTransactionOptimizationResponse';
|
|
189
191
|
export * from './SupportedOnrampsResponse';
|
|
@@ -1,34 +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 { AssetDiff } from './AssetDiff';
|
|
13
|
-
/**
|
|
14
|
-
*
|
|
15
|
-
* @export
|
|
16
|
-
* @interface SimulateEvmTransactionResponse
|
|
17
|
-
*/
|
|
18
|
-
export interface SimulateEvmTransactionResponse {
|
|
19
|
-
/**
|
|
20
|
-
*
|
|
21
|
-
* @type {Array<AssetDiff>}
|
|
22
|
-
* @memberof SimulateEvmTransactionResponse
|
|
23
|
-
*/
|
|
24
|
-
inAssets: Array<AssetDiff>;
|
|
25
|
-
/**
|
|
26
|
-
*
|
|
27
|
-
* @type {Array<AssetDiff>}
|
|
28
|
-
* @memberof SimulateEvmTransactionResponse
|
|
29
|
-
*/
|
|
30
|
-
outAssets: Array<AssetDiff>;
|
|
31
|
-
}
|
|
32
|
-
export declare function SimulateEvmTransactionResponseFromJSON(json: any): SimulateEvmTransactionResponse;
|
|
33
|
-
export declare function SimulateEvmTransactionResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): SimulateEvmTransactionResponse;
|
|
34
|
-
export declare function SimulateEvmTransactionResponseToJSON(value?: SimulateEvmTransactionResponse | null): any;
|