diff --git a/frontend/src/client/schemas.gen.ts b/frontend/src/client/schemas.gen.ts index d1284b1..45327a4 100644 --- a/frontend/src/client/schemas.gen.ts +++ b/frontend/src/client/schemas.gen.ts @@ -2427,6 +2427,16 @@ export const GuestReadSchema = { type: "string", title: "Invitation Code", }, + rsvp: { + anyOf: [ + { + $ref: "#/components/schemas/RSVPSchema", + }, + { + type: "null", + }, + ], + }, }, type: "object", required: [ diff --git a/frontend/src/client/types.gen.ts b/frontend/src/client/types.gen.ts index 7831721..3c5bbd0 100644 --- a/frontend/src/client/types.gen.ts +++ b/frontend/src/client/types.gen.ts @@ -370,6 +370,7 @@ export type GuestRead = { actual_additional_guests: number; is_blocked: boolean; invitation_code: string; + rsvp?: RsvpSchema | null; }; export type GuestStatus =