squarefi-bff-api-module 1.31.2 → 1.31.3

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.
@@ -1219,6 +1219,10 @@ export declare namespace API {
1219
1219
  }
1220
1220
  }
1221
1221
  namespace V2 {
1222
+ interface Document {
1223
+ url: string;
1224
+ description: string;
1225
+ }
1222
1226
  namespace Calc {
1223
1227
  interface CommonRequestParams {
1224
1228
  from_currency_id: string;
@@ -1268,6 +1272,7 @@ export declare namespace API {
1268
1272
  is_reverse: boolean;
1269
1273
  reference?: string;
1270
1274
  note?: string;
1275
+ documents?: Document[];
1271
1276
  }
1272
1277
  interface OrderWithCounterpartyParams extends BaseOrderParams {
1273
1278
  counterparty_destination_id: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "squarefi-bff-api-module",
3
- "version": "1.31.2",
3
+ "version": "1.31.3",
4
4
  "description": "Squarefi BFF API client module",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
@@ -1662,6 +1662,10 @@ export namespace API {
1662
1662
  // }
1663
1663
  // }
1664
1664
  export namespace V2 {
1665
+ export interface Document {
1666
+ url: string;
1667
+ description: string;
1668
+ }
1665
1669
  export namespace Calc {
1666
1670
  interface CommonRequestParams {
1667
1671
  from_currency_id: string;
@@ -1718,6 +1722,7 @@ export namespace API {
1718
1722
  is_reverse: boolean;
1719
1723
  reference?: string;
1720
1724
  note?: string;
1725
+ documents?: Document[];
1721
1726
  }
1722
1727
 
1723
1728
  export interface OrderWithCounterpartyParams extends BaseOrderParams {