@riocrypto/common 1.0.1450 → 1.0.1451
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/build/index.d.ts +1 -0
- package/build/index.js +1 -0
- package/build/types/swap-origin.d.ts +6 -0
- package/build/types/swap-origin.js +10 -0
- package/package.json +1 -1
package/build/index.d.ts
CHANGED
|
@@ -232,6 +232,7 @@ export * from "./types/address-verification-status";
|
|
|
232
232
|
export * from "./types/bank-account-verification-status";
|
|
233
233
|
export * from "./types/rio-bank-account";
|
|
234
234
|
export * from "./types/swap-provider";
|
|
235
|
+
export * from "./types/swap-origin";
|
|
235
236
|
export * from "./classes/Asset";
|
|
236
237
|
export * from "./classes/KYCFieldClass";
|
|
237
238
|
export * from "./classes/KYCFileClass";
|
package/build/index.js
CHANGED
|
@@ -248,6 +248,7 @@ __exportStar(require("./types/address-verification-status"), exports);
|
|
|
248
248
|
__exportStar(require("./types/bank-account-verification-status"), exports);
|
|
249
249
|
__exportStar(require("./types/rio-bank-account"), exports);
|
|
250
250
|
__exportStar(require("./types/swap-provider"), exports);
|
|
251
|
+
__exportStar(require("./types/swap-origin"), exports);
|
|
251
252
|
__exportStar(require("./classes/Asset"), exports);
|
|
252
253
|
__exportStar(require("./classes/KYCFieldClass"), exports);
|
|
253
254
|
__exportStar(require("./classes/KYCFileClass"), exports);
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.SwapOrigin = void 0;
|
|
4
|
+
var SwapOrigin;
|
|
5
|
+
(function (SwapOrigin) {
|
|
6
|
+
SwapOrigin["Fireblocks"] = "fireblocks";
|
|
7
|
+
SwapOrigin["Coinbase"] = "coinbase";
|
|
8
|
+
SwapOrigin["Bitso"] = "bitso";
|
|
9
|
+
SwapOrigin["Binance"] = "binance";
|
|
10
|
+
})(SwapOrigin = exports.SwapOrigin || (exports.SwapOrigin = {}));
|