squarefi-bff-api-module 1.18.11 → 1.18.13
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.
|
@@ -903,6 +903,7 @@ export declare namespace API {
|
|
|
903
903
|
namespace Rails {
|
|
904
904
|
type RailStatus = components['schemas']['WalletKycRailDto']['status'];
|
|
905
905
|
type WalletRail = components['schemas']['WalletKycRailDto'];
|
|
906
|
+
type WalletRailExtraActions = components['schemas']['WalletKycRailExtraActionDto'];
|
|
906
907
|
type WalletRailTermsAndConditions = components['schemas']['WalletKycRailTermsAndConditionsDto'];
|
|
907
908
|
namespace RailInfo {
|
|
908
909
|
type RailInfo = components['schemas']['WalletKycRailTypeDto'];
|
|
@@ -1215,11 +1216,10 @@ export declare namespace API {
|
|
|
1215
1216
|
namespace OMNIBUS_CRYPTO_WITHDRAWAL {
|
|
1216
1217
|
interface Request {
|
|
1217
1218
|
idempotency_key: string;
|
|
1219
|
+
counterparty_account_id: string;
|
|
1218
1220
|
amount: number;
|
|
1219
1221
|
wallet_uuid: string;
|
|
1220
1222
|
currency_id: string;
|
|
1221
|
-
to_address: string;
|
|
1222
|
-
counterparty_id: string;
|
|
1223
1223
|
memo?: string;
|
|
1224
1224
|
note?: string;
|
|
1225
1225
|
}
|
package/package.json
CHANGED
package/src/api/types/types.ts
CHANGED
|
@@ -1078,6 +1078,8 @@ export namespace API {
|
|
|
1078
1078
|
export type RailStatus = components['schemas']['WalletKycRailDto']['status'];
|
|
1079
1079
|
|
|
1080
1080
|
export type WalletRail = components['schemas']['WalletKycRailDto'];
|
|
1081
|
+
export type WalletRailExtraActions = components['schemas']['WalletKycRailExtraActionDto'];
|
|
1082
|
+
|
|
1081
1083
|
export type WalletRailTermsAndConditions = components['schemas']['WalletKycRailTermsAndConditionsDto'];
|
|
1082
1084
|
|
|
1083
1085
|
export namespace RailInfo {
|
|
@@ -1413,11 +1415,10 @@ export namespace API {
|
|
|
1413
1415
|
export namespace OMNIBUS_CRYPTO_WITHDRAWAL {
|
|
1414
1416
|
export interface Request {
|
|
1415
1417
|
idempotency_key: string;
|
|
1418
|
+
counterparty_account_id: string;
|
|
1416
1419
|
amount: number;
|
|
1417
1420
|
wallet_uuid: string;
|
|
1418
1421
|
currency_id: string;
|
|
1419
|
-
to_address: string;
|
|
1420
|
-
counterparty_id: string;
|
|
1421
1422
|
memo?: string;
|
|
1422
1423
|
note?: string;
|
|
1423
1424
|
}
|