@taiger-common/model 1.0.24 → 1.0.26
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/README.md +4 -1
- package/dist/cjs/model/Interview.js +0 -4
- package/dist/cjs/model/Programrequirement.js +4 -0
- package/dist/cjs/model/User.js +2 -1
- package/dist/esm/model/Interview.js +0 -4
- package/dist/esm/model/Programrequirement.js +4 -0
- package/dist/esm/model/User.js +2 -1
- package/dist/types/model/Interview.d.ts +0 -3
- package/dist/types/model/Programrequirement.d.ts +3 -0
- package/dist/umd/index.js +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -18,4 +18,7 @@ npm version patch # or minor/major
|
|
|
18
18
|
git push origin main --tags
|
|
19
19
|
|
|
20
20
|
# Publish to npm
|
|
21
|
-
npm publish
|
|
21
|
+
npm publish
|
|
22
|
+
|
|
23
|
+
# Concat command for powershell (please modify the commit message)
|
|
24
|
+
git add .; git commit -m "fix: add application_year"; git push origin main; npm run build; npm version patch; git push origin main --tags; npm publish
|
package/dist/cjs/model/User.js
CHANGED
|
@@ -429,7 +429,8 @@ var applicationSchema = new mongoose_1.Schema({
|
|
|
429
429
|
finalEnrolment: { type: Boolean, default: false },
|
|
430
430
|
decided: { type: String, default: '-' },
|
|
431
431
|
closed: { type: String, default: '-' },
|
|
432
|
-
admission: { type: String, default: '-' }
|
|
432
|
+
admission: { type: String, default: '-' },
|
|
433
|
+
application_year: { type: String, default: '' }
|
|
433
434
|
});
|
|
434
435
|
var studentSchema = new mongoose_1.Schema({
|
|
435
436
|
agents: [{ type: mongoose_1.Schema.Types.ObjectId, ref: 'Agent' }],
|
package/dist/esm/model/User.js
CHANGED
|
@@ -424,7 +424,8 @@ var applicationSchema = new Schema({
|
|
|
424
424
|
finalEnrolment: { type: Boolean, default: false },
|
|
425
425
|
decided: { type: String, default: '-' },
|
|
426
426
|
closed: { type: String, default: '-' },
|
|
427
|
-
admission: { type: String, default: '-' }
|
|
427
|
+
admission: { type: String, default: '-' },
|
|
428
|
+
application_year: { type: String, default: '' }
|
|
428
429
|
});
|
|
429
430
|
var studentSchema = new Schema({
|
|
430
431
|
agents: [{ type: Schema.Types.ObjectId, ref: 'Agent' }],
|
|
@@ -30,7 +30,6 @@ export declare const interviewsSchema: Schema<any, import("mongoose").Model<any,
|
|
|
30
30
|
createdAt: NativeDate;
|
|
31
31
|
updatedAt: NativeDate;
|
|
32
32
|
} & {
|
|
33
|
-
status: string;
|
|
34
33
|
trainer_id: import("mongoose").Types.ObjectId[];
|
|
35
34
|
interview_description: string;
|
|
36
35
|
interviewer: string;
|
|
@@ -47,7 +46,6 @@ export declare const interviewsSchema: Schema<any, import("mongoose").Model<any,
|
|
|
47
46
|
createdAt: NativeDate;
|
|
48
47
|
updatedAt: NativeDate;
|
|
49
48
|
} & {
|
|
50
|
-
status: string;
|
|
51
49
|
trainer_id: import("mongoose").Types.ObjectId[];
|
|
52
50
|
interview_description: string;
|
|
53
51
|
interviewer: string;
|
|
@@ -64,7 +62,6 @@ export declare const interviewsSchema: Schema<any, import("mongoose").Model<any,
|
|
|
64
62
|
createdAt: NativeDate;
|
|
65
63
|
updatedAt: NativeDate;
|
|
66
64
|
} & {
|
|
67
|
-
status: string;
|
|
68
65
|
trainer_id: import("mongoose").Types.ObjectId[];
|
|
69
66
|
interview_description: string;
|
|
70
67
|
interviewer: string;
|
|
@@ -63,6 +63,7 @@ export declare const programRequirementSchema: Schema<any, import("mongoose").Mo
|
|
|
63
63
|
gmatScore: number;
|
|
64
64
|
greScore: number;
|
|
65
65
|
interviewScore: number;
|
|
66
|
+
workExperienceScore: number;
|
|
66
67
|
testScore: number;
|
|
67
68
|
firstRoundConsidered: string[];
|
|
68
69
|
secondRoundConsidered: string[];
|
|
@@ -108,6 +109,7 @@ export declare const programRequirementSchema: Schema<any, import("mongoose").Mo
|
|
|
108
109
|
gmatScore: number;
|
|
109
110
|
greScore: number;
|
|
110
111
|
interviewScore: number;
|
|
112
|
+
workExperienceScore: number;
|
|
111
113
|
testScore: number;
|
|
112
114
|
firstRoundConsidered: string[];
|
|
113
115
|
secondRoundConsidered: string[];
|
|
@@ -153,6 +155,7 @@ export declare const programRequirementSchema: Schema<any, import("mongoose").Mo
|
|
|
153
155
|
gmatScore: number;
|
|
154
156
|
greScore: number;
|
|
155
157
|
interviewScore: number;
|
|
158
|
+
workExperienceScore: number;
|
|
156
159
|
testScore: number;
|
|
157
160
|
firstRoundConsidered: string[];
|
|
158
161
|
secondRoundConsidered: string[];
|