@taiger-common/model 1.0.23 → 1.0.25

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.
@@ -40,6 +40,14 @@ exports.permissionSchema = new mongoose_1.Schema({
40
40
  type: Boolean,
41
41
  default: false
42
42
  },
43
+ canAddUser: {
44
+ type: Boolean,
45
+ default: false
46
+ },
47
+ canModifyUser: {
48
+ type: Boolean,
49
+ default: false
50
+ },
43
51
  isEssayWriters: {
44
52
  type: Boolean,
45
53
  default: false
@@ -85,6 +85,10 @@ exports.programRequirementSchema = new mongoose_1.Schema({
85
85
  type: Number,
86
86
  default: 0
87
87
  },
88
+ workExperienceScore: {
89
+ type: Number,
90
+ default: 0
91
+ },
88
92
  testScore: {
89
93
  type: Number,
90
94
  default: 0
@@ -37,6 +37,14 @@ export var permissionSchema = new Schema({
37
37
  type: Boolean,
38
38
  default: false
39
39
  },
40
+ canAddUser: {
41
+ type: Boolean,
42
+ default: false
43
+ },
44
+ canModifyUser: {
45
+ type: Boolean,
46
+ default: false
47
+ },
40
48
  isEssayWriters: {
41
49
  type: Boolean,
42
50
  default: false
@@ -82,6 +82,10 @@ export var programRequirementSchema = new Schema({
82
82
  type: Number,
83
83
  default: 0
84
84
  },
85
+ workExperienceScore: {
86
+ type: Number,
87
+ default: 0
88
+ },
85
89
  testScore: {
86
90
  type: Number,
87
91
  default: 0
@@ -39,6 +39,8 @@ export declare const permissionSchema: Schema<any, import("mongoose").Model<any,
39
39
  canAssignAgents: boolean;
40
40
  canModifyDocumentation: boolean;
41
41
  canAccessStudentDatabase: boolean;
42
+ canAddUser: boolean;
43
+ canModifyUser: boolean;
42
44
  isEssayWriters: boolean;
43
45
  updatedAt?: NativeDate | null | undefined;
44
46
  user_id?: import("mongoose").Types.ObjectId | null | undefined;
@@ -55,6 +57,8 @@ export declare const permissionSchema: Schema<any, import("mongoose").Model<any,
55
57
  canAssignAgents: boolean;
56
58
  canModifyDocumentation: boolean;
57
59
  canAccessStudentDatabase: boolean;
60
+ canAddUser: boolean;
61
+ canModifyUser: boolean;
58
62
  isEssayWriters: boolean;
59
63
  updatedAt?: NativeDate | null | undefined;
60
64
  user_id?: import("mongoose").Types.ObjectId | null | undefined;
@@ -71,6 +75,8 @@ export declare const permissionSchema: Schema<any, import("mongoose").Model<any,
71
75
  canAssignAgents: boolean;
72
76
  canModifyDocumentation: boolean;
73
77
  canAccessStudentDatabase: boolean;
78
+ canAddUser: boolean;
79
+ canModifyUser: boolean;
74
80
  isEssayWriters: boolean;
75
81
  updatedAt?: NativeDate | null | undefined;
76
82
  user_id?: import("mongoose").Types.ObjectId | null | undefined;
@@ -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[];