diff --git a/src/lib/io.ts b/src/lib/io.ts index d071ce4..922d864 100644 --- a/src/lib/io.ts +++ b/src/lib/io.ts @@ -34,8 +34,8 @@ export const QueryFormResponse = z.object({ street_address: z.string().nullable(), unit: z.string(), city: z.string(), - state: z.string(), - zip_code: z.string(), + state: z.string().nullable(), + zip_code: z.string().nullable(), name: z.string(), phone_number: z.string().nullable(), primary_email_address: z.string().nullable(), @@ -43,7 +43,7 @@ export const QueryFormResponse = z.object({ additional_email_addresses: z.array(z.string()).nullable(), notes: z.string(), network_number: z.number().nullable(), - network_number_status: z.string(), + network_number_status: z.string().nullable(), status: z.string(), }), ),