Skip to content

Commit

Permalink
Add option to query by member name to query form
Browse files Browse the repository at this point in the history
  • Loading branch information
WillNilges committed Dec 10, 2024
1 parent ea8dd74 commit 7af2aaf
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/lib/io.ts
Original file line number Diff line number Diff line change
Expand Up @@ -34,16 +34,16 @@ 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(),
stripe_email_address: z.string().nullable(),
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(),
}),
),
Expand Down

0 comments on commit 7af2aaf

Please sign in to comment.