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 30, 2023
1 parent 4a6b586 commit c9779a8
Showing 1 changed file with 14 additions and 6 deletions.
20 changes: 14 additions & 6 deletions client/src/schema/schema.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7740,6 +7740,17 @@ export interface components {
* @enum {string}
*/
RemoteFilesFormat: "flat" | "jstree" | "uri";
/**
* RemoteUserCreationPayload
* @description Base model definition with common configuration used by all derived models.
*/
RemoteUserCreationPayload: {
/**
* Email
* @description Email of the user
*/
remote_user_email: string;
};
/**
* RequestDataType
* @description Particular pieces of information that can be requested for a dataset.
Expand Down Expand Up @@ -8808,11 +8819,6 @@ export interface components {
* @description The password of the user.
*/
password: string;
/**
* user_email
* @description The email of the remote user.
*/
remote_user_email?: string;
/**
* user_name
* @description The name of the user.
Expand Down Expand Up @@ -16665,7 +16671,9 @@ export interface operations {
};
requestBody: {
content: {
"application/json": components["schemas"]["UserCreationPayload"];
"application/json":
| components["schemas"]["UserCreationPayload"]
| components["schemas"]["RemoteUserCreationPayload"];
};
};
responses: {
Expand Down

0 comments on commit c9779a8

Please sign in to comment.