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;