@dynamic-labs/sdk-api-core 0.0.552 → 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.
Files changed (29) hide show
  1. package/package.json +1 -1
  2. package/src/apis/SDKApi.cjs +76 -14
  3. package/src/apis/SDKApi.d.ts +31 -8
  4. package/src/apis/SDKApi.js +76 -14
  5. package/src/index.cjs +28 -16
  6. package/src/index.js +6 -4
  7. package/src/models/{EvmAsset.cjs → Asset.cjs} +7 -9
  8. package/src/models/{EvmAsset.d.ts → Asset.d.ts} +15 -21
  9. package/src/models/{EvmAsset.js → Asset.js} +5 -7
  10. package/src/models/AssetDiff.cjs +8 -8
  11. package/src/models/AssetDiff.d.ts +8 -8
  12. package/src/models/AssetDiff.js +8 -8
  13. package/src/models/{EvmAssetTransfer.cjs → AssetTransfer.cjs} +7 -7
  14. package/src/models/{EvmAssetTransfer.d.ts → AssetTransfer.d.ts} +9 -9
  15. package/src/models/{EvmAssetTransfer.js → AssetTransfer.js} +5 -5
  16. package/src/models/{SimulateEvmTransactionRequest.cjs → SimulateEVMTransactionRequest.cjs} +7 -7
  17. package/src/models/{SimulateEvmTransactionRequest.d.ts → SimulateEVMTransactionRequest.d.ts} +11 -11
  18. package/src/models/{SimulateEvmTransactionRequest.js → SimulateEVMTransactionRequest.js} +5 -5
  19. package/src/models/SimulateSVMTransactionRequest.cjs +41 -0
  20. package/src/models/SimulateSVMTransactionRequest.d.ts +52 -0
  21. package/src/models/SimulateSVMTransactionRequest.js +35 -0
  22. package/src/models/{SimulateEvmTransactionResponse.cjs → SimulateTransactionResponse.cjs} +7 -7
  23. package/src/models/SimulateTransactionResponse.d.ts +34 -0
  24. package/src/models/{SimulateEvmTransactionResponse.js → SimulateTransactionResponse.js} +5 -5
  25. package/src/models/SolanaChainType.cjs +40 -0
  26. package/src/models/SolanaChainType.d.ts +23 -0
  27. package/src/models/SolanaChainType.js +34 -0
  28. package/src/models/index.d.ts +6 -4
  29. package/src/models/SimulateEvmTransactionResponse.d.ts +0 -34
@@ -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 };
@@ -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 './SimulateEvmTransactionRequest';
179
- export * from './SimulateEvmTransactionResponse';
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;