@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.
@@ -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
@@ -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 declare const CONFIG_VERSION = 212;
21
+ export declare const CONFIG_VERSION = 213;
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 = 212; // this value should be incremented (inside release/sdk branch) each time @sodax/types package is updated
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
@@ -4,7 +4,7 @@
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },
7
- "version": "2.0.0-rc.14",
7
+ "version": "2.0.0-rc.15",
8
8
  "description": "Sodax Common Types",
9
9
  "main": "dist/index.js",
10
10
  "homepage": "https://github.com/icon-project/sodax-sdks/tree/main/packages/types",