@dynamic-labs/sdk-api-core 0.0.884 → 0.0.886

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 (34) hide show
  1. package/package.json +1 -1
  2. package/src/apis/SDKApi.cjs +231 -0
  3. package/src/apis/SDKApi.d.ts +89 -1
  4. package/src/apis/SDKApi.js +231 -0
  5. package/src/index.cjs +32 -0
  6. package/src/index.js +8 -0
  7. package/src/models/CheckoutEvmApprovalData.cjs +47 -0
  8. package/src/models/CheckoutEvmApprovalData.d.ts +39 -0
  9. package/src/models/CheckoutEvmApprovalData.js +41 -0
  10. package/src/models/CheckoutEvmTransactionData.cjs +39 -0
  11. package/src/models/CheckoutEvmTransactionData.d.ts +45 -0
  12. package/src/models/CheckoutEvmTransactionData.js +33 -0
  13. package/src/models/CheckoutPsbtTransactionData.cjs +43 -0
  14. package/src/models/CheckoutPsbtTransactionData.d.ts +27 -0
  15. package/src/models/CheckoutPsbtTransactionData.js +37 -0
  16. package/src/models/CheckoutSerializedTransactionData.cjs +43 -0
  17. package/src/models/CheckoutSerializedTransactionData.d.ts +27 -0
  18. package/src/models/CheckoutSerializedTransactionData.js +37 -0
  19. package/src/models/CheckoutSigningPayload.cjs +48 -0
  20. package/src/models/CheckoutSigningPayload.d.ts +62 -0
  21. package/src/models/CheckoutSigningPayload.js +42 -0
  22. package/src/models/CheckoutTransaction.cjs +3 -0
  23. package/src/models/CheckoutTransaction.d.ts +7 -0
  24. package/src/models/CheckoutTransaction.js +3 -0
  25. package/src/models/DeviceRegistrationResponse.cjs +37 -0
  26. package/src/models/DeviceRegistrationResponse.d.ts +39 -0
  27. package/src/models/DeviceRegistrationResponse.js +31 -0
  28. package/src/models/DeviceRegistrationsResponse.cjs +35 -0
  29. package/src/models/DeviceRegistrationsResponse.d.ts +34 -0
  30. package/src/models/DeviceRegistrationsResponse.js +29 -0
  31. package/src/models/NoncesResponse.cjs +43 -0
  32. package/src/models/NoncesResponse.d.ts +27 -0
  33. package/src/models/NoncesResponse.js +37 -0
  34. package/src/models/index.d.ts +8 -0
