@taiger-common/model 1.0.33 → 1.0.34
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.
|
@@ -115,12 +115,20 @@ exports.programModule = {
|
|
|
115
115
|
ml_requirements: {
|
|
116
116
|
type: String
|
|
117
117
|
},
|
|
118
|
+
// statement of purpose
|
|
118
119
|
sop_required: {
|
|
119
120
|
type: String
|
|
120
121
|
},
|
|
121
122
|
sop_requirements: {
|
|
122
123
|
type: String
|
|
123
124
|
},
|
|
125
|
+
// personal history of statement
|
|
126
|
+
phs_required: {
|
|
127
|
+
type: String
|
|
128
|
+
},
|
|
129
|
+
phs_requirements: {
|
|
130
|
+
type: String
|
|
131
|
+
},
|
|
124
132
|
rl_required: {
|
|
125
133
|
type: String
|
|
126
134
|
},
|
|
@@ -112,12 +112,20 @@ export var programModule = {
|
|
|
112
112
|
ml_requirements: {
|
|
113
113
|
type: String
|
|
114
114
|
},
|
|
115
|
+
// statement of purpose
|
|
115
116
|
sop_required: {
|
|
116
117
|
type: String
|
|
117
118
|
},
|
|
118
119
|
sop_requirements: {
|
|
119
120
|
type: String
|
|
120
121
|
},
|
|
122
|
+
// personal history of statement
|
|
123
|
+
phs_required: {
|
|
124
|
+
type: String
|
|
125
|
+
},
|
|
126
|
+
phs_requirements: {
|
|
127
|
+
type: String
|
|
128
|
+
},
|
|
121
129
|
rl_required: {
|
|
122
130
|
type: String
|
|
123
131
|
},
|
|
@@ -136,6 +136,12 @@ export declare const programModule: {
|
|
|
136
136
|
sop_requirements: {
|
|
137
137
|
type: StringConstructor;
|
|
138
138
|
};
|
|
139
|
+
phs_required: {
|
|
140
|
+
type: StringConstructor;
|
|
141
|
+
};
|
|
142
|
+
phs_requirements: {
|
|
143
|
+
type: StringConstructor;
|
|
144
|
+
};
|
|
139
145
|
rl_required: {
|
|
140
146
|
type: StringConstructor;
|
|
141
147
|
};
|
|
@@ -310,6 +316,8 @@ export declare const programSchema: Schema<any, import("mongoose").Model<any, an
|
|
|
310
316
|
ml_requirements?: string | null | undefined;
|
|
311
317
|
sop_required?: string | null | undefined;
|
|
312
318
|
sop_requirements?: string | null | undefined;
|
|
319
|
+
phs_required?: string | null | undefined;
|
|
320
|
+
phs_requirements?: string | null | undefined;
|
|
313
321
|
rl_required?: string | null | undefined;
|
|
314
322
|
rl_requirements?: string | null | undefined;
|
|
315
323
|
is_rl_specific?: boolean | null | undefined;
|
|
@@ -390,6 +398,8 @@ export declare const programSchema: Schema<any, import("mongoose").Model<any, an
|
|
|
390
398
|
ml_requirements?: string | null | undefined;
|
|
391
399
|
sop_required?: string | null | undefined;
|
|
392
400
|
sop_requirements?: string | null | undefined;
|
|
401
|
+
phs_required?: string | null | undefined;
|
|
402
|
+
phs_requirements?: string | null | undefined;
|
|
393
403
|
rl_required?: string | null | undefined;
|
|
394
404
|
rl_requirements?: string | null | undefined;
|
|
395
405
|
is_rl_specific?: boolean | null | undefined;
|
|
@@ -470,6 +480,8 @@ export declare const programSchema: Schema<any, import("mongoose").Model<any, an
|
|
|
470
480
|
ml_requirements?: string | null | undefined;
|
|
471
481
|
sop_required?: string | null | undefined;
|
|
472
482
|
sop_requirements?: string | null | undefined;
|
|
483
|
+
phs_required?: string | null | undefined;
|
|
484
|
+
phs_requirements?: string | null | undefined;
|
|
473
485
|
rl_required?: string | null | undefined;
|
|
474
486
|
rl_requirements?: string | null | undefined;
|
|
475
487
|
is_rl_specific?: boolean | null | undefined;
|