@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.
- package/build/models/order.d.ts +2 -2
- package/build/models/order.js +3 -5
- package/package.json +1 -1
package/build/models/order.d.ts
CHANGED
|
@@ -60,7 +60,7 @@ interface OrderAttrs {
|
|
|
60
60
|
CLABE?: string;
|
|
61
61
|
};
|
|
62
62
|
destinationOfFunds?: {
|
|
63
|
-
|
|
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;
|
package/build/models/order.js
CHANGED
|
@@ -251,11 +251,9 @@ const buildOrder = (mongoose) => {
|
|
|
251
251
|
},
|
|
252
252
|
},
|
|
253
253
|
destinationOfFunds: {
|
|
254
|
-
|
|
255
|
-
|
|
256
|
-
|
|
257
|
-
},
|
|
258
|
-
],
|
|
254
|
+
blockchainAddress: {
|
|
255
|
+
type: String,
|
|
256
|
+
},
|
|
259
257
|
accountHolderName: {
|
|
260
258
|
type: String,
|
|
261
259
|
},
|