@aibrains/shared-types 0.1.0 → 0.2.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.
Files changed (53) hide show
  1. package/dist/schemas/academics/assignment.schema.d.ts +10 -10
  2. package/dist/schemas/academics/course.schema.d.ts +10 -10
  3. package/dist/schemas/academics/grade.schema.d.ts +13 -13
  4. package/dist/schemas/enrollment/enrollment.schema.d.ts +49 -49
  5. package/dist/schemas/identity/academic-year.schema.d.ts +12 -12
  6. package/dist/schemas/identity/auth.schema.d.ts +10 -10
  7. package/dist/schemas/identity/credential.schema.d.ts +12 -12
  8. package/dist/schemas/identity/education-org-descriptors.d.ts +314 -0
  9. package/dist/schemas/identity/education-org-descriptors.d.ts.map +1 -0
  10. package/dist/schemas/identity/education-org-descriptors.js +245 -0
  11. package/dist/schemas/identity/education-org-descriptors.js.map +1 -0
  12. package/dist/schemas/identity/education-org-hierarchy.schema.d.ts +65 -0
  13. package/dist/schemas/identity/education-org-hierarchy.schema.d.ts.map +1 -0
  14. package/dist/schemas/identity/education-org-hierarchy.schema.js +46 -0
  15. package/dist/schemas/identity/education-org-hierarchy.schema.js.map +1 -0
  16. package/dist/schemas/identity/education-organization.schema.d.ts +127 -0
  17. package/dist/schemas/identity/education-organization.schema.d.ts.map +1 -0
  18. package/dist/schemas/identity/education-organization.schema.js +102 -0
  19. package/dist/schemas/identity/education-organization.schema.js.map +1 -0
  20. package/dist/schemas/identity/education-service-center.schema.d.ts +826 -0
  21. package/dist/schemas/identity/education-service-center.schema.d.ts.map +1 -0
  22. package/dist/schemas/identity/education-service-center.schema.js +85 -0
  23. package/dist/schemas/identity/education-service-center.schema.js.map +1 -0
  24. package/dist/schemas/identity/index.d.ts +8 -0
  25. package/dist/schemas/identity/index.d.ts.map +1 -1
  26. package/dist/schemas/identity/index.js +9 -0
  27. package/dist/schemas/identity/index.js.map +1 -1
  28. package/dist/schemas/identity/local-education-agency.schema.d.ts +888 -0
  29. package/dist/schemas/identity/local-education-agency.schema.d.ts.map +1 -0
  30. package/dist/schemas/identity/local-education-agency.schema.js +96 -0
  31. package/dist/schemas/identity/local-education-agency.schema.js.map +1 -0
  32. package/dist/schemas/identity/school.schema.d.ts +404 -0
  33. package/dist/schemas/identity/school.schema.d.ts.map +1 -1
  34. package/dist/schemas/identity/school.schema.js +35 -0
  35. package/dist/schemas/identity/school.schema.js.map +1 -1
  36. package/dist/schemas/identity/staff-assignment.schema.d.ts +240 -0
  37. package/dist/schemas/identity/staff-assignment.schema.d.ts.map +1 -0
  38. package/dist/schemas/identity/staff-assignment.schema.js +72 -0
  39. package/dist/schemas/identity/staff-assignment.schema.js.map +1 -0
  40. package/dist/schemas/identity/staff-employment-history.schema.d.ts +114 -0
  41. package/dist/schemas/identity/staff-employment-history.schema.d.ts.map +1 -0
  42. package/dist/schemas/identity/staff-employment-history.schema.js +31 -0
  43. package/dist/schemas/identity/staff-employment-history.schema.js.map +1 -0
  44. package/dist/schemas/identity/staff.schema.d.ts +482 -10
  45. package/dist/schemas/identity/staff.schema.d.ts.map +1 -1
  46. package/dist/schemas/identity/staff.schema.js +15 -1
  47. package/dist/schemas/identity/staff.schema.js.map +1 -1
  48. package/dist/schemas/identity/state-education-agency.schema.d.ts +511 -0
  49. package/dist/schemas/identity/state-education-agency.schema.d.ts.map +1 -0
  50. package/dist/schemas/identity/state-education-agency.schema.js +68 -0
  51. package/dist/schemas/identity/state-education-agency.schema.js.map +1 -0
  52. package/dist/schemas/identity/user.schema.d.ts +10 -10
  53. package/package.json +9 -5
