Skip to content

Commit

Permalink
Update API schema
Browse files Browse the repository at this point in the history
  • Loading branch information
dannon committed Nov 6, 2023
1 parent a025f94 commit 201f556
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions client/src/api/schema/schema.ts
Original file line number Diff line number Diff line change
Expand Up @@ -901,6 +901,10 @@ export interface paths {
* Parameters
* - id: ID of job to return
* - full: Return extra information ?
* - stdout_position: The index of the character to begin reading stdout from
* - stdout_length: How many characters of stdout to read
* - stderr_position: The index of the character to begin reading stderr from
* - stderr_length: How many characters of stderr to read
*/
get: operations["show_api_jobs__id__get"];
};
Expand Down Expand Up @@ -14596,10 +14600,18 @@ export interface operations {
* Parameters
* - id: ID of job to return
* - full: Return extra information ?
* - stdout_position: The index of the character to begin reading stdout from
* - stdout_length: How many characters of stdout to read
* - stderr_position: The index of the character to begin reading stderr from
* - stderr_length: How many characters of stderr to read
*/
parameters: {
query?: {
full?: boolean;
stdout_position?: number;
stdout_length?: number;
stderr_position?: number;
stderr_length?: number;
};
/** @description The user ID that will be used to effectively make this API call. Only admins and designated users can make API calls on behalf of other users. */
header?: {
Expand Down

0 comments on commit 201f556

Please sign in to comment.