@daytonaio/toolbox-api-client 0.140.0 → 0.142.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 +1 -1
- package/src/api/computer-use-api.d.ts +28 -28
- package/src/api/file-system-api.d.ts +13 -13
- package/src/api/git-api.d.ts +11 -11
- package/src/api/info-api.d.ts +3 -3
- package/src/api/interpreter-api.d.ts +4 -4
- package/src/api/lsp-api.d.ts +7 -7
- package/src/api/port-api.d.ts +2 -2
- package/src/api/process-api.d.ts +15 -15
- package/src/api/server-api.d.ts +80 -0
- package/src/api/server-api.js +127 -0
- package/src/api/server-api.js.map +1 -0
- package/src/api.d.ts +1 -0
- package/src/api.js +1 -0
- package/src/api.js.map +1 -1
- package/src/models/index.d.ts +1 -0
- package/src/models/index.js +1 -0
- package/src/models/index.js.map +1 -1
- package/src/models/initialize-request.d.ts +24 -0
- package/src/models/initialize-request.js +4 -0
- package/src/models/initialize-request.js.map +1 -0
package/package.json
CHANGED
|
@@ -760,7 +760,7 @@ export declare class ComputerUseApi extends BaseAPI {
|
|
|
760
760
|
* @throws {RequiredError}
|
|
761
761
|
* @memberof ComputerUseApi
|
|
762
762
|
*/
|
|
763
|
-
click(request: MouseClickRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<MouseClickResponse, any>>;
|
|
763
|
+
click(request: MouseClickRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<MouseClickResponse, any, {}>>;
|
|
764
764
|
/**
|
|
765
765
|
* Delete a recording file by ID
|
|
766
766
|
* @summary Delete a recording
|
|
@@ -769,7 +769,7 @@ export declare class ComputerUseApi extends BaseAPI {
|
|
|
769
769
|
* @throws {RequiredError}
|
|
770
770
|
* @memberof ComputerUseApi
|
|
771
771
|
*/
|
|
772
|
-
deleteRecording(id: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
|
|
772
|
+
deleteRecording(id: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any, {}>>;
|
|
773
773
|
/**
|
|
774
774
|
* Download a recording by providing its ID
|
|
775
775
|
* @summary Download a recording
|
|
@@ -778,7 +778,7 @@ export declare class ComputerUseApi extends BaseAPI {
|
|
|
778
778
|
* @throws {RequiredError}
|
|
779
779
|
* @memberof ComputerUseApi
|
|
780
780
|
*/
|
|
781
|
-
downloadRecording(id: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<File, any>>;
|
|
781
|
+
downloadRecording(id: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<File, any, {}>>;
|
|
782
782
|
/**
|
|
783
783
|
* Drag the mouse from start to end coordinates
|
|
784
784
|
* @summary Drag mouse
|
|
@@ -787,7 +787,7 @@ export declare class ComputerUseApi extends BaseAPI {
|
|
|
787
787
|
* @throws {RequiredError}
|
|
788
788
|
* @memberof ComputerUseApi
|
|
789
789
|
*/
|
|
790
|
-
drag(request: MouseDragRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<MouseDragResponse, any>>;
|
|
790
|
+
drag(request: MouseDragRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<MouseDragResponse, any, {}>>;
|
|
791
791
|
/**
|
|
792
792
|
* Get the status of all computer use processes
|
|
793
793
|
* @summary Get computer use process status
|
|
@@ -795,7 +795,7 @@ export declare class ComputerUseApi extends BaseAPI {
|
|
|
795
795
|
* @throws {RequiredError}
|
|
796
796
|
* @memberof ComputerUseApi
|
|
797
797
|
*/
|
|
798
|
-
getComputerUseStatus(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ComputerUseStatusResponse, any>>;
|
|
798
|
+
getComputerUseStatus(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ComputerUseStatusResponse, any, {}>>;
|
|
799
799
|
/**
|
|
800
800
|
* Get the current status of the computer use system
|
|
801
801
|
* @summary Get computer use status
|
|
@@ -803,7 +803,7 @@ export declare class ComputerUseApi extends BaseAPI {
|
|
|
803
803
|
* @throws {RequiredError}
|
|
804
804
|
* @memberof ComputerUseApi
|
|
805
805
|
*/
|
|
806
|
-
getComputerUseSystemStatus(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ComputerUseStatusResponse, any>>;
|
|
806
|
+
getComputerUseSystemStatus(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ComputerUseStatusResponse, any, {}>>;
|
|
807
807
|
/**
|
|
808
808
|
* Get information about all available displays
|
|
809
809
|
* @summary Get display information
|
|
@@ -811,7 +811,7 @@ export declare class ComputerUseApi extends BaseAPI {
|
|
|
811
811
|
* @throws {RequiredError}
|
|
812
812
|
* @memberof ComputerUseApi
|
|
813
813
|
*/
|
|
814
|
-
getDisplayInfo(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DisplayInfoResponse, any>>;
|
|
814
|
+
getDisplayInfo(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DisplayInfoResponse, any, {}>>;
|
|
815
815
|
/**
|
|
816
816
|
* Get the current mouse cursor position
|
|
817
817
|
* @summary Get mouse position
|
|
@@ -819,7 +819,7 @@ export declare class ComputerUseApi extends BaseAPI {
|
|
|
819
819
|
* @throws {RequiredError}
|
|
820
820
|
* @memberof ComputerUseApi
|
|
821
821
|
*/
|
|
822
|
-
getMousePosition(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<MousePositionResponse, any>>;
|
|
822
|
+
getMousePosition(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<MousePositionResponse, any, {}>>;
|
|
823
823
|
/**
|
|
824
824
|
* Get errors for a specific computer use process
|
|
825
825
|
* @summary Get process errors
|
|
@@ -828,7 +828,7 @@ export declare class ComputerUseApi extends BaseAPI {
|
|
|
828
828
|
* @throws {RequiredError}
|
|
829
829
|
* @memberof ComputerUseApi
|
|
830
830
|
*/
|
|
831
|
-
getProcessErrors(processName: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ProcessErrorsResponse, any>>;
|
|
831
|
+
getProcessErrors(processName: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ProcessErrorsResponse, any, {}>>;
|
|
832
832
|
/**
|
|
833
833
|
* Get logs for a specific computer use process
|
|
834
834
|
* @summary Get process logs
|
|
@@ -837,7 +837,7 @@ export declare class ComputerUseApi extends BaseAPI {
|
|
|
837
837
|
* @throws {RequiredError}
|
|
838
838
|
* @memberof ComputerUseApi
|
|
839
839
|
*/
|
|
840
|
-
getProcessLogs(processName: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ProcessLogsResponse, any>>;
|
|
840
|
+
getProcessLogs(processName: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ProcessLogsResponse, any, {}>>;
|
|
841
841
|
/**
|
|
842
842
|
* Check if a specific computer use process is running
|
|
843
843
|
* @summary Get specific process status
|
|
@@ -846,7 +846,7 @@ export declare class ComputerUseApi extends BaseAPI {
|
|
|
846
846
|
* @throws {RequiredError}
|
|
847
847
|
* @memberof ComputerUseApi
|
|
848
848
|
*/
|
|
849
|
-
getProcessStatus(processName: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ProcessStatusResponse, any>>;
|
|
849
|
+
getProcessStatus(processName: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ProcessStatusResponse, any, {}>>;
|
|
850
850
|
/**
|
|
851
851
|
* Get details of a specific recording by ID
|
|
852
852
|
* @summary Get recording details
|
|
@@ -855,7 +855,7 @@ export declare class ComputerUseApi extends BaseAPI {
|
|
|
855
855
|
* @throws {RequiredError}
|
|
856
856
|
* @memberof ComputerUseApi
|
|
857
857
|
*/
|
|
858
|
-
getRecording(id: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Recording, any>>;
|
|
858
|
+
getRecording(id: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Recording, any, {}>>;
|
|
859
859
|
/**
|
|
860
860
|
* Get information about all open windows
|
|
861
861
|
* @summary Get windows information
|
|
@@ -863,7 +863,7 @@ export declare class ComputerUseApi extends BaseAPI {
|
|
|
863
863
|
* @throws {RequiredError}
|
|
864
864
|
* @memberof ComputerUseApi
|
|
865
865
|
*/
|
|
866
|
-
getWindows(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<WindowsResponse, any>>;
|
|
866
|
+
getWindows(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<WindowsResponse, any, {}>>;
|
|
867
867
|
/**
|
|
868
868
|
* Get a list of all recordings (active and completed)
|
|
869
869
|
* @summary List all recordings
|
|
@@ -871,7 +871,7 @@ export declare class ComputerUseApi extends BaseAPI {
|
|
|
871
871
|
* @throws {RequiredError}
|
|
872
872
|
* @memberof ComputerUseApi
|
|
873
873
|
*/
|
|
874
|
-
listRecordings(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ListRecordingsResponse, any>>;
|
|
874
|
+
listRecordings(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ListRecordingsResponse, any, {}>>;
|
|
875
875
|
/**
|
|
876
876
|
* Move the mouse cursor to the specified coordinates
|
|
877
877
|
* @summary Move mouse cursor
|
|
@@ -880,7 +880,7 @@ export declare class ComputerUseApi extends BaseAPI {
|
|
|
880
880
|
* @throws {RequiredError}
|
|
881
881
|
* @memberof ComputerUseApi
|
|
882
882
|
*/
|
|
883
|
-
moveMouse(request: MouseMoveRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<MousePositionResponse, any>>;
|
|
883
|
+
moveMouse(request: MouseMoveRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<MousePositionResponse, any, {}>>;
|
|
884
884
|
/**
|
|
885
885
|
* Press a hotkey combination (e.g., ctrl+c, cmd+v)
|
|
886
886
|
* @summary Press hotkey
|
|
@@ -889,7 +889,7 @@ export declare class ComputerUseApi extends BaseAPI {
|
|
|
889
889
|
* @throws {RequiredError}
|
|
890
890
|
* @memberof ComputerUseApi
|
|
891
891
|
*/
|
|
892
|
-
pressHotkey(request: KeyboardHotkeyRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<object, any>>;
|
|
892
|
+
pressHotkey(request: KeyboardHotkeyRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<object, any, {}>>;
|
|
893
893
|
/**
|
|
894
894
|
* Press a key with optional modifiers
|
|
895
895
|
* @summary Press key
|
|
@@ -898,7 +898,7 @@ export declare class ComputerUseApi extends BaseAPI {
|
|
|
898
898
|
* @throws {RequiredError}
|
|
899
899
|
* @memberof ComputerUseApi
|
|
900
900
|
*/
|
|
901
|
-
pressKey(request: KeyboardPressRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<object, any>>;
|
|
901
|
+
pressKey(request: KeyboardPressRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<object, any, {}>>;
|
|
902
902
|
/**
|
|
903
903
|
* Restart a specific computer use process
|
|
904
904
|
* @summary Restart specific process
|
|
@@ -907,7 +907,7 @@ export declare class ComputerUseApi extends BaseAPI {
|
|
|
907
907
|
* @throws {RequiredError}
|
|
908
908
|
* @memberof ComputerUseApi
|
|
909
909
|
*/
|
|
910
|
-
restartProcess(processName: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ProcessRestartResponse, any>>;
|
|
910
|
+
restartProcess(processName: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ProcessRestartResponse, any, {}>>;
|
|
911
911
|
/**
|
|
912
912
|
* Scroll the mouse wheel at the specified coordinates
|
|
913
913
|
* @summary Scroll mouse wheel
|
|
@@ -916,7 +916,7 @@ export declare class ComputerUseApi extends BaseAPI {
|
|
|
916
916
|
* @throws {RequiredError}
|
|
917
917
|
* @memberof ComputerUseApi
|
|
918
918
|
*/
|
|
919
|
-
scroll(request: MouseScrollRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ScrollResponse, any>>;
|
|
919
|
+
scroll(request: MouseScrollRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ScrollResponse, any, {}>>;
|
|
920
920
|
/**
|
|
921
921
|
* Start all computer use processes and return their status
|
|
922
922
|
* @summary Start computer use processes
|
|
@@ -924,7 +924,7 @@ export declare class ComputerUseApi extends BaseAPI {
|
|
|
924
924
|
* @throws {RequiredError}
|
|
925
925
|
* @memberof ComputerUseApi
|
|
926
926
|
*/
|
|
927
|
-
startComputerUse(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ComputerUseStartResponse, any>>;
|
|
927
|
+
startComputerUse(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ComputerUseStartResponse, any, {}>>;
|
|
928
928
|
/**
|
|
929
929
|
* Start a new screen recording session
|
|
930
930
|
* @summary Start a new recording
|
|
@@ -933,7 +933,7 @@ export declare class ComputerUseApi extends BaseAPI {
|
|
|
933
933
|
* @throws {RequiredError}
|
|
934
934
|
* @memberof ComputerUseApi
|
|
935
935
|
*/
|
|
936
|
-
startRecording(request?: StartRecordingRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Recording, any>>;
|
|
936
|
+
startRecording(request?: StartRecordingRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Recording, any, {}>>;
|
|
937
937
|
/**
|
|
938
938
|
* Stop all computer use processes and return their status
|
|
939
939
|
* @summary Stop computer use processes
|
|
@@ -941,7 +941,7 @@ export declare class ComputerUseApi extends BaseAPI {
|
|
|
941
941
|
* @throws {RequiredError}
|
|
942
942
|
* @memberof ComputerUseApi
|
|
943
943
|
*/
|
|
944
|
-
stopComputerUse(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ComputerUseStopResponse, any>>;
|
|
944
|
+
stopComputerUse(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ComputerUseStopResponse, any, {}>>;
|
|
945
945
|
/**
|
|
946
946
|
* Stop an active screen recording session
|
|
947
947
|
* @summary Stop a recording
|
|
@@ -950,7 +950,7 @@ export declare class ComputerUseApi extends BaseAPI {
|
|
|
950
950
|
* @throws {RequiredError}
|
|
951
951
|
* @memberof ComputerUseApi
|
|
952
952
|
*/
|
|
953
|
-
stopRecording(request: StopRecordingRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Recording, any>>;
|
|
953
|
+
stopRecording(request: StopRecordingRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Recording, any, {}>>;
|
|
954
954
|
/**
|
|
955
955
|
* Take a compressed screenshot of a specific region of the screen
|
|
956
956
|
* @summary Take a compressed region screenshot
|
|
@@ -966,7 +966,7 @@ export declare class ComputerUseApi extends BaseAPI {
|
|
|
966
966
|
* @throws {RequiredError}
|
|
967
967
|
* @memberof ComputerUseApi
|
|
968
968
|
*/
|
|
969
|
-
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>>;
|
|
969
|
+
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, {}>>;
|
|
970
970
|
/**
|
|
971
971
|
* Take a compressed screenshot of the entire screen
|
|
972
972
|
* @summary Take a compressed screenshot
|
|
@@ -978,7 +978,7 @@ export declare class ComputerUseApi extends BaseAPI {
|
|
|
978
978
|
* @throws {RequiredError}
|
|
979
979
|
* @memberof ComputerUseApi
|
|
980
980
|
*/
|
|
981
|
-
takeCompressedScreenshot(showCursor?: boolean, format?: string, quality?: number, scale?: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ScreenshotResponse, any>>;
|
|
981
|
+
takeCompressedScreenshot(showCursor?: boolean, format?: string, quality?: number, scale?: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ScreenshotResponse, any, {}>>;
|
|
982
982
|
/**
|
|
983
983
|
* Take a screenshot of a specific region of the screen
|
|
984
984
|
* @summary Take a region screenshot
|
|
@@ -991,7 +991,7 @@ export declare class ComputerUseApi extends BaseAPI {
|
|
|
991
991
|
* @throws {RequiredError}
|
|
992
992
|
* @memberof ComputerUseApi
|
|
993
993
|
*/
|
|
994
|
-
takeRegionScreenshot(x: number, y: number, width: number, height: number, showCursor?: boolean, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ScreenshotResponse, any>>;
|
|
994
|
+
takeRegionScreenshot(x: number, y: number, width: number, height: number, showCursor?: boolean, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ScreenshotResponse, any, {}>>;
|
|
995
995
|
/**
|
|
996
996
|
* Take a screenshot of the entire screen
|
|
997
997
|
* @summary Take a screenshot
|
|
@@ -1000,7 +1000,7 @@ export declare class ComputerUseApi extends BaseAPI {
|
|
|
1000
1000
|
* @throws {RequiredError}
|
|
1001
1001
|
* @memberof ComputerUseApi
|
|
1002
1002
|
*/
|
|
1003
|
-
takeScreenshot(showCursor?: boolean, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ScreenshotResponse, any>>;
|
|
1003
|
+
takeScreenshot(showCursor?: boolean, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ScreenshotResponse, any, {}>>;
|
|
1004
1004
|
/**
|
|
1005
1005
|
* Type text with optional delay between keystrokes
|
|
1006
1006
|
* @summary Type text
|
|
@@ -1009,5 +1009,5 @@ export declare class ComputerUseApi extends BaseAPI {
|
|
|
1009
1009
|
* @throws {RequiredError}
|
|
1010
1010
|
* @memberof ComputerUseApi
|
|
1011
1011
|
*/
|
|
1012
|
-
typeText(request: KeyboardTypeRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<object, any>>;
|
|
1012
|
+
typeText(request: KeyboardTypeRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<object, any, {}>>;
|
|
1013
1013
|
}
|
|
@@ -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,7 +445,7 @@ 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
|
|
@@ -454,7 +454,7 @@ export declare class FileSystemApi extends BaseAPI {
|
|
|
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
|
}
|
package/src/api/git-api.d.ts
CHANGED
|
@@ -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
|
}
|
package/src/api/info-api.d.ts
CHANGED
|
@@ -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
|
}
|
|
@@ -142,7 +142,7 @@ export declare class InterpreterApi extends BaseAPI {
|
|
|
142
142
|
* @throws {RequiredError}
|
|
143
143
|
* @memberof InterpreterApi
|
|
144
144
|
*/
|
|
145
|
-
createInterpreterContext(request: CreateContextRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<InterpreterContext, any>>;
|
|
145
|
+
createInterpreterContext(request: CreateContextRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<InterpreterContext, any, {}>>;
|
|
146
146
|
/**
|
|
147
147
|
* Deletes an interpreter context and shuts down its worker process
|
|
148
148
|
* @summary Delete an interpreter context
|
|
@@ -153,7 +153,7 @@ export declare class InterpreterApi extends BaseAPI {
|
|
|
153
153
|
*/
|
|
154
154
|
deleteInterpreterContext(id: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<{
|
|
155
155
|
[key: string]: string;
|
|
156
|
-
}, any>>;
|
|
156
|
+
}, any, {}>>;
|
|
157
157
|
/**
|
|
158
158
|
* Executes code in a specified context (or default context if not specified) via WebSocket streaming
|
|
159
159
|
* @summary Execute code in an interpreter context
|
|
@@ -161,7 +161,7 @@ export declare class InterpreterApi extends BaseAPI {
|
|
|
161
161
|
* @throws {RequiredError}
|
|
162
162
|
* @memberof InterpreterApi
|
|
163
163
|
*/
|
|
164
|
-
executeInterpreterCode(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
|
|
164
|
+
executeInterpreterCode(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any, {}>>;
|
|
165
165
|
/**
|
|
166
166
|
* Returns information about all user-created interpreter contexts (excludes default context)
|
|
167
167
|
* @summary List all user-created interpreter contexts
|
|
@@ -169,5 +169,5 @@ export declare class InterpreterApi extends BaseAPI {
|
|
|
169
169
|
* @throws {RequiredError}
|
|
170
170
|
* @memberof InterpreterApi
|
|
171
171
|
*/
|
|
172
|
-
listInterpreterContexts(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ListContextsResponse, any>>;
|
|
172
|
+
listInterpreterContexts(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ListContextsResponse, any, {}>>;
|
|
173
173
|
}
|
package/src/api/lsp-api.d.ts
CHANGED
|
@@ -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
|
}
|
package/src/api/port-api.d.ts
CHANGED
|
@@ -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
|
}
|
package/src/api/process-api.d.ts
CHANGED
|
@@ -437,7 +437,7 @@ export declare class ProcessApi extends BaseAPI {
|
|
|
437
437
|
* @throws {RequiredError}
|
|
438
438
|
* @memberof ProcessApi
|
|
439
439
|
*/
|
|
440
|
-
connectPtySession(sessionId: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
|
|
440
|
+
connectPtySession(sessionId: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any, {}>>;
|
|
441
441
|
/**
|
|
442
442
|
* Create a new pseudo-terminal session with specified configuration
|
|
443
443
|
* @summary Create a new PTY session
|
|
@@ -446,7 +446,7 @@ export declare class ProcessApi extends BaseAPI {
|
|
|
446
446
|
* @throws {RequiredError}
|
|
447
447
|
* @memberof ProcessApi
|
|
448
448
|
*/
|
|
449
|
-
createPtySession(request: PtyCreateRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<PtyCreateResponse, any>>;
|
|
449
|
+
createPtySession(request: PtyCreateRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<PtyCreateResponse, any, {}>>;
|
|
450
450
|
/**
|
|
451
451
|
* Create a new shell session for command execution
|
|
452
452
|
* @summary Create a new session
|
|
@@ -455,7 +455,7 @@ export declare class ProcessApi extends BaseAPI {
|
|
|
455
455
|
* @throws {RequiredError}
|
|
456
456
|
* @memberof ProcessApi
|
|
457
457
|
*/
|
|
458
|
-
createSession(request: CreateSessionRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
|
|
458
|
+
createSession(request: CreateSessionRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any, {}>>;
|
|
459
459
|
/**
|
|
460
460
|
* Delete a pseudo-terminal session and terminate its process
|
|
461
461
|
* @summary Delete a PTY session
|
|
@@ -466,7 +466,7 @@ export declare class ProcessApi extends BaseAPI {
|
|
|
466
466
|
*/
|
|
467
467
|
deletePtySession(sessionId: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<{
|
|
468
468
|
[key: string]: object;
|
|
469
|
-
}, any>>;
|
|
469
|
+
}, any, {}>>;
|
|
470
470
|
/**
|
|
471
471
|
* Delete an existing shell session
|
|
472
472
|
* @summary Delete a session
|
|
@@ -475,7 +475,7 @@ export declare class ProcessApi extends BaseAPI {
|
|
|
475
475
|
* @throws {RequiredError}
|
|
476
476
|
* @memberof ProcessApi
|
|
477
477
|
*/
|
|
478
|
-
deleteSession(sessionId: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
|
|
478
|
+
deleteSession(sessionId: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any, {}>>;
|
|
479
479
|
/**
|
|
480
480
|
* Execute a shell command and return the output and exit code
|
|
481
481
|
* @summary Execute a command
|
|
@@ -484,7 +484,7 @@ export declare class ProcessApi extends BaseAPI {
|
|
|
484
484
|
* @throws {RequiredError}
|
|
485
485
|
* @memberof ProcessApi
|
|
486
486
|
*/
|
|
487
|
-
executeCommand(request: ExecuteRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ExecuteResponse, any>>;
|
|
487
|
+
executeCommand(request: ExecuteRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ExecuteResponse, any, {}>>;
|
|
488
488
|
/**
|
|
489
489
|
* Get detailed information about a specific pseudo-terminal session
|
|
490
490
|
* @summary Get PTY session information
|
|
@@ -493,7 +493,7 @@ export declare class ProcessApi extends BaseAPI {
|
|
|
493
493
|
* @throws {RequiredError}
|
|
494
494
|
* @memberof ProcessApi
|
|
495
495
|
*/
|
|
496
|
-
getPtySession(sessionId: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<PtySessionInfo, any>>;
|
|
496
|
+
getPtySession(sessionId: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<PtySessionInfo, any, {}>>;
|
|
497
497
|
/**
|
|
498
498
|
* Get details of a specific session including its commands
|
|
499
499
|
* @summary Get session details
|
|
@@ -502,7 +502,7 @@ export declare class ProcessApi extends BaseAPI {
|
|
|
502
502
|
* @throws {RequiredError}
|
|
503
503
|
* @memberof ProcessApi
|
|
504
504
|
*/
|
|
505
|
-
getSession(sessionId: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Session, any>>;
|
|
505
|
+
getSession(sessionId: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Session, any, {}>>;
|
|
506
506
|
/**
|
|
507
507
|
* Get details of a specific command within a session
|
|
508
508
|
* @summary Get session command details
|
|
@@ -512,7 +512,7 @@ export declare class ProcessApi extends BaseAPI {
|
|
|
512
512
|
* @throws {RequiredError}
|
|
513
513
|
* @memberof ProcessApi
|
|
514
514
|
*/
|
|
515
|
-
getSessionCommand(sessionId: string, commandId: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Command, any>>;
|
|
515
|
+
getSessionCommand(sessionId: string, commandId: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Command, any, {}>>;
|
|
516
516
|
/**
|
|
517
517
|
* Get logs for a specific command within a session. Supports both HTTP and WebSocket streaming.
|
|
518
518
|
* @summary Get session command logs
|
|
@@ -523,7 +523,7 @@ export declare class ProcessApi extends BaseAPI {
|
|
|
523
523
|
* @throws {RequiredError}
|
|
524
524
|
* @memberof ProcessApi
|
|
525
525
|
*/
|
|
526
|
-
getSessionCommandLogs(sessionId: string, commandId: string, follow?: boolean, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<string, any>>;
|
|
526
|
+
getSessionCommandLogs(sessionId: string, commandId: string, follow?: boolean, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<string, any, {}>>;
|
|
527
527
|
/**
|
|
528
528
|
* Get a list of all active pseudo-terminal sessions
|
|
529
529
|
* @summary List all PTY sessions
|
|
@@ -531,7 +531,7 @@ export declare class ProcessApi extends BaseAPI {
|
|
|
531
531
|
* @throws {RequiredError}
|
|
532
532
|
* @memberof ProcessApi
|
|
533
533
|
*/
|
|
534
|
-
listPtySessions(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<PtyListResponse, any>>;
|
|
534
|
+
listPtySessions(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<PtyListResponse, any, {}>>;
|
|
535
535
|
/**
|
|
536
536
|
* Get a list of all active shell sessions
|
|
537
537
|
* @summary List all sessions
|
|
@@ -539,7 +539,7 @@ export declare class ProcessApi extends BaseAPI {
|
|
|
539
539
|
* @throws {RequiredError}
|
|
540
540
|
* @memberof ProcessApi
|
|
541
541
|
*/
|
|
542
|
-
listSessions(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Session[], any>>;
|
|
542
|
+
listSessions(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Session[], any, {}>>;
|
|
543
543
|
/**
|
|
544
544
|
* Resize the terminal dimensions of a pseudo-terminal session
|
|
545
545
|
* @summary Resize a PTY session
|
|
@@ -549,7 +549,7 @@ export declare class ProcessApi extends BaseAPI {
|
|
|
549
549
|
* @throws {RequiredError}
|
|
550
550
|
* @memberof ProcessApi
|
|
551
551
|
*/
|
|
552
|
-
resizePtySession(sessionId: string, request: PtyResizeRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<PtySessionInfo, any>>;
|
|
552
|
+
resizePtySession(sessionId: string, request: PtyResizeRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<PtySessionInfo, any, {}>>;
|
|
553
553
|
/**
|
|
554
554
|
* Send input data to a running command in a session for interactive execution
|
|
555
555
|
* @summary Send input to command
|
|
@@ -560,7 +560,7 @@ export declare class ProcessApi extends BaseAPI {
|
|
|
560
560
|
* @throws {RequiredError}
|
|
561
561
|
* @memberof ProcessApi
|
|
562
562
|
*/
|
|
563
|
-
sendInput(sessionId: string, commandId: string, request: SessionSendInputRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
|
|
563
|
+
sendInput(sessionId: string, commandId: string, request: SessionSendInputRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any, {}>>;
|
|
564
564
|
/**
|
|
565
565
|
* Execute a command within an existing shell session
|
|
566
566
|
* @summary Execute command in session
|
|
@@ -570,5 +570,5 @@ export declare class ProcessApi extends BaseAPI {
|
|
|
570
570
|
* @throws {RequiredError}
|
|
571
571
|
* @memberof ProcessApi
|
|
572
572
|
*/
|
|
573
|
-
sessionExecuteCommand(sessionId: string, request: SessionExecuteRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<SessionExecuteResponse, any>>;
|
|
573
|
+
sessionExecuteCommand(sessionId: string, request: SessionExecuteRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<SessionExecuteResponse, any, {}>>;
|
|
574
574
|
}
|
|
@@ -0,0 +1,80 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Daytona Toolbox API
|
|
3
|
+
* Daytona Toolbox API
|
|
4
|
+
*
|
|
5
|
+
* The version of the OpenAPI document: v0.0.0-dev
|
|
6
|
+
*
|
|
7
|
+
*
|
|
8
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
9
|
+
* https://openapi-generator.tech
|
|
10
|
+
* Do not edit the class manually.
|
|
11
|
+
*/
|
|
12
|
+
import type { Configuration } from '../configuration';
|
|
13
|
+
import type { AxiosPromise, AxiosInstance, RawAxiosRequestConfig } from 'axios';
|
|
14
|
+
import { type RequestArgs, BaseAPI } from '../base';
|
|
15
|
+
import type { InitializeRequest } from '../models';
|
|
16
|
+
/**
|
|
17
|
+
* ServerApi - axios parameter creator
|
|
18
|
+
* @export
|
|
19
|
+
*/
|
|
20
|
+
export declare const ServerApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
21
|
+
/**
|
|
22
|
+
* Set the auth token and initialize telemetry for the toolbox server
|
|
23
|
+
* @summary Initialize toolbox server
|
|
24
|
+
* @param {InitializeRequest} request Initialization request
|
|
25
|
+
* @param {*} [options] Override http request option.
|
|
26
|
+
* @throws {RequiredError}
|
|
27
|
+
*/
|
|
28
|
+
initialize: (request: InitializeRequest, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
29
|
+
};
|
|
30
|
+
/**
|
|
31
|
+
* ServerApi - functional programming interface
|
|
32
|
+
* @export
|
|
33
|
+
*/
|
|
34
|
+
export declare const ServerApiFp: (configuration?: Configuration) => {
|
|
35
|
+
/**
|
|
36
|
+
* Set the auth token and initialize telemetry for the toolbox server
|
|
37
|
+
* @summary Initialize toolbox server
|
|
38
|
+
* @param {InitializeRequest} request Initialization request
|
|
39
|
+
* @param {*} [options] Override http request option.
|
|
40
|
+
* @throws {RequiredError}
|
|
41
|
+
*/
|
|
42
|
+
initialize(request: InitializeRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<{
|
|
43
|
+
[key: string]: string;
|
|
44
|
+
}>>;
|
|
45
|
+
};
|
|
46
|
+
/**
|
|
47
|
+
* ServerApi - factory interface
|
|
48
|
+
* @export
|
|
49
|
+
*/
|
|
50
|
+
export declare const ServerApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
51
|
+
/**
|
|
52
|
+
* Set the auth token and initialize telemetry for the toolbox server
|
|
53
|
+
* @summary Initialize toolbox server
|
|
54
|
+
* @param {InitializeRequest} request Initialization request
|
|
55
|
+
* @param {*} [options] Override http request option.
|
|
56
|
+
* @throws {RequiredError}
|
|
57
|
+
*/
|
|
58
|
+
initialize(request: InitializeRequest, options?: RawAxiosRequestConfig): AxiosPromise<{
|
|
59
|
+
[key: string]: string;
|
|
60
|
+
}>;
|
|
61
|
+
};
|
|
62
|
+
/**
|
|
63
|
+
* ServerApi - object-oriented interface
|
|
64
|
+
* @export
|
|
65
|
+
* @class ServerApi
|
|
66
|
+
* @extends {BaseAPI}
|
|
67
|
+
*/
|
|
68
|
+
export declare class ServerApi extends BaseAPI {
|
|
69
|
+
/**
|
|
70
|
+
* Set the auth token and initialize telemetry for the toolbox server
|
|
71
|
+
* @summary Initialize toolbox server
|
|
72
|
+
* @param {InitializeRequest} request Initialization request
|
|
73
|
+
* @param {*} [options] Override http request option.
|
|
74
|
+
* @throws {RequiredError}
|
|
75
|
+
* @memberof ServerApi
|
|
76
|
+
*/
|
|
77
|
+
initialize(request: InitializeRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<{
|
|
78
|
+
[key: string]: string;
|
|
79
|
+
}, any, {}>>;
|
|
80
|
+
}
|
|
@@ -0,0 +1,127 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/* tslint:disable */
|
|
3
|
+
/* eslint-disable */
|
|
4
|
+
/**
|
|
5
|
+
* Daytona Toolbox API
|
|
6
|
+
* Daytona Toolbox API
|
|
7
|
+
*
|
|
8
|
+
* The version of the OpenAPI document: v0.0.0-dev
|
|
9
|
+
*
|
|
10
|
+
*
|
|
11
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
12
|
+
* https://openapi-generator.tech
|
|
13
|
+
* Do not edit the class manually.
|
|
14
|
+
*/
|
|
15
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
16
|
+
exports.ServerApi = exports.ServerApiFactory = exports.ServerApiFp = exports.ServerApiAxiosParamCreator = void 0;
|
|
17
|
+
const axios_1 = require("axios");
|
|
18
|
+
// Some imports not used depending on template conditions
|
|
19
|
+
// @ts-ignore
|
|
20
|
+
const common_1 = require("../common");
|
|
21
|
+
// @ts-ignore
|
|
22
|
+
const base_1 = require("../base");
|
|
23
|
+
/**
|
|
24
|
+
* ServerApi - axios parameter creator
|
|
25
|
+
* @export
|
|
26
|
+
*/
|
|
27
|
+
const ServerApiAxiosParamCreator = function (configuration) {
|
|
28
|
+
return {
|
|
29
|
+
/**
|
|
30
|
+
* Set the auth token and initialize telemetry for the toolbox server
|
|
31
|
+
* @summary Initialize toolbox server
|
|
32
|
+
* @param {InitializeRequest} request Initialization request
|
|
33
|
+
* @param {*} [options] Override http request option.
|
|
34
|
+
* @throws {RequiredError}
|
|
35
|
+
*/
|
|
36
|
+
initialize: async (request, options = {}) => {
|
|
37
|
+
// verify required parameter 'request' is not null or undefined
|
|
38
|
+
(0, common_1.assertParamExists)('initialize', 'request', request);
|
|
39
|
+
const localVarPath = `/init`;
|
|
40
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
41
|
+
const localVarUrlObj = new URL(localVarPath, common_1.DUMMY_BASE_URL);
|
|
42
|
+
let baseOptions;
|
|
43
|
+
if (configuration) {
|
|
44
|
+
baseOptions = configuration.baseOptions;
|
|
45
|
+
}
|
|
46
|
+
const localVarRequestOptions = { method: 'POST', ...baseOptions, ...options };
|
|
47
|
+
const localVarHeaderParameter = {};
|
|
48
|
+
const localVarQueryParameter = {};
|
|
49
|
+
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
50
|
+
(0, common_1.setSearchParams)(localVarUrlObj, localVarQueryParameter);
|
|
51
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
52
|
+
localVarRequestOptions.headers = { ...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers };
|
|
53
|
+
localVarRequestOptions.data = (0, common_1.serializeDataIfNeeded)(request, localVarRequestOptions, configuration);
|
|
54
|
+
return {
|
|
55
|
+
url: (0, common_1.toPathString)(localVarUrlObj),
|
|
56
|
+
options: localVarRequestOptions,
|
|
57
|
+
};
|
|
58
|
+
},
|
|
59
|
+
};
|
|
60
|
+
};
|
|
61
|
+
exports.ServerApiAxiosParamCreator = ServerApiAxiosParamCreator;
|
|
62
|
+
/**
|
|
63
|
+
* ServerApi - functional programming interface
|
|
64
|
+
* @export
|
|
65
|
+
*/
|
|
66
|
+
const ServerApiFp = function (configuration) {
|
|
67
|
+
const localVarAxiosParamCreator = (0, exports.ServerApiAxiosParamCreator)(configuration);
|
|
68
|
+
return {
|
|
69
|
+
/**
|
|
70
|
+
* Set the auth token and initialize telemetry for the toolbox server
|
|
71
|
+
* @summary Initialize toolbox server
|
|
72
|
+
* @param {InitializeRequest} request Initialization request
|
|
73
|
+
* @param {*} [options] Override http request option.
|
|
74
|
+
* @throws {RequiredError}
|
|
75
|
+
*/
|
|
76
|
+
async initialize(request, options) {
|
|
77
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.initialize(request, options);
|
|
78
|
+
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
79
|
+
const localVarOperationServerBasePath = base_1.operationServerMap['ServerApi.initialize']?.[localVarOperationServerIndex]?.url;
|
|
80
|
+
return (axios, basePath) => (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
81
|
+
},
|
|
82
|
+
};
|
|
83
|
+
};
|
|
84
|
+
exports.ServerApiFp = ServerApiFp;
|
|
85
|
+
/**
|
|
86
|
+
* ServerApi - factory interface
|
|
87
|
+
* @export
|
|
88
|
+
*/
|
|
89
|
+
const ServerApiFactory = function (configuration, basePath, axios) {
|
|
90
|
+
const localVarFp = (0, exports.ServerApiFp)(configuration);
|
|
91
|
+
return {
|
|
92
|
+
/**
|
|
93
|
+
* Set the auth token and initialize telemetry for the toolbox server
|
|
94
|
+
* @summary Initialize toolbox server
|
|
95
|
+
* @param {InitializeRequest} request Initialization request
|
|
96
|
+
* @param {*} [options] Override http request option.
|
|
97
|
+
* @throws {RequiredError}
|
|
98
|
+
*/
|
|
99
|
+
initialize(request, options) {
|
|
100
|
+
return localVarFp.initialize(request, options).then((request) => request(axios, basePath));
|
|
101
|
+
},
|
|
102
|
+
};
|
|
103
|
+
};
|
|
104
|
+
exports.ServerApiFactory = ServerApiFactory;
|
|
105
|
+
/**
|
|
106
|
+
* ServerApi - object-oriented interface
|
|
107
|
+
* @export
|
|
108
|
+
* @class ServerApi
|
|
109
|
+
* @extends {BaseAPI}
|
|
110
|
+
*/
|
|
111
|
+
class ServerApi extends base_1.BaseAPI {
|
|
112
|
+
/**
|
|
113
|
+
* Set the auth token and initialize telemetry for the toolbox server
|
|
114
|
+
* @summary Initialize toolbox server
|
|
115
|
+
* @param {InitializeRequest} request Initialization request
|
|
116
|
+
* @param {*} [options] Override http request option.
|
|
117
|
+
* @throws {RequiredError}
|
|
118
|
+
* @memberof ServerApi
|
|
119
|
+
*/
|
|
120
|
+
initialize(request, options) {
|
|
121
|
+
return (0, exports.ServerApiFp)(this.configuration)
|
|
122
|
+
.initialize(request, options)
|
|
123
|
+
.then((request) => request(this.axios, this.basePath));
|
|
124
|
+
}
|
|
125
|
+
}
|
|
126
|
+
exports.ServerApi = ServerApi;
|
|
127
|
+
//# sourceMappingURL=server-api.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"server-api.js","sourceRoot":"","sources":["../../../../../libs/toolbox-api-client/src/api/server-api.ts"],"names":[],"mappings":";AAAA,oBAAoB;AACpB,oBAAoB;AACpB;;;;;;;;;;GAUG;;;AAIH,iCAA+B;AAC/B,yDAAyD;AACzD,aAAa;AACb,sCAWkB;AAClB,aAAa;AACb,kCAAqH;AAGrH;;;GAGG;AACI,MAAM,0BAA0B,GAAG,UAAU,aAA6B;IAC/E,OAAO;QACL;;;;;;WAMG;QACH,UAAU,EAAE,KAAK,EAAE,OAA0B,EAAE,UAAiC,EAAE,EAAwB,EAAE;YAC1G,+DAA+D;YAC/D,IAAA,0BAAiB,EAAC,YAAY,EAAE,SAAS,EAAE,OAAO,CAAC,CAAA;YACnD,MAAM,YAAY,GAAG,OAAO,CAAA;YAC5B,oFAAoF;YACpF,MAAM,cAAc,GAAG,IAAI,GAAG,CAAC,YAAY,EAAE,uBAAc,CAAC,CAAA;YAC5D,IAAI,WAAW,CAAA;YACf,IAAI,aAAa,EAAE,CAAC;gBAClB,WAAW,GAAG,aAAa,CAAC,WAAW,CAAA;YACzC,CAAC;YAED,MAAM,sBAAsB,GAAG,EAAE,MAAM,EAAE,MAAM,EAAE,GAAG,WAAW,EAAE,GAAG,OAAO,EAAE,CAAA;YAC7E,MAAM,uBAAuB,GAAG,EAAS,CAAA;YACzC,MAAM,sBAAsB,GAAG,EAAS,CAAA;YAExC,uBAAuB,CAAC,cAAc,CAAC,GAAG,kBAAkB,CAAA;YAE5D,IAAA,wBAAe,EAAC,cAAc,EAAE,sBAAsB,CAAC,CAAA;YACvD,IAAI,sBAAsB,GAAG,WAAW,IAAI,WAAW,CAAC,OAAO,CAAC,CAAC,CAAC,WAAW,CAAC,OAAO,CAAC,CAAC,CAAC,EAAE,CAAA;YAC1F,sBAAsB,CAAC,OAAO,GAAG,EAAE,GAAG,uBAAuB,EAAE,GAAG,sBAAsB,EAAE,GAAG,OAAO,CAAC,OAAO,EAAE,CAAA;YAC9G,sBAAsB,CAAC,IAAI,GAAG,IAAA,8BAAqB,EAAC,OAAO,EAAE,sBAAsB,EAAE,aAAa,CAAC,CAAA;YAEnG,OAAO;gBACL,GAAG,EAAE,IAAA,qBAAY,EAAC,cAAc,CAAC;gBACjC,OAAO,EAAE,sBAAsB;aAChC,CAAA;QACH,CAAC;KACF,CAAA;AACH,CAAC,CAAA;AArCY,QAAA,0BAA0B,8BAqCtC;AAED;;;GAGG;AACI,MAAM,WAAW,GAAG,UAAU,aAA6B;IAChE,MAAM,yBAAyB,GAAG,IAAA,kCAA0B,EAAC,aAAa,CAAC,CAAA;IAC3E,OAAO;QACL;;;;;;WAMG;QACH,KAAK,CAAC,UAAU,CACd,OAA0B,EAC1B,OAA+B;YAE/B,MAAM,iBAAiB,GAAG,MAAM,yBAAyB,CAAC,UAAU,CAAC,OAAO,EAAE,OAAO,CAAC,CAAA;YACtF,MAAM,4BAA4B,GAAG,aAAa,EAAE,WAAW,IAAI,CAAC,CAAA;YACpE,MAAM,+BAA+B,GACnC,yBAAkB,CAAC,sBAAsB,CAAC,EAAE,CAAC,4BAA4B,CAAC,EAAE,GAAG,CAAA;YACjF,OAAO,CAAC,KAAK,EAAE,QAAQ,EAAE,EAAE,CACzB,IAAA,8BAAqB,EACnB,iBAAiB,EACjB,eAAW,EACX,gBAAS,EACT,aAAa,CACd,CAAC,KAAK,EAAE,+BAA+B,IAAI,QAAQ,CAAC,CAAA;QACzD,CAAC;KACF,CAAA;AACH,CAAC,CAAA;AA3BY,QAAA,WAAW,eA2BvB;AAED;;;GAGG;AACI,MAAM,gBAAgB,GAAG,UAAU,aAA6B,EAAE,QAAiB,EAAE,KAAqB;IAC/G,MAAM,UAAU,GAAG,IAAA,mBAAW,EAAC,aAAa,CAAC,CAAA;IAC7C,OAAO;QACL;;;;;;WAMG;QACH,UAAU,CAAC,OAA0B,EAAE,OAA+B;YACpE,OAAO,UAAU,CAAC,UAAU,CAAC,OAAO,EAAE,OAAO,CAAC,CAAC,IAAI,CAAC,CAAC,OAAO,EAAE,EAAE,CAAC,OAAO,CAAC,KAAK,EAAE,QAAQ,CAAC,CAAC,CAAA;QAC5F,CAAC;KACF,CAAA;AACH,CAAC,CAAA;AAdY,QAAA,gBAAgB,oBAc5B;AAED;;;;;GAKG;AACH,MAAa,SAAU,SAAQ,cAAO;IACpC;;;;;;;OAOG;IACI,UAAU,CAAC,OAA0B,EAAE,OAA+B;QAC3E,OAAO,IAAA,mBAAW,EAAC,IAAI,CAAC,aAAa,CAAC;aACnC,UAAU,CAAC,OAAO,EAAE,OAAO,CAAC;aAC5B,IAAI,CAAC,CAAC,OAAO,EAAE,EAAE,CAAC,OAAO,CAAC,IAAI,CAAC,KAAK,EAAE,IAAI,CAAC,QAAQ,CAAC,CAAC,CAAA;IAC1D,CAAC;CACF;AAdD,8BAcC"}
|
package/src/api.d.ts
CHANGED
package/src/api.js
CHANGED
|
@@ -34,4 +34,5 @@ __exportStar(require("./api/interpreter-api"), exports);
|
|
|
34
34
|
__exportStar(require("./api/lsp-api"), exports);
|
|
35
35
|
__exportStar(require("./api/port-api"), exports);
|
|
36
36
|
__exportStar(require("./api/process-api"), exports);
|
|
37
|
+
__exportStar(require("./api/server-api"), exports);
|
|
37
38
|
//# sourceMappingURL=api.js.map
|
package/src/api.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"api.js","sourceRoot":"","sources":["../../../../libs/toolbox-api-client/src/api.ts"],"names":[],"mappings":";AAAA,oBAAoB;;;;;;;;;;;;;;;;AAEpB;;;;;;;;;;GAUG;AAEH,yDAAsC;AACtC,wDAAqC;AACrC,gDAA6B;AAC7B,iDAA8B;AAC9B,wDAAqC;AACrC,gDAA6B;AAC7B,iDAA8B;AAC9B,oDAAiC"}
|
|
1
|
+
{"version":3,"file":"api.js","sourceRoot":"","sources":["../../../../libs/toolbox-api-client/src/api.ts"],"names":[],"mappings":";AAAA,oBAAoB;;;;;;;;;;;;;;;;AAEpB;;;;;;;;;;GAUG;AAEH,yDAAsC;AACtC,wDAAqC;AACrC,gDAA6B;AAC7B,iDAA8B;AAC9B,wDAAqC;AACrC,gDAA6B;AAC7B,iDAA8B;AAC9B,oDAAiC;AACjC,mDAAgC"}
|
package/src/models/index.d.ts
CHANGED
|
@@ -24,6 +24,7 @@ export * from './git-commit-response';
|
|
|
24
24
|
export * from './git-git-delete-branch-request';
|
|
25
25
|
export * from './git-repo-request';
|
|
26
26
|
export * from './git-status';
|
|
27
|
+
export * from './initialize-request';
|
|
27
28
|
export * from './interpreter-context';
|
|
28
29
|
export * from './is-port-in-use-response';
|
|
29
30
|
export * from './keyboard-hotkey-request';
|
package/src/models/index.js
CHANGED
|
@@ -40,6 +40,7 @@ __exportStar(require("./git-commit-response"), exports);
|
|
|
40
40
|
__exportStar(require("./git-git-delete-branch-request"), exports);
|
|
41
41
|
__exportStar(require("./git-repo-request"), exports);
|
|
42
42
|
__exportStar(require("./git-status"), exports);
|
|
43
|
+
__exportStar(require("./initialize-request"), exports);
|
|
43
44
|
__exportStar(require("./interpreter-context"), exports);
|
|
44
45
|
__exportStar(require("./is-port-in-use-response"), exports);
|
|
45
46
|
__exportStar(require("./keyboard-hotkey-request"), exports);
|
package/src/models/index.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../../libs/toolbox-api-client/src/models/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;AAAA,4CAAyB;AACzB,uDAAoC;AACpC,oDAAiC;AACjC,oDAAiC;AACjC,gEAA6C;AAC7C,iEAA8C;AAC9C,+DAA4C;AAC5C,2DAAwC;AACxC,2DAAwC;AACxC,iDAA8B;AAC9B,0DAAuC;AACvC,oDAAiC;AACjC,qDAAkC;AAClC,8CAA2B;AAC3B,gDAA6B;AAC7B,2DAAwC;AACxC,oDAAiC;AACjC,uDAAoC;AACpC,yDAAsC;AACtC,sDAAmC;AACnC,oDAAiC;AACjC,uDAAoC;AACpC,wDAAqC;AACrC,kEAA+C;AAC/C,qDAAkC;AAClC,+CAA4B;AAC5B,wDAAqC;AACrC,4DAAyC;AACzC,4DAAyC;AACzC,2DAAwC;AACxC,0DAAuC;AACvC,yDAAsC;AACtC,2DAAwC;AACxC,6DAA0C;AAC1C,0DAAuC;AACvC,yDAAsC;AACtC,iDAA8B;AAC9B,iDAA8B;AAC9B,8CAA2B;AAC3B,uDAAoC;AACpC,+CAA4B;AAC5B,0CAAuB;AACvB,wDAAqC;AACrC,yDAAsC;AACtC,uDAAoC;AACpC,wDAAqC;AACrC,uDAAoC;AACpC,4DAAyC;AACzC,yDAAsC;AACtC,8CAA2B;AAC3B,6CAA0B;AAC1B,4DAAyC;AACzC,0DAAuC;AACvC,6DAA0C;AAC1C,mDAAgC;AAChC,4DAAyC;AACzC,uDAAoC;AACpC,wDAAqC;AACrC,sDAAmC;AACnC,uDAAoC;AACpC,qDAAkC;AAClC,8CAA2B;AAC3B,oDAAiC;AACjC,mDAAgC;AAChC,wDAAqC;AACrC,oDAAiC;AACjC,0DAAuC;AACvC,4CAAyB;AACzB,4DAAyC;AACzC,6DAA0C;AAC1C,+DAA4C;AAC5C,4DAAyC;AACzC,2CAAwB;AACxB,2DAAwC;AACxC,2DAAwC;AACxC,gDAA6B;AAC7B,qDAAkC;AAClC,sDAAmC"}
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../../libs/toolbox-api-client/src/models/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;AAAA,4CAAyB;AACzB,uDAAoC;AACpC,oDAAiC;AACjC,oDAAiC;AACjC,gEAA6C;AAC7C,iEAA8C;AAC9C,+DAA4C;AAC5C,2DAAwC;AACxC,2DAAwC;AACxC,iDAA8B;AAC9B,0DAAuC;AACvC,oDAAiC;AACjC,qDAAkC;AAClC,8CAA2B;AAC3B,gDAA6B;AAC7B,2DAAwC;AACxC,oDAAiC;AACjC,uDAAoC;AACpC,yDAAsC;AACtC,sDAAmC;AACnC,oDAAiC;AACjC,uDAAoC;AACpC,wDAAqC;AACrC,kEAA+C;AAC/C,qDAAkC;AAClC,+CAA4B;AAC5B,uDAAoC;AACpC,wDAAqC;AACrC,4DAAyC;AACzC,4DAAyC;AACzC,2DAAwC;AACxC,0DAAuC;AACvC,yDAAsC;AACtC,2DAAwC;AACxC,6DAA0C;AAC1C,0DAAuC;AACvC,yDAAsC;AACtC,iDAA8B;AAC9B,iDAA8B;AAC9B,8CAA2B;AAC3B,uDAAoC;AACpC,+CAA4B;AAC5B,0CAAuB;AACvB,wDAAqC;AACrC,yDAAsC;AACtC,uDAAoC;AACpC,wDAAqC;AACrC,uDAAoC;AACpC,4DAAyC;AACzC,yDAAsC;AACtC,8CAA2B;AAC3B,6CAA0B;AAC1B,4DAAyC;AACzC,0DAAuC;AACvC,6DAA0C;AAC1C,mDAAgC;AAChC,4DAAyC;AACzC,uDAAoC;AACpC,wDAAqC;AACrC,sDAAmC;AACnC,uDAAoC;AACpC,qDAAkC;AAClC,8CAA2B;AAC3B,oDAAiC;AACjC,mDAAgC;AAChC,wDAAqC;AACrC,oDAAiC;AACjC,0DAAuC;AACvC,4CAAyB;AACzB,4DAAyC;AACzC,6DAA0C;AAC1C,+DAA4C;AAC5C,4DAAyC;AACzC,2CAAwB;AACxB,2DAAwC;AACxC,2DAAwC;AACxC,gDAA6B;AAC7B,qDAAkC;AAClC,sDAAmC"}
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Daytona Toolbox API
|
|
3
|
+
* Daytona Toolbox API
|
|
4
|
+
*
|
|
5
|
+
* The version of the OpenAPI document: v0.0.0-dev
|
|
6
|
+
*
|
|
7
|
+
*
|
|
8
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
9
|
+
* https://openapi-generator.tech
|
|
10
|
+
* Do not edit the class manually.
|
|
11
|
+
*/
|
|
12
|
+
/**
|
|
13
|
+
*
|
|
14
|
+
* @export
|
|
15
|
+
* @interface InitializeRequest
|
|
16
|
+
*/
|
|
17
|
+
export interface InitializeRequest {
|
|
18
|
+
/**
|
|
19
|
+
*
|
|
20
|
+
* @type {string}
|
|
21
|
+
* @memberof InitializeRequest
|
|
22
|
+
*/
|
|
23
|
+
token: string;
|
|
24
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"initialize-request.js","sourceRoot":"","sources":["../../../../../libs/toolbox-api-client/src/models/initialize-request.ts"],"names":[],"mappings":";AAAA,oBAAoB"}
|