@riocrypto/common 1.0.1314 → 1.0.1316
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/bid-status.d.ts +5 -0
- package/build/types/bid-status.js +9 -0
- package/build/types/bid.d.ts +2 -0
- package/build/types/quote.d.ts +1 -0
- package/package.json +1 -1
package/build/index.d.ts
CHANGED
|
@@ -214,6 +214,7 @@ export * from "./types/immigration-status";
|
|
|
214
214
|
export * from "./types/IdentityVerificationType";
|
|
215
215
|
export * from "./types/KYC";
|
|
216
216
|
export * from "./types/bid";
|
|
217
|
+
export * from "./types/bid-status";
|
|
217
218
|
export * from "./classes/Asset";
|
|
218
219
|
export * from "./classes/KYCFieldClass";
|
|
219
220
|
export * from "./classes/KYCFileClass";
|
package/build/index.js
CHANGED
|
@@ -230,6 +230,7 @@ __exportStar(require("./types/immigration-status"), exports);
|
|
|
230
230
|
__exportStar(require("./types/IdentityVerificationType"), exports);
|
|
231
231
|
__exportStar(require("./types/KYC"), exports);
|
|
232
232
|
__exportStar(require("./types/bid"), exports);
|
|
233
|
+
__exportStar(require("./types/bid-status"), exports);
|
|
233
234
|
__exportStar(require("./classes/Asset"), exports);
|
|
234
235
|
__exportStar(require("./classes/KYCFieldClass"), exports);
|
|
235
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 = {}));
|
package/build/types/bid.d.ts
CHANGED
package/build/types/quote.d.ts
CHANGED