@riocrypto/common 1.0.1313 → 1.0.1315
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 +2 -0
- package/build/index.js +2 -0
- package/build/types/bid-status.d.ts +5 -0
- package/build/types/bid-status.js +9 -0
- package/build/types/bid.d.ts +8 -0
- package/build/types/bid.js +2 -0
- package/package.json +1 -1
package/build/index.d.ts
CHANGED
|
@@ -213,6 +213,8 @@ export * from "./types/UBO-update";
|
|
|
213
213
|
export * from "./types/immigration-status";
|
|
214
214
|
export * from "./types/IdentityVerificationType";
|
|
215
215
|
export * from "./types/KYC";
|
|
216
|
+
export * from "./types/bid";
|
|
217
|
+
export * from "./types/bid-status";
|
|
216
218
|
export * from "./classes/Asset";
|
|
217
219
|
export * from "./classes/KYCFieldClass";
|
|
218
220
|
export * from "./classes/KYCFileClass";
|
package/build/index.js
CHANGED
|
@@ -229,6 +229,8 @@ __exportStar(require("./types/UBO-update"), exports);
|
|
|
229
229
|
__exportStar(require("./types/immigration-status"), exports);
|
|
230
230
|
__exportStar(require("./types/IdentityVerificationType"), exports);
|
|
231
231
|
__exportStar(require("./types/KYC"), exports);
|
|
232
|
+
__exportStar(require("./types/bid"), exports);
|
|
233
|
+
__exportStar(require("./types/bid-status"), exports);
|
|
232
234
|
__exportStar(require("./classes/Asset"), exports);
|
|
233
235
|
__exportStar(require("./classes/KYCFieldClass"), exports);
|
|
234
236
|
__exportStar(require("./classes/KYCFileClass"), exports);
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.BidStatus = void 0;
|
|
4
|
+
var BidStatus;
|
|
5
|
+
(function (BidStatus) {
|
|
6
|
+
BidStatus["Pending"] = "pending";
|
|
7
|
+
BidStatus["declined"] = "declined";
|
|
8
|
+
BidStatus["approved"] = "approved";
|
|
9
|
+
})(BidStatus = exports.BidStatus || (exports.BidStatus = {}));
|