@aibrains/shared-types 0.11.0 → 0.13.0
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/schemas/academics/course-section.schema.d.ts +8 -0
- package/dist/schemas/academics/course-section.schema.d.ts.map +1 -1
- package/dist/schemas/academics/course-section.schema.js +2 -0
- package/dist/schemas/academics/course-section.schema.js.map +1 -1
- package/dist/schemas/academics/student.schema.d.ts +12 -12
- package/dist/schemas/enrollment/enrollment.schema.d.ts +32 -32
- package/dist/schemas/identity/calendar-date.schema.d.ts +48 -48
- package/dist/schemas/identity/calendar.schema.d.ts +10 -10
- package/dist/schemas/identity/grade-levels.d.ts +125 -0
- package/dist/schemas/identity/grade-levels.d.ts.map +1 -0
- package/dist/schemas/identity/grade-levels.js +222 -0
- package/dist/schemas/identity/grade-levels.js.map +1 -0
- package/dist/schemas/identity/index.d.ts +1 -0
- package/dist/schemas/identity/index.d.ts.map +1 -1
- package/dist/schemas/identity/index.js +2 -0
- package/dist/schemas/identity/index.js.map +1 -1
- package/dist/schemas/identity/leave.schema.d.ts +26 -26
- package/dist/schemas/identity/school.schema.d.ts +474 -2
- package/dist/schemas/identity/school.schema.d.ts.map +1 -1
- package/dist/schemas/identity/school.schema.js +29 -2
- package/dist/schemas/identity/school.schema.js.map +1 -1
- package/dist/schemas/identity/staff.schema.d.ts +2 -2
- package/package.json +1 -1
|
@@ -102,6 +102,7 @@ export declare const sectionResponseSchema: z.ZodObject<{
|
|
|
102
102
|
courseId: z.ZodString;
|
|
103
103
|
courseCode: z.ZodOptional<z.ZodString>;
|
|
104
104
|
courseName: z.ZodOptional<z.ZodString>;
|
|
105
|
+
subjectArea: z.ZodOptional<z.ZodEnum<["mathematics", "english_language_arts", "science", "social_studies", "world_languages", "arts", "physical_education", "technology", "business", "vocational", "other"]>>;
|
|
105
106
|
schoolId: z.ZodString;
|
|
106
107
|
academicYearId: z.ZodString;
|
|
107
108
|
termId: z.ZodOptional<z.ZodString>;
|
|
@@ -143,6 +144,7 @@ export declare const sectionResponseSchema: z.ZodObject<{
|
|
|
143
144
|
roomNumber?: string | undefined;
|
|
144
145
|
locationId?: string | undefined;
|
|
145
146
|
periodName?: string | undefined;
|
|
147
|
+
subjectArea?: "vocational" | "other" | "mathematics" | "science" | "english_language_arts" | "social_studies" | "physical_education" | "technology" | "world_languages" | "arts" | "business" | undefined;
|
|
146
148
|
coTeacherIds?: string[] | undefined;
|
|
147
149
|
courseCode?: string | undefined;
|
|
148
150
|
primaryTeacherName?: string | undefined;
|
|
@@ -171,6 +173,7 @@ export declare const sectionResponseSchema: z.ZodObject<{
|
|
|
171
173
|
roomNumber?: string | undefined;
|
|
172
174
|
locationId?: string | undefined;
|
|
173
175
|
periodName?: string | undefined;
|
|
176
|
+
subjectArea?: "vocational" | "other" | "mathematics" | "science" | "english_language_arts" | "social_studies" | "physical_education" | "technology" | "world_languages" | "arts" | "business" | undefined;
|
|
174
177
|
coTeacherIds?: string[] | undefined;
|
|
175
178
|
courseCode?: string | undefined;
|
|
176
179
|
primaryTeacherName?: string | undefined;
|
|
@@ -189,6 +192,7 @@ export declare const sectionListResponseSchema: z.ZodObject<{
|
|
|
189
192
|
courseId: z.ZodString;
|
|
190
193
|
courseCode: z.ZodOptional<z.ZodString>;
|
|
191
194
|
courseName: z.ZodOptional<z.ZodString>;
|
|
195
|
+
subjectArea: z.ZodOptional<z.ZodEnum<["mathematics", "english_language_arts", "science", "social_studies", "world_languages", "arts", "physical_education", "technology", "business", "vocational", "other"]>>;
|
|
192
196
|
schoolId: z.ZodString;
|
|
193
197
|
academicYearId: z.ZodString;
|
|
194
198
|
termId: z.ZodOptional<z.ZodString>;
|
|
@@ -230,6 +234,7 @@ export declare const sectionListResponseSchema: z.ZodObject<{
|
|
|
230
234
|
roomNumber?: string | undefined;
|
|
231
235
|
locationId?: string | undefined;
|
|
232
236
|
periodName?: string | undefined;
|
|
237
|
+
subjectArea?: "vocational" | "other" | "mathematics" | "science" | "english_language_arts" | "social_studies" | "physical_education" | "technology" | "world_languages" | "arts" | "business" | undefined;
|
|
233
238
|
coTeacherIds?: string[] | undefined;
|
|
234
239
|
courseCode?: string | undefined;
|
|
235
240
|
primaryTeacherName?: string | undefined;
|
|
@@ -258,6 +263,7 @@ export declare const sectionListResponseSchema: z.ZodObject<{
|
|
|
258
263
|
roomNumber?: string | undefined;
|
|
259
264
|
locationId?: string | undefined;
|
|
260
265
|
periodName?: string | undefined;
|
|
266
|
+
subjectArea?: "vocational" | "other" | "mathematics" | "science" | "english_language_arts" | "social_studies" | "physical_education" | "technology" | "world_languages" | "arts" | "business" | undefined;
|
|
261
267
|
coTeacherIds?: string[] | undefined;
|
|
262
268
|
courseCode?: string | undefined;
|
|
263
269
|
primaryTeacherName?: string | undefined;
|
|
@@ -291,6 +297,7 @@ export declare const sectionListResponseSchema: z.ZodObject<{
|
|
|
291
297
|
roomNumber?: string | undefined;
|
|
292
298
|
locationId?: string | undefined;
|
|
293
299
|
periodName?: string | undefined;
|
|
300
|
+
subjectArea?: "vocational" | "other" | "mathematics" | "science" | "english_language_arts" | "social_studies" | "physical_education" | "technology" | "world_languages" | "arts" | "business" | undefined;
|
|
294
301
|
coTeacherIds?: string[] | undefined;
|
|
295
302
|
courseCode?: string | undefined;
|
|
296
303
|
primaryTeacherName?: string | undefined;
|
|
@@ -324,6 +331,7 @@ export declare const sectionListResponseSchema: z.ZodObject<{
|
|
|
324
331
|
roomNumber?: string | undefined;
|
|
325
332
|
locationId?: string | undefined;
|
|
326
333
|
periodName?: string | undefined;
|
|
334
|
+
subjectArea?: "vocational" | "other" | "mathematics" | "science" | "english_language_arts" | "social_studies" | "physical_education" | "technology" | "world_languages" | "arts" | "business" | undefined;
|
|
327
335
|
coTeacherIds?: string[] | undefined;
|
|
328
336
|
courseCode?: string | undefined;
|
|
329
337
|
primaryTeacherName?: string | undefined;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"course-section.schema.d.ts","sourceRoot":"","sources":["../../../src/schemas/academics/course-section.schema.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;;;;GAcG;AAEH,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;
|
|
1
|
+
{"version":3,"file":"course-section.schema.d.ts","sourceRoot":"","sources":["../../../src/schemas/academics/course-section.schema.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;;;;GAcG;AAEH,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AAWxB,eAAO,MAAM,mBAAmB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAkC9B,CAAC;AAEH,MAAM,MAAM,gBAAgB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,mBAAmB,CAAC,CAAC;AAMnE,eAAO,MAAM,mBAAmB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAI9B,CAAC;AAEH,MAAM,MAAM,gBAAgB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,mBAAmB,CAAC,CAAC;AAMnE,eAAO,MAAM,qBAAqB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAiDhC,CAAC;AAEH,MAAM,MAAM,kBAAkB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,qBAAqB,CAAC,CAAC;AAMvE,eAAO,MAAM,yBAAyB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAAuD,CAAC;AAC9F,MAAM,MAAM,sBAAsB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,yBAAyB,CAAC,CAAC;AAM/E,eAAO,MAAM,mBAAmB;;;;;;;;;;;;;;;;;;;;;;;;EAQ9B,CAAC;AAEH,MAAM,MAAM,gBAAgB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,mBAAmB,CAAC,CAAC;AAMnE,eAAO,MAAM,4BAA4B;;;;;;EAEvC,CAAC;AAEH,MAAM,MAAM,yBAAyB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,4BAA4B,CAAC,CAAC;AAErF,eAAO,MAAM,4BAA4B;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAevC,CAAC;AAEH,MAAM,MAAM,yBAAyB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,4BAA4B,CAAC,CAAC;AAErF,eAAO,MAAM,2BAA2B;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAMtC,CAAC;AAEH,MAAM,MAAM,wBAAwB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,2BAA2B,CAAC,CAAC"}
|
|
@@ -18,6 +18,7 @@ Object.defineProperty(exports, "__esModule", { value: true });
|
|
|
18
18
|
exports.sectionRosterResponseSchema = exports.studentSectionResponseSchema = exports.enrollStudentInSectionSchema = exports.sectionFilterSchema = exports.sectionListResponseSchema = exports.sectionResponseSchema = exports.updateSectionSchema = exports.createSectionSchema = void 0;
|
|
19
19
|
const zod_1 = require("zod");
|
|
20
20
|
const common_1 = require("../common");
|
|
21
|
+
const course_schema_1 = require("./course.schema");
|
|
21
22
|
// ============================================
|
|
22
23
|
// Create Section Schema
|
|
23
24
|
// ============================================
|
|
@@ -67,6 +68,7 @@ exports.sectionResponseSchema = zod_1.z.object({
|
|
|
67
68
|
courseId: zod_1.z.string().uuid(),
|
|
68
69
|
courseCode: zod_1.z.string().optional(),
|
|
69
70
|
courseName: zod_1.z.string().optional(),
|
|
71
|
+
subjectArea: course_schema_1.courseSubjectAreaSchema.optional(),
|
|
70
72
|
// School reference
|
|
71
73
|
schoolId: zod_1.z.string().uuid(),
|
|
72
74
|
// Academic session
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"course-section.schema.js","sourceRoot":"","sources":["../../../src/schemas/academics/course-section.schema.ts"],"names":[],"mappings":";AAAA;;;;;;;;;;;;;;GAcG;;;AAEH,6BAAwB;AACxB,sCAGmB;
|
|
1
|
+
{"version":3,"file":"course-section.schema.js","sourceRoot":"","sources":["../../../src/schemas/academics/course-section.schema.ts"],"names":[],"mappings":"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"}
|
|
@@ -588,7 +588,7 @@ export declare const createStudentSchema: z.ZodObject<{
|
|
|
588
588
|
}, "strip", z.ZodTypeAny, {
|
|
589
589
|
schoolId: string;
|
|
590
590
|
firstName: string;
|
|
591
|
-
gender: "
|
|
591
|
+
gender: "other" | "male" | "female" | "prefer_not_to_say";
|
|
592
592
|
lastName: string;
|
|
593
593
|
dateOfBirth: string;
|
|
594
594
|
currentGradeLevel: string;
|
|
@@ -675,7 +675,7 @@ export declare const createStudentSchema: z.ZodObject<{
|
|
|
675
675
|
}, {
|
|
676
676
|
schoolId: string;
|
|
677
677
|
firstName: string;
|
|
678
|
-
gender: "
|
|
678
|
+
gender: "other" | "male" | "female" | "prefer_not_to_say";
|
|
679
679
|
lastName: string;
|
|
680
680
|
dateOfBirth: string;
|
|
681
681
|
currentGradeLevel: string;
|
|
@@ -1081,7 +1081,7 @@ export declare const updateStudentSchema: z.ZodObject<Omit<{
|
|
|
1081
1081
|
} | undefined;
|
|
1082
1082
|
firstName?: string | undefined;
|
|
1083
1083
|
middleName?: string | undefined;
|
|
1084
|
-
gender?: "
|
|
1084
|
+
gender?: "other" | "male" | "female" | "prefer_not_to_say" | undefined;
|
|
1085
1085
|
emergencyContacts?: {
|
|
1086
1086
|
name: string;
|
|
1087
1087
|
phone: string;
|
|
@@ -1167,7 +1167,7 @@ export declare const updateStudentSchema: z.ZodObject<Omit<{
|
|
|
1167
1167
|
} | undefined;
|
|
1168
1168
|
firstName?: string | undefined;
|
|
1169
1169
|
middleName?: string | undefined;
|
|
1170
|
-
gender?: "
|
|
1170
|
+
gender?: "other" | "male" | "female" | "prefer_not_to_say" | undefined;
|
|
1171
1171
|
emergencyContacts?: {
|
|
1172
1172
|
name: string;
|
|
1173
1173
|
phone: string;
|
|
@@ -1540,7 +1540,7 @@ export declare const studentResponseSchema: z.ZodObject<{
|
|
|
1540
1540
|
updatedAt: string;
|
|
1541
1541
|
schoolId: string;
|
|
1542
1542
|
firstName: string;
|
|
1543
|
-
gender: "
|
|
1543
|
+
gender: "other" | "male" | "female" | "prefer_not_to_say";
|
|
1544
1544
|
lastName: string;
|
|
1545
1545
|
studentId: string;
|
|
1546
1546
|
dateOfBirth: string;
|
|
@@ -1635,7 +1635,7 @@ export declare const studentResponseSchema: z.ZodObject<{
|
|
|
1635
1635
|
updatedAt: string;
|
|
1636
1636
|
schoolId: string;
|
|
1637
1637
|
firstName: string;
|
|
1638
|
-
gender: "
|
|
1638
|
+
gender: "other" | "male" | "female" | "prefer_not_to_say";
|
|
1639
1639
|
lastName: string;
|
|
1640
1640
|
studentId: string;
|
|
1641
1641
|
dateOfBirth: string;
|
|
@@ -2036,7 +2036,7 @@ export declare const studentListResponseSchema: z.ZodObject<{
|
|
|
2036
2036
|
updatedAt: string;
|
|
2037
2037
|
schoolId: string;
|
|
2038
2038
|
firstName: string;
|
|
2039
|
-
gender: "
|
|
2039
|
+
gender: "other" | "male" | "female" | "prefer_not_to_say";
|
|
2040
2040
|
lastName: string;
|
|
2041
2041
|
studentId: string;
|
|
2042
2042
|
dateOfBirth: string;
|
|
@@ -2131,7 +2131,7 @@ export declare const studentListResponseSchema: z.ZodObject<{
|
|
|
2131
2131
|
updatedAt: string;
|
|
2132
2132
|
schoolId: string;
|
|
2133
2133
|
firstName: string;
|
|
2134
|
-
gender: "
|
|
2134
|
+
gender: "other" | "male" | "female" | "prefer_not_to_say";
|
|
2135
2135
|
lastName: string;
|
|
2136
2136
|
studentId: string;
|
|
2137
2137
|
dateOfBirth: string;
|
|
@@ -2231,7 +2231,7 @@ export declare const studentListResponseSchema: z.ZodObject<{
|
|
|
2231
2231
|
updatedAt: string;
|
|
2232
2232
|
schoolId: string;
|
|
2233
2233
|
firstName: string;
|
|
2234
|
-
gender: "
|
|
2234
|
+
gender: "other" | "male" | "female" | "prefer_not_to_say";
|
|
2235
2235
|
lastName: string;
|
|
2236
2236
|
studentId: string;
|
|
2237
2237
|
dateOfBirth: string;
|
|
@@ -2331,7 +2331,7 @@ export declare const studentListResponseSchema: z.ZodObject<{
|
|
|
2331
2331
|
updatedAt: string;
|
|
2332
2332
|
schoolId: string;
|
|
2333
2333
|
firstName: string;
|
|
2334
|
-
gender: "
|
|
2334
|
+
gender: "other" | "male" | "female" | "prefer_not_to_say";
|
|
2335
2335
|
lastName: string;
|
|
2336
2336
|
studentId: string;
|
|
2337
2337
|
dateOfBirth: string;
|
|
@@ -2875,7 +2875,7 @@ export declare const studentProfileResponseSchema: z.ZodObject<z.objectUtil.exte
|
|
|
2875
2875
|
updatedAt: string;
|
|
2876
2876
|
schoolId: string;
|
|
2877
2877
|
firstName: string;
|
|
2878
|
-
gender: "
|
|
2878
|
+
gender: "other" | "male" | "female" | "prefer_not_to_say";
|
|
2879
2879
|
lastName: string;
|
|
2880
2880
|
studentId: string;
|
|
2881
2881
|
dateOfBirth: string;
|
|
@@ -3010,7 +3010,7 @@ export declare const studentProfileResponseSchema: z.ZodObject<z.objectUtil.exte
|
|
|
3010
3010
|
updatedAt: string;
|
|
3011
3011
|
schoolId: string;
|
|
3012
3012
|
firstName: string;
|
|
3013
|
-
gender: "
|
|
3013
|
+
gender: "other" | "male" | "female" | "prefer_not_to_say";
|
|
3014
3014
|
lastName: string;
|
|
3015
3015
|
studentId: string;
|
|
3016
3016
|
dateOfBirth: string;
|
|
@@ -124,7 +124,7 @@ export declare const enrollmentStaffRoleSchema: z.ZodObject<{
|
|
|
124
124
|
}, "strip", z.ZodTypeAny, {
|
|
125
125
|
schoolId: string;
|
|
126
126
|
isPrimary: boolean;
|
|
127
|
-
roleType: "teacher" | "principal" | "vice_principal" | "counselor" | "librarian" | "nurse" | "substitute" | "
|
|
127
|
+
roleType: "other" | "teacher" | "principal" | "vice_principal" | "counselor" | "librarian" | "nurse" | "substitute" | "security" | "administrator" | "office_staff" | "custodian" | "it_support" | "aide" | "coach";
|
|
128
128
|
startDate?: string | undefined;
|
|
129
129
|
endDate?: string | undefined;
|
|
130
130
|
gradeLevels?: string[] | undefined;
|
|
@@ -132,7 +132,7 @@ export declare const enrollmentStaffRoleSchema: z.ZodObject<{
|
|
|
132
132
|
subjects?: string[] | undefined;
|
|
133
133
|
}, {
|
|
134
134
|
schoolId: string;
|
|
135
|
-
roleType: "teacher" | "principal" | "vice_principal" | "counselor" | "librarian" | "nurse" | "substitute" | "
|
|
135
|
+
roleType: "other" | "teacher" | "principal" | "vice_principal" | "counselor" | "librarian" | "nurse" | "substitute" | "security" | "administrator" | "office_staff" | "custodian" | "it_support" | "aide" | "coach";
|
|
136
136
|
startDate?: string | undefined;
|
|
137
137
|
endDate?: string | undefined;
|
|
138
138
|
gradeLevels?: string[] | undefined;
|
|
@@ -203,7 +203,7 @@ export declare const createEnrollmentStaffSchema: z.ZodObject<{
|
|
|
203
203
|
}, "strip", z.ZodTypeAny, {
|
|
204
204
|
schoolId: string;
|
|
205
205
|
isPrimary: boolean;
|
|
206
|
-
roleType: "teacher" | "principal" | "vice_principal" | "counselor" | "librarian" | "nurse" | "substitute" | "
|
|
206
|
+
roleType: "other" | "teacher" | "principal" | "vice_principal" | "counselor" | "librarian" | "nurse" | "substitute" | "security" | "administrator" | "office_staff" | "custodian" | "it_support" | "aide" | "coach";
|
|
207
207
|
startDate?: string | undefined;
|
|
208
208
|
endDate?: string | undefined;
|
|
209
209
|
gradeLevels?: string[] | undefined;
|
|
@@ -211,7 +211,7 @@ export declare const createEnrollmentStaffSchema: z.ZodObject<{
|
|
|
211
211
|
subjects?: string[] | undefined;
|
|
212
212
|
}, {
|
|
213
213
|
schoolId: string;
|
|
214
|
-
roleType: "teacher" | "principal" | "vice_principal" | "counselor" | "librarian" | "nurse" | "substitute" | "
|
|
214
|
+
roleType: "other" | "teacher" | "principal" | "vice_principal" | "counselor" | "librarian" | "nurse" | "substitute" | "security" | "administrator" | "office_staff" | "custodian" | "it_support" | "aide" | "coach";
|
|
215
215
|
startDate?: string | undefined;
|
|
216
216
|
endDate?: string | undefined;
|
|
217
217
|
gradeLevels?: string[] | undefined;
|
|
@@ -345,7 +345,7 @@ export declare const createEnrollmentStaffSchema: z.ZodObject<{
|
|
|
345
345
|
roles: {
|
|
346
346
|
schoolId: string;
|
|
347
347
|
isPrimary: boolean;
|
|
348
|
-
roleType: "teacher" | "principal" | "vice_principal" | "counselor" | "librarian" | "nurse" | "substitute" | "
|
|
348
|
+
roleType: "other" | "teacher" | "principal" | "vice_principal" | "counselor" | "librarian" | "nurse" | "substitute" | "security" | "administrator" | "office_staff" | "custodian" | "it_support" | "aide" | "coach";
|
|
349
349
|
startDate?: string | undefined;
|
|
350
350
|
endDate?: string | undefined;
|
|
351
351
|
gradeLevels?: string[] | undefined;
|
|
@@ -363,7 +363,7 @@ export declare const createEnrollmentStaffSchema: z.ZodObject<{
|
|
|
363
363
|
} | undefined;
|
|
364
364
|
alternatePhone?: string | undefined;
|
|
365
365
|
middleName?: string | undefined;
|
|
366
|
-
gender?: "
|
|
366
|
+
gender?: "other" | "male" | "female" | "prefer_not_to_say" | undefined;
|
|
367
367
|
notes?: string | undefined;
|
|
368
368
|
emergencyContact?: {
|
|
369
369
|
name: string;
|
|
@@ -408,7 +408,7 @@ export declare const createEnrollmentStaffSchema: z.ZodObject<{
|
|
|
408
408
|
lastName: string;
|
|
409
409
|
roles: {
|
|
410
410
|
schoolId: string;
|
|
411
|
-
roleType: "teacher" | "principal" | "vice_principal" | "counselor" | "librarian" | "nurse" | "substitute" | "
|
|
411
|
+
roleType: "other" | "teacher" | "principal" | "vice_principal" | "counselor" | "librarian" | "nurse" | "substitute" | "security" | "administrator" | "office_staff" | "custodian" | "it_support" | "aide" | "coach";
|
|
412
412
|
startDate?: string | undefined;
|
|
413
413
|
endDate?: string | undefined;
|
|
414
414
|
gradeLevels?: string[] | undefined;
|
|
@@ -427,7 +427,7 @@ export declare const createEnrollmentStaffSchema: z.ZodObject<{
|
|
|
427
427
|
} | undefined;
|
|
428
428
|
alternatePhone?: string | undefined;
|
|
429
429
|
middleName?: string | undefined;
|
|
430
|
-
gender?: "
|
|
430
|
+
gender?: "other" | "male" | "female" | "prefer_not_to_say" | undefined;
|
|
431
431
|
employmentType?: "full_time" | "part_time" | "contract" | "temporary" | "volunteer" | undefined;
|
|
432
432
|
employmentStatus?: "active" | "on_leave" | "terminated" | "retired" | "pending" | undefined;
|
|
433
433
|
notes?: string | undefined;
|
|
@@ -531,7 +531,7 @@ export declare const updateEnrollmentStaffSchema: z.ZodObject<{
|
|
|
531
531
|
}, "strip", z.ZodTypeAny, {
|
|
532
532
|
schoolId: string;
|
|
533
533
|
isPrimary: boolean;
|
|
534
|
-
roleType: "teacher" | "principal" | "vice_principal" | "counselor" | "librarian" | "nurse" | "substitute" | "
|
|
534
|
+
roleType: "other" | "teacher" | "principal" | "vice_principal" | "counselor" | "librarian" | "nurse" | "substitute" | "security" | "administrator" | "office_staff" | "custodian" | "it_support" | "aide" | "coach";
|
|
535
535
|
startDate?: string | undefined;
|
|
536
536
|
endDate?: string | undefined;
|
|
537
537
|
gradeLevels?: string[] | undefined;
|
|
@@ -539,7 +539,7 @@ export declare const updateEnrollmentStaffSchema: z.ZodObject<{
|
|
|
539
539
|
subjects?: string[] | undefined;
|
|
540
540
|
}, {
|
|
541
541
|
schoolId: string;
|
|
542
|
-
roleType: "teacher" | "principal" | "vice_principal" | "counselor" | "librarian" | "nurse" | "substitute" | "
|
|
542
|
+
roleType: "other" | "teacher" | "principal" | "vice_principal" | "counselor" | "librarian" | "nurse" | "substitute" | "security" | "administrator" | "office_staff" | "custodian" | "it_support" | "aide" | "coach";
|
|
543
543
|
startDate?: string | undefined;
|
|
544
544
|
endDate?: string | undefined;
|
|
545
545
|
gradeLevels?: string[] | undefined;
|
|
@@ -677,7 +677,7 @@ export declare const updateEnrollmentStaffSchema: z.ZodObject<{
|
|
|
677
677
|
alternatePhone?: string | undefined;
|
|
678
678
|
firstName?: string | undefined;
|
|
679
679
|
middleName?: string | undefined;
|
|
680
|
-
gender?: "
|
|
680
|
+
gender?: "other" | "male" | "female" | "prefer_not_to_say" | undefined;
|
|
681
681
|
employmentType?: "full_time" | "part_time" | "contract" | "temporary" | "volunteer" | undefined;
|
|
682
682
|
hireDate?: string | undefined;
|
|
683
683
|
employmentStatus?: "active" | "on_leave" | "terminated" | "retired" | "pending" | undefined;
|
|
@@ -686,7 +686,7 @@ export declare const updateEnrollmentStaffSchema: z.ZodObject<{
|
|
|
686
686
|
roles?: {
|
|
687
687
|
schoolId: string;
|
|
688
688
|
isPrimary: boolean;
|
|
689
|
-
roleType: "teacher" | "principal" | "vice_principal" | "counselor" | "librarian" | "nurse" | "substitute" | "
|
|
689
|
+
roleType: "other" | "teacher" | "principal" | "vice_principal" | "counselor" | "librarian" | "nurse" | "substitute" | "security" | "administrator" | "office_staff" | "custodian" | "it_support" | "aide" | "coach";
|
|
690
690
|
startDate?: string | undefined;
|
|
691
691
|
endDate?: string | undefined;
|
|
692
692
|
gradeLevels?: string[] | undefined;
|
|
@@ -743,7 +743,7 @@ export declare const updateEnrollmentStaffSchema: z.ZodObject<{
|
|
|
743
743
|
alternatePhone?: string | undefined;
|
|
744
744
|
firstName?: string | undefined;
|
|
745
745
|
middleName?: string | undefined;
|
|
746
|
-
gender?: "
|
|
746
|
+
gender?: "other" | "male" | "female" | "prefer_not_to_say" | undefined;
|
|
747
747
|
employmentType?: "full_time" | "part_time" | "contract" | "temporary" | "volunteer" | undefined;
|
|
748
748
|
hireDate?: string | undefined;
|
|
749
749
|
employmentStatus?: "active" | "on_leave" | "terminated" | "retired" | "pending" | undefined;
|
|
@@ -751,7 +751,7 @@ export declare const updateEnrollmentStaffSchema: z.ZodObject<{
|
|
|
751
751
|
lastName?: string | undefined;
|
|
752
752
|
roles?: {
|
|
753
753
|
schoolId: string;
|
|
754
|
-
roleType: "teacher" | "principal" | "vice_principal" | "counselor" | "librarian" | "nurse" | "substitute" | "
|
|
754
|
+
roleType: "other" | "teacher" | "principal" | "vice_principal" | "counselor" | "librarian" | "nurse" | "substitute" | "security" | "administrator" | "office_staff" | "custodian" | "it_support" | "aide" | "coach";
|
|
755
755
|
startDate?: string | undefined;
|
|
756
756
|
endDate?: string | undefined;
|
|
757
757
|
gradeLevels?: string[] | undefined;
|
|
@@ -863,7 +863,7 @@ export declare const enrollmentStaffResponseSchema: z.ZodObject<{
|
|
|
863
863
|
}, "strip", z.ZodTypeAny, {
|
|
864
864
|
schoolId: string;
|
|
865
865
|
isPrimary: boolean;
|
|
866
|
-
roleType: "teacher" | "principal" | "vice_principal" | "counselor" | "librarian" | "nurse" | "substitute" | "
|
|
866
|
+
roleType: "other" | "teacher" | "principal" | "vice_principal" | "counselor" | "librarian" | "nurse" | "substitute" | "security" | "administrator" | "office_staff" | "custodian" | "it_support" | "aide" | "coach";
|
|
867
867
|
startDate?: string | undefined;
|
|
868
868
|
endDate?: string | undefined;
|
|
869
869
|
gradeLevels?: string[] | undefined;
|
|
@@ -871,7 +871,7 @@ export declare const enrollmentStaffResponseSchema: z.ZodObject<{
|
|
|
871
871
|
subjects?: string[] | undefined;
|
|
872
872
|
}, {
|
|
873
873
|
schoolId: string;
|
|
874
|
-
roleType: "teacher" | "principal" | "vice_principal" | "counselor" | "librarian" | "nurse" | "substitute" | "
|
|
874
|
+
roleType: "other" | "teacher" | "principal" | "vice_principal" | "counselor" | "librarian" | "nurse" | "substitute" | "security" | "administrator" | "office_staff" | "custodian" | "it_support" | "aide" | "coach";
|
|
875
875
|
startDate?: string | undefined;
|
|
876
876
|
endDate?: string | undefined;
|
|
877
877
|
gradeLevels?: string[] | undefined;
|
|
@@ -1014,7 +1014,7 @@ export declare const enrollmentStaffResponseSchema: z.ZodObject<{
|
|
|
1014
1014
|
roles: {
|
|
1015
1015
|
schoolId: string;
|
|
1016
1016
|
isPrimary: boolean;
|
|
1017
|
-
roleType: "teacher" | "principal" | "vice_principal" | "counselor" | "librarian" | "nurse" | "substitute" | "
|
|
1017
|
+
roleType: "other" | "teacher" | "principal" | "vice_principal" | "counselor" | "librarian" | "nurse" | "substitute" | "security" | "administrator" | "office_staff" | "custodian" | "it_support" | "aide" | "coach";
|
|
1018
1018
|
startDate?: string | undefined;
|
|
1019
1019
|
endDate?: string | undefined;
|
|
1020
1020
|
gradeLevels?: string[] | undefined;
|
|
@@ -1035,7 +1035,7 @@ export declare const enrollmentStaffResponseSchema: z.ZodObject<{
|
|
|
1035
1035
|
} | undefined;
|
|
1036
1036
|
alternatePhone?: string | undefined;
|
|
1037
1037
|
middleName?: string | undefined;
|
|
1038
|
-
gender?: "
|
|
1038
|
+
gender?: "other" | "male" | "female" | "prefer_not_to_say" | undefined;
|
|
1039
1039
|
primarySchoolId?: string | undefined;
|
|
1040
1040
|
terminationDate?: string | undefined;
|
|
1041
1041
|
notes?: string | undefined;
|
|
@@ -1088,7 +1088,7 @@ export declare const enrollmentStaffResponseSchema: z.ZodObject<{
|
|
|
1088
1088
|
lastName: string;
|
|
1089
1089
|
roles: {
|
|
1090
1090
|
schoolId: string;
|
|
1091
|
-
roleType: "teacher" | "principal" | "vice_principal" | "counselor" | "librarian" | "nurse" | "substitute" | "
|
|
1091
|
+
roleType: "other" | "teacher" | "principal" | "vice_principal" | "counselor" | "librarian" | "nurse" | "substitute" | "security" | "administrator" | "office_staff" | "custodian" | "it_support" | "aide" | "coach";
|
|
1092
1092
|
startDate?: string | undefined;
|
|
1093
1093
|
endDate?: string | undefined;
|
|
1094
1094
|
gradeLevels?: string[] | undefined;
|
|
@@ -1110,7 +1110,7 @@ export declare const enrollmentStaffResponseSchema: z.ZodObject<{
|
|
|
1110
1110
|
} | undefined;
|
|
1111
1111
|
alternatePhone?: string | undefined;
|
|
1112
1112
|
middleName?: string | undefined;
|
|
1113
|
-
gender?: "
|
|
1113
|
+
gender?: "other" | "male" | "female" | "prefer_not_to_say" | undefined;
|
|
1114
1114
|
primarySchoolId?: string | undefined;
|
|
1115
1115
|
terminationDate?: string | undefined;
|
|
1116
1116
|
notes?: string | undefined;
|
|
@@ -1219,7 +1219,7 @@ export declare const enrollmentStaffListResponseSchema: z.ZodObject<{
|
|
|
1219
1219
|
}, "strip", z.ZodTypeAny, {
|
|
1220
1220
|
schoolId: string;
|
|
1221
1221
|
isPrimary: boolean;
|
|
1222
|
-
roleType: "teacher" | "principal" | "vice_principal" | "counselor" | "librarian" | "nurse" | "substitute" | "
|
|
1222
|
+
roleType: "other" | "teacher" | "principal" | "vice_principal" | "counselor" | "librarian" | "nurse" | "substitute" | "security" | "administrator" | "office_staff" | "custodian" | "it_support" | "aide" | "coach";
|
|
1223
1223
|
startDate?: string | undefined;
|
|
1224
1224
|
endDate?: string | undefined;
|
|
1225
1225
|
gradeLevels?: string[] | undefined;
|
|
@@ -1227,7 +1227,7 @@ export declare const enrollmentStaffListResponseSchema: z.ZodObject<{
|
|
|
1227
1227
|
subjects?: string[] | undefined;
|
|
1228
1228
|
}, {
|
|
1229
1229
|
schoolId: string;
|
|
1230
|
-
roleType: "teacher" | "principal" | "vice_principal" | "counselor" | "librarian" | "nurse" | "substitute" | "
|
|
1230
|
+
roleType: "other" | "teacher" | "principal" | "vice_principal" | "counselor" | "librarian" | "nurse" | "substitute" | "security" | "administrator" | "office_staff" | "custodian" | "it_support" | "aide" | "coach";
|
|
1231
1231
|
startDate?: string | undefined;
|
|
1232
1232
|
endDate?: string | undefined;
|
|
1233
1233
|
gradeLevels?: string[] | undefined;
|
|
@@ -1370,7 +1370,7 @@ export declare const enrollmentStaffListResponseSchema: z.ZodObject<{
|
|
|
1370
1370
|
roles: {
|
|
1371
1371
|
schoolId: string;
|
|
1372
1372
|
isPrimary: boolean;
|
|
1373
|
-
roleType: "teacher" | "principal" | "vice_principal" | "counselor" | "librarian" | "nurse" | "substitute" | "
|
|
1373
|
+
roleType: "other" | "teacher" | "principal" | "vice_principal" | "counselor" | "librarian" | "nurse" | "substitute" | "security" | "administrator" | "office_staff" | "custodian" | "it_support" | "aide" | "coach";
|
|
1374
1374
|
startDate?: string | undefined;
|
|
1375
1375
|
endDate?: string | undefined;
|
|
1376
1376
|
gradeLevels?: string[] | undefined;
|
|
@@ -1391,7 +1391,7 @@ export declare const enrollmentStaffListResponseSchema: z.ZodObject<{
|
|
|
1391
1391
|
} | undefined;
|
|
1392
1392
|
alternatePhone?: string | undefined;
|
|
1393
1393
|
middleName?: string | undefined;
|
|
1394
|
-
gender?: "
|
|
1394
|
+
gender?: "other" | "male" | "female" | "prefer_not_to_say" | undefined;
|
|
1395
1395
|
primarySchoolId?: string | undefined;
|
|
1396
1396
|
terminationDate?: string | undefined;
|
|
1397
1397
|
notes?: string | undefined;
|
|
@@ -1444,7 +1444,7 @@ export declare const enrollmentStaffListResponseSchema: z.ZodObject<{
|
|
|
1444
1444
|
lastName: string;
|
|
1445
1445
|
roles: {
|
|
1446
1446
|
schoolId: string;
|
|
1447
|
-
roleType: "teacher" | "principal" | "vice_principal" | "counselor" | "librarian" | "nurse" | "substitute" | "
|
|
1447
|
+
roleType: "other" | "teacher" | "principal" | "vice_principal" | "counselor" | "librarian" | "nurse" | "substitute" | "security" | "administrator" | "office_staff" | "custodian" | "it_support" | "aide" | "coach";
|
|
1448
1448
|
startDate?: string | undefined;
|
|
1449
1449
|
endDate?: string | undefined;
|
|
1450
1450
|
gradeLevels?: string[] | undefined;
|
|
@@ -1466,7 +1466,7 @@ export declare const enrollmentStaffListResponseSchema: z.ZodObject<{
|
|
|
1466
1466
|
} | undefined;
|
|
1467
1467
|
alternatePhone?: string | undefined;
|
|
1468
1468
|
middleName?: string | undefined;
|
|
1469
|
-
gender?: "
|
|
1469
|
+
gender?: "other" | "male" | "female" | "prefer_not_to_say" | undefined;
|
|
1470
1470
|
primarySchoolId?: string | undefined;
|
|
1471
1471
|
terminationDate?: string | undefined;
|
|
1472
1472
|
notes?: string | undefined;
|
|
@@ -1525,7 +1525,7 @@ export declare const enrollmentStaffListResponseSchema: z.ZodObject<{
|
|
|
1525
1525
|
roles: {
|
|
1526
1526
|
schoolId: string;
|
|
1527
1527
|
isPrimary: boolean;
|
|
1528
|
-
roleType: "teacher" | "principal" | "vice_principal" | "counselor" | "librarian" | "nurse" | "substitute" | "
|
|
1528
|
+
roleType: "other" | "teacher" | "principal" | "vice_principal" | "counselor" | "librarian" | "nurse" | "substitute" | "security" | "administrator" | "office_staff" | "custodian" | "it_support" | "aide" | "coach";
|
|
1529
1529
|
startDate?: string | undefined;
|
|
1530
1530
|
endDate?: string | undefined;
|
|
1531
1531
|
gradeLevels?: string[] | undefined;
|
|
@@ -1546,7 +1546,7 @@ export declare const enrollmentStaffListResponseSchema: z.ZodObject<{
|
|
|
1546
1546
|
} | undefined;
|
|
1547
1547
|
alternatePhone?: string | undefined;
|
|
1548
1548
|
middleName?: string | undefined;
|
|
1549
|
-
gender?: "
|
|
1549
|
+
gender?: "other" | "male" | "female" | "prefer_not_to_say" | undefined;
|
|
1550
1550
|
primarySchoolId?: string | undefined;
|
|
1551
1551
|
terminationDate?: string | undefined;
|
|
1552
1552
|
notes?: string | undefined;
|
|
@@ -1604,7 +1604,7 @@ export declare const enrollmentStaffListResponseSchema: z.ZodObject<{
|
|
|
1604
1604
|
lastName: string;
|
|
1605
1605
|
roles: {
|
|
1606
1606
|
schoolId: string;
|
|
1607
|
-
roleType: "teacher" | "principal" | "vice_principal" | "counselor" | "librarian" | "nurse" | "substitute" | "
|
|
1607
|
+
roleType: "other" | "teacher" | "principal" | "vice_principal" | "counselor" | "librarian" | "nurse" | "substitute" | "security" | "administrator" | "office_staff" | "custodian" | "it_support" | "aide" | "coach";
|
|
1608
1608
|
startDate?: string | undefined;
|
|
1609
1609
|
endDate?: string | undefined;
|
|
1610
1610
|
gradeLevels?: string[] | undefined;
|
|
@@ -1626,7 +1626,7 @@ export declare const enrollmentStaffListResponseSchema: z.ZodObject<{
|
|
|
1626
1626
|
} | undefined;
|
|
1627
1627
|
alternatePhone?: string | undefined;
|
|
1628
1628
|
middleName?: string | undefined;
|
|
1629
|
-
gender?: "
|
|
1629
|
+
gender?: "other" | "male" | "female" | "prefer_not_to_say" | undefined;
|
|
1630
1630
|
primarySchoolId?: string | undefined;
|
|
1631
1631
|
terminationDate?: string | undefined;
|
|
1632
1632
|
notes?: string | undefined;
|
|
@@ -2787,14 +2787,14 @@ export declare const enrollmentStaffFilterSchema: z.ZodObject<{
|
|
|
2787
2787
|
employmentStatus?: "active" | "on_leave" | "terminated" | "retired" | "pending" | undefined;
|
|
2788
2788
|
departmentId?: string | undefined;
|
|
2789
2789
|
searchTerm?: string | undefined;
|
|
2790
|
-
roleType?: "teacher" | "principal" | "vice_principal" | "counselor" | "librarian" | "nurse" | "substitute" | "
|
|
2790
|
+
roleType?: "other" | "teacher" | "principal" | "vice_principal" | "counselor" | "librarian" | "nurse" | "substitute" | "security" | "administrator" | "office_staff" | "custodian" | "it_support" | "aide" | "coach" | undefined;
|
|
2791
2791
|
}, {
|
|
2792
2792
|
schoolId?: string | undefined;
|
|
2793
2793
|
employmentType?: "full_time" | "part_time" | "contract" | "temporary" | "volunteer" | undefined;
|
|
2794
2794
|
employmentStatus?: "active" | "on_leave" | "terminated" | "retired" | "pending" | undefined;
|
|
2795
2795
|
departmentId?: string | undefined;
|
|
2796
2796
|
searchTerm?: string | undefined;
|
|
2797
|
-
roleType?: "teacher" | "principal" | "vice_principal" | "counselor" | "librarian" | "nurse" | "substitute" | "
|
|
2797
|
+
roleType?: "other" | "teacher" | "principal" | "vice_principal" | "counselor" | "librarian" | "nurse" | "substitute" | "security" | "administrator" | "office_staff" | "custodian" | "it_support" | "aide" | "coach" | undefined;
|
|
2798
2798
|
}>;
|
|
2799
2799
|
export type EnrollmentStaffFilterDto = z.infer<typeof enrollmentStaffFilterSchema>;
|
|
2800
2800
|
export declare const enrollmentFilterSchema: z.ZodObject<{
|