@riocrypto/common 1.0.1596 → 1.0.1597
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/types/crypto.js
CHANGED
|
@@ -17,6 +17,7 @@ export declare enum OrderStatus {
|
|
|
17
17
|
PaymentFailed = "failedPayment",
|
|
18
18
|
BankPayoutDetailsAdded = "bankPayoutDetailsAdded",
|
|
19
19
|
AwaitingPayment = "awaitingPayment",
|
|
20
|
+
AwaitingOriginOrderCompletion = "awaitingOriginOrderCompletion",
|
|
20
21
|
AwaitingTransferReissue = "awaitingTransferReissue",
|
|
21
22
|
AwaitingPayout = "awaitingPayout",
|
|
22
23
|
AwaitingBridgeRouting = "awaitingBridgeRouting",
|
|
@@ -38,6 +38,8 @@ var OrderStatus;
|
|
|
38
38
|
OrderStatus["BankPayoutDetailsAdded"] = "bankPayoutDetailsAdded";
|
|
39
39
|
// When waiting for asynchronous payment
|
|
40
40
|
OrderStatus["AwaitingPayment"] = "awaitingPayment";
|
|
41
|
+
// When waiting for asynchronous payment
|
|
42
|
+
OrderStatus["AwaitingOriginOrderCompletion"] = "awaitingOriginOrderCompletion";
|
|
41
43
|
// During chained order, when waiting for the transfer to be reissued by the Bridge in case of requote
|
|
42
44
|
OrderStatus["AwaitingTransferReissue"] = "awaitingTransferReissue";
|
|
43
45
|
// When waiting for asynchronous payout
|
package/build/types/order.d.ts
CHANGED