squarefi-bff-api-module 1.24.15 → 1.24.16

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.
@@ -1426,6 +1426,7 @@ export declare namespace API {
1426
1426
  to_currency_id: string;
1427
1427
  amount: number;
1428
1428
  is_reverse?: boolean;
1429
+ is_subsctract?: boolean;
1429
1430
  signal?: AbortSignal;
1430
1431
  }
1431
1432
  export interface WithdrawCryptoRequest extends CommonRequestParams {
@@ -1465,6 +1466,8 @@ export declare namespace API {
1465
1466
  to_wallet_uuid: string;
1466
1467
  amount: number;
1467
1468
  request_id: string;
1469
+ is_subsctract?: boolean;
1470
+ is_reverse?: boolean;
1468
1471
  }
1469
1472
  type Response = null;
1470
1473
  }
@@ -1476,6 +1479,8 @@ export declare namespace API {
1476
1479
  wallet_id: string;
1477
1480
  from_currency_id: string;
1478
1481
  to_currency_id: string;
1482
+ is_subsctract?: boolean;
1483
+ is_reverse?: boolean;
1479
1484
  }
1480
1485
  interface Response {
1481
1486
  order_uuid: string;
@@ -1510,6 +1515,8 @@ export declare namespace API {
1510
1515
  wallet_id: string;
1511
1516
  from_currency_id: string;
1512
1517
  to_currency_id: string;
1518
+ is_subsctract?: boolean;
1519
+ is_reverse?: boolean;
1513
1520
  }
1514
1521
  interface Response {
1515
1522
  order_uuid: string;
@@ -1544,6 +1551,8 @@ export declare namespace API {
1544
1551
  wallet_id: string;
1545
1552
  from_currency_id: string;
1546
1553
  to_currency_id: string;
1554
+ is_subsctract?: boolean;
1555
+ is_reverse?: boolean;
1547
1556
  }
1548
1557
  interface Response {
1549
1558
  order_uuid: string;
@@ -1580,6 +1589,8 @@ export declare namespace API {
1580
1589
  to_currency_id: string;
1581
1590
  refference?: string;
1582
1591
  note?: string;
1592
+ is_subsctract?: boolean;
1593
+ is_reverse?: boolean;
1583
1594
  }
1584
1595
  interface Response {
1585
1596
  order_uuid: string;
@@ -1616,6 +1627,8 @@ export declare namespace API {
1616
1627
  to_currency_id: string;
1617
1628
  refference?: string;
1618
1629
  note?: string;
1630
+ is_subsctract?: boolean;
1631
+ is_reverse?: boolean;
1619
1632
  }
1620
1633
  interface Response {
1621
1634
  order_uuid: string;
@@ -1652,6 +1665,8 @@ export declare namespace API {
1652
1665
  to_currency_id: string;
1653
1666
  refference?: string;
1654
1667
  note?: string;
1668
+ is_subsctract?: boolean;
1669
+ is_reverse?: boolean;
1655
1670
  }
1656
1671
  interface Response {
1657
1672
  order_uuid: string;
@@ -1686,6 +1701,8 @@ export declare namespace API {
1686
1701
  wallet_id: string;
1687
1702
  from_currency_id: string;
1688
1703
  to_currency_id: string;
1704
+ is_subsctract?: boolean;
1705
+ is_reverse?: boolean;
1689
1706
  }
1690
1707
  interface Response {
1691
1708
  order_uuid: string;
@@ -1721,6 +1738,8 @@ export declare namespace API {
1721
1738
  wallet_account_id: string;
1722
1739
  from_currency_id: string;
1723
1740
  note?: string;
1741
+ is_subsctract?: boolean;
1742
+ is_reverse?: boolean;
1724
1743
  }
1725
1744
  interface Response {
1726
1745
  created_at: string;
@@ -1758,6 +1777,8 @@ export declare namespace API {
1758
1777
  wallet_account_id: string;
1759
1778
  from_currency_id: string;
1760
1779
  note?: string;
1780
+ is_subsctract?: boolean;
1781
+ is_reverse?: boolean;
1761
1782
  }
1762
1783
  interface Response {
1763
1784
  created_at: string;
@@ -1795,6 +1816,8 @@ export declare namespace API {
1795
1816
  wallet_account_id: string;
1796
1817
  from_currency_id: string;
1797
1818
  note?: string;
1819
+ is_subsctract?: boolean;
1820
+ is_reverse?: boolean;
1798
1821
  }
1799
1822
  interface Response {
1800
1823
  created_at: string;
@@ -1831,6 +1854,8 @@ export declare namespace API {
1831
1854
  wallet_id: string;
1832
1855
  from_currency_id: string;
1833
1856
  to_currency_id: string;
1857
+ is_subsctract?: boolean;
1858
+ is_reverse?: boolean;
1834
1859
  }
1835
1860
  interface Response {
1836
1861
  order_uuid: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "squarefi-bff-api-module",
3
- "version": "1.24.15",
3
+ "version": "1.24.16",
4
4
  "description": "Squarefi BFF API client module",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
@@ -1731,6 +1731,7 @@ export namespace API {
1731
1731
  to_currency_id: string;
1732
1732
  amount: number;
1733
1733
  is_reverse?: boolean;
1734
+ is_subsctract?: boolean;
1734
1735
  signal?: AbortSignal;
1735
1736
  }
1736
1737
 
@@ -1777,6 +1778,8 @@ export namespace API {
1777
1778
  to_wallet_uuid: string;
1778
1779
  amount: number;
1779
1780
  request_id: string;
1781
+ is_subsctract?: boolean;
1782
+ is_reverse?: boolean;
1780
1783
  }
1781
1784
 
1782
1785
  export type Response = null;
@@ -1790,6 +1793,8 @@ export namespace API {
1790
1793
  wallet_id: string;
1791
1794
  from_currency_id: string;
1792
1795
  to_currency_id: string;
1796
+ is_subsctract?: boolean;
1797
+ is_reverse?: boolean;
1793
1798
  }
1794
1799
 
1795
1800
  export interface Response {
@@ -1827,6 +1832,8 @@ export namespace API {
1827
1832
  wallet_id: string;
1828
1833
  from_currency_id: string;
1829
1834
  to_currency_id: string;
1835
+ is_subsctract?: boolean;
1836
+ is_reverse?: boolean;
1830
1837
  }
1831
1838
 
1832
1839
  export interface Response {
@@ -1864,6 +1871,8 @@ export namespace API {
1864
1871
  wallet_id: string;
1865
1872
  from_currency_id: string;
1866
1873
  to_currency_id: string;
1874
+ is_subsctract?: boolean;
1875
+ is_reverse?: boolean;
1867
1876
  }
1868
1877
 
1869
1878
  export interface Response {
@@ -1902,6 +1911,8 @@ export namespace API {
1902
1911
  to_currency_id: string;
1903
1912
  refference?: string;
1904
1913
  note?: string;
1914
+ is_subsctract?: boolean;
1915
+ is_reverse?: boolean;
1905
1916
  }
1906
1917
 
1907
1918
  export interface Response {
@@ -1940,6 +1951,8 @@ export namespace API {
1940
1951
  to_currency_id: string;
1941
1952
  refference?: string;
1942
1953
  note?: string;
1954
+ is_subsctract?: boolean;
1955
+ is_reverse?: boolean;
1943
1956
  }
1944
1957
 
1945
1958
  export interface Response {
@@ -1978,6 +1991,8 @@ export namespace API {
1978
1991
  to_currency_id: string;
1979
1992
  refference?: string;
1980
1993
  note?: string;
1994
+ is_subsctract?: boolean;
1995
+ is_reverse?: boolean;
1981
1996
  }
1982
1997
 
1983
1998
  export interface Response {
@@ -2013,6 +2028,8 @@ export namespace API {
2013
2028
  wallet_id: string;
2014
2029
  from_currency_id: string;
2015
2030
  to_currency_id: string;
2031
+ is_subsctract?: boolean;
2032
+ is_reverse?: boolean;
2016
2033
  }
2017
2034
 
2018
2035
  export interface Response {
@@ -2050,6 +2067,8 @@ export namespace API {
2050
2067
  wallet_account_id: string;
2051
2068
  from_currency_id: string;
2052
2069
  note?: string;
2070
+ is_subsctract?: boolean;
2071
+ is_reverse?: boolean;
2053
2072
  }
2054
2073
 
2055
2074
  export interface Response {
@@ -2088,6 +2107,8 @@ export namespace API {
2088
2107
  wallet_account_id: string;
2089
2108
  from_currency_id: string;
2090
2109
  note?: string;
2110
+ is_subsctract?: boolean;
2111
+ is_reverse?: boolean;
2091
2112
  }
2092
2113
 
2093
2114
  export interface Response {
@@ -2126,6 +2147,8 @@ export namespace API {
2126
2147
  wallet_account_id: string;
2127
2148
  from_currency_id: string;
2128
2149
  note?: string;
2150
+ is_subsctract?: boolean;
2151
+ is_reverse?: boolean;
2129
2152
  }
2130
2153
 
2131
2154
  export interface Response {
@@ -2163,6 +2186,8 @@ export namespace API {
2163
2186
  wallet_id: string;
2164
2187
  from_currency_id: string;
2165
2188
  to_currency_id: string;
2189
+ is_subsctract?: boolean;
2190
+ is_reverse?: boolean;
2166
2191
  }
2167
2192
 
2168
2193
  export interface Response {