@riocrypto/common 1.0.1314 → 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 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,5 @@
1
+ export declare enum BidStatus {
2
+ Pending = "pending",
3
+ declined = "declined",
4
+ approved = "approved"
5
+ }
@@ -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 = {}));
@@ -1,5 +1,7 @@
1
+ import { BidStatus } from "./bid-status";
1
2
  export interface Bid {
2
3
  id: string;
4
+ status: BidStatus;
3
5
  createdAt: Date;
4
6
  userId: string;
5
7
  quoteId: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@riocrypto/common",
3
- "version": "1.0.1314",
3
+ "version": "1.0.1315",
4
4
  "description": "",
5
5
  "main": "./build/index.js",
6
6
  "types": "./build/index.d.ts",