@@ -0,0 +1,826 @@
1
+ /**
2
+ * Education Service Center (ESC) Schemas - Identity Service
3
+ *
4
+ * Zod schemas for Education Service Center CRUD operations.
5
+ * ESCs are regional service agencies that support LEAs and schools.
6
+ *
7
+ * Ed-Fi: EducationServiceCenter
8
+ * https://docs.ed-fi.org/reference/data-exchange/data-standard/model-reference/education-organization-domain/
9
+ */
10
+ import { z } from 'zod';
11
+ export declare const createEducationServiceCenterSchema: z.ZodObject<{
12
+ educationServiceCenterId: z.ZodNumber;
13
+ nameOfInstitution: z.ZodString;
14
+ shortNameOfInstitution: z.ZodOptional<z.ZodString>;
15
+ webSite: z.ZodOptional<z.ZodString>;
16
+ operationalStatusDescriptor: z.ZodDefault<z.ZodEnum<["Active", "Added", "ChangedAgency", "Closed", "Inactive", "New", "Reopened", "Future"]>>;
17
+ stateEducationAgencyId: z.ZodOptional<z.ZodString>;
18
+ categories: z.ZodArray<z.ZodObject<{
19
+ educationOrganizationCategoryDescriptor: z.ZodString;
20
+ }, "strip", z.ZodTypeAny, {
21
+ educationOrganizationCategoryDescriptor: string;
22
+ }, {
23
+ educationOrganizationCategoryDescriptor: string;
24
+ }>, "many">;
25
+ addresses: z.ZodOptional<z.ZodArray<z.ZodObject<{
26
+ addressTypeDescriptor: z.ZodEnum<["Physical", "Mailing", "Shipping"]>;
27
+ streetNumberName: z.ZodString;
28
+ apartmentRoomSuiteNumber: z.ZodOptional<z.ZodString>;
29
+ city: z.ZodString;
30
+ stateAbbreviationDescriptor: z.ZodEnum<["AL", "AK", "AZ", "AR", "CA", "CO", "CT", "DE", "FL", "GA", "HI", "ID", "IL", "IN", "IA", "KS", "KY", "LA", "ME", "MD", "MA", "MI", "MN", "MS", "MO", "MT", "NE", "NV", "NH", "NJ", "NM", "NY", "NC", "ND", "OH", "OK", "OR", "PA", "RI", "SC", "SD", "TN", "TX", "UT", "VT", "VA", "WA", "WV", "WI", "WY", "DC", "AS", "GU", "MP", "PR", "VI"]>;
31
+ postalCode: z.ZodString;
32
+ nameOfCounty: z.ZodOptional<z.ZodString>;
33
+ countyFIPSCode: z.ZodOptional<z.ZodString>;
34
+ latitude: z.ZodOptional<z.ZodString>;
35
+ longitude: z.ZodOptional<z.ZodString>;
36
+ }, "strip", z.ZodTypeAny, {
37
+ city: string;
38
+ addressTypeDescriptor: "Physical" | "Mailing" | "Shipping";
39
+ streetNumberName: string;
40
+ stateAbbreviationDescriptor: "AL" | "AK" | "AZ" | "AR" | "CA" | "CO" | "CT" | "DE" | "FL" | "GA" | "HI" | "ID" | "IL" | "IN" | "IA" | "KS" | "KY" | "LA" | "ME" | "MD" | "MA" | "MI" | "MN" | "MS" | "MO" | "MT" | "NE" | "NV" | "NH" | "NJ" | "NM" | "NY" | "NC" | "ND" | "OH" | "OK" | "OR" | "PA" | "RI" | "SC" | "SD" | "TN" | "TX" | "UT" | "VT" | "VA" | "WA" | "WV" | "WI" | "WY" | "DC" | "AS" | "GU" | "MP" | "PR" | "VI";
41
+ postalCode: string;
42
+ apartmentRoomSuiteNumber?: string | undefined;
43
+ nameOfCounty?: string | undefined;
44
+ countyFIPSCode?: string | undefined;
45
+ latitude?: string | undefined;
46
+ longitude?: string | undefined;
47
+ }, {
48
+ city: string;
49
+ addressTypeDescriptor: "Physical" | "Mailing" | "Shipping";
50
+ streetNumberName: string;
51
+ stateAbbreviationDescriptor: "AL" | "AK" | "AZ" | "AR" | "CA" | "CO" | "CT" | "DE" | "FL" | "GA" | "HI" | "ID" | "IL" | "IN" | "IA" | "KS" | "KY" | "LA" | "ME" | "MD" | "MA" | "MI" | "MN" | "MS" | "MO" | "MT" | "NE" | "NV" | "NH" | "NJ" | "NM" | "NY" | "NC" | "ND" | "OH" | "OK" | "OR" | "PA" | "RI" | "SC" | "SD" | "TN" | "TX" | "UT" | "VT" | "VA" | "WA" | "WV" | "WI" | "WY" | "DC" | "AS" | "GU" | "MP" | "PR" | "VI";
52
+ postalCode: string;
53
+ apartmentRoomSuiteNumber?: string | undefined;
54
+ nameOfCounty?: string | undefined;
55
+ countyFIPSCode?: string | undefined;
56
+ latitude?: string | undefined;
57
+ longitude?: string | undefined;
58
+ }>, "many">>;
59
+ identificationCodes: z.ZodOptional<z.ZodArray<z.ZodObject<{
60
+ identificationCode: z.ZodString;
61
+ educationOrganizationIdentificationSystemDescriptor: z.ZodEnum<["NCES", "SEA", "DUNS", "Federal", "Other"]>;
62
+ }, "strip", z.ZodTypeAny, {
63
+ identificationCode: string;
64
+ educationOrganizationIdentificationSystemDescriptor: "Other" | "NCES" | "SEA" | "DUNS" | "Federal";
65
+ }, {
66
+ identificationCode: string;
67
+ educationOrganizationIdentificationSystemDescriptor: "Other" | "NCES" | "SEA" | "DUNS" | "Federal";
68
+ }>, "many">>;
69
+ telephones: z.ZodOptional<z.ZodArray<z.ZodObject<{
70
+ telephoneNumber: z.ZodString;
71
+ institutionTelephoneNumberTypeDescriptor: z.ZodEnum<["Main", "Administrative", "Fax", "Attendance"]>;
72
+ }, "strip", z.ZodTypeAny, {
73
+ telephoneNumber: string;
74
+ institutionTelephoneNumberTypeDescriptor: "Main" | "Administrative" | "Fax" | "Attendance";
75
+ }, {
76
+ telephoneNumber: string;
77
+ institutionTelephoneNumberTypeDescriptor: "Main" | "Administrative" | "Fax" | "Attendance";
78
+ }>, "many">>;
79
+ accountabilityRatings: z.ZodOptional<z.ZodArray<z.ZodObject<{
80
+ schoolYear: z.ZodNumber;
81
+ title: z.ZodString;
82
+ rating: z.ZodString;
83
+ ratingOrganization: z.ZodOptional<z.ZodString>;
84
+ ratingDate: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
85
+ }, "strip", z.ZodTypeAny, {
86
+ schoolYear: number;
87
+ title: string;
88
+ rating: string;
89
+ ratingOrganization?: string | undefined;
90
+ ratingDate?: string | undefined;
91
+ }, {
92
+ schoolYear: number;
93
+ title: string;
94
+ rating: string;
95
+ ratingOrganization?: string | undefined;
96
+ ratingDate?: string | undefined;
97
+ }>, "many">>;
98
+ }, "strip", z.ZodTypeAny, {
99
+ categories: {
100
+ educationOrganizationCategoryDescriptor: string;
101
+ }[];
102
+ nameOfInstitution: string;
103
+ operationalStatusDescriptor: "Active" | "Added" | "ChangedAgency" | "Closed" | "Inactive" | "New" | "Reopened" | "Future";
104
+ educationServiceCenterId: number;
105
+ identificationCodes?: {
106
+ identificationCode: string;
107
+ educationOrganizationIdentificationSystemDescriptor: "Other" | "NCES" | "SEA" | "DUNS" | "Federal";
108
+ }[] | undefined;
109
+ accountabilityRatings?: {
110
+ schoolYear: number;
111
+ title: string;
112
+ rating: string;
113
+ ratingOrganization?: string | undefined;
114
+ ratingDate?: string | undefined;
115
+ }[] | undefined;
116
+ addresses?: {
117
+ city: string;
118
+ addressTypeDescriptor: "Physical" | "Mailing" | "Shipping";
119
+ streetNumberName: string;
120
+ stateAbbreviationDescriptor: "AL" | "AK" | "AZ" | "AR" | "CA" | "CO" | "CT" | "DE" | "FL" | "GA" | "HI" | "ID" | "IL" | "IN" | "IA" | "KS" | "KY" | "LA" | "ME" | "MD" | "MA" | "MI" | "MN" | "MS" | "MO" | "MT" | "NE" | "NV" | "NH" | "NJ" | "NM" | "NY" | "NC" | "ND" | "OH" | "OK" | "OR" | "PA" | "RI" | "SC" | "SD" | "TN" | "TX" | "UT" | "VT" | "VA" | "WA" | "WV" | "WI" | "WY" | "DC" | "AS" | "GU" | "MP" | "PR" | "VI";
121
+ postalCode: string;
122
+ apartmentRoomSuiteNumber?: string | undefined;
123
+ nameOfCounty?: string | undefined;
124
+ countyFIPSCode?: string | undefined;
125
+ latitude?: string | undefined;
126
+ longitude?: string | undefined;
127
+ }[] | undefined;
128
+ telephones?: {
129
+ telephoneNumber: string;
130
+ institutionTelephoneNumberTypeDescriptor: "Main" | "Administrative" | "Fax" | "Attendance";
131
+ }[] | undefined;
132
+ stateEducationAgencyId?: string | undefined;
133
+ shortNameOfInstitution?: string | undefined;
134
+ webSite?: string | undefined;
135
+ }, {
136
+ categories: {
137
+ educationOrganizationCategoryDescriptor: string;
138
+ }[];
139
+ nameOfInstitution: string;
140
+ educationServiceCenterId: number;
141
+ identificationCodes?: {
142
+ identificationCode: string;
143
+ educationOrganizationIdentificationSystemDescriptor: "Other" | "NCES" | "SEA" | "DUNS" | "Federal";
144
+ }[] | undefined;
145
+ accountabilityRatings?: {
146
+ schoolYear: number;
147
+ title: string;
148
+ rating: string;
149
+ ratingOrganization?: string | undefined;
150
+ ratingDate?: string | undefined;
151
+ }[] | undefined;
152
+ addresses?: {
153
+ city: string;
154
+ addressTypeDescriptor: "Physical" | "Mailing" | "Shipping";
155
+ streetNumberName: string;
156
+ stateAbbreviationDescriptor: "AL" | "AK" | "AZ" | "AR" | "CA" | "CO" | "CT" | "DE" | "FL" | "GA" | "HI" | "ID" | "IL" | "IN" | "IA" | "KS" | "KY" | "LA" | "ME" | "MD" | "MA" | "MI" | "MN" | "MS" | "MO" | "MT" | "NE" | "NV" | "NH" | "NJ" | "NM" | "NY" | "NC" | "ND" | "OH" | "OK" | "OR" | "PA" | "RI" | "SC" | "SD" | "TN" | "TX" | "UT" | "VT" | "VA" | "WA" | "WV" | "WI" | "WY" | "DC" | "AS" | "GU" | "MP" | "PR" | "VI";
157
+ postalCode: string;
158
+ apartmentRoomSuiteNumber?: string | undefined;
159
+ nameOfCounty?: string | undefined;
160
+ countyFIPSCode?: string | undefined;
161
+ latitude?: string | undefined;
162
+ longitude?: string | undefined;
163
+ }[] | undefined;
164
+ telephones?: {
165
+ telephoneNumber: string;
166
+ institutionTelephoneNumberTypeDescriptor: "Main" | "Administrative" | "Fax" | "Attendance";
167
+ }[] | undefined;
168
+ stateEducationAgencyId?: string | undefined;
169
+ shortNameOfInstitution?: string | undefined;
170
+ webSite?: string | undefined;
171
+ operationalStatusDescriptor?: "Active" | "Added" | "ChangedAgency" | "Closed" | "Inactive" | "New" | "Reopened" | "Future" | undefined;
172
+ }>;
173
+ export type CreateEducationServiceCenterDto = z.infer<typeof createEducationServiceCenterSchema>;
174
+ export declare const updateEducationServiceCenterSchema: z.ZodObject<Omit<{
175
+ educationServiceCenterId: z.ZodOptional<z.ZodNumber>;
176
+ nameOfInstitution: z.ZodOptional<z.ZodString>;
177
+ shortNameOfInstitution: z.ZodOptional<z.ZodOptional<z.ZodString>>;
178
+ webSite: z.ZodOptional<z.ZodOptional<z.ZodString>>;
179
+ operationalStatusDescriptor: z.ZodOptional<z.ZodDefault<z.ZodEnum<["Active", "Added", "ChangedAgency", "Closed", "Inactive", "New", "Reopened", "Future"]>>>;
180
+ stateEducationAgencyId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
181
+ categories: z.ZodOptional<z.ZodArray<z.ZodObject<{
182
+ educationOrganizationCategoryDescriptor: z.ZodString;
183
+ }, "strip", z.ZodTypeAny, {
184
+ educationOrganizationCategoryDescriptor: string;
185
+ }, {
186
+ educationOrganizationCategoryDescriptor: string;
187
+ }>, "many">>;
188
+ addresses: z.ZodOptional<z.ZodOptional<z.ZodArray<z.ZodObject<{
189
+ addressTypeDescriptor: z.ZodEnum<["Physical", "Mailing", "Shipping"]>;
190
+ streetNumberName: z.ZodString;
191
+ apartmentRoomSuiteNumber: z.ZodOptional<z.ZodString>;
192
+ city: z.ZodString;
193
+ stateAbbreviationDescriptor: z.ZodEnum<["AL", "AK", "AZ", "AR", "CA", "CO", "CT", "DE", "FL", "GA", "HI", "ID", "IL", "IN", "IA", "KS", "KY", "LA", "ME", "MD", "MA", "MI", "MN", "MS", "MO", "MT", "NE", "NV", "NH", "NJ", "NM", "NY", "NC", "ND", "OH", "OK", "OR", "PA", "RI", "SC", "SD", "TN", "TX", "UT", "VT", "VA", "WA", "WV", "WI", "WY", "DC", "AS", "GU", "MP", "PR", "VI"]>;
194
+ postalCode: z.ZodString;
195
+ nameOfCounty: z.ZodOptional<z.ZodString>;
196
+ countyFIPSCode: z.ZodOptional<z.ZodString>;
197
+ latitude: z.ZodOptional<z.ZodString>;
198
+ longitude: z.ZodOptional<z.ZodString>;
199
+ }, "strip", z.ZodTypeAny, {
200
+ city: string;
201
+ addressTypeDescriptor: "Physical" | "Mailing" | "Shipping";
202
+ streetNumberName: string;
203
+ stateAbbreviationDescriptor: "AL" | "AK" | "AZ" | "AR" | "CA" | "CO" | "CT" | "DE" | "FL" | "GA" | "HI" | "ID" | "IL" | "IN" | "IA" | "KS" | "KY" | "LA" | "ME" | "MD" | "MA" | "MI" | "MN" | "MS" | "MO" | "MT" | "NE" | "NV" | "NH" | "NJ" | "NM" | "NY" | "NC" | "ND" | "OH" | "OK" | "OR" | "PA" | "RI" | "SC" | "SD" | "TN" | "TX" | "UT" | "VT" | "VA" | "WA" | "WV" | "WI" | "WY" | "DC" | "AS" | "GU" | "MP" | "PR" | "VI";
204
+ postalCode: string;
205
+ apartmentRoomSuiteNumber?: string | undefined;
206
+ nameOfCounty?: string | undefined;
207
+ countyFIPSCode?: string | undefined;
208
+ latitude?: string | undefined;
209
+ longitude?: string | undefined;
210
+ }, {
211
+ city: string;
212
+ addressTypeDescriptor: "Physical" | "Mailing" | "Shipping";
213
+ streetNumberName: string;
214
+ stateAbbreviationDescriptor: "AL" | "AK" | "AZ" | "AR" | "CA" | "CO" | "CT" | "DE" | "FL" | "GA" | "HI" | "ID" | "IL" | "IN" | "IA" | "KS" | "KY" | "LA" | "ME" | "MD" | "MA" | "MI" | "MN" | "MS" | "MO" | "MT" | "NE" | "NV" | "NH" | "NJ" | "NM" | "NY" | "NC" | "ND" | "OH" | "OK" | "OR" | "PA" | "RI" | "SC" | "SD" | "TN" | "TX" | "UT" | "VT" | "VA" | "WA" | "WV" | "WI" | "WY" | "DC" | "AS" | "GU" | "MP" | "PR" | "VI";
215
+ postalCode: string;
216
+ apartmentRoomSuiteNumber?: string | undefined;
217
+ nameOfCounty?: string | undefined;
218
+ countyFIPSCode?: string | undefined;
219
+ latitude?: string | undefined;
220
+ longitude?: string | undefined;
221
+ }>, "many">>>;
222
+ identificationCodes: z.ZodOptional<z.ZodOptional<z.ZodArray<z.ZodObject<{
223
+ identificationCode: z.ZodString;
224
+ educationOrganizationIdentificationSystemDescriptor: z.ZodEnum<["NCES", "SEA", "DUNS", "Federal", "Other"]>;
225
+ }, "strip", z.ZodTypeAny, {
226
+ identificationCode: string;
227
+ educationOrganizationIdentificationSystemDescriptor: "Other" | "NCES" | "SEA" | "DUNS" | "Federal";
228
+ }, {
229
+ identificationCode: string;
230
+ educationOrganizationIdentificationSystemDescriptor: "Other" | "NCES" | "SEA" | "DUNS" | "Federal";
231
+ }>, "many">>>;
232
+ telephones: z.ZodOptional<z.ZodOptional<z.ZodArray<z.ZodObject<{
233
+ telephoneNumber: z.ZodString;
234
+ institutionTelephoneNumberTypeDescriptor: z.ZodEnum<["Main", "Administrative", "Fax", "Attendance"]>;
235
+ }, "strip", z.ZodTypeAny, {
236
+ telephoneNumber: string;
237
+ institutionTelephoneNumberTypeDescriptor: "Main" | "Administrative" | "Fax" | "Attendance";
238
+ }, {
239
+ telephoneNumber: string;
240
+ institutionTelephoneNumberTypeDescriptor: "Main" | "Administrative" | "Fax" | "Attendance";
241
+ }>, "many">>>;
242
+ accountabilityRatings: z.ZodOptional<z.ZodOptional<z.ZodArray<z.ZodObject<{
243
+ schoolYear: z.ZodNumber;
244
+ title: z.ZodString;
245
+ rating: z.ZodString;
246
+ ratingOrganization: z.ZodOptional<z.ZodString>;
247
+ ratingDate: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
248
+ }, "strip", z.ZodTypeAny, {
249
+ schoolYear: number;
250
+ title: string;
251
+ rating: string;
252
+ ratingOrganization?: string | undefined;
253
+ ratingDate?: string | undefined;
254
+ }, {
255
+ schoolYear: number;
256
+ title: string;
257
+ rating: string;
258
+ ratingOrganization?: string | undefined;
259
+ ratingDate?: string | undefined;
260
+ }>, "many">>>;
261
+ }, "educationServiceCenterId">, "strip", z.ZodTypeAny, {
262
+ identificationCodes?: {
263
+ identificationCode: string;
264
+ educationOrganizationIdentificationSystemDescriptor: "Other" | "NCES" | "SEA" | "DUNS" | "Federal";
265
+ }[] | undefined;
266
+ accountabilityRatings?: {
267
+ schoolYear: number;
268
+ title: string;
269
+ rating: string;
270
+ ratingOrganization?: string | undefined;
271
+ ratingDate?: string | undefined;
272
+ }[] | undefined;
273
+ addresses?: {
274
+ city: string;
275
+ addressTypeDescriptor: "Physical" | "Mailing" | "Shipping";
276
+ streetNumberName: string;
277
+ stateAbbreviationDescriptor: "AL" | "AK" | "AZ" | "AR" | "CA" | "CO" | "CT" | "DE" | "FL" | "GA" | "HI" | "ID" | "IL" | "IN" | "IA" | "KS" | "KY" | "LA" | "ME" | "MD" | "MA" | "MI" | "MN" | "MS" | "MO" | "MT" | "NE" | "NV" | "NH" | "NJ" | "NM" | "NY" | "NC" | "ND" | "OH" | "OK" | "OR" | "PA" | "RI" | "SC" | "SD" | "TN" | "TX" | "UT" | "VT" | "VA" | "WA" | "WV" | "WI" | "WY" | "DC" | "AS" | "GU" | "MP" | "PR" | "VI";
278
+ postalCode: string;
279
+ apartmentRoomSuiteNumber?: string | undefined;
280
+ nameOfCounty?: string | undefined;
281
+ countyFIPSCode?: string | undefined;
282
+ latitude?: string | undefined;
283
+ longitude?: string | undefined;
284
+ }[] | undefined;
285
+ telephones?: {
286
+ telephoneNumber: string;
287
+ institutionTelephoneNumberTypeDescriptor: "Main" | "Administrative" | "Fax" | "Attendance";
288
+ }[] | undefined;
289
+ categories?: {
290
+ educationOrganizationCategoryDescriptor: string;
291
+ }[] | undefined;
292
+ stateEducationAgencyId?: string | undefined;
293
+ nameOfInstitution?: string | undefined;
294
+ shortNameOfInstitution?: string | undefined;
295
+ webSite?: string | undefined;
296
+ operationalStatusDescriptor?: "Active" | "Added" | "ChangedAgency" | "Closed" | "Inactive" | "New" | "Reopened" | "Future" | undefined;
297
+ }, {
298
+ identificationCodes?: {
299
+ identificationCode: string;
300
+ educationOrganizationIdentificationSystemDescriptor: "Other" | "NCES" | "SEA" | "DUNS" | "Federal";
301
+ }[] | undefined;
302
+ accountabilityRatings?: {
303
+ schoolYear: number;
304
+ title: string;
305
+ rating: string;
306
+ ratingOrganization?: string | undefined;
307
+ ratingDate?: string | undefined;
308
+ }[] | undefined;
309
+ addresses?: {
310
+ city: string;
311
+ addressTypeDescriptor: "Physical" | "Mailing" | "Shipping";
312
+ streetNumberName: string;
313
+ stateAbbreviationDescriptor: "AL" | "AK" | "AZ" | "AR" | "CA" | "CO" | "CT" | "DE" | "FL" | "GA" | "HI" | "ID" | "IL" | "IN" | "IA" | "KS" | "KY" | "LA" | "ME" | "MD" | "MA" | "MI" | "MN" | "MS" | "MO" | "MT" | "NE" | "NV" | "NH" | "NJ" | "NM" | "NY" | "NC" | "ND" | "OH" | "OK" | "OR" | "PA" | "RI" | "SC" | "SD" | "TN" | "TX" | "UT" | "VT" | "VA" | "WA" | "WV" | "WI" | "WY" | "DC" | "AS" | "GU" | "MP" | "PR" | "VI";
314
+ postalCode: string;
315
+ apartmentRoomSuiteNumber?: string | undefined;
316
+ nameOfCounty?: string | undefined;
317
+ countyFIPSCode?: string | undefined;
318
+ latitude?: string | undefined;
319
+ longitude?: string | undefined;
320
+ }[] | undefined;
321
+ telephones?: {
322
+ telephoneNumber: string;
323
+ institutionTelephoneNumberTypeDescriptor: "Main" | "Administrative" | "Fax" | "Attendance";
324
+ }[] | undefined;
325
+ categories?: {
326
+ educationOrganizationCategoryDescriptor: string;
327
+ }[] | undefined;
328
+ stateEducationAgencyId?: string | undefined;
329
+ nameOfInstitution?: string | undefined;
330
+ shortNameOfInstitution?: string | undefined;
331
+ webSite?: string | undefined;
332
+ operationalStatusDescriptor?: "Active" | "Added" | "ChangedAgency" | "Closed" | "Inactive" | "New" | "Reopened" | "Future" | undefined;
333
+ }>;
334
+ export type UpdateEducationServiceCenterDto = z.infer<typeof updateEducationServiceCenterSchema>;
335
+ export declare const escResponseSchema: z.ZodObject<{
336
+ id: z.ZodString;
337
+ educationServiceCenterId: z.ZodNumber;
338
+ tenantId: z.ZodString;
339
+ nameOfInstitution: z.ZodString;
340
+ shortNameOfInstitution: z.ZodOptional<z.ZodString>;
341
+ webSite: z.ZodOptional<z.ZodString>;
342
+ operationalStatusDescriptor: z.ZodEnum<["Active", "Added", "ChangedAgency", "Closed", "Inactive", "New", "Reopened", "Future"]>;
343
+ stateEducationAgencyId: z.ZodOptional<z.ZodString>;
344
+ categories: z.ZodArray<z.ZodObject<{
345
+ educationOrganizationCategoryDescriptor: z.ZodString;
346
+ }, "strip", z.ZodTypeAny, {
347
+ educationOrganizationCategoryDescriptor: string;
348
+ }, {
349
+ educationOrganizationCategoryDescriptor: string;
350
+ }>, "many">;
351
+ addresses: z.ZodOptional<z.ZodArray<z.ZodObject<{
352
+ addressTypeDescriptor: z.ZodEnum<["Physical", "Mailing", "Shipping"]>;
353
+ streetNumberName: z.ZodString;
354
+ apartmentRoomSuiteNumber: z.ZodOptional<z.ZodString>;
355
+ city: z.ZodString;
356
+ stateAbbreviationDescriptor: z.ZodEnum<["AL", "AK", "AZ", "AR", "CA", "CO", "CT", "DE", "FL", "GA", "HI", "ID", "IL", "IN", "IA", "KS", "KY", "LA", "ME", "MD", "MA", "MI", "MN", "MS", "MO", "MT", "NE", "NV", "NH", "NJ", "NM", "NY", "NC", "ND", "OH", "OK", "OR", "PA", "RI", "SC", "SD", "TN", "TX", "UT", "VT", "VA", "WA", "WV", "WI", "WY", "DC", "AS", "GU", "MP", "PR", "VI"]>;
357
+ postalCode: z.ZodString;
358
+ nameOfCounty: z.ZodOptional<z.ZodString>;
359
+ countyFIPSCode: z.ZodOptional<z.ZodString>;
360
+ latitude: z.ZodOptional<z.ZodString>;
361
+ longitude: z.ZodOptional<z.ZodString>;
362
+ }, "strip", z.ZodTypeAny, {
363
+ city: string;
364
+ addressTypeDescriptor: "Physical" | "Mailing" | "Shipping";
365
+ streetNumberName: string;
366
+ stateAbbreviationDescriptor: "AL" | "AK" | "AZ" | "AR" | "CA" | "CO" | "CT" | "DE" | "FL" | "GA" | "HI" | "ID" | "IL" | "IN" | "IA" | "KS" | "KY" | "LA" | "ME" | "MD" | "MA" | "MI" | "MN" | "MS" | "MO" | "MT" | "NE" | "NV" | "NH" | "NJ" | "NM" | "NY" | "NC" | "ND" | "OH" | "OK" | "OR" | "PA" | "RI" | "SC" | "SD" | "TN" | "TX" | "UT" | "VT" | "VA" | "WA" | "WV" | "WI" | "WY" | "DC" | "AS" | "GU" | "MP" | "PR" | "VI";
367
+ postalCode: string;
368
+ apartmentRoomSuiteNumber?: string | undefined;
369
+ nameOfCounty?: string | undefined;
370
+ countyFIPSCode?: string | undefined;
371
+ latitude?: string | undefined;
372
+ longitude?: string | undefined;
373
+ }, {
374
+ city: string;
375
+ addressTypeDescriptor: "Physical" | "Mailing" | "Shipping";
376
+ streetNumberName: string;
377
+ stateAbbreviationDescriptor: "AL" | "AK" | "AZ" | "AR" | "CA" | "CO" | "CT" | "DE" | "FL" | "GA" | "HI" | "ID" | "IL" | "IN" | "IA" | "KS" | "KY" | "LA" | "ME" | "MD" | "MA" | "MI" | "MN" | "MS" | "MO" | "MT" | "NE" | "NV" | "NH" | "NJ" | "NM" | "NY" | "NC" | "ND" | "OH" | "OK" | "OR" | "PA" | "RI" | "SC" | "SD" | "TN" | "TX" | "UT" | "VT" | "VA" | "WA" | "WV" | "WI" | "WY" | "DC" | "AS" | "GU" | "MP" | "PR" | "VI";
378
+ postalCode: string;
379
+ apartmentRoomSuiteNumber?: string | undefined;
380
+ nameOfCounty?: string | undefined;
381
+ countyFIPSCode?: string | undefined;
382
+ latitude?: string | undefined;
383
+ longitude?: string | undefined;
384
+ }>, "many">>;
385
+ identificationCodes: z.ZodOptional<z.ZodArray<z.ZodObject<{
386
+ identificationCode: z.ZodString;
387
+ educationOrganizationIdentificationSystemDescriptor: z.ZodEnum<["NCES", "SEA", "DUNS", "Federal", "Other"]>;
388
+ }, "strip", z.ZodTypeAny, {
389
+ identificationCode: string;
390
+ educationOrganizationIdentificationSystemDescriptor: "Other" | "NCES" | "SEA" | "DUNS" | "Federal";
391
+ }, {
392
+ identificationCode: string;
393
+ educationOrganizationIdentificationSystemDescriptor: "Other" | "NCES" | "SEA" | "DUNS" | "Federal";
394
+ }>, "many">>;
395
+ telephones: z.ZodOptional<z.ZodArray<z.ZodObject<{
396
+ telephoneNumber: z.ZodString;
397
+ institutionTelephoneNumberTypeDescriptor: z.ZodEnum<["Main", "Administrative", "Fax", "Attendance"]>;
398
+ }, "strip", z.ZodTypeAny, {
399
+ telephoneNumber: string;
400
+ institutionTelephoneNumberTypeDescriptor: "Main" | "Administrative" | "Fax" | "Attendance";
401
+ }, {
402
+ telephoneNumber: string;
403
+ institutionTelephoneNumberTypeDescriptor: "Main" | "Administrative" | "Fax" | "Attendance";
404
+ }>, "many">>;
405
+ accountabilityRatings: z.ZodOptional<z.ZodArray<z.ZodObject<{
406
+ schoolYear: z.ZodNumber;
407
+ title: z.ZodString;
408
+ rating: z.ZodString;
409
+ ratingOrganization: z.ZodOptional<z.ZodString>;
410
+ ratingDate: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
411
+ }, "strip", z.ZodTypeAny, {
412
+ schoolYear: number;
413
+ title: string;
414
+ rating: string;
415
+ ratingOrganization?: string | undefined;
416
+ ratingDate?: string | undefined;
417
+ }, {
418
+ schoolYear: number;
419
+ title: string;
420
+ rating: string;
421
+ ratingOrganization?: string | undefined;
422
+ ratingDate?: string | undefined;
423
+ }>, "many">>;
424
+ createdAt: z.ZodString;
425
+ updatedAt: z.ZodString;
426
+ createdBy: z.ZodString;
427
+ updatedBy: z.ZodString;
428
+ version: z.ZodNumber;
429
+ }, "strip", z.ZodTypeAny, {
430
+ tenantId: string;
431
+ createdAt: string;
432
+ createdBy: string;
433
+ updatedAt: string;
434
+ updatedBy: string;
435
+ version: number;
436
+ categories: {
437
+ educationOrganizationCategoryDescriptor: string;
438
+ }[];
439
+ nameOfInstitution: string;
440
+ operationalStatusDescriptor: "Active" | "Added" | "ChangedAgency" | "Closed" | "Inactive" | "New" | "Reopened" | "Future";
441
+ id: string;
442
+ educationServiceCenterId: number;
443
+ identificationCodes?: {
444
+ identificationCode: string;
445
+ educationOrganizationIdentificationSystemDescriptor: "Other" | "NCES" | "SEA" | "DUNS" | "Federal";
446
+ }[] | undefined;
447
+ accountabilityRatings?: {
448
+ schoolYear: number;
449
+ title: string;
450
+ rating: string;
451
+ ratingOrganization?: string | undefined;
452
+ ratingDate?: string | undefined;
453
+ }[] | undefined;
454
+ addresses?: {
455
+ city: string;
456
+ addressTypeDescriptor: "Physical" | "Mailing" | "Shipping";
457
+ streetNumberName: string;
458
+ stateAbbreviationDescriptor: "AL" | "AK" | "AZ" | "AR" | "CA" | "CO" | "CT" | "DE" | "FL" | "GA" | "HI" | "ID" | "IL" | "IN" | "IA" | "KS" | "KY" | "LA" | "ME" | "MD" | "MA" | "MI" | "MN" | "MS" | "MO" | "MT" | "NE" | "NV" | "NH" | "NJ" | "NM" | "NY" | "NC" | "ND" | "OH" | "OK" | "OR" | "PA" | "RI" | "SC" | "SD" | "TN" | "TX" | "UT" | "VT" | "VA" | "WA" | "WV" | "WI" | "WY" | "DC" | "AS" | "GU" | "MP" | "PR" | "VI";
459
+ postalCode: string;
460
+ apartmentRoomSuiteNumber?: string | undefined;
461
+ nameOfCounty?: string | undefined;
462
+ countyFIPSCode?: string | undefined;
463
+ latitude?: string | undefined;
464
+ longitude?: string | undefined;
465
+ }[] | undefined;
466
+ telephones?: {
467
+ telephoneNumber: string;
468
+ institutionTelephoneNumberTypeDescriptor: "Main" | "Administrative" | "Fax" | "Attendance";
469
+ }[] | undefined;
470
+ stateEducationAgencyId?: string | undefined;
471
+ shortNameOfInstitution?: string | undefined;
472
+ webSite?: string | undefined;
473
+ }, {
474
+ tenantId: string;
475
+ createdAt: string;
476
+ createdBy: string;
477
+ updatedAt: string;
478
+ updatedBy: string;
479
+ version: number;
480
+ categories: {
481
+ educationOrganizationCategoryDescriptor: string;
482
+ }[];
483
+ nameOfInstitution: string;
484
+ operationalStatusDescriptor: "Active" | "Added" | "ChangedAgency" | "Closed" | "Inactive" | "New" | "Reopened" | "Future";
485
+ id: string;
486
+ educationServiceCenterId: number;
487
+ identificationCodes?: {
488
+ identificationCode: string;
489
+ educationOrganizationIdentificationSystemDescriptor: "Other" | "NCES" | "SEA" | "DUNS" | "Federal";
490
+ }[] | undefined;
491
+ accountabilityRatings?: {
492
+ schoolYear: number;
493
+ title: string;
494
+ rating: string;
495
+ ratingOrganization?: string | undefined;
496
+ ratingDate?: string | undefined;
497
+ }[] | undefined;
498
+ addresses?: {
499
+ city: string;
500
+ addressTypeDescriptor: "Physical" | "Mailing" | "Shipping";
501
+ streetNumberName: string;
502
+ stateAbbreviationDescriptor: "AL" | "AK" | "AZ" | "AR" | "CA" | "CO" | "CT" | "DE" | "FL" | "GA" | "HI" | "ID" | "IL" | "IN" | "IA" | "KS" | "KY" | "LA" | "ME" | "MD" | "MA" | "MI" | "MN" | "MS" | "MO" | "MT" | "NE" | "NV" | "NH" | "NJ" | "NM" | "NY" | "NC" | "ND" | "OH" | "OK" | "OR" | "PA" | "RI" | "SC" | "SD" | "TN" | "TX" | "UT" | "VT" | "VA" | "WA" | "WV" | "WI" | "WY" | "DC" | "AS" | "GU" | "MP" | "PR" | "VI";
503
+ postalCode: string;
504
+ apartmentRoomSuiteNumber?: string | undefined;
505
+ nameOfCounty?: string | undefined;
506
+ countyFIPSCode?: string | undefined;
507
+ latitude?: string | undefined;
508
+ longitude?: string | undefined;
509
+ }[] | undefined;
510
+ telephones?: {
511
+ telephoneNumber: string;
512
+ institutionTelephoneNumberTypeDescriptor: "Main" | "Administrative" | "Fax" | "Attendance";
513
+ }[] | undefined;
514
+ stateEducationAgencyId?: string | undefined;
515
+ shortNameOfInstitution?: string | undefined;
516
+ webSite?: string | undefined;
517
+ }>;
518
+ export type EscResponseDto = z.infer<typeof escResponseSchema>;
519
+ export declare const escListResponseSchema: z.ZodObject<{
520
+ items: z.ZodArray<z.ZodObject<{
521
+ id: z.ZodString;
522
+ educationServiceCenterId: z.ZodNumber;
523
+ tenantId: z.ZodString;
524
+ nameOfInstitution: z.ZodString;
525
+ shortNameOfInstitution: z.ZodOptional<z.ZodString>;
526
+ webSite: z.ZodOptional<z.ZodString>;
527
+ operationalStatusDescriptor: z.ZodEnum<["Active", "Added", "ChangedAgency", "Closed", "Inactive", "New", "Reopened", "Future"]>;
528
+ stateEducationAgencyId: z.ZodOptional<z.ZodString>;
529
+ categories: z.ZodArray<z.ZodObject<{
530
+ educationOrganizationCategoryDescriptor: z.ZodString;
531
+ }, "strip", z.ZodTypeAny, {
532
+ educationOrganizationCategoryDescriptor: string;
533
+ }, {
534
+ educationOrganizationCategoryDescriptor: string;
535
+ }>, "many">;
536
+ addresses: z.ZodOptional<z.ZodArray<z.ZodObject<{
537
+ addressTypeDescriptor: z.ZodEnum<["Physical", "Mailing", "Shipping"]>;
538
+ streetNumberName: z.ZodString;
539
+ apartmentRoomSuiteNumber: z.ZodOptional<z.ZodString>;
540
+ city: z.ZodString;
541
+ stateAbbreviationDescriptor: z.ZodEnum<["AL", "AK", "AZ", "AR", "CA", "CO", "CT", "DE", "FL", "GA", "HI", "ID", "IL", "IN", "IA", "KS", "KY", "LA", "ME", "MD", "MA", "MI", "MN", "MS", "MO", "MT", "NE", "NV", "NH", "NJ", "NM", "NY", "NC", "ND", "OH", "OK", "OR", "PA", "RI", "SC", "SD", "TN", "TX", "UT", "VT", "VA", "WA", "WV", "WI", "WY", "DC", "AS", "GU", "MP", "PR", "VI"]>;
542
+ postalCode: z.ZodString;
543
+ nameOfCounty: z.ZodOptional<z.ZodString>;
544
+ countyFIPSCode: z.ZodOptional<z.ZodString>;
545
+ latitude: z.ZodOptional<z.ZodString>;
546
+ longitude: z.ZodOptional<z.ZodString>;
547
+ }, "strip", z.ZodTypeAny, {
548
+ city: string;
549
+ addressTypeDescriptor: "Physical" | "Mailing" | "Shipping";
550
+ streetNumberName: string;
551
+ stateAbbreviationDescriptor: "AL" | "AK" | "AZ" | "AR" | "CA" | "CO" | "CT" | "DE" | "FL" | "GA" | "HI" | "ID" | "IL" | "IN" | "IA" | "KS" | "KY" | "LA" | "ME" | "MD" | "MA" | "MI" | "MN" | "MS" | "MO" | "MT" | "NE" | "NV" | "NH" | "NJ" | "NM" | "NY" | "NC" | "ND" | "OH" | "OK" | "OR" | "PA" | "RI" | "SC" | "SD" | "TN" | "TX" | "UT" | "VT" | "VA" | "WA" | "WV" | "WI" | "WY" | "DC" | "AS" | "GU" | "MP" | "PR" | "VI";
552
+ postalCode: string;
553
+ apartmentRoomSuiteNumber?: string | undefined;
554
+ nameOfCounty?: string | undefined;
555
+ countyFIPSCode?: string | undefined;
556
+ latitude?: string | undefined;
557
+ longitude?: string | undefined;
558
+ }, {
559
+ city: string;
560
+ addressTypeDescriptor: "Physical" | "Mailing" | "Shipping";
561
+ streetNumberName: string;
562
+ stateAbbreviationDescriptor: "AL" | "AK" | "AZ" | "AR" | "CA" | "CO" | "CT" | "DE" | "FL" | "GA" | "HI" | "ID" | "IL" | "IN" | "IA" | "KS" | "KY" | "LA" | "ME" | "MD" | "MA" | "MI" | "MN" | "MS" | "MO" | "MT" | "NE" | "NV" | "NH" | "NJ" | "NM" | "NY" | "NC" | "ND" | "OH" | "OK" | "OR" | "PA" | "RI" | "SC" | "SD" | "TN" | "TX" | "UT" | "VT" | "VA" | "WA" | "WV" | "WI" | "WY" | "DC" | "AS" | "GU" | "MP" | "PR" | "VI";
563
+ postalCode: string;
564
+ apartmentRoomSuiteNumber?: string | undefined;
565
+ nameOfCounty?: string | undefined;
566
+ countyFIPSCode?: string | undefined;
567
+ latitude?: string | undefined;
568
+ longitude?: string | undefined;
569
+ }>, "many">>;
570
+ identificationCodes: z.ZodOptional<z.ZodArray<z.ZodObject<{
571
+ identificationCode: z.ZodString;
572
+ educationOrganizationIdentificationSystemDescriptor: z.ZodEnum<["NCES", "SEA", "DUNS", "Federal", "Other"]>;
573
+ }, "strip", z.ZodTypeAny, {
574
+ identificationCode: string;
575
+ educationOrganizationIdentificationSystemDescriptor: "Other" | "NCES" | "SEA" | "DUNS" | "Federal";
576
+ }, {
577
+ identificationCode: string;
578
+ educationOrganizationIdentificationSystemDescriptor: "Other" | "NCES" | "SEA" | "DUNS" | "Federal";
579
+ }>, "many">>;
580
+ telephones: z.ZodOptional<z.ZodArray<z.ZodObject<{
581
+ telephoneNumber: z.ZodString;
582
+ institutionTelephoneNumberTypeDescriptor: z.ZodEnum<["Main", "Administrative", "Fax", "Attendance"]>;
583
+ }, "strip", z.ZodTypeAny, {
584
+ telephoneNumber: string;
585
+ institutionTelephoneNumberTypeDescriptor: "Main" | "Administrative" | "Fax" | "Attendance";
586
+ }, {
587
+ telephoneNumber: string;
588
+ institutionTelephoneNumberTypeDescriptor: "Main" | "Administrative" | "Fax" | "Attendance";
589
+ }>, "many">>;
590
+ accountabilityRatings: z.ZodOptional<z.ZodArray<z.ZodObject<{
591
+ schoolYear: z.ZodNumber;
592
+ title: z.ZodString;
593
+ rating: z.ZodString;
594
+ ratingOrganization: z.ZodOptional<z.ZodString>;
595
+ ratingDate: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
596
+ }, "strip", z.ZodTypeAny, {
597
+ schoolYear: number;
598
+ title: string;
599
+ rating: string;
600
+ ratingOrganization?: string | undefined;
601
+ ratingDate?: string | undefined;
602
+ }, {
603
+ schoolYear: number;
604
+ title: string;
605
+ rating: string;
606
+ ratingOrganization?: string | undefined;
607
+ ratingDate?: string | undefined;
608
+ }>, "many">>;
609
+ createdAt: z.ZodString;
610
+ updatedAt: z.ZodString;
611
+ createdBy: z.ZodString;
612
+ updatedBy: z.ZodString;
613
+ version: z.ZodNumber;
614
+ }, "strip", z.ZodTypeAny, {
615
+ tenantId: string;
616
+ createdAt: string;
617
+ createdBy: string;
618
+ updatedAt: string;
619
+ updatedBy: string;
620
+ version: number;
621
+ categories: {
622
+ educationOrganizationCategoryDescriptor: string;
623
+ }[];
624
+ nameOfInstitution: string;
625
+ operationalStatusDescriptor: "Active" | "Added" | "ChangedAgency" | "Closed" | "Inactive" | "New" | "Reopened" | "Future";
626
+ id: string;
627
+ educationServiceCenterId: number;
628
+ identificationCodes?: {
629
+ identificationCode: string;
630
+ educationOrganizationIdentificationSystemDescriptor: "Other" | "NCES" | "SEA" | "DUNS" | "Federal";
631
+ }[] | undefined;
632
+ accountabilityRatings?: {
633
+ schoolYear: number;
634
+ title: string;
635
+ rating: string;
636
+ ratingOrganization?: string | undefined;
637
+ ratingDate?: string | undefined;
638
+ }[] | undefined;
639
+ addresses?: {
640
+ city: string;
641
+ addressTypeDescriptor: "Physical" | "Mailing" | "Shipping";
642
+ streetNumberName: string;
643
+ stateAbbreviationDescriptor: "AL" | "AK" | "AZ" | "AR" | "CA" | "CO" | "CT" | "DE" | "FL" | "GA" | "HI" | "ID" | "IL" | "IN" | "IA" | "KS" | "KY" | "LA" | "ME" | "MD" | "MA" | "MI" | "MN" | "MS" | "MO" | "MT" | "NE" | "NV" | "NH" | "NJ" | "NM" | "NY" | "NC" | "ND" | "OH" | "OK" | "OR" | "PA" | "RI" | "SC" | "SD" | "TN" | "TX" | "UT" | "VT" | "VA" | "WA" | "WV" | "WI" | "WY" | "DC" | "AS" | "GU" | "MP" | "PR" | "VI";
644
+ postalCode: string;
645
+ apartmentRoomSuiteNumber?: string | undefined;
646
+ nameOfCounty?: string | undefined;
647
+ countyFIPSCode?: string | undefined;
648
+ latitude?: string | undefined;
649
+ longitude?: string | undefined;
650
+ }[] | undefined;
651
+ telephones?: {
652
+ telephoneNumber: string;
653
+ institutionTelephoneNumberTypeDescriptor: "Main" | "Administrative" | "Fax" | "Attendance";
654
+ }[] | undefined;
655
+ stateEducationAgencyId?: string | undefined;
656
+ shortNameOfInstitution?: string | undefined;
657
+ webSite?: string | undefined;
658
+ }, {
659
+ tenantId: string;
660
+ createdAt: string;
661
+ createdBy: string;
662
+ updatedAt: string;
663
+ updatedBy: string;
664
+ version: number;
665
+ categories: {
666
+ educationOrganizationCategoryDescriptor: string;
667
+ }[];
668
+ nameOfInstitution: string;
669
+ operationalStatusDescriptor: "Active" | "Added" | "ChangedAgency" | "Closed" | "Inactive" | "New" | "Reopened" | "Future";
670
+ id: string;
671
+ educationServiceCenterId: number;
672
+ identificationCodes?: {
673
+ identificationCode: string;
674
+ educationOrganizationIdentificationSystemDescriptor: "Other" | "NCES" | "SEA" | "DUNS" | "Federal";
675
+ }[] | undefined;
676
+ accountabilityRatings?: {
677
+ schoolYear: number;
678
+ title: string;
679
+ rating: string;
680
+ ratingOrganization?: string | undefined;
681
+ ratingDate?: string | undefined;
682
+ }[] | undefined;
683
+ addresses?: {
684
+ city: string;
685
+ addressTypeDescriptor: "Physical" | "Mailing" | "Shipping";
686
+ streetNumberName: string;
687
+ stateAbbreviationDescriptor: "AL" | "AK" | "AZ" | "AR" | "CA" | "CO" | "CT" | "DE" | "FL" | "GA" | "HI" | "ID" | "IL" | "IN" | "IA" | "KS" | "KY" | "LA" | "ME" | "MD" | "MA" | "MI" | "MN" | "MS" | "MO" | "MT" | "NE" | "NV" | "NH" | "NJ" | "NM" | "NY" | "NC" | "ND" | "OH" | "OK" | "OR" | "PA" | "RI" | "SC" | "SD" | "TN" | "TX" | "UT" | "VT" | "VA" | "WA" | "WV" | "WI" | "WY" | "DC" | "AS" | "GU" | "MP" | "PR" | "VI";
688
+ postalCode: string;
689
+ apartmentRoomSuiteNumber?: string | undefined;
690
+ nameOfCounty?: string | undefined;
691
+ countyFIPSCode?: string | undefined;
692
+ latitude?: string | undefined;
693
+ longitude?: string | undefined;
694
+ }[] | undefined;
695
+ telephones?: {
696
+ telephoneNumber: string;
697
+ institutionTelephoneNumberTypeDescriptor: "Main" | "Administrative" | "Fax" | "Attendance";
698
+ }[] | undefined;
699
+ stateEducationAgencyId?: string | undefined;
700
+ shortNameOfInstitution?: string | undefined;
701
+ webSite?: string | undefined;
702
+ }>, "many">;
703
+ lastEvaluatedKey: z.ZodOptional<z.ZodString>;
704
+ hasMore: z.ZodBoolean;
705
+ total: z.ZodOptional<z.ZodNumber>;
706
+ }, "strip", z.ZodTypeAny, {
707
+ items: {
708
+ tenantId: string;
709
+ createdAt: string;
710
+ createdBy: string;
711
+ updatedAt: string;
712
+ updatedBy: string;
713
+ version: number;
714
+ categories: {
715
+ educationOrganizationCategoryDescriptor: string;
716
+ }[];
717
+ nameOfInstitution: string;
718
+ operationalStatusDescriptor: "Active" | "Added" | "ChangedAgency" | "Closed" | "Inactive" | "New" | "Reopened" | "Future";
719
+ id: string;
720
+ educationServiceCenterId: number;
721
+ identificationCodes?: {
722
+ identificationCode: string;
723
+ educationOrganizationIdentificationSystemDescriptor: "Other" | "NCES" | "SEA" | "DUNS" | "Federal";
724
+ }[] | undefined;
725
+ accountabilityRatings?: {
726
+ schoolYear: number;
727
+ title: string;
728
+ rating: string;
729
+ ratingOrganization?: string | undefined;
730
+ ratingDate?: string | undefined;
731
+ }[] | undefined;
732
+ addresses?: {
733
+ city: string;
734
+ addressTypeDescriptor: "Physical" | "Mailing" | "Shipping";
735
+ streetNumberName: string;
736
+ stateAbbreviationDescriptor: "AL" | "AK" | "AZ" | "AR" | "CA" | "CO" | "CT" | "DE" | "FL" | "GA" | "HI" | "ID" | "IL" | "IN" | "IA" | "KS" | "KY" | "LA" | "ME" | "MD" | "MA" | "MI" | "MN" | "MS" | "MO" | "MT" | "NE" | "NV" | "NH" | "NJ" | "NM" | "NY" | "NC" | "ND" | "OH" | "OK" | "OR" | "PA" | "RI" | "SC" | "SD" | "TN" | "TX" | "UT" | "VT" | "VA" | "WA" | "WV" | "WI" | "WY" | "DC" | "AS" | "GU" | "MP" | "PR" | "VI";
737
+ postalCode: string;
738
+ apartmentRoomSuiteNumber?: string | undefined;
739
+ nameOfCounty?: string | undefined;
740
+ countyFIPSCode?: string | undefined;
741
+ latitude?: string | undefined;
742
+ longitude?: string | undefined;
743
+ }[] | undefined;
744
+ telephones?: {
745
+ telephoneNumber: string;
746
+ institutionTelephoneNumberTypeDescriptor: "Main" | "Administrative" | "Fax" | "Attendance";
747
+ }[] | undefined;
748
+ stateEducationAgencyId?: string | undefined;
749
+ shortNameOfInstitution?: string | undefined;
750
+ webSite?: string | undefined;
751
+ }[];
752
+ hasMore: boolean;
753
+ lastEvaluatedKey?: string | undefined;
754
+ total?: number | undefined;
755
+ }, {
756
+ items: {
757
+ tenantId: string;
758
+ createdAt: string;
759
+ createdBy: string;
760
+ updatedAt: string;
761
+ updatedBy: string;
762
+ version: number;
763
+ categories: {
764
+ educationOrganizationCategoryDescriptor: string;
765
+ }[];
766
+ nameOfInstitution: string;
767
+ operationalStatusDescriptor: "Active" | "Added" | "ChangedAgency" | "Closed" | "Inactive" | "New" | "Reopened" | "Future";
768
+ id: string;
769
+ educationServiceCenterId: number;
770
+ identificationCodes?: {
771
+ identificationCode: string;
772
+ educationOrganizationIdentificationSystemDescriptor: "Other" | "NCES" | "SEA" | "DUNS" | "Federal";
773
+ }[] | undefined;
774
+ accountabilityRatings?: {
775
+ schoolYear: number;
776
+ title: string;
777
+ rating: string;
778
+ ratingOrganization?: string | undefined;
779
+ ratingDate?: string | undefined;
780
+ }[] | undefined;
781
+ addresses?: {
782
+ city: string;
783
+ addressTypeDescriptor: "Physical" | "Mailing" | "Shipping";
784
+ streetNumberName: string;
785
+ stateAbbreviationDescriptor: "AL" | "AK" | "AZ" | "AR" | "CA" | "CO" | "CT" | "DE" | "FL" | "GA" | "HI" | "ID" | "IL" | "IN" | "IA" | "KS" | "KY" | "LA" | "ME" | "MD" | "MA" | "MI" | "MN" | "MS" | "MO" | "MT" | "NE" | "NV" | "NH" | "NJ" | "NM" | "NY" | "NC" | "ND" | "OH" | "OK" | "OR" | "PA" | "RI" | "SC" | "SD" | "TN" | "TX" | "UT" | "VT" | "VA" | "WA" | "WV" | "WI" | "WY" | "DC" | "AS" | "GU" | "MP" | "PR" | "VI";
786
+ postalCode: string;
787
+ apartmentRoomSuiteNumber?: string | undefined;
788
+ nameOfCounty?: string | undefined;
789
+ countyFIPSCode?: string | undefined;
790
+ latitude?: string | undefined;
791
+ longitude?: string | undefined;
792
+ }[] | undefined;
793
+ telephones?: {
794
+ telephoneNumber: string;
795
+ institutionTelephoneNumberTypeDescriptor: "Main" | "Administrative" | "Fax" | "Attendance";
796
+ }[] | undefined;
797
+ stateEducationAgencyId?: string | undefined;
798
+ shortNameOfInstitution?: string | undefined;
799
+ webSite?: string | undefined;
800
+ }[];
801
+ hasMore: boolean;
802
+ lastEvaluatedKey?: string | undefined;
803
+ total?: number | undefined;
804
+ }>;
805
+ export type EscListResponseDto = z.infer<typeof escListResponseSchema>;
806
+ export declare const escFilterSchema: z.ZodObject<{
807
+ seaId: z.ZodOptional<z.ZodString>;
808
+ operationalStatus: z.ZodOptional<z.ZodEnum<["Active", "Added", "ChangedAgency", "Closed", "Inactive", "New", "Reopened", "Future"]>>;
809
+ search: z.ZodOptional<z.ZodString>;
810
+ limit: z.ZodDefault<z.ZodNumber>;
811
+ cursor: z.ZodOptional<z.ZodString>;
812
+ }, "strip", z.ZodTypeAny, {
813
+ limit: number;
814
+ cursor?: string | undefined;
815
+ search?: string | undefined;
816
+ seaId?: string | undefined;
817
+ operationalStatus?: "Active" | "Added" | "ChangedAgency" | "Closed" | "Inactive" | "New" | "Reopened" | "Future" | undefined;
818
+ }, {
819
+ limit?: number | undefined;
820
+ cursor?: string | undefined;
821
+ search?: string | undefined;
822
+ seaId?: string | undefined;
823
+ operationalStatus?: "Active" | "Added" | "ChangedAgency" | "Closed" | "Inactive" | "New" | "Reopened" | "Future" | undefined;
824
+ }>;
825
+ export type EscFilterDto = z.infer<typeof escFilterSchema>;
826
+ //# sourceMappingURL=education-service-center.schema.d.ts.map