pruning #3

Merged
jacob merged 11 commits from pruning into master 2025-10-25 02:18:30 +00:00
Showing only changes of commit 6e5d4d20b8 - Show all commits

View file

@ -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<string, never> | 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;