From 6e5d4d20b84d526402c010ad3de7be29034c041b Mon Sep 17 00:00:00 2001 From: jableader Date: Tue, 21 Oct 2025 19:40:12 +1100 Subject: [PATCH] Ran codegen --- src/api/types.ts | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/src/api/types.ts b/src/api/types.ts index 9f4eb31..b49e475 100644 --- a/src/api/types.ts +++ b/src/api/types.ts @@ -506,9 +506,10 @@ export interface components { prevCursor?: string | null; /** * Total - * @description Optional total count + * @description Total count + * @default 0 */ - total?: number | null; + total: number; }; /** Page[Recipe] */ Page_Recipe_: { @@ -520,9 +521,10 @@ export interface components { prevCursor?: string | null; /** * Total - * @description Optional total count + * @description Total count + * @default 0 */ - total?: number | null; + total: number; }; /** Person */ Person: { @@ -575,8 +577,6 @@ export interface components { imgSmall: string; /** Imglarge */ imgLarge: string; - /** Rawdata */ - rawData?: Record | null; }; /** ProductUrl */ ProductUrl: { @@ -626,7 +626,7 @@ export interface components { */ dateCreated?: string; /** Createdbyid */ - createdById: number | null; + createdById: number; createdBy?: components["schemas"]["Person"] | null; /** Datehidden */ dateHidden?: string | null; @@ -659,7 +659,7 @@ export interface components { */ dateCreated?: string; /** Createdbyid */ - createdById: number | null; + createdById: number; createdBy?: components["schemas"]["Person"] | null; /** Datehidden */ dateHidden?: string | null;