@aibrains/shared-types 0.15.0 → 0.16.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/events/enrollment-billing.events.d.ts +47 -0
- package/dist/events/enrollment-billing.events.d.ts.map +1 -0
- package/dist/events/enrollment-billing.events.js +9 -0
- package/dist/events/enrollment-billing.events.js.map +1 -0
- package/dist/identity/country-config.d.ts +120 -0
- package/dist/identity/country-config.d.ts.map +1 -0
- package/dist/identity/country-config.js +404 -0
- package/dist/identity/country-config.js.map +1 -0
- package/dist/identity/field-governance.d.ts +40 -0
- package/dist/identity/field-governance.d.ts.map +1 -0
- package/dist/identity/field-governance.js +111 -0
- package/dist/identity/field-governance.js.map +1 -0
- package/dist/index.d.ts +6 -1
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +9 -1
- package/dist/index.js.map +1 -1
- package/dist/mappers/edfi/education-org.mapper.js +3 -3
- package/dist/mappers/edfi/education-org.mapper.js.map +1 -1
- package/dist/schemas/finance/common.d.ts +1 -1
- package/dist/schemas/finance/common.d.ts.map +1 -1
- package/dist/schemas/finance/common.js +1 -1
- package/dist/schemas/finance/common.js.map +1 -1
- package/dist/schemas/finance/credit-note.schema.d.ts +127 -0
- package/dist/schemas/finance/credit-note.schema.d.ts.map +1 -0
- package/dist/schemas/finance/credit-note.schema.js +55 -0
- package/dist/schemas/finance/credit-note.schema.js.map +1 -0
- package/dist/schemas/finance/discount-rule.schema.d.ts +352 -0
- package/dist/schemas/finance/discount-rule.schema.d.ts.map +1 -0
- package/dist/schemas/finance/discount-rule.schema.js +57 -0
- package/dist/schemas/finance/discount-rule.schema.js.map +1 -0
- package/dist/schemas/finance/fee-structure.schema.d.ts +36 -6
- package/dist/schemas/finance/fee-structure.schema.d.ts.map +1 -1
- package/dist/schemas/finance/fee-structure.schema.js +10 -0
- package/dist/schemas/finance/fee-structure.schema.js.map +1 -1
- package/dist/schemas/finance/index.d.ts +3 -0
- package/dist/schemas/finance/index.d.ts.map +1 -1
- package/dist/schemas/finance/index.js +3 -0
- package/dist/schemas/finance/index.js.map +1 -1
- package/dist/schemas/finance/invoice.schema.d.ts +63 -3
- package/dist/schemas/finance/invoice.schema.d.ts.map +1 -1
- package/dist/schemas/finance/invoice.schema.js +10 -1
- package/dist/schemas/finance/invoice.schema.js.map +1 -1
- package/dist/schemas/finance/payment.schema.d.ts +22 -22
- package/dist/schemas/finance/refund.schema.d.ts +99 -0
- package/dist/schemas/finance/refund.schema.d.ts.map +1 -0
- package/dist/schemas/finance/refund.schema.js +47 -0
- package/dist/schemas/finance/refund.schema.js.map +1 -0
- package/dist/schemas/identity/academic-year.schema.d.ts +14 -14
- package/dist/schemas/identity/department.schema.d.ts +6 -6
- package/dist/schemas/identity/index.d.ts +2 -0
- package/dist/schemas/identity/index.d.ts.map +1 -1
- package/dist/schemas/identity/index.js +4 -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-year.schema.d.ts +18 -18
- package/dist/schemas/identity/school.schema.d.ts +609 -120
- package/dist/schemas/identity/school.schema.d.ts.map +1 -1
- package/dist/schemas/identity/school.schema.js +32 -8
- package/dist/schemas/identity/school.schema.js.map +1 -1
- package/dist/utils/bikram-sambat.d.ts +68 -0
- package/dist/utils/bikram-sambat.d.ts.map +1 -0
- package/dist/utils/bikram-sambat.js +301 -0
- package/dist/utils/bikram-sambat.js.map +1 -0
- package/dist/utils/currency.d.ts +30 -8
- package/dist/utils/currency.d.ts.map +1 -1
- package/dist/utils/currency.js +93 -25
- package/dist/utils/currency.js.map +1 -1
- package/dist/utils/date-format.d.ts +20 -0
- package/dist/utils/date-format.d.ts.map +1 -0
- package/dist/utils/date-format.js +66 -0
- package/dist/utils/date-format.js.map +1 -0
- package/dist/utils/school-hours.d.ts +48 -0
- package/dist/utils/school-hours.d.ts.map +1 -0
- package/dist/utils/school-hours.js +134 -0
- package/dist/utils/school-hours.js.map +1 -0
- package/package.json +1 -1
|
@@ -8,8 +8,10 @@ export declare const schoolTypeSchema: z.ZodEnum<["elementary", "middle", "high"
|
|
|
8
8
|
export type SchoolType = z.infer<typeof schoolTypeSchema>;
|
|
9
9
|
export declare const schoolStatusSchema: z.ZodEnum<["active", "inactive", "setup", "suspended", "closed"]>;
|
|
10
10
|
export type SchoolStatus = z.infer<typeof schoolStatusSchema>;
|
|
11
|
-
export declare const academicCalendarTypeSchema: z.ZodEnum<["semester", "quarter", "trimester"]>;
|
|
11
|
+
export declare const academicCalendarTypeSchema: z.ZodEnum<["semester", "quarter", "trimester", "annual"]>;
|
|
12
12
|
export type AcademicCalendarType = z.infer<typeof academicCalendarTypeSchema>;
|
|
13
|
+
export declare const calendarSystemSchema: z.ZodEnum<["gregorian", "bikram_sambat"]>;
|
|
14
|
+
export type CalendarSystemType = z.infer<typeof calendarSystemSchema>;
|
|
13
15
|
export declare const schoolContactInfoSchema: z.ZodObject<{
|
|
14
16
|
primaryEmail: z.ZodString;
|
|
15
17
|
primaryPhone: z.ZodString;
|
|
@@ -44,35 +46,110 @@ export declare const schoolGradeRangeSchema: z.ZodObject<{
|
|
|
44
46
|
end: string;
|
|
45
47
|
}>;
|
|
46
48
|
export type SchoolGradeRangeDto = z.infer<typeof schoolGradeRangeSchema>;
|
|
47
|
-
export declare const schoolAddressSchema: z.ZodObject<{
|
|
49
|
+
export declare const schoolAddressSchema: z.ZodEffects<z.ZodEffects<z.ZodObject<{
|
|
48
50
|
street1: z.ZodString;
|
|
49
51
|
street2: z.ZodOptional<z.ZodString>;
|
|
50
|
-
city: z.ZodString
|
|
51
|
-
state: z.ZodString
|
|
52
|
-
zipCode: z.ZodString
|
|
52
|
+
city: z.ZodOptional<z.ZodString>;
|
|
53
|
+
state: z.ZodOptional<z.ZodString>;
|
|
54
|
+
zipCode: z.ZodOptional<z.ZodString>;
|
|
53
55
|
country: z.ZodOptional<z.ZodString>;
|
|
56
|
+
wardNumber: z.ZodOptional<z.ZodString>;
|
|
57
|
+
municipality: z.ZodOptional<z.ZodString>;
|
|
58
|
+
district: z.ZodOptional<z.ZodString>;
|
|
59
|
+
province: z.ZodOptional<z.ZodString>;
|
|
60
|
+
region: z.ZodOptional<z.ZodString>;
|
|
54
61
|
latitude: z.ZodOptional<z.ZodNumber>;
|
|
55
62
|
longitude: z.ZodOptional<z.ZodNumber>;
|
|
56
63
|
timezone: z.ZodOptional<z.ZodString>;
|
|
57
64
|
}, "strip", z.ZodTypeAny, {
|
|
58
65
|
street1: string;
|
|
59
|
-
city: string;
|
|
60
|
-
state: string;
|
|
61
|
-
zipCode: string;
|
|
62
66
|
street2?: string | undefined;
|
|
67
|
+
city?: string | undefined;
|
|
68
|
+
state?: string | undefined;
|
|
69
|
+
zipCode?: string | undefined;
|
|
63
70
|
country?: string | undefined;
|
|
64
71
|
latitude?: number | undefined;
|
|
65
72
|
longitude?: number | undefined;
|
|
73
|
+
wardNumber?: string | undefined;
|
|
74
|
+
municipality?: string | undefined;
|
|
75
|
+
district?: string | undefined;
|
|
76
|
+
province?: string | undefined;
|
|
77
|
+
region?: string | undefined;
|
|
66
78
|
timezone?: string | undefined;
|
|
67
79
|
}, {
|
|
68
80
|
street1: string;
|
|
69
|
-
city: string;
|
|
70
|
-
state: string;
|
|
71
|
-
zipCode: string;
|
|
72
81
|
street2?: string | undefined;
|
|
82
|
+
city?: string | undefined;
|
|
83
|
+
state?: string | undefined;
|
|
84
|
+
zipCode?: string | undefined;
|
|
73
85
|
country?: string | undefined;
|
|
74
86
|
latitude?: number | undefined;
|
|
75
87
|
longitude?: number | undefined;
|
|
88
|
+
wardNumber?: string | undefined;
|
|
89
|
+
municipality?: string | undefined;
|
|
90
|
+
district?: string | undefined;
|
|
91
|
+
province?: string | undefined;
|
|
92
|
+
region?: string | undefined;
|
|
93
|
+
timezone?: string | undefined;
|
|
94
|
+
}>, {
|
|
95
|
+
street1: string;
|
|
96
|
+
street2?: string | undefined;
|
|
97
|
+
city?: string | undefined;
|
|
98
|
+
state?: string | undefined;
|
|
99
|
+
zipCode?: string | undefined;
|
|
100
|
+
country?: string | undefined;
|
|
101
|
+
latitude?: number | undefined;
|
|
102
|
+
longitude?: number | undefined;
|
|
103
|
+
wardNumber?: string | undefined;
|
|
104
|
+
municipality?: string | undefined;
|
|
105
|
+
district?: string | undefined;
|
|
106
|
+
province?: string | undefined;
|
|
107
|
+
region?: string | undefined;
|
|
108
|
+
timezone?: string | undefined;
|
|
109
|
+
}, {
|
|
110
|
+
street1: string;
|
|
111
|
+
street2?: string | undefined;
|
|
112
|
+
city?: string | undefined;
|
|
113
|
+
state?: string | undefined;
|
|
114
|
+
zipCode?: string | undefined;
|
|
115
|
+
country?: string | undefined;
|
|
116
|
+
latitude?: number | undefined;
|
|
117
|
+
longitude?: number | undefined;
|
|
118
|
+
wardNumber?: string | undefined;
|
|
119
|
+
municipality?: string | undefined;
|
|
120
|
+
district?: string | undefined;
|
|
121
|
+
province?: string | undefined;
|
|
122
|
+
region?: string | undefined;
|
|
123
|
+
timezone?: string | undefined;
|
|
124
|
+
}>, {
|
|
125
|
+
street1: string;
|
|
126
|
+
street2?: string | undefined;
|
|
127
|
+
city?: string | undefined;
|
|
128
|
+
state?: string | undefined;
|
|
129
|
+
zipCode?: string | undefined;
|
|
130
|
+
country?: string | undefined;
|
|
131
|
+
latitude?: number | undefined;
|
|
132
|
+
longitude?: number | undefined;
|
|
133
|
+
wardNumber?: string | undefined;
|
|
134
|
+
municipality?: string | undefined;
|
|
135
|
+
district?: string | undefined;
|
|
136
|
+
province?: string | undefined;
|
|
137
|
+
region?: string | undefined;
|
|
138
|
+
timezone?: string | undefined;
|
|
139
|
+
}, {
|
|
140
|
+
street1: string;
|
|
141
|
+
street2?: string | undefined;
|
|
142
|
+
city?: string | undefined;
|
|
143
|
+
state?: string | undefined;
|
|
144
|
+
zipCode?: string | undefined;
|
|
145
|
+
country?: string | undefined;
|
|
146
|
+
latitude?: number | undefined;
|
|
147
|
+
longitude?: number | undefined;
|
|
148
|
+
wardNumber?: string | undefined;
|
|
149
|
+
municipality?: string | undefined;
|
|
150
|
+
district?: string | undefined;
|
|
151
|
+
province?: string | undefined;
|
|
152
|
+
region?: string | undefined;
|
|
76
153
|
timezone?: string | undefined;
|
|
77
154
|
}>;
|
|
78
155
|
export type SchoolAddressDto = z.infer<typeof schoolAddressSchema>;
|
|
@@ -94,35 +171,110 @@ export declare const createSchoolSchema: z.ZodEffects<z.ZodEffects<z.ZodObject<{
|
|
|
94
171
|
phone: z.ZodOptional<z.ZodString>;
|
|
95
172
|
email: z.ZodOptional<z.ZodString>;
|
|
96
173
|
website: z.ZodOptional<z.ZodString>;
|
|
97
|
-
address: z.ZodOptional<z.ZodObject<{
|
|
174
|
+
address: z.ZodOptional<z.ZodEffects<z.ZodEffects<z.ZodObject<{
|
|
98
175
|
street1: z.ZodString;
|
|
99
176
|
street2: z.ZodOptional<z.ZodString>;
|
|
100
|
-
city: z.ZodString
|
|
101
|
-
state: z.ZodString
|
|
102
|
-
zipCode: z.ZodString
|
|
177
|
+
city: z.ZodOptional<z.ZodString>;
|
|
178
|
+
state: z.ZodOptional<z.ZodString>;
|
|
179
|
+
zipCode: z.ZodOptional<z.ZodString>;
|
|
103
180
|
country: z.ZodOptional<z.ZodString>;
|
|
181
|
+
wardNumber: z.ZodOptional<z.ZodString>;
|
|
182
|
+
municipality: z.ZodOptional<z.ZodString>;
|
|
183
|
+
district: z.ZodOptional<z.ZodString>;
|
|
184
|
+
province: z.ZodOptional<z.ZodString>;
|
|
185
|
+
region: z.ZodOptional<z.ZodString>;
|
|
104
186
|
latitude: z.ZodOptional<z.ZodNumber>;
|
|
105
187
|
longitude: z.ZodOptional<z.ZodNumber>;
|
|
106
188
|
timezone: z.ZodOptional<z.ZodString>;
|
|
107
189
|
}, "strip", z.ZodTypeAny, {
|
|
108
190
|
street1: string;
|
|
109
|
-
city: string;
|
|
110
|
-
state: string;
|
|
111
|
-
zipCode: string;
|
|
112
191
|
street2?: string | undefined;
|
|
192
|
+
city?: string | undefined;
|
|
193
|
+
state?: string | undefined;
|
|
194
|
+
zipCode?: string | undefined;
|
|
195
|
+
country?: string | undefined;
|
|
196
|
+
latitude?: number | undefined;
|
|
197
|
+
longitude?: number | undefined;
|
|
198
|
+
wardNumber?: string | undefined;
|
|
199
|
+
municipality?: string | undefined;
|
|
200
|
+
district?: string | undefined;
|
|
201
|
+
province?: string | undefined;
|
|
202
|
+
region?: string | undefined;
|
|
203
|
+
timezone?: string | undefined;
|
|
204
|
+
}, {
|
|
205
|
+
street1: string;
|
|
206
|
+
street2?: string | undefined;
|
|
207
|
+
city?: string | undefined;
|
|
208
|
+
state?: string | undefined;
|
|
209
|
+
zipCode?: string | undefined;
|
|
113
210
|
country?: string | undefined;
|
|
114
211
|
latitude?: number | undefined;
|
|
115
212
|
longitude?: number | undefined;
|
|
213
|
+
wardNumber?: string | undefined;
|
|
214
|
+
municipality?: string | undefined;
|
|
215
|
+
district?: string | undefined;
|
|
216
|
+
province?: string | undefined;
|
|
217
|
+
region?: string | undefined;
|
|
218
|
+
timezone?: string | undefined;
|
|
219
|
+
}>, {
|
|
220
|
+
street1: string;
|
|
221
|
+
street2?: string | undefined;
|
|
222
|
+
city?: string | undefined;
|
|
223
|
+
state?: string | undefined;
|
|
224
|
+
zipCode?: string | undefined;
|
|
225
|
+
country?: string | undefined;
|
|
226
|
+
latitude?: number | undefined;
|
|
227
|
+
longitude?: number | undefined;
|
|
228
|
+
wardNumber?: string | undefined;
|
|
229
|
+
municipality?: string | undefined;
|
|
230
|
+
district?: string | undefined;
|
|
231
|
+
province?: string | undefined;
|
|
232
|
+
region?: string | undefined;
|
|
116
233
|
timezone?: string | undefined;
|
|
117
234
|
}, {
|
|
118
235
|
street1: string;
|
|
119
|
-
city: string;
|
|
120
|
-
state: string;
|
|
121
|
-
zipCode: string;
|
|
122
236
|
street2?: string | undefined;
|
|
237
|
+
city?: string | undefined;
|
|
238
|
+
state?: string | undefined;
|
|
239
|
+
zipCode?: string | undefined;
|
|
123
240
|
country?: string | undefined;
|
|
124
241
|
latitude?: number | undefined;
|
|
125
242
|
longitude?: number | undefined;
|
|
243
|
+
wardNumber?: string | undefined;
|
|
244
|
+
municipality?: string | undefined;
|
|
245
|
+
district?: string | undefined;
|
|
246
|
+
province?: string | undefined;
|
|
247
|
+
region?: string | undefined;
|
|
248
|
+
timezone?: string | undefined;
|
|
249
|
+
}>, {
|
|
250
|
+
street1: string;
|
|
251
|
+
street2?: string | undefined;
|
|
252
|
+
city?: string | undefined;
|
|
253
|
+
state?: string | undefined;
|
|
254
|
+
zipCode?: string | undefined;
|
|
255
|
+
country?: string | undefined;
|
|
256
|
+
latitude?: number | undefined;
|
|
257
|
+
longitude?: number | undefined;
|
|
258
|
+
wardNumber?: string | undefined;
|
|
259
|
+
municipality?: string | undefined;
|
|
260
|
+
district?: string | undefined;
|
|
261
|
+
province?: string | undefined;
|
|
262
|
+
region?: string | undefined;
|
|
263
|
+
timezone?: string | undefined;
|
|
264
|
+
}, {
|
|
265
|
+
street1: string;
|
|
266
|
+
street2?: string | undefined;
|
|
267
|
+
city?: string | undefined;
|
|
268
|
+
state?: string | undefined;
|
|
269
|
+
zipCode?: string | undefined;
|
|
270
|
+
country?: string | undefined;
|
|
271
|
+
latitude?: number | undefined;
|
|
272
|
+
longitude?: number | undefined;
|
|
273
|
+
wardNumber?: string | undefined;
|
|
274
|
+
municipality?: string | undefined;
|
|
275
|
+
district?: string | undefined;
|
|
276
|
+
province?: string | undefined;
|
|
277
|
+
region?: string | undefined;
|
|
126
278
|
timezone?: string | undefined;
|
|
127
279
|
}>>;
|
|
128
280
|
contactInfo: z.ZodOptional<z.ZodObject<{
|
|
@@ -151,7 +303,8 @@ export declare const createSchoolSchema: z.ZodEffects<z.ZodEffects<z.ZodObject<{
|
|
|
151
303
|
principalEmail: z.ZodOptional<z.ZodString>;
|
|
152
304
|
timezone: z.ZodDefault<z.ZodString>;
|
|
153
305
|
locale: z.ZodDefault<z.ZodString>;
|
|
154
|
-
academicCalendarType: z.ZodDefault<z.ZodEnum<["semester", "quarter", "trimester"]>>;
|
|
306
|
+
academicCalendarType: z.ZodDefault<z.ZodEnum<["semester", "quarter", "trimester", "annual"]>>;
|
|
307
|
+
calendarSystem: z.ZodDefault<z.ZodEnum<["gregorian", "bikram_sambat"]>>;
|
|
155
308
|
logoUrl: z.ZodOptional<z.ZodString>;
|
|
156
309
|
localEducationAgencyId: z.ZodOptional<z.ZodString>;
|
|
157
310
|
schoolCategories: z.ZodOptional<z.ZodArray<z.ZodEnum<["AllLevels", "Elementary", "HighSchool", "MiddleSchool", "SecondarySchool", "Ungraded"]>, "many">>;
|
|
@@ -209,20 +362,26 @@ export declare const createSchoolSchema: z.ZodEffects<z.ZodEffects<z.ZodObject<{
|
|
|
209
362
|
end: string;
|
|
210
363
|
};
|
|
211
364
|
locale: string;
|
|
212
|
-
academicCalendarType: "semester" | "quarter" | "trimester";
|
|
365
|
+
academicCalendarType: "semester" | "quarter" | "trimester" | "annual";
|
|
366
|
+
calendarSystem: "gregorian" | "bikram_sambat";
|
|
213
367
|
website?: string | undefined;
|
|
214
368
|
shortName?: string | undefined;
|
|
215
369
|
phone?: string | undefined;
|
|
216
370
|
email?: string | undefined;
|
|
217
371
|
address?: {
|
|
218
372
|
street1: string;
|
|
219
|
-
city: string;
|
|
220
|
-
state: string;
|
|
221
|
-
zipCode: string;
|
|
222
373
|
street2?: string | undefined;
|
|
374
|
+
city?: string | undefined;
|
|
375
|
+
state?: string | undefined;
|
|
376
|
+
zipCode?: string | undefined;
|
|
223
377
|
country?: string | undefined;
|
|
224
378
|
latitude?: number | undefined;
|
|
225
379
|
longitude?: number | undefined;
|
|
380
|
+
wardNumber?: string | undefined;
|
|
381
|
+
municipality?: string | undefined;
|
|
382
|
+
district?: string | undefined;
|
|
383
|
+
province?: string | undefined;
|
|
384
|
+
region?: string | undefined;
|
|
226
385
|
timezone?: string | undefined;
|
|
227
386
|
} | undefined;
|
|
228
387
|
contactInfo?: {
|
|
@@ -273,13 +432,18 @@ export declare const createSchoolSchema: z.ZodEffects<z.ZodEffects<z.ZodObject<{
|
|
|
273
432
|
email?: string | undefined;
|
|
274
433
|
address?: {
|
|
275
434
|
street1: string;
|
|
276
|
-
city: string;
|
|
277
|
-
state: string;
|
|
278
|
-
zipCode: string;
|
|
279
435
|
street2?: string | undefined;
|
|
436
|
+
city?: string | undefined;
|
|
437
|
+
state?: string | undefined;
|
|
438
|
+
zipCode?: string | undefined;
|
|
280
439
|
country?: string | undefined;
|
|
281
440
|
latitude?: number | undefined;
|
|
282
441
|
longitude?: number | undefined;
|
|
442
|
+
wardNumber?: string | undefined;
|
|
443
|
+
municipality?: string | undefined;
|
|
444
|
+
district?: string | undefined;
|
|
445
|
+
province?: string | undefined;
|
|
446
|
+
region?: string | undefined;
|
|
283
447
|
timezone?: string | undefined;
|
|
284
448
|
} | undefined;
|
|
285
449
|
contactInfo?: {
|
|
@@ -293,7 +457,8 @@ export declare const createSchoolSchema: z.ZodEffects<z.ZodEffects<z.ZodObject<{
|
|
|
293
457
|
principalName?: string | undefined;
|
|
294
458
|
principalEmail?: string | undefined;
|
|
295
459
|
locale?: string | undefined;
|
|
296
|
-
academicCalendarType?: "semester" | "quarter" | "trimester" | undefined;
|
|
460
|
+
academicCalendarType?: "semester" | "quarter" | "trimester" | "annual" | undefined;
|
|
461
|
+
calendarSystem?: "gregorian" | "bikram_sambat" | undefined;
|
|
297
462
|
logoUrl?: string | undefined;
|
|
298
463
|
localEducationAgencyId?: string | undefined;
|
|
299
464
|
schoolCategories?: ("AllLevels" | "Elementary" | "HighSchool" | "MiddleSchool" | "SecondarySchool" | "Ungraded")[] | undefined;
|
|
@@ -327,20 +492,26 @@ export declare const createSchoolSchema: z.ZodEffects<z.ZodEffects<z.ZodObject<{
|
|
|
327
492
|
end: string;
|
|
328
493
|
};
|
|
329
494
|
locale: string;
|
|
330
|
-
academicCalendarType: "semester" | "quarter" | "trimester";
|
|
495
|
+
academicCalendarType: "semester" | "quarter" | "trimester" | "annual";
|
|
496
|
+
calendarSystem: "gregorian" | "bikram_sambat";
|
|
331
497
|
website?: string | undefined;
|
|
332
498
|
shortName?: string | undefined;
|
|
333
499
|
phone?: string | undefined;
|
|
334
500
|
email?: string | undefined;
|
|
335
501
|
address?: {
|
|
336
502
|
street1: string;
|
|
337
|
-
city: string;
|
|
338
|
-
state: string;
|
|
339
|
-
zipCode: string;
|
|
340
503
|
street2?: string | undefined;
|
|
504
|
+
city?: string | undefined;
|
|
505
|
+
state?: string | undefined;
|
|
506
|
+
zipCode?: string | undefined;
|
|
341
507
|
country?: string | undefined;
|
|
342
508
|
latitude?: number | undefined;
|
|
343
509
|
longitude?: number | undefined;
|
|
510
|
+
wardNumber?: string | undefined;
|
|
511
|
+
municipality?: string | undefined;
|
|
512
|
+
district?: string | undefined;
|
|
513
|
+
province?: string | undefined;
|
|
514
|
+
region?: string | undefined;
|
|
344
515
|
timezone?: string | undefined;
|
|
345
516
|
} | undefined;
|
|
346
517
|
contactInfo?: {
|
|
@@ -391,13 +562,18 @@ export declare const createSchoolSchema: z.ZodEffects<z.ZodEffects<z.ZodObject<{
|
|
|
391
562
|
email?: string | undefined;
|
|
392
563
|
address?: {
|
|
393
564
|
street1: string;
|
|
394
|
-
city: string;
|
|
395
|
-
state: string;
|
|
396
|
-
zipCode: string;
|
|
397
565
|
street2?: string | undefined;
|
|
566
|
+
city?: string | undefined;
|
|
567
|
+
state?: string | undefined;
|
|
568
|
+
zipCode?: string | undefined;
|
|
398
569
|
country?: string | undefined;
|
|
399
570
|
latitude?: number | undefined;
|
|
400
571
|
longitude?: number | undefined;
|
|
572
|
+
wardNumber?: string | undefined;
|
|
573
|
+
municipality?: string | undefined;
|
|
574
|
+
district?: string | undefined;
|
|
575
|
+
province?: string | undefined;
|
|
576
|
+
region?: string | undefined;
|
|
401
577
|
timezone?: string | undefined;
|
|
402
578
|
} | undefined;
|
|
403
579
|
contactInfo?: {
|
|
@@ -411,7 +587,8 @@ export declare const createSchoolSchema: z.ZodEffects<z.ZodEffects<z.ZodObject<{
|
|
|
411
587
|
principalName?: string | undefined;
|
|
412
588
|
principalEmail?: string | undefined;
|
|
413
589
|
locale?: string | undefined;
|
|
414
|
-
academicCalendarType?: "semester" | "quarter" | "trimester" | undefined;
|
|
590
|
+
academicCalendarType?: "semester" | "quarter" | "trimester" | "annual" | undefined;
|
|
591
|
+
calendarSystem?: "gregorian" | "bikram_sambat" | undefined;
|
|
415
592
|
logoUrl?: string | undefined;
|
|
416
593
|
localEducationAgencyId?: string | undefined;
|
|
417
594
|
schoolCategories?: ("AllLevels" | "Elementary" | "HighSchool" | "MiddleSchool" | "SecondarySchool" | "Ungraded")[] | undefined;
|
|
@@ -445,20 +622,26 @@ export declare const createSchoolSchema: z.ZodEffects<z.ZodEffects<z.ZodObject<{
|
|
|
445
622
|
end: string;
|
|
446
623
|
};
|
|
447
624
|
locale: string;
|
|
448
|
-
academicCalendarType: "semester" | "quarter" | "trimester";
|
|
625
|
+
academicCalendarType: "semester" | "quarter" | "trimester" | "annual";
|
|
626
|
+
calendarSystem: "gregorian" | "bikram_sambat";
|
|
449
627
|
website?: string | undefined;
|
|
450
628
|
shortName?: string | undefined;
|
|
451
629
|
phone?: string | undefined;
|
|
452
630
|
email?: string | undefined;
|
|
453
631
|
address?: {
|
|
454
632
|
street1: string;
|
|
455
|
-
city: string;
|
|
456
|
-
state: string;
|
|
457
|
-
zipCode: string;
|
|
458
633
|
street2?: string | undefined;
|
|
634
|
+
city?: string | undefined;
|
|
635
|
+
state?: string | undefined;
|
|
636
|
+
zipCode?: string | undefined;
|
|
459
637
|
country?: string | undefined;
|
|
460
638
|
latitude?: number | undefined;
|
|
461
639
|
longitude?: number | undefined;
|
|
640
|
+
wardNumber?: string | undefined;
|
|
641
|
+
municipality?: string | undefined;
|
|
642
|
+
district?: string | undefined;
|
|
643
|
+
province?: string | undefined;
|
|
644
|
+
region?: string | undefined;
|
|
462
645
|
timezone?: string | undefined;
|
|
463
646
|
} | undefined;
|
|
464
647
|
contactInfo?: {
|
|
@@ -509,13 +692,18 @@ export declare const createSchoolSchema: z.ZodEffects<z.ZodEffects<z.ZodObject<{
|
|
|
509
692
|
email?: string | undefined;
|
|
510
693
|
address?: {
|
|
511
694
|
street1: string;
|
|
512
|
-
city: string;
|
|
513
|
-
state: string;
|
|
514
|
-
zipCode: string;
|
|
515
695
|
street2?: string | undefined;
|
|
696
|
+
city?: string | undefined;
|
|
697
|
+
state?: string | undefined;
|
|
698
|
+
zipCode?: string | undefined;
|
|
516
699
|
country?: string | undefined;
|
|
517
700
|
latitude?: number | undefined;
|
|
518
701
|
longitude?: number | undefined;
|
|
702
|
+
wardNumber?: string | undefined;
|
|
703
|
+
municipality?: string | undefined;
|
|
704
|
+
district?: string | undefined;
|
|
705
|
+
province?: string | undefined;
|
|
706
|
+
region?: string | undefined;
|
|
519
707
|
timezone?: string | undefined;
|
|
520
708
|
} | undefined;
|
|
521
709
|
contactInfo?: {
|
|
@@ -529,7 +717,8 @@ export declare const createSchoolSchema: z.ZodEffects<z.ZodEffects<z.ZodObject<{
|
|
|
529
717
|
principalName?: string | undefined;
|
|
530
718
|
principalEmail?: string | undefined;
|
|
531
719
|
locale?: string | undefined;
|
|
532
|
-
academicCalendarType?: "semester" | "quarter" | "trimester" | undefined;
|
|
720
|
+
academicCalendarType?: "semester" | "quarter" | "trimester" | "annual" | undefined;
|
|
721
|
+
calendarSystem?: "gregorian" | "bikram_sambat" | undefined;
|
|
533
722
|
logoUrl?: string | undefined;
|
|
534
723
|
localEducationAgencyId?: string | undefined;
|
|
535
724
|
schoolCategories?: ("AllLevels" | "Elementary" | "HighSchool" | "MiddleSchool" | "SecondarySchool" | "Ungraded")[] | undefined;
|
|
@@ -572,35 +761,110 @@ export declare const updateSchoolSchema: z.ZodEffects<z.ZodEffects<z.ZodObject<{
|
|
|
572
761
|
phone: z.ZodOptional<z.ZodString>;
|
|
573
762
|
email: z.ZodOptional<z.ZodString>;
|
|
574
763
|
website: z.ZodOptional<z.ZodString>;
|
|
575
|
-
address: z.ZodOptional<z.ZodObject<{
|
|
764
|
+
address: z.ZodOptional<z.ZodEffects<z.ZodEffects<z.ZodObject<{
|
|
576
765
|
street1: z.ZodString;
|
|
577
766
|
street2: z.ZodOptional<z.ZodString>;
|
|
578
|
-
city: z.ZodString
|
|
579
|
-
state: z.ZodString
|
|
580
|
-
zipCode: z.ZodString
|
|
767
|
+
city: z.ZodOptional<z.ZodString>;
|
|
768
|
+
state: z.ZodOptional<z.ZodString>;
|
|
769
|
+
zipCode: z.ZodOptional<z.ZodString>;
|
|
581
770
|
country: z.ZodOptional<z.ZodString>;
|
|
771
|
+
wardNumber: z.ZodOptional<z.ZodString>;
|
|
772
|
+
municipality: z.ZodOptional<z.ZodString>;
|
|
773
|
+
district: z.ZodOptional<z.ZodString>;
|
|
774
|
+
province: z.ZodOptional<z.ZodString>;
|
|
775
|
+
region: z.ZodOptional<z.ZodString>;
|
|
582
776
|
latitude: z.ZodOptional<z.ZodNumber>;
|
|
583
777
|
longitude: z.ZodOptional<z.ZodNumber>;
|
|
584
778
|
timezone: z.ZodOptional<z.ZodString>;
|
|
585
779
|
}, "strip", z.ZodTypeAny, {
|
|
586
780
|
street1: string;
|
|
587
|
-
city: string;
|
|
588
|
-
state: string;
|
|
589
|
-
zipCode: string;
|
|
590
781
|
street2?: string | undefined;
|
|
782
|
+
city?: string | undefined;
|
|
783
|
+
state?: string | undefined;
|
|
784
|
+
zipCode?: string | undefined;
|
|
785
|
+
country?: string | undefined;
|
|
786
|
+
latitude?: number | undefined;
|
|
787
|
+
longitude?: number | undefined;
|
|
788
|
+
wardNumber?: string | undefined;
|
|
789
|
+
municipality?: string | undefined;
|
|
790
|
+
district?: string | undefined;
|
|
791
|
+
province?: string | undefined;
|
|
792
|
+
region?: string | undefined;
|
|
793
|
+
timezone?: string | undefined;
|
|
794
|
+
}, {
|
|
795
|
+
street1: string;
|
|
796
|
+
street2?: string | undefined;
|
|
797
|
+
city?: string | undefined;
|
|
798
|
+
state?: string | undefined;
|
|
799
|
+
zipCode?: string | undefined;
|
|
800
|
+
country?: string | undefined;
|
|
801
|
+
latitude?: number | undefined;
|
|
802
|
+
longitude?: number | undefined;
|
|
803
|
+
wardNumber?: string | undefined;
|
|
804
|
+
municipality?: string | undefined;
|
|
805
|
+
district?: string | undefined;
|
|
806
|
+
province?: string | undefined;
|
|
807
|
+
region?: string | undefined;
|
|
808
|
+
timezone?: string | undefined;
|
|
809
|
+
}>, {
|
|
810
|
+
street1: string;
|
|
811
|
+
street2?: string | undefined;
|
|
812
|
+
city?: string | undefined;
|
|
813
|
+
state?: string | undefined;
|
|
814
|
+
zipCode?: string | undefined;
|
|
591
815
|
country?: string | undefined;
|
|
592
816
|
latitude?: number | undefined;
|
|
593
817
|
longitude?: number | undefined;
|
|
818
|
+
wardNumber?: string | undefined;
|
|
819
|
+
municipality?: string | undefined;
|
|
820
|
+
district?: string | undefined;
|
|
821
|
+
province?: string | undefined;
|
|
822
|
+
region?: string | undefined;
|
|
594
823
|
timezone?: string | undefined;
|
|
595
824
|
}, {
|
|
596
825
|
street1: string;
|
|
597
|
-
city: string;
|
|
598
|
-
state: string;
|
|
599
|
-
zipCode: string;
|
|
600
826
|
street2?: string | undefined;
|
|
827
|
+
city?: string | undefined;
|
|
828
|
+
state?: string | undefined;
|
|
829
|
+
zipCode?: string | undefined;
|
|
601
830
|
country?: string | undefined;
|
|
602
831
|
latitude?: number | undefined;
|
|
603
832
|
longitude?: number | undefined;
|
|
833
|
+
wardNumber?: string | undefined;
|
|
834
|
+
municipality?: string | undefined;
|
|
835
|
+
district?: string | undefined;
|
|
836
|
+
province?: string | undefined;
|
|
837
|
+
region?: string | undefined;
|
|
838
|
+
timezone?: string | undefined;
|
|
839
|
+
}>, {
|
|
840
|
+
street1: string;
|
|
841
|
+
street2?: string | undefined;
|
|
842
|
+
city?: string | undefined;
|
|
843
|
+
state?: string | undefined;
|
|
844
|
+
zipCode?: string | undefined;
|
|
845
|
+
country?: string | undefined;
|
|
846
|
+
latitude?: number | undefined;
|
|
847
|
+
longitude?: number | undefined;
|
|
848
|
+
wardNumber?: string | undefined;
|
|
849
|
+
municipality?: string | undefined;
|
|
850
|
+
district?: string | undefined;
|
|
851
|
+
province?: string | undefined;
|
|
852
|
+
region?: string | undefined;
|
|
853
|
+
timezone?: string | undefined;
|
|
854
|
+
}, {
|
|
855
|
+
street1: string;
|
|
856
|
+
street2?: string | undefined;
|
|
857
|
+
city?: string | undefined;
|
|
858
|
+
state?: string | undefined;
|
|
859
|
+
zipCode?: string | undefined;
|
|
860
|
+
country?: string | undefined;
|
|
861
|
+
latitude?: number | undefined;
|
|
862
|
+
longitude?: number | undefined;
|
|
863
|
+
wardNumber?: string | undefined;
|
|
864
|
+
municipality?: string | undefined;
|
|
865
|
+
district?: string | undefined;
|
|
866
|
+
province?: string | undefined;
|
|
867
|
+
region?: string | undefined;
|
|
604
868
|
timezone?: string | undefined;
|
|
605
869
|
}>>;
|
|
606
870
|
contactInfo: z.ZodOptional<z.ZodObject<{
|
|
@@ -630,6 +894,7 @@ export declare const updateSchoolSchema: z.ZodEffects<z.ZodEffects<z.ZodObject<{
|
|
|
630
894
|
status: z.ZodOptional<z.ZodEnum<["active", "inactive", "setup", "suspended", "closed"]>>;
|
|
631
895
|
timezone: z.ZodOptional<z.ZodString>;
|
|
632
896
|
locale: z.ZodOptional<z.ZodString>;
|
|
897
|
+
calendarSystem: z.ZodOptional<z.ZodEnum<["gregorian", "bikram_sambat"]>>;
|
|
633
898
|
currentAcademicYearId: z.ZodOptional<z.ZodString>;
|
|
634
899
|
logoUrl: z.ZodOptional<z.ZodString>;
|
|
635
900
|
localEducationAgencyId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
@@ -693,13 +958,18 @@ export declare const updateSchoolSchema: z.ZodEffects<z.ZodEffects<z.ZodObject<{
|
|
|
693
958
|
email?: string | undefined;
|
|
694
959
|
address?: {
|
|
695
960
|
street1: string;
|
|
696
|
-
city: string;
|
|
697
|
-
state: string;
|
|
698
|
-
zipCode: string;
|
|
699
961
|
street2?: string | undefined;
|
|
962
|
+
city?: string | undefined;
|
|
963
|
+
state?: string | undefined;
|
|
964
|
+
zipCode?: string | undefined;
|
|
700
965
|
country?: string | undefined;
|
|
701
966
|
latitude?: number | undefined;
|
|
702
967
|
longitude?: number | undefined;
|
|
968
|
+
wardNumber?: string | undefined;
|
|
969
|
+
municipality?: string | undefined;
|
|
970
|
+
district?: string | undefined;
|
|
971
|
+
province?: string | undefined;
|
|
972
|
+
region?: string | undefined;
|
|
703
973
|
timezone?: string | undefined;
|
|
704
974
|
} | undefined;
|
|
705
975
|
contactInfo?: {
|
|
@@ -713,6 +983,7 @@ export declare const updateSchoolSchema: z.ZodEffects<z.ZodEffects<z.ZodObject<{
|
|
|
713
983
|
principalName?: string | undefined;
|
|
714
984
|
principalEmail?: string | undefined;
|
|
715
985
|
locale?: string | undefined;
|
|
986
|
+
calendarSystem?: "gregorian" | "bikram_sambat" | undefined;
|
|
716
987
|
logoUrl?: string | undefined;
|
|
717
988
|
localEducationAgencyId?: string | null | undefined;
|
|
718
989
|
schoolCategories?: ("AllLevels" | "Elementary" | "HighSchool" | "MiddleSchool" | "SecondarySchool" | "Ungraded")[] | undefined;
|
|
@@ -752,13 +1023,18 @@ export declare const updateSchoolSchema: z.ZodEffects<z.ZodEffects<z.ZodObject<{
|
|
|
752
1023
|
email?: string | undefined;
|
|
753
1024
|
address?: {
|
|
754
1025
|
street1: string;
|
|
755
|
-
city: string;
|
|
756
|
-
state: string;
|
|
757
|
-
zipCode: string;
|
|
758
1026
|
street2?: string | undefined;
|
|
1027
|
+
city?: string | undefined;
|
|
1028
|
+
state?: string | undefined;
|
|
1029
|
+
zipCode?: string | undefined;
|
|
759
1030
|
country?: string | undefined;
|
|
760
1031
|
latitude?: number | undefined;
|
|
761
1032
|
longitude?: number | undefined;
|
|
1033
|
+
wardNumber?: string | undefined;
|
|
1034
|
+
municipality?: string | undefined;
|
|
1035
|
+
district?: string | undefined;
|
|
1036
|
+
province?: string | undefined;
|
|
1037
|
+
region?: string | undefined;
|
|
762
1038
|
timezone?: string | undefined;
|
|
763
1039
|
} | undefined;
|
|
764
1040
|
contactInfo?: {
|
|
@@ -772,6 +1048,7 @@ export declare const updateSchoolSchema: z.ZodEffects<z.ZodEffects<z.ZodObject<{
|
|
|
772
1048
|
principalName?: string | undefined;
|
|
773
1049
|
principalEmail?: string | undefined;
|
|
774
1050
|
locale?: string | undefined;
|
|
1051
|
+
calendarSystem?: "gregorian" | "bikram_sambat" | undefined;
|
|
775
1052
|
logoUrl?: string | undefined;
|
|
776
1053
|
localEducationAgencyId?: string | null | undefined;
|
|
777
1054
|
schoolCategories?: ("AllLevels" | "Elementary" | "HighSchool" | "MiddleSchool" | "SecondarySchool" | "Ungraded")[] | undefined;
|
|
@@ -811,13 +1088,18 @@ export declare const updateSchoolSchema: z.ZodEffects<z.ZodEffects<z.ZodObject<{
|
|
|
811
1088
|
email?: string | undefined;
|
|
812
1089
|
address?: {
|
|
813
1090
|
street1: string;
|
|
814
|
-
city: string;
|
|
815
|
-
state: string;
|
|
816
|
-
zipCode: string;
|
|
817
1091
|
street2?: string | undefined;
|
|
1092
|
+
city?: string | undefined;
|
|
1093
|
+
state?: string | undefined;
|
|
1094
|
+
zipCode?: string | undefined;
|
|
818
1095
|
country?: string | undefined;
|
|
819
1096
|
latitude?: number | undefined;
|
|
820
1097
|
longitude?: number | undefined;
|
|
1098
|
+
wardNumber?: string | undefined;
|
|
1099
|
+
municipality?: string | undefined;
|
|
1100
|
+
district?: string | undefined;
|
|
1101
|
+
province?: string | undefined;
|
|
1102
|
+
region?: string | undefined;
|
|
821
1103
|
timezone?: string | undefined;
|
|
822
1104
|
} | undefined;
|
|
823
1105
|
contactInfo?: {
|
|
@@ -831,6 +1113,7 @@ export declare const updateSchoolSchema: z.ZodEffects<z.ZodEffects<z.ZodObject<{
|
|
|
831
1113
|
principalName?: string | undefined;
|
|
832
1114
|
principalEmail?: string | undefined;
|
|
833
1115
|
locale?: string | undefined;
|
|
1116
|
+
calendarSystem?: "gregorian" | "bikram_sambat" | undefined;
|
|
834
1117
|
logoUrl?: string | undefined;
|
|
835
1118
|
localEducationAgencyId?: string | null | undefined;
|
|
836
1119
|
schoolCategories?: ("AllLevels" | "Elementary" | "HighSchool" | "MiddleSchool" | "SecondarySchool" | "Ungraded")[] | undefined;
|
|
@@ -870,13 +1153,18 @@ export declare const updateSchoolSchema: z.ZodEffects<z.ZodEffects<z.ZodObject<{
|
|
|
870
1153
|
email?: string | undefined;
|
|
871
1154
|
address?: {
|
|
872
1155
|
street1: string;
|
|
873
|
-
city: string;
|
|
874
|
-
state: string;
|
|
875
|
-
zipCode: string;
|
|
876
1156
|
street2?: string | undefined;
|
|
1157
|
+
city?: string | undefined;
|
|
1158
|
+
state?: string | undefined;
|
|
1159
|
+
zipCode?: string | undefined;
|
|
877
1160
|
country?: string | undefined;
|
|
878
1161
|
latitude?: number | undefined;
|
|
879
1162
|
longitude?: number | undefined;
|
|
1163
|
+
wardNumber?: string | undefined;
|
|
1164
|
+
municipality?: string | undefined;
|
|
1165
|
+
district?: string | undefined;
|
|
1166
|
+
province?: string | undefined;
|
|
1167
|
+
region?: string | undefined;
|
|
880
1168
|
timezone?: string | undefined;
|
|
881
1169
|
} | undefined;
|
|
882
1170
|
contactInfo?: {
|
|
@@ -890,6 +1178,7 @@ export declare const updateSchoolSchema: z.ZodEffects<z.ZodEffects<z.ZodObject<{
|
|
|
890
1178
|
principalName?: string | undefined;
|
|
891
1179
|
principalEmail?: string | undefined;
|
|
892
1180
|
locale?: string | undefined;
|
|
1181
|
+
calendarSystem?: "gregorian" | "bikram_sambat" | undefined;
|
|
893
1182
|
logoUrl?: string | undefined;
|
|
894
1183
|
localEducationAgencyId?: string | null | undefined;
|
|
895
1184
|
schoolCategories?: ("AllLevels" | "Elementary" | "HighSchool" | "MiddleSchool" | "SecondarySchool" | "Ungraded")[] | undefined;
|
|
@@ -929,13 +1218,18 @@ export declare const updateSchoolSchema: z.ZodEffects<z.ZodEffects<z.ZodObject<{
|
|
|
929
1218
|
email?: string | undefined;
|
|
930
1219
|
address?: {
|
|
931
1220
|
street1: string;
|
|
932
|
-
city: string;
|
|
933
|
-
state: string;
|
|
934
|
-
zipCode: string;
|
|
935
1221
|
street2?: string | undefined;
|
|
1222
|
+
city?: string | undefined;
|
|
1223
|
+
state?: string | undefined;
|
|
1224
|
+
zipCode?: string | undefined;
|
|
936
1225
|
country?: string | undefined;
|
|
937
1226
|
latitude?: number | undefined;
|
|
938
1227
|
longitude?: number | undefined;
|
|
1228
|
+
wardNumber?: string | undefined;
|
|
1229
|
+
municipality?: string | undefined;
|
|
1230
|
+
district?: string | undefined;
|
|
1231
|
+
province?: string | undefined;
|
|
1232
|
+
region?: string | undefined;
|
|
939
1233
|
timezone?: string | undefined;
|
|
940
1234
|
} | undefined;
|
|
941
1235
|
contactInfo?: {
|
|
@@ -949,6 +1243,7 @@ export declare const updateSchoolSchema: z.ZodEffects<z.ZodEffects<z.ZodObject<{
|
|
|
949
1243
|
principalName?: string | undefined;
|
|
950
1244
|
principalEmail?: string | undefined;
|
|
951
1245
|
locale?: string | undefined;
|
|
1246
|
+
calendarSystem?: "gregorian" | "bikram_sambat" | undefined;
|
|
952
1247
|
logoUrl?: string | undefined;
|
|
953
1248
|
localEducationAgencyId?: string | null | undefined;
|
|
954
1249
|
schoolCategories?: ("AllLevels" | "Elementary" | "HighSchool" | "MiddleSchool" | "SecondarySchool" | "Ungraded")[] | undefined;
|
|
@@ -988,13 +1283,18 @@ export declare const updateSchoolSchema: z.ZodEffects<z.ZodEffects<z.ZodObject<{
|
|
|
988
1283
|
email?: string | undefined;
|
|
989
1284
|
address?: {
|
|
990
1285
|
street1: string;
|
|
991
|
-
city: string;
|
|
992
|
-
state: string;
|
|
993
|
-
zipCode: string;
|
|
994
1286
|
street2?: string | undefined;
|
|
1287
|
+
city?: string | undefined;
|
|
1288
|
+
state?: string | undefined;
|
|
1289
|
+
zipCode?: string | undefined;
|
|
995
1290
|
country?: string | undefined;
|
|
996
1291
|
latitude?: number | undefined;
|
|
997
1292
|
longitude?: number | undefined;
|
|
1293
|
+
wardNumber?: string | undefined;
|
|
1294
|
+
municipality?: string | undefined;
|
|
1295
|
+
district?: string | undefined;
|
|
1296
|
+
province?: string | undefined;
|
|
1297
|
+
region?: string | undefined;
|
|
998
1298
|
timezone?: string | undefined;
|
|
999
1299
|
} | undefined;
|
|
1000
1300
|
contactInfo?: {
|
|
@@ -1008,6 +1308,7 @@ export declare const updateSchoolSchema: z.ZodEffects<z.ZodEffects<z.ZodObject<{
|
|
|
1008
1308
|
principalName?: string | undefined;
|
|
1009
1309
|
principalEmail?: string | undefined;
|
|
1010
1310
|
locale?: string | undefined;
|
|
1311
|
+
calendarSystem?: "gregorian" | "bikram_sambat" | undefined;
|
|
1011
1312
|
logoUrl?: string | undefined;
|
|
1012
1313
|
localEducationAgencyId?: string | null | undefined;
|
|
1013
1314
|
schoolCategories?: ("AllLevels" | "Elementary" | "HighSchool" | "MiddleSchool" | "SecondarySchool" | "Ungraded")[] | undefined;
|
|
@@ -1053,35 +1354,110 @@ export declare const schoolResponseSchema: z.ZodObject<{
|
|
|
1053
1354
|
phone: z.ZodOptional<z.ZodString>;
|
|
1054
1355
|
email: z.ZodOptional<z.ZodString>;
|
|
1055
1356
|
website: z.ZodOptional<z.ZodString>;
|
|
1056
|
-
address: z.ZodOptional<z.ZodObject<{
|
|
1357
|
+
address: z.ZodOptional<z.ZodEffects<z.ZodEffects<z.ZodObject<{
|
|
1057
1358
|
street1: z.ZodString;
|
|
1058
1359
|
street2: z.ZodOptional<z.ZodString>;
|
|
1059
|
-
city: z.ZodString
|
|
1060
|
-
state: z.ZodString
|
|
1061
|
-
zipCode: z.ZodString
|
|
1360
|
+
city: z.ZodOptional<z.ZodString>;
|
|
1361
|
+
state: z.ZodOptional<z.ZodString>;
|
|
1362
|
+
zipCode: z.ZodOptional<z.ZodString>;
|
|
1062
1363
|
country: z.ZodOptional<z.ZodString>;
|
|
1364
|
+
wardNumber: z.ZodOptional<z.ZodString>;
|
|
1365
|
+
municipality: z.ZodOptional<z.ZodString>;
|
|
1366
|
+
district: z.ZodOptional<z.ZodString>;
|
|
1367
|
+
province: z.ZodOptional<z.ZodString>;
|
|
1368
|
+
region: z.ZodOptional<z.ZodString>;
|
|
1063
1369
|
latitude: z.ZodOptional<z.ZodNumber>;
|
|
1064
1370
|
longitude: z.ZodOptional<z.ZodNumber>;
|
|
1065
1371
|
timezone: z.ZodOptional<z.ZodString>;
|
|
1066
1372
|
}, "strip", z.ZodTypeAny, {
|
|
1067
1373
|
street1: string;
|
|
1068
|
-
city: string;
|
|
1069
|
-
state: string;
|
|
1070
|
-
zipCode: string;
|
|
1071
1374
|
street2?: string | undefined;
|
|
1375
|
+
city?: string | undefined;
|
|
1376
|
+
state?: string | undefined;
|
|
1377
|
+
zipCode?: string | undefined;
|
|
1378
|
+
country?: string | undefined;
|
|
1379
|
+
latitude?: number | undefined;
|
|
1380
|
+
longitude?: number | undefined;
|
|
1381
|
+
wardNumber?: string | undefined;
|
|
1382
|
+
municipality?: string | undefined;
|
|
1383
|
+
district?: string | undefined;
|
|
1384
|
+
province?: string | undefined;
|
|
1385
|
+
region?: string | undefined;
|
|
1386
|
+
timezone?: string | undefined;
|
|
1387
|
+
}, {
|
|
1388
|
+
street1: string;
|
|
1389
|
+
street2?: string | undefined;
|
|
1390
|
+
city?: string | undefined;
|
|
1391
|
+
state?: string | undefined;
|
|
1392
|
+
zipCode?: string | undefined;
|
|
1393
|
+
country?: string | undefined;
|
|
1394
|
+
latitude?: number | undefined;
|
|
1395
|
+
longitude?: number | undefined;
|
|
1396
|
+
wardNumber?: string | undefined;
|
|
1397
|
+
municipality?: string | undefined;
|
|
1398
|
+
district?: string | undefined;
|
|
1399
|
+
province?: string | undefined;
|
|
1400
|
+
region?: string | undefined;
|
|
1401
|
+
timezone?: string | undefined;
|
|
1402
|
+
}>, {
|
|
1403
|
+
street1: string;
|
|
1404
|
+
street2?: string | undefined;
|
|
1405
|
+
city?: string | undefined;
|
|
1406
|
+
state?: string | undefined;
|
|
1407
|
+
zipCode?: string | undefined;
|
|
1408
|
+
country?: string | undefined;
|
|
1409
|
+
latitude?: number | undefined;
|
|
1410
|
+
longitude?: number | undefined;
|
|
1411
|
+
wardNumber?: string | undefined;
|
|
1412
|
+
municipality?: string | undefined;
|
|
1413
|
+
district?: string | undefined;
|
|
1414
|
+
province?: string | undefined;
|
|
1415
|
+
region?: string | undefined;
|
|
1416
|
+
timezone?: string | undefined;
|
|
1417
|
+
}, {
|
|
1418
|
+
street1: string;
|
|
1419
|
+
street2?: string | undefined;
|
|
1420
|
+
city?: string | undefined;
|
|
1421
|
+
state?: string | undefined;
|
|
1422
|
+
zipCode?: string | undefined;
|
|
1072
1423
|
country?: string | undefined;
|
|
1073
1424
|
latitude?: number | undefined;
|
|
1074
1425
|
longitude?: number | undefined;
|
|
1426
|
+
wardNumber?: string | undefined;
|
|
1427
|
+
municipality?: string | undefined;
|
|
1428
|
+
district?: string | undefined;
|
|
1429
|
+
province?: string | undefined;
|
|
1430
|
+
region?: string | undefined;
|
|
1431
|
+
timezone?: string | undefined;
|
|
1432
|
+
}>, {
|
|
1433
|
+
street1: string;
|
|
1434
|
+
street2?: string | undefined;
|
|
1435
|
+
city?: string | undefined;
|
|
1436
|
+
state?: string | undefined;
|
|
1437
|
+
zipCode?: string | undefined;
|
|
1438
|
+
country?: string | undefined;
|
|
1439
|
+
latitude?: number | undefined;
|
|
1440
|
+
longitude?: number | undefined;
|
|
1441
|
+
wardNumber?: string | undefined;
|
|
1442
|
+
municipality?: string | undefined;
|
|
1443
|
+
district?: string | undefined;
|
|
1444
|
+
province?: string | undefined;
|
|
1445
|
+
region?: string | undefined;
|
|
1075
1446
|
timezone?: string | undefined;
|
|
1076
1447
|
}, {
|
|
1077
1448
|
street1: string;
|
|
1078
|
-
city: string;
|
|
1079
|
-
state: string;
|
|
1080
|
-
zipCode: string;
|
|
1081
1449
|
street2?: string | undefined;
|
|
1450
|
+
city?: string | undefined;
|
|
1451
|
+
state?: string | undefined;
|
|
1452
|
+
zipCode?: string | undefined;
|
|
1082
1453
|
country?: string | undefined;
|
|
1083
1454
|
latitude?: number | undefined;
|
|
1084
1455
|
longitude?: number | undefined;
|
|
1456
|
+
wardNumber?: string | undefined;
|
|
1457
|
+
municipality?: string | undefined;
|
|
1458
|
+
district?: string | undefined;
|
|
1459
|
+
province?: string | undefined;
|
|
1460
|
+
region?: string | undefined;
|
|
1085
1461
|
timezone?: string | undefined;
|
|
1086
1462
|
}>>;
|
|
1087
1463
|
contactInfo: z.ZodOptional<z.ZodObject<{
|
|
@@ -1111,7 +1487,8 @@ export declare const schoolResponseSchema: z.ZodObject<{
|
|
|
1111
1487
|
status: z.ZodEnum<["active", "inactive", "setup", "suspended", "closed"]>;
|
|
1112
1488
|
timezone: z.ZodString;
|
|
1113
1489
|
locale: z.ZodString;
|
|
1114
|
-
academicCalendarType: z.ZodEnum<["semester", "quarter", "trimester"]>;
|
|
1490
|
+
academicCalendarType: z.ZodEnum<["semester", "quarter", "trimester", "annual"]>;
|
|
1491
|
+
calendarSystem: z.ZodDefault<z.ZodEnum<["gregorian", "bikram_sambat"]>>;
|
|
1115
1492
|
currentAcademicYearId: z.ZodOptional<z.ZodString>;
|
|
1116
1493
|
studentCount: z.ZodOptional<z.ZodNumber>;
|
|
1117
1494
|
staffCount: z.ZodOptional<z.ZodNumber>;
|
|
@@ -1178,7 +1555,8 @@ export declare const schoolResponseSchema: z.ZodObject<{
|
|
|
1178
1555
|
end: string;
|
|
1179
1556
|
};
|
|
1180
1557
|
locale: string;
|
|
1181
|
-
academicCalendarType: "semester" | "quarter" | "trimester";
|
|
1558
|
+
academicCalendarType: "semester" | "quarter" | "trimester" | "annual";
|
|
1559
|
+
calendarSystem: "gregorian" | "bikram_sambat";
|
|
1182
1560
|
schoolId: string;
|
|
1183
1561
|
website?: string | undefined;
|
|
1184
1562
|
shortName?: string | undefined;
|
|
@@ -1186,13 +1564,18 @@ export declare const schoolResponseSchema: z.ZodObject<{
|
|
|
1186
1564
|
email?: string | undefined;
|
|
1187
1565
|
address?: {
|
|
1188
1566
|
street1: string;
|
|
1189
|
-
city: string;
|
|
1190
|
-
state: string;
|
|
1191
|
-
zipCode: string;
|
|
1192
1567
|
street2?: string | undefined;
|
|
1568
|
+
city?: string | undefined;
|
|
1569
|
+
state?: string | undefined;
|
|
1570
|
+
zipCode?: string | undefined;
|
|
1193
1571
|
country?: string | undefined;
|
|
1194
1572
|
latitude?: number | undefined;
|
|
1195
1573
|
longitude?: number | undefined;
|
|
1574
|
+
wardNumber?: string | undefined;
|
|
1575
|
+
municipality?: string | undefined;
|
|
1576
|
+
district?: string | undefined;
|
|
1577
|
+
province?: string | undefined;
|
|
1578
|
+
region?: string | undefined;
|
|
1196
1579
|
timezone?: string | undefined;
|
|
1197
1580
|
} | undefined;
|
|
1198
1581
|
contactInfo?: {
|
|
@@ -1245,7 +1628,7 @@ export declare const schoolResponseSchema: z.ZodObject<{
|
|
|
1245
1628
|
end: string;
|
|
1246
1629
|
};
|
|
1247
1630
|
locale: string;
|
|
1248
|
-
academicCalendarType: "semester" | "quarter" | "trimester";
|
|
1631
|
+
academicCalendarType: "semester" | "quarter" | "trimester" | "annual";
|
|
1249
1632
|
schoolId: string;
|
|
1250
1633
|
website?: string | undefined;
|
|
1251
1634
|
shortName?: string | undefined;
|
|
@@ -1253,13 +1636,18 @@ export declare const schoolResponseSchema: z.ZodObject<{
|
|
|
1253
1636
|
email?: string | undefined;
|
|
1254
1637
|
address?: {
|
|
1255
1638
|
street1: string;
|
|
1256
|
-
city: string;
|
|
1257
|
-
state: string;
|
|
1258
|
-
zipCode: string;
|
|
1259
1639
|
street2?: string | undefined;
|
|
1640
|
+
city?: string | undefined;
|
|
1641
|
+
state?: string | undefined;
|
|
1642
|
+
zipCode?: string | undefined;
|
|
1260
1643
|
country?: string | undefined;
|
|
1261
1644
|
latitude?: number | undefined;
|
|
1262
1645
|
longitude?: number | undefined;
|
|
1646
|
+
wardNumber?: string | undefined;
|
|
1647
|
+
municipality?: string | undefined;
|
|
1648
|
+
district?: string | undefined;
|
|
1649
|
+
province?: string | undefined;
|
|
1650
|
+
region?: string | undefined;
|
|
1263
1651
|
timezone?: string | undefined;
|
|
1264
1652
|
} | undefined;
|
|
1265
1653
|
contactInfo?: {
|
|
@@ -1272,6 +1660,7 @@ export declare const schoolResponseSchema: z.ZodObject<{
|
|
|
1272
1660
|
} | undefined;
|
|
1273
1661
|
principalName?: string | undefined;
|
|
1274
1662
|
principalEmail?: string | undefined;
|
|
1663
|
+
calendarSystem?: "gregorian" | "bikram_sambat" | undefined;
|
|
1275
1664
|
logoUrl?: string | undefined;
|
|
1276
1665
|
localEducationAgencyId?: string | undefined;
|
|
1277
1666
|
schoolCategories?: ("AllLevels" | "Elementary" | "HighSchool" | "MiddleSchool" | "SecondarySchool" | "Ungraded")[] | undefined;
|
|
@@ -1321,35 +1710,110 @@ export declare const schoolListResponseSchema: z.ZodObject<{
|
|
|
1321
1710
|
phone: z.ZodOptional<z.ZodString>;
|
|
1322
1711
|
email: z.ZodOptional<z.ZodString>;
|
|
1323
1712
|
website: z.ZodOptional<z.ZodString>;
|
|
1324
|
-
address: z.ZodOptional<z.ZodObject<{
|
|
1713
|
+
address: z.ZodOptional<z.ZodEffects<z.ZodEffects<z.ZodObject<{
|
|
1325
1714
|
street1: z.ZodString;
|
|
1326
1715
|
street2: z.ZodOptional<z.ZodString>;
|
|
1327
|
-
city: z.ZodString
|
|
1328
|
-
state: z.ZodString
|
|
1329
|
-
zipCode: z.ZodString
|
|
1716
|
+
city: z.ZodOptional<z.ZodString>;
|
|
1717
|
+
state: z.ZodOptional<z.ZodString>;
|
|
1718
|
+
zipCode: z.ZodOptional<z.ZodString>;
|
|
1330
1719
|
country: z.ZodOptional<z.ZodString>;
|
|
1720
|
+
wardNumber: z.ZodOptional<z.ZodString>;
|
|
1721
|
+
municipality: z.ZodOptional<z.ZodString>;
|
|
1722
|
+
district: z.ZodOptional<z.ZodString>;
|
|
1723
|
+
province: z.ZodOptional<z.ZodString>;
|
|
1724
|
+
region: z.ZodOptional<z.ZodString>;
|
|
1331
1725
|
latitude: z.ZodOptional<z.ZodNumber>;
|
|
1332
1726
|
longitude: z.ZodOptional<z.ZodNumber>;
|
|
1333
1727
|
timezone: z.ZodOptional<z.ZodString>;
|
|
1334
1728
|
}, "strip", z.ZodTypeAny, {
|
|
1335
1729
|
street1: string;
|
|
1336
|
-
city: string;
|
|
1337
|
-
state: string;
|
|
1338
|
-
zipCode: string;
|
|
1339
1730
|
street2?: string | undefined;
|
|
1731
|
+
city?: string | undefined;
|
|
1732
|
+
state?: string | undefined;
|
|
1733
|
+
zipCode?: string | undefined;
|
|
1734
|
+
country?: string | undefined;
|
|
1735
|
+
latitude?: number | undefined;
|
|
1736
|
+
longitude?: number | undefined;
|
|
1737
|
+
wardNumber?: string | undefined;
|
|
1738
|
+
municipality?: string | undefined;
|
|
1739
|
+
district?: string | undefined;
|
|
1740
|
+
province?: string | undefined;
|
|
1741
|
+
region?: string | undefined;
|
|
1742
|
+
timezone?: string | undefined;
|
|
1743
|
+
}, {
|
|
1744
|
+
street1: string;
|
|
1745
|
+
street2?: string | undefined;
|
|
1746
|
+
city?: string | undefined;
|
|
1747
|
+
state?: string | undefined;
|
|
1748
|
+
zipCode?: string | undefined;
|
|
1749
|
+
country?: string | undefined;
|
|
1750
|
+
latitude?: number | undefined;
|
|
1751
|
+
longitude?: number | undefined;
|
|
1752
|
+
wardNumber?: string | undefined;
|
|
1753
|
+
municipality?: string | undefined;
|
|
1754
|
+
district?: string | undefined;
|
|
1755
|
+
province?: string | undefined;
|
|
1756
|
+
region?: string | undefined;
|
|
1757
|
+
timezone?: string | undefined;
|
|
1758
|
+
}>, {
|
|
1759
|
+
street1: string;
|
|
1760
|
+
street2?: string | undefined;
|
|
1761
|
+
city?: string | undefined;
|
|
1762
|
+
state?: string | undefined;
|
|
1763
|
+
zipCode?: string | undefined;
|
|
1764
|
+
country?: string | undefined;
|
|
1765
|
+
latitude?: number | undefined;
|
|
1766
|
+
longitude?: number | undefined;
|
|
1767
|
+
wardNumber?: string | undefined;
|
|
1768
|
+
municipality?: string | undefined;
|
|
1769
|
+
district?: string | undefined;
|
|
1770
|
+
province?: string | undefined;
|
|
1771
|
+
region?: string | undefined;
|
|
1772
|
+
timezone?: string | undefined;
|
|
1773
|
+
}, {
|
|
1774
|
+
street1: string;
|
|
1775
|
+
street2?: string | undefined;
|
|
1776
|
+
city?: string | undefined;
|
|
1777
|
+
state?: string | undefined;
|
|
1778
|
+
zipCode?: string | undefined;
|
|
1779
|
+
country?: string | undefined;
|
|
1780
|
+
latitude?: number | undefined;
|
|
1781
|
+
longitude?: number | undefined;
|
|
1782
|
+
wardNumber?: string | undefined;
|
|
1783
|
+
municipality?: string | undefined;
|
|
1784
|
+
district?: string | undefined;
|
|
1785
|
+
province?: string | undefined;
|
|
1786
|
+
region?: string | undefined;
|
|
1787
|
+
timezone?: string | undefined;
|
|
1788
|
+
}>, {
|
|
1789
|
+
street1: string;
|
|
1790
|
+
street2?: string | undefined;
|
|
1791
|
+
city?: string | undefined;
|
|
1792
|
+
state?: string | undefined;
|
|
1793
|
+
zipCode?: string | undefined;
|
|
1340
1794
|
country?: string | undefined;
|
|
1341
1795
|
latitude?: number | undefined;
|
|
1342
1796
|
longitude?: number | undefined;
|
|
1797
|
+
wardNumber?: string | undefined;
|
|
1798
|
+
municipality?: string | undefined;
|
|
1799
|
+
district?: string | undefined;
|
|
1800
|
+
province?: string | undefined;
|
|
1801
|
+
region?: string | undefined;
|
|
1343
1802
|
timezone?: string | undefined;
|
|
1344
1803
|
}, {
|
|
1345
1804
|
street1: string;
|
|
1346
|
-
city: string;
|
|
1347
|
-
state: string;
|
|
1348
|
-
zipCode: string;
|
|
1349
1805
|
street2?: string | undefined;
|
|
1806
|
+
city?: string | undefined;
|
|
1807
|
+
state?: string | undefined;
|
|
1808
|
+
zipCode?: string | undefined;
|
|
1350
1809
|
country?: string | undefined;
|
|
1351
1810
|
latitude?: number | undefined;
|
|
1352
1811
|
longitude?: number | undefined;
|
|
1812
|
+
wardNumber?: string | undefined;
|
|
1813
|
+
municipality?: string | undefined;
|
|
1814
|
+
district?: string | undefined;
|
|
1815
|
+
province?: string | undefined;
|
|
1816
|
+
region?: string | undefined;
|
|
1353
1817
|
timezone?: string | undefined;
|
|
1354
1818
|
}>>;
|
|
1355
1819
|
contactInfo: z.ZodOptional<z.ZodObject<{
|
|
@@ -1379,7 +1843,8 @@ export declare const schoolListResponseSchema: z.ZodObject<{
|
|
|
1379
1843
|
status: z.ZodEnum<["active", "inactive", "setup", "suspended", "closed"]>;
|
|
1380
1844
|
timezone: z.ZodString;
|
|
1381
1845
|
locale: z.ZodString;
|
|
1382
|
-
academicCalendarType: z.ZodEnum<["semester", "quarter", "trimester"]>;
|
|
1846
|
+
academicCalendarType: z.ZodEnum<["semester", "quarter", "trimester", "annual"]>;
|
|
1847
|
+
calendarSystem: z.ZodDefault<z.ZodEnum<["gregorian", "bikram_sambat"]>>;
|
|
1383
1848
|
currentAcademicYearId: z.ZodOptional<z.ZodString>;
|
|
1384
1849
|
studentCount: z.ZodOptional<z.ZodNumber>;
|
|
1385
1850
|
staffCount: z.ZodOptional<z.ZodNumber>;
|
|
@@ -1446,7 +1911,8 @@ export declare const schoolListResponseSchema: z.ZodObject<{
|
|
|
1446
1911
|
end: string;
|
|
1447
1912
|
};
|
|
1448
1913
|
locale: string;
|
|
1449
|
-
academicCalendarType: "semester" | "quarter" | "trimester";
|
|
1914
|
+
academicCalendarType: "semester" | "quarter" | "trimester" | "annual";
|
|
1915
|
+
calendarSystem: "gregorian" | "bikram_sambat";
|
|
1450
1916
|
schoolId: string;
|
|
1451
1917
|
website?: string | undefined;
|
|
1452
1918
|
shortName?: string | undefined;
|
|
@@ -1454,13 +1920,18 @@ export declare const schoolListResponseSchema: z.ZodObject<{
|
|
|
1454
1920
|
email?: string | undefined;
|
|
1455
1921
|
address?: {
|
|
1456
1922
|
street1: string;
|
|
1457
|
-
city: string;
|
|
1458
|
-
state: string;
|
|
1459
|
-
zipCode: string;
|
|
1460
1923
|
street2?: string | undefined;
|
|
1924
|
+
city?: string | undefined;
|
|
1925
|
+
state?: string | undefined;
|
|
1926
|
+
zipCode?: string | undefined;
|
|
1461
1927
|
country?: string | undefined;
|
|
1462
1928
|
latitude?: number | undefined;
|
|
1463
1929
|
longitude?: number | undefined;
|
|
1930
|
+
wardNumber?: string | undefined;
|
|
1931
|
+
municipality?: string | undefined;
|
|
1932
|
+
district?: string | undefined;
|
|
1933
|
+
province?: string | undefined;
|
|
1934
|
+
region?: string | undefined;
|
|
1464
1935
|
timezone?: string | undefined;
|
|
1465
1936
|
} | undefined;
|
|
1466
1937
|
contactInfo?: {
|
|
@@ -1513,7 +1984,7 @@ export declare const schoolListResponseSchema: z.ZodObject<{
|
|
|
1513
1984
|
end: string;
|
|
1514
1985
|
};
|
|
1515
1986
|
locale: string;
|
|
1516
|
-
academicCalendarType: "semester" | "quarter" | "trimester";
|
|
1987
|
+
academicCalendarType: "semester" | "quarter" | "trimester" | "annual";
|
|
1517
1988
|
schoolId: string;
|
|
1518
1989
|
website?: string | undefined;
|
|
1519
1990
|
shortName?: string | undefined;
|
|
@@ -1521,13 +1992,18 @@ export declare const schoolListResponseSchema: z.ZodObject<{
|
|
|
1521
1992
|
email?: string | undefined;
|
|
1522
1993
|
address?: {
|
|
1523
1994
|
street1: string;
|
|
1524
|
-
city: string;
|
|
1525
|
-
state: string;
|
|
1526
|
-
zipCode: string;
|
|
1527
1995
|
street2?: string | undefined;
|
|
1996
|
+
city?: string | undefined;
|
|
1997
|
+
state?: string | undefined;
|
|
1998
|
+
zipCode?: string | undefined;
|
|
1528
1999
|
country?: string | undefined;
|
|
1529
2000
|
latitude?: number | undefined;
|
|
1530
2001
|
longitude?: number | undefined;
|
|
2002
|
+
wardNumber?: string | undefined;
|
|
2003
|
+
municipality?: string | undefined;
|
|
2004
|
+
district?: string | undefined;
|
|
2005
|
+
province?: string | undefined;
|
|
2006
|
+
region?: string | undefined;
|
|
1531
2007
|
timezone?: string | undefined;
|
|
1532
2008
|
} | undefined;
|
|
1533
2009
|
contactInfo?: {
|
|
@@ -1540,6 +2016,7 @@ export declare const schoolListResponseSchema: z.ZodObject<{
|
|
|
1540
2016
|
} | undefined;
|
|
1541
2017
|
principalName?: string | undefined;
|
|
1542
2018
|
principalEmail?: string | undefined;
|
|
2019
|
+
calendarSystem?: "gregorian" | "bikram_sambat" | undefined;
|
|
1543
2020
|
logoUrl?: string | undefined;
|
|
1544
2021
|
localEducationAgencyId?: string | undefined;
|
|
1545
2022
|
schoolCategories?: ("AllLevels" | "Elementary" | "HighSchool" | "MiddleSchool" | "SecondarySchool" | "Ungraded")[] | undefined;
|
|
@@ -1585,7 +2062,8 @@ export declare const schoolListResponseSchema: z.ZodObject<{
|
|
|
1585
2062
|
end: string;
|
|
1586
2063
|
};
|
|
1587
2064
|
locale: string;
|
|
1588
|
-
academicCalendarType: "semester" | "quarter" | "trimester";
|
|
2065
|
+
academicCalendarType: "semester" | "quarter" | "trimester" | "annual";
|
|
2066
|
+
calendarSystem: "gregorian" | "bikram_sambat";
|
|
1589
2067
|
schoolId: string;
|
|
1590
2068
|
website?: string | undefined;
|
|
1591
2069
|
shortName?: string | undefined;
|
|
@@ -1593,13 +2071,18 @@ export declare const schoolListResponseSchema: z.ZodObject<{
|
|
|
1593
2071
|
email?: string | undefined;
|
|
1594
2072
|
address?: {
|
|
1595
2073
|
street1: string;
|
|
1596
|
-
city: string;
|
|
1597
|
-
state: string;
|
|
1598
|
-
zipCode: string;
|
|
1599
2074
|
street2?: string | undefined;
|
|
2075
|
+
city?: string | undefined;
|
|
2076
|
+
state?: string | undefined;
|
|
2077
|
+
zipCode?: string | undefined;
|
|
1600
2078
|
country?: string | undefined;
|
|
1601
2079
|
latitude?: number | undefined;
|
|
1602
2080
|
longitude?: number | undefined;
|
|
2081
|
+
wardNumber?: string | undefined;
|
|
2082
|
+
municipality?: string | undefined;
|
|
2083
|
+
district?: string | undefined;
|
|
2084
|
+
province?: string | undefined;
|
|
2085
|
+
region?: string | undefined;
|
|
1603
2086
|
timezone?: string | undefined;
|
|
1604
2087
|
} | undefined;
|
|
1605
2088
|
contactInfo?: {
|
|
@@ -1657,7 +2140,7 @@ export declare const schoolListResponseSchema: z.ZodObject<{
|
|
|
1657
2140
|
end: string;
|
|
1658
2141
|
};
|
|
1659
2142
|
locale: string;
|
|
1660
|
-
academicCalendarType: "semester" | "quarter" | "trimester";
|
|
2143
|
+
academicCalendarType: "semester" | "quarter" | "trimester" | "annual";
|
|
1661
2144
|
schoolId: string;
|
|
1662
2145
|
website?: string | undefined;
|
|
1663
2146
|
shortName?: string | undefined;
|
|
@@ -1665,13 +2148,18 @@ export declare const schoolListResponseSchema: z.ZodObject<{
|
|
|
1665
2148
|
email?: string | undefined;
|
|
1666
2149
|
address?: {
|
|
1667
2150
|
street1: string;
|
|
1668
|
-
city: string;
|
|
1669
|
-
state: string;
|
|
1670
|
-
zipCode: string;
|
|
1671
2151
|
street2?: string | undefined;
|
|
2152
|
+
city?: string | undefined;
|
|
2153
|
+
state?: string | undefined;
|
|
2154
|
+
zipCode?: string | undefined;
|
|
1672
2155
|
country?: string | undefined;
|
|
1673
2156
|
latitude?: number | undefined;
|
|
1674
2157
|
longitude?: number | undefined;
|
|
2158
|
+
wardNumber?: string | undefined;
|
|
2159
|
+
municipality?: string | undefined;
|
|
2160
|
+
district?: string | undefined;
|
|
2161
|
+
province?: string | undefined;
|
|
2162
|
+
region?: string | undefined;
|
|
1675
2163
|
timezone?: string | undefined;
|
|
1676
2164
|
} | undefined;
|
|
1677
2165
|
contactInfo?: {
|
|
@@ -1684,6 +2172,7 @@ export declare const schoolListResponseSchema: z.ZodObject<{
|
|
|
1684
2172
|
} | undefined;
|
|
1685
2173
|
principalName?: string | undefined;
|
|
1686
2174
|
principalEmail?: string | undefined;
|
|
2175
|
+
calendarSystem?: "gregorian" | "bikram_sambat" | undefined;
|
|
1687
2176
|
logoUrl?: string | undefined;
|
|
1688
2177
|
localEducationAgencyId?: string | undefined;
|
|
1689
2178
|
schoolCategories?: ("AllLevels" | "Elementary" | "HighSchool" | "MiddleSchool" | "SecondarySchool" | "Ungraded")[] | undefined;
|