diff --git a/client/src/schema/schema.ts b/client/src/schema/schema.ts index a30215a17788..b2174e45a674 100644 --- a/client/src/schema/schema.ts +++ b/client/src/schema/schema.ts @@ -2854,13 +2854,25 @@ export interface components { * @description Base model definition with common configuration used by all derived models. */ CreatedCustomBuild: { - /** Count */ + /** + * Count + * @description TODO + */ count?: string; - /** Fasta */ + /** + * Fasta + * @description TODO + */ fasta?: number; - /** Length */ + /** + * Length + * @description TODO + */ len: number; - /** Line count */ + /** + * Line count + * @description TODO + */ linecount?: number; /** * Name @@ -2873,9 +2885,15 @@ export interface components { * @description Base model definition with common configuration used by all derived models. */ CustomBuildCreationPayload: { - /** Length type */ + /** + * Length type + * @description TODO + */ "len|type": string; - /** Length value */ + /** + * Length value + * @description TODO + */ "len|value": string; /** * Name @@ -2888,18 +2906,30 @@ export interface components { * @description Base model definition with common configuration used by all derived models. */ CustomBuildModel: { - /** Count */ + /** + * Count + * @description TODO + */ count?: string; - /** Fasta */ + /** + * Fasta + * @description TODO + */ fasta?: number; /** * ID * @description The ID of the custom build. */ id: string; - /** Length */ + /** + * Length + * @description TODO + */ len: number; - /** Line count */ + /** + * Line count + * @description TODO + */ linecount?: number; /** * Name @@ -6485,6 +6515,22 @@ export interface components { */ url: string; }; + /** + * LimitedUserModel + * @description This is used when config options (expose_user_name and expose_user_email) are in place. + */ + LimitedUserModel: { + /** Email */ + email?: string; + /** + * ID + * @description Encoded ID of the user + * @example 0123456789ABCDEF + */ + id: string; + /** Username */ + username?: string; + }; /** Link */ Link: { /** Name */ @@ -16446,7 +16492,10 @@ export interface operations { /** @description Successful Response */ 200: { content: { - "application/json": components["schemas"]["UserModel"][]; + "application/json": ( + | components["schemas"]["UserModel"] + | components["schemas"]["LimitedUserModel"] + )[]; }; }; /** @description Validation Error */ @@ -16510,7 +16559,10 @@ export interface operations { /** @description Successful Response */ 200: { content: { - "application/json": components["schemas"]["UserModel"][]; + "application/json": ( + | components["schemas"]["UserModel"] + | components["schemas"]["LimitedUserModel"] + )[]; }; }; /** @description Validation Error */