@riocrypto/common-server 1.0.1448 → 1.0.1449

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.
@@ -130,6 +130,7 @@ interface UserAttrs {
130
130
  fiscalRegimenCode?: number;
131
131
  };
132
132
  };
133
+ quotationTime?: number;
133
134
  }
134
135
  interface UserModel extends Model<UserDoc> {
135
136
  build(attrs: UserAttrs): UserDoc;
@@ -265,6 +266,7 @@ interface UserDoc extends Document {
265
266
  fiscalRegimenCode?: number;
266
267
  };
267
268
  };
269
+ quotationTime?: number;
268
270
  }
269
271
  declare const buildUser: (mongoose: Mongoose) => UserModel;
270
272
  export { buildUser, UserDoc };
@@ -125,6 +125,9 @@ const buildUser = (mongoose) => {
125
125
  proofOfAddressFile: {
126
126
  type: String,
127
127
  },
128
+ quotationTime: {
129
+ type: Number,
130
+ },
128
131
  platformFeeRanges: {
129
132
  MX: {
130
133
  buy: [
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@riocrypto/common-server",
3
- "version": "1.0.1448",
3
+ "version": "1.0.1449",
4
4
  "description": "",
5
5
  "main": "./build/index.js",
6
6
  "types": "./build/index.d.ts",