@daytona/toolbox-api-client 0.161.0-alpha.2

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.
Files changed (283) hide show
  1. package/package.json +25 -0
  2. package/src/api/computer-use-api.d.ts +1013 -0
  3. package/src/api/computer-use-api.js +1890 -0
  4. package/src/api/computer-use-api.js.map +1 -0
  5. package/src/api/file-system-api.d.ts +519 -0
  6. package/src/api/file-system-api.js +969 -0
  7. package/src/api/file-system-api.js.map +1 -0
  8. package/src/api/git-api.d.ts +414 -0
  9. package/src/api/git-api.js +768 -0
  10. package/src/api/git-api.js.map +1 -0
  11. package/src/api/info-api.d.ts +135 -0
  12. package/src/api/info-api.js +229 -0
  13. package/src/api/info-api.js.map +1 -0
  14. package/src/api/interpreter-api.d.ts +173 -0
  15. package/src/api/interpreter-api.js +300 -0
  16. package/src/api/interpreter-api.js.map +1 -0
  17. package/src/api/lsp-api.d.ts +292 -0
  18. package/src/api/lsp-api.js +547 -0
  19. package/src/api/lsp-api.js.map +1 -0
  20. package/src/api/port-api.d.ts +104 -0
  21. package/src/api/port-api.js +180 -0
  22. package/src/api/port-api.js.map +1 -0
  23. package/src/api/process-api.d.ts +636 -0
  24. package/src/api/process-api.js +1166 -0
  25. package/src/api/process-api.js.map +1 -0
  26. package/src/api/server-api.d.ts +80 -0
  27. package/src/api/server-api.js +125 -0
  28. package/src/api/server-api.js.map +1 -0
  29. package/src/api.d.ts +20 -0
  30. package/src/api.js +39 -0
  31. package/src/api.js.map +1 -0
  32. package/src/base.d.ts +66 -0
  33. package/src/base.js +69 -0
  34. package/src/base.js.map +1 -0
  35. package/src/common.d.ts +65 -0
  36. package/src/common.js +146 -0
  37. package/src/common.js.map +1 -0
  38. package/src/configuration.d.ts +91 -0
  39. package/src/configuration.js +107 -0
  40. package/src/configuration.js.map +1 -0
  41. package/src/index.d.ts +14 -0
  42. package/src/index.js +33 -0
  43. package/src/index.js.map +1 -0
  44. package/src/models/command.d.ts +36 -0
  45. package/src/models/command.js +16 -0
  46. package/src/models/command.js.map +1 -0
  47. package/src/models/completion-context.d.ts +30 -0
  48. package/src/models/completion-context.js +16 -0
  49. package/src/models/completion-context.js.map +1 -0
  50. package/src/models/completion-item.d.ts +60 -0
  51. package/src/models/completion-item.js +16 -0
  52. package/src/models/completion-item.js.map +1 -0
  53. package/src/models/completion-list.d.ts +31 -0
  54. package/src/models/completion-list.js +16 -0
  55. package/src/models/completion-list.js.map +1 -0
  56. package/src/models/computer-use-start-response.d.ts +33 -0
  57. package/src/models/computer-use-start-response.js +16 -0
  58. package/src/models/computer-use-start-response.js.map +1 -0
  59. package/src/models/computer-use-status-response.d.ts +24 -0
  60. package/src/models/computer-use-status-response.js +16 -0
  61. package/src/models/computer-use-status-response.js.map +1 -0
  62. package/src/models/computer-use-stop-response.d.ts +33 -0
  63. package/src/models/computer-use-stop-response.js +16 -0
  64. package/src/models/computer-use-stop-response.js.map +1 -0
  65. package/src/models/create-context-request.d.ts +30 -0
  66. package/src/models/create-context-request.js +16 -0
  67. package/src/models/create-context-request.js.map +1 -0
  68. package/src/models/create-session-request.d.ts +24 -0
  69. package/src/models/create-session-request.js +16 -0
  70. package/src/models/create-session-request.js.map +1 -0
  71. package/src/models/display-info-response.d.ts +25 -0
  72. package/src/models/display-info-response.js +16 -0
  73. package/src/models/display-info-response.js.map +1 -0
  74. package/src/models/display-info.d.ts +54 -0
  75. package/src/models/display-info.js +16 -0
  76. package/src/models/display-info.js.map +1 -0
  77. package/src/models/execute-request.d.ts +36 -0
  78. package/src/models/execute-request.js +16 -0
  79. package/src/models/execute-request.js.map +1 -0
  80. package/src/models/execute-response.d.ts +30 -0
  81. package/src/models/execute-response.js +16 -0
  82. package/src/models/execute-response.js.map +1 -0
  83. package/src/models/file-info.d.ts +66 -0
  84. package/src/models/file-info.js +16 -0
  85. package/src/models/file-info.js.map +1 -0
  86. package/src/models/file-status.d.ts +43 -0
  87. package/src/models/file-status.js +16 -0
  88. package/src/models/file-status.js.map +1 -0
  89. package/src/models/files-download-request.d.ts +24 -0
  90. package/src/models/files-download-request.js +16 -0
  91. package/src/models/files-download-request.js.map +1 -0
  92. package/src/models/git-add-request.d.ts +30 -0
  93. package/src/models/git-add-request.js +16 -0
  94. package/src/models/git-add-request.js.map +1 -0
  95. package/src/models/git-branch-request.d.ts +30 -0
  96. package/src/models/git-branch-request.js +16 -0
  97. package/src/models/git-branch-request.js.map +1 -0
  98. package/src/models/git-checkout-request.d.ts +30 -0
  99. package/src/models/git-checkout-request.js +16 -0
  100. package/src/models/git-checkout-request.js.map +1 -0
  101. package/src/models/git-clone-request.d.ts +54 -0
  102. package/src/models/git-clone-request.js +16 -0
  103. package/src/models/git-clone-request.js.map +1 -0
  104. package/src/models/git-commit-info.d.ts +48 -0
  105. package/src/models/git-commit-info.js +16 -0
  106. package/src/models/git-commit-info.js.map +1 -0
  107. package/src/models/git-commit-request.d.ts +48 -0
  108. package/src/models/git-commit-request.js +16 -0
  109. package/src/models/git-commit-request.js.map +1 -0
  110. package/src/models/git-commit-response.d.ts +24 -0
  111. package/src/models/git-commit-response.js +16 -0
  112. package/src/models/git-commit-response.js.map +1 -0
  113. package/src/models/git-git-delete-branch-request.d.ts +30 -0
  114. package/src/models/git-git-delete-branch-request.js +16 -0
  115. package/src/models/git-git-delete-branch-request.js.map +1 -0
  116. package/src/models/git-repo-request.d.ts +36 -0
  117. package/src/models/git-repo-request.js +16 -0
  118. package/src/models/git-repo-request.js.map +1 -0
  119. package/src/models/git-status.d.ts +49 -0
  120. package/src/models/git-status.js +16 -0
  121. package/src/models/git-status.js.map +1 -0
  122. package/src/models/index.d.ts +79 -0
  123. package/src/models/index.js +96 -0
  124. package/src/models/index.js.map +1 -0
  125. package/src/models/initialize-request.d.ts +24 -0
  126. package/src/models/initialize-request.js +16 -0
  127. package/src/models/initialize-request.js.map +1 -0
  128. package/src/models/interpreter-context.d.ts +48 -0
  129. package/src/models/interpreter-context.js +16 -0
  130. package/src/models/interpreter-context.js.map +1 -0
  131. package/src/models/is-port-in-use-response.d.ts +24 -0
  132. package/src/models/is-port-in-use-response.js +16 -0
  133. package/src/models/is-port-in-use-response.js.map +1 -0
  134. package/src/models/keyboard-hotkey-request.d.ts +24 -0
  135. package/src/models/keyboard-hotkey-request.js +16 -0
  136. package/src/models/keyboard-hotkey-request.js.map +1 -0
  137. package/src/models/keyboard-press-request.d.ts +30 -0
  138. package/src/models/keyboard-press-request.js +16 -0
  139. package/src/models/keyboard-press-request.js.map +1 -0
  140. package/src/models/keyboard-type-request.d.ts +30 -0
  141. package/src/models/keyboard-type-request.js +16 -0
  142. package/src/models/keyboard-type-request.js.map +1 -0
  143. package/src/models/list-branch-response.d.ts +24 -0
  144. package/src/models/list-branch-response.js +16 -0
  145. package/src/models/list-branch-response.js.map +1 -0
  146. package/src/models/list-contexts-response.d.ts +25 -0
  147. package/src/models/list-contexts-response.js +16 -0
  148. package/src/models/list-contexts-response.js.map +1 -0
  149. package/src/models/list-recordings-response.d.ts +25 -0
  150. package/src/models/list-recordings-response.js +16 -0
  151. package/src/models/list-recordings-response.js.map +1 -0
  152. package/src/models/lsp-completion-params.d.ts +50 -0
  153. package/src/models/lsp-completion-params.js +16 -0
  154. package/src/models/lsp-completion-params.js.map +1 -0
  155. package/src/models/lsp-document-request.d.ts +36 -0
  156. package/src/models/lsp-document-request.js +16 -0
  157. package/src/models/lsp-document-request.js.map +1 -0
  158. package/src/models/lsp-location.d.ts +31 -0
  159. package/src/models/lsp-location.js +16 -0
  160. package/src/models/lsp-location.js.map +1 -0
  161. package/src/models/lsp-position.d.ts +30 -0
  162. package/src/models/lsp-position.js +16 -0
  163. package/src/models/lsp-position.js.map +1 -0
  164. package/src/models/lsp-range.d.ts +31 -0
  165. package/src/models/lsp-range.js +16 -0
  166. package/src/models/lsp-range.js.map +1 -0
  167. package/src/models/lsp-server-request.d.ts +30 -0
  168. package/src/models/lsp-server-request.js +16 -0
  169. package/src/models/lsp-server-request.js.map +1 -0
  170. package/src/models/lsp-symbol.d.ts +37 -0
  171. package/src/models/lsp-symbol.js +16 -0
  172. package/src/models/lsp-symbol.js.map +1 -0
  173. package/src/models/match.d.ts +36 -0
  174. package/src/models/match.js +16 -0
  175. package/src/models/match.js.map +1 -0
  176. package/src/models/mouse-click-request.d.ts +42 -0
  177. package/src/models/mouse-click-request.js +16 -0
  178. package/src/models/mouse-click-request.js.map +1 -0
  179. package/src/models/mouse-click-response.d.ts +30 -0
  180. package/src/models/mouse-click-response.js +16 -0
  181. package/src/models/mouse-click-response.js.map +1 -0
  182. package/src/models/mouse-drag-request.d.ts +48 -0
  183. package/src/models/mouse-drag-request.js +16 -0
  184. package/src/models/mouse-drag-request.js.map +1 -0
  185. package/src/models/mouse-drag-response.d.ts +30 -0
  186. package/src/models/mouse-drag-response.js +16 -0
  187. package/src/models/mouse-drag-response.js.map +1 -0
  188. package/src/models/mouse-move-request.d.ts +30 -0
  189. package/src/models/mouse-move-request.js +16 -0
  190. package/src/models/mouse-move-request.js.map +1 -0
  191. package/src/models/mouse-position-response.d.ts +30 -0
  192. package/src/models/mouse-position-response.js +16 -0
  193. package/src/models/mouse-position-response.js.map +1 -0
  194. package/src/models/mouse-scroll-request.d.ts +42 -0
  195. package/src/models/mouse-scroll-request.js +16 -0
  196. package/src/models/mouse-scroll-request.js.map +1 -0
  197. package/src/models/port-list.d.ts +24 -0
  198. package/src/models/port-list.js +16 -0
  199. package/src/models/port-list.js.map +1 -0
  200. package/src/models/position.d.ts +30 -0
  201. package/src/models/position.js +16 -0
  202. package/src/models/position.js.map +1 -0
  203. package/src/models/process-errors-response.d.ts +30 -0
  204. package/src/models/process-errors-response.js +16 -0
  205. package/src/models/process-errors-response.js.map +1 -0
  206. package/src/models/process-logs-response.d.ts +30 -0
  207. package/src/models/process-logs-response.js +16 -0
  208. package/src/models/process-logs-response.js.map +1 -0
  209. package/src/models/process-restart-response.d.ts +30 -0
  210. package/src/models/process-restart-response.js +16 -0
  211. package/src/models/process-restart-response.js.map +1 -0
  212. package/src/models/process-status-response.d.ts +30 -0
  213. package/src/models/process-status-response.js +16 -0
  214. package/src/models/process-status-response.js.map +1 -0
  215. package/src/models/process-status.d.ts +42 -0
  216. package/src/models/process-status.js +16 -0
  217. package/src/models/process-status.js.map +1 -0
  218. package/src/models/pty-create-request.d.ts +56 -0
  219. package/src/models/pty-create-request.js +16 -0
  220. package/src/models/pty-create-request.js.map +1 -0
  221. package/src/models/pty-create-response.d.ts +24 -0
  222. package/src/models/pty-create-response.js +16 -0
  223. package/src/models/pty-create-response.js.map +1 -0
  224. package/src/models/pty-list-response.d.ts +25 -0
  225. package/src/models/pty-list-response.js +16 -0
  226. package/src/models/pty-list-response.js.map +1 -0
  227. package/src/models/pty-resize-request.d.ts +30 -0
  228. package/src/models/pty-resize-request.js +16 -0
  229. package/src/models/pty-resize-request.js.map +1 -0
  230. package/src/models/pty-session-info.d.ts +68 -0
  231. package/src/models/pty-session-info.js +16 -0
  232. package/src/models/pty-session-info.js.map +1 -0
  233. package/src/models/recording.d.ts +66 -0
  234. package/src/models/recording.js +16 -0
  235. package/src/models/recording.js.map +1 -0
  236. package/src/models/replace-request.d.ts +36 -0
  237. package/src/models/replace-request.js +16 -0
  238. package/src/models/replace-request.js.map +1 -0
  239. package/src/models/replace-result.d.ts +36 -0
  240. package/src/models/replace-result.js +16 -0
  241. package/src/models/replace-result.js.map +1 -0
  242. package/src/models/screenshot-response.d.ts +37 -0
  243. package/src/models/screenshot-response.js +16 -0
  244. package/src/models/screenshot-response.js.map +1 -0
  245. package/src/models/scroll-response.d.ts +24 -0
  246. package/src/models/scroll-response.js +16 -0
  247. package/src/models/scroll-response.js.map +1 -0
  248. package/src/models/search-files-response.d.ts +24 -0
  249. package/src/models/search-files-response.js +16 -0
  250. package/src/models/search-files-response.js.map +1 -0
  251. package/src/models/session-execute-request.d.ts +42 -0
  252. package/src/models/session-execute-request.js +16 -0
  253. package/src/models/session-execute-request.js.map +1 -0
  254. package/src/models/session-execute-response.d.ts +48 -0
  255. package/src/models/session-execute-response.js +16 -0
  256. package/src/models/session-execute-response.js.map +1 -0
  257. package/src/models/session-send-input-request.d.ts +24 -0
  258. package/src/models/session-send-input-request.js +16 -0
  259. package/src/models/session-send-input-request.js.map +1 -0
  260. package/src/models/session.d.ts +31 -0
  261. package/src/models/session.js +16 -0
  262. package/src/models/session.js.map +1 -0
  263. package/src/models/start-recording-request.d.ts +24 -0
  264. package/src/models/start-recording-request.js +16 -0
  265. package/src/models/start-recording-request.js.map +1 -0
  266. package/src/models/status.d.ts +27 -0
  267. package/src/models/status.js +32 -0
  268. package/src/models/status.js.map +1 -0
  269. package/src/models/stop-recording-request.d.ts +24 -0
  270. package/src/models/stop-recording-request.js +16 -0
  271. package/src/models/stop-recording-request.js.map +1 -0
  272. package/src/models/user-home-dir-response.d.ts +24 -0
  273. package/src/models/user-home-dir-response.js +16 -0
  274. package/src/models/user-home-dir-response.js.map +1 -0
  275. package/src/models/window-info.d.ts +60 -0
  276. package/src/models/window-info.js +16 -0
  277. package/src/models/window-info.js.map +1 -0
  278. package/src/models/windows-response.d.ts +25 -0
  279. package/src/models/windows-response.js +16 -0
  280. package/src/models/windows-response.js.map +1 -0
  281. package/src/models/work-dir-response.d.ts +24 -0
  282. package/src/models/work-dir-response.js +16 -0
  283. package/src/models/work-dir-response.js.map +1 -0
