@daytonaio/api-client 0.18.0-alpha.2 → 0.18.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (350) hide show
  1. package/package.json +5 -8
  2. package/src/api/api-keys-api.d.ts +220 -0
  3. package/src/api/api-keys-api.js +428 -0
  4. package/src/api/api-keys-api.js.map +1 -0
  5. package/src/api/docker-registry-api.d.ts +299 -0
  6. package/src/api/docker-registry-api.js +592 -0
  7. package/src/api/docker-registry-api.js.map +1 -0
  8. package/src/api/images-api.d.ts +317 -0
  9. package/src/api/images-api.js +624 -0
  10. package/src/api/images-api.js.map +1 -0
  11. package/src/api/nodes-api.d.ts +136 -0
  12. package/src/api/nodes-api.js +261 -0
  13. package/src/api/nodes-api.js.map +1 -0
  14. package/src/api/object-storage-api.d.ts +74 -0
  15. package/src/api/object-storage-api.js +127 -0
  16. package/src/api/object-storage-api.js.map +1 -0
  17. package/src/api/organizations-api.d.ts +927 -0
  18. package/src/api/organizations-api.js +1891 -0
  19. package/src/api/organizations-api.js.map +1 -0
  20. package/src/api/preview-api.d.ts +143 -0
  21. package/src/api/preview-api.js +265 -0
  22. package/src/api/preview-api.js.map +1 -0
  23. package/src/api/toolbox-api.d.ts +1599 -0
  24. package/src/api/toolbox-api.js +3250 -0
  25. package/src/api/toolbox-api.js.map +1 -0
  26. package/src/api/users-api.d.ts +166 -0
  27. package/src/api/users-api.js +311 -0
  28. package/src/api/users-api.js.map +1 -0
  29. package/src/api/volumes-api.d.ts +227 -0
  30. package/src/api/volumes-api.js +447 -0
  31. package/src/api/volumes-api.js.map +1 -0
  32. package/src/api/workspace-api.d.ts +516 -0
  33. package/src/api/workspace-api.js +1043 -0
  34. package/src/api/workspace-api.js.map +1 -0
  35. package/src/api.d.ts +22 -0
  36. package/src/api.js +28 -0
  37. package/src/api.js.map +1 -0
  38. package/src/base.d.ts +66 -0
  39. package/src/base.js +68 -0
  40. package/src/base.js.map +1 -0
  41. package/src/common.d.ts +65 -0
  42. package/src/common.js +146 -0
  43. package/src/common.js.map +1 -0
  44. package/src/configuration.d.ts +91 -0
  45. package/src/configuration.js +105 -0
  46. package/src/configuration.js.map +1 -0
  47. package/src/index.d.ts +14 -0
  48. package/src/index.js +20 -0
  49. package/src/index.js.map +1 -0
  50. package/src/models/api-key-list.d.ts +54 -0
  51. package/src/models/api-key-list.js +28 -0
  52. package/src/models/api-key-list.js.map +1 -0
  53. package/src/models/api-key-response.d.ts +54 -0
  54. package/src/models/api-key-response.js +28 -0
  55. package/src/models/api-key-response.js.map +1 -0
  56. package/src/models/build-image.d.ts +31 -0
  57. package/src/models/build-image.js +16 -0
  58. package/src/models/build-image.js.map +1 -0
  59. package/src/models/{command.ts → command.d.ts} +18 -21
  60. package/src/models/command.js +16 -0
  61. package/src/models/command.js.map +1 -0
  62. package/src/models/{completion-context.ts → completion-context.d.ts} +12 -15
  63. package/src/models/completion-context.js +16 -0
  64. package/src/models/completion-context.js.map +1 -0
  65. package/src/models/completion-item.d.ts +60 -0
  66. package/src/models/completion-item.js +16 -0
  67. package/src/models/completion-item.js.map +1 -0
  68. package/src/models/{completion-list.ts → completion-list.d.ts} +13 -19
  69. package/src/models/completion-list.js +16 -0
  70. package/src/models/completion-list.js.map +1 -0
  71. package/src/models/create-api-key.d.ts +42 -0
  72. package/src/models/create-api-key.js +28 -0
  73. package/src/models/create-api-key.js.map +1 -0
  74. package/src/models/{create-build-info.ts → create-build-info.d.ts} +12 -15
  75. package/src/models/create-build-info.js +16 -0
  76. package/src/models/create-build-info.js.map +1 -0
  77. package/src/models/create-docker-registry.d.ts +67 -0
  78. package/src/models/create-docker-registry.js +23 -0
  79. package/src/models/create-docker-registry.js.map +1 -0
  80. package/src/models/create-image.d.ts +36 -0
  81. package/src/models/create-image.js +16 -0
  82. package/src/models/create-image.js.map +1 -0
  83. package/src/models/create-node.d.ts +96 -0
  84. package/src/models/create-node.js +27 -0
  85. package/src/models/create-node.js.map +1 -0
  86. package/src/models/create-organization-invitation.d.ts +47 -0
  87. package/src/models/create-organization-invitation.js +21 -0
  88. package/src/models/create-organization-invitation.js.map +1 -0
  89. package/src/models/create-organization-quota.d.ts +84 -0
  90. package/src/models/create-organization-quota.js +16 -0
  91. package/src/models/create-organization-quota.js.map +1 -0
  92. package/src/models/create-organization-role.d.ts +48 -0
  93. package/src/models/create-organization-role.js +28 -0
  94. package/src/models/create-organization-role.js.map +1 -0
  95. package/src/models/{create-organization.ts → create-organization.d.ts} +6 -9
  96. package/src/models/create-organization.js +16 -0
  97. package/src/models/create-organization.js.map +1 -0
  98. package/src/models/{create-session-request.ts → create-session-request.d.ts} +6 -9
  99. package/src/models/create-session-request.js +16 -0
  100. package/src/models/create-session-request.js.map +1 -0
  101. package/src/models/create-user.d.ts +60 -0
  102. package/src/models/create-user.js +21 -0
  103. package/src/models/create-user.js.map +1 -0
  104. package/src/models/{create-volume.ts → create-volume.d.ts} +6 -9
  105. package/src/models/create-volume.js +16 -0
  106. package/src/models/create-volume.js.map +1 -0
  107. package/src/models/create-workspace.d.ts +120 -0
  108. package/src/models/create-workspace.js +27 -0
  109. package/src/models/create-workspace.js.map +1 -0
  110. package/src/models/docker-registry.d.ts +73 -0
  111. package/src/models/docker-registry.js +23 -0
  112. package/src/models/docker-registry.js.map +1 -0
  113. package/src/models/{execute-request.ts → execute-request.d.ts} +18 -21
  114. package/src/models/execute-request.js +16 -0
  115. package/src/models/execute-request.js.map +1 -0
  116. package/src/models/{execute-response.ts → execute-response.d.ts} +12 -15
  117. package/src/models/execute-response.js +16 -0
  118. package/src/models/execute-response.js.map +1 -0
  119. package/src/models/file-info.d.ts +66 -0
  120. package/src/models/file-info.js +16 -0
  121. package/src/models/file-info.js.map +1 -0
  122. package/src/models/{file-status.ts → file-status.d.ts} +24 -27
  123. package/src/models/file-status.js +16 -0
  124. package/src/models/file-status.js.map +1 -0
  125. package/src/models/{git-add-request.ts → git-add-request.d.ts} +12 -15
  126. package/src/models/git-add-request.js +16 -0
  127. package/src/models/git-add-request.js.map +1 -0
  128. package/src/models/{git-branch-request.ts → git-branch-request.d.ts} +12 -15
  129. package/src/models/git-branch-request.js +16 -0
  130. package/src/models/git-branch-request.js.map +1 -0
  131. package/src/models/git-clone-request.d.ts +54 -0
  132. package/src/models/git-clone-request.js +16 -0
  133. package/src/models/git-clone-request.js.map +1 -0
  134. package/src/models/git-commit-info.d.ts +48 -0
  135. package/src/models/git-commit-info.js +16 -0
  136. package/src/models/git-commit-info.js.map +1 -0
  137. package/src/models/git-commit-request.d.ts +42 -0
  138. package/src/models/git-commit-request.js +16 -0
  139. package/src/models/git-commit-request.js.map +1 -0
  140. package/src/models/{git-commit-response.ts → git-commit-response.d.ts} +6 -9
  141. package/src/models/git-commit-response.js +16 -0
  142. package/src/models/git-commit-response.js.map +1 -0
  143. package/src/models/{git-repo-request.ts → git-repo-request.d.ts} +18 -21
  144. package/src/models/git-repo-request.js +16 -0
  145. package/src/models/git-repo-request.js.map +1 -0
  146. package/src/models/git-status.d.ts +49 -0
  147. package/src/models/git-status.js +16 -0
  148. package/src/models/git-status.js.map +1 -0
  149. package/src/models/image-dto.d.ts +91 -0
  150. package/src/models/image-dto.js +16 -0
  151. package/src/models/image-dto.js.map +1 -0
  152. package/src/models/{image-state.ts → image-state.d.ts} +12 -17
  153. package/src/models/image-state.js +33 -0
  154. package/src/models/image-state.js.map +1 -0
  155. package/src/models/index.d.ts +77 -0
  156. package/src/models/index.js +81 -0
  157. package/src/models/index.js.map +1 -0
  158. package/src/models/{list-branch-response.ts → list-branch-response.d.ts} +6 -9
  159. package/src/models/list-branch-response.js +16 -0
  160. package/src/models/list-branch-response.js.map +1 -0
  161. package/src/models/lsp-completion-params.d.ts +50 -0
  162. package/src/models/lsp-completion-params.js +16 -0
  163. package/src/models/lsp-completion-params.js.map +1 -0
  164. package/src/models/{lsp-document-request.ts → lsp-document-request.d.ts} +18 -21
  165. package/src/models/lsp-document-request.js +16 -0
  166. package/src/models/lsp-document-request.js.map +1 -0
  167. package/src/models/{lsp-location.ts → lsp-location.d.ts} +13 -19
  168. package/src/models/lsp-location.js +16 -0
  169. package/src/models/lsp-location.js.map +1 -0
  170. package/src/models/{lsp-server-request.ts → lsp-server-request.d.ts} +12 -15
  171. package/src/models/lsp-server-request.js +16 -0
  172. package/src/models/lsp-server-request.js.map +1 -0
  173. package/src/models/lsp-symbol.d.ts +37 -0
  174. package/src/models/lsp-symbol.js +16 -0
  175. package/src/models/lsp-symbol.js.map +1 -0
  176. package/src/models/{match.ts → match.d.ts} +18 -21
  177. package/src/models/match.js +16 -0
  178. package/src/models/match.js.map +1 -0
  179. package/src/models/organization-invitation.d.ts +97 -0
  180. package/src/models/organization-invitation.js +27 -0
  181. package/src/models/organization-invitation.js.map +1 -0
  182. package/src/models/organization-role.d.ts +72 -0
  183. package/src/models/organization-role.js +28 -0
  184. package/src/models/organization-role.js.map +1 -0
  185. package/src/models/{organization-suspension.ts → organization-suspension.d.ts} +12 -15
  186. package/src/models/organization-suspension.js +16 -0
  187. package/src/models/organization-suspension.js.map +1 -0
  188. package/src/models/organization-user.d.ts +72 -0
  189. package/src/models/organization-user.js +21 -0
  190. package/src/models/organization-user.js.map +1 -0
  191. package/src/models/organization.d.ts +78 -0
  192. package/src/models/organization.js +16 -0
  193. package/src/models/organization.js.map +1 -0
  194. package/src/models/paginated-images-dto.d.ts +43 -0
  195. package/src/models/paginated-images-dto.js +16 -0
  196. package/src/models/paginated-images-dto.js.map +1 -0
  197. package/src/models/{port-preview-url.ts → port-preview-url.d.ts} +12 -15
  198. package/src/models/port-preview-url.js +16 -0
  199. package/src/models/port-preview-url.js.map +1 -0
  200. package/src/models/{position.ts → position.d.ts} +12 -15
  201. package/src/models/position.js +16 -0
  202. package/src/models/position.js.map +1 -0
  203. package/src/models/{project-dir-response.ts → project-dir-response.d.ts} +6 -9
  204. package/src/models/project-dir-response.js +16 -0
  205. package/src/models/project-dir-response.js.map +1 -0
  206. package/src/models/{range.ts → range.d.ts} +13 -19
  207. package/src/models/range.js +16 -0
  208. package/src/models/range.js.map +1 -0
  209. package/src/models/registry-push-access-dto.d.ts +54 -0
  210. package/src/models/registry-push-access-dto.js +16 -0
  211. package/src/models/registry-push-access-dto.js.map +1 -0
  212. package/src/models/{replace-request.ts → replace-request.d.ts} +18 -21
  213. package/src/models/replace-request.js +16 -0
  214. package/src/models/replace-request.js.map +1 -0
  215. package/src/models/{replace-result.ts → replace-result.d.ts} +18 -21
  216. package/src/models/replace-result.js +16 -0
  217. package/src/models/replace-result.js.map +1 -0
  218. package/src/models/{search-files-response.ts → search-files-response.d.ts} +6 -9
  219. package/src/models/search-files-response.js +16 -0
  220. package/src/models/search-files-response.js.map +1 -0
  221. package/src/models/session-execute-request.d.ts +37 -0
  222. package/src/models/session-execute-request.js +16 -0
  223. package/src/models/session-execute-request.js.map +1 -0
  224. package/src/models/session-execute-response.d.ts +36 -0
  225. package/src/models/session-execute-response.js +16 -0
  226. package/src/models/session-execute-response.js.map +1 -0
  227. package/src/models/session.d.ts +31 -0
  228. package/src/models/session.js +16 -0
  229. package/src/models/session.js.map +1 -0
  230. package/src/models/{set-image-general-status.ts → set-image-general-status.d.ts} +6 -9
  231. package/src/models/set-image-general-status.js +16 -0
  232. package/src/models/set-image-general-status.js.map +1 -0
  233. package/src/models/storage-access-dto.d.ts +54 -0
  234. package/src/models/storage-access-dto.js +16 -0
  235. package/src/models/storage-access-dto.js.map +1 -0
  236. package/src/models/{toggle-state.ts → toggle-state.d.ts} +6 -9
  237. package/src/models/toggle-state.js +16 -0
  238. package/src/models/toggle-state.js.map +1 -0
  239. package/src/models/{update-assigned-organization-roles.ts → update-assigned-organization-roles.d.ts} +6 -9
  240. package/src/models/update-assigned-organization-roles.js +16 -0
  241. package/src/models/update-assigned-organization-roles.js.map +1 -0
  242. package/src/models/{update-docker-registry.ts → update-docker-registry.d.ts} +18 -21
  243. package/src/models/update-docker-registry.js +16 -0
  244. package/src/models/update-docker-registry.js.map +1 -0
  245. package/src/models/update-organization-invitation.d.ts +41 -0
  246. package/src/models/update-organization-invitation.js +21 -0
  247. package/src/models/update-organization-invitation.js.map +1 -0
  248. package/src/models/update-organization-member-role.d.ts +29 -0
  249. package/src/models/update-organization-member-role.js +21 -0
  250. package/src/models/update-organization-member-role.js.map +1 -0
  251. package/src/models/update-organization-quota.d.ts +84 -0
  252. package/src/models/update-organization-quota.js +16 -0
  253. package/src/models/update-organization-quota.js.map +1 -0
  254. package/src/models/update-organization-role.d.ts +48 -0
  255. package/src/models/update-organization-role.js +28 -0
  256. package/src/models/update-organization-role.js.map +1 -0
  257. package/src/models/usage-overview.d.ts +108 -0
  258. package/src/models/usage-overview.js +16 -0
  259. package/src/models/usage-overview.js.map +1 -0
  260. package/src/models/{user-public-key.ts → user-public-key.d.ts} +12 -15
  261. package/src/models/user-public-key.js +16 -0
  262. package/src/models/user-public-key.js.map +1 -0
  263. package/src/models/user.d.ts +43 -0
  264. package/src/{index.ts → models/user.js} +3 -4
  265. package/src/models/user.js.map +1 -0
  266. package/src/models/volume-dto.d.ts +70 -0
  267. package/src/models/volume-dto.js +26 -0
  268. package/src/models/volume-dto.js.map +1 -0
  269. package/src/models/workspace-info.d.ts +37 -0
  270. package/src/models/workspace-info.js +16 -0
  271. package/src/models/workspace-info.js.map +1 -0
  272. package/src/models/{workspace-labels.ts → workspace-labels.d.ts} +8 -9
  273. package/src/models/workspace-labels.js +16 -0
  274. package/src/models/workspace-labels.js.map +1 -0
  275. package/src/models/workspace-state.d.ts +34 -0
  276. package/src/models/workspace-state.js +39 -0
  277. package/src/models/workspace-state.js.map +1 -0
  278. package/src/models/{workspace-volume.ts → workspace-volume.d.ts} +12 -15
  279. package/src/models/workspace-volume.js +16 -0
  280. package/src/models/workspace-volume.js.map +1 -0
  281. package/src/models/workspace.d.ts +154 -0
  282. package/src/models/workspace.js +24 -0
  283. package/src/models/workspace.js.map +1 -0
  284. package/project.json +0 -55
  285. package/src/.openapi-generator/FILES +0 -97
  286. package/src/.openapi-generator/VERSION +0 -1
  287. package/src/.openapi-generator-ignore +0 -23
  288. package/src/api/api-keys-api.ts +0 -553
  289. package/src/api/docker-registry-api.ts +0 -800
  290. package/src/api/images-api.ts +0 -957
  291. package/src/api/nodes-api.ts +0 -319
  292. package/src/api/object-storage-api.ts +0 -159
  293. package/src/api/organizations-api.ts +0 -2641
  294. package/src/api/preview-api.ts +0 -328
  295. package/src/api/toolbox-api.ts +0 -4879
  296. package/src/api/users-api.ts +0 -382
  297. package/src/api/volumes-api.ts +0 -594
  298. package/src/api/workspace-api.ts +0 -1610
  299. package/src/api.ts +0 -25
  300. package/src/base.ts +0 -91
  301. package/src/common.ts +0 -162
  302. package/src/configuration.ts +0 -122
  303. package/src/git_push.sh +0 -57
  304. package/src/models/api-key-list.ts +0 -59
  305. package/src/models/api-key-response.ts +0 -60
  306. package/src/models/build-image.ts +0 -37
  307. package/src/models/build-info.ts +0 -51
  308. package/src/models/completion-item.ts +0 -63
  309. package/src/models/create-api-key.ts +0 -47
  310. package/src/models/create-docker-registry.ts +0 -73
  311. package/src/models/create-image.ts +0 -39
  312. package/src/models/create-node.ts +0 -102
  313. package/src/models/create-organization-invitation.ts +0 -53
  314. package/src/models/create-organization-quota.ts +0 -87
  315. package/src/models/create-organization-role.ts +0 -54
  316. package/src/models/create-user.ts +0 -68
  317. package/src/models/create-workspace.ts +0 -127
  318. package/src/models/docker-registry.ts +0 -79
  319. package/src/models/file-info.ts +0 -69
  320. package/src/models/get-build-logs400-response.ts +0 -33
  321. package/src/models/git-clone-request.ts +0 -57
  322. package/src/models/git-commit-info.ts +0 -51
  323. package/src/models/git-commit-request.ts +0 -45
  324. package/src/models/git-status.ts +0 -55
  325. package/src/models/image-dto.ts +0 -97
  326. package/src/models/index.ts +0 -77
  327. package/src/models/lsp-completion-params.ts +0 -58
  328. package/src/models/lsp-symbol.ts +0 -43
  329. package/src/models/organization-invitation.ts +0 -108
  330. package/src/models/organization-role.ts +0 -78
  331. package/src/models/organization-user.ts +0 -80
  332. package/src/models/organization.ts +0 -81
  333. package/src/models/paginated-images-dto.ts +0 -49
  334. package/src/models/registry-push-access-dto.ts +0 -57
  335. package/src/models/session-execute-request.ts +0 -40
  336. package/src/models/session-execute-response.ts +0 -39
  337. package/src/models/session.ts +0 -37
  338. package/src/models/storage-access-dto.ts +0 -63
  339. package/src/models/update-organization-invitation.ts +0 -47
  340. package/src/models/update-organization-member-role.ts +0 -35
  341. package/src/models/update-organization-quota.ts +0 -87
  342. package/src/models/update-organization-role.ts +0 -54
  343. package/src/models/usage-overview.ts +0 -111
  344. package/src/models/user.ts +0 -49
  345. package/src/models/volume-dto.ts +0 -75
  346. package/src/models/workspace-info.ts +0 -40
  347. package/src/models/workspace-state.ts +0 -39
  348. package/src/models/workspace.ts +0 -162
  349. package/tsconfig.json +0 -20
  350. package/tsconfig.lib.json +0 -9
