@riocrypto/common 1.0.2098 → 1.0.2100
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);
|
|
@@ -18,7 +18,6 @@ export interface ImportOrderData {
|
|
|
18
18
|
deferredSettlementFeeFiat?: number;
|
|
19
19
|
processingFeeFiat?: number;
|
|
20
20
|
transferFeeFiat?: number;
|
|
21
|
-
hashes?: string[];
|
|
22
21
|
bankAccountId?: string;
|
|
23
22
|
cryptoAddressId?: string;
|
|
24
23
|
blockchainAddress?: string;
|
|
@@ -31,4 +30,6 @@ export interface ImportOrderData {
|
|
|
31
30
|
serviceFeeFiat?: number;
|
|
32
31
|
serviceFeeFiatTax?: number;
|
|
33
32
|
rioPayoutFireblocksVaultId?: string;
|
|
33
|
+
payoutsSent?: any[];
|
|
34
|
+
paymentsReceived?: any[];
|
|
34
35
|
}
|
package/build/types/order.d.ts
CHANGED
|
@@ -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,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 = {}));
|