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;
|
prevCursor?: string | null;
|
||||||
/**
|
/**
|
||||||
* Total
|
* Total
|
||||||
* @description Optional total count
|
* @description Total count
|
||||||
|
* @default 0
|
||||||
*/
|
*/
|
||||||
total?: number | null;
|
total: number;
|
||||||
};
|
};
|
||||||
/** Page[Recipe] */
|
/** Page[Recipe] */
|
||||||
Page_Recipe_: {
|
Page_Recipe_: {
|
||||||
|
|
@ -520,9 +521,10 @@ export interface components {
|
||||||
prevCursor?: string | null;
|
prevCursor?: string | null;
|
||||||
/**
|
/**
|
||||||
* Total
|
* Total
|
||||||
* @description Optional total count
|
* @description Total count
|
||||||
|
* @default 0
|
||||||
*/
|
*/
|
||||||
total?: number | null;
|
total: number;
|
||||||
};
|
};
|
||||||
/** Person */
|
/** Person */
|
||||||
Person: {
|
Person: {
|
||||||
|
|
@ -575,8 +577,6 @@ export interface components {
|
||||||
imgSmall: string;
|
imgSmall: string;
|
||||||
/** Imglarge */
|
/** Imglarge */
|
||||||
imgLarge: string;
|
imgLarge: string;
|
||||||
/** Rawdata */
|
|
||||||
rawData?: Record<string, never> | null;
|
|
||||||
};
|
};
|
||||||
/** ProductUrl */
|
/** ProductUrl */
|
||||||
ProductUrl: {
|
ProductUrl: {
|
||||||
|
|
@ -626,7 +626,7 @@ export interface components {
|
||||||
*/
|
*/
|
||||||
dateCreated?: string;
|
dateCreated?: string;
|
||||||
/** Createdbyid */
|
/** Createdbyid */
|
||||||
createdById: number | null;
|
createdById: number;
|
||||||
createdBy?: components["schemas"]["Person"] | null;
|
createdBy?: components["schemas"]["Person"] | null;
|
||||||
/** Datehidden */
|
/** Datehidden */
|
||||||
dateHidden?: string | null;
|
dateHidden?: string | null;
|
||||||
|
|
@ -659,7 +659,7 @@ export interface components {
|
||||||
*/
|
*/
|
||||||
dateCreated?: string;
|
dateCreated?: string;
|
||||||
/** Createdbyid */
|
/** Createdbyid */
|
||||||
createdById: number | null;
|
createdById: number;
|
||||||
createdBy?: components["schemas"]["Person"] | null;
|
createdBy?: components["schemas"]["Person"] | null;
|
||||||
/** Datehidden */
|
/** Datehidden */
|
||||||
dateHidden?: string | null;
|
dateHidden?: string | null;
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue