Skip to content

Commit

Permalink
Regenerate the client schema
Browse files Browse the repository at this point in the history
  • Loading branch information
heisner-tillman committed Jul 24, 2023
1 parent e892999 commit 6683719
Showing 1 changed file with 64 additions and 12 deletions.
76 changes: 64 additions & 12 deletions client/src/schema/schema.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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
Expand All @@ -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
Expand Down Expand Up @@ -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 */
Expand Down Expand Up @@ -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 */
Expand Down Expand Up @@ -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 */
Expand Down

0 comments on commit 6683719

Please sign in to comment.