@mittwald/cli 1.0.0-alpha.8 → 1.0.0-beta.1

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 (1226) hide show
  1. package/README.md +83 -2413
  2. package/bin/dev.cmd +1 -1
  3. package/bin/dev.js +5 -0
  4. package/bin/run.js +1 -1
  5. package/dist/commands/app/copy.d.ts +18 -0
  6. package/dist/commands/app/copy.js +40 -0
  7. package/dist/commands/app/create/node.d.ts +12 -0
  8. package/dist/commands/app/create/node.js +16 -0
  9. package/dist/commands/app/create/php.d.ts +12 -0
  10. package/dist/commands/app/create/php.js +13 -0
  11. package/dist/commands/app/create/python.d.ts +12 -0
  12. package/dist/commands/app/create/python.js +13 -0
  13. package/dist/commands/app/create/static.d.ts +12 -0
  14. package/dist/commands/app/create/static.js +13 -0
  15. package/dist/commands/app/dependency/list.d.ts +22 -0
  16. package/dist/commands/app/dependency/list.js +24 -0
  17. package/dist/commands/app/dependency/update.d.ts +20 -0
  18. package/dist/commands/app/dependency/update.js +104 -0
  19. package/dist/commands/app/dependency/versions.d.ts +24 -0
  20. package/dist/commands/app/dependency/versions.js +36 -0
  21. package/dist/commands/app/download.d.ts +20 -0
  22. package/dist/commands/app/download.js +60 -0
  23. package/dist/commands/app/get.d.ts +12 -0
  24. package/dist/commands/app/get.js +21 -0
  25. package/dist/commands/app/install/contao.d.ts +11 -0
  26. package/dist/commands/app/install/contao.js +23 -0
  27. package/dist/commands/app/install/drupal.d.ts +12 -0
  28. package/dist/commands/app/install/drupal.js +20 -0
  29. package/dist/commands/app/install/grav.d.ts +11 -0
  30. package/dist/commands/app/install/grav.js +21 -0
  31. package/dist/commands/app/install/humhub.d.ts +12 -0
  32. package/dist/commands/app/install/humhub.js +22 -0
  33. package/dist/commands/app/install/joomla.d.ts +11 -0
  34. package/dist/commands/app/install/joomla.js +22 -0
  35. package/dist/commands/app/install/magento2.d.ts +12 -0
  36. package/dist/commands/app/install/magento2.js +27 -0
  37. package/dist/commands/app/install/matomo.d.ts +11 -0
  38. package/dist/commands/app/install/matomo.js +20 -0
  39. package/dist/commands/app/install/moodle.d.ts +12 -0
  40. package/dist/commands/app/install/moodle.js +20 -0
  41. package/dist/commands/app/install/neos.d.ts +12 -0
  42. package/dist/commands/app/install/neos.js +20 -0
  43. package/dist/commands/app/install/nextcloud.d.ts +11 -0
  44. package/dist/commands/app/install/nextcloud.js +20 -0
  45. package/dist/commands/app/install/prestashop.d.ts +12 -0
  46. package/dist/commands/app/install/prestashop.js +22 -0
  47. package/dist/commands/app/install/shopware5.d.ts +11 -0
  48. package/dist/commands/app/install/shopware5.js +25 -0
  49. package/dist/commands/app/install/shopware6.d.ts +12 -0
  50. package/dist/commands/app/install/shopware6.js +25 -0
  51. package/dist/commands/app/install/typo3.d.ts +12 -0
  52. package/dist/commands/app/install/typo3.js +21 -0
  53. package/dist/commands/app/install/wordpress.d.ts +12 -0
  54. package/dist/commands/app/install/wordpress.js +20 -0
  55. package/dist/commands/app/list-upgrade-candidates.d.ts +24 -0
  56. package/dist/commands/app/list-upgrade-candidates.js +37 -0
  57. package/dist/commands/app/list.d.ts +31 -0
  58. package/dist/commands/app/list.js +79 -0
  59. package/dist/commands/app/ssh.d.ts +16 -0
  60. package/dist/commands/app/ssh.js +61 -0
  61. package/dist/commands/app/uninstall.d.ts +9 -0
  62. package/dist/commands/app/uninstall.js +17 -0
  63. package/dist/commands/app/update.d.ts +16 -0
  64. package/dist/commands/app/update.js +80 -0
  65. package/dist/commands/app/upgrade.d.ts +18 -0
  66. package/dist/commands/app/upgrade.js +172 -0
  67. package/dist/commands/app/upload.d.ts +20 -0
  68. package/dist/commands/app/upload.js +63 -0
  69. package/dist/commands/app/versions.d.ts +12 -0
  70. package/dist/commands/app/versions.js +44 -0
  71. package/dist/commands/backup/create.d.ts +21 -0
  72. package/dist/commands/backup/create.js +60 -0
  73. package/dist/commands/backup/delete.d.ts +15 -0
  74. package/dist/commands/backup/delete.js +18 -0
  75. package/dist/commands/backup/download.d.ts +29 -0
  76. package/dist/commands/backup/download.js +174 -0
  77. package/dist/commands/backup/get.d.ts +14 -0
  78. package/dist/commands/backup/get.js +26 -0
  79. package/dist/commands/backup/list.d.ts +25 -0
  80. package/dist/commands/backup/list.js +36 -0
  81. package/dist/commands/backup/schedule/create.d.ts +18 -0
  82. package/dist/commands/backup/schedule/create.js +57 -0
  83. package/dist/commands/backup/schedule/delete.d.ts +12 -0
  84. package/dist/commands/backup/schedule/delete.js +32 -0
  85. package/dist/commands/backup/schedule/list.d.ts +25 -0
  86. package/dist/commands/backup/schedule/list.js +28 -0
  87. package/dist/commands/backup/schedule/update.d.ts +18 -0
  88. package/dist/commands/backup/schedule/update.js +55 -0
  89. package/dist/commands/context/get.d.ts +10 -0
  90. package/dist/commands/context/get.js +74 -0
  91. package/dist/commands/context/reset.d.ts +6 -0
  92. package/dist/commands/context/reset.js +9 -0
  93. package/dist/commands/context/set.d.ts +12 -0
  94. package/dist/commands/context/set.js +42 -0
  95. package/dist/commands/conversation/categories.d.ts +21 -0
  96. package/dist/commands/conversation/categories.js +21 -0
  97. package/dist/commands/conversation/close.d.ts +8 -0
  98. package/dist/commands/conversation/close.js +20 -0
  99. package/dist/commands/conversation/create.d.ts +13 -0
  100. package/dist/commands/conversation/create.js +50 -0
  101. package/dist/commands/conversation/list.d.ts +21 -0
  102. package/dist/commands/conversation/list.js +33 -0
  103. package/dist/commands/conversation/reply.d.ts +13 -0
  104. package/dist/commands/conversation/reply.js +25 -0
  105. package/dist/commands/conversation/show.d.ts +9 -0
  106. package/dist/commands/conversation/show.js +97 -0
  107. package/dist/commands/conversation/show.test.js +100 -0
  108. package/dist/commands/cronjob/create.d.ts +24 -0
  109. package/dist/commands/cronjob/create.js +88 -0
  110. package/dist/commands/cronjob/delete.d.ts +13 -0
  111. package/dist/commands/cronjob/delete.js +21 -0
  112. package/dist/commands/cronjob/execute.d.ts +17 -0
  113. package/dist/commands/cronjob/execute.js +42 -0
  114. package/dist/commands/cronjob/execution/abort.d.ts +18 -0
  115. package/dist/commands/cronjob/execution/abort.js +41 -0
  116. package/dist/commands/cronjob/execution/get.d.ts +17 -0
  117. package/dist/commands/cronjob/execution/get.js +26 -0
  118. package/dist/commands/cronjob/execution/list.d.ts +24 -0
  119. package/dist/commands/cronjob/execution/list.js +39 -0
  120. package/dist/commands/cronjob/execution/logs.d.ts +17 -0
  121. package/dist/commands/cronjob/execution/logs.js +77 -0
  122. package/dist/commands/cronjob/get.d.ts +14 -0
  123. package/dist/commands/cronjob/get.js +30 -0
  124. package/dist/commands/cronjob/list.d.ts +25 -0
  125. package/dist/commands/cronjob/list.js +40 -0
  126. package/dist/commands/cronjob/update.d.ts +25 -0
  127. package/dist/commands/cronjob/update.js +84 -0
  128. package/dist/commands/database/mysql/charsets.d.ts +22 -0
  129. package/dist/commands/database/mysql/charsets.js +20 -0
  130. package/dist/commands/database/mysql/create.d.ts +25 -0
  131. package/dist/commands/database/mysql/create.js +108 -0
  132. package/dist/commands/database/mysql/create.test.d.ts +1 -0
  133. package/dist/commands/database/mysql/create.test.js +117 -0
  134. package/dist/commands/database/mysql/delete.d.ts +13 -0
  135. package/dist/commands/database/mysql/delete.js +16 -0
  136. package/dist/commands/database/mysql/dump.d.ts +21 -0
  137. package/dist/commands/database/mysql/dump.js +72 -0
  138. package/dist/commands/database/mysql/get.d.ts +15 -0
  139. package/dist/commands/database/mysql/get.js +15 -0
  140. package/dist/commands/database/mysql/import.d.ts +21 -0
  141. package/dist/commands/database/mysql/import.js +72 -0
  142. package/dist/commands/database/mysql/list.d.ts +22 -0
  143. package/dist/commands/database/mysql/list.js +54 -0
  144. package/dist/commands/database/mysql/phpmyadmin.d.ts +8 -0
  145. package/dist/commands/database/mysql/phpmyadmin.js +25 -0
  146. package/dist/commands/database/mysql/port-forward.d.ts +17 -0
  147. package/dist/commands/database/mysql/port-forward.js +44 -0
  148. package/dist/commands/database/mysql/shell.d.ts +17 -0
  149. package/dist/commands/database/mysql/shell.js +38 -0
  150. package/dist/commands/database/mysql/user/create.d.ts +20 -0
  151. package/dist/commands/database/mysql/user/create.js +67 -0
  152. package/dist/commands/database/mysql/user/delete.d.ts +13 -0
  153. package/dist/commands/database/mysql/user/delete.js +30 -0
  154. package/dist/commands/database/mysql/user/get.d.ts +14 -0
  155. package/dist/commands/database/mysql/user/get.js +19 -0
  156. package/dist/commands/database/mysql/user/list.d.ts +22 -0
  157. package/dist/commands/database/mysql/user/list.js +44 -0
  158. package/dist/commands/database/mysql/user/update.d.ts +21 -0
  159. package/dist/commands/database/mysql/user/update.js +111 -0
  160. package/dist/commands/database/mysql/versions.d.ts +21 -0
  161. package/dist/commands/database/mysql/versions.js +18 -0
  162. package/dist/commands/database/redis/create.d.ts +20 -0
  163. package/dist/commands/database/redis/create.js +83 -0
  164. package/dist/commands/database/redis/get.d.ts +14 -0
  165. package/dist/commands/database/redis/get.js +19 -0
  166. package/dist/commands/database/redis/list.d.ts +22 -0
  167. package/dist/commands/database/redis/list.js +27 -0
  168. package/dist/commands/database/redis/shell.d.ts +16 -0
  169. package/dist/commands/database/redis/shell.js +37 -0
  170. package/dist/commands/database/redis/versions.d.ts +22 -0
  171. package/dist/commands/database/redis/versions.js +23 -0
  172. package/dist/commands/ddev/init.d.ts +34 -0
  173. package/dist/commands/ddev/init.js +179 -0
  174. package/dist/commands/ddev/render-config.d.ts +14 -0
  175. package/dist/commands/ddev/render-config.js +25 -0
  176. package/dist/commands/domain/dnszone/get.d.ts +17 -0
  177. package/dist/commands/domain/dnszone/get.js +32 -0
  178. package/dist/commands/domain/dnszone/list.d.ts +22 -0
  179. package/dist/commands/domain/dnszone/list.js +68 -0
  180. package/dist/commands/domain/dnszone/update.d.ts +28 -0
  181. package/dist/commands/domain/dnszone/update.js +176 -0
  182. package/dist/commands/domain/get.d.ts +17 -0
  183. package/dist/commands/domain/get.js +32 -0
  184. package/dist/commands/domain/list.d.ts +22 -0
  185. package/dist/commands/domain/list.js +40 -0
  186. package/dist/commands/domain/virtualhost/create.d.ts +25 -0
  187. package/dist/commands/domain/virtualhost/create.js +106 -0
  188. package/dist/commands/domain/virtualhost/delete.d.ts +13 -0
  189. package/dist/commands/domain/virtualhost/delete.js +21 -0
  190. package/dist/commands/domain/virtualhost/get.d.ts +14 -0
  191. package/dist/commands/domain/virtualhost/get.js +74 -0
  192. package/dist/commands/domain/virtualhost/list.d.ts +23 -0
  193. package/dist/commands/domain/virtualhost/list.js +65 -0
  194. package/dist/commands/login/reset.d.ts +12 -0
  195. package/dist/commands/login/reset.js +42 -0
  196. package/dist/commands/login/status.d.ts +5 -0
  197. package/dist/commands/login/status.js +23 -0
  198. package/dist/commands/login/token.d.ts +13 -0
  199. package/dist/commands/login/token.js +49 -0
  200. package/dist/commands/mail/address/create.d.ts +34 -0
  201. package/dist/commands/mail/address/create.js +158 -0
  202. package/dist/commands/mail/address/delete.d.ts +13 -0
  203. package/dist/commands/mail/address/delete.js +22 -0
  204. package/dist/commands/mail/address/get.d.ts +16 -0
  205. package/dist/commands/mail/address/get.js +22 -0
  206. package/dist/commands/mail/address/list.d.ts +22 -0
  207. package/dist/commands/mail/address/list.js +50 -0
  208. package/dist/commands/mail/address/update.d.ts +35 -0
  209. package/dist/commands/mail/address/update.js +167 -0
  210. package/dist/commands/mail/deliverybox/create.d.ts +28 -0
  211. package/dist/commands/mail/deliverybox/create.js +91 -0
  212. package/dist/commands/mail/deliverybox/delete.d.ts +13 -0
  213. package/dist/commands/mail/deliverybox/delete.js +22 -0
  214. package/dist/commands/mail/deliverybox/get.d.ts +16 -0
  215. package/dist/commands/mail/deliverybox/get.js +22 -0
  216. package/dist/commands/mail/deliverybox/list.d.ts +23 -0
  217. package/dist/commands/mail/deliverybox/list.js +27 -0
  218. package/dist/commands/mail/deliverybox/update.d.ts +28 -0
  219. package/dist/commands/mail/deliverybox/update.js +91 -0
  220. package/dist/commands/org/delete.d.ts +13 -0
  221. package/dist/commands/org/delete.js +16 -0
  222. package/dist/commands/org/get.d.ts +14 -0
  223. package/dist/commands/org/get.js +52 -0
  224. package/dist/commands/org/invite/list-own.d.ts +57 -0
  225. package/dist/commands/org/invite/list-own.js +39 -0
  226. package/dist/commands/org/invite/list.d.ts +22 -0
  227. package/dist/commands/org/invite/list.js +33 -0
  228. package/dist/commands/org/invite/revoke.d.ts +17 -0
  229. package/dist/commands/org/invite/revoke.js +39 -0
  230. package/dist/commands/org/invite.d.ts +21 -0
  231. package/dist/commands/org/invite.js +53 -0
  232. package/dist/commands/org/list.d.ts +23 -0
  233. package/dist/commands/org/list.js +41 -0
  234. package/dist/commands/org/membership/list-own.d.ts +57 -0
  235. package/dist/commands/org/membership/list-own.js +39 -0
  236. package/dist/commands/org/membership/list.d.ts +56 -0
  237. package/dist/commands/org/membership/list.js +44 -0
  238. package/dist/commands/org/membership/revoke.d.ts +17 -0
  239. package/dist/commands/org/membership/revoke.js +43 -0
  240. package/dist/commands/project/create.d.ts +21 -0
  241. package/dist/commands/project/create.js +66 -0
  242. package/dist/commands/project/delete.d.ts +13 -0
  243. package/dist/commands/project/delete.js +16 -0
  244. package/dist/commands/project/filesystem/usage.d.ts +14 -0
  245. package/dist/commands/project/filesystem/usage.js +58 -0
  246. package/dist/commands/project/get.d.ts +14 -0
  247. package/dist/commands/project/get.js +82 -0
  248. package/dist/commands/project/invite/get.d.ts +14 -0
  249. package/dist/commands/project/invite/get.js +19 -0
  250. package/dist/commands/project/invite/list-own.d.ts +21 -0
  251. package/dist/commands/project/invite/list-own.js +34 -0
  252. package/dist/commands/project/invite/list.d.ts +22 -0
  253. package/dist/commands/project/invite/list.js +35 -0
  254. package/dist/commands/project/list.d.ts +21 -0
  255. package/dist/commands/project/list.js +36 -0
  256. package/dist/commands/project/membership/get-own.d.ts +12 -0
  257. package/dist/commands/project/membership/get-own.js +16 -0
  258. package/dist/commands/project/membership/get.d.ts +14 -0
  259. package/dist/commands/project/membership/get.js +19 -0
  260. package/dist/commands/project/membership/list-own.d.ts +21 -0
  261. package/dist/commands/project/membership/list-own.js +31 -0
  262. package/dist/commands/project/membership/list.d.ts +39 -0
  263. package/dist/commands/project/membership/list.js +54 -0
  264. package/dist/commands/project/ssh.d.ts +13 -0
  265. package/dist/commands/project/ssh.js +23 -0
  266. package/dist/commands/project/update.d.ts +17 -0
  267. package/dist/commands/project/update.js +41 -0
  268. package/dist/commands/server/get.d.ts +14 -0
  269. package/dist/commands/server/get.js +15 -0
  270. package/dist/commands/server/list.d.ts +21 -0
  271. package/dist/commands/server/list.js +46 -0
  272. package/dist/commands/sftp-user/create.d.ts +21 -0
  273. package/dist/commands/sftp-user/create.js +79 -0
  274. package/dist/commands/sftp-user/delete.d.ts +13 -0
  275. package/dist/commands/sftp-user/delete.js +21 -0
  276. package/dist/commands/sftp-user/list.d.ts +24 -0
  277. package/dist/commands/sftp-user/list.js +30 -0
  278. package/dist/commands/sftp-user/update.d.ts +23 -0
  279. package/dist/commands/sftp-user/update.js +96 -0
  280. package/dist/commands/ssh-user/create.d.ts +19 -0
  281. package/dist/commands/ssh-user/create.js +66 -0
  282. package/dist/commands/ssh-user/delete.d.ts +13 -0
  283. package/dist/commands/ssh-user/delete.js +21 -0
  284. package/dist/commands/ssh-user/list.d.ts +24 -0
  285. package/dist/commands/ssh-user/list.js +28 -0
  286. package/dist/commands/ssh-user/update.d.ts +21 -0
  287. package/dist/commands/ssh-user/update.js +85 -0
  288. package/dist/commands/user/api-token/create.d.ts +16 -0
  289. package/dist/commands/user/api-token/create.js +53 -0
  290. package/dist/commands/user/api-token/get.d.ts +14 -0
  291. package/dist/commands/user/api-token/get.js +19 -0
  292. package/dist/commands/user/api-token/list.d.ts +21 -0
  293. package/dist/commands/user/api-token/list.js +27 -0
  294. package/dist/commands/user/api-token/revoke.d.ts +13 -0
  295. package/dist/commands/user/api-token/revoke.js +21 -0
  296. package/dist/commands/user/get.d.ts +15 -0
  297. package/dist/commands/user/get.js +20 -0
  298. package/dist/commands/user/session/get.d.ts +14 -0
  299. package/dist/commands/user/session/get.js +19 -0
  300. package/dist/commands/user/session/list.d.ts +21 -0
  301. package/dist/commands/user/session/list.js +32 -0
  302. package/dist/commands/user/ssh-key/create.d.ts +14 -0
  303. package/dist/commands/user/ssh-key/create.js +69 -0
  304. package/dist/commands/user/ssh-key/delete.d.ts +13 -0
  305. package/dist/commands/user/ssh-key/delete.js +22 -0
  306. package/dist/commands/user/ssh-key/get.d.ts +14 -0
  307. package/dist/commands/user/ssh-key/get.js +19 -0
  308. package/dist/commands/user/ssh-key/import.d.ts +11 -0
  309. package/dist/commands/user/ssh-key/import.js +56 -0
  310. package/dist/commands/user/ssh-key/list.d.ts +23 -0
  311. package/dist/commands/user/ssh-key/list.js +26 -0
  312. package/dist/lib/apiutil/SuccessfulResponse.d.ts +19 -0
  313. package/dist/lib/apiutil/SuccessfulResponse.js +1 -0
  314. package/dist/lib/apiutil/api_consistency.d.ts +2 -0
  315. package/dist/lib/apiutil/api_consistency.js +27 -0
  316. package/dist/lib/apiutil/api_logging.d.ts +8 -0
  317. package/dist/lib/apiutil/api_logging.js +20 -0
  318. package/dist/lib/apiutil/api_retry.d.ts +2 -0
  319. package/dist/lib/apiutil/api_retry.js +43 -0
  320. package/dist/lib/apiutil/assert_success.d.ts +3 -0
  321. package/dist/lib/apiutil/assert_success.js +7 -0
  322. package/dist/lib/auth/token.d.ts +13 -0
  323. package/dist/lib/auth/token.js +44 -0
  324. package/dist/lib/basecommands/BaseCommand.d.ts +7 -0
  325. package/dist/lib/basecommands/BaseCommand.js +25 -0
  326. package/dist/lib/basecommands/CommandFlags.d.ts +6 -0
  327. package/dist/lib/basecommands/CommandFlags.js +1 -0
  328. package/dist/lib/basecommands/DeleteBaseCommand.d.ts +12 -0
  329. package/dist/lib/basecommands/DeleteBaseCommand.js +43 -0
  330. package/dist/lib/basecommands/ExecRenderBaseCommand.d.ts +8 -0
  331. package/dist/lib/basecommands/ExecRenderBaseCommand.js +25 -0
  332. package/dist/lib/basecommands/ExtendedBaseCommand.d.ts +11 -0
  333. package/dist/lib/basecommands/ExtendedBaseCommand.js +28 -0
  334. package/dist/lib/basecommands/GetBaseCommand.d.ts +16 -0
  335. package/dist/lib/basecommands/GetBaseCommand.js +25 -0
  336. package/dist/lib/basecommands/ListBaseCommand.d.ts +30 -0
  337. package/dist/lib/basecommands/ListBaseCommand.js +73 -0
  338. package/dist/lib/basecommands/RenderBaseCommand.d.ts +22 -0
  339. package/dist/lib/basecommands/RenderBaseCommand.js +62 -0
  340. package/dist/lib/context/Context.d.ts +37 -0
  341. package/dist/lib/context/Context.js +65 -0
  342. package/dist/lib/context/ContextProvider.d.ts +6 -0
  343. package/dist/lib/context/ContextProvider.js +1 -0
  344. package/dist/lib/context/DDEVContextProvider.d.ts +21 -0
  345. package/dist/lib/context/DDEVContextProvider.js +81 -0
  346. package/dist/lib/context/FlagSet.d.ts +23 -0
  347. package/dist/lib/context/FlagSet.js +1 -0
  348. package/dist/lib/context/FlagSetBuilder.d.ts +65 -0
  349. package/dist/lib/context/FlagSetBuilder.js +148 -0
  350. package/dist/lib/context/TerraformContextProvider.d.ts +7 -0
  351. package/dist/lib/context/TerraformContextProvider.js +55 -0
  352. package/dist/lib/context/UserContextProvider.d.ts +13 -0
  353. package/dist/lib/context/UserContextProvider.js +54 -0
  354. package/dist/lib/context/WritableContextProvider.d.ts +14 -0
  355. package/dist/lib/context/WritableContextProvider.js +1 -0
  356. package/dist/lib/ddev/config.d.ts +41 -0
  357. package/dist/lib/ddev/config.js +28 -0
  358. package/dist/lib/ddev/config_builder.d.ts +18 -0
  359. package/dist/lib/ddev/config_builder.js +138 -0
  360. package/dist/lib/ddev/config_loader.d.ts +2 -0
  361. package/dist/lib/ddev/config_loader.js +13 -0
  362. package/dist/lib/ddev/config_render.d.ts +2 -0
  363. package/dist/lib/ddev/config_render.js +6 -0
  364. package/dist/lib/ddev/flags.d.ts +12 -0
  365. package/dist/lib/ddev/flags.js +29 -0
  366. package/dist/lib/ddev/init_assert.d.ts +3 -0
  367. package/dist/lib/ddev/init_assert.js +22 -0
  368. package/dist/lib/ddev/init_database.d.ts +19 -0
  369. package/dist/lib/ddev/init_database.js +59 -0
  370. package/dist/lib/ddev/init_projecttype.d.ts +32 -0
  371. package/dist/lib/ddev/init_projecttype.js +102 -0
  372. package/dist/lib/error/InteractiveInputRequiredError.d.ts +7 -0
  373. package/dist/lib/error/InteractiveInputRequiredError.js +11 -0
  374. package/dist/lib/error/UnexpectedShortIDPassedError.d.ts +5 -0
  375. package/dist/lib/error/UnexpectedShortIDPassedError.js +10 -0
  376. package/dist/lib/error/handleError.d.ts +11 -0
  377. package/dist/lib/error/handleError.js +21 -0
  378. package/dist/lib/flags/expireFlags.d.ts +7 -0
  379. package/dist/lib/flags/expireFlags.js +18 -0
  380. package/dist/lib/resources/app/Installer.d.ts +27 -0
  381. package/dist/lib/resources/app/Installer.js +56 -0
  382. package/dist/lib/resources/app/custom_installation.d.ts +7 -0
  383. package/dist/lib/resources/app/custom_installation.js +16 -0
  384. package/dist/lib/resources/app/flags.d.ts +34 -0
  385. package/dist/lib/resources/app/flags.js +236 -0
  386. package/dist/lib/resources/app/hooks.d.ts +12 -0
  387. package/dist/lib/resources/app/hooks.js +43 -0
  388. package/dist/lib/resources/app/install.d.ts +10 -0
  389. package/dist/lib/resources/app/install.js +42 -0
  390. package/dist/lib/resources/app/sync.d.ts +15 -0
  391. package/dist/lib/resources/app/sync.js +55 -0
  392. package/dist/lib/resources/app/upgrade.d.ts +1 -0
  393. package/dist/lib/resources/app/upgrade.js +1 -0
  394. package/dist/lib/resources/app/uuid.d.ts +49 -0
  395. package/dist/lib/resources/app/uuid.js +86 -0
  396. package/dist/lib/resources/app/versions.d.ts +11 -0
  397. package/dist/lib/resources/app/versions.js +85 -0
  398. package/dist/lib/resources/app/wait.d.ts +4 -0
  399. package/dist/lib/resources/app/wait.js +17 -0
  400. package/dist/lib/resources/backup/flags.d.ts +5 -0
  401. package/dist/lib/resources/backup/flags.js +4 -0
  402. package/dist/lib/resources/backup/schedule/flags.d.ts +14 -0
  403. package/dist/lib/resources/backup/schedule/flags.js +18 -0
  404. package/dist/lib/resources/conversation/flags.d.ts +6 -0
  405. package/dist/lib/resources/conversation/flags.js +12 -0
  406. package/dist/lib/resources/conversation/message_input.d.ts +10 -0
  407. package/dist/lib/resources/cronjob/destination.d.ts +4 -0
  408. package/dist/lib/resources/cronjob/destination.js +22 -0
  409. package/dist/lib/resources/cronjob/flags.d.ts +26 -0
  410. package/dist/lib/resources/cronjob/flags.js +28 -0
  411. package/dist/lib/resources/database/common.d.ts +9 -0
  412. package/dist/lib/resources/database/common.js +17 -0
  413. package/dist/lib/resources/database/mysql/connect.d.ts +31 -0
  414. package/dist/lib/resources/database/mysql/connect.js +68 -0
  415. package/dist/lib/resources/database/mysql/flags.d.ts +16 -0
  416. package/dist/lib/resources/database/mysql/flags.js +48 -0
  417. package/dist/lib/resources/database/mysql/temp_user.d.ts +13 -0
  418. package/dist/lib/resources/database/mysql/temp_user.js +52 -0
  419. package/dist/lib/resources/database/mysql/user/flags.d.ts +22 -0
  420. package/dist/lib/resources/database/mysql/user/flags.js +25 -0
  421. package/dist/lib/resources/database/redis/connect.d.ts +8 -0
  422. package/dist/lib/resources/database/redis/connect.js +21 -0
  423. package/dist/lib/resources/database/redis/flags.d.ts +10 -0
  424. package/dist/lib/resources/database/redis/flags.js +35 -0
  425. package/dist/lib/resources/domain/dnszone/flags.d.ts +5 -0
  426. package/dist/lib/resources/domain/dnszone/flags.js +19 -0
  427. package/dist/lib/resources/domain/dnszone/records.d.ts +18 -0
  428. package/dist/lib/resources/domain/dnszone/records.js +18 -0
  429. package/dist/lib/resources/domain/flags.d.ts +5 -0
  430. package/dist/lib/resources/domain/flags.js +20 -0
  431. package/dist/lib/resources/login/useOwnAccount.d.ts +11 -0
  432. package/dist/lib/resources/login/useOwnAccount.js +7 -0
  433. package/dist/lib/resources/mail/commons.d.ts +2 -0
  434. package/dist/lib/resources/mail/commons.js +9 -0
  435. package/dist/lib/resources/mail/flags.d.ts +10 -0
  436. package/dist/lib/resources/mail/flags.js +22 -0
  437. package/dist/lib/resources/org/flags.d.ts +6 -0
  438. package/dist/lib/resources/org/flags.js +10 -0
  439. package/dist/lib/resources/project/flags.d.ts +19 -0
  440. package/dist/lib/resources/project/flags.js +78 -0
  441. package/dist/lib/resources/project/hooks.d.ts +4 -0
  442. package/dist/lib/resources/project/hooks.js +11 -0
  443. package/dist/lib/resources/project/ingress.d.ts +2 -0
  444. package/dist/lib/resources/project/ingress.js +16 -0
  445. package/dist/lib/resources/project/shortId.d.ts +2 -0
  446. package/dist/lib/resources/project/shortId.js +11 -0
  447. package/dist/lib/resources/projectbackup/hooks.d.ts +6 -0
  448. package/dist/lib/resources/projectbackup/hooks.js +19 -0
  449. package/dist/lib/resources/server/flags.d.ts +6 -0
  450. package/dist/lib/resources/server/flags.js +10 -0
  451. package/dist/lib/resources/sftp/flags.d.ts +22 -0
  452. package/dist/lib/resources/sftp/flags.js +28 -0
  453. package/dist/lib/resources/ssh/appinstall.d.ts +3 -0
  454. package/dist/lib/resources/ssh/appinstall.js +28 -0
  455. package/dist/lib/resources/ssh/connection.d.ts +22 -0
  456. package/dist/lib/resources/ssh/connection.js +19 -0
  457. package/dist/lib/resources/ssh/doc.d.ts +10 -0
  458. package/dist/lib/resources/ssh/doc.js +14 -0
  459. package/dist/lib/resources/ssh/exec.d.ts +18 -0
  460. package/dist/lib/resources/ssh/exec.js +52 -0
  461. package/dist/lib/resources/ssh/flags.d.ts +22 -0
  462. package/dist/lib/resources/ssh/flags.js +43 -0
  463. package/dist/lib/resources/ssh/project.d.ts +3 -0
  464. package/dist/lib/resources/ssh/project.js +18 -0
  465. package/dist/lib/resources/ssh/types.d.ts +5 -0
  466. package/dist/lib/resources/ssh/types.js +1 -0
  467. package/dist/lib/units/ByteQuantity.d.ts +23 -0
  468. package/dist/lib/units/ByteQuantity.js +49 -0
  469. package/dist/lib/units/Duration.d.ts +23 -0
  470. package/dist/lib/units/Duration.js +57 -0
  471. package/dist/lib/util/fs/hasBinaryInPath.d.ts +9 -0
  472. package/dist/lib/util/fs/hasBinaryInPath.js +25 -0
  473. package/dist/lib/util/fs/isNotFound.d.ts +8 -0
  474. package/dist/lib/util/fs/isNotFound.js +10 -0
  475. package/dist/lib/util/fs/pathExists.d.ts +7 -0
  476. package/dist/lib/util/fs/pathExists.js +20 -0
  477. package/dist/lib/util/language/articleForWord.d.ts +10 -0
  478. package/dist/lib/util/language/articleForWord.js +12 -0
  479. package/dist/lib/util/maybe.d.ts +12 -0
  480. package/dist/lib/util/maybe.js +17 -0
  481. package/dist/lib/util/mergeObjects.d.ts +7 -0
  482. package/dist/lib/util/mergeObjects.js +12 -0
  483. package/dist/lib/util/password/generatePassword.d.ts +9 -0
  484. package/dist/lib/util/password/generatePassword.js +12 -0
  485. package/dist/lib/util/password/generatePasswordWithSpecialChars.d.ts +9 -0
  486. package/dist/lib/util/password/generatePasswordWithSpecialChars.js +24 -0
  487. package/dist/lib/wait.d.ts +8 -0
  488. package/dist/lib/wait.js +24 -0
  489. package/dist/rendering/Printer.d.ts +12 -0
  490. package/dist/rendering/Printer.js +24 -0
  491. package/dist/rendering/formatter/GetFormatter.d.ts +14 -0
  492. package/dist/rendering/formatter/GetFormatter.js +24 -0
  493. package/dist/rendering/formatter/ListDateColumnFormatter.d.ts +26 -0
  494. package/dist/rendering/formatter/ListDateColumnFormatter.js +28 -0
  495. package/dist/rendering/formatter/ListFormatter.d.ts +29 -0
  496. package/dist/rendering/formatter/ListFormatter.js +85 -0
  497. package/dist/rendering/formatter/Table.d.ts +48 -0
  498. package/dist/rendering/formatter/Table.js +44 -0
  499. package/dist/rendering/formatter/Table.test.d.ts +1 -0
  500. package/dist/rendering/formatter/Table.test.js +105 -0
  501. package/dist/rendering/formatter/TableCSVRenderer.d.ts +12 -0
  502. package/dist/rendering/formatter/TableCSVRenderer.js +41 -0
  503. package/dist/rendering/formatter/TableColumnRenderer.d.ts +38 -0
  504. package/dist/rendering/formatter/TableColumnRenderer.js +128 -0
  505. package/dist/rendering/formatter/TableRenderer.d.ts +15 -0
  506. package/dist/rendering/formatter/TableRenderer.js +1 -0
  507. package/dist/rendering/formatter/printHeader.d.ts +7 -0
  508. package/dist/rendering/formatter/printHeader.js +12 -0
  509. package/dist/rendering/formatter/printKeyValues.d.ts +7 -0
  510. package/dist/rendering/formatter/printKeyValues.js +14 -0
  511. package/dist/rendering/formatter/smartPad.d.ts +1 -0
  512. package/dist/rendering/formatter/smartPad.js +8 -0
  513. package/dist/rendering/formatter/smartPadOrTruncate.d.ts +1 -0
  514. package/dist/rendering/formatter/smartPadOrTruncate.js +5 -0
  515. package/dist/rendering/formatter/smartTruncate.d.ts +1 -0
  516. package/dist/rendering/formatter/smartTruncate.js +9 -0
  517. package/dist/rendering/formatter/smartTruncate.test.d.ts +1 -0
  518. package/dist/rendering/formatter/smartTruncate.test.js +13 -0
  519. package/dist/rendering/lib/getTerminalWidth.d.ts +7 -0
  520. package/dist/rendering/lib/getTerminalWidth.js +9 -0
  521. package/dist/rendering/process/components/InteractiveInputDisabled.d.ts +1 -0
  522. package/dist/rendering/process/components/InteractiveInputDisabled.js +3 -0
  523. package/dist/rendering/process/components/ProcessConfirmation.d.ts +6 -0
  524. package/dist/rendering/process/components/ProcessConfirmation.js +12 -0
  525. package/dist/rendering/process/components/ProcessConfirmationStateSummary.d.ts +5 -0
  526. package/dist/rendering/process/components/ProcessConfirmationStateSummary.js +18 -0
  527. package/dist/rendering/process/components/ProcessError.d.ts +4 -0
  528. package/dist/rendering/process/components/ProcessError.js +10 -0
  529. package/dist/rendering/process/components/ProcessInput.d.ts +6 -0
  530. package/dist/rendering/process/components/ProcessInput.js +15 -0
  531. package/dist/rendering/process/components/ProcessInputStateSummary.d.ts +5 -0
  532. package/dist/rendering/process/components/ProcessInputStateSummary.js +13 -0
  533. package/dist/rendering/process/components/ProcessSelect.d.ts +6 -0
  534. package/dist/rendering/process/components/ProcessSelect.js +63 -0
  535. package/dist/rendering/process/components/ProcessSelectStateSummary.d.ts +4 -0
  536. package/dist/rendering/process/components/ProcessSelectStateSummary.js +10 -0
  537. package/dist/rendering/process/components/ProcessState.d.ts +5 -0
  538. package/dist/rendering/process/components/ProcessState.js +8 -0
  539. package/dist/rendering/process/components/ProcessStateIcon.d.ts +5 -0
  540. package/dist/rendering/process/components/ProcessStateIcon.js +24 -0
  541. package/dist/rendering/process/components/ProcessStateSummary.d.ts +5 -0
  542. package/dist/rendering/process/components/ProcessStateSummary.js +34 -0
  543. package/dist/rendering/process/components/ProcessValidationErrors.d.ts +8 -0
  544. package/dist/rendering/process/components/ProcessValidationErrors.js +17 -0
  545. package/dist/rendering/process/process.d.ts +68 -0
  546. package/dist/rendering/process/process.js +49 -0
  547. package/dist/rendering/process/process_exec.d.ts +3 -0
  548. package/dist/rendering/process/process_exec.js +30 -0
  549. package/dist/rendering/process/process_fancy.d.ts +24 -0
  550. package/dist/rendering/process/process_fancy.js +166 -0
  551. package/dist/rendering/process/process_flags.d.ts +20 -0
  552. package/dist/rendering/process/process_flags.js +29 -0
  553. package/dist/rendering/process/process_quiet.d.ts +16 -0
  554. package/dist/rendering/process/process_quiet.js +43 -0
  555. package/dist/rendering/react/ComponentPrinter.d.ts +7 -0
  556. package/dist/rendering/react/ComponentPrinter.js +13 -0
  557. package/dist/rendering/react/components/AppInstallation/AppInstallationDetails.d.ts +9 -0
  558. package/dist/rendering/react/components/AppInstallation/AppInstallationDetails.js +51 -0
  559. package/dist/rendering/react/components/AppInstallation/AppInstallationStatus.d.ts +10 -0
  560. package/dist/rendering/react/components/AppInstallation/AppInstallationStatus.js +12 -0
  561. package/dist/rendering/react/components/AppInstallation/AppSystemSoftware.d.ts +7 -0
  562. package/dist/rendering/react/components/AppInstallation/AppSystemSoftware.js +18 -0
  563. package/dist/rendering/react/components/BooleanValue.d.ts +4 -0
  564. package/dist/rendering/react/components/BooleanValue.js +9 -0
  565. package/dist/rendering/react/components/ByteFormat.d.ts +12 -0
  566. package/dist/rendering/react/components/ByteFormat.js +11 -0
  567. package/dist/rendering/react/components/CreatedAt.d.ts +8 -0
  568. package/dist/rendering/react/components/CreatedAt.js +10 -0
  569. package/dist/rendering/react/components/CronJob/CronJobDetails.d.ts +8 -0
  570. package/dist/rendering/react/components/CronJob/CronJobDetails.js +48 -0
  571. package/dist/rendering/react/components/DDEV/DDEVInitSuccess.d.ts +1 -0
  572. package/dist/rendering/react/components/DDEV/DDEVInitSuccess.js +9 -0
  573. package/dist/rendering/react/components/DnsZone/DnsZoneDetails.d.ts +7 -0
  574. package/dist/rendering/react/components/DnsZone/DnsZoneDetails.js +12 -0
  575. package/dist/rendering/react/components/DnsZone/DnsZoneRecords.d.ts +7 -0
  576. package/dist/rendering/react/components/DnsZone/DnsZoneRecords.js +17 -0
  577. package/dist/rendering/react/components/DnsZone/DnsZoneRecordsA.d.ts +5 -0
  578. package/dist/rendering/react/components/DnsZone/DnsZoneRecordsA.js +14 -0
  579. package/dist/rendering/react/components/DnsZone/DnsZoneRecordsAAAA.d.ts +5 -0
  580. package/dist/rendering/react/components/DnsZone/DnsZoneRecordsAAAA.js +14 -0
  581. package/dist/rendering/react/components/DnsZone/DnsZoneRecordsMX.d.ts +5 -0
  582. package/dist/rendering/react/components/DnsZone/DnsZoneRecordsMX.js +13 -0
  583. package/dist/rendering/react/components/DnsZone/DnsZoneRecordsSRV.d.ts +5 -0
  584. package/dist/rendering/react/components/DnsZone/DnsZoneRecordsSRV.js +9 -0
  585. package/dist/rendering/react/components/DnsZone/DnsZoneRecordsTXT.d.ts +5 -0
  586. package/dist/rendering/react/components/DnsZone/DnsZoneRecordsTXT.js +9 -0
  587. package/dist/rendering/react/components/DnsZone/RecordComponent.d.ts +4 -0
  588. package/dist/rendering/react/components/DnsZone/RecordComponent.js +1 -0
  589. package/dist/rendering/react/components/DnsZone/RecordSetManagedByMittwald.d.ts +1 -0
  590. package/dist/rendering/react/components/DnsZone/RecordSetManagedByMittwald.js +3 -0
  591. package/dist/rendering/react/components/DnsZone/RecordSetValues.d.ts +4 -0
  592. package/dist/rendering/react/components/DnsZone/RecordSetValues.js +5 -0
  593. package/dist/rendering/react/components/Domain/DomainBaseDetails.d.ts +7 -0
  594. package/dist/rendering/react/components/Domain/DomainBaseDetails.js +13 -0
  595. package/dist/rendering/react/components/Domain/DomainDetails.d.ts +7 -0
  596. package/dist/rendering/react/components/Domain/DomainDetails.js +7 -0
  597. package/dist/rendering/react/components/Domain/DomainHandle.d.ts +8 -0
  598. package/dist/rendering/react/components/Domain/DomainHandle.js +24 -0
  599. package/dist/rendering/react/components/Error/APIError.d.ts +13 -0
  600. package/dist/rendering/react/components/Error/APIError.js +41 -0
  601. package/dist/rendering/react/components/Error/ErrorBox.d.ts +4 -0
  602. package/dist/rendering/react/components/Error/ErrorBox.js +14 -0
  603. package/dist/rendering/react/components/Error/ErrorStack.d.ts +4 -0
  604. package/dist/rendering/react/components/Error/ErrorStack.js +7 -0
  605. package/dist/rendering/react/components/Error/ErrorText.d.ts +3 -0
  606. package/dist/rendering/react/components/Error/ErrorText.js +6 -0
  607. package/dist/rendering/react/components/Error/GenericError.d.ts +12 -0
  608. package/dist/rendering/react/components/Error/GenericError.js +13 -0
  609. package/dist/rendering/react/components/Error/InvalidArgsError.d.ts +4 -0
  610. package/dist/rendering/react/components/Error/InvalidArgsError.js +8 -0
  611. package/dist/rendering/react/components/Error/InvalidFlagsError.d.ts +6 -0
  612. package/dist/rendering/react/components/Error/InvalidFlagsError.js +8 -0
  613. package/dist/rendering/react/components/Error/UnexpectedShortIDPassedErrorBox.d.ts +4 -0
  614. package/dist/rendering/react/components/Error/UnexpectedShortIDPassedErrorBox.js +7 -0
  615. package/dist/rendering/react/components/ErrorBoundary.d.ts +20 -0
  616. package/dist/rendering/react/components/ErrorBoundary.js +32 -0
  617. package/dist/rendering/react/components/ErrorBox.d.ts +10 -0
  618. package/dist/rendering/react/components/ErrorBox.js +38 -0
  619. package/dist/rendering/react/components/Filename.d.ts +4 -0
  620. package/dist/rendering/react/components/Filename.js +5 -0
  621. package/dist/rendering/react/components/FormattedDate.d.ts +8 -0
  622. package/dist/rendering/react/components/FormattedDate.js +16 -0
  623. package/dist/rendering/react/components/Header.d.ts +6 -0
  624. package/dist/rendering/react/components/IDAndShortID.d.ts +7 -0
  625. package/dist/rendering/react/components/IDAndShortID.js +6 -0
  626. package/dist/rendering/react/components/Ingress/DnsValidationErrors.d.ts +8 -0
  627. package/dist/rendering/react/components/Ingress/DnsValidationErrors.js +17 -0
  628. package/dist/rendering/react/components/JSONView.d.ts +7 -0
  629. package/dist/rendering/react/components/JSONView.js +3 -0
  630. package/dist/rendering/react/components/ListItem.d.ts +3 -0
  631. package/dist/rendering/react/components/ListItem.js +5 -0
  632. package/dist/rendering/react/components/LocalFilename.d.ts +5 -0
  633. package/dist/rendering/react/components/LocalFilename.js +14 -0
  634. package/dist/rendering/react/components/Note.d.ts +10 -0
  635. package/dist/rendering/react/components/Note.js +8 -0
  636. package/dist/rendering/react/components/OptionalValue.d.ts +13 -0
  637. package/dist/rendering/react/components/OptionalValue.js +16 -0
  638. package/dist/rendering/react/components/Organization/CustomerIDAndNumber.d.ts +7 -0
  639. package/dist/rendering/react/components/Organization/CustomerIDAndNumber.js +6 -0
  640. package/dist/rendering/react/components/Organization/OrganizationOrderEligibility.d.ts +6 -0
  641. package/dist/rendering/react/components/Organization/OrganizationOrderEligibility.js +9 -0
  642. package/dist/rendering/react/components/Organization/OrganizationOwner.d.ts +7 -0
  643. package/dist/rendering/react/components/Organization/OrganizationOwner.js +14 -0
  644. package/dist/rendering/react/components/Project/ProjectEnabled.d.ts +6 -0
  645. package/dist/rendering/react/components/Project/ProjectEnabled.js +9 -0
  646. package/dist/rendering/react/components/Project/ProjectSimpleStatus.d.ts +7 -0
  647. package/dist/rendering/react/components/Project/ProjectSimpleStatus.js +19 -0
  648. package/dist/rendering/react/components/Project/ProjectStatus.d.ts +18 -0
  649. package/dist/rendering/react/components/Project/ProjectStatus.js +8 -0
  650. package/dist/rendering/react/components/ProjectBackup/ProjectBackupDetails.d.ts +7 -0
  651. package/dist/rendering/react/components/ProjectBackup/ProjectBackupDetails.js +29 -0
  652. package/dist/rendering/react/components/ProjectBackup/ProjectBackupStatus.d.ts +7 -0
  653. package/dist/rendering/react/components/ProjectBackup/ProjectBackupStatus.js +8 -0
  654. package/dist/rendering/react/components/Render.d.ts +6 -0
  655. package/dist/rendering/react/components/Render.js +5 -0
  656. package/dist/rendering/react/components/SingleResult.d.ts +10 -0
  657. package/dist/rendering/react/components/SingleResult.js +15 -0
  658. package/dist/rendering/react/components/Success.d.ts +10 -0
  659. package/dist/rendering/react/components/Success.js +8 -0
  660. package/dist/rendering/react/components/Value.d.ts +6 -0
  661. package/dist/rendering/react/components/Value.js +8 -0
  662. package/dist/rendering/react/components/Warning.d.ts +4 -0
  663. package/dist/rendering/react/components/Warning.js +7 -0
  664. package/dist/rendering/react/context.d.ts +8 -0
  665. package/dist/rendering/react/context.js +7 -0
  666. package/dist/rendering/react/error.d.ts +7 -0
  667. package/dist/rendering/react/error.js +12 -0
  668. package/dist/rendering/react/hooks/useIncreaseInkStdoutColumns.d.ts +1 -0
  669. package/dist/rendering/react/hooks/useIncreaseInkStdoutColumns.js +9 -0
  670. package/dist/rendering/react/json/JsonCollectionProvider.d.ts +2 -0
  671. package/dist/rendering/react/json/JsonCollectionProvider.js +10 -0
  672. package/dist/rendering/react/json/JsonRenderer.d.ts +2 -0
  673. package/dist/rendering/react/json/JsonRenderer.js +14 -0
  674. package/dist/rendering/react/json/RenderJson.d.ts +7 -0
  675. package/dist/rendering/react/json/RenderJson.js +19 -0
  676. package/dist/rendering/react/json/context.d.ts +4 -0
  677. package/dist/rendering/react/json/context.js +4 -0
  678. package/dist/rendering/react/json/lib/unpackJsonData.d.ts +1 -0
  679. package/dist/rendering/react/json/lib/unpackJsonData.js +5 -0
  680. package/dist/rendering/react/lib/observable-value/ObservableValue.d.ts +10 -0
  681. package/dist/rendering/react/lib/observable-value/ObservableValue.js +25 -0
  682. package/dist/rendering/react/lib/observable-value/types.d.ts +2 -0
  683. package/dist/rendering/react/lib/observable-value/types.js +1 -0
  684. package/dist/rendering/react/lib/observable-value/useWatchObservableValue.d.ts +2 -0
  685. package/dist/rendering/react/lib/observable-value/useWatchObservableValue.js +9 -0
  686. package/dist/rendering/setup/FlagSupportedSetup.d.ts +12 -0
  687. package/dist/rendering/setup/FlagSupportedSetup.js +22 -0
  688. package/dist/rendering/textformat/formatDate.d.ts +6 -0
  689. package/dist/rendering/textformat/formatDate.js +40 -0
  690. package/dist/rendering/textformat/removeLineBreaks.d.ts +6 -0
  691. package/dist/rendering/textformat/removeLineBreaks.js +8 -0
  692. package/package.json +149 -56
  693. package/.deps/client.tgz +0 -0
  694. package/.deps/commons.tgz +0 -0
  695. package/bin/dev +0 -17
  696. package/dist/esm/BaseCommand.d.ts +0 -11
  697. package/dist/esm/BaseCommand.js +0 -44
  698. package/dist/esm/DeleteBaseCommand.d.ts +0 -15
  699. package/dist/esm/DeleteBaseCommand.js +0 -37
  700. package/dist/esm/ExtendedBaseCommand.d.ts +0 -7
  701. package/dist/esm/ExtendedBaseCommand.js +0 -16
  702. package/dist/esm/Flags.d.ts +0 -1
  703. package/dist/esm/Flags.js +0 -1
  704. package/dist/esm/Formatter.d.ts +0 -15
  705. package/dist/esm/Formatter.js +0 -28
  706. package/dist/esm/GetBaseCommand.d.ts +0 -17
  707. package/dist/esm/GetBaseCommand.js +0 -27
  708. package/dist/esm/Helpers.d.ts +0 -5
  709. package/dist/esm/Helpers.js +0 -24
  710. package/dist/esm/ListBaseCommand.d.ts +0 -20
  711. package/dist/esm/ListBaseCommand.js +0 -60
  712. package/dist/esm/Printer.d.ts +0 -16
  713. package/dist/esm/Printer.js +0 -30
  714. package/dist/esm/Translator.d.ts +0 -5
  715. package/dist/esm/Translator.js +0 -53
  716. package/dist/esm/commands/app/delete.d.ts +0 -12
  717. package/dist/esm/commands/app/delete.js +0 -45
  718. package/dist/esm/commands/app/dependency/getSystemsoftware.d.ts +0 -3
  719. package/dist/esm/commands/app/dependency/getSystemsoftware.js +0 -6
  720. package/dist/esm/commands/app/dependency/getSystemsoftwareversion.d.ts +0 -3
  721. package/dist/esm/commands/app/dependency/getSystemsoftwareversion.js +0 -6
  722. package/dist/esm/commands/app/dependency/listSystemsoftwares.d.ts +0 -9
  723. package/dist/esm/commands/app/dependency/listSystemsoftwares.js +0 -6
  724. package/dist/esm/commands/app/dependency/listSystemsoftwareversions.d.ts +0 -9
  725. package/dist/esm/commands/app/dependency/listSystemsoftwareversions.js +0 -6
  726. package/dist/esm/commands/app/get.d.ts +0 -3
  727. package/dist/esm/commands/app/get.js +0 -6
  728. package/dist/esm/commands/app/install/wordpress.d.ts +0 -15
  729. package/dist/esm/commands/app/install/wordpress.js +0 -80
  730. package/dist/esm/commands/app/list.d.ts +0 -16
  731. package/dist/esm/commands/app/list.js +0 -64
  732. package/dist/esm/commands/app/versions.d.ts +0 -12
  733. package/dist/esm/commands/app/versions.js +0 -53
  734. package/dist/esm/commands/article/get.d.ts +0 -3
  735. package/dist/esm/commands/article/get.js +0 -6
  736. package/dist/esm/commands/article/list.d.ts +0 -9
  737. package/dist/esm/commands/article/list.js +0 -6
  738. package/dist/esm/commands/contract/getBaseItemOfContract.d.ts +0 -3
  739. package/dist/esm/commands/contract/getBaseItemOfContract.js +0 -6
  740. package/dist/esm/commands/contract/getDetailOfContract.d.ts +0 -3
  741. package/dist/esm/commands/contract/getDetailOfContract.js +0 -6
  742. package/dist/esm/commands/contract/getDetailOfContractByDomain.d.ts +0 -3
  743. package/dist/esm/commands/contract/getDetailOfContractByDomain.js +0 -6
  744. package/dist/esm/commands/contract/getDetailOfContractByProject.d.ts +0 -3
  745. package/dist/esm/commands/contract/getDetailOfContractByProject.js +0 -6
  746. package/dist/esm/commands/contract/getDetailOfContractByServer.d.ts +0 -3
  747. package/dist/esm/commands/contract/getDetailOfContractByServer.js +0 -6
  748. package/dist/esm/commands/contract/getDetailOfContractItem.d.ts +0 -3
  749. package/dist/esm/commands/contract/getDetailOfContractItem.js +0 -6
  750. package/dist/esm/commands/contract/getNextTerminationDateForItem.d.ts +0 -3
  751. package/dist/esm/commands/contract/getNextTerminationDateForItem.js +0 -6
  752. package/dist/esm/commands/contract/invoiceDetailOfInvoice.d.ts +0 -3
  753. package/dist/esm/commands/contract/invoiceDetailOfInvoice.js +0 -6
  754. package/dist/esm/commands/contract/invoiceGetDetailOfInvoiceSettings.d.ts +0 -3
  755. package/dist/esm/commands/contract/invoiceGetDetailOfInvoiceSettings.js +0 -6
  756. package/dist/esm/commands/contract/invoiceListCustomerInvoices.d.ts +0 -9
  757. package/dist/esm/commands/contract/invoiceListCustomerInvoices.js +0 -6
  758. package/dist/esm/commands/contract/listContracts.d.ts +0 -9
  759. package/dist/esm/commands/contract/listContracts.js +0 -6
  760. package/dist/esm/commands/contract/orderGetOrder.d.ts +0 -3
  761. package/dist/esm/commands/contract/orderGetOrder.js +0 -6
  762. package/dist/esm/commands/contract/orderListCustomerOrders.d.ts +0 -9
  763. package/dist/esm/commands/contract/orderListCustomerOrders.js +0 -6
  764. package/dist/esm/commands/contract/orderListProjectOrders.d.ts +0 -9
  765. package/dist/esm/commands/contract/orderListProjectOrders.js +0 -6
  766. package/dist/esm/commands/conversation/categories.d.ts +0 -11
  767. package/dist/esm/commands/conversation/categories.js +0 -16
  768. package/dist/esm/commands/conversation/close.d.ts +0 -8
  769. package/dist/esm/commands/conversation/close.js +0 -24
  770. package/dist/esm/commands/conversation/create.d.ts +0 -13
  771. package/dist/esm/commands/conversation/create.js +0 -50
  772. package/dist/esm/commands/conversation/list.d.ts +0 -11
  773. package/dist/esm/commands/conversation/list.js +0 -28
  774. package/dist/esm/commands/conversation/reply.d.ts +0 -13
  775. package/dist/esm/commands/conversation/reply.js +0 -30
  776. package/dist/esm/commands/conversation/show.d.ts +0 -8
  777. package/dist/esm/commands/conversation/show.js +0 -78
  778. package/dist/esm/commands/conversation/show2.d.ts +0 -11
  779. package/dist/esm/commands/conversation/show2.js +0 -37
  780. package/dist/esm/commands/database/mysql/charsets.d.ts +0 -9
  781. package/dist/esm/commands/database/mysql/charsets.js +0 -6
  782. package/dist/esm/commands/database/mysql/get.d.ts +0 -3
  783. package/dist/esm/commands/database/mysql/get.js +0 -6
  784. package/dist/esm/commands/database/mysql/list.d.ts +0 -11
  785. package/dist/esm/commands/database/mysql/list.js +0 -54
  786. package/dist/esm/commands/database/mysql/user/get.d.ts +0 -3
  787. package/dist/esm/commands/database/mysql/user/get.js +0 -6
  788. package/dist/esm/commands/database/mysql/user/getMysqlUserPhpMyAdminUrl.d.ts +0 -3
  789. package/dist/esm/commands/database/mysql/user/getMysqlUserPhpMyAdminUrl.js +0 -7
  790. package/dist/esm/commands/database/mysql/user/list.d.ts +0 -9
  791. package/dist/esm/commands/database/mysql/user/list.js +0 -6
  792. package/dist/esm/commands/database/mysql/versions.d.ts +0 -9
  793. package/dist/esm/commands/database/mysql/versions.js +0 -6
  794. package/dist/esm/commands/database/redis/get.d.ts +0 -3
  795. package/dist/esm/commands/database/redis/get.js +0 -6
  796. package/dist/esm/commands/database/redis/list.d.ts +0 -9
  797. package/dist/esm/commands/database/redis/list.js +0 -6
  798. package/dist/esm/commands/database/redis/versions.d.ts +0 -9
  799. package/dist/esm/commands/database/redis/versions.js +0 -6
  800. package/dist/esm/commands/domain/dnszone/get.d.ts +0 -3
  801. package/dist/esm/commands/domain/dnszone/get.js +0 -6
  802. package/dist/esm/commands/domain/dnszone/list.d.ts +0 -3
  803. package/dist/esm/commands/domain/dnszone/list.js +0 -6
  804. package/dist/esm/commands/domain/get-handle.d.ts +0 -3
  805. package/dist/esm/commands/domain/get-handle.js +0 -6
  806. package/dist/esm/commands/domain/get.d.ts +0 -3
  807. package/dist/esm/commands/domain/get.js +0 -6
  808. package/dist/esm/commands/domain/list.d.ts +0 -9
  809. package/dist/esm/commands/domain/list.js +0 -6
  810. package/dist/esm/commands/domain/ownership/get.d.ts +0 -3
  811. package/dist/esm/commands/domain/ownership/get.js +0 -6
  812. package/dist/esm/commands/domain/ownership/list.d.ts +0 -9
  813. package/dist/esm/commands/domain/ownership/list.js +0 -6
  814. package/dist/esm/commands/domain/tld/get.d.ts +0 -3
  815. package/dist/esm/commands/domain/tld/get.js +0 -6
  816. package/dist/esm/commands/domain/tld/list.d.ts +0 -9
  817. package/dist/esm/commands/domain/tld/list.js +0 -6
  818. package/dist/esm/commands/domain/virtualhost/get.d.ts +0 -3
  819. package/dist/esm/commands/domain/virtualhost/get.js +0 -6
  820. package/dist/esm/commands/domain/virtualhost/list.d.ts +0 -20
  821. package/dist/esm/commands/domain/virtualhost/list.js +0 -49
  822. package/dist/esm/commands/login/status.d.ts +0 -5
  823. package/dist/esm/commands/login/status.js +0 -29
  824. package/dist/esm/commands/login/token.d.ts +0 -9
  825. package/dist/esm/commands/login/token.js +0 -39
  826. package/dist/esm/commands/mail/address/create.d.ts +0 -12
  827. package/dist/esm/commands/mail/address/create.js +0 -52
  828. package/dist/esm/commands/mail/address/delete.d.ts +0 -12
  829. package/dist/esm/commands/mail/address/delete.js +0 -22
  830. package/dist/esm/commands/mail/address/get.d.ts +0 -3
  831. package/dist/esm/commands/mail/address/get.js +0 -6
  832. package/dist/esm/commands/mail/address/list.d.ts +0 -12
  833. package/dist/esm/commands/mail/address/list.js +0 -47
  834. package/dist/esm/commands/mail/deliverybox/get.d.ts +0 -3
  835. package/dist/esm/commands/mail/deliverybox/get.js +0 -6
  836. package/dist/esm/commands/mail/deliverybox/list.d.ts +0 -12
  837. package/dist/esm/commands/mail/deliverybox/list.js +0 -25
  838. package/dist/esm/commands/org/can-order.d.ts +0 -3
  839. package/dist/esm/commands/org/can-order.js +0 -6
  840. package/dist/esm/commands/org/get.d.ts +0 -3
  841. package/dist/esm/commands/org/get.js +0 -6
  842. package/dist/esm/commands/org/invite/get.d.ts +0 -3
  843. package/dist/esm/commands/org/invite/get.js +0 -6
  844. package/dist/esm/commands/org/invite/list-own.d.ts +0 -9
  845. package/dist/esm/commands/org/invite/list-own.js +0 -6
  846. package/dist/esm/commands/org/invite/list.d.ts +0 -9
  847. package/dist/esm/commands/org/invite/list.js +0 -6
  848. package/dist/esm/commands/org/list.d.ts +0 -11
  849. package/dist/esm/commands/org/list.js +0 -28
  850. package/dist/esm/commands/org/membership/get.d.ts +0 -3
  851. package/dist/esm/commands/org/membership/get.js +0 -6
  852. package/dist/esm/commands/org/membership/list-own.d.ts +0 -9
  853. package/dist/esm/commands/org/membership/list-own.js +0 -6
  854. package/dist/esm/commands/org/membership/list.d.ts +0 -9
  855. package/dist/esm/commands/org/membership/list.js +0 -6
  856. package/dist/esm/commands/project/backup/get.d.ts +0 -3
  857. package/dist/esm/commands/project/backup/get.js +0 -6
  858. package/dist/esm/commands/project/backup/list.d.ts +0 -12
  859. package/dist/esm/commands/project/backup/list.js +0 -24
  860. package/dist/esm/commands/project/backupschedule/get.d.ts +0 -3
  861. package/dist/esm/commands/project/backupschedule/get.js +0 -6
  862. package/dist/esm/commands/project/backupschedule/list.d.ts +0 -13
  863. package/dist/esm/commands/project/backupschedule/list.js +0 -21
  864. package/dist/esm/commands/project/create.d.ts +0 -10
  865. package/dist/esm/commands/project/create.js +0 -59
  866. package/dist/esm/commands/project/cronjob/execution/get.d.ts +0 -3
  867. package/dist/esm/commands/project/cronjob/execution/get.js +0 -6
  868. package/dist/esm/commands/project/cronjob/execution/list.d.ts +0 -11
  869. package/dist/esm/commands/project/cronjob/execution/list.js +0 -22
  870. package/dist/esm/commands/project/cronjob/get.d.ts +0 -3
  871. package/dist/esm/commands/project/cronjob/get.js +0 -6
  872. package/dist/esm/commands/project/cronjob/list.d.ts +0 -11
  873. package/dist/esm/commands/project/cronjob/list.js +0 -26
  874. package/dist/esm/commands/project/delete.d.ts +0 -13
  875. package/dist/esm/commands/project/delete.js +0 -26
  876. package/dist/esm/commands/project/filesystem/directories.d.ts +0 -3
  877. package/dist/esm/commands/project/filesystem/directories.js +0 -6
  878. package/dist/esm/commands/project/filesystem/file-content.d.ts +0 -3
  879. package/dist/esm/commands/project/filesystem/file-content.js +0 -6
  880. package/dist/esm/commands/project/filesystem/files.d.ts +0 -16
  881. package/dist/esm/commands/project/filesystem/files.js +0 -25
  882. package/dist/esm/commands/project/filesystem/usage.d.ts +0 -4
  883. package/dist/esm/commands/project/filesystem/usage.js +0 -11
  884. package/dist/esm/commands/project/get.d.ts +0 -4
  885. package/dist/esm/commands/project/get.js +0 -11
  886. package/dist/esm/commands/project/invite/get.d.ts +0 -3
  887. package/dist/esm/commands/project/invite/get.js +0 -6
  888. package/dist/esm/commands/project/invite/list-own.d.ts +0 -11
  889. package/dist/esm/commands/project/invite/list-own.js +0 -29
  890. package/dist/esm/commands/project/invite/list.d.ts +0 -12
  891. package/dist/esm/commands/project/invite/list.js +0 -32
  892. package/dist/esm/commands/project/list.d.ts +0 -12
  893. package/dist/esm/commands/project/list.js +0 -33
  894. package/dist/esm/commands/project/list1.d.ts +0 -7
  895. package/dist/esm/commands/project/list1.js +0 -18
  896. package/dist/esm/commands/project/list2.d.ts +0 -9
  897. package/dist/esm/commands/project/list2.js +0 -26
  898. package/dist/esm/commands/project/membership/get-own.d.ts +0 -4
  899. package/dist/esm/commands/project/membership/get-own.js +0 -11
  900. package/dist/esm/commands/project/membership/get.d.ts +0 -3
  901. package/dist/esm/commands/project/membership/get.js +0 -6
  902. package/dist/esm/commands/project/membership/list-own.d.ts +0 -11
  903. package/dist/esm/commands/project/membership/list-own.js +0 -28
  904. package/dist/esm/commands/project/membership/list.d.ts +0 -25
  905. package/dist/esm/commands/project/membership/list.js +0 -46
  906. package/dist/esm/commands/project/sftp-user/list.d.ts +0 -13
  907. package/dist/esm/commands/project/sftp-user/list.js +0 -24
  908. package/dist/esm/commands/project/ssh-user/list.d.ts +0 -13
  909. package/dist/esm/commands/project/ssh-user/list.js +0 -24
  910. package/dist/esm/commands/project/ssh.d.ts +0 -8
  911. package/dist/esm/commands/project/ssh.js +0 -31
  912. package/dist/esm/commands/project/update.d.ts +0 -8
  913. package/dist/esm/commands/project/update.js +0 -15
  914. package/dist/esm/commands/server/get.d.ts +0 -3
  915. package/dist/esm/commands/server/get.js +0 -6
  916. package/dist/esm/commands/server/list.d.ts +0 -11
  917. package/dist/esm/commands/server/list.js +0 -41
  918. package/dist/esm/commands/user/api-token/create.d.ts +0 -11
  919. package/dist/esm/commands/user/api-token/create.js +0 -46
  920. package/dist/esm/commands/user/api-token/get.d.ts +0 -3
  921. package/dist/esm/commands/user/api-token/get.js +0 -6
  922. package/dist/esm/commands/user/api-token/list.d.ts +0 -11
  923. package/dist/esm/commands/user/api-token/list.js +0 -21
  924. package/dist/esm/commands/user/api-token/revoke.d.ts +0 -8
  925. package/dist/esm/commands/user/api-token/revoke.js +0 -21
  926. package/dist/esm/commands/user/get.d.ts +0 -3
  927. package/dist/esm/commands/user/get.js +0 -6
  928. package/dist/esm/commands/user/session/get.d.ts +0 -3
  929. package/dist/esm/commands/user/session/get.js +0 -6
  930. package/dist/esm/commands/user/session/list.d.ts +0 -11
  931. package/dist/esm/commands/user/session/list.js +0 -24
  932. package/dist/esm/commands/user/ssh-key/create.d.ts +0 -10
  933. package/dist/esm/commands/user/ssh-key/create.js +0 -60
  934. package/dist/esm/commands/user/ssh-key/delete.d.ts +0 -12
  935. package/dist/esm/commands/user/ssh-key/delete.js +0 -41
  936. package/dist/esm/commands/user/ssh-key/get.d.ts +0 -3
  937. package/dist/esm/commands/user/ssh-key/get.js +0 -6
  938. package/dist/esm/commands/user/ssh-key/list.d.ts +0 -11
  939. package/dist/esm/commands/user/ssh-key/list.js +0 -21
  940. package/dist/esm/generated/app/getApp.d.ts +0 -16
  941. package/dist/esm/generated/app/getApp.js +0 -25
  942. package/dist/esm/generated/app/getAppinstallation.d.ts +0 -16
  943. package/dist/esm/generated/app/getAppinstallation.js +0 -25
  944. package/dist/esm/generated/app/getAppversion.d.ts +0 -16
  945. package/dist/esm/generated/app/getAppversion.js +0 -29
  946. package/dist/esm/generated/app/getSystemsoftware.d.ts +0 -16
  947. package/dist/esm/generated/app/getSystemsoftware.js +0 -25
  948. package/dist/esm/generated/app/getSystemsoftwareversion.d.ts +0 -16
  949. package/dist/esm/generated/app/getSystemsoftwareversion.js +0 -29
  950. package/dist/esm/generated/app/listAppinstallations.d.ts +0 -13
  951. package/dist/esm/generated/app/listAppinstallations.js +0 -24
  952. package/dist/esm/generated/app/listApps.d.ts +0 -13
  953. package/dist/esm/generated/app/listApps.js +0 -17
  954. package/dist/esm/generated/app/listAppversions.d.ts +0 -13
  955. package/dist/esm/generated/app/listAppversions.js +0 -24
  956. package/dist/esm/generated/app/listSystemsoftwares.d.ts +0 -13
  957. package/dist/esm/generated/app/listSystemsoftwares.js +0 -17
  958. package/dist/esm/generated/app/listSystemsoftwareversions.d.ts +0 -13
  959. package/dist/esm/generated/app/listSystemsoftwareversions.js +0 -24
  960. package/dist/esm/generated/app/retrieveStatus.d.ts +0 -14
  961. package/dist/esm/generated/app/retrieveStatus.js +0 -24
  962. package/dist/esm/generated/article/getArticle.d.ts +0 -16
  963. package/dist/esm/generated/article/getArticle.js +0 -25
  964. package/dist/esm/generated/article/listArticles.d.ts +0 -13
  965. package/dist/esm/generated/article/listArticles.js +0 -17
  966. package/dist/esm/generated/backup/getProjectBackup.d.ts +0 -16
  967. package/dist/esm/generated/backup/getProjectBackup.js +0 -25
  968. package/dist/esm/generated/backup/getProjectBackupSchedule.d.ts +0 -16
  969. package/dist/esm/generated/backup/getProjectBackupSchedule.js +0 -25
  970. package/dist/esm/generated/backup/listProjectBackupSchedules.d.ts +0 -13
  971. package/dist/esm/generated/backup/listProjectBackupSchedules.js +0 -24
  972. package/dist/esm/generated/backup/listProjectBackups.d.ts +0 -13
  973. package/dist/esm/generated/backup/listProjectBackups.js +0 -24
  974. package/dist/esm/generated/contract/getBaseItemOfContract.d.ts +0 -14
  975. package/dist/esm/generated/contract/getBaseItemOfContract.js +0 -24
  976. package/dist/esm/generated/contract/getDetailOfContract.d.ts +0 -16
  977. package/dist/esm/generated/contract/getDetailOfContract.js +0 -25
  978. package/dist/esm/generated/contract/getDetailOfContractByDomain.d.ts +0 -14
  979. package/dist/esm/generated/contract/getDetailOfContractByDomain.js +0 -24
  980. package/dist/esm/generated/contract/getDetailOfContractByProject.d.ts +0 -14
  981. package/dist/esm/generated/contract/getDetailOfContractByProject.js +0 -24
  982. package/dist/esm/generated/contract/getDetailOfContractByServer.d.ts +0 -14
  983. package/dist/esm/generated/contract/getDetailOfContractByServer.js +0 -24
  984. package/dist/esm/generated/contract/getDetailOfContractItem.d.ts +0 -16
  985. package/dist/esm/generated/contract/getDetailOfContractItem.js +0 -29
  986. package/dist/esm/generated/contract/getNextTerminationDateForItem.d.ts +0 -15
  987. package/dist/esm/generated/contract/getNextTerminationDateForItem.js +0 -28
  988. package/dist/esm/generated/contract/invoiceDetailOfInvoice.d.ts +0 -16
  989. package/dist/esm/generated/contract/invoiceDetailOfInvoice.js +0 -29
  990. package/dist/esm/generated/contract/invoiceGetDetailOfInvoiceSettings.d.ts +0 -14
  991. package/dist/esm/generated/contract/invoiceGetDetailOfInvoiceSettings.js +0 -24
  992. package/dist/esm/generated/contract/invoiceListCustomerInvoices.d.ts +0 -13
  993. package/dist/esm/generated/contract/invoiceListCustomerInvoices.js +0 -24
  994. package/dist/esm/generated/contract/listContracts.d.ts +0 -13
  995. package/dist/esm/generated/contract/listContracts.js +0 -24
  996. package/dist/esm/generated/contract/orderGetOrder.d.ts +0 -16
  997. package/dist/esm/generated/contract/orderGetOrder.js +0 -25
  998. package/dist/esm/generated/contract/orderListCustomerOrders.d.ts +0 -13
  999. package/dist/esm/generated/contract/orderListCustomerOrders.js +0 -24
  1000. package/dist/esm/generated/contract/orderListProjectOrders.d.ts +0 -13
  1001. package/dist/esm/generated/contract/orderListProjectOrders.js +0 -24
  1002. package/dist/esm/generated/conversation/getCategory.d.ts +0 -16
  1003. package/dist/esm/generated/conversation/getCategory.js +0 -25
  1004. package/dist/esm/generated/conversation/getConversation.d.ts +0 -16
  1005. package/dist/esm/generated/conversation/getConversation.js +0 -25
  1006. package/dist/esm/generated/conversation/listCategories.d.ts +0 -13
  1007. package/dist/esm/generated/conversation/listCategories.js +0 -17
  1008. package/dist/esm/generated/conversation/listConversations.d.ts +0 -13
  1009. package/dist/esm/generated/conversation/listConversations.js +0 -17
  1010. package/dist/esm/generated/conversation/listMessagesByConversation.d.ts +0 -13
  1011. package/dist/esm/generated/conversation/listMessagesByConversation.js +0 -24
  1012. package/dist/esm/generated/cronjob/getCronjob.d.ts +0 -16
  1013. package/dist/esm/generated/cronjob/getCronjob.js +0 -25
  1014. package/dist/esm/generated/cronjob/getExecution.d.ts +0 -16
  1015. package/dist/esm/generated/cronjob/getExecution.js +0 -29
  1016. package/dist/esm/generated/cronjob/listCronjobs.d.ts +0 -13
  1017. package/dist/esm/generated/cronjob/listCronjobs.js +0 -24
  1018. package/dist/esm/generated/cronjob/listExecutions.d.ts +0 -13
  1019. package/dist/esm/generated/cronjob/listExecutions.js +0 -24
  1020. package/dist/esm/generated/customer/getCustomer.d.ts +0 -16
  1021. package/dist/esm/generated/customer/getCustomer.js +0 -25
  1022. package/dist/esm/generated/customer/getCustomerCategory.d.ts +0 -16
  1023. package/dist/esm/generated/customer/getCustomerCategory.js +0 -25
  1024. package/dist/esm/generated/customer/getCustomerInvite.d.ts +0 -16
  1025. package/dist/esm/generated/customer/getCustomerInvite.js +0 -25
  1026. package/dist/esm/generated/customer/getCustomerMembership.d.ts +0 -16
  1027. package/dist/esm/generated/customer/getCustomerMembership.js +0 -25
  1028. package/dist/esm/generated/customer/getCustomerTokenInvite.d.ts +0 -14
  1029. package/dist/esm/generated/customer/getCustomerTokenInvite.js +0 -16
  1030. package/dist/esm/generated/customer/isCustomerLegallyCompetent.d.ts +0 -14
  1031. package/dist/esm/generated/customer/isCustomerLegallyCompetent.js +0 -24
  1032. package/dist/esm/generated/customer/listCustomerInvites.d.ts +0 -13
  1033. package/dist/esm/generated/customer/listCustomerInvites.js +0 -17
  1034. package/dist/esm/generated/customer/listCustomerMemberships.d.ts +0 -13
  1035. package/dist/esm/generated/customer/listCustomerMemberships.js +0 -17
  1036. package/dist/esm/generated/customer/listCustomers.d.ts +0 -13
  1037. package/dist/esm/generated/customer/listCustomers.js +0 -17
  1038. package/dist/esm/generated/customer/listInvitesForCustomer.d.ts +0 -13
  1039. package/dist/esm/generated/customer/listInvitesForCustomer.js +0 -24
  1040. package/dist/esm/generated/customer/listMembershipsForCustomer.d.ts +0 -13
  1041. package/dist/esm/generated/customer/listMembershipsForCustomer.js +0 -24
  1042. package/dist/esm/generated/customer/listOfCustomerCategories.d.ts +0 -13
  1043. package/dist/esm/generated/customer/listOfCustomerCategories.js +0 -17
  1044. package/dist/esm/generated/database/getMysqlDatabase.d.ts +0 -16
  1045. package/dist/esm/generated/database/getMysqlDatabase.js +0 -25
  1046. package/dist/esm/generated/database/getMysqlUser.d.ts +0 -16
  1047. package/dist/esm/generated/database/getMysqlUser.js +0 -25
  1048. package/dist/esm/generated/database/getMysqlUserPhpMyAdminUrl.d.ts +0 -14
  1049. package/dist/esm/generated/database/getMysqlUserPhpMyAdminUrl.js +0 -24
  1050. package/dist/esm/generated/database/getRedisDatabase.d.ts +0 -16
  1051. package/dist/esm/generated/database/getRedisDatabase.js +0 -25
  1052. package/dist/esm/generated/database/listMysqlCharsets.d.ts +0 -13
  1053. package/dist/esm/generated/database/listMysqlCharsets.js +0 -17
  1054. package/dist/esm/generated/database/listMysqlDatabases.d.ts +0 -13
  1055. package/dist/esm/generated/database/listMysqlDatabases.js +0 -24
  1056. package/dist/esm/generated/database/listMysqlUsers.d.ts +0 -13
  1057. package/dist/esm/generated/database/listMysqlUsers.js +0 -24
  1058. package/dist/esm/generated/database/listMysqlVersions.d.ts +0 -13
  1059. package/dist/esm/generated/database/listMysqlVersions.js +0 -17
  1060. package/dist/esm/generated/database/listRedisDatabases.d.ts +0 -13
  1061. package/dist/esm/generated/database/listRedisDatabases.js +0 -24
  1062. package/dist/esm/generated/database/listRedisVersions.d.ts +0 -13
  1063. package/dist/esm/generated/database/listRedisVersions.js +0 -17
  1064. package/dist/esm/generated/domain/dnsZoneGetSpecific.d.ts +0 -16
  1065. package/dist/esm/generated/domain/dnsZoneGetSpecific.js +0 -25
  1066. package/dist/esm/generated/domain/dnsZonesForProject.d.ts +0 -14
  1067. package/dist/esm/generated/domain/dnsZonesForProject.js +0 -24
  1068. package/dist/esm/generated/domain/getDomain.d.ts +0 -16
  1069. package/dist/esm/generated/domain/getDomain.js +0 -25
  1070. package/dist/esm/generated/domain/getHandleFields.d.ts +0 -16
  1071. package/dist/esm/generated/domain/getHandleFields.js +0 -25
  1072. package/dist/esm/generated/domain/getSpecificDomainOwnership.d.ts +0 -16
  1073. package/dist/esm/generated/domain/getSpecificDomainOwnership.js +0 -25
  1074. package/dist/esm/generated/domain/getToplevelDomain.d.ts +0 -16
  1075. package/dist/esm/generated/domain/getToplevelDomain.js +0 -25
  1076. package/dist/esm/generated/domain/ingressGetSpecific.d.ts +0 -16
  1077. package/dist/esm/generated/domain/ingressGetSpecific.js +0 -25
  1078. package/dist/esm/generated/domain/ingressListAccessible.d.ts +0 -13
  1079. package/dist/esm/generated/domain/ingressListAccessible.js +0 -17
  1080. package/dist/esm/generated/domain/ingressListForProject.d.ts +0 -13
  1081. package/dist/esm/generated/domain/ingressListForProject.js +0 -24
  1082. package/dist/esm/generated/domain/listDomainOwnerships.d.ts +0 -13
  1083. package/dist/esm/generated/domain/listDomainOwnerships.js +0 -24
  1084. package/dist/esm/generated/domain/listDomains.d.ts +0 -13
  1085. package/dist/esm/generated/domain/listDomains.js +0 -24
  1086. package/dist/esm/generated/domain/listToplevelDomains.d.ts +0 -13
  1087. package/dist/esm/generated/domain/listToplevelDomains.js +0 -17
  1088. package/dist/esm/generated/file/getFile.d.ts +0 -16
  1089. package/dist/esm/generated/file/getFile.js +0 -25
  1090. package/dist/esm/generated/file/getFileMeta.d.ts +0 -14
  1091. package/dist/esm/generated/file/getFileMeta.js +0 -24
  1092. package/dist/esm/generated/file/getFileTokenRules.d.ts +0 -16
  1093. package/dist/esm/generated/file/getFileTokenRules.js +0 -25
  1094. package/dist/esm/generated/file/getFileTypeRules.d.ts +0 -16
  1095. package/dist/esm/generated/file/getFileTypeRules.js +0 -25
  1096. package/dist/esm/generated/mail/deliveryboxGetSpecific.d.ts +0 -16
  1097. package/dist/esm/generated/mail/deliveryboxGetSpecific.js +0 -25
  1098. package/dist/esm/generated/mail/deliveryboxList.d.ts +0 -13
  1099. package/dist/esm/generated/mail/deliveryboxList.js +0 -24
  1100. package/dist/esm/generated/mail/mailaddressGetSpecific.d.ts +0 -16
  1101. package/dist/esm/generated/mail/mailaddressGetSpecific.js +0 -25
  1102. package/dist/esm/generated/mail/mailaddressList.d.ts +0 -13
  1103. package/dist/esm/generated/mail/mailaddressList.js +0 -24
  1104. package/dist/esm/generated/mail/projectsettingGetSpecific.d.ts +0 -14
  1105. package/dist/esm/generated/mail/projectsettingGetSpecific.js +0 -24
  1106. package/dist/esm/generated/notification/newsletterGetInfo.d.ts +0 -14
  1107. package/dist/esm/generated/notification/newsletterGetInfo.js +0 -16
  1108. package/dist/esm/generated/notification/scountUnreadNotifications.d.ts +0 -14
  1109. package/dist/esm/generated/notification/scountUnreadNotifications.js +0 -16
  1110. package/dist/esm/generated/notification/slistNotifications.d.ts +0 -13
  1111. package/dist/esm/generated/notification/slistNotifications.js +0 -17
  1112. package/dist/esm/generated/project/getProject.d.ts +0 -16
  1113. package/dist/esm/generated/project/getProject.js +0 -25
  1114. package/dist/esm/generated/project/getProjectInvite.d.ts +0 -16
  1115. package/dist/esm/generated/project/getProjectInvite.js +0 -25
  1116. package/dist/esm/generated/project/getProjectMembership.d.ts +0 -16
  1117. package/dist/esm/generated/project/getProjectMembership.js +0 -25
  1118. package/dist/esm/generated/project/getProjectTokenInvite.d.ts +0 -14
  1119. package/dist/esm/generated/project/getProjectTokenInvite.js +0 -16
  1120. package/dist/esm/generated/project/getSelfMembershipForProject.d.ts +0 -14
  1121. package/dist/esm/generated/project/getSelfMembershipForProject.js +0 -24
  1122. package/dist/esm/generated/project/getServer.d.ts +0 -16
  1123. package/dist/esm/generated/project/getServer.js +0 -25
  1124. package/dist/esm/generated/project/listInvitesForProject.d.ts +0 -13
  1125. package/dist/esm/generated/project/listInvitesForProject.js +0 -24
  1126. package/dist/esm/generated/project/listMembershipsForProject.d.ts +0 -13
  1127. package/dist/esm/generated/project/listMembershipsForProject.js +0 -24
  1128. package/dist/esm/generated/project/listProjectInvites.d.ts +0 -13
  1129. package/dist/esm/generated/project/listProjectInvites.js +0 -17
  1130. package/dist/esm/generated/project/listProjectMemberships.d.ts +0 -13
  1131. package/dist/esm/generated/project/listProjectMemberships.js +0 -17
  1132. package/dist/esm/generated/project/listProjects.d.ts +0 -13
  1133. package/dist/esm/generated/project/listProjects.js +0 -17
  1134. package/dist/esm/generated/project/listServers.d.ts +0 -13
  1135. package/dist/esm/generated/project/listServers.js +0 -17
  1136. package/dist/esm/generated/projectFileSystem/getDirectories.d.ts +0 -14
  1137. package/dist/esm/generated/projectFileSystem/getDirectories.js +0 -24
  1138. package/dist/esm/generated/projectFileSystem/getDiskUsage.d.ts +0 -14
  1139. package/dist/esm/generated/projectFileSystem/getDiskUsage.js +0 -24
  1140. package/dist/esm/generated/projectFileSystem/getFileContent.d.ts +0 -14
  1141. package/dist/esm/generated/projectFileSystem/getFileContent.js +0 -24
  1142. package/dist/esm/generated/projectFileSystem/getJwt.d.ts +0 -14
  1143. package/dist/esm/generated/projectFileSystem/getJwt.js +0 -24
  1144. package/dist/esm/generated/projectFileSystem/listFiles.d.ts +0 -13
  1145. package/dist/esm/generated/projectFileSystem/listFiles.js +0 -24
  1146. package/dist/esm/generated/sshsftpUser/sftpUserGetSftpUser.d.ts +0 -16
  1147. package/dist/esm/generated/sshsftpUser/sftpUserGetSftpUser.js +0 -25
  1148. package/dist/esm/generated/sshsftpUser/sftpUserListSftpUsers.d.ts +0 -13
  1149. package/dist/esm/generated/sshsftpUser/sftpUserListSftpUsers.js +0 -24
  1150. package/dist/esm/generated/sshsftpUser/sshUserGetSshUser.d.ts +0 -16
  1151. package/dist/esm/generated/sshsftpUser/sshUserGetSshUser.js +0 -25
  1152. package/dist/esm/generated/sshsftpUser/sshUserListSshUsers.d.ts +0 -13
  1153. package/dist/esm/generated/sshsftpUser/sshUserListSshUsers.js +0 -24
  1154. package/dist/esm/generated/user/getApiToken.d.ts +0 -16
  1155. package/dist/esm/generated/user/getApiToken.js +0 -25
  1156. package/dist/esm/generated/user/getEmail.d.ts +0 -14
  1157. package/dist/esm/generated/user/getEmail.js +0 -16
  1158. package/dist/esm/generated/user/getMfaStatus.d.ts +0 -14
  1159. package/dist/esm/generated/user/getMfaStatus.js +0 -16
  1160. package/dist/esm/generated/user/getOwnProfile.d.ts +0 -14
  1161. package/dist/esm/generated/user/getOwnProfile.js +0 -16
  1162. package/dist/esm/generated/user/getPasswordUpdatedAt.d.ts +0 -14
  1163. package/dist/esm/generated/user/getPasswordUpdatedAt.js +0 -16
  1164. package/dist/esm/generated/user/getPersonalizedSettings.d.ts +0 -14
  1165. package/dist/esm/generated/user/getPersonalizedSettings.js +0 -24
  1166. package/dist/esm/generated/user/getSession.d.ts +0 -16
  1167. package/dist/esm/generated/user/getSession.js +0 -25
  1168. package/dist/esm/generated/user/getSshKey.d.ts +0 -16
  1169. package/dist/esm/generated/user/getSshKey.js +0 -25
  1170. package/dist/esm/generated/user/getUser.d.ts +0 -14
  1171. package/dist/esm/generated/user/getUser.js +0 -16
  1172. package/dist/esm/generated/user/listApiTokens.d.ts +0 -13
  1173. package/dist/esm/generated/user/listApiTokens.js +0 -17
  1174. package/dist/esm/generated/user/listFeedback.d.ts +0 -13
  1175. package/dist/esm/generated/user/listFeedback.js +0 -24
  1176. package/dist/esm/generated/user/listSessions.d.ts +0 -13
  1177. package/dist/esm/generated/user/listSessions.js +0 -17
  1178. package/dist/esm/generated/user/listSshKeys.d.ts +0 -13
  1179. package/dist/esm/generated/user/listSshKeys.js +0 -17
  1180. package/dist/esm/generated/user/supportCodeRequest.d.ts +0 -14
  1181. package/dist/esm/generated/user/supportCodeRequest.js +0 -16
  1182. package/dist/esm/lib/app/appHelpers.d.ts +0 -4
  1183. package/dist/esm/lib/app/appHelpers.js +0 -43
  1184. package/dist/esm/lib/app/appVersionHelpers.d.ts +0 -5
  1185. package/dist/esm/lib/app/appVersionHelpers.js +0 -35
  1186. package/dist/esm/lib/conversation/message_input.d.ts +0 -10
  1187. package/dist/esm/lib/handleError.d.ts +0 -4
  1188. package/dist/esm/lib/handleError.js +0 -17
  1189. package/dist/esm/lib/mergeObjects.d.ts +0 -1
  1190. package/dist/esm/lib/mergeObjects.js +0 -6
  1191. package/dist/esm/lib/notify.d.ts +0 -2
  1192. package/dist/esm/lib/notify.js +0 -5
  1193. package/dist/esm/lib/viewhelpers/date.d.ts +0 -4
  1194. package/dist/esm/lib/viewhelpers/date.js +0 -16
  1195. package/dist/esm/lib/viewhelpers/size.d.ts +0 -1
  1196. package/dist/esm/lib/viewhelpers/size.js +0 -4
  1197. package/dist/esm/lib/viewhelpers/tui.d.ts +0 -2
  1198. package/dist/esm/lib/viewhelpers/tui.js +0 -13
  1199. package/dist/esm/rendering/oclif/components/table.d.ts +0 -11
  1200. package/dist/esm/rendering/oclif/components/table.js +0 -49
  1201. package/dist/esm/rendering/react/RenderBaseCommand.d.ts +0 -7
  1202. package/dist/esm/rendering/react/RenderBaseCommand.js +0 -13
  1203. package/dist/esm/rendering/react/components/ConversationMessage.d.ts +0 -8
  1204. package/dist/esm/rendering/react/components/ConversationMessage.js +0 -12
  1205. package/dist/esm/rendering/react/components/ConversationMeta.d.ts +0 -6
  1206. package/dist/esm/rendering/react/components/ConversationMeta.js +0 -21
  1207. package/dist/esm/rendering/react/components/ConversationStatusUpdate.d.ts +0 -8
  1208. package/dist/esm/rendering/react/components/ConversationStatusUpdate.js +0 -6
  1209. package/dist/esm/rendering/react/components/Header.d.ts +0 -6
  1210. package/dist/esm/rendering/react/components/Table.d.ts +0 -7
  1211. package/dist/esm/rendering/react/components/Table.js +0 -4
  1212. package/dist/esm/rendering/react/context.d.ts +0 -8
  1213. package/dist/esm/rendering/react/context.js +0 -4
  1214. package/dist/esm/rendering/react/hooks/useMyUserProfile.d.ts +0 -2
  1215. package/dist/esm/rendering/react/hooks/useMyUserProfile.js +0 -11
  1216. package/dist/esm/rendering/setup/FlagSupportedSetup.d.ts +0 -13
  1217. package/dist/esm/rendering/setup/FlagSupportedSetup.js +0 -22
  1218. package/dist/esm/rendering/setup/TableRenderSetup.d.ts +0 -13
  1219. package/dist/esm/rendering/setup/TableRenderSetup.js +0 -11
  1220. package/dist/esm/rendering/setup/usePromiseSetup.d.ts +0 -11
  1221. package/dist/esm/rendering/setup/usePromiseSetup.js +0 -11
  1222. package/dist/esm/types.d.ts +0 -8
  1223. /package/bin/{mw.cmd → run.cmd} +0 -0
  1224. /package/dist/{esm/types.js → commands/conversation/show.test.d.ts} +0 -0
  1225. /package/dist/{esm/lib → lib/resources}/conversation/message_input.js +0 -0
  1226. /package/dist/{esm/rendering → rendering}/react/components/Header.js +0 -0
