@riocrypto/common-server 1.0.1769 → 1.0.1770

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.
@@ -97,6 +97,7 @@ interface UserAttrs {
97
97
  fiscalName?: string;
98
98
  fiscalRegimenCode?: number;
99
99
  taxId?: string;
100
+ postalCode?: string;
100
101
  };
101
102
  };
102
103
  quotationTime?: number;
@@ -212,6 +213,7 @@ interface UserDoc extends Document {
212
213
  fiscalName?: string;
213
214
  taxId?: string;
214
215
  fiscalRegimenCode?: number;
216
+ postalCode?: string;
215
217
  };
216
218
  };
217
219
  quotationTime?: number;
@@ -257,6 +257,9 @@ const buildUser = (mongoose) => {
257
257
  fiscalRegimenCode: {
258
258
  type: Number,
259
259
  },
260
+ postalCode: {
261
+ type: String,
262
+ },
260
263
  },
261
264
  },
262
265
  businessData: {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@riocrypto/common-server",
3
- "version": "1.0.1769",
3
+ "version": "1.0.1770",
4
4
  "description": "",
5
5
  "main": "./build/index.js",
6
6
  "types": "./build/index.d.ts",