@riocrypto/common-server 1.0.1821 → 1.0.1822

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.
@@ -49,6 +49,8 @@ interface OrderAttrs {
49
49
  paymentAddressId?: string;
50
50
  payoutAddressId?: string;
51
51
  payoutBankAccountId?: string;
52
+ binancePaymentId?: string;
53
+ binancePayoutId?: string;
52
54
  attributes?: OrderAttribute[];
53
55
  }
54
56
  interface OrderDoc extends Document {
@@ -100,6 +102,8 @@ interface OrderDoc extends Document {
100
102
  paymentAddressId?: string;
101
103
  payoutAddressId?: string;
102
104
  payoutBankAccountId?: string;
105
+ binancePaymentId?: string;
106
+ binancePayoutId?: string;
103
107
  attributes?: OrderAttribute[];
104
108
  }
105
109
  interface OrderModel extends Model<OrderDoc> {
@@ -214,6 +214,12 @@ const buildOrder = (mongoose) => {
214
214
  payoutBankAccountId: {
215
215
  type: String,
216
216
  },
217
+ binancePaymentId: {
218
+ type: String,
219
+ },
220
+ binancePayoutId: {
221
+ type: String,
222
+ },
217
223
  attributes: [
218
224
  {
219
225
  type: String,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@riocrypto/common-server",
3
- "version": "1.0.1821",
3
+ "version": "1.0.1822",
4
4
  "description": "",
5
5
  "main": "./build/index.js",
6
6
  "types": "./build/index.d.ts",