@riocrypto/common 1.0.1613 → 1.0.1616
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
|
@@ -170,6 +170,7 @@ export * from "./types/onboarding-status";
|
|
|
170
170
|
export * from "./types/dlocal-payment-method";
|
|
171
171
|
export * from "./types/users-stats";
|
|
172
172
|
export * from "./types/user-attribute";
|
|
173
|
+
export * from "./types/order-attribute";
|
|
173
174
|
export * from "./types/security-question";
|
|
174
175
|
export * from "./types/rio-settings";
|
|
175
176
|
export * from "./types/rio-settings-update";
|
package/build/index.js
CHANGED
|
@@ -186,6 +186,7 @@ __exportStar(require("./types/onboarding-status"), exports);
|
|
|
186
186
|
__exportStar(require("./types/dlocal-payment-method"), exports);
|
|
187
187
|
__exportStar(require("./types/users-stats"), exports);
|
|
188
188
|
__exportStar(require("./types/user-attribute"), exports);
|
|
189
|
+
__exportStar(require("./types/order-attribute"), exports);
|
|
189
190
|
__exportStar(require("./types/security-question"), exports);
|
|
190
191
|
__exportStar(require("./types/rio-settings"), exports);
|
|
191
192
|
__exportStar(require("./types/rio-settings-update"), exports);
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.OrderAttribute = void 0;
|
|
4
|
+
var OrderAttribute;
|
|
5
|
+
(function (OrderAttribute) {
|
|
6
|
+
OrderAttribute["binanceFlow"] = "binanceFlow";
|
|
7
|
+
})(OrderAttribute = exports.OrderAttribute || (exports.OrderAttribute = {}));
|
package/build/types/order.d.ts
CHANGED
|
@@ -11,6 +11,7 @@ import { PayoutMethod } from "./payout-method";
|
|
|
11
11
|
import { Partner } from "./partner";
|
|
12
12
|
import { ExchangeRateOrder } from "./exchange-rate-order";
|
|
13
13
|
import { OrderSubstatus } from "./order-substatus";
|
|
14
|
+
import { OrderAttribute } from "./order-attribute";
|
|
14
15
|
export interface Order {
|
|
15
16
|
id: string;
|
|
16
17
|
quoteId: string;
|
|
@@ -62,4 +63,5 @@ export interface Order {
|
|
|
62
63
|
paymentAddressId?: string;
|
|
63
64
|
payoutAddressId?: string;
|
|
64
65
|
payoutBankAccountId?: string;
|
|
66
|
+
attributes?: OrderAttribute[];
|
|
65
67
|
}
|