@@ -0,0 +1,1013 @@
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 { ComputerUseStartResponse } from '../models';
16
+ import type { ComputerUseStatusResponse } from '../models';
17
+ import type { ComputerUseStopResponse } from '../models';
18
+ import type { DisplayInfoResponse } from '../models';
19
+ import type { KeyboardHotkeyRequest } from '../models';
20
+ import type { KeyboardPressRequest } from '../models';
21
+ import type { KeyboardTypeRequest } from '../models';
22
+ import type { ListRecordingsResponse } from '../models';
23
+ import type { MouseClickRequest } from '../models';
24
+ import type { MouseClickResponse } from '../models';
25
+ import type { MouseDragRequest } from '../models';
26
+ import type { MouseDragResponse } from '../models';
27
+ import type { MouseMoveRequest } from '../models';
28
+ import type { MousePositionResponse } from '../models';
29
+ import type { MouseScrollRequest } from '../models';
30
+ import type { ProcessErrorsResponse } from '../models';
31
+ import type { ProcessLogsResponse } from '../models';
32
+ import type { ProcessRestartResponse } from '../models';
33
+ import type { ProcessStatusResponse } from '../models';
34
+ import type { Recording } from '../models';
35
+ import type { ScreenshotResponse } from '../models';
36
+ import type { ScrollResponse } from '../models';
37
+ import type { StartRecordingRequest } from '../models';
38
+ import type { StopRecordingRequest } from '../models';
39
+ import type { WindowsResponse } from '../models';
40
+ /**
41
+ * ComputerUseApi - axios parameter creator
42
+ * @export
43
+ */
44
+ export declare const ComputerUseApiAxiosParamCreator: (configuration?: Configuration) => {
45
+ /**
46
+ * Click the mouse button at the specified coordinates
47
+ * @summary Click mouse button
48
+ * @param {MouseClickRequest} request Mouse click request
49
+ * @param {*} [options] Override http request option.
50
+ * @throws {RequiredError}
51
+ */
52
+ click: (request: MouseClickRequest, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
53
+ /**
54
+ * Delete a recording file by ID
55
+ * @summary Delete a recording
56
+ * @param {string} id Recording ID
57
+ * @param {*} [options] Override http request option.
58
+ * @throws {RequiredError}
59
+ */
60
+ deleteRecording: (id: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
61
+ /**
62
+ * Download a recording by providing its ID
63
+ * @summary Download a recording
64
+ * @param {string} id Recording ID
65
+ * @param {*} [options] Override http request option.
66
+ * @throws {RequiredError}
67
+ */
68
+ downloadRecording: (id: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
69
+ /**
70
+ * Drag the mouse from start to end coordinates
71
+ * @summary Drag mouse
72
+ * @param {MouseDragRequest} request Mouse drag request
73
+ * @param {*} [options] Override http request option.
74
+ * @throws {RequiredError}
75
+ */
76
+ drag: (request: MouseDragRequest, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
77
+ /**
78
+ * Get the status of all computer use processes
79
+ * @summary Get computer use process status
80
+ * @param {*} [options] Override http request option.
81
+ * @throws {RequiredError}
82
+ */
83
+ getComputerUseStatus: (options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
84
+ /**
85
+ * Get the current status of the computer use system
86
+ * @summary Get computer use status
87
+ * @param {*} [options] Override http request option.
88
+ * @throws {RequiredError}
89
+ */
90
+ getComputerUseSystemStatus: (options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
91
+ /**
92
+ * Get information about all available displays
93
+ * @summary Get display information
94
+ * @param {*} [options] Override http request option.
95
+ * @throws {RequiredError}
96
+ */
97
+ getDisplayInfo: (options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
98
+ /**
99
+ * Get the current mouse cursor position
100
+ * @summary Get mouse position
101
+ * @param {*} [options] Override http request option.
102
+ * @throws {RequiredError}
103
+ */
104
+ getMousePosition: (options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
105
+ /**
106
+ * Get errors for a specific computer use process
107
+ * @summary Get process errors
108
+ * @param {string} processName Process name to get errors for
109
+ * @param {*} [options] Override http request option.
110
+ * @throws {RequiredError}
111
+ */
112
+ getProcessErrors: (processName: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
113
+ /**
114
+ * Get logs for a specific computer use process
115
+ * @summary Get process logs
116
+ * @param {string} processName Process name to get logs for
117
+ * @param {*} [options] Override http request option.
118
+ * @throws {RequiredError}
119
+ */
120
+ getProcessLogs: (processName: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
121
+ /**
122
+ * Check if a specific computer use process is running
123
+ * @summary Get specific process status
124
+ * @param {string} processName Process name to check
125
+ * @param {*} [options] Override http request option.
126
+ * @throws {RequiredError}
127
+ */
128
+ getProcessStatus: (processName: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
129
+ /**
130
+ * Get details of a specific recording by ID
131
+ * @summary Get recording details
132
+ * @param {string} id Recording ID
133
+ * @param {*} [options] Override http request option.
134
+ * @throws {RequiredError}
135
+ */
136
+ getRecording: (id: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
137
+ /**
138
+ * Get information about all open windows
139
+ * @summary Get windows information
140
+ * @param {*} [options] Override http request option.
141
+ * @throws {RequiredError}
142
+ */
143
+ getWindows: (options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
144
+ /**
145
+ * Get a list of all recordings (active and completed)
146
+ * @summary List all recordings
147
+ * @param {*} [options] Override http request option.
148
+ * @throws {RequiredError}
149
+ */
150
+ listRecordings: (options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
151
+ /**
152
+ * Move the mouse cursor to the specified coordinates
153
+ * @summary Move mouse cursor
154
+ * @param {MouseMoveRequest} request Mouse move request
155
+ * @param {*} [options] Override http request option.
156
+ * @throws {RequiredError}
157
+ */
158
+ moveMouse: (request: MouseMoveRequest, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
159
+ /**
160
+ * Press a hotkey combination (e.g., ctrl+c, cmd+v)
161
+ * @summary Press hotkey
162
+ * @param {KeyboardHotkeyRequest} request Hotkey press request
163
+ * @param {*} [options] Override http request option.
164
+ * @throws {RequiredError}
165
+ */
166
+ pressHotkey: (request: KeyboardHotkeyRequest, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
167
+ /**
168
+ * Press a key with optional modifiers
169
+ * @summary Press key
170
+ * @param {KeyboardPressRequest} request Key press request
171
+ * @param {*} [options] Override http request option.
172
+ * @throws {RequiredError}
173
+ */
174
+ pressKey: (request: KeyboardPressRequest, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
175
+ /**
176
+ * Restart a specific computer use process
177
+ * @summary Restart specific process
178
+ * @param {string} processName Process name to restart
179
+ * @param {*} [options] Override http request option.
180
+ * @throws {RequiredError}
181
+ */
182
+ restartProcess: (processName: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
183
+ /**
184
+ * Scroll the mouse wheel at the specified coordinates
185
+ * @summary Scroll mouse wheel
186
+ * @param {MouseScrollRequest} request Mouse scroll request
187
+ * @param {*} [options] Override http request option.
188
+ * @throws {RequiredError}
189
+ */
190
+ scroll: (request: MouseScrollRequest, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
191
+ /**
192
+ * Start all computer use processes and return their status
193
+ * @summary Start computer use processes
194
+ * @param {*} [options] Override http request option.
195
+ * @throws {RequiredError}
196
+ */
197
+ startComputerUse: (options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
198
+ /**
199
+ * Start a new screen recording session
200
+ * @summary Start a new recording
201
+ * @param {StartRecordingRequest} [request] Recording options
202
+ * @param {*} [options] Override http request option.
203
+ * @throws {RequiredError}
204
+ */
205
+ startRecording: (request?: StartRecordingRequest, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
206
+ /**
207
+ * Stop all computer use processes and return their status
208
+ * @summary Stop computer use processes
209
+ * @param {*} [options] Override http request option.
210
+ * @throws {RequiredError}
211
+ */
212
+ stopComputerUse: (options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
213
+ /**
214
+ * Stop an active screen recording session
215
+ * @summary Stop a recording
216
+ * @param {StopRecordingRequest} request Recording ID to stop
217
+ * @param {*} [options] Override http request option.
218
+ * @throws {RequiredError}
219
+ */
220
+ stopRecording: (request: StopRecordingRequest, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
221
+ /**
222
+ * Take a compressed screenshot of a specific region of the screen
223
+ * @summary Take a compressed region screenshot
224
+ * @param {number} x X coordinate of the region
225
+ * @param {number} y Y coordinate of the region
226
+ * @param {number} width Width of the region
227
+ * @param {number} height Height of the region
228
+ * @param {boolean} [showCursor] Whether to show cursor in screenshot
229
+ * @param {string} [format] Image format (png or jpeg)
230
+ * @param {number} [quality] JPEG quality (1-100)
231
+ * @param {number} [scale] Scale factor (0.1-1.0)
232
+ * @param {*} [options] Override http request option.
233
+ * @throws {RequiredError}
234
+ */
235
+ takeCompressedRegionScreenshot: (x: number, y: number, width: number, height: number, showCursor?: boolean, format?: string, quality?: number, scale?: number, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
236
+ /**
237
+ * Take a compressed screenshot of the entire screen
238
+ * @summary Take a compressed screenshot
239
+ * @param {boolean} [showCursor] Whether to show cursor in screenshot
240
+ * @param {string} [format] Image format (png or jpeg)
241
+ * @param {number} [quality] JPEG quality (1-100)
242
+ * @param {number} [scale] Scale factor (0.1-1.0)
243
+ * @param {*} [options] Override http request option.
244
+ * @throws {RequiredError}
245
+ */
246
+ takeCompressedScreenshot: (showCursor?: boolean, format?: string, quality?: number, scale?: number, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
247
+ /**
248
+ * Take a screenshot of a specific region of the screen
249
+ * @summary Take a region screenshot
250
+ * @param {number} x X coordinate of the region
251
+ * @param {number} y Y coordinate of the region
252
+ * @param {number} width Width of the region
253
+ * @param {number} height Height of the region
254
+ * @param {boolean} [showCursor] Whether to show cursor in screenshot
255
+ * @param {*} [options] Override http request option.
256
+ * @throws {RequiredError}
257
+ */
258
+ takeRegionScreenshot: (x: number, y: number, width: number, height: number, showCursor?: boolean, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
259
+ /**
260
+ * Take a screenshot of the entire screen
261
+ * @summary Take a screenshot
262
+ * @param {boolean} [showCursor] Whether to show cursor in screenshot
263
+ * @param {*} [options] Override http request option.
264
+ * @throws {RequiredError}
265
+ */
266
+ takeScreenshot: (showCursor?: boolean, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
267
+ /**
268
+ * Type text with optional delay between keystrokes
269
+ * @summary Type text
270
+ * @param {KeyboardTypeRequest} request Text typing request
271
+ * @param {*} [options] Override http request option.
272
+ * @throws {RequiredError}
273
+ */
274
+ typeText: (request: KeyboardTypeRequest, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
275
+ };
276
+ /**
277
+ * ComputerUseApi - functional programming interface
278
+ * @export
279
+ */
280
+ export declare const ComputerUseApiFp: (configuration?: Configuration) => {
281
+ /**
282
+ * Click the mouse button at the specified coordinates
283
+ * @summary Click mouse button
284
+ * @param {MouseClickRequest} request Mouse click request
285
+ * @param {*} [options] Override http request option.
286
+ * @throws {RequiredError}
287
+ */
288
+ click(request: MouseClickRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<MouseClickResponse>>;
289
+ /**
290
+ * Delete a recording file by ID
291
+ * @summary Delete a recording
292
+ * @param {string} id Recording ID
293
+ * @param {*} [options] Override http request option.
294
+ * @throws {RequiredError}
295
+ */
296
+ deleteRecording(id: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
297
+ /**
298
+ * Download a recording by providing its ID
299
+ * @summary Download a recording
300
+ * @param {string} id Recording ID
301
+ * @param {*} [options] Override http request option.
302
+ * @throws {RequiredError}
303
+ */
304
+ downloadRecording(id: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<File>>;
305
+ /**
306
+ * Drag the mouse from start to end coordinates
307
+ * @summary Drag mouse
308
+ * @param {MouseDragRequest} request Mouse drag request
309
+ * @param {*} [options] Override http request option.
310
+ * @throws {RequiredError}
311
+ */
312
+ drag(request: MouseDragRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<MouseDragResponse>>;
313
+ /**
314
+ * Get the status of all computer use processes
315
+ * @summary Get computer use process status
316
+ * @param {*} [options] Override http request option.
317
+ * @throws {RequiredError}
318
+ */
319
+ getComputerUseStatus(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ComputerUseStatusResponse>>;
320
+ /**
321
+ * Get the current status of the computer use system
322
+ * @summary Get computer use status
323
+ * @param {*} [options] Override http request option.
324
+ * @throws {RequiredError}
325
+ */
326
+ getComputerUseSystemStatus(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ComputerUseStatusResponse>>;
327
+ /**
328
+ * Get information about all available displays
329
+ * @summary Get display information
330
+ * @param {*} [options] Override http request option.
331
+ * @throws {RequiredError}
332
+ */
333
+ getDisplayInfo(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DisplayInfoResponse>>;
334
+ /**
335
+ * Get the current mouse cursor position
336
+ * @summary Get mouse position
337
+ * @param {*} [options] Override http request option.
338
+ * @throws {RequiredError}
339
+ */
340
+ getMousePosition(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<MousePositionResponse>>;
341
+ /**
342
+ * Get errors for a specific computer use process
343
+ * @summary Get process errors
344
+ * @param {string} processName Process name to get errors for
345
+ * @param {*} [options] Override http request option.
346
+ * @throws {RequiredError}
347
+ */
348
+ getProcessErrors(processName: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ProcessErrorsResponse>>;
349
+ /**
350
+ * Get logs for a specific computer use process
351
+ * @summary Get process logs
352
+ * @param {string} processName Process name to get logs for
353
+ * @param {*} [options] Override http request option.
354
+ * @throws {RequiredError}
355
+ */
356
+ getProcessLogs(processName: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ProcessLogsResponse>>;
357
+ /**
358
+ * Check if a specific computer use process is running
359
+ * @summary Get specific process status
360
+ * @param {string} processName Process name to check
361
+ * @param {*} [options] Override http request option.
362
+ * @throws {RequiredError}
363
+ */
364
+ getProcessStatus(processName: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ProcessStatusResponse>>;
365
+ /**
366
+ * Get details of a specific recording by ID
367
+ * @summary Get recording details
368
+ * @param {string} id Recording ID
369
+ * @param {*} [options] Override http request option.
370
+ * @throws {RequiredError}
371
+ */
372
+ getRecording(id: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Recording>>;
373
+ /**
374
+ * Get information about all open windows
375
+ * @summary Get windows information
376
+ * @param {*} [options] Override http request option.
377
+ * @throws {RequiredError}
378
+ */
379
+ getWindows(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<WindowsResponse>>;
380
+ /**
381
+ * Get a list of all recordings (active and completed)
382
+ * @summary List all recordings
383
+ * @param {*} [options] Override http request option.
384
+ * @throws {RequiredError}
385
+ */
386
+ listRecordings(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ListRecordingsResponse>>;
387
+ /**
388
+ * Move the mouse cursor to the specified coordinates
389
+ * @summary Move mouse cursor
390
+ * @param {MouseMoveRequest} request Mouse move request
391
+ * @param {*} [options] Override http request option.
392
+ * @throws {RequiredError}
393
+ */
394
+ moveMouse(request: MouseMoveRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<MousePositionResponse>>;
395
+ /**
396
+ * Press a hotkey combination (e.g., ctrl+c, cmd+v)
397
+ * @summary Press hotkey
398
+ * @param {KeyboardHotkeyRequest} request Hotkey press request
399
+ * @param {*} [options] Override http request option.
400
+ * @throws {RequiredError}
401
+ */
402
+ pressHotkey(request: KeyboardHotkeyRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<object>>;
403
+ /**
404
+ * Press a key with optional modifiers
405
+ * @summary Press key
406
+ * @param {KeyboardPressRequest} request Key press request
407
+ * @param {*} [options] Override http request option.
408
+ * @throws {RequiredError}
409
+ */
410
+ pressKey(request: KeyboardPressRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<object>>;
411
+ /**
412
+ * Restart a specific computer use process
413
+ * @summary Restart specific process
414
+ * @param {string} processName Process name to restart
415
+ * @param {*} [options] Override http request option.
416
+ * @throws {RequiredError}
417
+ */
418
+ restartProcess(processName: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ProcessRestartResponse>>;
419
+ /**
420
+ * Scroll the mouse wheel at the specified coordinates
421
+ * @summary Scroll mouse wheel
422
+ * @param {MouseScrollRequest} request Mouse scroll request
423
+ * @param {*} [options] Override http request option.
424
+ * @throws {RequiredError}
425
+ */
426
+ scroll(request: MouseScrollRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ScrollResponse>>;
427
+ /**
428
+ * Start all computer use processes and return their status
429
+ * @summary Start computer use processes
430
+ * @param {*} [options] Override http request option.
431
+ * @throws {RequiredError}
432
+ */
433
+ startComputerUse(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ComputerUseStartResponse>>;
434
+ /**
435
+ * Start a new screen recording session
436
+ * @summary Start a new recording
437
+ * @param {StartRecordingRequest} [request] Recording options
438
+ * @param {*} [options] Override http request option.
439
+ * @throws {RequiredError}
440
+ */
441
+ startRecording(request?: StartRecordingRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Recording>>;
442
+ /**
443
+ * Stop all computer use processes and return their status
444
+ * @summary Stop computer use processes
445
+ * @param {*} [options] Override http request option.
446
+ * @throws {RequiredError}
447
+ */
448
+ stopComputerUse(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ComputerUseStopResponse>>;
449
+ /**
450
+ * Stop an active screen recording session
451
+ * @summary Stop a recording
452
+ * @param {StopRecordingRequest} request Recording ID to stop
453
+ * @param {*} [options] Override http request option.
454
+ * @throws {RequiredError}
455
+ */
456
+ stopRecording(request: StopRecordingRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Recording>>;
457
+ /**
458
+ * Take a compressed screenshot of a specific region of the screen
459
+ * @summary Take a compressed region screenshot
460
+ * @param {number} x X coordinate of the region
461
+ * @param {number} y Y coordinate of the region
462
+ * @param {number} width Width of the region
463
+ * @param {number} height Height of the region
464
+ * @param {boolean} [showCursor] Whether to show cursor in screenshot
465
+ * @param {string} [format] Image format (png or jpeg)
466
+ * @param {number} [quality] JPEG quality (1-100)
467
+ * @param {number} [scale] Scale factor (0.1-1.0)
468
+ * @param {*} [options] Override http request option.
469
+ * @throws {RequiredError}
470
+ */
471
+ takeCompressedRegionScreenshot(x: number, y: number, width: number, height: number, showCursor?: boolean, format?: string, quality?: number, scale?: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ScreenshotResponse>>;
472
+ /**
473
+ * Take a compressed screenshot of the entire screen
474
+ * @summary Take a compressed screenshot
475
+ * @param {boolean} [showCursor] Whether to show cursor in screenshot
476
+ * @param {string} [format] Image format (png or jpeg)
477
+ * @param {number} [quality] JPEG quality (1-100)
478
+ * @param {number} [scale] Scale factor (0.1-1.0)
479
+ * @param {*} [options] Override http request option.
480
+ * @throws {RequiredError}
481
+ */
482
+ takeCompressedScreenshot(showCursor?: boolean, format?: string, quality?: number, scale?: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ScreenshotResponse>>;
483
+ /**
484
+ * Take a screenshot of a specific region of the screen
485
+ * @summary Take a region screenshot
486
+ * @param {number} x X coordinate of the region
487
+ * @param {number} y Y coordinate of the region
488
+ * @param {number} width Width of the region
489
+ * @param {number} height Height of the region
490
+ * @param {boolean} [showCursor] Whether to show cursor in screenshot
491
+ * @param {*} [options] Override http request option.
492
+ * @throws {RequiredError}
493
+ */
494
+ takeRegionScreenshot(x: number, y: number, width: number, height: number, showCursor?: boolean, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ScreenshotResponse>>;
495
+ /**
496
+ * Take a screenshot of the entire screen
497
+ * @summary Take a screenshot
498
+ * @param {boolean} [showCursor] Whether to show cursor in screenshot
499
+ * @param {*} [options] Override http request option.
500
+ * @throws {RequiredError}
501
+ */
502
+ takeScreenshot(showCursor?: boolean, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ScreenshotResponse>>;
503
+ /**
504
+ * Type text with optional delay between keystrokes
505
+ * @summary Type text
506
+ * @param {KeyboardTypeRequest} request Text typing request
507
+ * @param {*} [options] Override http request option.
508
+ * @throws {RequiredError}
509
+ */
510
+ typeText(request: KeyboardTypeRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<object>>;
511
+ };
512
+ /**
513
+ * ComputerUseApi - factory interface
514
+ * @export
515
+ */
516
+ export declare const ComputerUseApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
517
+ /**
518
+ * Click the mouse button at the specified coordinates
519
+ * @summary Click mouse button
520
+ * @param {MouseClickRequest} request Mouse click request
521
+ * @param {*} [options] Override http request option.
522
+ * @throws {RequiredError}
523
+ */
524
+ click(request: MouseClickRequest, options?: RawAxiosRequestConfig): AxiosPromise<MouseClickResponse>;
525
+ /**
526
+ * Delete a recording file by ID
527
+ * @summary Delete a recording
528
+ * @param {string} id Recording ID
529
+ * @param {*} [options] Override http request option.
530
+ * @throws {RequiredError}
531
+ */
532
+ deleteRecording(id: string, options?: RawAxiosRequestConfig): AxiosPromise<void>;
533
+ /**
534
+ * Download a recording by providing its ID
535
+ * @summary Download a recording
536
+ * @param {string} id Recording ID
537
+ * @param {*} [options] Override http request option.
538
+ * @throws {RequiredError}
539
+ */
540
+ downloadRecording(id: string, options?: RawAxiosRequestConfig): AxiosPromise<File>;
541
+ /**
542
+ * Drag the mouse from start to end coordinates
543
+ * @summary Drag mouse
544
+ * @param {MouseDragRequest} request Mouse drag request
545
+ * @param {*} [options] Override http request option.
546
+ * @throws {RequiredError}
547
+ */
548
+ drag(request: MouseDragRequest, options?: RawAxiosRequestConfig): AxiosPromise<MouseDragResponse>;
549
+ /**
550
+ * Get the status of all computer use processes
551
+ * @summary Get computer use process status
552
+ * @param {*} [options] Override http request option.
553
+ * @throws {RequiredError}
554
+ */
555
+ getComputerUseStatus(options?: RawAxiosRequestConfig): AxiosPromise<ComputerUseStatusResponse>;
556
+ /**
557
+ * Get the current status of the computer use system
558
+ * @summary Get computer use status
559
+ * @param {*} [options] Override http request option.
560
+ * @throws {RequiredError}
561
+ */
562
+ getComputerUseSystemStatus(options?: RawAxiosRequestConfig): AxiosPromise<ComputerUseStatusResponse>;
563
+ /**
564
+ * Get information about all available displays
565
+ * @summary Get display information
566
+ * @param {*} [options] Override http request option.
567
+ * @throws {RequiredError}
568
+ */
569
+ getDisplayInfo(options?: RawAxiosRequestConfig): AxiosPromise<DisplayInfoResponse>;
570
+ /**
571
+ * Get the current mouse cursor position
572
+ * @summary Get mouse position
573
+ * @param {*} [options] Override http request option.
574
+ * @throws {RequiredError}
575
+ */
576
+ getMousePosition(options?: RawAxiosRequestConfig): AxiosPromise<MousePositionResponse>;
577
+ /**
578
+ * Get errors for a specific computer use process
579
+ * @summary Get process errors
580
+ * @param {string} processName Process name to get errors for
581
+ * @param {*} [options] Override http request option.
582
+ * @throws {RequiredError}
583
+ */
584
+ getProcessErrors(processName: string, options?: RawAxiosRequestConfig): AxiosPromise<ProcessErrorsResponse>;
585
+ /**
586
+ * Get logs for a specific computer use process
587
+ * @summary Get process logs
588
+ * @param {string} processName Process name to get logs for
589
+ * @param {*} [options] Override http request option.
590
+ * @throws {RequiredError}
591
+ */
592
+ getProcessLogs(processName: string, options?: RawAxiosRequestConfig): AxiosPromise<ProcessLogsResponse>;
593
+ /**
594
+ * Check if a specific computer use process is running
595
+ * @summary Get specific process status
596
+ * @param {string} processName Process name to check
597
+ * @param {*} [options] Override http request option.
598
+ * @throws {RequiredError}
599
+ */
600
+ getProcessStatus(processName: string, options?: RawAxiosRequestConfig): AxiosPromise<ProcessStatusResponse>;
601
+ /**
602
+ * Get details of a specific recording by ID
603
+ * @summary Get recording details
604
+ * @param {string} id Recording ID
605
+ * @param {*} [options] Override http request option.
606
+ * @throws {RequiredError}
607
+ */
608
+ getRecording(id: string, options?: RawAxiosRequestConfig): AxiosPromise<Recording>;
609
+ /**
610
+ * Get information about all open windows
611
+ * @summary Get windows information
612
+ * @param {*} [options] Override http request option.
613
+ * @throws {RequiredError}
614
+ */
615
+ getWindows(options?: RawAxiosRequestConfig): AxiosPromise<WindowsResponse>;
616
+ /**
617
+ * Get a list of all recordings (active and completed)
618
+ * @summary List all recordings
619
+ * @param {*} [options] Override http request option.
620
+ * @throws {RequiredError}
621
+ */
622
+ listRecordings(options?: RawAxiosRequestConfig): AxiosPromise<ListRecordingsResponse>;
623
+ /**
624
+ * Move the mouse cursor to the specified coordinates
625
+ * @summary Move mouse cursor
626
+ * @param {MouseMoveRequest} request Mouse move request
627
+ * @param {*} [options] Override http request option.
628
+ * @throws {RequiredError}
629
+ */
630
+ moveMouse(request: MouseMoveRequest, options?: RawAxiosRequestConfig): AxiosPromise<MousePositionResponse>;
631
+ /**
632
+ * Press a hotkey combination (e.g., ctrl+c, cmd+v)
633
+ * @summary Press hotkey
634
+ * @param {KeyboardHotkeyRequest} request Hotkey press request
635
+ * @param {*} [options] Override http request option.
636
+ * @throws {RequiredError}
637
+ */
638
+ pressHotkey(request: KeyboardHotkeyRequest, options?: RawAxiosRequestConfig): AxiosPromise<object>;
639
+ /**
640
+ * Press a key with optional modifiers
641
+ * @summary Press key
642
+ * @param {KeyboardPressRequest} request Key press request
643
+ * @param {*} [options] Override http request option.
644
+ * @throws {RequiredError}
645
+ */
646
+ pressKey(request: KeyboardPressRequest, options?: RawAxiosRequestConfig): AxiosPromise<object>;
647
+ /**
648
+ * Restart a specific computer use process
649
+ * @summary Restart specific process
650
+ * @param {string} processName Process name to restart
651
+ * @param {*} [options] Override http request option.
652
+ * @throws {RequiredError}
653
+ */
654
+ restartProcess(processName: string, options?: RawAxiosRequestConfig): AxiosPromise<ProcessRestartResponse>;
655
+ /**
656
+ * Scroll the mouse wheel at the specified coordinates
657
+ * @summary Scroll mouse wheel
658
+ * @param {MouseScrollRequest} request Mouse scroll request
659
+ * @param {*} [options] Override http request option.
660
+ * @throws {RequiredError}
661
+ */
662
+ scroll(request: MouseScrollRequest, options?: RawAxiosRequestConfig): AxiosPromise<ScrollResponse>;
663
+ /**
664
+ * Start all computer use processes and return their status
665
+ * @summary Start computer use processes
666
+ * @param {*} [options] Override http request option.
667
+ * @throws {RequiredError}
668
+ */
669
+ startComputerUse(options?: RawAxiosRequestConfig): AxiosPromise<ComputerUseStartResponse>;
670
+ /**
671
+ * Start a new screen recording session
672
+ * @summary Start a new recording
673
+ * @param {StartRecordingRequest} [request] Recording options
674
+ * @param {*} [options] Override http request option.
675
+ * @throws {RequiredError}
676
+ */
677
+ startRecording(request?: StartRecordingRequest, options?: RawAxiosRequestConfig): AxiosPromise<Recording>;
678
+ /**
679
+ * Stop all computer use processes and return their status
680
+ * @summary Stop computer use processes
681
+ * @param {*} [options] Override http request option.
682
+ * @throws {RequiredError}
683
+ */
684
+ stopComputerUse(options?: RawAxiosRequestConfig): AxiosPromise<ComputerUseStopResponse>;
685
+ /**
686
+ * Stop an active screen recording session
687
+ * @summary Stop a recording
688
+ * @param {StopRecordingRequest} request Recording ID to stop
689
+ * @param {*} [options] Override http request option.
690
+ * @throws {RequiredError}
691
+ */
692
+ stopRecording(request: StopRecordingRequest, options?: RawAxiosRequestConfig): AxiosPromise<Recording>;
693
+ /**
694
+ * Take a compressed screenshot of a specific region of the screen
695
+ * @summary Take a compressed region screenshot
696
+ * @param {number} x X coordinate of the region
697
+ * @param {number} y Y coordinate of the region
698
+ * @param {number} width Width of the region
699
+ * @param {number} height Height of the region
700
+ * @param {boolean} [showCursor] Whether to show cursor in screenshot
701
+ * @param {string} [format] Image format (png or jpeg)
702
+ * @param {number} [quality] JPEG quality (1-100)
703
+ * @param {number} [scale] Scale factor (0.1-1.0)
704
+ * @param {*} [options] Override http request option.
705
+ * @throws {RequiredError}
706
+ */
707
+ takeCompressedRegionScreenshot(x: number, y: number, width: number, height: number, showCursor?: boolean, format?: string, quality?: number, scale?: number, options?: RawAxiosRequestConfig): AxiosPromise<ScreenshotResponse>;
708
+ /**
709
+ * Take a compressed screenshot of the entire screen
710
+ * @summary Take a compressed screenshot
711
+ * @param {boolean} [showCursor] Whether to show cursor in screenshot
712
+ * @param {string} [format] Image format (png or jpeg)
713
+ * @param {number} [quality] JPEG quality (1-100)
714
+ * @param {number} [scale] Scale factor (0.1-1.0)
715
+ * @param {*} [options] Override http request option.
716
+ * @throws {RequiredError}
717
+ */
718
+ takeCompressedScreenshot(showCursor?: boolean, format?: string, quality?: number, scale?: number, options?: RawAxiosRequestConfig): AxiosPromise<ScreenshotResponse>;
719
+ /**
720
+ * Take a screenshot of a specific region of the screen
721
+ * @summary Take a region screenshot
722
+ * @param {number} x X coordinate of the region
723
+ * @param {number} y Y coordinate of the region
724
+ * @param {number} width Width of the region
725
+ * @param {number} height Height of the region
726
+ * @param {boolean} [showCursor] Whether to show cursor in screenshot
727
+ * @param {*} [options] Override http request option.
728
+ * @throws {RequiredError}
729
+ */
730
+ takeRegionScreenshot(x: number, y: number, width: number, height: number, showCursor?: boolean, options?: RawAxiosRequestConfig): AxiosPromise<ScreenshotResponse>;
731
+ /**
732
+ * Take a screenshot of the entire screen
733
+ * @summary Take a screenshot
734
+ * @param {boolean} [showCursor] Whether to show cursor in screenshot
735
+ * @param {*} [options] Override http request option.
736
+ * @throws {RequiredError}
737
+ */
738
+ takeScreenshot(showCursor?: boolean, options?: RawAxiosRequestConfig): AxiosPromise<ScreenshotResponse>;
739
+ /**
740
+ * Type text with optional delay between keystrokes
741
+ * @summary Type text
742
+ * @param {KeyboardTypeRequest} request Text typing request
743
+ * @param {*} [options] Override http request option.
744
+ * @throws {RequiredError}
745
+ */
746
+ typeText(request: KeyboardTypeRequest, options?: RawAxiosRequestConfig): AxiosPromise<object>;
747
+ };
748
+ /**
749
+ * ComputerUseApi - object-oriented interface
750
+ * @export
751
+ * @class ComputerUseApi
752
+ * @extends {BaseAPI}
753
+ */
754
+ export declare class ComputerUseApi extends BaseAPI {
755
+ /**
756
+ * Click the mouse button at the specified coordinates
757
+ * @summary Click mouse button
758
+ * @param {MouseClickRequest} request Mouse click request
759
+ * @param {*} [options] Override http request option.
760
+ * @throws {RequiredError}
761
+ * @memberof ComputerUseApi
762
+ */
763
+ click(request: MouseClickRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<MouseClickResponse, any, {}>>;
764
+ /**
765
+ * Delete a recording file by ID
766
+ * @summary Delete a recording
767
+ * @param {string} id Recording ID
768
+ * @param {*} [options] Override http request option.
769
+ * @throws {RequiredError}
770
+ * @memberof ComputerUseApi
771
+ */
772
+ deleteRecording(id: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any, {}>>;
773
+ /**
774
+ * Download a recording by providing its ID
775
+ * @summary Download a recording
776
+ * @param {string} id Recording ID
777
+ * @param {*} [options] Override http request option.
778
+ * @throws {RequiredError}
779
+ * @memberof ComputerUseApi
780
+ */
781
+ downloadRecording(id: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<File, any, {}>>;
782
+ /**
783
+ * Drag the mouse from start to end coordinates
784
+ * @summary Drag mouse
785
+ * @param {MouseDragRequest} request Mouse drag request
786
+ * @param {*} [options] Override http request option.
787
+ * @throws {RequiredError}
788
+ * @memberof ComputerUseApi
789
+ */
790
+ drag(request: MouseDragRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<MouseDragResponse, any, {}>>;
791
+ /**
792
+ * Get the status of all computer use processes
793
+ * @summary Get computer use process status
794
+ * @param {*} [options] Override http request option.
795
+ * @throws {RequiredError}
796
+ * @memberof ComputerUseApi
797
+ */
798
+ getComputerUseStatus(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ComputerUseStatusResponse, any, {}>>;
799
+ /**
800
+ * Get the current status of the computer use system
801
+ * @summary Get computer use status
802
+ * @param {*} [options] Override http request option.
803
+ * @throws {RequiredError}
804
+ * @memberof ComputerUseApi
805
+ */
806
+ getComputerUseSystemStatus(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ComputerUseStatusResponse, any, {}>>;
807
+ /**
808
+ * Get information about all available displays
809
+ * @summary Get display information
810
+ * @param {*} [options] Override http request option.
811
+ * @throws {RequiredError}
812
+ * @memberof ComputerUseApi
813
+ */
814
+ getDisplayInfo(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DisplayInfoResponse, any, {}>>;
815
+ /**
816
+ * Get the current mouse cursor position
817
+ * @summary Get mouse position
818
+ * @param {*} [options] Override http request option.
819
+ * @throws {RequiredError}
820
+ * @memberof ComputerUseApi
821
+ */
822
+ getMousePosition(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<MousePositionResponse, any, {}>>;
823
+ /**
824
+ * Get errors for a specific computer use process
825
+ * @summary Get process errors
826
+ * @param {string} processName Process name to get errors for
827
+ * @param {*} [options] Override http request option.
828
+ * @throws {RequiredError}
829
+ * @memberof ComputerUseApi
830
+ */
831
+ getProcessErrors(processName: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ProcessErrorsResponse, any, {}>>;
832
+ /**
833
+ * Get logs for a specific computer use process
834
+ * @summary Get process logs
835
+ * @param {string} processName Process name to get logs for
836
+ * @param {*} [options] Override http request option.
837
+ * @throws {RequiredError}
838
+ * @memberof ComputerUseApi
839
+ */
840
+ getProcessLogs(processName: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ProcessLogsResponse, any, {}>>;
841
+ /**
842
+ * Check if a specific computer use process is running
843
+ * @summary Get specific process status
844
+ * @param {string} processName Process name to check
845
+ * @param {*} [options] Override http request option.
846
+ * @throws {RequiredError}
847
+ * @memberof ComputerUseApi
848
+ */
849
+ getProcessStatus(processName: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ProcessStatusResponse, any, {}>>;
850
+ /**
851
+ * Get details of a specific recording by ID
852
+ * @summary Get recording details
853
+ * @param {string} id Recording ID
854
+ * @param {*} [options] Override http request option.
855
+ * @throws {RequiredError}
856
+ * @memberof ComputerUseApi
857
+ */
858
+ getRecording(id: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Recording, any, {}>>;
859
+ /**
860
+ * Get information about all open windows
861
+ * @summary Get windows information
862
+ * @param {*} [options] Override http request option.
863
+ * @throws {RequiredError}
864
+ * @memberof ComputerUseApi
865
+ */
866
+ getWindows(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<WindowsResponse, any, {}>>;
867
+ /**
868
+ * Get a list of all recordings (active and completed)
869
+ * @summary List all recordings
870
+ * @param {*} [options] Override http request option.
871
+ * @throws {RequiredError}
872
+ * @memberof ComputerUseApi
873
+ */
874
+ listRecordings(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ListRecordingsResponse, any, {}>>;
875
+ /**
876
+ * Move the mouse cursor to the specified coordinates
877
+ * @summary Move mouse cursor
878
+ * @param {MouseMoveRequest} request Mouse move request
879
+ * @param {*} [options] Override http request option.
880
+ * @throws {RequiredError}
881
+ * @memberof ComputerUseApi
882
+ */
883
+ moveMouse(request: MouseMoveRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<MousePositionResponse, any, {}>>;
884
+ /**
885
+ * Press a hotkey combination (e.g., ctrl+c, cmd+v)
886
+ * @summary Press hotkey
887
+ * @param {KeyboardHotkeyRequest} request Hotkey press request
888
+ * @param {*} [options] Override http request option.
889
+ * @throws {RequiredError}
890
+ * @memberof ComputerUseApi
891
+ */
892
+ pressHotkey(request: KeyboardHotkeyRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<object, any, {}>>;
893
+ /**
894
+ * Press a key with optional modifiers
895
+ * @summary Press key
896
+ * @param {KeyboardPressRequest} request Key press request
897
+ * @param {*} [options] Override http request option.
898
+ * @throws {RequiredError}
899
+ * @memberof ComputerUseApi
900
+ */
901
+ pressKey(request: KeyboardPressRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<object, any, {}>>;
902
+ /**
903
+ * Restart a specific computer use process
904
+ * @summary Restart specific process
905
+ * @param {string} processName Process name to restart
906
+ * @param {*} [options] Override http request option.
907
+ * @throws {RequiredError}
908
+ * @memberof ComputerUseApi
909
+ */
910
+ restartProcess(processName: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ProcessRestartResponse, any, {}>>;
911
+ /**
912
+ * Scroll the mouse wheel at the specified coordinates
913
+ * @summary Scroll mouse wheel
914
+ * @param {MouseScrollRequest} request Mouse scroll request
915
+ * @param {*} [options] Override http request option.
916
+ * @throws {RequiredError}
917
+ * @memberof ComputerUseApi
918
+ */
919
+ scroll(request: MouseScrollRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ScrollResponse, any, {}>>;
920
+ /**
921
+ * Start all computer use processes and return their status
922
+ * @summary Start computer use processes
923
+ * @param {*} [options] Override http request option.
924
+ * @throws {RequiredError}
925
+ * @memberof ComputerUseApi
926
+ */
927
+ startComputerUse(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ComputerUseStartResponse, any, {}>>;
928
+ /**
929
+ * Start a new screen recording session
930
+ * @summary Start a new recording
931
+ * @param {StartRecordingRequest} [request] Recording options
932
+ * @param {*} [options] Override http request option.
933
+ * @throws {RequiredError}
934
+ * @memberof ComputerUseApi
935
+ */
936
+ startRecording(request?: StartRecordingRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Recording, any, {}>>;
937
+ /**
938
+ * Stop all computer use processes and return their status
939
+ * @summary Stop computer use processes
940
+ * @param {*} [options] Override http request option.
941
+ * @throws {RequiredError}
942
+ * @memberof ComputerUseApi
943
+ */
944
+ stopComputerUse(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ComputerUseStopResponse, any, {}>>;
945
+ /**
946
+ * Stop an active screen recording session
947
+ * @summary Stop a recording
948
+ * @param {StopRecordingRequest} request Recording ID to stop
949
+ * @param {*} [options] Override http request option.
950
+ * @throws {RequiredError}
951
+ * @memberof ComputerUseApi
952
+ */
953
+ stopRecording(request: StopRecordingRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Recording, any, {}>>;
954
+ /**
955
+ * Take a compressed screenshot of a specific region of the screen
956
+ * @summary Take a compressed region screenshot
957
+ * @param {number} x X coordinate of the region
958
+ * @param {number} y Y coordinate of the region
959
+ * @param {number} width Width of the region
960
+ * @param {number} height Height of the region
961
+ * @param {boolean} [showCursor] Whether to show cursor in screenshot
962
+ * @param {string} [format] Image format (png or jpeg)
963
+ * @param {number} [quality] JPEG quality (1-100)
964
+ * @param {number} [scale] Scale factor (0.1-1.0)
965
+ * @param {*} [options] Override http request option.
966
+ * @throws {RequiredError}
967
+ * @memberof ComputerUseApi
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, {}>>;
970
+ /**
971
+ * Take a compressed screenshot of the entire screen
972
+ * @summary Take a compressed screenshot
973
+ * @param {boolean} [showCursor] Whether to show cursor in screenshot
974
+ * @param {string} [format] Image format (png or jpeg)
975
+ * @param {number} [quality] JPEG quality (1-100)
976
+ * @param {number} [scale] Scale factor (0.1-1.0)
977
+ * @param {*} [options] Override http request option.
978
+ * @throws {RequiredError}
979
+ * @memberof ComputerUseApi
980
+ */
981
+ takeCompressedScreenshot(showCursor?: boolean, format?: string, quality?: number, scale?: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ScreenshotResponse, any, {}>>;
982
+ /**
983
+ * Take a screenshot of a specific region of the screen
984
+ * @summary Take a region screenshot
985
+ * @param {number} x X coordinate of the region
986
+ * @param {number} y Y coordinate of the region
987
+ * @param {number} width Width of the region
988
+ * @param {number} height Height of the region
989
+ * @param {boolean} [showCursor] Whether to show cursor in screenshot
990
+ * @param {*} [options] Override http request option.
991
+ * @throws {RequiredError}
992
+ * @memberof ComputerUseApi
993
+ */
994
+ takeRegionScreenshot(x: number, y: number, width: number, height: number, showCursor?: boolean, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ScreenshotResponse, any, {}>>;
995
+ /**
996
+ * Take a screenshot of the entire screen
997
+ * @summary Take a screenshot
998
+ * @param {boolean} [showCursor] Whether to show cursor in screenshot
999
+ * @param {*} [options] Override http request option.
1000
+ * @throws {RequiredError}
1001
+ * @memberof ComputerUseApi
1002
+ */
1003
+ takeScreenshot(showCursor?: boolean, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ScreenshotResponse, any, {}>>;
1004
+ /**
1005
+ * Type text with optional delay between keystrokes
1006
+ * @summary Type text
1007
+ * @param {KeyboardTypeRequest} request Text typing request
1008
+ * @param {*} [options] Override http request option.
1009
+ * @throws {RequiredError}
1010
+ * @memberof ComputerUseApi
1011
+ */
1012
+ typeText(request: KeyboardTypeRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<object, any, {}>>;
1013
+ }