@riocrypto/common-server 1.0.1833 → 1.0.1835

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.
@@ -60,7 +60,7 @@ interface OrderAttrs {
60
60
  CLABE?: string;
61
61
  };
62
62
  destinationOfFunds?: {
63
- blockchainAddresses?: string[];
63
+ blockchainAddress?: string;
64
64
  accountHolderName?: string;
65
65
  accountNumber?: string;
66
66
  CCI?: string;
@@ -127,7 +127,7 @@ interface OrderDoc extends Document {
127
127
  CLABE?: string;
128
128
  };
129
129
  destinationOfFunds?: {
130
- blockchainAddress?: string[];
130
+ blockchainAddress?: string;
131
131
  accountHolderName?: string;
132
132
  accountNumber?: string;
133
133
  CCI?: string;
@@ -251,11 +251,9 @@ const buildOrder = (mongoose) => {
251
251
  },
252
252
  },
253
253
  destinationOfFunds: {
254
- blockchainAddresses: [
255
- {
256
- type: String,
257
- },
258
- ],
254
+ blockchainAddress: {
255
+ type: String,
256
+ },
259
257
  accountHolderName: {
260
258
  type: String,
261
259
  },
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@riocrypto/common-server",
3
- "version": "1.0.1833",
3
+ "version": "1.0.1835",
4
4
  "description": "",
5
5
  "main": "./build/index.js",
6
6
  "types": "./build/index.d.ts",