@sodax/types 2.0.0-rc.14 → 2.0.0-rc.15
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/dist/backend/backendApiV2.d.ts +6 -0
- package/dist/index.d.ts +1 -1
- package/dist/index.js +1 -1
- package/package.json +1 -1
|
@@ -214,6 +214,12 @@ export interface CreateIntentParamsV2 {
|
|
|
214
214
|
data?: string;
|
|
215
215
|
/** Optional per-request partner-fee override embedded into the built intent. When omitted the backend applies its configured default. */
|
|
216
216
|
partnerFee?: PartnerFeeV2;
|
|
217
|
+
/**
|
|
218
|
+
* Bound Exchange (Radfi) access token for Bitcoin TRADING-mode (`raw`) intents — supplied in the
|
|
219
|
+
* request body instead of an `x-bound-access-token` header so the token threads through the typed
|
|
220
|
+
* DTO. Required only when the source chain is Bitcoin in TRADING mode; ignored otherwise.
|
|
221
|
+
*/
|
|
222
|
+
accessToken?: string;
|
|
217
223
|
}
|
|
218
224
|
/** POST /swaps/allowance/check — response body. */
|
|
219
225
|
export interface AllowanceCheckResponseV2 {
|
package/dist/index.d.ts
CHANGED
package/dist/index.js
CHANGED
|
@@ -18,4 +18,4 @@ export * from './sui/index.js';
|
|
|
18
18
|
export * from './swap/index.js';
|
|
19
19
|
export * from './utils/index.js';
|
|
20
20
|
export * from './wallet/index.js';
|
|
21
|
-
export const CONFIG_VERSION =
|
|
21
|
+
export const CONFIG_VERSION = 213; // this value should be incremented (inside release/sdk branch) each time @sodax/types package is updated
|
package/package.json
CHANGED