squarefi-bff-api-module 1.21.6 → 1.21.8
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/api/types/types.d.ts +16 -9
- package/package.json +1 -1
- package/src/api/types/types.ts +16 -9
|
@@ -1396,8 +1396,8 @@ export declare namespace API {
|
|
|
1396
1396
|
namespace V2 {
|
|
1397
1397
|
namespace Calc {
|
|
1398
1398
|
interface CommonRequestParams {
|
|
1399
|
-
|
|
1400
|
-
|
|
1399
|
+
from_currency_id: string;
|
|
1400
|
+
to_currency_id: string;
|
|
1401
1401
|
amount: number;
|
|
1402
1402
|
is_reverse?: boolean;
|
|
1403
1403
|
signal?: AbortSignal;
|
|
@@ -1448,7 +1448,8 @@ export declare namespace API {
|
|
|
1448
1448
|
counterparty_account_id: string;
|
|
1449
1449
|
amount: number;
|
|
1450
1450
|
wallet_id: string;
|
|
1451
|
-
|
|
1451
|
+
from_currency_id: string;
|
|
1452
|
+
to_currency_id: string;
|
|
1452
1453
|
}
|
|
1453
1454
|
interface Response {
|
|
1454
1455
|
order_uuid: string;
|
|
@@ -1481,7 +1482,8 @@ export declare namespace API {
|
|
|
1481
1482
|
counterparty_account_id: string;
|
|
1482
1483
|
amount: number;
|
|
1483
1484
|
wallet_id: string;
|
|
1484
|
-
|
|
1485
|
+
from_currency_id: string;
|
|
1486
|
+
to_currency_id: string;
|
|
1485
1487
|
}
|
|
1486
1488
|
interface Response {
|
|
1487
1489
|
order_uuid: string;
|
|
@@ -1514,7 +1516,8 @@ export declare namespace API {
|
|
|
1514
1516
|
counterparty_account_id: string;
|
|
1515
1517
|
amount: number;
|
|
1516
1518
|
wallet_id: string;
|
|
1517
|
-
|
|
1519
|
+
from_currency_id: string;
|
|
1520
|
+
to_currency_id: string;
|
|
1518
1521
|
}
|
|
1519
1522
|
interface Response {
|
|
1520
1523
|
order_uuid: string;
|
|
@@ -1547,7 +1550,8 @@ export declare namespace API {
|
|
|
1547
1550
|
counterparty_account_id: string;
|
|
1548
1551
|
amount: number;
|
|
1549
1552
|
wallet_id: string;
|
|
1550
|
-
|
|
1553
|
+
from_currency_id: string;
|
|
1554
|
+
to_currency_id: string;
|
|
1551
1555
|
}
|
|
1552
1556
|
interface Response {
|
|
1553
1557
|
order_uuid: string;
|
|
@@ -1580,7 +1584,8 @@ export declare namespace API {
|
|
|
1580
1584
|
counterparty_account_id: string;
|
|
1581
1585
|
amount: number;
|
|
1582
1586
|
wallet_id: string;
|
|
1583
|
-
|
|
1587
|
+
from_currency_id: string;
|
|
1588
|
+
to_currency_id: string;
|
|
1584
1589
|
}
|
|
1585
1590
|
interface Response {
|
|
1586
1591
|
order_uuid: string;
|
|
@@ -1613,7 +1618,8 @@ export declare namespace API {
|
|
|
1613
1618
|
counterparty_account_id: string;
|
|
1614
1619
|
amount: number;
|
|
1615
1620
|
wallet_id: string;
|
|
1616
|
-
|
|
1621
|
+
from_currency_id: string;
|
|
1622
|
+
to_currency_id: string;
|
|
1617
1623
|
}
|
|
1618
1624
|
interface Response {
|
|
1619
1625
|
order_uuid: string;
|
|
@@ -1646,7 +1652,8 @@ export declare namespace API {
|
|
|
1646
1652
|
counterparty_account_id: string;
|
|
1647
1653
|
amount: number;
|
|
1648
1654
|
wallet_id: string;
|
|
1649
|
-
|
|
1655
|
+
from_currency_id: string;
|
|
1656
|
+
to_currency_id: string;
|
|
1650
1657
|
}
|
|
1651
1658
|
interface Response {
|
|
1652
1659
|
order_uuid: string;
|
package/package.json
CHANGED
package/src/api/types/types.ts
CHANGED
|
@@ -1692,8 +1692,8 @@ export namespace API {
|
|
|
1692
1692
|
export namespace V2 {
|
|
1693
1693
|
export namespace Calc {
|
|
1694
1694
|
interface CommonRequestParams {
|
|
1695
|
-
|
|
1696
|
-
|
|
1695
|
+
from_currency_id: string;
|
|
1696
|
+
to_currency_id: string;
|
|
1697
1697
|
amount: number;
|
|
1698
1698
|
is_reverse?: boolean;
|
|
1699
1699
|
signal?: AbortSignal;
|
|
@@ -1749,7 +1749,8 @@ export namespace API {
|
|
|
1749
1749
|
counterparty_account_id: string;
|
|
1750
1750
|
amount: number;
|
|
1751
1751
|
wallet_id: string;
|
|
1752
|
-
|
|
1752
|
+
from_currency_id: string;
|
|
1753
|
+
to_currency_id: string;
|
|
1753
1754
|
}
|
|
1754
1755
|
|
|
1755
1756
|
export interface Response {
|
|
@@ -1785,7 +1786,8 @@ export namespace API {
|
|
|
1785
1786
|
counterparty_account_id: string;
|
|
1786
1787
|
amount: number;
|
|
1787
1788
|
wallet_id: string;
|
|
1788
|
-
|
|
1789
|
+
from_currency_id: string;
|
|
1790
|
+
to_currency_id: string;
|
|
1789
1791
|
}
|
|
1790
1792
|
|
|
1791
1793
|
export interface Response {
|
|
@@ -1821,7 +1823,8 @@ export namespace API {
|
|
|
1821
1823
|
counterparty_account_id: string;
|
|
1822
1824
|
amount: number;
|
|
1823
1825
|
wallet_id: string;
|
|
1824
|
-
|
|
1826
|
+
from_currency_id: string;
|
|
1827
|
+
to_currency_id: string;
|
|
1825
1828
|
}
|
|
1826
1829
|
|
|
1827
1830
|
export interface Response {
|
|
@@ -1856,7 +1859,8 @@ export namespace API {
|
|
|
1856
1859
|
counterparty_account_id: string;
|
|
1857
1860
|
amount: number;
|
|
1858
1861
|
wallet_id: string;
|
|
1859
|
-
|
|
1862
|
+
from_currency_id: string;
|
|
1863
|
+
to_currency_id: string;
|
|
1860
1864
|
}
|
|
1861
1865
|
|
|
1862
1866
|
export interface Response {
|
|
@@ -1891,7 +1895,8 @@ export namespace API {
|
|
|
1891
1895
|
counterparty_account_id: string;
|
|
1892
1896
|
amount: number;
|
|
1893
1897
|
wallet_id: string;
|
|
1894
|
-
|
|
1898
|
+
from_currency_id: string;
|
|
1899
|
+
to_currency_id: string;
|
|
1895
1900
|
}
|
|
1896
1901
|
|
|
1897
1902
|
export interface Response {
|
|
@@ -1926,7 +1931,8 @@ export namespace API {
|
|
|
1926
1931
|
counterparty_account_id: string;
|
|
1927
1932
|
amount: number;
|
|
1928
1933
|
wallet_id: string;
|
|
1929
|
-
|
|
1934
|
+
from_currency_id: string;
|
|
1935
|
+
to_currency_id: string;
|
|
1930
1936
|
}
|
|
1931
1937
|
|
|
1932
1938
|
export interface Response {
|
|
@@ -1960,7 +1966,8 @@ export namespace API {
|
|
|
1960
1966
|
counterparty_account_id: string;
|
|
1961
1967
|
amount: number;
|
|
1962
1968
|
wallet_id: string;
|
|
1963
|
-
|
|
1969
|
+
from_currency_id: string;
|
|
1970
|
+
to_currency_id: string;
|
|
1964
1971
|
}
|
|
1965
1972
|
|
|
1966
1973
|
export interface Response {
|