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