@@ -0,0 +1,29 @@
1
+ import { DeviceRegistrationResponseFromJSON, DeviceRegistrationResponseToJSON } from './DeviceRegistrationResponse.js';
2
+
3
+ /* tslint:disable */
4
+ function DeviceRegistrationsResponseFromJSON(json) {
5
+ return DeviceRegistrationsResponseFromJSONTyped(json);
6
+ }
7
+ function DeviceRegistrationsResponseFromJSONTyped(json, ignoreDiscriminator) {
8
+ if ((json === undefined) || (json === null)) {
9
+ return json;
10
+ }
11
+ return {
12
+ 'count': json['count'],
13
+ 'deviceRegistrations': (json['deviceRegistrations'].map(DeviceRegistrationResponseFromJSON)),
14
+ };
15
+ }
16
+ function DeviceRegistrationsResponseToJSON(value) {
17
+ if (value === undefined) {
18
+ return undefined;
19
+ }
20
+ if (value === null) {
21
+ return null;
22
+ }
23
+ return {
24
+ 'count': value.count,
25
+ 'deviceRegistrations': (value.deviceRegistrations.map(DeviceRegistrationResponseToJSON)),
26
+ };
27
+ }
28
+
29
+ export { DeviceRegistrationsResponseFromJSON, DeviceRegistrationsResponseFromJSONTyped, DeviceRegistrationsResponseToJSON };
@@ -0,0 +1,43 @@
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
+ function NoncesResponseFromJSON(json) {
19
+ return NoncesResponseFromJSONTyped(json);
20
+ }
21
+ function NoncesResponseFromJSONTyped(json, ignoreDiscriminator) {
22
+ if ((json === undefined) || (json === null)) {
23
+ return json;
24
+ }
25
+ return {
26
+ 'nonces': json['nonces'],
27
+ };
28
+ }
29
+ function NoncesResponseToJSON(value) {
30
+ if (value === undefined) {
31
+ return undefined;
32
+ }
33
+ if (value === null) {
34
+ return null;
35
+ }
36
+ return {
37
+ 'nonces': value.nonces,
38
+ };
39
+ }
40
+
41
+ exports.NoncesResponseFromJSON = NoncesResponseFromJSON;
42
+ exports.NoncesResponseFromJSONTyped = NoncesResponseFromJSONTyped;
43
+ exports.NoncesResponseToJSON = NoncesResponseToJSON;
@@ -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
+ * @interface NoncesResponse
16
+ */
17
+ export interface NoncesResponse {
18
+ /**
19
+ *
20
+ * @type {Array<string>}
21
+ * @memberof NoncesResponse
22
+ */
23
+ nonces: Array<string>;
24
+ }
25
+ export declare function NoncesResponseFromJSON(json: any): NoncesResponse;
26
+ export declare function NoncesResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): NoncesResponse;
27
+ export declare function NoncesResponseToJSON(value?: NoncesResponse | null): any;
@@ -0,0 +1,37 @@
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
+ function NoncesResponseFromJSON(json) {
15
+ return NoncesResponseFromJSONTyped(json);
16
+ }
17
+ function NoncesResponseFromJSONTyped(json, ignoreDiscriminator) {
18
+ if ((json === undefined) || (json === null)) {
19
+ return json;
20
+ }
21
+ return {
22
+ 'nonces': json['nonces'],
23
+ };
24
+ }
25
+ function NoncesResponseToJSON(value) {
26
+ if (value === undefined) {
27
+ return undefined;
28
+ }
29
+ if (value === null) {
30
+ return null;
31
+ }
32
+ return {
33
+ 'nonces': value.nonces,
34
+ };
35
+ }
36
+
37
+ export { NoncesResponseFromJSON, NoncesResponseFromJSONTyped, NoncesResponseToJSON };
@@ -32,14 +32,19 @@ export * from './ChainConfiguration';
32
32
  export * from './ChainEnum';
33
33
  export * from './Checkout';
34
34
  export * from './CheckoutCreateRequest';
35
+ export * from './CheckoutEvmApprovalData';
36
+ export * from './CheckoutEvmTransactionData';
35
37
  export * from './CheckoutExecutionStateEnum';
36
38
  export * from './CheckoutFailure';
37
39
  export * from './CheckoutFeeBreakdown';
38
40
  export * from './CheckoutModeEnum';
41
+ export * from './CheckoutPsbtTransactionData';
39
42
  export * from './CheckoutQuoteSnapshot';
40
43
  export * from './CheckoutRiskStateEnum';
44
+ export * from './CheckoutSerializedTransactionData';
41
45
  export * from './CheckoutSettlementData';
42
46
  export * from './CheckoutSettlementStateEnum';
47
+ export * from './CheckoutSigningPayload';
43
48
  export * from './CheckoutSourceTypeEnum';
44
49
  export * from './CheckoutTransaction';
45
50
  export * from './CheckoutTransactionCreateRequest';
@@ -96,6 +101,8 @@ export * from './DepositAmountsConfigInput';
96
101
  export * from './DestinationConfigInput';
97
102
  export * from './DestinationTypeEnum';
98
103
  export * from './DeviceRegistrationRequest';
104
+ export * from './DeviceRegistrationResponse';
105
+ export * from './DeviceRegistrationsResponse';
99
106
  export * from './Duration';
100
107
  export * from './DynamicJwt';
101
108
  export * from './EcdsaValidatorOptions';
@@ -219,6 +226,7 @@ export * from './NetworkConfigurationResponse';
219
226
  export * from './NextJsSettings';
220
227
  export * from './NextViewEnum';
221
228
  export * from './NonceResponse';
229
+ export * from './NoncesResponse';
222
230
  export * from './NotFound';
223
231
  export * from './OAuthAccount';
224
232
  export * from './OauthInitAuthRequest';