@@ -1,5 +1,3 @@
1
- /* tslint:disable */
2
- /* eslint-disable */
3
1
  /**
4
2
  * Daytona
5
3
  * Daytona AI platform API Docs
@@ -11,23 +9,22 @@
11
9
  * https://openapi-generator.tech
12
10
  * Do not edit the class manually.
13
11
  */
14
-
15
12
  /**
16
13
  *
17
14
  * @export
18
15
  * @interface CreateBuildInfo
19
16
  */
20
17
  export interface CreateBuildInfo {
21
- /**
22
- * The Dockerfile content used for the build
23
- * @type {string}
24
- * @memberof CreateBuildInfo
25
- */
26
- dockerfileContent: string
27
- /**
28
- * The context hashes used for the build
29
- * @type {Array<string>}
30
- * @memberof CreateBuildInfo
31
- */
32
- contextHashes?: Array<string>
18
+ /**
19
+ * The Dockerfile content used for the build
20
+ * @type {string}
21
+ * @memberof CreateBuildInfo
22
+ */
23
+ dockerfileContent: string;
24
+ /**
25
+ * The context hashes used for the build
26
+ * @type {Array<string>}
27
+ * @memberof CreateBuildInfo
28
+ */
29
+ contextHashes?: Array<string>;
33
30
  }
