@riocrypto/common 1.0.988 → 1.0.989
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
|
@@ -167,6 +167,7 @@ export * from "./types/chained-quote";
|
|
|
167
167
|
export * from "./types/bitso-bank-account";
|
|
168
168
|
export * from "./types/bitso-receiving-account";
|
|
169
169
|
export * from "./types/exchange-rate-order";
|
|
170
|
+
export * from "./types/order-substatus";
|
|
170
171
|
export * from "./classes/Asset";
|
|
171
172
|
export * from "./classes/CountryAsset";
|
|
172
173
|
export * from "./classes/CryptoAsset";
|
package/build/index.js
CHANGED
|
@@ -183,6 +183,7 @@ __exportStar(require("./types/chained-quote"), exports);
|
|
|
183
183
|
__exportStar(require("./types/bitso-bank-account"), exports);
|
|
184
184
|
__exportStar(require("./types/bitso-receiving-account"), exports);
|
|
185
185
|
__exportStar(require("./types/exchange-rate-order"), exports);
|
|
186
|
+
__exportStar(require("./types/order-substatus"), exports);
|
|
186
187
|
__exportStar(require("./classes/Asset"), exports);
|
|
187
188
|
__exportStar(require("./classes/CountryAsset"), exports);
|
|
188
189
|
__exportStar(require("./classes/CryptoAsset"), exports);
|
|
@@ -0,0 +1,7 @@
|
|
|
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 = exports.OrderSubstatus || (exports.OrderSubstatus = {}));
|
package/build/types/order.d.ts
CHANGED
|
@@ -10,6 +10,7 @@ import { Fees } from "./fees";
|
|
|
10
10
|
import { PayoutMethod } from "./payout-method";
|
|
11
11
|
import { Partner } from "./partner";
|
|
12
12
|
import { ExchangeRateOrder } from "./exchange-rate-order";
|
|
13
|
+
import { OrderSubstatus } from "./order-substatus";
|
|
13
14
|
export interface Order {
|
|
14
15
|
id: string;
|
|
15
16
|
quoteId: string;
|
|
@@ -21,6 +22,7 @@ export interface Order {
|
|
|
21
22
|
payoutMethod?: PayoutMethod;
|
|
22
23
|
createdAt: Date;
|
|
23
24
|
status: OrderStatus;
|
|
25
|
+
substatus?: OrderSubstatus;
|
|
24
26
|
cryptoAddress?: string;
|
|
25
27
|
country: Country;
|
|
26
28
|
state?: string;
|