Skip to content

Commit

Permalink
Update client api schema
Browse files Browse the repository at this point in the history
  • Loading branch information
gecage952 committed Jul 12, 2024
1 parent 907328e commit 2e472a9
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions client/src/api/schema/schema.ts
Original file line number Diff line number Diff line change
Expand Up @@ -19802,22 +19802,22 @@ export interface operations {
};
};
};
/**
* Returns STDOUT and STDERR from the tool running in a specific job.
* @description Get the stdout and/or stderr from the tool running in a specific job. The position parameters are the index
* of where to start reading stdout/stderr. The length parameters control how much
* stdout/stderr is read.
*/
get_console_output_api_jobs__job_id__console_output_get: {
/**
* Returns STDOUT and STDERR from the tool running in a specific job.
* @description Get the stdout and/or stderr from the tool running in a specific job. The position parameters are the index
* of where to start reading stdout/stderr. The length parameters control how much
* stdout/stderr is read.
*/
parameters: {
query: {
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?: {
/** @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. */
"run-as"?: string | null;
};
path: {
Expand Down

0 comments on commit 2e472a9

Please sign in to comment.