@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.
- package/build/models/user.d.ts +2 -0
- package/build/models/user.js +3 -0
- package/package.json +1 -1
package/build/models/user.d.ts
CHANGED
|
@@ -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 };
|
package/build/models/user.js
CHANGED