@daytonaio/toolbox-api-client 0.108.0-rc1 → 0.113.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@daytonaio/toolbox-api-client",
3
- "version": "0.108.0-rc1",
3
+ "version": "0.113.0",
4
4
  "description": "OpenAPI client for @daytonaio/toolbox-api-client",
5
5
  "author": "OpenAPI-Generator Contributors",
6
6
  "repository": {
@@ -615,7 +615,7 @@ export declare class ComputerUseApi extends BaseAPI {
615
615
  * @throws {RequiredError}
616
616
  * @memberof ComputerUseApi
617
617
  */
618
- click(request: MouseClickRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<MouseClickResponse, any, {}>>;
618
+ click(request: MouseClickRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<MouseClickResponse, any>>;
619
619
  /**
620
620
  * Drag the mouse from start to end coordinates
621
621
  * @summary Drag mouse
@@ -624,7 +624,7 @@ export declare class ComputerUseApi extends BaseAPI {
624
624
  * @throws {RequiredError}
625
625
  * @memberof ComputerUseApi
626
626
  */
627
- drag(request: MouseDragRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<MouseDragResponse, any, {}>>;
627
+ drag(request: MouseDragRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<MouseDragResponse, any>>;
628
628
  /**
629
629
  * Get the status of all computer use processes
630
630
  * @summary Get computer use process status
@@ -632,7 +632,7 @@ export declare class ComputerUseApi extends BaseAPI {
632
632
  * @throws {RequiredError}
633
633
  * @memberof ComputerUseApi
634
634
  */
635
- getComputerUseStatus(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ComputerUseStatusResponse, any, {}>>;
635
+ getComputerUseStatus(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ComputerUseStatusResponse, any>>;
636
636
  /**
637
637
  * Get the current status of the computer use system
638
638
  * @summary Get computer use status
@@ -640,7 +640,7 @@ export declare class ComputerUseApi extends BaseAPI {
640
640
  * @throws {RequiredError}
641
641
  * @memberof ComputerUseApi
642
642
  */
643
- getComputerUseSystemStatus(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ComputerUseStatusResponse, any, {}>>;
643
+ getComputerUseSystemStatus(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ComputerUseStatusResponse, any>>;
644
644
  /**
645
645
  * Get information about all available displays
646
646
  * @summary Get display information
@@ -648,7 +648,7 @@ export declare class ComputerUseApi extends BaseAPI {
648
648
  * @throws {RequiredError}
649
649
  * @memberof ComputerUseApi
650
650
  */
651
- getDisplayInfo(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DisplayInfoResponse, any, {}>>;
651
+ getDisplayInfo(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DisplayInfoResponse, any>>;
652
652
  /**
653
653
  * Get the current mouse cursor position
654
654
  * @summary Get mouse position
@@ -656,7 +656,7 @@ export declare class ComputerUseApi extends BaseAPI {
656
656
  * @throws {RequiredError}
657
657
  * @memberof ComputerUseApi
658
658
  */
659
- getMousePosition(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<MousePositionResponse, any, {}>>;
659
+ getMousePosition(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<MousePositionResponse, any>>;
660
660
  /**
661
661
  * Get errors for a specific computer use process
662
662
  * @summary Get process errors
@@ -665,7 +665,7 @@ export declare class ComputerUseApi extends BaseAPI {
665
665
  * @throws {RequiredError}
666
666
  * @memberof ComputerUseApi
667
667
  */
668
- getProcessErrors(processName: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ProcessErrorsResponse, any, {}>>;
668
+ getProcessErrors(processName: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ProcessErrorsResponse, any>>;
669
669
  /**
670
670
  * Get logs for a specific computer use process
671
671
  * @summary Get process logs
@@ -674,7 +674,7 @@ export declare class ComputerUseApi extends BaseAPI {
674
674
  * @throws {RequiredError}
675
675
  * @memberof ComputerUseApi
676
676
  */
677
- getProcessLogs(processName: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ProcessLogsResponse, any, {}>>;
677
+ getProcessLogs(processName: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ProcessLogsResponse, any>>;
678
678
  /**
679
679
  * Check if a specific computer use process is running
680
680
  * @summary Get specific process status
@@ -683,7 +683,7 @@ export declare class ComputerUseApi extends BaseAPI {
683
683
  * @throws {RequiredError}
684
684
  * @memberof ComputerUseApi
685
685
  */
686
- getProcessStatus(processName: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ProcessStatusResponse, any, {}>>;
686
+ getProcessStatus(processName: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ProcessStatusResponse, any>>;
687
687
  /**
688
688
  * Get information about all open windows
689
689
  * @summary Get windows information
@@ -691,7 +691,7 @@ export declare class ComputerUseApi extends BaseAPI {
691
691
  * @throws {RequiredError}
692
692
  * @memberof ComputerUseApi
693
693
  */
694
- getWindows(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<WindowsResponse, any, {}>>;
694
+ getWindows(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<WindowsResponse, any>>;
695
695
  /**
696
696
  * Move the mouse cursor to the specified coordinates
697
697
  * @summary Move mouse cursor
@@ -700,7 +700,7 @@ export declare class ComputerUseApi extends BaseAPI {
700
700
  * @throws {RequiredError}
701
701
  * @memberof ComputerUseApi
702
702
  */
703
- moveMouse(request: MouseMoveRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<MousePositionResponse, any, {}>>;
703
+ moveMouse(request: MouseMoveRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<MousePositionResponse, any>>;
704
704
  /**
705
705
  * Press a hotkey combination (e.g., ctrl+c, cmd+v)
706
706
  * @summary Press hotkey
@@ -709,7 +709,7 @@ export declare class ComputerUseApi extends BaseAPI {
709
709
  * @throws {RequiredError}
710
710
  * @memberof ComputerUseApi
711
711
  */
712
- pressHotkey(request: KeyboardHotkeyRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<object, any, {}>>;
712
+ pressHotkey(request: KeyboardHotkeyRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<object, any>>;
713
713
  /**
714
714
  * Press a key with optional modifiers
715
715
  * @summary Press key
@@ -718,7 +718,7 @@ export declare class ComputerUseApi extends BaseAPI {
718
718
  * @throws {RequiredError}
719
719
  * @memberof ComputerUseApi
720
720
  */
721
- pressKey(request: KeyboardPressRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<object, any, {}>>;
721
+ pressKey(request: KeyboardPressRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<object, any>>;
722
722
  /**
723
723
  * Restart a specific computer use process
724
724
  * @summary Restart specific process
@@ -727,7 +727,7 @@ export declare class ComputerUseApi extends BaseAPI {
727
727
  * @throws {RequiredError}
728
728
  * @memberof ComputerUseApi
729
729
  */
730
- restartProcess(processName: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ProcessRestartResponse, any, {}>>;
730
+ restartProcess(processName: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ProcessRestartResponse, any>>;
731
731
  /**
732
732
  * Scroll the mouse wheel at the specified coordinates
733
733
  * @summary Scroll mouse wheel
@@ -736,7 +736,7 @@ export declare class ComputerUseApi extends BaseAPI {
736
736
  * @throws {RequiredError}
737
737
  * @memberof ComputerUseApi
738
738
  */
739
- scroll(request: MouseScrollRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ScrollResponse, any, {}>>;
739
+ scroll(request: MouseScrollRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ScrollResponse, any>>;
740
740
  /**
741
741
  * Start all computer use processes and return their status
742
742
  * @summary Start computer use processes
@@ -744,7 +744,7 @@ export declare class ComputerUseApi extends BaseAPI {
744
744
  * @throws {RequiredError}
745
745
  * @memberof ComputerUseApi
746
746
  */
747
- startComputerUse(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ComputerUseStartResponse, any, {}>>;
747
+ startComputerUse(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ComputerUseStartResponse, any>>;
748
748
  /**
749
749
  * Stop all computer use processes and return their status
750
750
  * @summary Stop computer use processes
@@ -752,7 +752,7 @@ export declare class ComputerUseApi extends BaseAPI {
752
752
  * @throws {RequiredError}
753
753
  * @memberof ComputerUseApi
754
754
  */
755
- stopComputerUse(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ComputerUseStopResponse, any, {}>>;
755
+ stopComputerUse(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ComputerUseStopResponse, any>>;
756
756
  /**
757
757
  * Take a compressed screenshot of a specific region of the screen
758
758
  * @summary Take a compressed region screenshot
@@ -768,7 +768,7 @@ export declare class ComputerUseApi extends BaseAPI {
768
768
  * @throws {RequiredError}
769
769
  * @memberof ComputerUseApi
770
770
  */
771
- takeCompressedRegionScreenshot(x: number, y: number, width: number, height: number, showCursor?: boolean, format?: string, quality?: number, scale?: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ScreenshotResponse, any, {}>>;
771
+ takeCompressedRegionScreenshot(x: number, y: number, width: number, height: number, showCursor?: boolean, format?: string, quality?: number, scale?: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ScreenshotResponse, any>>;
772
772
  /**
773
773
  * Take a compressed screenshot of the entire screen
774
774
  * @summary Take a compressed screenshot
@@ -780,7 +780,7 @@ export declare class ComputerUseApi extends BaseAPI {
780
780
  * @throws {RequiredError}
781
781
  * @memberof ComputerUseApi
782
782
  */
783
- takeCompressedScreenshot(showCursor?: boolean, format?: string, quality?: number, scale?: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ScreenshotResponse, any, {}>>;
783
+ takeCompressedScreenshot(showCursor?: boolean, format?: string, quality?: number, scale?: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ScreenshotResponse, any>>;
784
784
  /**
785
785
  * Take a screenshot of a specific region of the screen
786
786
  * @summary Take a region screenshot
@@ -793,7 +793,7 @@ export declare class ComputerUseApi extends BaseAPI {
793
793
  * @throws {RequiredError}
794
794
  * @memberof ComputerUseApi
795
795
  */
796
- takeRegionScreenshot(x: number, y: number, width: number, height: number, showCursor?: boolean, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ScreenshotResponse, any, {}>>;
796
+ takeRegionScreenshot(x: number, y: number, width: number, height: number, showCursor?: boolean, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ScreenshotResponse, any>>;
797
797
  /**
798
798
  * Take a screenshot of the entire screen
799
799
  * @summary Take a screenshot
@@ -802,7 +802,7 @@ export declare class ComputerUseApi extends BaseAPI {
802
802
  * @throws {RequiredError}
803
803
  * @memberof ComputerUseApi
804
804
  */
805
- takeScreenshot(showCursor?: boolean, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ScreenshotResponse, any, {}>>;
805
+ takeScreenshot(showCursor?: boolean, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ScreenshotResponse, any>>;
806
806
  /**
807
807
  * Type text with optional delay between keystrokes
808
808
  * @summary Type text
@@ -811,5 +811,5 @@ export declare class ComputerUseApi extends BaseAPI {
811
811
  * @throws {RequiredError}
812
812
  * @memberof ComputerUseApi
813
813
  */
814
- typeText(request: KeyboardTypeRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<object, any, {}>>;
814
+ typeText(request: KeyboardTypeRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<object, any>>;
815
815
  }
@@ -77,7 +77,7 @@ export declare const FileSystemApiAxiosParamCreator: (configuration?: Configurat
77
77
  /**
78
78
  * List files and directories in the specified path
79
79
  * @summary List files and directories
80
- * @param {string} [path] Directory path to list (defaults to current directory)
80
+ * @param {string} [path] Directory path to list (defaults to working directory)
81
81
  * @param {*} [options] Override http request option.
82
82
  * @throws {RequiredError}
83
83
  */
@@ -197,7 +197,7 @@ export declare const FileSystemApiFp: (configuration?: Configuration) => {
197
197
  /**
198
198
  * List files and directories in the specified path
199
199
  * @summary List files and directories
200
- * @param {string} [path] Directory path to list (defaults to current directory)
200
+ * @param {string} [path] Directory path to list (defaults to working directory)
201
201
  * @param {*} [options] Override http request option.
202
202
  * @throws {RequiredError}
203
203
  */
@@ -319,7 +319,7 @@ export declare const FileSystemApiFactory: (configuration?: Configuration, baseP
319
319
  /**
320
320
  * List files and directories in the specified path
321
321
  * @summary List files and directories
322
- * @param {string} [path] Directory path to list (defaults to current directory)
322
+ * @param {string} [path] Directory path to list (defaults to working directory)
323
323
  * @param {*} [options] Override http request option.
324
324
  * @throws {RequiredError}
325
325
  */
@@ -396,7 +396,7 @@ export declare class FileSystemApi extends BaseAPI {
396
396
  * @throws {RequiredError}
397
397
  * @memberof FileSystemApi
398
398
  */
399
- createFolder(path: string, mode: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any, {}>>;
399
+ createFolder(path: string, mode: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
400
400
  /**
401
401
  * Delete a file or directory at the specified path
402
402
  * @summary Delete a file or directory
@@ -406,7 +406,7 @@ export declare class FileSystemApi extends BaseAPI {
406
406
  * @throws {RequiredError}
407
407
  * @memberof FileSystemApi
408
408
  */
409
- deleteFile(path: string, recursive?: boolean, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any, {}>>;
409
+ deleteFile(path: string, recursive?: boolean, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
410
410
  /**
411
411
  * Download a file by providing its path
412
412
  * @summary Download a file
@@ -415,7 +415,7 @@ export declare class FileSystemApi extends BaseAPI {
415
415
  * @throws {RequiredError}
416
416
  * @memberof FileSystemApi
417
417
  */
418
- downloadFile(path: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<File, any, {}>>;
418
+ downloadFile(path: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<File, any>>;
419
419
  /**
420
420
  * Download multiple files by providing their paths
421
421
  * @summary Download multiple files
@@ -426,7 +426,7 @@ export declare class FileSystemApi extends BaseAPI {
426
426
  */
427
427
  downloadFiles(downloadFiles: FilesDownloadRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<{
428
428
  [key: string]: object;
429
- }, any, {}>>;
429
+ }, any>>;
430
430
  /**
431
431
  * Search for text pattern within files in a directory
432
432
  * @summary Find text in files
@@ -436,7 +436,7 @@ export declare class FileSystemApi extends BaseAPI {
436
436
  * @throws {RequiredError}
437
437
  * @memberof FileSystemApi
438
438
  */
439
- findInFiles(path: string, pattern: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Match[], any, {}>>;
439
+ findInFiles(path: string, pattern: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Match[], any>>;
440
440
  /**
441
441
  * Get detailed information about a file or directory
442
442
  * @summary Get file information
@@ -445,16 +445,16 @@ export declare class FileSystemApi extends BaseAPI {
445
445
  * @throws {RequiredError}
446
446
  * @memberof FileSystemApi
447
447
  */
448
- getFileInfo(path: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<FileInfo, any, {}>>;
448
+ getFileInfo(path: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<FileInfo, any>>;
449
449
  /**
450
450
  * List files and directories in the specified path
451
451
  * @summary List files and directories
452
- * @param {string} [path] Directory path to list (defaults to current directory)
452
+ * @param {string} [path] Directory path to list (defaults to working directory)
453
453
  * @param {*} [options] Override http request option.
454
454
  * @throws {RequiredError}
455
455
  * @memberof FileSystemApi
456
456
  */
457
- listFiles(path?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<FileInfo[], any, {}>>;
457
+ listFiles(path?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<FileInfo[], any>>;
458
458
  /**
459
459
  * Move or rename a file or directory from source to destination
460
460
  * @summary Move or rename file/directory
@@ -464,7 +464,7 @@ export declare class FileSystemApi extends BaseAPI {
464
464
  * @throws {RequiredError}
465
465
  * @memberof FileSystemApi
466
466
  */
467
- moveFile(source: string, destination: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any, {}>>;
467
+ moveFile(source: string, destination: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
468
468
  /**
469
469
  * Replace text pattern with new value in multiple files
470
470
  * @summary Replace text in files
@@ -473,7 +473,7 @@ export declare class FileSystemApi extends BaseAPI {
473
473
  * @throws {RequiredError}
474
474
  * @memberof FileSystemApi
475
475
  */
476
- replaceInFiles(request: ReplaceRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ReplaceResult[], any, {}>>;
476
+ replaceInFiles(request: ReplaceRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ReplaceResult[], any>>;
477
477
  /**
478
478
  * Search for files matching a specific pattern in a directory
479
479
  * @summary Search files by pattern
@@ -483,7 +483,7 @@ export declare class FileSystemApi extends BaseAPI {
483
483
  * @throws {RequiredError}
484
484
  * @memberof FileSystemApi
485
485
  */
486
- searchFiles(path: string, pattern: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<SearchFilesResponse, any, {}>>;
486
+ searchFiles(path: string, pattern: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<SearchFilesResponse, any>>;
487
487
  /**
488
488
  * Set file permissions, ownership, and group for a file or directory
489
489
  * @summary Set file permissions
@@ -495,7 +495,7 @@ export declare class FileSystemApi extends BaseAPI {
495
495
  * @throws {RequiredError}
496
496
  * @memberof FileSystemApi
497
497
  */
498
- setFilePermissions(path: string, owner?: string, group?: string, mode?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any, {}>>;
498
+ setFilePermissions(path: string, owner?: string, group?: string, mode?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
499
499
  /**
500
500
  * Upload a file to the specified path
501
501
  * @summary Upload a file
@@ -507,7 +507,7 @@ export declare class FileSystemApi extends BaseAPI {
507
507
  */
508
508
  uploadFile(path: string, file: File, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<{
509
509
  [key: string]: object;
510
- }, any, {}>>;
510
+ }, any>>;
511
511
  /**
512
512
  * Upload multiple files with their destination paths
513
513
  * @summary Upload multiple files
@@ -515,5 +515,5 @@ export declare class FileSystemApi extends BaseAPI {
515
515
  * @throws {RequiredError}
516
516
  * @memberof FileSystemApi
517
517
  */
518
- uploadFiles(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any, {}>>;
518
+ uploadFiles(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
519
519
  }
@@ -230,7 +230,7 @@ const FileSystemApiAxiosParamCreator = function (configuration) {
230
230
  /**
231
231
  * List files and directories in the specified path
232
232
  * @summary List files and directories
233
- * @param {string} [path] Directory path to list (defaults to current directory)
233
+ * @param {string} [path] Directory path to list (defaults to working directory)
234
234
  * @param {*} [options] Override http request option.
235
235
  * @throws {RequiredError}
236
236
  */
@@ -562,7 +562,7 @@ const FileSystemApiFp = function (configuration) {
562
562
  /**
563
563
  * List files and directories in the specified path
564
564
  * @summary List files and directories
565
- * @param {string} [path] Directory path to list (defaults to current directory)
565
+ * @param {string} [path] Directory path to list (defaults to working directory)
566
566
  * @param {*} [options] Override http request option.
567
567
  * @throws {RequiredError}
568
568
  */
@@ -731,7 +731,7 @@ const FileSystemApiFactory = function (configuration, basePath, axios) {
731
731
  /**
732
732
  * List files and directories in the specified path
733
733
  * @summary List files and directories
734
- * @param {string} [path] Directory path to list (defaults to current directory)
734
+ * @param {string} [path] Directory path to list (defaults to working directory)
735
735
  * @param {*} [options] Override http request option.
736
736
  * @throws {RequiredError}
737
737
  */
@@ -899,7 +899,7 @@ class FileSystemApi extends base_1.BaseAPI {
899
899
  /**
900
900
  * List files and directories in the specified path
901
901
  * @summary List files and directories
902
- * @param {string} [path] Directory path to list (defaults to current directory)
902
+ * @param {string} [path] Directory path to list (defaults to working directory)
903
903
  * @param {*} [options] Override http request option.
904
904
  * @throws {RequiredError}
905
905
  * @memberof FileSystemApi
@@ -320,7 +320,7 @@ export declare class GitApi extends BaseAPI {
320
320
  * @throws {RequiredError}
321
321
  * @memberof GitApi
322
322
  */
323
- addFiles(request: GitAddRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any, {}>>;
323
+ addFiles(request: GitAddRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
324
324
  /**
325
325
  * Switch to a different branch or commit in the Git repository
326
326
  * @summary Checkout branch or commit
@@ -329,7 +329,7 @@ export declare class GitApi extends BaseAPI {
329
329
  * @throws {RequiredError}
330
330
  * @memberof GitApi
331
331
  */
332
- checkoutBranch(request: GitCheckoutRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any, {}>>;
332
+ checkoutBranch(request: GitCheckoutRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
333
333
  /**
334
334
  * Clone a Git repository to the specified path
335
335
  * @summary Clone a Git repository
@@ -338,7 +338,7 @@ export declare class GitApi extends BaseAPI {
338
338
  * @throws {RequiredError}
339
339
  * @memberof GitApi
340
340
  */
341
- cloneRepository(request: GitCloneRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any, {}>>;
341
+ cloneRepository(request: GitCloneRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
342
342
  /**
343
343
  * Commit staged changes to the Git repository
344
344
  * @summary Commit changes
@@ -347,7 +347,7 @@ export declare class GitApi extends BaseAPI {
347
347
  * @throws {RequiredError}
348
348
  * @memberof GitApi
349
349
  */
350
- commitChanges(request: GitCommitRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<GitCommitResponse, any, {}>>;
350
+ commitChanges(request: GitCommitRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<GitCommitResponse, any>>;
351
351
  /**
352
352
  * Create a new branch in the Git repository
353
353
  * @summary Create a new branch
@@ -356,7 +356,7 @@ export declare class GitApi extends BaseAPI {
356
356
  * @throws {RequiredError}
357
357
  * @memberof GitApi
358
358
  */
359
- createBranch(request: GitBranchRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any, {}>>;
359
+ createBranch(request: GitBranchRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
360
360
  /**
361
361
  * Delete a branch from the Git repository
362
362
  * @summary Delete a branch
@@ -365,7 +365,7 @@ export declare class GitApi extends BaseAPI {
365
365
  * @throws {RequiredError}
366
366
  * @memberof GitApi
367
367
  */
368
- deleteBranch(request: GitGitDeleteBranchRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any, {}>>;
368
+ deleteBranch(request: GitGitDeleteBranchRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
369
369
  /**
370
370
  * Get the commit history of the Git repository
371
371
  * @summary Get commit history
@@ -374,7 +374,7 @@ export declare class GitApi extends BaseAPI {
374
374
  * @throws {RequiredError}
375
375
  * @memberof GitApi
376
376
  */
377
- getCommitHistory(path: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<GitCommitInfo[], any, {}>>;
377
+ getCommitHistory(path: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<GitCommitInfo[], any>>;
378
378
  /**
379
379
  * Get the Git status of the repository at the specified path
380
380
  * @summary Get Git status
@@ -383,7 +383,7 @@ export declare class GitApi extends BaseAPI {
383
383
  * @throws {RequiredError}
384
384
  * @memberof GitApi
385
385
  */
386
- getStatus(path: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<GitStatus, any, {}>>;
386
+ getStatus(path: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<GitStatus, any>>;
387
387
  /**
388
388
  * Get a list of all branches in the Git repository
389
389
  * @summary List branches
@@ -392,7 +392,7 @@ export declare class GitApi extends BaseAPI {
392
392
  * @throws {RequiredError}
393
393
  * @memberof GitApi
394
394
  */
395
- listBranches(path: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ListBranchResponse, any, {}>>;
395
+ listBranches(path: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ListBranchResponse, any>>;
396
396
  /**
397
397
  * Pull changes from the remote Git repository
398
398
  * @summary Pull changes from remote
@@ -401,7 +401,7 @@ export declare class GitApi extends BaseAPI {
401
401
  * @throws {RequiredError}
402
402
  * @memberof GitApi
403
403
  */
404
- pullChanges(request: GitRepoRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any, {}>>;
404
+ pullChanges(request: GitRepoRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
405
405
  /**
406
406
  * Push local changes to the remote Git repository
407
407
  * @summary Push changes to remote
@@ -410,5 +410,5 @@ export declare class GitApi extends BaseAPI {
410
410
  * @throws {RequiredError}
411
411
  * @memberof GitApi
412
412
  */
413
- pushChanges(request: GitRepoRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any, {}>>;
413
+ pushChanges(request: GitRepoRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
414
414
  }
@@ -113,7 +113,7 @@ export declare class InfoApi extends BaseAPI {
113
113
  * @throws {RequiredError}
114
114
  * @memberof InfoApi
115
115
  */
116
- getUserHomeDir(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<UserHomeDirResponse, any, {}>>;
116
+ getUserHomeDir(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<UserHomeDirResponse, any>>;
117
117
  /**
118
118
  * Get the current daemon version
119
119
  * @summary Get version
@@ -123,7 +123,7 @@ export declare class InfoApi extends BaseAPI {
123
123
  */
124
124
  getVersion(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<{
125
125
  [key: string]: string;
126
- }, any, {}>>;
126
+ }, any>>;
127
127
  /**
128
128
  * Get the current working directory path. This is default directory used for running commands.
129
129
  * @summary Get working directory
@@ -131,5 +131,5 @@ export declare class InfoApi extends BaseAPI {
131
131
  * @throws {RequiredError}
132
132
  * @memberof InfoApi
133
133
  */
134
- getWorkDir(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<WorkDirResponse, any, {}>>;
134
+ getWorkDir(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<WorkDirResponse, any>>;
135
135
  }
@@ -230,7 +230,7 @@ export declare class LspApi extends BaseAPI {
230
230
  * @throws {RequiredError}
231
231
  * @memberof LspApi
232
232
  */
233
- completions(request: LspCompletionParams, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<CompletionList, any, {}>>;
233
+ completions(request: LspCompletionParams, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<CompletionList, any>>;
234
234
  /**
235
235
  * Notify the LSP server that a document has been closed
236
236
  * @summary Notify document closed
@@ -239,7 +239,7 @@ export declare class LspApi extends BaseAPI {
239
239
  * @throws {RequiredError}
240
240
  * @memberof LspApi
241
241
  */
242
- didClose(request: LspDocumentRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any, {}>>;
242
+ didClose(request: LspDocumentRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
243
243
  /**
244
244
  * Notify the LSP server that a document has been opened
245
245
  * @summary Notify document opened
@@ -248,7 +248,7 @@ export declare class LspApi extends BaseAPI {
248
248
  * @throws {RequiredError}
249
249
  * @memberof LspApi
250
250
  */
251
- didOpen(request: LspDocumentRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any, {}>>;
251
+ didOpen(request: LspDocumentRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
252
252
  /**
253
253
  * Get symbols (functions, classes, etc.) from a document
254
254
  * @summary Get document symbols
@@ -259,7 +259,7 @@ export declare class LspApi extends BaseAPI {
259
259
  * @throws {RequiredError}
260
260
  * @memberof LspApi
261
261
  */
262
- documentSymbols(languageId: string, pathToProject: string, uri: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<LspSymbol[], any, {}>>;
262
+ documentSymbols(languageId: string, pathToProject: string, uri: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<LspSymbol[], any>>;
263
263
  /**
264
264
  * Start a Language Server Protocol server for the specified language
265
265
  * @summary Start LSP server
@@ -268,7 +268,7 @@ export declare class LspApi extends BaseAPI {
268
268
  * @throws {RequiredError}
269
269
  * @memberof LspApi
270
270
  */
271
- start(request: LspServerRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any, {}>>;
271
+ start(request: LspServerRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
272
272
  /**
273
273
  * Stop a Language Server Protocol server
274
274
  * @summary Stop LSP server
@@ -277,7 +277,7 @@ export declare class LspApi extends BaseAPI {
277
277
  * @throws {RequiredError}
278
278
  * @memberof LspApi
279
279
  */
280
- stop(request: LspServerRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any, {}>>;
280
+ stop(request: LspServerRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
281
281
  /**
282
282
  * Search for symbols across the entire workspace
283
283
  * @summary Get workspace symbols
@@ -288,5 +288,5 @@ export declare class LspApi extends BaseAPI {
288
288
  * @throws {RequiredError}
289
289
  * @memberof LspApi
290
290
  */
291
- workspaceSymbols(query: string, languageId: string, pathToProject: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<LspSymbol[], any, {}>>;
291
+ workspaceSymbols(query: string, languageId: string, pathToProject: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<LspSymbol[], any>>;
292
292
  }
@@ -91,7 +91,7 @@ export declare class PortApi extends BaseAPI {
91
91
  * @throws {RequiredError}
92
92
  * @memberof PortApi
93
93
  */
94
- getPorts(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<PortList, any, {}>>;
94
+ getPorts(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<PortList, any>>;
95
95
  /**
96
96
  * Check if a specific port is currently in use
97
97
  * @summary Check if port is in use
@@ -100,5 +100,5 @@ export declare class PortApi extends BaseAPI {
100
100
  * @throws {RequiredError}
101
101
  * @memberof PortApi
102
102
  */
103
- isPortInUse(port: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<IsPortInUseResponse, any, {}>>;
103
+ isPortInUse(port: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<IsPortInUseResponse, any>>;
104
104
  }
@@ -406,7 +406,7 @@ export declare class ProcessApi extends BaseAPI {
406
406
  * @throws {RequiredError}
407
407
  * @memberof ProcessApi
408
408
  */
409
- connectPtySession(sessionId: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any, {}>>;
409
+ connectPtySession(sessionId: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
410
410
  /**
411
411
  * Create a new pseudo-terminal session with specified configuration
412
412
  * @summary Create a new PTY session
@@ -415,7 +415,7 @@ export declare class ProcessApi extends BaseAPI {
415
415
  * @throws {RequiredError}
416
416
  * @memberof ProcessApi
417
417
  */
418
- createPtySession(request: PtyCreateRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<PtyCreateResponse, any, {}>>;
418
+ createPtySession(request: PtyCreateRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<PtyCreateResponse, any>>;
419
419
  /**
420
420
  * Create a new shell session for command execution
421
421
  * @summary Create a new session
@@ -424,7 +424,7 @@ export declare class ProcessApi extends BaseAPI {
424
424
  * @throws {RequiredError}
425
425
  * @memberof ProcessApi
426
426
  */
427
- createSession(request: CreateSessionRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any, {}>>;
427
+ createSession(request: CreateSessionRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
428
428
  /**
429
429
  * Delete a pseudo-terminal session and terminate its process
430
430
  * @summary Delete a PTY session
@@ -435,7 +435,7 @@ export declare class ProcessApi extends BaseAPI {
435
435
  */
436
436
  deletePtySession(sessionId: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<{
437
437
  [key: string]: object;
438
- }, any, {}>>;
438
+ }, any>>;
439
439
  /**
440
440
  * Delete an existing shell session
441
441
  * @summary Delete a session
@@ -444,7 +444,7 @@ export declare class ProcessApi extends BaseAPI {
444
444
  * @throws {RequiredError}
445
445
  * @memberof ProcessApi
446
446
  */
447
- deleteSession(sessionId: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any, {}>>;
447
+ deleteSession(sessionId: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
448
448
  /**
449
449
  * Execute a shell command and return the output and exit code
450
450
  * @summary Execute a command
@@ -453,7 +453,7 @@ export declare class ProcessApi extends BaseAPI {
453
453
  * @throws {RequiredError}
454
454
  * @memberof ProcessApi
455
455
  */
456
- executeCommand(request: ExecuteRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ExecuteResponse, any, {}>>;
456
+ executeCommand(request: ExecuteRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ExecuteResponse, any>>;
457
457
  /**
458
458
  * Get detailed information about a specific pseudo-terminal session
459
459
  * @summary Get PTY session information
@@ -462,7 +462,7 @@ export declare class ProcessApi extends BaseAPI {
462
462
  * @throws {RequiredError}
463
463
  * @memberof ProcessApi
464
464
  */
465
- getPtySession(sessionId: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<PtySessionInfo, any, {}>>;
465
+ getPtySession(sessionId: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<PtySessionInfo, any>>;
466
466
  /**
467
467
  * Get details of a specific session including its commands
468
468
  * @summary Get session details
@@ -471,7 +471,7 @@ export declare class ProcessApi extends BaseAPI {
471
471
  * @throws {RequiredError}
472
472
  * @memberof ProcessApi
473
473
  */
474
- getSession(sessionId: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Session, any, {}>>;
474
+ getSession(sessionId: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Session, any>>;
475
475
  /**
476
476
  * Get details of a specific command within a session
477
477
  * @summary Get session command details
@@ -481,7 +481,7 @@ export declare class ProcessApi extends BaseAPI {
481
481
  * @throws {RequiredError}
482
482
  * @memberof ProcessApi
483
483
  */
484
- getSessionCommand(sessionId: string, commandId: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Command, any, {}>>;
484
+ getSessionCommand(sessionId: string, commandId: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Command, any>>;
485
485
  /**
486
486
  * Get logs for a specific command within a session. Supports both HTTP and WebSocket streaming.
487
487
  * @summary Get session command logs
@@ -492,7 +492,7 @@ export declare class ProcessApi extends BaseAPI {
492
492
  * @throws {RequiredError}
493
493
  * @memberof ProcessApi
494
494
  */
495
- getSessionCommandLogs(sessionId: string, commandId: string, follow?: boolean, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<string, any, {}>>;
495
+ getSessionCommandLogs(sessionId: string, commandId: string, follow?: boolean, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<string, any>>;
496
496
  /**
497
497
  * Get a list of all active pseudo-terminal sessions
498
498
  * @summary List all PTY sessions
@@ -500,7 +500,7 @@ export declare class ProcessApi extends BaseAPI {
500
500
  * @throws {RequiredError}
501
501
  * @memberof ProcessApi
502
502
  */
503
- listPtySessions(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<PtyListResponse, any, {}>>;
503
+ listPtySessions(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<PtyListResponse, any>>;
504
504
  /**
505
505
  * Get a list of all active shell sessions
506
506
  * @summary List all sessions
@@ -508,7 +508,7 @@ export declare class ProcessApi extends BaseAPI {
508
508
  * @throws {RequiredError}
509
509
  * @memberof ProcessApi
510
510
  */
511
- listSessions(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Session[], any, {}>>;
511
+ listSessions(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Session[], any>>;
512
512
  /**
513
513
  * Resize the terminal dimensions of a pseudo-terminal session
514
514
  * @summary Resize a PTY session
@@ -518,7 +518,7 @@ export declare class ProcessApi extends BaseAPI {
518
518
  * @throws {RequiredError}
519
519
  * @memberof ProcessApi
520
520
  */
521
- resizePtySession(sessionId: string, request: PtyResizeRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<PtySessionInfo, any, {}>>;
521
+ resizePtySession(sessionId: string, request: PtyResizeRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<PtySessionInfo, any>>;
522
522
  /**
523
523
  * Execute a command within an existing shell session
524
524
  * @summary Execute command in session
@@ -528,5 +528,5 @@ export declare class ProcessApi extends BaseAPI {
528
528
  * @throws {RequiredError}
529
529
  * @memberof ProcessApi
530
530
  */
531
- sessionExecuteCommand(sessionId: string, request: SessionExecuteRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<SessionExecuteResponse, any, {}>>;
531
+ sessionExecuteCommand(sessionId: string, request: SessionExecuteRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<SessionExecuteResponse, any>>;
532
532
  }
@@ -20,7 +20,7 @@ export interface ExecuteResponse {
20
20
  * @type {number}
21
21
  * @memberof ExecuteResponse
22
22
  */
23
- code: number;
23
+ exitCode?: number;
24
24
  /**
25
25
  *
26
26
  * @type {string}
@@ -10,7 +10,7 @@
10
10
  * Do not edit the class manually.
11
11
  */
12
12
  import type { CompletionContext } from './completion-context';
13
- import type { Position } from './position';
13
+ import type { LspPosition } from './lsp-position';
14
14
  /**
15
15
  *
16
16
  * @export
@@ -37,10 +37,10 @@ export interface LspCompletionParams {
37
37
  pathToProject: string;
38
38
  /**
39
39
  *
40
- * @type {Position}
40
+ * @type {LspPosition}
41
41
  * @memberof LspCompletionParams
42
42
  */
43
- position: Position;
43
+ position: LspPosition;
44
44
  /**
45
45
  *
46
46
  * @type {string}
@@ -20,11 +20,11 @@ export interface Position {
20
20
  * @type {number}
21
21
  * @memberof Position
22
22
  */
23
- character: number;
23
+ x?: number;
24
24
  /**
25
25
  *
26
26
  * @type {number}
27
27
  * @memberof Position
28
28
  */
29
- line: number;
29
+ y?: number;
30
30
  }