@@ -0,0 +1,16 @@
1
+ "use strict";
2
+ /* tslint:disable */
3
+ /* eslint-disable */
4
+ /**
5
+ * Daytona
6
+ * Daytona AI platform API Docs
7
+ *
8
+ * The version of the OpenAPI document: 1.0
9
+ * Contact: support@daytona.com
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=create-build-info.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"create-build-info.js","sourceRoot":"","sources":["../../../../../libs/api-client/src/models/create-build-info.ts"],"names":[],"mappings":";AAAA,oBAAoB;AACpB,oBAAoB;AACpB;;;;;;;;;;GAUG"}
@@ -0,0 +1,67 @@
1
+ /**
2
+ * Daytona
3
+ * Daytona AI platform API Docs
4
+ *
5
+ * The version of the OpenAPI document: 1.0
6
+ * Contact: support@daytona.com
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 CreateDockerRegistry
16
+ */
17
+ export interface CreateDockerRegistry {
18
+ /**
19
+ * Registry name
20
+ * @type {string}
21
+ * @memberof CreateDockerRegistry
22
+ */
23
+ name: string;
24
+ /**
25
+ * Registry URL
26
+ * @type {string}
27
+ * @memberof CreateDockerRegistry
28
+ */
29
+ url: string;
30
+ /**
31
+ * Registry username
32
+ * @type {string}
33
+ * @memberof CreateDockerRegistry
34
+ */
35
+ username: string;
36
+ /**
37
+ * Registry password
38
+ * @type {string}
39
+ * @memberof CreateDockerRegistry
40
+ */
41
+ password: string;
42
+ /**
43
+ * Registry project
44
+ * @type {string}
45
+ * @memberof CreateDockerRegistry
46
+ */
47
+ project: string;
48
+ /**
49
+ * Registry type
50
+ * @type {string}
51
+ * @memberof CreateDockerRegistry
52
+ */
53
+ registryType: CreateDockerRegistryRegistryTypeEnum;
54
+ /**
55
+ * Set as default registry
56
+ * @type {boolean}
57
+ * @memberof CreateDockerRegistry
58
+ */
59
+ isDefault: boolean;
60
+ }
61
+ export declare const CreateDockerRegistryRegistryTypeEnum: {
62
+ readonly INTERNAL: "internal";
63
+ readonly ORGANIZATION: "organization";
64
+ readonly PUBLIC: "public";
65
+ readonly TRANSIENT: "transient";
66
+ };
67
+ export type CreateDockerRegistryRegistryTypeEnum = (typeof CreateDockerRegistryRegistryTypeEnum)[keyof typeof CreateDockerRegistryRegistryTypeEnum];
@@ -0,0 +1,23 @@
1
+ "use strict";
2
+ /* tslint:disable */
3
+ /* eslint-disable */
4
+ /**
5
+ * Daytona
6
+ * Daytona AI platform API Docs
7
+ *
8
+ * The version of the OpenAPI document: 1.0
9
+ * Contact: support@daytona.com
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.CreateDockerRegistryRegistryTypeEnum = void 0;
17
+ exports.CreateDockerRegistryRegistryTypeEnum = {
18
+ INTERNAL: 'internal',
19
+ ORGANIZATION: 'organization',
20
+ PUBLIC: 'public',
21
+ TRANSIENT: 'transient',
22
+ };
23
+ //# sourceMappingURL=create-docker-registry.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"create-docker-registry.js","sourceRoot":"","sources":["../../../../../libs/api-client/src/models/create-docker-registry.ts"],"names":[],"mappings":";AAAA,oBAAoB;AACpB,oBAAoB;AACpB;;;;;;;;;;GAUG;;;AAoDU,QAAA,oCAAoC,GAAG;IAClD,QAAQ,EAAE,UAAU;IACpB,YAAY,EAAE,cAAc;IAC5B,MAAM,EAAE,QAAQ;IAChB,SAAS,EAAE,WAAW;CACd,CAAA"}
@@ -0,0 +1,36 @@
1
+ /**
2
+ * Daytona
3
+ * Daytona AI platform API Docs
4
+ *
5
+ * The version of the OpenAPI document: 1.0
6
+ * Contact: support@daytona.com
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 CreateImage
16
+ */
17
+ export interface CreateImage {
18
+ /**
19
+ * The name of the image
20
+ * @type {string}
21
+ * @memberof CreateImage
22
+ */
23
+ name: string;
24
+ /**
25
+ * The entrypoint command for the image
26
+ * @type {Array<string>}
27
+ * @memberof CreateImage
28
+ */
29
+ entrypoint?: Array<string>;
30
+ /**
31
+ * Whether the image is general
32
+ * @type {boolean}
33
+ * @memberof CreateImage
34
+ */
35
+ general?: boolean;
36
+ }
@@ -0,0 +1,16 @@
1
+ "use strict";
2
+ /* tslint:disable */
3
+ /* eslint-disable */
4
+ /**
5
+ * Daytona
6
+ * Daytona AI platform API Docs
7
+ *
8
+ * The version of the OpenAPI document: 1.0
9
+ * Contact: support@daytona.com
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=create-image.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"create-image.js","sourceRoot":"","sources":["../../../../../libs/api-client/src/models/create-image.ts"],"names":[],"mappings":";AAAA,oBAAoB;AACpB,oBAAoB;AACpB;;;;;;;;;;GAUG"}
@@ -0,0 +1,96 @@
1
+ /**
2
+ * Daytona
3
+ * Daytona AI platform API Docs
4
+ *
5
+ * The version of the OpenAPI document: 1.0
6
+ * Contact: support@daytona.com
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 CreateNode
16
+ */
17
+ export interface CreateNode {
18
+ /**
19
+ *
20
+ * @type {string}
21
+ * @memberof CreateNode
22
+ */
23
+ domain: string;
24
+ /**
25
+ *
26
+ * @type {string}
27
+ * @memberof CreateNode
28
+ */
29
+ apiUrl: string;
30
+ /**
31
+ *
32
+ * @type {string}
33
+ * @memberof CreateNode
34
+ */
35
+ apiKey: string;
36
+ /**
37
+ *
38
+ * @type {number}
39
+ * @memberof CreateNode
40
+ */
41
+ cpu: number;
42
+ /**
43
+ *
44
+ * @type {number}
45
+ * @memberof CreateNode
46
+ */
47
+ memory: number;
48
+ /**
49
+ *
50
+ * @type {number}
51
+ * @memberof CreateNode
52
+ */
53
+ disk: number;
54
+ /**
55
+ *
56
+ * @type {number}
57
+ * @memberof CreateNode
58
+ */
59
+ gpu: number;
60
+ /**
61
+ *
62
+ * @type {string}
63
+ * @memberof CreateNode
64
+ */
65
+ gpuType: string;
66
+ /**
67
+ *
68
+ * @type {string}
69
+ * @memberof CreateNode
70
+ */
71
+ class: CreateNodeClassEnum;
72
+ /**
73
+ *
74
+ * @type {number}
75
+ * @memberof CreateNode
76
+ */
77
+ capacity: number;
78
+ /**
79
+ *
80
+ * @type {string}
81
+ * @memberof CreateNode
82
+ */
83
+ region: CreateNodeRegionEnum;
84
+ }
85
+ export declare const CreateNodeClassEnum: {
86
+ readonly SMALL: "small";
87
+ readonly MEDIUM: "medium";
88
+ readonly LARGE: "large";
89
+ };
90
+ export type CreateNodeClassEnum = (typeof CreateNodeClassEnum)[keyof typeof CreateNodeClassEnum];
91
+ export declare const CreateNodeRegionEnum: {
92
+ readonly EU: "eu";
93
+ readonly US: "us";
94
+ readonly ASIA: "asia";
95
+ };
96
+ export type CreateNodeRegionEnum = (typeof CreateNodeRegionEnum)[keyof typeof CreateNodeRegionEnum];
@@ -0,0 +1,27 @@
1
+ "use strict";
2
+ /* tslint:disable */
3
+ /* eslint-disable */
4
+ /**
5
+ * Daytona
6
+ * Daytona AI platform API Docs
7
+ *
8
+ * The version of the OpenAPI document: 1.0
9
+ * Contact: support@daytona.com
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.CreateNodeRegionEnum = exports.CreateNodeClassEnum = void 0;
17
+ exports.CreateNodeClassEnum = {
18
+ SMALL: 'small',
19
+ MEDIUM: 'medium',
20
+ LARGE: 'large',
21
+ };
22
+ exports.CreateNodeRegionEnum = {
23
+ EU: 'eu',
24
+ US: 'us',
25
+ ASIA: 'asia',
26
+ };
27
+ //# sourceMappingURL=create-node.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"create-node.js","sourceRoot":"","sources":["../../../../../libs/api-client/src/models/create-node.ts"],"names":[],"mappings":";AAAA,oBAAoB;AACpB,oBAAoB;AACpB;;;;;;;;;;GAUG;;;AA4EU,QAAA,mBAAmB,GAAG;IACjC,KAAK,EAAE,OAAO;IACd,MAAM,EAAE,QAAQ;IAChB,KAAK,EAAE,OAAO;CACN,CAAA;AAGG,QAAA,oBAAoB,GAAG;IAClC,EAAE,EAAE,IAAI;IACR,EAAE,EAAE,IAAI;IACR,IAAI,EAAE,MAAM;CACJ,CAAA"}
@@ -0,0 +1,47 @@
1
+ /**
2
+ * Daytona
3
+ * Daytona AI platform API Docs
4
+ *
5
+ * The version of the OpenAPI document: 1.0
6
+ * Contact: support@daytona.com
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 CreateOrganizationInvitation
16
+ */
17
+ export interface CreateOrganizationInvitation {
18
+ /**
19
+ * Email address of the invitee
20
+ * @type {string}
21
+ * @memberof CreateOrganizationInvitation
22
+ */
23
+ email: string;
24
+ /**
25
+ * Organization member role for the invitee
26
+ * @type {string}
27
+ * @memberof CreateOrganizationInvitation
28
+ */
29
+ role: CreateOrganizationInvitationRoleEnum;
30
+ /**
31
+ * Array of assigned role IDs for the invitee
32
+ * @type {Array<string>}
33
+ * @memberof CreateOrganizationInvitation
34
+ */
35
+ assignedRoleIds: Array<string>;
36
+ /**
37
+ * Expiration date of the invitation
38
+ * @type {Date}
39
+ * @memberof CreateOrganizationInvitation
40
+ */
41
+ expiresAt?: Date;
42
+ }
43
+ export declare const CreateOrganizationInvitationRoleEnum: {
44
+ readonly OWNER: "owner";
45
+ readonly MEMBER: "member";
46
+ };
47
+ export type CreateOrganizationInvitationRoleEnum = (typeof CreateOrganizationInvitationRoleEnum)[keyof typeof CreateOrganizationInvitationRoleEnum];
@@ -0,0 +1,21 @@
1
+ "use strict";
2
+ /* tslint:disable */
3
+ /* eslint-disable */
4
+ /**
5
+ * Daytona
6
+ * Daytona AI platform API Docs
7
+ *
8
+ * The version of the OpenAPI document: 1.0
9
+ * Contact: support@daytona.com
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.CreateOrganizationInvitationRoleEnum = void 0;
17
+ exports.CreateOrganizationInvitationRoleEnum = {
18
+ OWNER: 'owner',
19
+ MEMBER: 'member',
20
+ };
21
+ //# sourceMappingURL=create-organization-invitation.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"create-organization-invitation.js","sourceRoot":"","sources":["../../../../../libs/api-client/src/models/create-organization-invitation.ts"],"names":[],"mappings":";AAAA,oBAAoB;AACpB,oBAAoB;AACpB;;;;;;;;;;GAUG;;;AAkCU,QAAA,oCAAoC,GAAG;IAClD,KAAK,EAAE,OAAO;IACd,MAAM,EAAE,QAAQ;CACR,CAAA"}
@@ -0,0 +1,84 @@
1
+ /**
2
+ * Daytona
3
+ * Daytona AI platform API Docs
4
+ *
5
+ * The version of the OpenAPI document: 1.0
6
+ * Contact: support@daytona.com
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 CreateOrganizationQuota
16
+ */
17
+ export interface CreateOrganizationQuota {
18
+ /**
19
+ *
20
+ * @type {number}
21
+ * @memberof CreateOrganizationQuota
22
+ */
23
+ totalCpuQuota?: number;
24
+ /**
25
+ *
26
+ * @type {number}
27
+ * @memberof CreateOrganizationQuota
28
+ */
29
+ totalMemoryQuota?: number;
30
+ /**
31
+ *
32
+ * @type {number}
33
+ * @memberof CreateOrganizationQuota
34
+ */
35
+ totalDiskQuota?: number;
36
+ /**
37
+ *
38
+ * @type {number}
39
+ * @memberof CreateOrganizationQuota
40
+ */
41
+ maxCpuPerWorkspace?: number;
42
+ /**
43
+ *
44
+ * @type {number}
45
+ * @memberof CreateOrganizationQuota
46
+ */
47
+ maxMemoryPerWorkspace?: number;
48
+ /**
49
+ *
50
+ * @type {number}
51
+ * @memberof CreateOrganizationQuota
52
+ */
53
+ maxDiskPerWorkspace?: number;
54
+ /**
55
+ *
56
+ * @type {number}
57
+ * @memberof CreateOrganizationQuota
58
+ */
59
+ maxConcurrentWorkspaces?: number;
60
+ /**
61
+ *
62
+ * @type {number}
63
+ * @memberof CreateOrganizationQuota
64
+ */
65
+ workspaceQuota?: number;
66
+ /**
67
+ *
68
+ * @type {number}
69
+ * @memberof CreateOrganizationQuota
70
+ */
71
+ imageQuota?: number;
72
+ /**
73
+ *
74
+ * @type {number}
75
+ * @memberof CreateOrganizationQuota
76
+ */
77
+ maxImageSize?: number;
78
+ /**
79
+ *
80
+ * @type {number}
81
+ * @memberof CreateOrganizationQuota
82
+ */
83
+ totalImageSize?: number;
84
+ }
@@ -0,0 +1,16 @@
1
+ "use strict";
2
+ /* tslint:disable */
3
+ /* eslint-disable */
4
+ /**
5
+ * Daytona
6
+ * Daytona AI platform API Docs
7
+ *
8
+ * The version of the OpenAPI document: 1.0
9
+ * Contact: support@daytona.com
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=create-organization-quota.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"create-organization-quota.js","sourceRoot":"","sources":["../../../../../libs/api-client/src/models/create-organization-quota.ts"],"names":[],"mappings":";AAAA,oBAAoB;AACpB,oBAAoB;AACpB;;;;;;;;;;GAUG"}
@@ -0,0 +1,48 @@
1
+ /**
2
+ * Daytona
3
+ * Daytona AI platform API Docs
4
+ *
5
+ * The version of the OpenAPI document: 1.0
6
+ * Contact: support@daytona.com
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 CreateOrganizationRole
16
+ */
17
+ export interface CreateOrganizationRole {
18
+ /**
19
+ * The name of the role
20
+ * @type {string}
21
+ * @memberof CreateOrganizationRole
22
+ */
23
+ name: string;
24
+ /**
25
+ * The description of the role
26
+ * @type {string}
27
+ * @memberof CreateOrganizationRole
28
+ */
29
+ description: string;
30
+ /**
31
+ * The list of permissions assigned to the role
32
+ * @type {Array<string>}
33
+ * @memberof CreateOrganizationRole
34
+ */
35
+ permissions: Array<CreateOrganizationRolePermissionsEnum>;
36
+ }
37
+ export declare const CreateOrganizationRolePermissionsEnum: {
38
+ readonly WRITE_REGISTRIES: "write:registries";
39
+ readonly DELETE_REGISTRIES: "delete:registries";
40
+ readonly WRITE_IMAGES: "write:images";
41
+ readonly DELETE_IMAGES: "delete:images";
42
+ readonly WRITE_SANDBOXES: "write:sandboxes";
43
+ readonly DELETE_SANDBOXES: "delete:sandboxes";
44
+ readonly READ_VOLUMES: "read:volumes";
45
+ readonly WRITE_VOLUMES: "write:volumes";
46
+ readonly DELETE_VOLUMES: "delete:volumes";
47
+ };
48
+ export type CreateOrganizationRolePermissionsEnum = (typeof CreateOrganizationRolePermissionsEnum)[keyof typeof CreateOrganizationRolePermissionsEnum];
@@ -0,0 +1,28 @@
1
+ "use strict";
2
+ /* tslint:disable */
3
+ /* eslint-disable */
4
+ /**
5
+ * Daytona
6
+ * Daytona AI platform API Docs
7
+ *
8
+ * The version of the OpenAPI document: 1.0
9
+ * Contact: support@daytona.com
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.CreateOrganizationRolePermissionsEnum = void 0;
17
+ exports.CreateOrganizationRolePermissionsEnum = {
18
+ WRITE_REGISTRIES: 'write:registries',
19
+ DELETE_REGISTRIES: 'delete:registries',
20
+ WRITE_IMAGES: 'write:images',
21
+ DELETE_IMAGES: 'delete:images',
22
+ WRITE_SANDBOXES: 'write:sandboxes',
23
+ DELETE_SANDBOXES: 'delete:sandboxes',
24
+ READ_VOLUMES: 'read:volumes',
25
+ WRITE_VOLUMES: 'write:volumes',
26
+ DELETE_VOLUMES: 'delete:volumes',
27
+ };
28
+ //# sourceMappingURL=create-organization-role.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"create-organization-role.js","sourceRoot":"","sources":["../../../../../libs/api-client/src/models/create-organization-role.ts"],"names":[],"mappings":";AAAA,oBAAoB;AACpB,oBAAoB;AACpB;;;;;;;;;;GAUG;;;AA4BU,QAAA,qCAAqC,GAAG;IACnD,gBAAgB,EAAE,kBAAkB;IACpC,iBAAiB,EAAE,mBAAmB;IACtC,YAAY,EAAE,cAAc;IAC5B,aAAa,EAAE,eAAe;IAC9B,eAAe,EAAE,iBAAiB;IAClC,gBAAgB,EAAE,kBAAkB;IACpC,YAAY,EAAE,cAAc;IAC5B,aAAa,EAAE,eAAe;IAC9B,cAAc,EAAE,gBAAgB;CACxB,CAAA"}
@@ -1,5 +1,3 @@
1
- /* tslint:disable */
2
- /* eslint-disable */
3
1
  /**
4
2
  * Daytona
5
3
  * Daytona AI platform API Docs
@@ -11,17 +9,16 @@
11
9
  * https://openapi-generator.tech
12
10
  * Do not edit the class manually.
13
11
  */
14
-
15
12
  /**
16
13
  *
17
14
  * @export
18
15
  * @interface CreateOrganization
19
16
  */
20
17
  export interface CreateOrganization {
21
- /**
22
- * The name of organization
23
- * @type {string}
24
- * @memberof CreateOrganization
25
- */
26
- name: string
18
+ /**
19
+ * The name of organization
20
+ * @type {string}
21
+ * @memberof CreateOrganization
22
+ */
23
+ name: string;
27
24
  }
@@ -0,0 +1,16 @@
1
+ "use strict";
2
+ /* tslint:disable */
3
+ /* eslint-disable */
4
+ /**
5
+ * Daytona
6
+ * Daytona AI platform API Docs
7
+ *
8
+ * The version of the OpenAPI document: 1.0
9
+ * Contact: support@daytona.com
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=create-organization.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"create-organization.js","sourceRoot":"","sources":["../../../../../libs/api-client/src/models/create-organization.ts"],"names":[],"mappings":";AAAA,oBAAoB;AACpB,oBAAoB;AACpB;;;;;;;;;;GAUG"}