@dynamic-labs/sdk-api-core 0.0.912 → 0.0.913
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/models/Checkout.cjs +0 -2
- package/src/models/Checkout.d.ts +0 -6
- package/src/models/Checkout.js +0 -2
- package/src/models/CheckoutCreateRequest.cjs +0 -2
- package/src/models/CheckoutCreateRequest.d.ts +0 -6
- package/src/models/CheckoutCreateRequest.js +0 -2
- package/src/models/CheckoutUpdateRequest.cjs +0 -2
- package/src/models/CheckoutUpdateRequest.d.ts +0 -6
- package/src/models/CheckoutUpdateRequest.js +0 -2
package/package.json
CHANGED
package/src/models/Checkout.cjs
CHANGED
|
@@ -23,7 +23,6 @@ function CheckoutFromJSONTyped(json, ignoreDiscriminator) {
|
|
|
23
23
|
'destinationConfig': DestinationConfigInput.DestinationConfigInputFromJSON(json['destinationConfig']),
|
|
24
24
|
'depositConfig': !runtime.exists(json, 'depositConfig') ? undefined : DepositAmountsConfigInput.DepositAmountsConfigInputFromJSON(json['depositConfig']),
|
|
25
25
|
'enableOrchestration': json['enableOrchestration'],
|
|
26
|
-
'integratorFeeBps': !runtime.exists(json, 'integratorFeeBps') ? undefined : json['integratorFeeBps'],
|
|
27
26
|
'geoRestrictions': !runtime.exists(json, 'geoRestrictions') ? undefined : json['geoRestrictions'],
|
|
28
27
|
'exchangeRestrictions': !runtime.exists(json, 'exchangeRestrictions') ? undefined : json['exchangeRestrictions'],
|
|
29
28
|
'createdAt': (new Date(json['createdAt'])),
|
|
@@ -44,7 +43,6 @@ function CheckoutToJSON(value) {
|
|
|
44
43
|
'destinationConfig': DestinationConfigInput.DestinationConfigInputToJSON(value.destinationConfig),
|
|
45
44
|
'depositConfig': DepositAmountsConfigInput.DepositAmountsConfigInputToJSON(value.depositConfig),
|
|
46
45
|
'enableOrchestration': value.enableOrchestration,
|
|
47
|
-
'integratorFeeBps': value.integratorFeeBps,
|
|
48
46
|
'geoRestrictions': value.geoRestrictions,
|
|
49
47
|
'exchangeRestrictions': value.exchangeRestrictions,
|
|
50
48
|
'createdAt': (value.createdAt.toISOString()),
|
package/src/models/Checkout.d.ts
CHANGED
package/src/models/Checkout.js
CHANGED
|
@@ -19,7 +19,6 @@ function CheckoutFromJSONTyped(json, ignoreDiscriminator) {
|
|
|
19
19
|
'destinationConfig': DestinationConfigInputFromJSON(json['destinationConfig']),
|
|
20
20
|
'depositConfig': !exists(json, 'depositConfig') ? undefined : DepositAmountsConfigInputFromJSON(json['depositConfig']),
|
|
21
21
|
'enableOrchestration': json['enableOrchestration'],
|
|
22
|
-
'integratorFeeBps': !exists(json, 'integratorFeeBps') ? undefined : json['integratorFeeBps'],
|
|
23
22
|
'geoRestrictions': !exists(json, 'geoRestrictions') ? undefined : json['geoRestrictions'],
|
|
24
23
|
'exchangeRestrictions': !exists(json, 'exchangeRestrictions') ? undefined : json['exchangeRestrictions'],
|
|
25
24
|
'createdAt': (new Date(json['createdAt'])),
|
|
@@ -40,7 +39,6 @@ function CheckoutToJSON(value) {
|
|
|
40
39
|
'destinationConfig': DestinationConfigInputToJSON(value.destinationConfig),
|
|
41
40
|
'depositConfig': DepositAmountsConfigInputToJSON(value.depositConfig),
|
|
42
41
|
'enableOrchestration': value.enableOrchestration,
|
|
43
|
-
'integratorFeeBps': value.integratorFeeBps,
|
|
44
42
|
'geoRestrictions': value.geoRestrictions,
|
|
45
43
|
'exchangeRestrictions': value.exchangeRestrictions,
|
|
46
44
|
'createdAt': (value.createdAt.toISOString()),
|
|
@@ -22,7 +22,6 @@ function CheckoutCreateRequestFromJSONTyped(json, ignoreDiscriminator) {
|
|
|
22
22
|
'destinationConfig': DestinationConfigInput.DestinationConfigInputFromJSON(json['destinationConfig']),
|
|
23
23
|
'depositConfig': !runtime.exists(json, 'depositConfig') ? undefined : DepositAmountsConfigInput.DepositAmountsConfigInputFromJSON(json['depositConfig']),
|
|
24
24
|
'enableOrchestration': !runtime.exists(json, 'enableOrchestration') ? undefined : json['enableOrchestration'],
|
|
25
|
-
'integratorFeeBps': !runtime.exists(json, 'integratorFeeBps') ? undefined : json['integratorFeeBps'],
|
|
26
25
|
'geoRestrictions': !runtime.exists(json, 'geoRestrictions') ? undefined : json['geoRestrictions'],
|
|
27
26
|
'exchangeRestrictions': !runtime.exists(json, 'exchangeRestrictions') ? undefined : json['exchangeRestrictions'],
|
|
28
27
|
};
|
|
@@ -40,7 +39,6 @@ function CheckoutCreateRequestToJSON(value) {
|
|
|
40
39
|
'destinationConfig': DestinationConfigInput.DestinationConfigInputToJSON(value.destinationConfig),
|
|
41
40
|
'depositConfig': DepositAmountsConfigInput.DepositAmountsConfigInputToJSON(value.depositConfig),
|
|
42
41
|
'enableOrchestration': value.enableOrchestration,
|
|
43
|
-
'integratorFeeBps': value.integratorFeeBps,
|
|
44
42
|
'geoRestrictions': value.geoRestrictions,
|
|
45
43
|
'exchangeRestrictions': value.exchangeRestrictions,
|
|
46
44
|
};
|
|
@@ -49,12 +49,6 @@ export interface CheckoutCreateRequest {
|
|
|
49
49
|
* @memberof CheckoutCreateRequest
|
|
50
50
|
*/
|
|
51
51
|
enableOrchestration?: boolean;
|
|
52
|
-
/**
|
|
53
|
-
*
|
|
54
|
-
* @type {number}
|
|
55
|
-
* @memberof CheckoutCreateRequest
|
|
56
|
-
*/
|
|
57
|
-
integratorFeeBps?: number;
|
|
58
52
|
/**
|
|
59
53
|
*
|
|
60
54
|
* @type {Array<string>}
|
|
@@ -18,7 +18,6 @@ function CheckoutCreateRequestFromJSONTyped(json, ignoreDiscriminator) {
|
|
|
18
18
|
'destinationConfig': DestinationConfigInputFromJSON(json['destinationConfig']),
|
|
19
19
|
'depositConfig': !exists(json, 'depositConfig') ? undefined : DepositAmountsConfigInputFromJSON(json['depositConfig']),
|
|
20
20
|
'enableOrchestration': !exists(json, 'enableOrchestration') ? undefined : json['enableOrchestration'],
|
|
21
|
-
'integratorFeeBps': !exists(json, 'integratorFeeBps') ? undefined : json['integratorFeeBps'],
|
|
22
21
|
'geoRestrictions': !exists(json, 'geoRestrictions') ? undefined : json['geoRestrictions'],
|
|
23
22
|
'exchangeRestrictions': !exists(json, 'exchangeRestrictions') ? undefined : json['exchangeRestrictions'],
|
|
24
23
|
};
|
|
@@ -36,7 +35,6 @@ function CheckoutCreateRequestToJSON(value) {
|
|
|
36
35
|
'destinationConfig': DestinationConfigInputToJSON(value.destinationConfig),
|
|
37
36
|
'depositConfig': DepositAmountsConfigInputToJSON(value.depositConfig),
|
|
38
37
|
'enableOrchestration': value.enableOrchestration,
|
|
39
|
-
'integratorFeeBps': value.integratorFeeBps,
|
|
40
38
|
'geoRestrictions': value.geoRestrictions,
|
|
41
39
|
'exchangeRestrictions': value.exchangeRestrictions,
|
|
42
40
|
};
|
|
@@ -20,7 +20,6 @@ function CheckoutUpdateRequestFromJSONTyped(json, ignoreDiscriminator) {
|
|
|
20
20
|
'destinationConfig': !runtime.exists(json, 'destinationConfig') ? undefined : DestinationConfigInput.DestinationConfigInputFromJSON(json['destinationConfig']),
|
|
21
21
|
'depositConfig': !runtime.exists(json, 'depositConfig') ? undefined : DepositAmountsConfigInput.DepositAmountsConfigInputFromJSON(json['depositConfig']),
|
|
22
22
|
'enableOrchestration': !runtime.exists(json, 'enableOrchestration') ? undefined : json['enableOrchestration'],
|
|
23
|
-
'integratorFeeBps': !runtime.exists(json, 'integratorFeeBps') ? undefined : json['integratorFeeBps'],
|
|
24
23
|
'geoRestrictions': !runtime.exists(json, 'geoRestrictions') ? undefined : json['geoRestrictions'],
|
|
25
24
|
'exchangeRestrictions': !runtime.exists(json, 'exchangeRestrictions') ? undefined : json['exchangeRestrictions'],
|
|
26
25
|
};
|
|
@@ -37,7 +36,6 @@ function CheckoutUpdateRequestToJSON(value) {
|
|
|
37
36
|
'destinationConfig': DestinationConfigInput.DestinationConfigInputToJSON(value.destinationConfig),
|
|
38
37
|
'depositConfig': DepositAmountsConfigInput.DepositAmountsConfigInputToJSON(value.depositConfig),
|
|
39
38
|
'enableOrchestration': value.enableOrchestration,
|
|
40
|
-
'integratorFeeBps': value.integratorFeeBps,
|
|
41
39
|
'geoRestrictions': value.geoRestrictions,
|
|
42
40
|
'exchangeRestrictions': value.exchangeRestrictions,
|
|
43
41
|
};
|
|
@@ -42,12 +42,6 @@ export interface CheckoutUpdateRequest {
|
|
|
42
42
|
* @memberof CheckoutUpdateRequest
|
|
43
43
|
*/
|
|
44
44
|
enableOrchestration?: boolean;
|
|
45
|
-
/**
|
|
46
|
-
*
|
|
47
|
-
* @type {number}
|
|
48
|
-
* @memberof CheckoutUpdateRequest
|
|
49
|
-
*/
|
|
50
|
-
integratorFeeBps?: number;
|
|
51
45
|
/**
|
|
52
46
|
*
|
|
53
47
|
* @type {Array<string>}
|
|
@@ -16,7 +16,6 @@ function CheckoutUpdateRequestFromJSONTyped(json, ignoreDiscriminator) {
|
|
|
16
16
|
'destinationConfig': !exists(json, 'destinationConfig') ? undefined : DestinationConfigInputFromJSON(json['destinationConfig']),
|
|
17
17
|
'depositConfig': !exists(json, 'depositConfig') ? undefined : DepositAmountsConfigInputFromJSON(json['depositConfig']),
|
|
18
18
|
'enableOrchestration': !exists(json, 'enableOrchestration') ? undefined : json['enableOrchestration'],
|
|
19
|
-
'integratorFeeBps': !exists(json, 'integratorFeeBps') ? undefined : json['integratorFeeBps'],
|
|
20
19
|
'geoRestrictions': !exists(json, 'geoRestrictions') ? undefined : json['geoRestrictions'],
|
|
21
20
|
'exchangeRestrictions': !exists(json, 'exchangeRestrictions') ? undefined : json['exchangeRestrictions'],
|
|
22
21
|
};
|
|
@@ -33,7 +32,6 @@ function CheckoutUpdateRequestToJSON(value) {
|
|
|
33
32
|
'destinationConfig': DestinationConfigInputToJSON(value.destinationConfig),
|
|
34
33
|
'depositConfig': DepositAmountsConfigInputToJSON(value.depositConfig),
|
|
35
34
|
'enableOrchestration': value.enableOrchestration,
|
|
36
|
-
'integratorFeeBps': value.integratorFeeBps,
|
|
37
35
|
'geoRestrictions': value.geoRestrictions,
|
|
38
36
|
'exchangeRestrictions': value.exchangeRestrictions,
|
|
39
37
|
};
|