@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
package/src/common.js ADDED
@@ -0,0 +1,146 @@
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.createRequestFunction = exports.toPathString = exports.serializeDataIfNeeded = exports.setSearchParams = exports.setOAuthToObject = exports.setBearerAuthToObject = exports.setBasicAuthToObject = exports.setApiKeyToObject = exports.assertParamExists = exports.DUMMY_BASE_URL = void 0;
17
+ const base_1 = require("./base");
18
+ /**
19
+ *
20
+ * @export
21
+ */
22
+ exports.DUMMY_BASE_URL = 'https://example.com';
23
+ /**
24
+ *
25
+ * @throws {RequiredError}
26
+ * @export
27
+ */
28
+ const assertParamExists = function (functionName, paramName, paramValue) {
29
+ if (paramValue === null || paramValue === undefined) {
30
+ throw new base_1.RequiredError(paramName, `Required parameter ${paramName} was null or undefined when calling ${functionName}.`);
31
+ }
32
+ };
33
+ exports.assertParamExists = assertParamExists;
34
+ /**
35
+ *
36
+ * @export
37
+ */
38
+ const setApiKeyToObject = async function (object, keyParamName, configuration) {
39
+ if (configuration && configuration.apiKey) {
40
+ const localVarApiKeyValue = typeof configuration.apiKey === 'function'
41
+ ? await configuration.apiKey(keyParamName)
42
+ : await configuration.apiKey;
43
+ object[keyParamName] = localVarApiKeyValue;
44
+ }
45
+ };
46
+ exports.setApiKeyToObject = setApiKeyToObject;
47
+ /**
48
+ *
49
+ * @export
50
+ */
51
+ const setBasicAuthToObject = function (object, configuration) {
52
+ if (configuration && (configuration.username || configuration.password)) {
53
+ object["auth"] = { username: configuration.username, password: configuration.password };
54
+ }
55
+ };
56
+ exports.setBasicAuthToObject = setBasicAuthToObject;
57
+ /**
58
+ *
59
+ * @export
60
+ */
61
+ const setBearerAuthToObject = async function (object, configuration) {
62
+ if (configuration && configuration.accessToken) {
63
+ const accessToken = typeof configuration.accessToken === 'function'
64
+ ? await configuration.accessToken()
65
+ : await configuration.accessToken;
66
+ object["Authorization"] = "Bearer " + accessToken;
67
+ }
68
+ };
69
+ exports.setBearerAuthToObject = setBearerAuthToObject;
70
+ /**
71
+ *
72
+ * @export
73
+ */
74
+ const setOAuthToObject = async function (object, name, scopes, configuration) {
75
+ if (configuration && configuration.accessToken) {
76
+ const localVarAccessTokenValue = typeof configuration.accessToken === 'function'
77
+ ? await configuration.accessToken(name, scopes)
78
+ : await configuration.accessToken;
79
+ object["Authorization"] = "Bearer " + localVarAccessTokenValue;
80
+ }
81
+ };
82
+ exports.setOAuthToObject = setOAuthToObject;
83
+ function setFlattenedQueryParams(urlSearchParams, parameter, key = "") {
84
+ if (parameter == null)
85
+ return;
86
+ if (typeof parameter === "object") {
87
+ if (Array.isArray(parameter)) {
88
+ parameter.forEach(item => setFlattenedQueryParams(urlSearchParams, item, key));
89
+ }
90
+ else {
91
+ Object.keys(parameter).forEach(currentKey => setFlattenedQueryParams(urlSearchParams, parameter[currentKey], `${key}${key !== '' ? '.' : ''}${currentKey}`));
92
+ }
93
+ }
94
+ else {
95
+ if (urlSearchParams.has(key)) {
96
+ urlSearchParams.append(key, parameter);
97
+ }
98
+ else {
99
+ urlSearchParams.set(key, parameter);
100
+ }
101
+ }
102
+ }
103
+ /**
104
+ *
105
+ * @export
106
+ */
107
+ const setSearchParams = function (url, ...objects) {
108
+ const searchParams = new URLSearchParams(url.search);
109
+ setFlattenedQueryParams(searchParams, objects);
110
+ url.search = searchParams.toString();
111
+ };
112
+ exports.setSearchParams = setSearchParams;
113
+ /**
114
+ *
115
+ * @export
116
+ */
117
+ const serializeDataIfNeeded = function (value, requestOptions, configuration) {
118
+ const nonString = typeof value !== 'string';
119
+ const needsSerialization = nonString && configuration && configuration.isJsonMime
120
+ ? configuration.isJsonMime(requestOptions.headers['Content-Type'])
121
+ : nonString;
122
+ return needsSerialization
123
+ ? JSON.stringify(value !== undefined ? value : {})
124
+ : (value || "");
125
+ };
126
+ exports.serializeDataIfNeeded = serializeDataIfNeeded;
127
+ /**
128
+ *
129
+ * @export
130
+ */
131
+ const toPathString = function (url) {
132
+ return url.pathname + url.search + url.hash;
133
+ };
134
+ exports.toPathString = toPathString;
135
+ /**
136
+ *
137
+ * @export
138
+ */
139
+ const createRequestFunction = function (axiosArgs, globalAxios, BASE_PATH, configuration) {
140
+ return (axios = globalAxios, basePath = BASE_PATH) => {
141
+ const axiosRequestArgs = { ...axiosArgs.options, url: (axios.defaults.baseURL ? '' : configuration?.basePath ?? basePath) + axiosArgs.url };
142
+ return axios.request(axiosRequestArgs);
143
+ };
144
+ };
145
+ exports.createRequestFunction = createRequestFunction;
146
+ //# sourceMappingURL=common.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"common.js","sourceRoot":"","sources":["../../../../libs/toolbox-api-client/src/common.ts"],"names":[],"mappings":"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"}
@@ -0,0 +1,91 @@
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
+ export interface ConfigurationParameters {
13
+ apiKey?: string | Promise<string> | ((name: string) => string) | ((name: string) => Promise<string>);
14
+ username?: string;
15
+ password?: string;
16
+ accessToken?: string | Promise<string> | ((name?: string, scopes?: string[]) => string) | ((name?: string, scopes?: string[]) => Promise<string>);
17
+ basePath?: string;
18
+ serverIndex?: number;
19
+ baseOptions?: any;
20
+ formDataCtor?: new () => any;
21
+ }
22
+ export declare class Configuration {
23
+ /**
24
+ * parameter for apiKey security
25
+ * @param name security name
26
+ * @memberof Configuration
27
+ */
28
+ apiKey?: string | Promise<string> | ((name: string) => string) | ((name: string) => Promise<string>);
29
+ /**
30
+ * parameter for basic security
31
+ *
32
+ * @type {string}
33
+ * @memberof Configuration
34
+ */
35
+ username?: string;
36
+ /**
37
+ * parameter for basic security
38
+ *
39
+ * @type {string}
40
+ * @memberof Configuration
41
+ */
42
+ password?: string;
43
+ /**
44
+ * parameter for oauth2 security
45
+ * @param name security name
46
+ * @param scopes oauth2 scope
47
+ * @memberof Configuration
48
+ */
49
+ accessToken?: string | Promise<string> | ((name?: string, scopes?: string[]) => string) | ((name?: string, scopes?: string[]) => Promise<string>);
50
+ /**
51
+ * override base path
52
+ *
53
+ * @type {string}
54
+ * @memberof Configuration
55
+ */
56
+ basePath?: string;
57
+ /**
58
+ * override server index
59
+ *
60
+ * @type {number}
61
+ * @memberof Configuration
62
+ */
63
+ serverIndex?: number;
64
+ /**
65
+ * base options for axios calls
66
+ *
67
+ * @type {any}
68
+ * @memberof Configuration
69
+ */
70
+ baseOptions?: any;
71
+ /**
72
+ * The FormData constructor that will be used to create multipart form data
73
+ * requests. You can inject this here so that execution environments that
74
+ * do not support the FormData class can still run the generated client.
75
+ *
76
+ * @type {new () => FormData}
77
+ */
78
+ formDataCtor?: new () => any;
79
+ constructor(param?: ConfigurationParameters);
80
+ /**
81
+ * Check if the given MIME is a JSON MIME.
82
+ * JSON MIME examples:
83
+ * application/json
84
+ * application/json; charset=UTF8
85
+ * APPLICATION/JSON
86
+ * application/vnd.company+json
87
+ * @param mime - MIME (Multipurpose Internet Mail Extensions)
88
+ * @return True if the given MIME is JSON, false otherwise.
89
+ */
90
+ isJsonMime(mime: string): boolean;
91
+ }
@@ -0,0 +1,107 @@
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.Configuration = void 0;
17
+ const packageJson = require("../package.json");
18
+ class Configuration {
19
+ /**
20
+ * parameter for apiKey security
21
+ * @param name security name
22
+ * @memberof Configuration
23
+ */
24
+ apiKey;
25
+ /**
26
+ * parameter for basic security
27
+ *
28
+ * @type {string}
29
+ * @memberof Configuration
30
+ */
31
+ username;
32
+ /**
33
+ * parameter for basic security
34
+ *
35
+ * @type {string}
36
+ * @memberof Configuration
37
+ */
38
+ password;
39
+ /**
40
+ * parameter for oauth2 security
41
+ * @param name security name
42
+ * @param scopes oauth2 scope
43
+ * @memberof Configuration
44
+ */
45
+ accessToken;
46
+ /**
47
+ * override base path
48
+ *
49
+ * @type {string}
50
+ * @memberof Configuration
51
+ */
52
+ basePath;
53
+ /**
54
+ * override server index
55
+ *
56
+ * @type {number}
57
+ * @memberof Configuration
58
+ */
59
+ serverIndex;
60
+ /**
61
+ * base options for axios calls
62
+ *
63
+ * @type {any}
64
+ * @memberof Configuration
65
+ */
66
+ baseOptions;
67
+ /**
68
+ * The FormData constructor that will be used to create multipart form data
69
+ * requests. You can inject this here so that execution environments that
70
+ * do not support the FormData class can still run the generated client.
71
+ *
72
+ * @type {new () => FormData}
73
+ */
74
+ formDataCtor;
75
+ constructor(param = {}) {
76
+ this.apiKey = param.apiKey;
77
+ this.username = param.username;
78
+ this.password = param.password;
79
+ this.accessToken = param.accessToken;
80
+ this.basePath = param.basePath;
81
+ this.serverIndex = param.serverIndex;
82
+ this.baseOptions = {
83
+ ...param.baseOptions,
84
+ headers: {
85
+ 'User-Agent': `toolbox-api-client-typescript/${packageJson.version}`,
86
+ ...param.baseOptions?.headers,
87
+ },
88
+ };
89
+ this.formDataCtor = param.formDataCtor;
90
+ }
91
+ /**
92
+ * Check if the given MIME is a JSON MIME.
93
+ * JSON MIME examples:
94
+ * application/json
95
+ * application/json; charset=UTF8
96
+ * APPLICATION/JSON
97
+ * application/vnd.company+json
98
+ * @param mime - MIME (Multipurpose Internet Mail Extensions)
99
+ * @return True if the given MIME is JSON, false otherwise.
100
+ */
101
+ isJsonMime(mime) {
102
+ const jsonMime = new RegExp('^(application\/json|[^;/ \t]+\/[^;/ \t]+[+]json)[ \t]*(;.*)?$', 'i');
103
+ return mime !== null && (jsonMime.test(mime) || mime.toLowerCase() === 'application/json-patch+json');
104
+ }
105
+ }
106
+ exports.Configuration = Configuration;
107
+ //# sourceMappingURL=configuration.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"configuration.js","sourceRoot":"","sources":["../../../../libs/toolbox-api-client/src/configuration.ts"],"names":[],"mappings":";AAAA,oBAAoB;AACpB,oBAAoB;AACpB;;;;;;;;;;GAUG;;;AAEH,+CAA+C;AAc/C,MAAa,aAAa;IACtB;;;;OAIG;IACH,MAAM,CAA+F;IACrG;;;;;OAKG;IACH,QAAQ,CAAU;IAClB;;;;;OAKG;IACH,QAAQ,CAAU;IAClB;;;;;OAKG;IACH,WAAW,CAAuI;IAClJ;;;;;OAKG;IACH,QAAQ,CAAU;IAClB;;;;;OAKG;IACH,WAAW,CAAU;IACrB;;;;;OAKG;IACH,WAAW,CAAO;IAClB;;;;;;OAMG;IACH,YAAY,CAAiB;IAE7B,YAAY,QAAiC,EAAE;QAC3C,IAAI,CAAC,MAAM,GAAG,KAAK,CAAC,MAAM,CAAC;QAC3B,IAAI,CAAC,QAAQ,GAAG,KAAK,CAAC,QAAQ,CAAC;QAC/B,IAAI,CAAC,QAAQ,GAAG,KAAK,CAAC,QAAQ,CAAC;QAC/B,IAAI,CAAC,WAAW,GAAG,KAAK,CAAC,WAAW,CAAC;QACrC,IAAI,CAAC,QAAQ,GAAG,KAAK,CAAC,QAAQ,CAAC;QAC/B,IAAI,CAAC,WAAW,GAAG,KAAK,CAAC,WAAW,CAAC;QACrC,IAAI,CAAC,WAAW,GAAG;YACf,GAAG,KAAK,CAAC,WAAW;YACpB,OAAO,EAAE;gBACL,YAAY,EAAE,iCAAiC,WAAW,CAAC,OAAO,EAAE;gBACpE,GAAG,KAAK,CAAC,WAAW,EAAE,OAAO;aAChC;SACJ,CAAC;QACF,IAAI,CAAC,YAAY,GAAG,KAAK,CAAC,YAAY,CAAC;IAC3C,CAAC;IAED;;;;;;;;;OASG;IACI,UAAU,CAAC,IAAY;QAC1B,MAAM,QAAQ,GAAW,IAAI,MAAM,CAAC,+DAA+D,EAAE,GAAG,CAAC,CAAC;QAC1G,OAAO,IAAI,KAAK,IAAI,IAAI,CAAC,QAAQ,CAAC,IAAI,CAAC,IAAI,CAAC,IAAI,IAAI,CAAC,WAAW,EAAE,KAAK,6BAA6B,CAAC,CAAC;IAC1G,CAAC;CACJ;AAzFD,sCAyFC"}
package/src/index.d.ts ADDED
@@ -0,0 +1,14 @@
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
+ export * from "./api";
13
+ export * from "./configuration";
14
+ export * from "./models";
package/src/index.js ADDED
@@ -0,0 +1,33 @@
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
+ var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
16
+ if (k2 === undefined) k2 = k;
17
+ var desc = Object.getOwnPropertyDescriptor(m, k);
18
+ if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
19
+ desc = { enumerable: true, get: function() { return m[k]; } };
20
+ }
21
+ Object.defineProperty(o, k2, desc);
22
+ }) : (function(o, m, k, k2) {
23
+ if (k2 === undefined) k2 = k;
24
+ o[k2] = m[k];
25
+ }));
26
+ var __exportStar = (this && this.__exportStar) || function(m, exports) {
27
+ for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
28
+ };
29
+ Object.defineProperty(exports, "__esModule", { value: true });
30
+ __exportStar(require("./api"), exports);
31
+ __exportStar(require("./configuration"), exports);
32
+ __exportStar(require("./models"), exports);
33
+ //# sourceMappingURL=index.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../libs/toolbox-api-client/src/index.ts"],"names":[],"mappings":";AAAA,oBAAoB;AACpB,oBAAoB;AACpB;;;;;;;;;;GAUG;;;;;;;;;;;;;;;;AAGH,wCAAsB;AACtB,kDAAgC;AAChC,2CAAyB"}
@@ -0,0 +1,36 @@
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 Command
16
+ */
17
+ export interface Command {
18
+ /**
19
+ *
20
+ * @type {string}
21
+ * @memberof Command
22
+ */
23
+ 'command': string;
24
+ /**
25
+ *
26
+ * @type {number}
27
+ * @memberof Command
28
+ */
29
+ 'exitCode'?: number;
30
+ /**
31
+ *
32
+ * @type {string}
33
+ * @memberof Command
34
+ */
35
+ 'id': string;
36
+ }
@@ -0,0 +1,16 @@
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
+ //# sourceMappingURL=command.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"command.js","sourceRoot":"","sources":["../../../../../libs/toolbox-api-client/src/models/command.ts"],"names":[],"mappings":";AAAA,oBAAoB;AACpB,oBAAoB;AACpB;;;;;;;;;;GAUG"}
@@ -0,0 +1,30 @@
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 CompletionContext
16
+ */
17
+ export interface CompletionContext {
18
+ /**
19
+ *
20
+ * @type {string}
21
+ * @memberof CompletionContext
22
+ */
23
+ 'triggerCharacter'?: string;
24
+ /**
25
+ *
26
+ * @type {number}
27
+ * @memberof CompletionContext
28
+ */
29
+ 'triggerKind': number;
30
+ }
@@ -0,0 +1,16 @@
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
+ //# sourceMappingURL=completion-context.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"completion-context.js","sourceRoot":"","sources":["../../../../../libs/toolbox-api-client/src/models/completion-context.ts"],"names":[],"mappings":";AAAA,oBAAoB;AACpB,oBAAoB;AACpB;;;;;;;;;;GAUG"}
@@ -0,0 +1,60 @@
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 CompletionItem
16
+ */
17
+ export interface CompletionItem {
18
+ /**
19
+ *
20
+ * @type {string}
21
+ * @memberof CompletionItem
22
+ */
23
+ 'detail'?: string;
24
+ /**
25
+ *
26
+ * @type {object}
27
+ * @memberof CompletionItem
28
+ */
29
+ 'documentation'?: object;
30
+ /**
31
+ *
32
+ * @type {string}
33
+ * @memberof CompletionItem
34
+ */
35
+ 'filterText'?: string;
36
+ /**
37
+ *
38
+ * @type {string}
39
+ * @memberof CompletionItem
40
+ */
41
+ 'insertText'?: string;
42
+ /**
43
+ *
44
+ * @type {number}
45
+ * @memberof CompletionItem
46
+ */
47
+ 'kind'?: number;
48
+ /**
49
+ *
50
+ * @type {string}
51
+ * @memberof CompletionItem
52
+ */
53
+ 'label': string;
54
+ /**
55
+ *
56
+ * @type {string}
57
+ * @memberof CompletionItem
58
+ */
59
+ 'sortText'?: string;
60
+ }
@@ -0,0 +1,16 @@
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
+ //# sourceMappingURL=completion-item.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"completion-item.js","sourceRoot":"","sources":["../../../../../libs/toolbox-api-client/src/models/completion-item.ts"],"names":[],"mappings":";AAAA,oBAAoB;AACpB,oBAAoB;AACpB;;;;;;;;;;GAUG"}
@@ -0,0 +1,31 @@
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 { CompletionItem } from './completion-item';
13
+ /**
14
+ *
15
+ * @export
16
+ * @interface CompletionList
17
+ */
18
+ export interface CompletionList {
19
+ /**
20
+ *
21
+ * @type {boolean}
22
+ * @memberof CompletionList
23
+ */
24
+ 'isIncomplete': boolean;
25
+ /**
26
+ *
27
+ * @type {Array<CompletionItem>}
28
+ * @memberof CompletionList
29
+ */
30
+ 'items': Array<CompletionItem>;
31
+ }
@@ -0,0 +1,16 @@
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
+ //# sourceMappingURL=completion-list.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"completion-list.js","sourceRoot":"","sources":["../../../../../libs/toolbox-api-client/src/models/completion-list.ts"],"names":[],"mappings":";AAAA,oBAAoB;AACpB,oBAAoB;AACpB;;;;;;;;;;GAUG"}