@riocrypto/common 1.0.1313 → 1.0.1314

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,7 @@ 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";
216
217
  export * from "./classes/Asset";
217
218
  export * from "./classes/KYCFieldClass";
218
219
  export * from "./classes/KYCFileClass";
package/build/index.js CHANGED
@@ -229,6 +229,7 @@ __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);
232
233
  __exportStar(require("./classes/Asset"), exports);
233
234
  __exportStar(require("./classes/KYCFieldClass"), exports);
234
235
  __exportStar(require("./classes/KYCFileClass"), exports);
@@ -0,0 +1,6 @@
1
+ export interface Bid {
2
+ id: string;
3
+ createdAt: Date;
4
+ userId: string;
5
+ quoteId: string;
6
+ }
@@ -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.1314",
4
4
  "description": "",
5
5
  "main": "./build/index.js",
6
6
  "types": "./build/index.d.ts",