@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 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,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 = {}));
@@ -0,0 +1,8 @@
1
+ import { BidStatus } from "./bid-status";
2
+ export interface Bid {
3
+ id: string;
4
+ status: BidStatus;
5
+ createdAt: Date;
6
+ userId: string;
7
+ quoteId: string;
8
+ }
@@ -0,0 +1,2 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@riocrypto/common",
3
- "version": "1.0.1313",
3
+ "version": "1.0.1315",
4
4
  "description": "",
5
5
  "main": "./build/index.js",
6
6
  "types": "./build/index.d.ts",