@riocrypto/common 1.0.2449 → 1.0.2452

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
@@ -448,6 +448,7 @@ export * from "./types/bitso-mxn-withdrawal-status";
448
448
  export * from "./types/fireblocks-transfer-status";
449
449
  export * from "./types/mexico-invoicing-method";
450
450
  export * from "./types/auth-kyc-status";
451
+ export * from "./types/order-log";
451
452
  export * from "./classes/KYCFieldClass";
452
453
  export * from "./classes/KYCFileClass";
453
454
  export * from "./classes/CountryAsset";
package/build/index.js CHANGED
@@ -464,6 +464,7 @@ __exportStar(require("./types/bitso-mxn-withdrawal-status"), exports);
464
464
  __exportStar(require("./types/fireblocks-transfer-status"), exports);
465
465
  __exportStar(require("./types/mexico-invoicing-method"), exports);
466
466
  __exportStar(require("./types/auth-kyc-status"), exports);
467
+ __exportStar(require("./types/order-log"), exports);
467
468
  __exportStar(require("./classes/KYCFieldClass"), exports);
468
469
  __exportStar(require("./classes/KYCFileClass"), exports);
469
470
  __exportStar(require("./classes/CountryAsset"), exports);
@@ -0,0 +1,8 @@
1
+ import { OrderStatus } from "./order-status";
2
+ export interface OrderLog {
3
+ createdAt: Date;
4
+ orderId: string;
5
+ status: OrderStatus;
6
+ message?: string;
7
+ isReset: boolean;
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.2449",
3
+ "version": "1.0.2452",
4
4
  "description": "",
5
5
  "main": "./build/index.js",
6
6
  "types": "./build/index.d.ts",