@riocrypto/common 1.0.2098 → 1.0.2099

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
@@ -261,7 +261,6 @@ export * from "./types/webhook-registration";
261
261
  export * from "./types/chained-quote";
262
262
  export * from "./types/bitso-bank-account";
263
263
  export * from "./types/bitso-receiving-account";
264
- export * from "./types/order-substatus";
265
264
  export * from "./types/chained-order-query";
266
265
  export * from "./types/internal-swap";
267
266
  export * from "./types/webhook-type";
package/build/index.js CHANGED
@@ -277,7 +277,6 @@ __exportStar(require("./types/webhook-registration"), exports);
277
277
  __exportStar(require("./types/chained-quote"), exports);
278
278
  __exportStar(require("./types/bitso-bank-account"), exports);
279
279
  __exportStar(require("./types/bitso-receiving-account"), exports);
280
- __exportStar(require("./types/order-substatus"), exports);
281
280
  __exportStar(require("./types/chained-order-query"), exports);
282
281
  __exportStar(require("./types/internal-swap"), exports);
283
282
  __exportStar(require("./types/webhook-type"), exports);
@@ -8,7 +8,6 @@ import { Processor } from "./processor";
8
8
  import { Side } from "./side";
9
9
  import { Fees } from "./fees";
10
10
  import { PayoutMethod } from "./payout-method";
11
- import { OrderSubstatus } from "./order-substatus";
12
11
  import { OrderAttribute } from "./order-attribute";
13
12
  import { SettlementTime } from "./settlement-time";
14
13
  export interface Order {
@@ -22,7 +21,6 @@ export interface Order {
22
21
  payoutMethod?: PayoutMethod;
23
22
  createdAt: Date;
24
23
  status: OrderStatus;
25
- substatus?: OrderSubstatus;
26
24
  cryptoAddress?: string;
27
25
  country: Country;
28
26
  state?: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@riocrypto/common",
3
- "version": "1.0.2098",
3
+ "version": "1.0.2099",
4
4
  "description": "",
5
5
  "main": "./build/index.js",
6
6
  "types": "./build/index.d.ts",
@@ -1,4 +0,0 @@
1
- export declare enum OrderSubstatus {
2
- AutoFXRunning = "autoFXRunning",
3
- AutoLiquiditySourcingRunning = "autoLiquiditySourcingRunning"
4
- }
@@ -1,8 +0,0 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.OrderSubstatus = void 0;
4
- var OrderSubstatus;
5
- (function (OrderSubstatus) {
6
- OrderSubstatus["AutoFXRunning"] = "autoFXRunning";
7
- OrderSubstatus["AutoLiquiditySourcingRunning"] = "autoLiquiditySourcingRunning";
8
- })(OrderSubstatus = exports.OrderSubstatus || (exports.OrderSubstatus = {}));