@@ -1,16 +0,0 @@
1
- import { MittwaldAPIV2, MittwaldAPIV2Client } from "@mittwald/api-client";
2
- import { GetBaseCommand } from "../../GetBaseCommand.js";
3
- export type PathParams = MittwaldAPIV2.Paths.V2CustomersCustomerIdInvoicesInvoiceId.Get.Parameters.Path;
4
- type APIResponse = Awaited<ReturnType<MittwaldAPIV2Client["contract"]["invoiceDetailOfInvoice"]>>;
5
- export declare abstract class GeneratedInvoiceDetailOfInvoice extends GetBaseCommand<typeof GeneratedInvoiceDetailOfInvoice, APIResponse> {
6
- static description: string;
7
- static flags: {
8
- "customer-id": import("@oclif/core/lib/interfaces/parser.js").OptionFlag<string, import("@oclif/core/lib/interfaces/parser.js").CustomOptions>;
9
- };
10
- static args: {
11
- invoiceId: import("@oclif/core/lib/interfaces/parser.js").Arg<string, Record<string, unknown>>;
12
- };
13
- protected getData(): Promise<APIResponse>;
14
- protected mapParams(input: PathParams): Promise<PathParams> | PathParams;
15
- }
16
- export {};
@@ -1,29 +0,0 @@
1
- /* eslint-disable */
2
- /* prettier-ignore */
3
- /* This file is auto-generated with acg (@mittwald/api-code-generator) */
4
- import { Args, Flags } from "@oclif/core";
5
- import { GetBaseCommand } from "../../GetBaseCommand.js";
6
- export class GeneratedInvoiceDetailOfInvoice extends GetBaseCommand {
7
- static description = "Get details of an Invoice.";
8
- static flags = {
9
- ...GetBaseCommand.baseFlags,
10
- "customer-id": Flags.string({
11
- description: "undefined",
12
- required: true,
13
- }),
14
- };
15
- static args = {
16
- invoiceId: Args.string({
17
- description: "undefined",
18
- required: true,
19
- }),
20
- };
21
- async getData() {
22
- return await this.apiClient.contract.invoiceDetailOfInvoice({
23
- pathParameters: await this.mapParams(this.args),
24
- });
25
- }
26
- mapParams(input) {
27
- return input;
28
- }
29
- }
@@ -1,14 +0,0 @@
1
- import { MittwaldAPIV2, MittwaldAPIV2Client } from "@mittwald/api-client";
2
- import { GetBaseCommand } from "../../GetBaseCommand.js";
3
- export type PathParams = MittwaldAPIV2.Paths.V2CustomersCustomerIdInvoiceSettings.Get.Parameters.Path;
4
- type APIResponse = Awaited<ReturnType<MittwaldAPIV2Client["contract"]["invoiceGetDetailOfInvoiceSettings"]>>;
5
- export declare abstract class GeneratedInvoiceGetDetailOfInvoiceSettings extends GetBaseCommand<typeof GeneratedInvoiceGetDetailOfInvoiceSettings, APIResponse> {
6
- static description: string;
7
- static flags: {
8
- "customer-id": import("@oclif/core/lib/interfaces/parser.js").OptionFlag<string, import("@oclif/core/lib/interfaces/parser.js").CustomOptions>;
9
- };
10
- static args: {};
11
- protected getData(): Promise<APIResponse>;
12
- protected mapParams(input: PathParams): Promise<PathParams> | PathParams;
13
- }
14
- export {};
@@ -1,24 +0,0 @@
1
- /* eslint-disable */
2
- /* prettier-ignore */
3
- /* This file is auto-generated with acg (@mittwald/api-code-generator) */
4
- import { Flags } from "@oclif/core";
5
- import { GetBaseCommand } from "../../GetBaseCommand.js";
6
- export class GeneratedInvoiceGetDetailOfInvoiceSettings extends GetBaseCommand {
7
- static description = "Get InvoiceSettings of a Customer.";
8
- static flags = {
9
- ...GetBaseCommand.baseFlags,
10
- "customer-id": Flags.string({
11
- description: "undefined",
12
- required: true,
13
- }),
14
- };
15
- static args = {};
16
- async getData() {
17
- return await this.apiClient.contract.invoiceGetDetailOfInvoiceSettings({
18
- pathParameters: await this.mapParams(this.args),
19
- });
20
- }
21
- mapParams(input) {
22
- return input;
23
- }
24
- }
@@ -1,13 +0,0 @@
1
- import { MittwaldAPIV2, MittwaldAPIV2Client } from "@mittwald/api-client";
2
- import { ListBaseCommand } from "../../ListBaseCommand.js";
3
- export type PathParams = MittwaldAPIV2.Paths.V2CustomersCustomerIdInvoices.Get.Parameters.Path;
4
- export type Response = Awaited<ReturnType<MittwaldAPIV2Client["contract"]["invoiceListCustomerInvoices"]>>;
5
- export declare abstract class GeneratedInvoiceListCustomerInvoices<TItem extends Record<string, unknown>> extends ListBaseCommand<typeof GeneratedInvoiceListCustomerInvoices, TItem, Response> {
6
- static description: string;
7
- static args: {};
8
- static flags: {
9
- "customer-id": import("@oclif/core/lib/interfaces/parser.js").OptionFlag<string, import("@oclif/core/lib/interfaces/parser.js").CustomOptions>;
10
- };
11
- getData(): Promise<Response>;
12
- protected mapParams(input: PathParams): Promise<PathParams> | PathParams;
13
- }
@@ -1,24 +0,0 @@
1
- import { Flags } from "@oclif/core";
2
- import { ListBaseCommand } from "../../ListBaseCommand.js";
3
- export class GeneratedInvoiceListCustomerInvoices extends ListBaseCommand {
4
- static description = "List Invoices of a Customer.";
5
- static args = {};
6
- static flags = {
7
- ...ListBaseCommand.baseFlags,
8
- "customer-id": Flags.string({
9
- description: "undefined",
10
- required: true,
11
- }),
12
- };
13
- async getData() {
14
- const pathParams = {
15
- customerId: this.flags["customer-id"],
16
- };
17
- return await this.apiClient.contract.invoiceListCustomerInvoices({
18
- pathParameters: await this.mapParams(pathParams),
19
- });
20
- }
21
- mapParams(input) {
22
- return input;
23
- }
24
- }
@@ -1,13 +0,0 @@
1
- import { MittwaldAPIV2, MittwaldAPIV2Client } from "@mittwald/api-client";
2
- import { ListBaseCommand } from "../../ListBaseCommand.js";
3
- export type PathParams = MittwaldAPIV2.Paths.V2CustomersCustomerIdContracts.Get.Parameters.Path;
4
- export type Response = Awaited<ReturnType<MittwaldAPIV2Client["contract"]["listContracts"]>>;
5
- export declare abstract class GeneratedContractListContracts<TItem extends Record<string, unknown>> extends ListBaseCommand<typeof GeneratedContractListContracts, TItem, Response> {
6
- static description: string;
7
- static args: {};
8
- static flags: {
9
- "customer-id": import("@oclif/core/lib/interfaces/parser.js").OptionFlag<string, import("@oclif/core/lib/interfaces/parser.js").CustomOptions>;
10
- };
11
- getData(): Promise<Response>;
12
- protected mapParams(input: PathParams): Promise<PathParams> | PathParams;
13
- }
@@ -1,24 +0,0 @@
1
- import { Flags } from "@oclif/core";
2
- import { ListBaseCommand } from "../../ListBaseCommand.js";
3
- export class GeneratedContractListContracts extends ListBaseCommand {
4
- static description = "Return a list of Contracts for the given Customer.";
5
- static args = {};
6
- static flags = {
7
- ...ListBaseCommand.baseFlags,
8
- "customer-id": Flags.string({
9
- description: "The uuid of the Customer from whom all Contracts are to be returned.",
10
- required: true,
11
- }),
12
- };
13
- async getData() {
14
- const pathParams = {
15
- customerId: this.flags["customer-id"],
16
- };
17
- return await this.apiClient.contract.listContracts({
18
- pathParameters: await this.mapParams(pathParams),
19
- });
20
- }
21
- mapParams(input) {
22
- return input;
23
- }
24
- }
@@ -1,16 +0,0 @@
1
- import { MittwaldAPIV2, MittwaldAPIV2Client } from "@mittwald/api-client";
2
- import { GetBaseCommand } from "../../GetBaseCommand.js";
3
- export type PathParams = MittwaldAPIV2.Paths.V2OrdersOrderId.Get.Parameters.Path;
4
- type APIResponse = Awaited<ReturnType<MittwaldAPIV2Client["contract"]["orderGetOrder"]>>;
5
- export declare abstract class GeneratedOrderGetOrder extends GetBaseCommand<typeof GeneratedOrderGetOrder, APIResponse> {
6
- static description: string;
7
- static flags: {
8
- [x: string]: import("@oclif/core/lib/interfaces/parser.js").CompletableFlag<any>;
9
- };
10
- static args: {
11
- orderId: import("@oclif/core/lib/interfaces/parser.js").Arg<string, Record<string, unknown>>;
12
- };
13
- protected getData(): Promise<APIResponse>;
14
- protected mapParams(input: PathParams): Promise<PathParams> | PathParams;
15
- }
16
- export {};
@@ -1,25 +0,0 @@
1
- /* eslint-disable */
2
- /* prettier-ignore */
3
- /* This file is auto-generated with acg (@mittwald/api-code-generator) */
4
- import { Args } from "@oclif/core";
5
- import { GetBaseCommand } from "../../GetBaseCommand.js";
6
- export class GeneratedOrderGetOrder extends GetBaseCommand {
7
- static description = "Get Order for Customer.";
8
- static flags = {
9
- ...GetBaseCommand.baseFlags,
10
- };
11
- static args = {
12
- orderId: Args.string({
13
- description: "undefined",
14
- required: true,
15
- }),
16
- };
17
- async getData() {
18
- return await this.apiClient.contract.orderGetOrder({
19
- pathParameters: await this.mapParams(this.args),
20
- });
21
- }
22
- mapParams(input) {
23
- return input;
24
- }
25
- }
@@ -1,13 +0,0 @@
1
- import { MittwaldAPIV2, MittwaldAPIV2Client } from "@mittwald/api-client";
2
- import { ListBaseCommand } from "../../ListBaseCommand.js";
3
- export type PathParams = MittwaldAPIV2.Paths.V2CustomersCustomerIdOrders.Get.Parameters.Path;
4
- export type Response = Awaited<ReturnType<MittwaldAPIV2Client["contract"]["orderListCustomerOrders"]>>;
5
- export declare abstract class GeneratedOrderListCustomerOrders<TItem extends Record<string, unknown>> extends ListBaseCommand<typeof GeneratedOrderListCustomerOrders, TItem, Response> {
6
- static description: string;
7
- static args: {};
8
- static flags: {
9
- "customer-id": import("@oclif/core/lib/interfaces/parser.js").OptionFlag<string, import("@oclif/core/lib/interfaces/parser.js").CustomOptions>;
10
- };
11
- getData(): Promise<Response>;
12
- protected mapParams(input: PathParams): Promise<PathParams> | PathParams;
13
- }
@@ -1,24 +0,0 @@
1
- import { Flags } from "@oclif/core";
2
- import { ListBaseCommand } from "../../ListBaseCommand.js";
3
- export class GeneratedOrderListCustomerOrders extends ListBaseCommand {
4
- static description = "Get list of Orders of a Customer.";
5
- static args = {};
6
- static flags = {
7
- ...ListBaseCommand.baseFlags,
8
- "customer-id": Flags.string({
9
- description: "undefined",
10
- required: true,
11
- }),
12
- };
13
- async getData() {
14
- const pathParams = {
15
- customerId: this.flags["customer-id"],
16
- };
17
- return await this.apiClient.contract.orderListCustomerOrders({
18
- pathParameters: await this.mapParams(pathParams),
19
- });
20
- }
21
- mapParams(input) {
22
- return input;
23
- }
24
- }
@@ -1,13 +0,0 @@
1
- import { MittwaldAPIV2, MittwaldAPIV2Client } from "@mittwald/api-client";
2
- import { ListBaseCommand } from "../../ListBaseCommand.js";
3
- export type PathParams = MittwaldAPIV2.Paths.V2ProjectsProjectIdOrders.Get.Parameters.Path;
4
- export type Response = Awaited<ReturnType<MittwaldAPIV2Client["contract"]["orderListProjectOrders"]>>;
5
- export declare abstract class GeneratedOrderListProjectOrders<TItem extends Record<string, unknown>> extends ListBaseCommand<typeof GeneratedOrderListProjectOrders, TItem, Response> {
6
- static description: string;
7
- static args: {};
8
- static flags: {
9
- "project-id": import("@oclif/core/lib/interfaces/parser.js").OptionFlag<string, import("@oclif/core/lib/interfaces/parser.js").CustomOptions>;
10
- };
11
- getData(): Promise<Response>;
12
- protected mapParams(input: PathParams): Promise<PathParams> | PathParams;
13
- }
@@ -1,24 +0,0 @@
1
- import { Flags } from "@oclif/core";
2
- import { ListBaseCommand } from "../../ListBaseCommand.js";
3
- export class GeneratedOrderListProjectOrders extends ListBaseCommand {
4
- static description = "Get list of Orders of a Project.";
5
- static args = {};
6
- static flags = {
7
- ...ListBaseCommand.baseFlags,
8
- "project-id": Flags.string({
9
- description: "undefined",
10
- required: true,
11
- }),
12
- };
13
- async getData() {
14
- const pathParams = {
15
- projectId: this.flags["project-id"],
16
- };
17
- return await this.apiClient.contract.orderListProjectOrders({
18
- pathParameters: await this.mapParams(pathParams),
19
- });
20
- }
21
- mapParams(input) {
22
- return input;
23
- }
24
- }
@@ -1,16 +0,0 @@
1
- import { MittwaldAPIV2, MittwaldAPIV2Client } from "@mittwald/api-client";
2
- import { GetBaseCommand } from "../../GetBaseCommand.js";
3
- export type PathParams = MittwaldAPIV2.Paths.V2ConversationCategoriesCategoryId.Get.Parameters.Path;
4
- type APIResponse = Awaited<ReturnType<MittwaldAPIV2Client["conversation"]["getCategory"]>>;
5
- export declare abstract class GeneratedConversationGetCategory extends GetBaseCommand<typeof GeneratedConversationGetCategory, APIResponse> {
6
- static description: string;
7
- static flags: {
8
- [x: string]: import("@oclif/core/lib/interfaces/parser.js").CompletableFlag<any>;
9
- };
10
- static args: {
11
- categoryId: import("@oclif/core/lib/interfaces/parser.js").Arg<string, Record<string, unknown>>;
12
- };
13
- protected getData(): Promise<APIResponse>;
14
- protected mapParams(input: PathParams): Promise<PathParams> | PathParams;
15
- }
16
- export {};
@@ -1,25 +0,0 @@
1
- /* eslint-disable */
2
- /* prettier-ignore */
3
- /* This file is auto-generated with acg (@mittwald/api-code-generator) */
4
- import { Args } from "@oclif/core";
5
- import { GetBaseCommand } from "../../GetBaseCommand.js";
6
- export class GeneratedConversationGetCategory extends GetBaseCommand {
7
- static description = "Get a specific conversation category.";
8
- static flags = {
9
- ...GetBaseCommand.baseFlags,
10
- };
11
- static args = {
12
- categoryId: Args.string({
13
- description: "undefined",
14
- required: true,
15
- }),
16
- };
17
- async getData() {
18
- return await this.apiClient.conversation.getCategory({
19
- pathParameters: await this.mapParams(this.args),
20
- });
21
- }
22
- mapParams(input) {
23
- return input;
24
- }
25
- }
@@ -1,16 +0,0 @@
1
- import { MittwaldAPIV2, MittwaldAPIV2Client } from "@mittwald/api-client";
2
- import { GetBaseCommand } from "../../GetBaseCommand.js";
3
- export type PathParams = MittwaldAPIV2.Paths.V2ConversationsConversationId.Get.Parameters.Path;
4
- type APIResponse = Awaited<ReturnType<MittwaldAPIV2Client["conversation"]["getConversation"]>>;
5
- export declare abstract class GeneratedConversationGetConversation extends GetBaseCommand<typeof GeneratedConversationGetConversation, APIResponse> {
6
- static description: string;
7
- static flags: {
8
- [x: string]: import("@oclif/core/lib/interfaces/parser.js").CompletableFlag<any>;
9
- };
10
- static args: {
11
- conversationId: import("@oclif/core/lib/interfaces/parser.js").Arg<string, Record<string, unknown>>;
12
- };
13
- protected getData(): Promise<APIResponse>;
14
- protected mapParams(input: PathParams): Promise<PathParams> | PathParams;
15
- }
16
- export {};
@@ -1,25 +0,0 @@
1
- /* eslint-disable */
2
- /* prettier-ignore */
3
- /* This file is auto-generated with acg (@mittwald/api-code-generator) */
4
- import { Args } from "@oclif/core";
5
- import { GetBaseCommand } from "../../GetBaseCommand.js";
6
- export class GeneratedConversationGetConversation extends GetBaseCommand {
7
- static description = "Get a support conversation.";
8
- static flags = {
9
- ...GetBaseCommand.baseFlags,
10
- };
11
- static args = {
12
- conversationId: Args.string({
13
- description: "undefined",
14
- required: true,
15
- }),
16
- };
17
- async getData() {
18
- return await this.apiClient.conversation.getConversation({
19
- pathParameters: await this.mapParams(this.args),
20
- });
21
- }
22
- mapParams(input) {
23
- return input;
24
- }
25
- }
@@ -1,13 +0,0 @@
1
- import { MittwaldAPIV2, MittwaldAPIV2Client } from "@mittwald/api-client";
2
- import { ListBaseCommand } from "../../ListBaseCommand.js";
3
- export type PathParams = MittwaldAPIV2.Paths.V2ConversationCategories.Get.Parameters.Path;
4
- export type Response = Awaited<ReturnType<MittwaldAPIV2Client["conversation"]["listCategories"]>>;
5
- export declare abstract class GeneratedConversationListCategories<TItem extends Record<string, unknown>> extends ListBaseCommand<typeof GeneratedConversationListCategories, TItem, Response> {
6
- static description: string;
7
- static args: {};
8
- static flags: {
9
- [x: string]: import("@oclif/core/lib/interfaces/parser.js").CompletableFlag<any>;
10
- };
11
- getData(): Promise<Response>;
12
- protected mapParams(input: PathParams): Promise<PathParams> | PathParams;
13
- }
@@ -1,17 +0,0 @@
1
- import { ListBaseCommand } from "../../ListBaseCommand.js";
2
- export class GeneratedConversationListCategories extends ListBaseCommand {
3
- static description = "Get all conversation categories.";
4
- static args = {};
5
- static flags = {
6
- ...ListBaseCommand.baseFlags,
7
- };
8
- async getData() {
9
- const pathParams = {};
10
- return await this.apiClient.conversation.listCategories({
11
- pathParameters: await this.mapParams(pathParams),
12
- });
13
- }
14
- mapParams(input) {
15
- return input;
16
- }
17
- }
@@ -1,13 +0,0 @@
1
- import { MittwaldAPIV2, MittwaldAPIV2Client } from "@mittwald/api-client";
2
- import { ListBaseCommand } from "../../ListBaseCommand.js";
3
- export type PathParams = MittwaldAPIV2.Paths.V2Conversations.Get.Parameters.Path;
4
- export type Response = Awaited<ReturnType<MittwaldAPIV2Client["conversation"]["listConversations"]>>;
5
- export declare abstract class GeneratedConversationListConversations<TItem extends Record<string, unknown>> extends ListBaseCommand<typeof GeneratedConversationListConversations, TItem, Response> {
6
- static description: string;
7
- static args: {};
8
- static flags: {
9
- [x: string]: import("@oclif/core/lib/interfaces/parser.js").CompletableFlag<any>;
10
- };
11
- getData(): Promise<Response>;
12
- protected mapParams(input: PathParams): Promise<PathParams> | PathParams;
13
- }
@@ -1,17 +0,0 @@
1
- import { ListBaseCommand } from "../../ListBaseCommand.js";
2
- export class GeneratedConversationListConversations extends ListBaseCommand {
3
- static description = "Get all conversation the authenticated user has created or has access to.";
4
- static args = {};
5
- static flags = {
6
- ...ListBaseCommand.baseFlags,
7
- };
8
- async getData() {
9
- const pathParams = {};
10
- return await this.apiClient.conversation.listConversations({
11
- pathParameters: await this.mapParams(pathParams),
12
- });
13
- }
14
- mapParams(input) {
15
- return input;
16
- }
17
- }
@@ -1,13 +0,0 @@
1
- import { MittwaldAPIV2, MittwaldAPIV2Client } from "@mittwald/api-client";
2
- import { ListBaseCommand } from "../../ListBaseCommand.js";
3
- export type PathParams = MittwaldAPIV2.Paths.V2ConversationsConversationIdMessages.Get.Parameters.Path;
4
- export type Response = Awaited<ReturnType<MittwaldAPIV2Client["conversation"]["listMessagesByConversation"]>>;
5
- export declare abstract class GeneratedConversationListMessagesByConversation<TItem extends Record<string, unknown>> extends ListBaseCommand<typeof GeneratedConversationListMessagesByConversation, TItem, Response> {
6
- static description: string;
7
- static args: {};
8
- static flags: {
9
- "conversation-id": import("@oclif/core/lib/interfaces/parser.js").OptionFlag<string, import("@oclif/core/lib/interfaces/parser.js").CustomOptions>;
10
- };
11
- getData(): Promise<Response>;
12
- protected mapParams(input: PathParams): Promise<PathParams> | PathParams;
13
- }
@@ -1,24 +0,0 @@
1
- import { Flags } from "@oclif/core";
2
- import { ListBaseCommand } from "../../ListBaseCommand.js";
3
- export class GeneratedConversationListMessagesByConversation extends ListBaseCommand {
4
- static description = "Get all message of the conversation.";
5
- static args = {};
6
- static flags = {
7
- ...ListBaseCommand.baseFlags,
8
- "conversation-id": Flags.string({
9
- description: "undefined",
10
- required: true,
11
- }),
12
- };
13
- async getData() {
14
- const pathParams = {
15
- conversationId: this.flags["conversation-id"],
16
- };
17
- return await this.apiClient.conversation.listMessagesByConversation({
18
- pathParameters: await this.mapParams(pathParams),
19
- });
20
- }
21
- mapParams(input) {
22
- return input;
23
- }
24
- }
@@ -1,16 +0,0 @@
1
- import { MittwaldAPIV2, MittwaldAPIV2Client } from "@mittwald/api-client";
2
- import { GetBaseCommand } from "../../GetBaseCommand.js";
3
- export type PathParams = MittwaldAPIV2.Paths.V2CronjobsCronjobId.Get.Parameters.Path;
4
- type APIResponse = Awaited<ReturnType<MittwaldAPIV2Client["cronjob"]["getCronjob"]>>;
5
- export declare abstract class GeneratedCronjobGetCronjob extends GetBaseCommand<typeof GeneratedCronjobGetCronjob, APIResponse> {
6
- static description: string;
7
- static flags: {
8
- [x: string]: import("@oclif/core/lib/interfaces/parser.js").CompletableFlag<any>;
9
- };
10
- static args: {
11
- cronjobId: import("@oclif/core/lib/interfaces/parser.js").Arg<string, Record<string, unknown>>;
12
- };
13
- protected getData(): Promise<APIResponse>;
14
- protected mapParams(input: PathParams): Promise<PathParams> | PathParams;
15
- }
16
- export {};
@@ -1,25 +0,0 @@
1
- /* eslint-disable */
2
- /* prettier-ignore */
3
- /* This file is auto-generated with acg (@mittwald/api-code-generator) */
4
- import { Args } from "@oclif/core";
5
- import { GetBaseCommand } from "../../GetBaseCommand.js";
6
- export class GeneratedCronjobGetCronjob extends GetBaseCommand {
7
- static description = "Get a Cronjob.";
8
- static flags = {
9
- ...GetBaseCommand.baseFlags,
10
- };
11
- static args = {
12
- cronjobId: Args.string({
13
- description: "ID of the Cronjob to be retrieved.",
14
- required: true,
15
- }),
16
- };
17
- async getData() {
18
- return await this.apiClient.cronjob.getCronjob({
19
- pathParameters: await this.mapParams(this.args),
20
- });
21
- }
22
- mapParams(input) {
23
- return input;
24
- }
25
- }
@@ -1,16 +0,0 @@
1
- import { MittwaldAPIV2, MittwaldAPIV2Client } from "@mittwald/api-client";
2
- import { GetBaseCommand } from "../../GetBaseCommand.js";
3
- export type PathParams = MittwaldAPIV2.Paths.V2CronjobsCronjobIdExecutionsExecutionId.Get.Parameters.Path;
4
- type APIResponse = Awaited<ReturnType<MittwaldAPIV2Client["cronjob"]["getExecution"]>>;
5
- export declare abstract class GeneratedCronjobGetExecution extends GetBaseCommand<typeof GeneratedCronjobGetExecution, APIResponse> {
6
- static description: string;
7
- static flags: {
8
- "cronjob-id": import("@oclif/core/lib/interfaces/parser.js").OptionFlag<string, import("@oclif/core/lib/interfaces/parser.js").CustomOptions>;
9
- };
10
- static args: {
11
- executionId: import("@oclif/core/lib/interfaces/parser.js").Arg<string, Record<string, unknown>>;
12
- };
13
- protected getData(): Promise<APIResponse>;
14
- protected mapParams(input: PathParams): Promise<PathParams> | PathParams;
15
- }
16
- export {};
@@ -1,29 +0,0 @@
1
- /* eslint-disable */
2
- /* prettier-ignore */
3
- /* This file is auto-generated with acg (@mittwald/api-code-generator) */
4
- import { Args, Flags } from "@oclif/core";
5
- import { GetBaseCommand } from "../../GetBaseCommand.js";
6
- export class GeneratedCronjobGetExecution extends GetBaseCommand {
7
- static description = "Get a CronjobExecution.";
8
- static flags = {
9
- ...GetBaseCommand.baseFlags,
10
- "cronjob-id": Flags.string({
11
- description: "undefined",
12
- required: true,
13
- }),
14
- };
15
- static args = {
16
- executionId: Args.string({
17
- description: "ID of the CronjobExecution to be retrieved.",
18
- required: true,
19
- }),
20
- };
21
- async getData() {
22
- return await this.apiClient.cronjob.getExecution({
23
- pathParameters: await this.mapParams(this.args),
24
- });
25
- }
26
- mapParams(input) {
27
- return input;
28
- }
29
- }
@@ -1,13 +0,0 @@
1
- import { MittwaldAPIV2, MittwaldAPIV2Client } from "@mittwald/api-client";
2
- import { ListBaseCommand } from "../../ListBaseCommand.js";
3
- export type PathParams = MittwaldAPIV2.Paths.V2ProjectsProjectIdCronjobs.Get.Parameters.Path;
4
- export type Response = Awaited<ReturnType<MittwaldAPIV2Client["cronjob"]["listCronjobs"]>>;
5
- export declare abstract class GeneratedCronjobListCronjobs<TItem extends Record<string, unknown>> extends ListBaseCommand<typeof GeneratedCronjobListCronjobs, TItem, Response> {
6
- static description: string;
7
- static args: {};
8
- static flags: {
9
- "project-id": import("@oclif/core/lib/interfaces/parser.js").OptionFlag<string, import("@oclif/core/lib/interfaces/parser.js").CustomOptions>;
10
- };
11
- getData(): Promise<Response>;
12
- protected mapParams(input: PathParams): Promise<PathParams> | PathParams;
13
- }
@@ -1,24 +0,0 @@
1
- import { Flags } from "@oclif/core";
2
- import { ListBaseCommand } from "../../ListBaseCommand.js";
3
- export class GeneratedCronjobListCronjobs extends ListBaseCommand {
4
- static description = "List Cronjobs belonging to a Project.";
5
- static args = {};
6
- static flags = {
7
- ...ListBaseCommand.baseFlags,
8
- "project-id": Flags.string({
9
- description: "ID of the Project for which to list Cronjobs for.",
10
- required: true,
11
- }),
12
- };
13
- async getData() {
14
- const pathParams = {
15
- projectId: this.flags["project-id"],
16
- };
17
- return await this.apiClient.cronjob.listCronjobs({
18
- pathParameters: await this.mapParams(pathParams),
19
- });
20
- }
21
- mapParams(input) {
22
- return input;
23
- }
24
- }
@@ -1,13 +0,0 @@
1
- import { MittwaldAPIV2, MittwaldAPIV2Client } from "@mittwald/api-client";
2
- import { ListBaseCommand } from "../../ListBaseCommand.js";
3
- export type PathParams = MittwaldAPIV2.Paths.V2CronjobsCronjobIdExecutions.Get.Parameters.Path;
4
- export type Response = Awaited<ReturnType<MittwaldAPIV2Client["cronjob"]["listExecutions"]>>;
5
- export declare abstract class GeneratedCronjobListExecutions<TItem extends Record<string, unknown>> extends ListBaseCommand<typeof GeneratedCronjobListExecutions, TItem, Response> {
6
- static description: string;
7
- static args: {};
8
- static flags: {
9
- "cronjob-id": import("@oclif/core/lib/interfaces/parser.js").OptionFlag<string, import("@oclif/core/lib/interfaces/parser.js").CustomOptions>;
10
- };
11
- getData(): Promise<Response>;
12
- protected mapParams(input: PathParams): Promise<PathParams> | PathParams;
13
- }