@dynamic-labs/sdk-api 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 };
@@ -71,14 +71,19 @@ export * from './ChainalysisCheckResultEnum';
71
71
  export * from './ChainalysisConfiguration';
72
72
  export * from './Checkout';
73
73
  export * from './CheckoutCreateRequest';
74
+ export * from './CheckoutEvmApprovalData';
75
+ export * from './CheckoutEvmTransactionData';
74
76
  export * from './CheckoutExecutionStateEnum';
75
77
  export * from './CheckoutFailure';
76
78
  export * from './CheckoutFeeBreakdown';
77
79
  export * from './CheckoutModeEnum';
80
+ export * from './CheckoutPsbtTransactionData';
78
81
  export * from './CheckoutQuoteSnapshot';
79
82
  export * from './CheckoutRiskStateEnum';
83
+ export * from './CheckoutSerializedTransactionData';
80
84
  export * from './CheckoutSettlementData';
81
85
  export * from './CheckoutSettlementStateEnum';
86
+ export * from './CheckoutSigningPayload';
82
87
  export * from './CheckoutSourceTypeEnum';
83
88
  export * from './CheckoutTransaction';
84
89
  export * from './CheckoutTransactionCreateRequest';
@@ -159,6 +164,8 @@ export * from './DepositAmountsConfigInput';
159
164
  export * from './DestinationConfigInput';
160
165
  export * from './DestinationTypeEnum';
161
166
  export * from './DeviceRegistrationRequest';
167
+ export * from './DeviceRegistrationResponse';
168
+ export * from './DeviceRegistrationsResponse';
162
169
  export * from './DnsRecordType';
163
170
  export * from './Duration';
164
171
  export * from './DynamicJwt';
@@ -338,6 +345,7 @@ export * from './NetworkConfigurationResponse';
338
345
  export * from './NextJsSettings';
339
346
  export * from './NextViewEnum';
340
347
  export * from './NonceResponse';
348
+ export * from './NoncesResponse';
341
349
  export * from './NotFound';
342
350
  export * from './OAuthAccount';
343
351
  export * from './OauthInitAuthRequest';