squarefi-bff-api-module 1.27.2 → 1.27.4
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.
|
@@ -1539,9 +1539,7 @@ export declare namespace API {
|
|
|
1539
1539
|
type Response = Common.Response.CryptoTransferResponse;
|
|
1540
1540
|
}
|
|
1541
1541
|
namespace SEGREGATED_CRYPTO_TRANSFER {
|
|
1542
|
-
type Request = Common.Request.OrderWithWalletAccountParams & Common.Request.OrderWithCounterpartyParams
|
|
1543
|
-
to_currency_id?: never;
|
|
1544
|
-
};
|
|
1542
|
+
type Request = Omit<Common.Request.OrderWithWalletAccountParams, 'to_currency_id'> & Omit<Common.Request.OrderWithCounterpartyParams, 'to_currency_id'>;
|
|
1545
1543
|
type Response = Common.Response.CryptoTransferResponse;
|
|
1546
1544
|
}
|
|
1547
1545
|
namespace RN_CARDS_OFFRAMP {
|
package/package.json
CHANGED
package/src/api/types/types.ts
CHANGED
|
@@ -1998,10 +1998,8 @@ export namespace API {
|
|
|
1998
1998
|
export type Response = Common.Response.CryptoTransferResponse;
|
|
1999
1999
|
}
|
|
2000
2000
|
export namespace SEGREGATED_CRYPTO_TRANSFER {
|
|
2001
|
-
export type Request = Common.Request.OrderWithWalletAccountParams &
|
|
2002
|
-
Common.Request.OrderWithCounterpartyParams
|
|
2003
|
-
to_currency_id?: never;
|
|
2004
|
-
};
|
|
2001
|
+
export type Request = Omit<Common.Request.OrderWithWalletAccountParams, 'to_currency_id'> &
|
|
2002
|
+
Omit<Common.Request.OrderWithCounterpartyParams, 'to_currency_id'>;
|
|
2005
2003
|
export type Response = Common.Response.CryptoTransferResponse;
|
|
2006
2004
|
}
|
|
2007
2005
|
export namespace RN_CARDS_OFFRAMP {
|