From 2e472a9c883094b9c91713bdcccf0b2ab06a66f4 Mon Sep 17 00:00:00 2001 From: Gregory Cage Date: Fri, 12 Jul 2024 14:41:57 -0400 Subject: [PATCH] Update client api schema --- client/src/api/schema/schema.ts | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/client/src/api/schema/schema.ts b/client/src/api/schema/schema.ts index 16f3650da92b..cd21ff8bde9a 100644 --- a/client/src/api/schema/schema.ts +++ b/client/src/api/schema/schema.ts @@ -19802,13 +19802,13 @@ 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; @@ -19816,8 +19816,8 @@ export interface operations { 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: {