@kipicore/dbcore 1.1.297 → 1.1.299
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.
|
@@ -26,6 +26,7 @@ export interface IUserInstituteMetaAttributes extends IDefaultAttributes, Docume
|
|
|
26
26
|
additionalField?: object;
|
|
27
27
|
userId: string;
|
|
28
28
|
instituteId?: string;
|
|
29
|
+
isInquiryStudent?: boolean;
|
|
29
30
|
userType: USER_TYPES;
|
|
30
31
|
status?: USER_INSTITUTE_META_STATUS;
|
|
31
32
|
endTime?: Date;
|
|
@@ -159,6 +159,10 @@ const userInstituteMetaSchema = new mongoose_1.Schema({
|
|
|
159
159
|
enum: Object.values(app_1.BOOLEAN_STATUS),
|
|
160
160
|
default: app_1.BOOLEAN_STATUS.NO,
|
|
161
161
|
},
|
|
162
|
+
isInquiryStudent: {
|
|
163
|
+
type: Boolean,
|
|
164
|
+
default: false,
|
|
165
|
+
},
|
|
162
166
|
startTime: {
|
|
163
167
|
type: Date,
|
|
164
168
|
required: true,
|
package/package.json
CHANGED