@tudopz/model 2.21.3 → 2.21.4
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
CHANGED
|
@@ -99,4 +99,5 @@ var STUDENT_SERVICE;
|
|
|
99
99
|
STUDENT_SERVICE[STUDENT_SERVICE["HAST"] = 36] = "HAST";
|
|
100
100
|
STUDENT_SERVICE[STUDENT_SERVICE["NO_SERVICE"] = 37] = "NO_SERVICE";
|
|
101
101
|
STUDENT_SERVICE[STUDENT_SERVICE["PRE_MED"] = 38] = "PRE_MED";
|
|
102
|
+
STUDENT_SERVICE[STUDENT_SERVICE["MYP"] = 39] = "MYP";
|
|
102
103
|
})(STUDENT_SERVICE = exports.STUDENT_SERVICE || (exports.STUDENT_SERVICE = {}));
|
package/package.json
CHANGED
package/lib/model/high-school.js
DELETED
|
@@ -1,18 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
const tslib_1 = require("tslib");
|
|
4
|
-
const typeorm_1 = require("typeorm");
|
|
5
|
-
let HighSchool = class HighSchool {
|
|
6
|
-
};
|
|
7
|
-
tslib_1.__decorate([
|
|
8
|
-
typeorm_1.PrimaryGeneratedColumn(),
|
|
9
|
-
tslib_1.__metadata("design:type", Number)
|
|
10
|
-
], HighSchool.prototype, "id", void 0);
|
|
11
|
-
tslib_1.__decorate([
|
|
12
|
-
typeorm_1.Column({ type: 'varchar', length: 128 }),
|
|
13
|
-
tslib_1.__metadata("design:type", String)
|
|
14
|
-
], HighSchool.prototype, "name", void 0);
|
|
15
|
-
HighSchool = tslib_1.__decorate([
|
|
16
|
-
typeorm_1.Entity({ name: 'high_schools' })
|
|
17
|
-
], HighSchool);
|
|
18
|
-
exports.HighSchool = HighSchool;
|