@riocrypto/common-server 1.0.1854 → 1.0.1855

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.
@@ -72,6 +72,7 @@ interface OrderAttrs {
72
72
  CCI?: string;
73
73
  CLABE?: string;
74
74
  };
75
+ payoutTransferLimit?: number;
75
76
  }
76
77
  interface OrderDoc extends Document {
77
78
  quoteId: string;
@@ -145,6 +146,7 @@ interface OrderDoc extends Document {
145
146
  CCI?: string;
146
147
  CLABE?: string;
147
148
  };
149
+ payoutTransferLimit?: number;
148
150
  }
149
151
  interface OrderModel extends Model<OrderDoc> {
150
152
  build(attrs: OrderAttrs): OrderDoc;
@@ -275,6 +275,9 @@ const buildOrder = (mongoose) => {
275
275
  type: String,
276
276
  },
277
277
  },
278
+ payoutTransferLimit: {
279
+ type: Number,
280
+ },
278
281
  }, {
279
282
  toJSON: {
280
283
  transform(doc, ret) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@riocrypto/common-server",
3
- "version": "1.0.1854",
3
+ "version": "1.0.1855",
4
4
  "description": "",
5
5
  "main": "./build/index.js",
6
6
  "types": "./build/index.d.ts",