@taiger-common/model 1.0.32 → 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.
- package/dist/cjs/model/Program.js +14 -0
- package/dist/esm/model/Program.js +14 -0
- package/dist/types/model/Program.d.ts +24 -0
- package/dist/umd/index.js +1 -1
- package/package.json +1 -1
|
@@ -115,6 +115,20 @@ exports.programModule = {
|
|
|
115
115
|
ml_requirements: {
|
|
116
116
|
type: String
|
|
117
117
|
},
|
|
118
|
+
// statement of purpose
|
|
119
|
+
sop_required: {
|
|
120
|
+
type: String
|
|
121
|
+
},
|
|
122
|
+
sop_requirements: {
|
|
123
|
+
type: String
|
|
124
|
+
},
|
|
125
|
+
// personal history of statement
|
|
126
|
+
phs_required: {
|
|
127
|
+
type: String
|
|
128
|
+
},
|
|
129
|
+
phs_requirements: {
|
|
130
|
+
type: String
|
|
131
|
+
},
|
|
118
132
|
rl_required: {
|
|
119
133
|
type: String
|
|
120
134
|
},
|
|
@@ -112,6 +112,20 @@ export var programModule = {
|
|
|
112
112
|
ml_requirements: {
|
|
113
113
|
type: String
|
|
114
114
|
},
|
|
115
|
+
// statement of purpose
|
|
116
|
+
sop_required: {
|
|
117
|
+
type: String
|
|
118
|
+
},
|
|
119
|
+
sop_requirements: {
|
|
120
|
+
type: String
|
|
121
|
+
},
|
|
122
|
+
// personal history of statement
|
|
123
|
+
phs_required: {
|
|
124
|
+
type: String
|
|
125
|
+
},
|
|
126
|
+
phs_requirements: {
|
|
127
|
+
type: String
|
|
128
|
+
},
|
|
115
129
|
rl_required: {
|
|
116
130
|
type: String
|
|
117
131
|
},
|
|
@@ -130,6 +130,18 @@ export declare const programModule: {
|
|
|
130
130
|
ml_requirements: {
|
|
131
131
|
type: StringConstructor;
|
|
132
132
|
};
|
|
133
|
+
sop_required: {
|
|
134
|
+
type: StringConstructor;
|
|
135
|
+
};
|
|
136
|
+
sop_requirements: {
|
|
137
|
+
type: StringConstructor;
|
|
138
|
+
};
|
|
139
|
+
phs_required: {
|
|
140
|
+
type: StringConstructor;
|
|
141
|
+
};
|
|
142
|
+
phs_requirements: {
|
|
143
|
+
type: StringConstructor;
|
|
144
|
+
};
|
|
133
145
|
rl_required: {
|
|
134
146
|
type: StringConstructor;
|
|
135
147
|
};
|
|
@@ -302,6 +314,10 @@ export declare const programSchema: Schema<any, import("mongoose").Model<any, an
|
|
|
302
314
|
gmat?: string | null | undefined;
|
|
303
315
|
ml_required?: string | null | undefined;
|
|
304
316
|
ml_requirements?: string | null | undefined;
|
|
317
|
+
sop_required?: string | null | undefined;
|
|
318
|
+
sop_requirements?: string | null | undefined;
|
|
319
|
+
phs_required?: string | null | undefined;
|
|
320
|
+
phs_requirements?: string | null | undefined;
|
|
305
321
|
rl_required?: string | null | undefined;
|
|
306
322
|
rl_requirements?: string | null | undefined;
|
|
307
323
|
is_rl_specific?: boolean | null | undefined;
|
|
@@ -380,6 +396,10 @@ export declare const programSchema: Schema<any, import("mongoose").Model<any, an
|
|
|
380
396
|
gmat?: string | null | undefined;
|
|
381
397
|
ml_required?: string | null | undefined;
|
|
382
398
|
ml_requirements?: string | null | undefined;
|
|
399
|
+
sop_required?: string | null | undefined;
|
|
400
|
+
sop_requirements?: string | null | undefined;
|
|
401
|
+
phs_required?: string | null | undefined;
|
|
402
|
+
phs_requirements?: string | null | undefined;
|
|
383
403
|
rl_required?: string | null | undefined;
|
|
384
404
|
rl_requirements?: string | null | undefined;
|
|
385
405
|
is_rl_specific?: boolean | null | undefined;
|
|
@@ -458,6 +478,10 @@ export declare const programSchema: Schema<any, import("mongoose").Model<any, an
|
|
|
458
478
|
gmat?: string | null | undefined;
|
|
459
479
|
ml_required?: string | null | undefined;
|
|
460
480
|
ml_requirements?: string | null | undefined;
|
|
481
|
+
sop_required?: string | null | undefined;
|
|
482
|
+
sop_requirements?: string | null | undefined;
|
|
483
|
+
phs_required?: string | null | undefined;
|
|
484
|
+
phs_requirements?: string | null | undefined;
|
|
461
485
|
rl_required?: string | null | undefined;
|
|
462
486
|
rl_requirements?: string | null | undefined;
|
|
463
487
|
is_rl_specific?: boolean | null | undefined;
|