@@ -167,13 +167,13 @@ export class DevboxCmdOps {
167167 * ```
168168 *
169169 * @param {string } command - The command to execute
170- * @param {Omit<DevboxExecuteParams, 'command'> & ExecuteStreamingCallbacks } [params] - Optional parameters including shell name and callbacks
170+ * @param {Omit<DevboxExecuteParams, 'command' | 'command_id' > & ExecuteStreamingCallbacks } [params] - Optional parameters including shell name and callbacks
171171 * @param {Core.RequestOptions & { polling?: Partial<PollingOptions<DevboxAsyncExecutionDetailView>> } } [options] - Request options with optional polling configuration
172172 * @returns {Promise<ExecutionResult> } {@link ExecutionResult } with stdout, stderr, and exit status
173173 */
174174 async exec (
175175 command : string ,
176- params ?: Omit < DevboxExecuteParams , 'command' > & ExecuteStreamingCallbacks ,
176+ params ?: Omit < DevboxExecuteParams , 'command' | 'command_id' > & ExecuteStreamingCallbacks ,
177177 options ?: Core . RequestOptions & { polling ?: Partial < PollingOptions < DevboxAsyncExecutionDetailView > > } ,
178178 ) : Promise < ExecutionResult > {
179179 const fullParams = { ...params , command } ;
@@ -325,13 +325,13 @@ export class DevboxNamedShell {
325325 * ```
326326 *
327327 * @param {string } command - The command to execute
328- * @param {Omit<Omit< DevboxExecuteParams, 'command'>, 'shell_name'> & ExecuteStreamingCallbacks } [params] - Optional parameters (shell_name is automatically set)
328+ * @param {Omit<DevboxExecuteParams, 'command' | 'command_id' | 'shell_name'> & ExecuteStreamingCallbacks } [params] - Optional parameters (shell_name is automatically set)
329329 * @param {Core.RequestOptions & { polling?: Partial<PollingOptions<DevboxAsyncExecutionDetailView>> } } [options] - Request options with optional polling configuration
330330 * @returns {Promise<ExecutionResult> } {@link ExecutionResult } with stdout, stderr, and exit status
331331 */
332332 async exec (
333333 command : string ,
334- params ?: Omit < Omit < DevboxExecuteParams , 'command' > , 'shell_name' > & ExecuteStreamingCallbacks ,
334+ params ?: Omit < DevboxExecuteParams , 'command' | 'command_id' | 'shell_name' > & ExecuteStreamingCallbacks ,
335335 options ?: Core . RequestOptions & { polling ?: Partial < PollingOptions < DevboxAsyncExecutionDetailView > > } ,
336336 ) : Promise < ExecutionResult > {
337337 return this . devbox . cmd . exec ( command , { ...params , shell_name : this . shellName } , options ) ;
@@ -367,13 +367,13 @@ export class DevboxNamedShell {
367367 * ```
368368 *
369369 * @param {string } command - The command to execute
370- * @param {Omit<Omit< DevboxExecuteAsyncParams, 'command'>, 'shell_name'> & ExecuteStreamingCallbacks } [params] - Optional parameters (shell_name is automatically set)
370+ * @param {Omit<DevboxExecuteAsyncParams, 'command' | 'shell_name'> & ExecuteStreamingCallbacks } [params] - Optional parameters (shell_name is automatically set)
371371 * @param {Core.RequestOptions } [options] - Request options
372372 * @returns {Promise<Execution> } {@link Execution } object for tracking and controlling the command
373373 */
374374 async execAsync (
375375 command : string ,
376- params ?: Omit < Omit < DevboxExecuteAsyncParams , 'command' > , 'shell_name' > & ExecuteStreamingCallbacks ,
376+ params ?: Omit < DevboxExecuteAsyncParams , 'command' | 'shell_name' > & ExecuteStreamingCallbacks ,
377377 options ?: Core . RequestOptions ,
378378 ) : Promise < Execution > {
379379 return this . devbox . cmd . execAsync ( command , { ...params , shell_name : this . shellName } , options ) ;
0 commit comments