Ran codegen
This commit is contained in:
parent
6472e507c7
commit
6e5d4d20b8
1 changed files with 8 additions and 8 deletions
|
|
@ -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;
|
||||
|
|
|
|||
Loading…
Reference in a new issue