squarefi-bff-api-module 1.31.0 → 1.31.1
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.
|
@@ -1407,7 +1407,7 @@ export declare namespace API {
|
|
|
1407
1407
|
};
|
|
1408
1408
|
}
|
|
1409
1409
|
namespace OMNIBUS_CRYPTO_TRANSFER {
|
|
1410
|
-
type Request = Common.Request.OrderWithCounterpartyParams
|
|
1410
|
+
type Request = Omit<Common.Request.OrderWithWalletAccountParams, 'to_currency_id'> & Omit<Common.Request.OrderWithCounterpartyParams, 'to_currency_id'>;
|
|
1411
1411
|
type Response = Common.Response.CryptoTransferResponse;
|
|
1412
1412
|
}
|
|
1413
1413
|
namespace SEGREGATED_CRYPTO_TRANSFER {
|
package/package.json
CHANGED
package/src/api/types/types.ts
CHANGED
|
@@ -1861,7 +1861,8 @@ export namespace API {
|
|
|
1861
1861
|
}
|
|
1862
1862
|
|
|
1863
1863
|
export namespace OMNIBUS_CRYPTO_TRANSFER {
|
|
1864
|
-
export type Request = Common.Request.
|
|
1864
|
+
export type Request = Omit<Common.Request.OrderWithWalletAccountParams, 'to_currency_id'> &
|
|
1865
|
+
Omit<Common.Request.OrderWithCounterpartyParams, 'to_currency_id'>;
|
|
1865
1866
|
export type Response = Common.Response.CryptoTransferResponse;
|
|
1866
1867
|
}
|
|
1867
1868
|
export namespace SEGREGATED_CRYPTO_TRANSFER {
|