@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
package/README.md CHANGED
@@ -1,2457 +1,127 @@
1
1
  <center>
2
2
 
3
- # `mw` -- the mittwald command-line tool
3
+ # `mw` &mdash; the mittwald command-line tool
4
4
 
5
5
  ![](docs/demo.png)
6
6
 
7
7
  </center>
8
8
 
9
- > ⚠️ **EXPERIMENTAL -- STABILITY NOTICE**
10
- >
11
- > This project is **experimental**, and we do not offer any stability guarantees of any kind for the command structure, input flags and arguments and output formats. We welcome you to give this project a try and we're looking forward for any feedback on this project in this stage of development. However, please do not rely on any inputs or outputs of this project to remain stable.
12
-
13
9
  ## Synposis
14
10
 
15
11
  `mw` is the command-line tool for interacting with the mittwald mStudio v2 API.
16
12
 
17
- ## Installation and first steps
18
-
19
- Have a look at the [documentation](https://developer.mittwald.de/docs/v2/api/sdks/cli/) for installation instructions.
20
-
21
- ## Usage
22
-
23
- <!-- usage -->
24
- ```sh-session
25
- $ npm install -g @mittwald/cli
26
- $ mw COMMAND
27
- running command...
28
- $ mw (--version)
29
- @mittwald/cli/1.0.0 darwin-arm64 node-v18.11.0
30
- $ mw --help [COMMAND]
31
- USAGE
32
- $ mw COMMAND
33
- ...
34
- ```
35
- <!-- usagestop -->
36
-
37
- ## Commands
38
-
39
- <!-- commands -->
40
- * [`mw app delete ID`](#mw-app-delete-id)
41
- * [`mw app dependency getSystemsoftware SYSTEMSOFTWAREID`](#mw-app-dependency-getsystemsoftware-systemsoftwareid)
42
- * [`mw app dependency getSystemsoftwareversion SYSTEMSOFTWAREVERSIONID`](#mw-app-dependency-getsystemsoftwareversion-systemsoftwareversionid)
43
- * [`mw app dependency listSystemsoftwares`](#mw-app-dependency-listsystemsoftwares)
44
- * [`mw app dependency listSystemsoftwareversions`](#mw-app-dependency-listsystemsoftwareversions)
45
- * [`mw app get APPINSTALLATIONID`](#mw-app-get-appinstallationid)
46
- * [`mw app install wordpress`](#mw-app-install-wordpress)
47
- * [`mw app list`](#mw-app-list)
48
- * [`mw app versions [APP]`](#mw-app-versions-app)
49
- * [`mw article get ARTICLEID`](#mw-article-get-articleid)
50
- * [`mw article list`](#mw-article-list)
51
- * [`mw contract getBaseItemOfContract`](#mw-contract-getbaseitemofcontract)
52
- * [`mw contract getDetailOfContract CONTRACTID`](#mw-contract-getdetailofcontract-contractid)
53
- * [`mw contract getDetailOfContractByDomain`](#mw-contract-getdetailofcontractbydomain)
54
- * [`mw contract getDetailOfContractByProject`](#mw-contract-getdetailofcontractbyproject)
55
- * [`mw contract getDetailOfContractByServer`](#mw-contract-getdetailofcontractbyserver)
56
- * [`mw contract getDetailOfContractItem CONTRACTITEMID`](#mw-contract-getdetailofcontractitem-contractitemid)
57
- * [`mw contract getNextTerminationDateForItem`](#mw-contract-getnextterminationdateforitem)
58
- * [`mw contract invoiceDetailOfInvoice INVOICEID`](#mw-contract-invoicedetailofinvoice-invoiceid)
59
- * [`mw contract invoiceGetDetailOfInvoiceSettings`](#mw-contract-invoicegetdetailofinvoicesettings)
60
- * [`mw contract invoiceListCustomerInvoices`](#mw-contract-invoicelistcustomerinvoices)
61
- * [`mw contract listContracts`](#mw-contract-listcontracts)
62
- * [`mw contract orderGetOrder ORDERID`](#mw-contract-ordergetorder-orderid)
63
- * [`mw contract orderListCustomerOrders`](#mw-contract-orderlistcustomerorders)
64
- * [`mw contract orderListProjectOrders`](#mw-contract-orderlistprojectorders)
65
- * [`mw conversation categories`](#mw-conversation-categories)
66
- * [`mw conversation close ID`](#mw-conversation-close-id)
67
- * [`mw conversation create`](#mw-conversation-create)
68
- * [`mw conversation list`](#mw-conversation-list)
69
- * [`mw conversation reply ID`](#mw-conversation-reply-id)
70
- * [`mw conversation show ID`](#mw-conversation-show-id)
71
- * [`mw conversation show2 CONVERSATIONID`](#mw-conversation-show2-conversationid)
72
- * [`mw database mysql charsets`](#mw-database-mysql-charsets)
73
- * [`mw database mysql get ID`](#mw-database-mysql-get-id)
74
- * [`mw database mysql list`](#mw-database-mysql-list)
75
- * [`mw database mysql user get ID`](#mw-database-mysql-user-get-id)
76
- * [`mw database mysql user getMysqlUserPhpMyAdminUrl`](#mw-database-mysql-user-getmysqluserphpmyadminurl)
77
- * [`mw database mysql user list`](#mw-database-mysql-user-list)
78
- * [`mw database mysql versions`](#mw-database-mysql-versions)
79
- * [`mw database redis get ID`](#mw-database-redis-get-id)
80
- * [`mw database redis list`](#mw-database-redis-list)
81
- * [`mw database redis versions`](#mw-database-redis-versions)
82
- * [`mw domain dnszone get ZONEID`](#mw-domain-dnszone-get-zoneid)
83
- * [`mw domain dnszone list`](#mw-domain-dnszone-list)
84
- * [`mw domain get DOMAINID`](#mw-domain-get-domainid)
85
- * [`mw domain get-handle DOMAINNAME`](#mw-domain-get-handle-domainname)
86
- * [`mw domain list`](#mw-domain-list)
87
- * [`mw domain ownership get DOMAINOWNERSHIPID`](#mw-domain-ownership-get-domainownershipid)
88
- * [`mw domain ownership list`](#mw-domain-ownership-list)
89
- * [`mw domain tld get TLD`](#mw-domain-tld-get-tld)
90
- * [`mw domain tld list`](#mw-domain-tld-list)
91
- * [`mw domain virtualhost get INGRESSID`](#mw-domain-virtualhost-get-ingressid)
92
- * [`mw domain virtualhost list`](#mw-domain-virtualhost-list)
93
- * [`mw help [COMMANDS]`](#mw-help-commands)
94
- * [`mw login status`](#mw-login-status)
95
- * [`mw login token`](#mw-login-token)
96
- * [`mw mail address create`](#mw-mail-address-create)
97
- * [`mw mail address delete ID`](#mw-mail-address-delete-id)
98
- * [`mw mail address get ID`](#mw-mail-address-get-id)
99
- * [`mw mail address list`](#mw-mail-address-list)
100
- * [`mw mail deliverybox get ID`](#mw-mail-deliverybox-get-id)
101
- * [`mw mail deliverybox list`](#mw-mail-deliverybox-list)
102
- * [`mw org can-order`](#mw-org-can-order)
103
- * [`mw org get CUSTOMERID`](#mw-org-get-customerid)
104
- * [`mw org invite get INVITEID`](#mw-org-invite-get-inviteid)
105
- * [`mw org invite list`](#mw-org-invite-list)
106
- * [`mw org invite list-own`](#mw-org-invite-list-own)
107
- * [`mw org list`](#mw-org-list)
108
- * [`mw org membership get MEMBERSHIPID`](#mw-org-membership-get-membershipid)
109
- * [`mw org membership list`](#mw-org-membership-list)
110
- * [`mw org membership list-own`](#mw-org-membership-list-own)
111
- * [`mw project backup get PROJECTBACKUPID`](#mw-project-backup-get-projectbackupid)
112
- * [`mw project backup list`](#mw-project-backup-list)
113
- * [`mw project backupschedule get PROJECTBACKUPSCHEDULEID`](#mw-project-backupschedule-get-projectbackupscheduleid)
114
- * [`mw project backupschedule list`](#mw-project-backupschedule-list)
115
- * [`mw project create`](#mw-project-create)
116
- * [`mw project cronjob execution get EXECUTIONID`](#mw-project-cronjob-execution-get-executionid)
117
- * [`mw project cronjob execution list`](#mw-project-cronjob-execution-list)
118
- * [`mw project cronjob get CRONJOBID`](#mw-project-cronjob-get-cronjobid)
119
- * [`mw project cronjob list`](#mw-project-cronjob-list)
120
- * [`mw project delete ID`](#mw-project-delete-id)
121
- * [`mw project filesystem directories`](#mw-project-filesystem-directories)
122
- * [`mw project filesystem file-content`](#mw-project-filesystem-file-content)
123
- * [`mw project filesystem files PROJECTID`](#mw-project-filesystem-files-projectid)
124
- * [`mw project filesystem usage`](#mw-project-filesystem-usage)
125
- * [`mw project get ID`](#mw-project-get-id)
126
- * [`mw project invite get INVITEID`](#mw-project-invite-get-inviteid)
127
- * [`mw project invite list`](#mw-project-invite-list)
128
- * [`mw project invite list-own`](#mw-project-invite-list-own)
129
- * [`mw project list`](#mw-project-list)
130
- * [`mw project list1`](#mw-project-list1)
131
- * [`mw project list2`](#mw-project-list2)
132
- * [`mw project membership get MEMBERSHIPID`](#mw-project-membership-get-membershipid)
133
- * [`mw project membership get-own`](#mw-project-membership-get-own)
134
- * [`mw project membership list`](#mw-project-membership-list)
135
- * [`mw project membership list-own`](#mw-project-membership-list-own)
136
- * [`mw project sftp-user list`](#mw-project-sftp-user-list)
137
- * [`mw project ssh ID`](#mw-project-ssh-id)
138
- * [`mw project ssh-user list`](#mw-project-ssh-user-list)
139
- * [`mw project update ID`](#mw-project-update-id)
140
- * [`mw server get SERVERID`](#mw-server-get-serverid)
141
- * [`mw server list`](#mw-server-list)
142
- * [`mw user api-token create`](#mw-user-api-token-create)
143
- * [`mw user api-token get APITOKENID`](#mw-user-api-token-get-apitokenid)
144
- * [`mw user api-token list`](#mw-user-api-token-list)
145
- * [`mw user api-token revoke ID`](#mw-user-api-token-revoke-id)
146
- * [`mw user get`](#mw-user-get)
147
- * [`mw user session get TOKENID`](#mw-user-session-get-tokenid)
148
- * [`mw user session list`](#mw-user-session-list)
149
- * [`mw user ssh-key create`](#mw-user-ssh-key-create)
150
- * [`mw user ssh-key delete ID`](#mw-user-ssh-key-delete-id)
151
- * [`mw user ssh-key get SSHKEYID`](#mw-user-ssh-key-get-sshkeyid)
152
- * [`mw user ssh-key list`](#mw-user-ssh-key-list)
153
-
154
- ## `mw app delete ID`
155
-
156
- Delete an app
157
-
158
- ```
159
- USAGE
160
- $ mw app delete ID [-f]
161
-
162
- ARGUMENTS
163
- ID ID of the app to be deleted.
164
-
165
- FLAGS
166
- -f, --force delete without prompting for confirmation
167
-
168
- DESCRIPTION
169
- Delete an app
170
- ```
171
-
172
- ## `mw app dependency getSystemsoftware SYSTEMSOFTWAREID`
173
-
174
- get a specific `SystemSoftware`
175
-
176
- ```
177
- USAGE
178
- $ mw app dependency getSystemsoftware SYSTEMSOFTWAREID [--output json|yaml | | ]
179
-
180
- ARGUMENTS
181
- SYSTEMSOFTWAREID undefined
182
-
183
- FLAGS
184
- --output=<option> output in a more machine friendly format
185
- <options: json|yaml>
186
-
187
- DESCRIPTION
188
- get a specific `SystemSoftware`
189
- ```
190
-
191
- ## `mw app dependency getSystemsoftwareversion SYSTEMSOFTWAREVERSIONID`
192
-
193
- get a specific `SystemSoftwareVersion`
194
-
195
- ```
196
- USAGE
197
- $ mw app dependency getSystemsoftwareversion SYSTEMSOFTWAREVERSIONID --system-software-id <value> [--output json|yaml
198
- | | ]
199
-
200
- ARGUMENTS
201
- SYSTEMSOFTWAREVERSIONID undefined
202
-
203
- FLAGS
204
- --output=<option> output in a more machine friendly format
205
- <options: json|yaml>
206
- --system-software-id=<value> (required) undefined
207
-
208
- DESCRIPTION
209
- get a specific `SystemSoftwareVersion`
210
- ```
211
-
212
- ## `mw app dependency listSystemsoftwares`
213
-
214
- get all available `SystemSoftware`
215
-
216
- ```
217
- USAGE
218
- $ mw app dependency listSystemsoftwares [--columns <value> | -x] [--sort <value>] [--filter <value>] [--output csv|json|yaml | |
219
- [--csv | --no-truncate]] [--no-header | ]
220
-
221
- FLAGS
222
- -x, --extended show extra columns
223
- --columns=<value> only show provided columns (comma-separated)
224
- --csv output is csv format [alias: --output=csv]
225
- --filter=<value> filter property by partial string matching, ex: name=foo
226
- --no-header hide table header from output
227
- --no-truncate do not truncate output to fit screen
228
- --output=<option> output in a more machine friendly format
229
- <options: csv|json|yaml>
230
- --sort=<value> property to sort by (prepend '-' for descending)
231
-
232
- DESCRIPTION
233
- get all available `SystemSoftware`
234
- ```
235
-
236
- ## `mw app dependency listSystemsoftwareversions`
237
-
238
- get all available `SystemSoftwareVersions` of a specific `SystemSoftware`
239
-
240
- ```
241
- USAGE
242
- $ mw app dependency listSystemsoftwareversions --system-software-id <value> [--columns <value> | -x] [--sort <value>] [--filter <value>]
243
- [--output csv|json|yaml | | [--csv | --no-truncate]] [--no-header | ]
244
-
245
- FLAGS
246
- -x, --extended show extra columns
247
- --columns=<value> only show provided columns (comma-separated)
248
- --csv output is csv format [alias: --output=csv]
249
- --filter=<value> filter property by partial string matching, ex: name=foo
250
- --no-header hide table header from output
251
- --no-truncate do not truncate output to fit screen
252
- --output=<option> output in a more machine friendly format
253
- <options: csv|json|yaml>
254
- --sort=<value> property to sort by (prepend '-' for descending)
255
- --system-software-id=<value> (required) undefined
256
-
257
- DESCRIPTION
258
- get all available `SystemSoftwareVersions` of a specific `SystemSoftware`
259
- ```
260
-
261
- ## `mw app get APPINSTALLATIONID`
262
-
263
- get a specific `AppInstallation`
264
-
265
- ```
266
- USAGE
267
- $ mw app get APPINSTALLATIONID [--output json|yaml | | ]
268
-
269
- ARGUMENTS
270
- APPINSTALLATIONID undefined
271
-
272
- FLAGS
273
- --output=<option> output in a more machine friendly format
274
- <options: json|yaml>
275
-
276
- DESCRIPTION
277
- get a specific `AppInstallation`
278
- ```
279
-
280
- ## `mw app install wordpress`
281
-
282
- Creates new WordPress Installation.
283
-
284
- ```
285
- USAGE
286
- $ mw app install wordpress -p <value> --host <value> --admin-user <value> --admin-email <value> --admin-pass <value>
287
- --site-title <value> [--version <value>] [-w]
288
-
289
- FLAGS
290
- -p, --project-id=<value> (required) ID of the Project, in which the App will be created.
291
- -w, --wait Wait for the App to be ready.
292
- --admin-email=<value> (required) First Admin Users E-Mail.
293
- --admin-pass=<value> (required) First Admin Users Password.
294
- --admin-user=<value> (required) First Admin User for the app.
295
- --host=<value> (required) Host under which the App will be available (Needs to be created separately).
296
- --site-title=<value> (required) Site Title of the created appInstallation.
297
- --version=<value> Version of the App to be created - Defaults to latest
298
-
299
- DESCRIPTION
300
- Creates new WordPress Installation.
301
- ```
302
-
303
- ## `mw app list`
304
-
305
- List projects
306
-
307
- ```
308
- USAGE
309
- $ mw app list -p <value> [--columns <value> | -x] [--sort <value>] [--filter <value>] [--output
310
- csv|json|yaml | | [--csv | --no-truncate]] [--no-header | ]
311
-
312
- FLAGS
313
- -p, --project=<value> (required) project to run the command for
314
- -x, --extended show extra columns
315
- --columns=<value> only show provided columns (comma-separated)
316
- --csv output is csv format [alias: --output=csv]
317
- --filter=<value> filter property by partial string matching, ex: name=foo
318
- --no-header hide table header from output
319
- --no-truncate do not truncate output to fit screen
320
- --output=<option> output in a more machine friendly format
321
- <options: csv|json|yaml>
322
- --sort=<value> property to sort by (prepend '-' for descending)
323
-
324
- DESCRIPTION
325
- List projects
326
- ```
327
-
328
- ## `mw app versions [APP]`
329
-
330
- List supported Apps and Versions
331
-
332
- ```
333
- USAGE
334
- $ mw app versions [APP]
335
-
336
- ARGUMENTS
337
- APP name of specific app to get versions for
338
-
339
- DESCRIPTION
340
- List supported Apps and Versions
341
- ```
342
-
343
- ## `mw article get ARTICLEID`
344
-
345
- Get an Article.
346
-
347
- ```
348
- USAGE
349
- $ mw article get ARTICLEID [--output json|yaml | | ]
350
-
351
- ARGUMENTS
352
- ARTICLEID undefined
353
-
354
- FLAGS
355
- --output=<option> output in a more machine friendly format
356
- <options: json|yaml>
357
-
358
- DESCRIPTION
359
- Get an Article.
360
- ```
361
-
362
- ## `mw article list`
363
-
364
- List Articles.
365
-
366
- ```
367
- USAGE
368
- $ mw article list [--columns <value> | -x] [--sort <value>] [--filter <value>] [--output csv|json|yaml | |
369
- [--csv | --no-truncate]] [--no-header | ]
370
-
371
- FLAGS
372
- -x, --extended show extra columns
373
- --columns=<value> only show provided columns (comma-separated)
374
- --csv output is csv format [alias: --output=csv]
375
- --filter=<value> filter property by partial string matching, ex: name=foo
376
- --no-header hide table header from output
377
- --no-truncate do not truncate output to fit screen
378
- --output=<option> output in a more machine friendly format
379
- <options: csv|json|yaml>
380
- --sort=<value> property to sort by (prepend '-' for descending)
381
-
382
- DESCRIPTION
383
- List Articles.
384
- ```
385
-
386
- ## `mw contract getBaseItemOfContract`
387
-
388
- Return the BaseItem of the Contract with the given ID.
389
-
390
- ```
391
- USAGE
392
- $ mw contract getBaseItemOfContract --contract-id <value> [--output json|yaml | | ]
393
-
394
- FLAGS
395
- --contract-id=<value> (required) The uuid of the Contract from which the BaseItem is to be issued.
396
- --output=<option> output in a more machine friendly format
397
- <options: json|yaml>
398
-
399
- DESCRIPTION
400
- Return the BaseItem of the Contract with the given ID.
401
- ```
402
-
403
- ## `mw contract getDetailOfContract CONTRACTID`
404
-
405
- Returns the Contract with the given ID.
406
-
407
- ```
408
- USAGE
409
- $ mw contract getDetailOfContract CONTRACTID [--output json|yaml | | ]
410
-
411
- ARGUMENTS
412
- CONTRACTID The uuid of the Contract to be returned.
413
-
414
- FLAGS
415
- --output=<option> output in a more machine friendly format
416
- <options: json|yaml>
417
-
418
- DESCRIPTION
419
- Returns the Contract with the given ID.
420
- ```
421
-
422
- ## `mw contract getDetailOfContractByDomain`
423
-
424
- Return the Contract for the given Domain.
425
-
426
- ```
427
- USAGE
428
- $ mw contract getDetailOfContractByDomain --domain-id <value> [--output json|yaml | | ]
429
-
430
- FLAGS
431
- --domain-id=<value> (required) undefined
432
- --output=<option> output in a more machine friendly format
433
- <options: json|yaml>
434
-
435
- DESCRIPTION
436
- Return the Contract for the given Domain.
437
- ```
438
-
439
- ## `mw contract getDetailOfContractByProject`
440
-
441
- Return the Contract for the given Project.
442
-
443
- ```
444
- USAGE
445
- $ mw contract getDetailOfContractByProject --project-id <value> [--output json|yaml | | ]
446
-
447
- FLAGS
448
- --output=<option> output in a more machine friendly format
449
- <options: json|yaml>
450
- --project-id=<value> (required) undefined
451
-
452
- DESCRIPTION
453
- Return the Contract for the given Project.
454
- ```
455
-
456
- ## `mw contract getDetailOfContractByServer`
457
-
458
- Return the Contract for the given Server.
459
-
460
- ```
461
- USAGE
462
- $ mw contract getDetailOfContractByServer --server-id <value> [--output json|yaml | | ]
463
-
464
- FLAGS
465
- --output=<option> output in a more machine friendly format
466
- <options: json|yaml>
467
- --server-id=<value> (required) undefined
468
-
469
- DESCRIPTION
470
- Return the Contract for the given Server.
471
- ```
472
-
473
- ## `mw contract getDetailOfContractItem CONTRACTITEMID`
474
-
475
- Get the ContractItem with the given ID.
476
-
477
- ```
478
- USAGE
479
- $ mw contract getDetailOfContractItem CONTRACTITEMID --contract-id <value> [--output json|yaml | | ]
480
-
481
- ARGUMENTS
482
- CONTRACTITEMID The uuid of the ContractItem to be returned.
483
-
484
- FLAGS
485
- --contract-id=<value> (required) The uuid of the Contract where the desired ContractItem belongs to.
486
- --output=<option> output in a more machine friendly format
487
- <options: json|yaml>
488
-
489
- DESCRIPTION
490
- Get the ContractItem with the given ID.
491
- ```
492
-
493
- ## `mw contract getNextTerminationDateForItem`
494
-
495
- Return the next TerminationDate for the ContractItem with the given ID.
496
-
497
- ```
498
- USAGE
499
- $ mw contract getNextTerminationDateForItem --contract-id <value> --contract-item-id <value> [--output json|yaml | |
500
- ]
501
-
502
- FLAGS
503
- --contract-id=<value> (required) The uuid of the Contract where the desired ContractItem belongs to.
504
- --contract-item-id=<value> (required) The uuid of the ContractItem whose next TerminationDate is to be displayed.
505
- --output=<option> output in a more machine friendly format
506
- <options: json|yaml>
507
-
508
- DESCRIPTION
509
- Return the next TerminationDate for the ContractItem with the given ID.
510
- ```
511
-
512
- ## `mw contract invoiceDetailOfInvoice INVOICEID`
513
-
514
- Get details of an Invoice.
515
-
516
- ```
517
- USAGE
518
- $ mw contract invoiceDetailOfInvoice INVOICEID --customer-id <value> [--output json|yaml | | ]
519
-
520
- ARGUMENTS
521
- INVOICEID undefined
522
-
523
- FLAGS
524
- --customer-id=<value> (required) undefined
525
- --output=<option> output in a more machine friendly format
526
- <options: json|yaml>
527
-
528
- DESCRIPTION
529
- Get details of an Invoice.
530
- ```
531
-
532
- ## `mw contract invoiceGetDetailOfInvoiceSettings`
533
-
534
- Get InvoiceSettings of a Customer.
535
-
536
- ```
537
- USAGE
538
- $ mw contract invoiceGetDetailOfInvoiceSettings --customer-id <value> [--output json|yaml | | ]
539
-
540
- FLAGS
541
- --customer-id=<value> (required) undefined
542
- --output=<option> output in a more machine friendly format
543
- <options: json|yaml>
544
-
545
- DESCRIPTION
546
- Get InvoiceSettings of a Customer.
547
- ```
548
-
549
- ## `mw contract invoiceListCustomerInvoices`
550
-
551
- List Invoices of a Customer.
552
-
553
- ```
554
- USAGE
555
- $ mw contract invoiceListCustomerInvoices --customer-id <value> [--columns <value> | -x] [--sort <value>] [--filter <value>] [--output
556
- csv|json|yaml | | [--csv | --no-truncate]] [--no-header | ]
13
+ ## Getting started
557
14
 
558
- FLAGS
559
- -x, --extended show extra columns
560
- --columns=<value> only show provided columns (comma-separated)
561
- --csv output is csv format [alias: --output=csv]
562
- --customer-id=<value> (required) undefined
563
- --filter=<value> filter property by partial string matching, ex: name=foo
564
- --no-header hide table header from output
565
- --no-truncate do not truncate output to fit screen
566
- --output=<option> output in a more machine friendly format
567
- <options: csv|json|yaml>
568
- --sort=<value> property to sort by (prepend '-' for descending)
15
+ ### Installation
569
16
 
570
- DESCRIPTION
571
- List Invoices of a Customer.
572
- ```
573
-
574
- ## `mw contract listContracts`
575
-
576
- Return a list of Contracts for the given Customer.
577
-
578
- ```
579
- USAGE
580
- $ mw contract listContracts --customer-id <value> [--columns <value> | -x] [--sort <value>] [--filter <value>] [--output
581
- csv|json|yaml | | [--csv | --no-truncate]] [--no-header | ]
582
-
583
- FLAGS
584
- -x, --extended show extra columns
585
- --columns=<value> only show provided columns (comma-separated)
586
- --csv output is csv format [alias: --output=csv]
587
- --customer-id=<value> (required) The uuid of the Customer from whom all Contracts are to be returned.
588
- --filter=<value> filter property by partial string matching, ex: name=foo
589
- --no-header hide table header from output
590
- --no-truncate do not truncate output to fit screen
591
- --output=<option> output in a more machine friendly format
592
- <options: csv|json|yaml>
593
- --sort=<value> property to sort by (prepend '-' for descending)
594
-
595
- DESCRIPTION
596
- Return a list of Contracts for the given Customer.
597
- ```
598
-
599
- ## `mw contract orderGetOrder ORDERID`
600
-
601
- Get Order for Customer.
602
-
603
- ```
604
- USAGE
605
- $ mw contract orderGetOrder ORDERID [--output json|yaml | | ]
606
-
607
- ARGUMENTS
608
- ORDERID undefined
609
-
610
- FLAGS
611
- --output=<option> output in a more machine friendly format
612
- <options: json|yaml>
17
+ #### macOS, using Homebrew
613
18
 
614
- DESCRIPTION
615
- Get Order for Customer.
616
- ```
617
-
618
- ## `mw contract orderListCustomerOrders`
619
-
620
- Get list of Orders of a Customer.
621
-
622
- ```
623
- USAGE
624
- $ mw contract orderListCustomerOrders --customer-id <value> [--columns <value> | -x] [--sort <value>] [--filter <value>] [--output
625
- csv|json|yaml | | [--csv | --no-truncate]] [--no-header | ]
626
-
627
- FLAGS
628
- -x, --extended show extra columns
629
- --columns=<value> only show provided columns (comma-separated)
630
- --csv output is csv format [alias: --output=csv]
631
- --customer-id=<value> (required) undefined
632
- --filter=<value> filter property by partial string matching, ex: name=foo
633
- --no-header hide table header from output
634
- --no-truncate do not truncate output to fit screen
635
- --output=<option> output in a more machine friendly format
636
- <options: csv|json|yaml>
637
- --sort=<value> property to sort by (prepend '-' for descending)
638
-
639
- DESCRIPTION
640
- Get list of Orders of a Customer.
641
- ```
642
-
643
- ## `mw contract orderListProjectOrders`
644
-
645
- Get list of Orders of a Project.
646
-
647
- ```
648
- USAGE
649
- $ mw contract orderListProjectOrders --project-id <value> [--columns <value> | -x] [--sort <value>] [--filter <value>] [--output
650
- csv|json|yaml | | [--csv | --no-truncate]] [--no-header | ]
19
+ Installation using [Homebrew](https://brew.sh/) is the recommended way of
20
+ installation on macOS.
651
21
 
652
- FLAGS
653
- -x, --extended show extra columns
654
- --columns=<value> only show provided columns (comma-separated)
655
- --csv output is csv format [alias: --output=csv]
656
- --filter=<value> filter property by partial string matching, ex: name=foo
657
- --no-header hide table header from output
658
- --no-truncate do not truncate output to fit screen
659
- --output=<option> output in a more machine friendly format
660
- <options: csv|json|yaml>
661
- --project-id=<value> (required) undefined
662
- --sort=<value> property to sort by (prepend '-' for descending)
663
-
664
- DESCRIPTION
665
- Get list of Orders of a Project.
22
+ ```shell
23
+ $ brew tap mittwald/cli
24
+ $ brew install mw
666
25
  ```
667
26
 
668
- ## `mw conversation categories`
27
+ #### Windows, using the Installer
669
28
 
670
- Get all conversation categories.
29
+ Find the appropriate Windows installer from the
30
+ [releases page](https://github.com/mittwald/cli/releases) and run the installer.
31
+ After running the installer, you should be able to use the `mw` command on
32
+ either the CMD prompt or PowerShell.
671
33
 
672
- ```
673
- USAGE
674
- $ mw conversation categories [--columns <value> | -x] [--sort <value>] [--filter <value>] [--output csv|json|yaml | |
675
- [--csv | --no-truncate]] [--no-header | ]
34
+ #### Any OS, using Node.js+NPM
676
35
 
677
- FLAGS
678
- -x, --extended show extra columns
679
- --columns=<value> only show provided columns (comma-separated)
680
- --csv output is csv format [alias: --output=csv]
681
- --filter=<value> filter property by partial string matching, ex: name=foo
682
- --no-header hide table header from output
683
- --no-truncate do not truncate output to fit screen
684
- --output=<option> output in a more machine friendly format
685
- <options: csv|json|yaml>
686
- --sort=<value> property to sort by (prepend '-' for descending)
36
+ Installing the CLI via NPM will work on any OS; however we cannot guarantee
37
+ stability, because functionality of the CLI may depend on the Node.js runtime
38
+ already installed on your system. Also, the automatic upgrade will not work when
39
+ using NPM; remember to run `npm upgrade -g @mittwald/cli` occasionally.
687
40
 
688
- DESCRIPTION
689
- Get all conversation categories.
41
+ ```shell
42
+ $ npm install -g @mittwald/cli
690
43
  ```
691
44
 
692
- ## `mw conversation close ID`
693
-
694
- Close a conversation
695
-
696
- ```
697
- USAGE
698
- $ mw conversation close ID
45
+ #### Any OS, using Docker
699
46
 
700
- ARGUMENTS
701
- ID ID of the conversation to show
47
+ There is also the
48
+ [`mittwald/cli` Docker image](https://hub.docker.com/r/mittwald/cli) that you
49
+ can use instead of installing the CLI on your system. In case of the Docker
50
+ container, authentication works a bit differently than described below: Make
51
+ sure that there is an environment variable `MITTWALD_API_TOKEN` present on your
52
+ system; you can then pass that environment variable into your container:
702
53
 
703
- DESCRIPTION
704
- Close a conversation
54
+ ```shell
55
+ $ export MITTWALD_API_TOKEN=<enter token here>
56
+ $ docker run --rm -it -e MITTWALD_API_TOKEN mittwald/cli help
705
57
  ```
706
58
 
707
- ## `mw conversation create`
708
-
709
- Create a new conversation
710
-
711
- ```
712
- USAGE
713
- $ mw conversation create --title <value> [--message <value> | --message-from <value>] [--editor <value>] [--category
714
- <value>]
59
+ ### Authentication
715
60
 
716
- FLAGS
717
- --category=<value> [default: general] Category of the conversation; use the 'conversation categories' command to
718
- list available categories
719
- --editor=<value> [default: vim] The editor to use when opening the message for editing; will respect your
720
- EDITOR environment variable, and fall back on 'vim' if that is not set.
721
- --message=<value> The body of the message to send; if neither this nor --message-from is given, an editor will
722
- be opened to enter the message.
723
- --message-from=<value> A file from which to read the message to send; may be '-' to read from stdin. If neither this
724
- nor --message is given, an editor will be opened to enter the message.
725
- --title=<value> (required) Title of the conversation
61
+ To use the CLI, you will need an
62
+ [mStudio API token](https://studio.mittwald.de/app/profile/api-tokens). With
63
+ your token in your clipboard, run the `mw login token` command:
726
64
 
727
- DESCRIPTION
728
- Create a new conversation
65
+ ```shell
66
+ $ mw login token
67
+ Enter your mStudio API token: ****************
68
+ token saved to '/Users/mhelmich/.config/mw/token'
729
69
  ```
730
70
 
731
- ## `mw conversation list`
71
+ ### Setting up shell autocompletion
732
72
 
733
- Get all conversation the authenticated user has created or has access to.
73
+ The `mw` CLI offers a lot of commands and flags, and it can be hard to remember
74
+ all of them. To make your life easier, the CLI offers autocompletion for the
75
+ Bash and ZSH shells. To enable autocompletion, run the following command:
734
76
 
77
+ ```shell
78
+ $ mw autocomplete
735
79
  ```
736
- USAGE
737
- $ mw conversation list [--columns <value> | -x] [--sort <value>] [--filter <value>] [--output csv|json|yaml | |
738
- [--csv | --no-truncate]] [--no-header | ]
739
80
 
740
- FLAGS
741
- -x, --extended show extra columns
742
- --columns=<value> only show provided columns (comma-separated)
743
- --csv output is csv format [alias: --output=csv]
744
- --filter=<value> filter property by partial string matching, ex: name=foo
745
- --no-header hide table header from output
746
- --no-truncate do not truncate output to fit screen
747
- --output=<option> output in a more machine friendly format
748
- <options: csv|json|yaml>
749
- --sort=<value> property to sort by (prepend '-' for descending)
81
+ After that, follow the instructions printed by that command (those are specific
82
+ to your shell -- Bash, ZSH and Powershell are supported).
750
83
 
751
- DESCRIPTION
752
- Get all conversation the authenticated user has created or has access to.
753
- ```
84
+ ## Contributing
754
85
 
755
- ## `mw conversation reply ID`
86
+ If you are a developer (either at @mittwald or an external contributor) and want
87
+ to contribute to the CLI, please refer to the [CONTRIBUTING.md](CONTRIBUTING.md)
88
+ document.
756
89
 
757
- Reply to a conversation
90
+ ## Usage
758
91
 
759
- ```
92
+ ```sh-session
93
+ $ npm install -g @mittwald/cli
94
+ $ mw COMMAND
95
+ running command...
96
+ $ mw (--version)
97
+ @mittwald/cli/1.0.0 darwin-arm64 node-v18.11.0
98
+ $ mw --help [COMMAND]
760
99
  USAGE
761
- $ mw conversation reply ID [--message <value> | --message-from <value>] [--editor <value>]
762
-
763
- ARGUMENTS
764
- ID ID of the conversation to show
765
-
766
- FLAGS
767
- --editor=<value> [default: vim] The editor to use when opening the message for editing; will respect your
768
- EDITOR environment variable, and fall back on 'vim' if that is not set.
769
- --message=<value> The body of the message to send; if neither this nor --message-from is given, an editor will
770
- be opened to enter the message.
771
- --message-from=<value> A file from which to read the message to send; may be '-' to read from stdin. If neither this
772
- nor --message is given, an editor will be opened to enter the message.
773
-
774
- DESCRIPTION
775
- Reply to a conversation
776
- ```
777
-
778
- ## `mw conversation show ID`
779
-
780
- Show a conversation and message history
781
-
100
+ $ mw COMMAND
101
+ ...
782
102
  ```
783
- USAGE
784
- $ mw conversation show ID
785
103
 
786
- ARGUMENTS
787
- ID ID of the conversation to show
104
+ <!-- commands -->
105
+ # Command Topics
106
+
107
+ * [`mw app`](docs/app.md) - Manage apps, and app installations in your projects
108
+ * [`mw autocomplete`](docs/autocomplete.md) - Display autocomplete installation instructions.
109
+ * [`mw backup`](docs/backup.md) - Manage backups of your projects
110
+ * [`mw context`](docs/context.md) - Save certain environment parameters for later use
111
+ * [`mw conversation`](docs/conversation.md) - Manage your support cases
112
+ * [`mw cronjob`](docs/cronjob.md) - Manage cronjobs of your projects
113
+ * [`mw database`](docs/database.md) - Manage databases (like MySQL and Redis) in your projects
114
+ * [`mw ddev`](docs/ddev.md) - Integrate your mittwald projects with DDEV
115
+ * [`mw domain`](docs/domain.md) - Manage domains, virtual hosts and DNS settings in your projects
116
+ * [`mw help`](docs/help.md) - Display help for mw.
117
+ * [`mw login`](docs/login.md) - Manage your client authentication
118
+ * [`mw mail`](docs/mail.md) - Manage mailboxes and mail addresses in your projects
119
+ * [`mw org`](docs/org.md) - Manage your organizations, and also any kinds of user memberships concerning these organizations.
120
+ * [`mw project`](docs/project.md) - Manage your projects, and also any kinds of user memberships concerning these projects.
121
+ * [`mw server`](docs/server.md) - Manage your servers
122
+ * [`mw sftp-user`](docs/sftp-user.md) - Manage SFTP users of your projects
123
+ * [`mw ssh-user`](docs/ssh-user.md) - Manage SSH users of your projects
124
+ * [`mw update`](docs/update.md) - update the mw CLI
125
+ * [`mw user`](docs/user.md) - Manage your own user account
788
126
 
789
- DESCRIPTION
790
- Show a conversation and message history
791
- ```
792
-
793
- ## `mw conversation show2 CONVERSATIONID`
794
-
795
- ```
796
- USAGE
797
- $ mw conversation show2 CONVERSATIONID [--wait]
798
-
799
- FLAGS
800
- --wait
801
- ```
802
-
803
- ## `mw database mysql charsets`
804
-
805
- List available MySQL character sets and collations, optionally filtered by a MySQLVersion.
806
-
807
- ```
808
- USAGE
809
- $ mw database mysql charsets [--columns <value> | -x] [--sort <value>] [--filter <value>] [--output csv|json|yaml | |
810
- [--csv | --no-truncate]] [--no-header | ]
811
-
812
- FLAGS
813
- -x, --extended show extra columns
814
- --columns=<value> only show provided columns (comma-separated)
815
- --csv output is csv format [alias: --output=csv]
816
- --filter=<value> filter property by partial string matching, ex: name=foo
817
- --no-header hide table header from output
818
- --no-truncate do not truncate output to fit screen
819
- --output=<option> output in a more machine friendly format
820
- <options: csv|json|yaml>
821
- --sort=<value> property to sort by (prepend '-' for descending)
822
-
823
- DESCRIPTION
824
- List available MySQL character sets and collations, optionally filtered by a MySQLVersion.
825
- ```
826
-
827
- ## `mw database mysql get ID`
828
-
829
- Get a MySQLDatabase.
830
-
831
- ```
832
- USAGE
833
- $ mw database mysql get ID [--output json|yaml | | ]
834
-
835
- ARGUMENTS
836
- ID ID of the MySQLDatabase to be retrieved.
837
-
838
- FLAGS
839
- --output=<option> output in a more machine friendly format
840
- <options: json|yaml>
841
-
842
- DESCRIPTION
843
- Get a MySQLDatabase.
844
- ```
845
-
846
- ## `mw database mysql list`
847
-
848
- List MySQLDatabases belonging to a Project.
849
-
850
- ```
851
- USAGE
852
- $ mw database mysql list --project-id <value> [--columns <value> | -x] [--sort <value>] [--filter <value>] [--output
853
- csv|json|yaml | | [--csv | --no-truncate]] [--no-header | ]
854
-
855
- FLAGS
856
- -x, --extended show extra columns
857
- --columns=<value> only show provided columns (comma-separated)
858
- --csv output is csv format [alias: --output=csv]
859
- --filter=<value> filter property by partial string matching, ex: name=foo
860
- --no-header hide table header from output
861
- --no-truncate do not truncate output to fit screen
862
- --output=<option> output in a more machine friendly format
863
- <options: csv|json|yaml>
864
- --project-id=<value> (required) ID of the Project to list MySQLDatabases for.
865
- --sort=<value> property to sort by (prepend '-' for descending)
866
-
867
- DESCRIPTION
868
- List MySQLDatabases belonging to a Project.
869
- ```
870
-
871
- ## `mw database mysql user get ID`
872
-
873
- Get a MySQLUser.
874
-
875
- ```
876
- USAGE
877
- $ mw database mysql user get ID [--output json|yaml | | ]
878
-
879
- ARGUMENTS
880
- ID ID of the MySQLUser to be retrieved.
881
-
882
- FLAGS
883
- --output=<option> output in a more machine friendly format
884
- <options: json|yaml>
885
-
886
- DESCRIPTION
887
- Get a MySQLUser.
888
- ```
889
-
890
- ## `mw database mysql user getMysqlUserPhpMyAdminUrl`
891
-
892
- Get a MySQLUser's PhpMyAdmin-URL.
893
-
894
- ```
895
- USAGE
896
- $ mw database mysql user getMysqlUserPhpMyAdminUrl --id <value> [--output json|yaml | | ]
897
-
898
- FLAGS
899
- --id=<value> (required) ID of the MySQLUser for which to get the URL for.
900
- --output=<option> output in a more machine friendly format
901
- <options: json|yaml>
902
-
903
- DESCRIPTION
904
- Get a MySQLUser's PhpMyAdmin-URL.
905
- ```
906
-
907
- ## `mw database mysql user list`
908
-
909
- List MySQLUsers belonging to a database.
910
-
911
- ```
912
- USAGE
913
- $ mw database mysql user list --database-id <value> [--columns <value> | -x] [--sort <value>] [--filter <value>] [--output
914
- csv|json|yaml | | [--csv | --no-truncate]] [--no-header | ]
915
-
916
- FLAGS
917
- -x, --extended show extra columns
918
- --columns=<value> only show provided columns (comma-separated)
919
- --csv output is csv format [alias: --output=csv]
920
- --database-id=<value> (required) ID of the MySQLDatabase to list Users for.
921
- --filter=<value> filter property by partial string matching, ex: name=foo
922
- --no-header hide table header from output
923
- --no-truncate do not truncate output to fit screen
924
- --output=<option> output in a more machine friendly format
925
- <options: csv|json|yaml>
926
- --sort=<value> property to sort by (prepend '-' for descending)
927
-
928
- DESCRIPTION
929
- List MySQLUsers belonging to a database.
930
- ```
931
-
932
- ## `mw database mysql versions`
933
-
934
- List available MySQLVersions.
935
-
936
- ```
937
- USAGE
938
- $ mw database mysql versions [--columns <value> | -x] [--sort <value>] [--filter <value>] [--output csv|json|yaml | |
939
- [--csv | --no-truncate]] [--no-header | ]
940
-
941
- FLAGS
942
- -x, --extended show extra columns
943
- --columns=<value> only show provided columns (comma-separated)
944
- --csv output is csv format [alias: --output=csv]
945
- --filter=<value> filter property by partial string matching, ex: name=foo
946
- --no-header hide table header from output
947
- --no-truncate do not truncate output to fit screen
948
- --output=<option> output in a more machine friendly format
949
- <options: csv|json|yaml>
950
- --sort=<value> property to sort by (prepend '-' for descending)
951
-
952
- DESCRIPTION
953
- List available MySQLVersions.
954
- ```
955
-
956
- ## `mw database redis get ID`
957
-
958
- Get a RedisDatabase.
959
-
960
- ```
961
- USAGE
962
- $ mw database redis get ID [--output json|yaml | | ]
963
-
964
- ARGUMENTS
965
- ID ID of the RedisDatabase to retrieve.
966
-
967
- FLAGS
968
- --output=<option> output in a more machine friendly format
969
- <options: json|yaml>
970
-
971
- DESCRIPTION
972
- Get a RedisDatabase.
973
- ```
974
-
975
- ## `mw database redis list`
976
-
977
- List RedisDatabases belonging to a project.
978
-
979
- ```
980
- USAGE
981
- $ mw database redis list --project-id <value> [--columns <value> | -x] [--sort <value>] [--filter <value>] [--output
982
- csv|json|yaml | | [--csv | --no-truncate]] [--no-header | ]
983
-
984
- FLAGS
985
- -x, --extended show extra columns
986
- --columns=<value> only show provided columns (comma-separated)
987
- --csv output is csv format [alias: --output=csv]
988
- --filter=<value> filter property by partial string matching, ex: name=foo
989
- --no-header hide table header from output
990
- --no-truncate do not truncate output to fit screen
991
- --output=<option> output in a more machine friendly format
992
- <options: csv|json|yaml>
993
- --project-id=<value> (required) ID of the Project to list RedisDatabases for.
994
- --sort=<value> property to sort by (prepend '-' for descending)
995
-
996
- DESCRIPTION
997
- List RedisDatabases belonging to a project.
998
- ```
999
-
1000
- ## `mw database redis versions`
1001
-
1002
- List available Redis versions.
1003
-
1004
- ```
1005
- USAGE
1006
- $ mw database redis versions [--columns <value> | -x] [--sort <value>] [--filter <value>] [--output csv|json|yaml | |
1007
- [--csv | --no-truncate]] [--no-header | ]
1008
-
1009
- FLAGS
1010
- -x, --extended show extra columns
1011
- --columns=<value> only show provided columns (comma-separated)
1012
- --csv output is csv format [alias: --output=csv]
1013
- --filter=<value> filter property by partial string matching, ex: name=foo
1014
- --no-header hide table header from output
1015
- --no-truncate do not truncate output to fit screen
1016
- --output=<option> output in a more machine friendly format
1017
- <options: csv|json|yaml>
1018
- --sort=<value> property to sort by (prepend '-' for descending)
1019
-
1020
- DESCRIPTION
1021
- List available Redis versions.
1022
- ```
1023
-
1024
- ## `mw domain dnszone get ZONEID`
1025
-
1026
- gets a specific zone
1027
-
1028
- ```
1029
- USAGE
1030
- $ mw domain dnszone get ZONEID [--output json|yaml | | ]
1031
-
1032
- ARGUMENTS
1033
- ZONEID id of the zone you want to get
1034
-
1035
- FLAGS
1036
- --output=<option> output in a more machine friendly format
1037
- <options: json|yaml>
1038
-
1039
- DESCRIPTION
1040
- gets a specific zone
1041
- ```
1042
-
1043
- ## `mw domain dnszone list`
1044
-
1045
- gets all dns zones by project id
1046
-
1047
- ```
1048
- USAGE
1049
- $ mw domain dnszone list --project-id <value> [--output json|yaml | | ]
1050
-
1051
- FLAGS
1052
- --output=<option> output in a more machine friendly format
1053
- <options: json|yaml>
1054
- --project-id=<value> (required) project you want to get the zones for
1055
-
1056
- DESCRIPTION
1057
- gets all dns zones by project id
1058
- ```
1059
-
1060
- ## `mw domain get DOMAINID`
1061
-
1062
- Get a Domain.
1063
-
1064
- ```
1065
- USAGE
1066
- $ mw domain get DOMAINID [--output json|yaml | | ]
1067
-
1068
- ARGUMENTS
1069
- DOMAINID undefined
1070
-
1071
- FLAGS
1072
- --output=<option> output in a more machine friendly format
1073
- <options: json|yaml>
1074
-
1075
- DESCRIPTION
1076
- Get a Domain.
1077
- ```
1078
-
1079
- ## `mw domain get-handle DOMAINNAME`
1080
-
1081
- Get a HandleSchema.
1082
-
1083
- ```
1084
- USAGE
1085
- $ mw domain get-handle DOMAINNAME [--output json|yaml | | ]
1086
-
1087
- ARGUMENTS
1088
- DOMAINNAME The whole domain name
1089
-
1090
- FLAGS
1091
- --output=<option> output in a more machine friendly format
1092
- <options: json|yaml>
1093
-
1094
- DESCRIPTION
1095
- Get a HandleSchema.
1096
- ```
1097
-
1098
- ## `mw domain list`
1099
-
1100
- List Domains belonging to a Project.
1101
-
1102
- ```
1103
- USAGE
1104
- $ mw domain list --project-id <value> [--columns <value> | -x] [--sort <value>] [--filter <value>] [--output
1105
- csv|json|yaml | | [--csv | --no-truncate]] [--no-header | ]
1106
-
1107
- FLAGS
1108
- -x, --extended show extra columns
1109
- --columns=<value> only show provided columns (comma-separated)
1110
- --csv output is csv format [alias: --output=csv]
1111
- --filter=<value> filter property by partial string matching, ex: name=foo
1112
- --no-header hide table header from output
1113
- --no-truncate do not truncate output to fit screen
1114
- --output=<option> output in a more machine friendly format
1115
- <options: csv|json|yaml>
1116
- --project-id=<value> (required) undefined
1117
- --sort=<value> property to sort by (prepend '-' for descending)
1118
-
1119
- DESCRIPTION
1120
- List Domains belonging to a Project.
1121
- ```
1122
-
1123
- ## `mw domain ownership get DOMAINOWNERSHIPID`
1124
-
1125
- Get a domain ownership.
1126
-
1127
- ```
1128
- USAGE
1129
- $ mw domain ownership get DOMAINOWNERSHIPID [--output json|yaml | | ]
1130
-
1131
- ARGUMENTS
1132
- DOMAINOWNERSHIPID undefined
1133
-
1134
- FLAGS
1135
- --output=<option> output in a more machine friendly format
1136
- <options: json|yaml>
1137
-
1138
- DESCRIPTION
1139
- Get a domain ownership.
1140
- ```
1141
-
1142
- ## `mw domain ownership list`
1143
-
1144
- List all domain ownerships of a project.
1145
-
1146
- ```
1147
- USAGE
1148
- $ mw domain ownership list --project-id <value> [--columns <value> | -x] [--sort <value>] [--filter <value>] [--output
1149
- csv|json|yaml | | [--csv | --no-truncate]] [--no-header | ]
1150
-
1151
- FLAGS
1152
- -x, --extended show extra columns
1153
- --columns=<value> only show provided columns (comma-separated)
1154
- --csv output is csv format [alias: --output=csv]
1155
- --filter=<value> filter property by partial string matching, ex: name=foo
1156
- --no-header hide table header from output
1157
- --no-truncate do not truncate output to fit screen
1158
- --output=<option> output in a more machine friendly format
1159
- <options: csv|json|yaml>
1160
- --project-id=<value> (required) undefined
1161
- --sort=<value> property to sort by (prepend '-' for descending)
1162
-
1163
- DESCRIPTION
1164
- List all domain ownerships of a project.
1165
- ```
1166
-
1167
- ## `mw domain tld get TLD`
1168
-
1169
- Get a toplevel domain.
1170
-
1171
- ```
1172
- USAGE
1173
- $ mw domain tld get TLD [--output json|yaml | | ]
1174
-
1175
- ARGUMENTS
1176
- TLD undefined
1177
-
1178
- FLAGS
1179
- --output=<option> output in a more machine friendly format
1180
- <options: json|yaml>
1181
-
1182
- DESCRIPTION
1183
- Get a toplevel domain.
1184
- ```
1185
-
1186
- ## `mw domain tld list`
1187
-
1188
- List all supported toplevel domains.
1189
-
1190
- ```
1191
- USAGE
1192
- $ mw domain tld list [--columns <value> | -x] [--sort <value>] [--filter <value>] [--output csv|json|yaml | |
1193
- [--csv | --no-truncate]] [--no-header | ]
1194
-
1195
- FLAGS
1196
- -x, --extended show extra columns
1197
- --columns=<value> only show provided columns (comma-separated)
1198
- --csv output is csv format [alias: --output=csv]
1199
- --filter=<value> filter property by partial string matching, ex: name=foo
1200
- --no-header hide table header from output
1201
- --no-truncate do not truncate output to fit screen
1202
- --output=<option> output in a more machine friendly format
1203
- <options: csv|json|yaml>
1204
- --sort=<value> property to sort by (prepend '-' for descending)
1205
-
1206
- DESCRIPTION
1207
- List all supported toplevel domains.
1208
- ```
1209
-
1210
- ## `mw domain virtualhost get INGRESSID`
1211
-
1212
- Get an Ingress.
1213
-
1214
- ```
1215
- USAGE
1216
- $ mw domain virtualhost get INGRESSID [--output json|yaml | | ]
1217
-
1218
- ARGUMENTS
1219
- INGRESSID ID of the Ingress to be retrieved.
1220
-
1221
- FLAGS
1222
- --output=<option> output in a more machine friendly format
1223
- <options: json|yaml>
1224
-
1225
- DESCRIPTION
1226
- Get an Ingress.
1227
- ```
1228
-
1229
- ## `mw domain virtualhost list`
1230
-
1231
- List Ingresses the user has access to.
1232
-
1233
- ```
1234
- USAGE
1235
- $ mw domain virtualhost list [--columns <value> | -x] [--sort <value>] [--filter <value>] [--output csv|json|yaml | |
1236
- [--csv | --no-truncate]] [--no-header | ] [--project-id <value>]
1237
-
1238
- FLAGS
1239
- -x, --extended show extra columns
1240
- --columns=<value> only show provided columns (comma-separated)
1241
- --csv output is csv format [alias: --output=csv]
1242
- --filter=<value> filter property by partial string matching, ex: name=foo
1243
- --no-header hide table header from output
1244
- --no-truncate do not truncate output to fit screen
1245
- --output=<option> output in a more machine friendly format
1246
- <options: csv|json|yaml>
1247
- --project-id=<value> Project ID to filter by; if omitted this will list virtual hosts in all projects you have access
1248
- to.
1249
- --sort=<value> property to sort by (prepend '-' for descending)
1250
-
1251
- DESCRIPTION
1252
- List Ingresses the user has access to.
1253
- ```
1254
-
1255
- ## `mw help [COMMANDS]`
1256
-
1257
- Display help for mw.
1258
-
1259
- ```
1260
- USAGE
1261
- $ mw help [COMMANDS] [-n]
1262
-
1263
- ARGUMENTS
1264
- COMMANDS Command to show help for.
1265
-
1266
- FLAGS
1267
- -n, --nested-commands Include all nested commands in the output.
1268
-
1269
- DESCRIPTION
1270
- Display help for mw.
1271
- ```
1272
-
1273
- _See code: [@oclif/plugin-help](https://github.com/oclif/plugin-help/blob/v5.2.11/src/commands/help.ts)_
1274
-
1275
- ## `mw login status`
1276
-
1277
- Checks your current authentication status
1278
-
1279
- ```
1280
- USAGE
1281
- $ mw login status
1282
-
1283
- DESCRIPTION
1284
- Checks your current authentication status
1285
- ```
1286
-
1287
- ## `mw login token`
1288
-
1289
- Authenticate using an API token
1290
-
1291
- ```
1292
- USAGE
1293
- $ mw login token [-o]
1294
-
1295
- FLAGS
1296
- -o, --overwrite overwrite existing token file
1297
-
1298
- DESCRIPTION
1299
- Authenticate using an API token
1300
- ```
1301
-
1302
- ## `mw mail address create`
1303
-
1304
- Create a new mail address
1305
-
1306
- ```
1307
- USAGE
1308
- $ mw mail address create -p <value> -a <value> [--catch-all] [--enable-spam-protection] [--quota <value>]
1309
-
1310
- FLAGS
1311
- -a, --address=<value> (required) Mail address
1312
- -p, --projectId=<value> (required) Project ID or short ID
1313
- --catch-all Make this a catch-all mail address
1314
- --[no-]enable-spam-protection Enable spam protection for this mailbox
1315
- --quota=<value> [default: 1024] Mailbox quota in mebibytes
1316
-
1317
- DESCRIPTION
1318
- Create a new mail address
1319
- ```
1320
-
1321
- ## `mw mail address delete ID`
1322
-
1323
- Delete a mail address
1324
-
1325
- ```
1326
- USAGE
1327
- $ mw mail address delete ID [--force]
1328
-
1329
- ARGUMENTS
1330
- ID Mail address ID
1331
-
1332
- FLAGS
1333
- --force Do not ask for confirmation
1334
-
1335
- DESCRIPTION
1336
- Delete a mail address
1337
- ```
1338
-
1339
- ## `mw mail address get ID`
1340
-
1341
- Get a specific mail address
1342
-
1343
- ```
1344
- USAGE
1345
- $ mw mail address get ID [--output json|yaml | | ]
1346
-
1347
- ARGUMENTS
1348
- ID id of the address you want to get
1349
-
1350
- FLAGS
1351
- --output=<option> output in a more machine friendly format
1352
- <options: json|yaml>
1353
-
1354
- DESCRIPTION
1355
- Get a specific mail address
1356
- ```
1357
-
1358
- ## `mw mail address list`
1359
-
1360
- Get all mail addresses for a project ID
1361
-
1362
- ```
1363
- USAGE
1364
- $ mw mail address list --project-id <value> [--columns <value> | -x] [--sort <value>] [--filter <value>] [--output
1365
- csv|json|yaml | | [--csv | --no-truncate]] [--no-header | ]
1366
-
1367
- FLAGS
1368
- -x, --extended show extra columns
1369
- --columns=<value> only show provided columns (comma-separated)
1370
- --csv output is csv format [alias: --output=csv]
1371
- --filter=<value> filter property by partial string matching, ex: name=foo
1372
- --no-header hide table header from output
1373
- --no-truncate do not truncate output to fit screen
1374
- --output=<option> output in a more machine friendly format
1375
- <options: csv|json|yaml>
1376
- --project-id=<value> (required) Project ID the mailAddresses are related to
1377
- --sort=<value> property to sort by (prepend '-' for descending)
1378
-
1379
- DESCRIPTION
1380
- Get all mail addresses for a project ID
1381
- ```
1382
-
1383
- ## `mw mail deliverybox get ID`
1384
-
1385
- Get a specific deliverybox
1386
-
1387
- ```
1388
- USAGE
1389
- $ mw mail deliverybox get ID [--output json|yaml | | ]
1390
-
1391
- ARGUMENTS
1392
- ID ID of the deliverybox you want to retrieve
1393
-
1394
- FLAGS
1395
- --output=<option> output in a more machine friendly format
1396
- <options: json|yaml>
1397
-
1398
- DESCRIPTION
1399
- Get a specific deliverybox
1400
- ```
1401
-
1402
- ## `mw mail deliverybox list`
1403
-
1404
- Get all deliveryboxes by project ID
1405
-
1406
- ```
1407
- USAGE
1408
- $ mw mail deliverybox list --project-id <value> [--columns <value> | -x] [--sort <value>] [--filter <value>] [--output
1409
- csv|json|yaml | | [--csv | --no-truncate]] [--no-header | ]
1410
-
1411
- FLAGS
1412
- -x, --extended show extra columns
1413
- --columns=<value> only show provided columns (comma-separated)
1414
- --csv output is csv format [alias: --output=csv]
1415
- --filter=<value> filter property by partial string matching, ex: name=foo
1416
- --no-header hide table header from output
1417
- --no-truncate do not truncate output to fit screen
1418
- --output=<option> output in a more machine friendly format
1419
- <options: csv|json|yaml>
1420
- --project-id=<value> (required) Project ID the deliveryboxes are related to
1421
- --sort=<value> property to sort by (prepend '-' for descending)
1422
-
1423
- DESCRIPTION
1424
- Get all deliveryboxes by project ID
1425
- ```
1426
-
1427
- ## `mw org can-order`
1428
-
1429
- Check if the customer profile has a valid contract partner configured.
1430
-
1431
- ```
1432
- USAGE
1433
- $ mw org can-order --customer-id <value> [--output json|yaml | | ]
1434
-
1435
- FLAGS
1436
- --customer-id=<value> (required) undefined
1437
- --output=<option> output in a more machine friendly format
1438
- <options: json|yaml>
1439
-
1440
- DESCRIPTION
1441
- Check if the customer profile has a valid contract partner configured.
1442
- ```
1443
-
1444
- ## `mw org get CUSTOMERID`
1445
-
1446
- Get a customer profile.
1447
-
1448
- ```
1449
- USAGE
1450
- $ mw org get CUSTOMERID [--output json|yaml | | ]
1451
-
1452
- ARGUMENTS
1453
- CUSTOMERID undefined
1454
-
1455
- FLAGS
1456
- --output=<option> output in a more machine friendly format
1457
- <options: json|yaml>
1458
-
1459
- DESCRIPTION
1460
- Get a customer profile.
1461
- ```
1462
-
1463
- ## `mw org invite get INVITEID`
1464
-
1465
- Get a CustomerInvite.
1466
-
1467
- ```
1468
- USAGE
1469
- $ mw org invite get INVITEID [--output json|yaml | | ]
1470
-
1471
- ARGUMENTS
1472
- INVITEID ID of the CustomerInvite to be retrieved.
1473
-
1474
- FLAGS
1475
- --output=<option> output in a more machine friendly format
1476
- <options: json|yaml>
1477
-
1478
- DESCRIPTION
1479
- Get a CustomerInvite.
1480
- ```
1481
-
1482
- ## `mw org invite list`
1483
-
1484
- List all invites for a Customer.
1485
-
1486
- ```
1487
- USAGE
1488
- $ mw org invite list --customer-id <value> [--columns <value> | -x] [--sort <value>] [--filter <value>] [--output
1489
- csv|json|yaml | | [--csv | --no-truncate]] [--no-header | ]
1490
-
1491
- FLAGS
1492
- -x, --extended show extra columns
1493
- --columns=<value> only show provided columns (comma-separated)
1494
- --csv output is csv format [alias: --output=csv]
1495
- --customer-id=<value> (required) ID of the Customer to list invites for.
1496
- --filter=<value> filter property by partial string matching, ex: name=foo
1497
- --no-header hide table header from output
1498
- --no-truncate do not truncate output to fit screen
1499
- --output=<option> output in a more machine friendly format
1500
- <options: csv|json|yaml>
1501
- --sort=<value> property to sort by (prepend '-' for descending)
1502
-
1503
- DESCRIPTION
1504
- List all invites for a Customer.
1505
- ```
1506
-
1507
- ## `mw org invite list-own`
1508
-
1509
- List all CustomerInvites for the executing user.
1510
-
1511
- ```
1512
- USAGE
1513
- $ mw org invite list-own [--columns <value> | -x] [--sort <value>] [--filter <value>] [--output csv|json|yaml | |
1514
- [--csv | --no-truncate]] [--no-header | ]
1515
-
1516
- FLAGS
1517
- -x, --extended show extra columns
1518
- --columns=<value> only show provided columns (comma-separated)
1519
- --csv output is csv format [alias: --output=csv]
1520
- --filter=<value> filter property by partial string matching, ex: name=foo
1521
- --no-header hide table header from output
1522
- --no-truncate do not truncate output to fit screen
1523
- --output=<option> output in a more machine friendly format
1524
- <options: csv|json|yaml>
1525
- --sort=<value> property to sort by (prepend '-' for descending)
1526
-
1527
- DESCRIPTION
1528
- List all CustomerInvites for the executing user.
1529
- ```
1530
-
1531
- ## `mw org list`
1532
-
1533
- Get all customer profiles the authenticated user has access to.
1534
-
1535
- ```
1536
- USAGE
1537
- $ mw org list [--columns <value> | -x] [--sort <value>] [--filter <value>] [--output csv|json|yaml | |
1538
- [--csv | --no-truncate]] [--no-header | ]
1539
-
1540
- FLAGS
1541
- -x, --extended show extra columns
1542
- --columns=<value> only show provided columns (comma-separated)
1543
- --csv output is csv format [alias: --output=csv]
1544
- --filter=<value> filter property by partial string matching, ex: name=foo
1545
- --no-header hide table header from output
1546
- --no-truncate do not truncate output to fit screen
1547
- --output=<option> output in a more machine friendly format
1548
- <options: csv|json|yaml>
1549
- --sort=<value> property to sort by (prepend '-' for descending)
1550
-
1551
- DESCRIPTION
1552
- Get all customer profiles the authenticated user has access to.
1553
- ```
1554
-
1555
- ## `mw org membership get MEMBERSHIPID`
1556
-
1557
- Get a CustomerMembership.
1558
-
1559
- ```
1560
- USAGE
1561
- $ mw org membership get MEMBERSHIPID [--output json|yaml | | ]
1562
-
1563
- ARGUMENTS
1564
- MEMBERSHIPID ID of the CustomerMembership to retrieve.
1565
-
1566
- FLAGS
1567
- --output=<option> output in a more machine friendly format
1568
- <options: json|yaml>
1569
-
1570
- DESCRIPTION
1571
- Get a CustomerMembership.
1572
- ```
1573
-
1574
- ## `mw org membership list`
1575
-
1576
- List all memberships belonging to a Customer.
1577
-
1578
- ```
1579
- USAGE
1580
- $ mw org membership list --customer-id <value> [--columns <value> | -x] [--sort <value>] [--filter <value>] [--output
1581
- csv|json|yaml | | [--csv | --no-truncate]] [--no-header | ]
1582
-
1583
- FLAGS
1584
- -x, --extended show extra columns
1585
- --columns=<value> only show provided columns (comma-separated)
1586
- --csv output is csv format [alias: --output=csv]
1587
- --customer-id=<value> (required) Customer to list memberships for.
1588
- --filter=<value> filter property by partial string matching, ex: name=foo
1589
- --no-header hide table header from output
1590
- --no-truncate do not truncate output to fit screen
1591
- --output=<option> output in a more machine friendly format
1592
- <options: csv|json|yaml>
1593
- --sort=<value> property to sort by (prepend '-' for descending)
1594
-
1595
- DESCRIPTION
1596
- List all memberships belonging to a Customer.
1597
- ```
1598
-
1599
- ## `mw org membership list-own`
1600
-
1601
- List all CustomerMemberships for the executing user.
1602
-
1603
- ```
1604
- USAGE
1605
- $ mw org membership list-own [--columns <value> | -x] [--sort <value>] [--filter <value>] [--output csv|json|yaml | |
1606
- [--csv | --no-truncate]] [--no-header | ]
1607
-
1608
- FLAGS
1609
- -x, --extended show extra columns
1610
- --columns=<value> only show provided columns (comma-separated)
1611
- --csv output is csv format [alias: --output=csv]
1612
- --filter=<value> filter property by partial string matching, ex: name=foo
1613
- --no-header hide table header from output
1614
- --no-truncate do not truncate output to fit screen
1615
- --output=<option> output in a more machine friendly format
1616
- <options: csv|json|yaml>
1617
- --sort=<value> property to sort by (prepend '-' for descending)
1618
-
1619
- DESCRIPTION
1620
- List all CustomerMemberships for the executing user.
1621
- ```
1622
-
1623
- ## `mw project backup get PROJECTBACKUPID`
1624
-
1625
- Get a ProjectBackup.
1626
-
1627
- ```
1628
- USAGE
1629
- $ mw project backup get PROJECTBACKUPID [--output json|yaml | | ]
1630
-
1631
- ARGUMENTS
1632
- PROJECTBACKUPID ID of the ProjectBackup to retrieve.
1633
-
1634
- FLAGS
1635
- --output=<option> output in a more machine friendly format
1636
- <options: json|yaml>
1637
-
1638
- DESCRIPTION
1639
- Get a ProjectBackup.
1640
- ```
1641
-
1642
- ## `mw project backup list`
1643
-
1644
- List Backups for a given Project.
1645
-
1646
- ```
1647
- USAGE
1648
- $ mw project backup list --project-id <value> [--columns <value> | -x] [--sort <value>] [--filter <value>] [--output
1649
- csv|json|yaml | | [--csv | --no-truncate]] [--no-header | ]
1650
-
1651
- FLAGS
1652
- -x, --extended show extra columns
1653
- --columns=<value> only show provided columns (comma-separated)
1654
- --csv output is csv format [alias: --output=csv]
1655
- --filter=<value> filter property by partial string matching, ex: name=foo
1656
- --no-header hide table header from output
1657
- --no-truncate do not truncate output to fit screen
1658
- --output=<option> output in a more machine friendly format
1659
- <options: csv|json|yaml>
1660
- --project-id=<value> (required) ID of the Project to get Backups for.
1661
- --sort=<value> property to sort by (prepend '-' for descending)
1662
-
1663
- DESCRIPTION
1664
- List Backups for a given Project.
1665
- ```
1666
-
1667
- ## `mw project backupschedule get PROJECTBACKUPSCHEDULEID`
1668
-
1669
- Get a ProjectBackupSchedule.
1670
-
1671
- ```
1672
- USAGE
1673
- $ mw project backupschedule get PROJECTBACKUPSCHEDULEID [--output json|yaml | | ]
1674
-
1675
- ARGUMENTS
1676
- PROJECTBACKUPSCHEDULEID ID of the ProjectBackupSchedule to retrieve.
1677
-
1678
- FLAGS
1679
- --output=<option> output in a more machine friendly format
1680
- <options: json|yaml>
1681
-
1682
- DESCRIPTION
1683
- Get a ProjectBackupSchedule.
1684
- ```
1685
-
1686
- ## `mw project backupschedule list`
1687
-
1688
- List BackupSchedules belonging to a given Project.
1689
-
1690
- ```
1691
- USAGE
1692
- $ mw project backupschedule list --project-id <value> [--columns <value> | -x] [--sort <value>] [--filter <value>] [--output
1693
- csv|json|yaml | | [--csv | --no-truncate]] [--no-header | ]
1694
-
1695
- FLAGS
1696
- -x, --extended show extra columns
1697
- --columns=<value> only show provided columns (comma-separated)
1698
- --csv output is csv format [alias: --output=csv]
1699
- --filter=<value> filter property by partial string matching, ex: name=foo
1700
- --no-header hide table header from output
1701
- --no-truncate do not truncate output to fit screen
1702
- --output=<option> output in a more machine friendly format
1703
- <options: csv|json|yaml>
1704
- --project-id=<value> (required) ID of the Project to list BackupSchedules for.
1705
- --sort=<value> property to sort by (prepend '-' for descending)
1706
-
1707
- DESCRIPTION
1708
- List BackupSchedules belonging to a given Project.
1709
- ```
1710
-
1711
- ## `mw project create`
1712
-
1713
- Get the details of a project
1714
-
1715
- ```
1716
- USAGE
1717
- $ mw project create -s <value> -d <value> [-w]
1718
-
1719
- FLAGS
1720
- -d, --description=<value> (required) A description for the project.
1721
- -s, --server-id=<value> (required) ID of the Server, in which the project is to be created.
1722
- -w, --wait Wait for the project to be ready.
1723
-
1724
- DESCRIPTION
1725
- Get the details of a project
1726
- ```
1727
-
1728
- ## `mw project cronjob execution get EXECUTIONID`
1729
-
1730
- Get a CronjobExecution.
1731
-
1732
- ```
1733
- USAGE
1734
- $ mw project cronjob execution get EXECUTIONID --cronjob-id <value> [--output json|yaml | | ]
1735
-
1736
- ARGUMENTS
1737
- EXECUTIONID ID of the CronjobExecution to be retrieved.
1738
-
1739
- FLAGS
1740
- --cronjob-id=<value> (required) undefined
1741
- --output=<option> output in a more machine friendly format
1742
- <options: json|yaml>
1743
-
1744
- DESCRIPTION
1745
- Get a CronjobExecution.
1746
- ```
1747
-
1748
- ## `mw project cronjob execution list`
1749
-
1750
- List CronjobExecutions belonging to a Cronjob.
1751
-
1752
- ```
1753
- USAGE
1754
- $ mw project cronjob execution list --cronjob-id <value> [--columns <value> | -x] [--sort <value>] [--filter <value>] [--output
1755
- csv|json|yaml | | [--csv | --no-truncate]] [--no-header | ]
1756
-
1757
- FLAGS
1758
- -x, --extended show extra columns
1759
- --columns=<value> only show provided columns (comma-separated)
1760
- --cronjob-id=<value> (required) ID of the Cronjob for which to list CronjobExecutions for.
1761
- --csv output is csv format [alias: --output=csv]
1762
- --filter=<value> filter property by partial string matching, ex: name=foo
1763
- --no-header hide table header from output
1764
- --no-truncate do not truncate output to fit screen
1765
- --output=<option> output in a more machine friendly format
1766
- <options: csv|json|yaml>
1767
- --sort=<value> property to sort by (prepend '-' for descending)
1768
-
1769
- DESCRIPTION
1770
- List CronjobExecutions belonging to a Cronjob.
1771
- ```
1772
-
1773
- ## `mw project cronjob get CRONJOBID`
1774
-
1775
- Get a Cronjob.
1776
-
1777
- ```
1778
- USAGE
1779
- $ mw project cronjob get CRONJOBID [--output json|yaml | | ]
1780
-
1781
- ARGUMENTS
1782
- CRONJOBID ID of the Cronjob to be retrieved.
1783
-
1784
- FLAGS
1785
- --output=<option> output in a more machine friendly format
1786
- <options: json|yaml>
1787
-
1788
- DESCRIPTION
1789
- Get a Cronjob.
1790
- ```
1791
-
1792
- ## `mw project cronjob list`
1793
-
1794
- List Cronjobs belonging to a Project.
1795
-
1796
- ```
1797
- USAGE
1798
- $ mw project cronjob list --project-id <value> [--columns <value> | -x] [--sort <value>] [--filter <value>] [--output
1799
- csv|json|yaml | | [--csv | --no-truncate]] [--no-header | ]
1800
-
1801
- FLAGS
1802
- -x, --extended show extra columns
1803
- --columns=<value> only show provided columns (comma-separated)
1804
- --csv output is csv format [alias: --output=csv]
1805
- --filter=<value> filter property by partial string matching, ex: name=foo
1806
- --no-header hide table header from output
1807
- --no-truncate do not truncate output to fit screen
1808
- --output=<option> output in a more machine friendly format
1809
- <options: csv|json|yaml>
1810
- --project-id=<value> (required) ID of the Project for which to list Cronjobs for.
1811
- --sort=<value> property to sort by (prepend '-' for descending)
1812
-
1813
- DESCRIPTION
1814
- List Cronjobs belonging to a Project.
1815
- ```
1816
-
1817
- ## `mw project delete ID`
1818
-
1819
- Delete a project
1820
-
1821
- ```
1822
- USAGE
1823
- $ mw project delete ID [--force]
1824
-
1825
- ARGUMENTS
1826
- ID ID of the Project to be deleted.
1827
-
1828
- FLAGS
1829
- --force Do not ask for confirmation
1830
-
1831
- DESCRIPTION
1832
- Delete a project
1833
- ```
1834
-
1835
- ## `mw project filesystem directories`
1836
-
1837
- List the directories of a Project.
1838
-
1839
- ```
1840
- USAGE
1841
- $ mw project filesystem directories --project-id <value> [--output json|yaml | | ]
1842
-
1843
- FLAGS
1844
- --output=<option> output in a more machine friendly format
1845
- <options: json|yaml>
1846
- --project-id=<value> (required) ID of the Project to list the directories for.
1847
-
1848
- DESCRIPTION
1849
- List the directories of a Project.
1850
- ```
1851
-
1852
- ## `mw project filesystem file-content`
1853
-
1854
- Get a Project file's content.
1855
-
1856
- ```
1857
- USAGE
1858
- $ mw project filesystem file-content --project-id <value> [--output json|yaml | | ]
1859
-
1860
- FLAGS
1861
- --output=<option> output in a more machine friendly format
1862
- <options: json|yaml>
1863
- --project-id=<value> (required) ID of the Project.
1864
-
1865
- DESCRIPTION
1866
- Get a Project file's content.
1867
- ```
1868
-
1869
- ## `mw project filesystem files PROJECTID`
1870
-
1871
- Get a foooooooo.
1872
-
1873
- ```
1874
- USAGE
1875
- $ mw project filesystem files PROJECTID [--output json|yaml | | ]
1876
-
1877
- ARGUMENTS
1878
- PROJECTID ID of the Project.
1879
-
1880
- FLAGS
1881
- --output=<option> output in a more machine friendly format
1882
- <options: json|yaml>
1883
-
1884
- DESCRIPTION
1885
- Get a foooooooo.
1886
- ```
1887
-
1888
- ## `mw project filesystem usage`
1889
-
1890
- Get a Project directory filesystem usage.
1891
-
1892
- ```
1893
- USAGE
1894
- $ mw project filesystem usage --project-id <value> [--output json|yaml | | ]
1895
-
1896
- FLAGS
1897
- --output=<option> output in a more machine friendly format
1898
- <options: json|yaml>
1899
- --project-id=<value> (required) ID of the Project.
1900
-
1901
- DESCRIPTION
1902
- Get a Project directory filesystem usage.
1903
- ```
1904
-
1905
- ## `mw project get ID`
1906
-
1907
- Get a Project.
1908
-
1909
- ```
1910
- USAGE
1911
- $ mw project get ID [--output json|yaml | | ]
1912
-
1913
- ARGUMENTS
1914
- ID ID of the Project to be retrieved.
1915
-
1916
- FLAGS
1917
- --output=<option> output in a more machine friendly format
1918
- <options: json|yaml>
1919
-
1920
- DESCRIPTION
1921
- Get a Project.
1922
- ```
1923
-
1924
- ## `mw project invite get INVITEID`
1925
-
1926
- Get a ProjectInvite.
1927
-
1928
- ```
1929
- USAGE
1930
- $ mw project invite get INVITEID [--output json|yaml | | ]
1931
-
1932
- ARGUMENTS
1933
- INVITEID ID of the ProjectInvite to be retrieved.
1934
-
1935
- FLAGS
1936
- --output=<option> output in a more machine friendly format
1937
- <options: json|yaml>
1938
-
1939
- DESCRIPTION
1940
- Get a ProjectInvite.
1941
- ```
1942
-
1943
- ## `mw project invite list`
1944
-
1945
- List all invites belonging to a Project.
1946
-
1947
- ```
1948
- USAGE
1949
- $ mw project invite list --project-id <value> [--columns <value> | -x] [--sort <value>] [--filter <value>] [--output
1950
- csv|json|yaml | | [--csv | --no-truncate]] [--no-header | ]
1951
-
1952
- FLAGS
1953
- -x, --extended show extra columns
1954
- --columns=<value> only show provided columns (comma-separated)
1955
- --csv output is csv format [alias: --output=csv]
1956
- --filter=<value> filter property by partial string matching, ex: name=foo
1957
- --no-header hide table header from output
1958
- --no-truncate do not truncate output to fit screen
1959
- --output=<option> output in a more machine friendly format
1960
- <options: csv|json|yaml>
1961
- --project-id=<value> (required) ID of the Project to list invites for.
1962
- --sort=<value> property to sort by (prepend '-' for descending)
1963
-
1964
- DESCRIPTION
1965
- List all invites belonging to a Project.
1966
- ```
1967
-
1968
- ## `mw project invite list-own`
1969
-
1970
- List all ProjectInvites for the executing user.
1971
-
1972
- ```
1973
- USAGE
1974
- $ mw project invite list-own [--columns <value> | -x] [--sort <value>] [--filter <value>] [--output csv|json|yaml | |
1975
- [--csv | --no-truncate]] [--no-header | ]
1976
-
1977
- FLAGS
1978
- -x, --extended show extra columns
1979
- --columns=<value> only show provided columns (comma-separated)
1980
- --csv output is csv format [alias: --output=csv]
1981
- --filter=<value> filter property by partial string matching, ex: name=foo
1982
- --no-header hide table header from output
1983
- --no-truncate do not truncate output to fit screen
1984
- --output=<option> output in a more machine friendly format
1985
- <options: csv|json|yaml>
1986
- --sort=<value> property to sort by (prepend '-' for descending)
1987
-
1988
- DESCRIPTION
1989
- List all ProjectInvites for the executing user.
1990
- ```
1991
-
1992
- ## `mw project list`
1993
-
1994
- List Project's for an Organization or Server.
1995
-
1996
- ```
1997
- USAGE
1998
- $ mw project list [--columns <value> | -x] [--sort <value>] [--filter <value>] [--output csv|json|yaml | |
1999
- [--csv | --no-truncate]] [--no-header | ]
2000
-
2001
- FLAGS
2002
- -x, --extended show extra columns
2003
- --columns=<value> only show provided columns (comma-separated)
2004
- --csv output is csv format [alias: --output=csv]
2005
- --filter=<value> filter property by partial string matching, ex: name=foo
2006
- --no-header hide table header from output
2007
- --no-truncate do not truncate output to fit screen
2008
- --output=<option> output in a more machine friendly format
2009
- <options: csv|json|yaml>
2010
- --sort=<value> property to sort by (prepend '-' for descending)
2011
-
2012
- DESCRIPTION
2013
- List Project's for an Organization or Server.
2014
- ```
2015
-
2016
- ## `mw project list1`
2017
-
2018
- ```
2019
- USAGE
2020
- $ mw project list1 [--columns <value>]
2021
-
2022
- FLAGS
2023
- --columns=<value>...
2024
- ```
2025
-
2026
- ## `mw project list2`
2027
-
2028
- ```
2029
- USAGE
2030
- $ mw project list2 [--wait] [--columns <value>]
2031
-
2032
- FLAGS
2033
- --columns=<value>...
2034
- --wait
2035
- ```
2036
-
2037
- ## `mw project membership get MEMBERSHIPID`
2038
-
2039
- Get a ProjectMembership
2040
-
2041
- ```
2042
- USAGE
2043
- $ mw project membership get MEMBERSHIPID [--output json|yaml | | ]
2044
-
2045
- ARGUMENTS
2046
- MEMBERSHIPID ID of the ProjectMembership to be retrieved.
2047
-
2048
- FLAGS
2049
- --output=<option> output in a more machine friendly format
2050
- <options: json|yaml>
2051
-
2052
- DESCRIPTION
2053
- Get a ProjectMembership
2054
- ```
2055
-
2056
- ## `mw project membership get-own`
2057
-
2058
- Get the executing user's membership in a Project.
2059
-
2060
- ```
2061
- USAGE
2062
- $ mw project membership get-own --project-id <value> [--output json|yaml | | ]
2063
-
2064
- FLAGS
2065
- --output=<option> output in a more machine friendly format
2066
- <options: json|yaml>
2067
- --project-id=<value> (required) ID of the Project to get the membership for.
2068
-
2069
- DESCRIPTION
2070
- Get the executing user's membership in a Project.
2071
- ```
2072
-
2073
- ## `mw project membership list`
2074
-
2075
- List all memberships for a Project.
2076
-
2077
- ```
2078
- USAGE
2079
- $ mw project membership list --project-id <value> [--columns <value> | -x] [--sort <value>] [--filter <value>] [--output
2080
- csv|json|yaml | | [--csv | --no-truncate]] [--no-header | ]
2081
-
2082
- FLAGS
2083
- -x, --extended show extra columns
2084
- --columns=<value> only show provided columns (comma-separated)
2085
- --csv output is csv format [alias: --output=csv]
2086
- --filter=<value> filter property by partial string matching, ex: name=foo
2087
- --no-header hide table header from output
2088
- --no-truncate do not truncate output to fit screen
2089
- --output=<option> output in a more machine friendly format
2090
- <options: csv|json|yaml>
2091
- --project-id=<value> (required) ID of the Project to list memberships for.
2092
- --sort=<value> property to sort by (prepend '-' for descending)
2093
-
2094
- DESCRIPTION
2095
- List all memberships for a Project.
2096
- ```
2097
-
2098
- ## `mw project membership list-own`
2099
-
2100
- List ProjectMemberships belonging to the executing user.
2101
-
2102
- ```
2103
- USAGE
2104
- $ mw project membership list-own [--columns <value> | -x] [--sort <value>] [--filter <value>] [--output csv|json|yaml | |
2105
- [--csv | --no-truncate]] [--no-header | ]
2106
-
2107
- FLAGS
2108
- -x, --extended show extra columns
2109
- --columns=<value> only show provided columns (comma-separated)
2110
- --csv output is csv format [alias: --output=csv]
2111
- --filter=<value> filter property by partial string matching, ex: name=foo
2112
- --no-header hide table header from output
2113
- --no-truncate do not truncate output to fit screen
2114
- --output=<option> output in a more machine friendly format
2115
- <options: csv|json|yaml>
2116
- --sort=<value> property to sort by (prepend '-' for descending)
2117
-
2118
- DESCRIPTION
2119
- List ProjectMemberships belonging to the executing user.
2120
- ```
2121
-
2122
- ## `mw project sftp-user list`
2123
-
2124
- Get all SFTPUsers for a Project.
2125
-
2126
- ```
2127
- USAGE
2128
- $ mw project sftp-user list --project-id <value> [--columns <value> | -x] [--sort <value>] [--filter <value>] [--output
2129
- csv|json|yaml | | [--csv | --no-truncate]] [--no-header | ]
2130
-
2131
- FLAGS
2132
- -x, --extended show extra columns
2133
- --columns=<value> only show provided columns (comma-separated)
2134
- --csv output is csv format [alias: --output=csv]
2135
- --filter=<value> filter property by partial string matching, ex: name=foo
2136
- --no-header hide table header from output
2137
- --no-truncate do not truncate output to fit screen
2138
- --output=<option> output in a more machine friendly format
2139
- <options: csv|json|yaml>
2140
- --project-id=<value> (required) ID of the Project to request SFTPUsers for.
2141
- --sort=<value> property to sort by (prepend '-' for descending)
2142
-
2143
- DESCRIPTION
2144
- Get all SFTPUsers for a Project.
2145
- ```
2146
-
2147
- ## `mw project ssh ID`
2148
-
2149
- Connect to a project via SSH
2150
-
2151
- ```
2152
- USAGE
2153
- $ mw project ssh ID
2154
-
2155
- ARGUMENTS
2156
- ID ID of the Project to be retrieved.
2157
-
2158
- DESCRIPTION
2159
- Connect to a project via SSH
2160
- ```
2161
-
2162
- ## `mw project ssh-user list`
2163
-
2164
- Get all SSHUsers for a Project.
2165
-
2166
- ```
2167
- USAGE
2168
- $ mw project ssh-user list --project-id <value> [--columns <value> | -x] [--sort <value>] [--filter <value>] [--output
2169
- csv|json|yaml | | [--csv | --no-truncate]] [--no-header | ]
2170
-
2171
- FLAGS
2172
- -x, --extended show extra columns
2173
- --columns=<value> only show provided columns (comma-separated)
2174
- --csv output is csv format [alias: --output=csv]
2175
- --filter=<value> filter property by partial string matching, ex: name=foo
2176
- --no-header hide table header from output
2177
- --no-truncate do not truncate output to fit screen
2178
- --output=<option> output in a more machine friendly format
2179
- <options: csv|json|yaml>
2180
- --project-id=<value> (required) ID of the Project to retrieve SSHUsers for.
2181
- --sort=<value> property to sort by (prepend '-' for descending)
2182
-
2183
- DESCRIPTION
2184
- Get all SSHUsers for a Project.
2185
- ```
2186
-
2187
- ## `mw project update ID`
2188
-
2189
- Updates a project
2190
-
2191
- ```
2192
- USAGE
2193
- $ mw project update ID
2194
-
2195
- ARGUMENTS
2196
- ID ID of the Project to be retrieved.
2197
-
2198
- DESCRIPTION
2199
- Updates a project
2200
- ```
2201
-
2202
- ## `mw server get SERVERID`
2203
-
2204
- Get a Server.
2205
-
2206
- ```
2207
- USAGE
2208
- $ mw server get SERVERID [--output json|yaml | | ]
2209
-
2210
- ARGUMENTS
2211
- SERVERID ID of the Server to be retrieved.
2212
-
2213
- FLAGS
2214
- --output=<option> output in a more machine friendly format
2215
- <options: json|yaml>
2216
-
2217
- DESCRIPTION
2218
- Get a Server.
2219
- ```
2220
-
2221
- ## `mw server list`
2222
-
2223
- List Servers for an Organization or User.
2224
-
2225
- ```
2226
- USAGE
2227
- $ mw server list [--columns <value> | -x] [--sort <value>] [--filter <value>] [--output csv|json|yaml | |
2228
- [--csv | --no-truncate]] [--no-header | ]
2229
-
2230
- FLAGS
2231
- -x, --extended show extra columns
2232
- --columns=<value> only show provided columns (comma-separated)
2233
- --csv output is csv format [alias: --output=csv]
2234
- --filter=<value> filter property by partial string matching, ex: name=foo
2235
- --no-header hide table header from output
2236
- --no-truncate do not truncate output to fit screen
2237
- --output=<option> output in a more machine friendly format
2238
- <options: csv|json|yaml>
2239
- --sort=<value> property to sort by (prepend '-' for descending)
2240
-
2241
- DESCRIPTION
2242
- List Servers for an Organization or User.
2243
- ```
2244
-
2245
- ## `mw user api-token create`
2246
-
2247
- Create a new API token
2248
-
2249
- ```
2250
- USAGE
2251
- $ mw user api-token create --description <value> --roles api_read|api_write [--expires-in <value>]
2252
-
2253
- FLAGS
2254
- --description=<value> (required) Description of the API token
2255
- --expires-in=<value> Expiration interval of the API token (example: 30d)
2256
- --roles=<option>... (required) Roles of the API token
2257
- <options: api_read|api_write>
2258
-
2259
- DESCRIPTION
2260
- Create a new API token
2261
- ```
2262
-
2263
- ## `mw user api-token get APITOKENID`
2264
-
2265
- Get a specific ApiToken
2266
-
2267
- ```
2268
- USAGE
2269
- $ mw user api-token get APITOKENID [--output json|yaml | | ]
2270
-
2271
- ARGUMENTS
2272
- APITOKENID The uuid of an ApiToken
2273
-
2274
- FLAGS
2275
- --output=<option> output in a more machine friendly format
2276
- <options: json|yaml>
2277
-
2278
- DESCRIPTION
2279
- Get a specific ApiToken
2280
- ```
2281
-
2282
- ## `mw user api-token list`
2283
-
2284
- List all ApiTokens of the user
2285
-
2286
- ```
2287
- USAGE
2288
- $ mw user api-token list [--columns <value> | -x] [--sort <value>] [--filter <value>] [--output csv|json|yaml | |
2289
- [--csv | --no-truncate]] [--no-header | ]
2290
-
2291
- FLAGS
2292
- -x, --extended show extra columns
2293
- --columns=<value> only show provided columns (comma-separated)
2294
- --csv output is csv format [alias: --output=csv]
2295
- --filter=<value> filter property by partial string matching, ex: name=foo
2296
- --no-header hide table header from output
2297
- --no-truncate do not truncate output to fit screen
2298
- --output=<option> output in a more machine friendly format
2299
- <options: csv|json|yaml>
2300
- --sort=<value> property to sort by (prepend '-' for descending)
2301
-
2302
- DESCRIPTION
2303
- List all ApiTokens of the user
2304
- ```
2305
-
2306
- ## `mw user api-token revoke ID`
2307
-
2308
- Revoke an API token
2309
-
2310
- ```
2311
- USAGE
2312
- $ mw user api-token revoke ID
2313
-
2314
- ARGUMENTS
2315
- ID ID of the API token to revoke
2316
-
2317
- DESCRIPTION
2318
- Revoke an API token
2319
- ```
2320
-
2321
- ## `mw user get`
2322
-
2323
- Get profile information for a user.
2324
-
2325
- ```
2326
- USAGE
2327
- $ mw user get [--output json|yaml | | ]
2328
-
2329
- FLAGS
2330
- --output=<option> output in a more machine friendly format
2331
- <options: json|yaml>
2332
-
2333
- DESCRIPTION
2334
- Get profile information for a user.
2335
- ```
2336
-
2337
- ## `mw user session get TOKENID`
2338
-
2339
- Get a specific Session
2340
-
2341
- ```
2342
- USAGE
2343
- $ mw user session get TOKENID [--output json|yaml | | ]
2344
-
2345
- ARGUMENTS
2346
- TOKENID tokenId to identify the concrete Session
2347
-
2348
- FLAGS
2349
- --output=<option> output in a more machine friendly format
2350
- <options: json|yaml>
2351
-
2352
- DESCRIPTION
2353
- Get a specific Session
2354
- ```
2355
-
2356
- ## `mw user session list`
2357
-
2358
- List all active sessions
2359
-
2360
- ```
2361
- USAGE
2362
- $ mw user session list [--columns <value> | -x] [--sort <value>] [--filter <value>] [--output csv|json|yaml | |
2363
- [--csv | --no-truncate]] [--no-header | ]
2364
-
2365
- FLAGS
2366
- -x, --extended show extra columns
2367
- --columns=<value> only show provided columns (comma-separated)
2368
- --csv output is csv format [alias: --output=csv]
2369
- --filter=<value> filter property by partial string matching, ex: name=foo
2370
- --no-header hide table header from output
2371
- --no-truncate do not truncate output to fit screen
2372
- --output=<option> output in a more machine friendly format
2373
- <options: csv|json|yaml>
2374
- --sort=<value> property to sort by (prepend '-' for descending)
2375
-
2376
- DESCRIPTION
2377
- List all active sessions
2378
- ```
2379
-
2380
- ## `mw user ssh-key create`
2381
-
2382
- Create and import a new SSH key
2383
-
2384
- ```
2385
- USAGE
2386
- $ mw user ssh-key create [--no-passphrase] [--comment <value>] [--expiresAt <value>]
2387
-
2388
- FLAGS
2389
- --comment=<value> A comment for the SSH key.
2390
- --expiresAt=<value> Duration after which the SSH key should expire (example: '1y').
2391
- --no-passphrase Use this flag to not set a passphrase for the SSH key.
2392
-
2393
- DESCRIPTION
2394
- Create and import a new SSH key
2395
- ```
2396
-
2397
- ## `mw user ssh-key delete ID`
2398
-
2399
- Delete an SSH key
2400
-
2401
- ```
2402
- USAGE
2403
- $ mw user ssh-key delete ID [-f]
2404
-
2405
- ARGUMENTS
2406
- ID ID of the SSH key to be deleted.
2407
-
2408
- FLAGS
2409
- -f, --force delete without prompting for confirmation
2410
-
2411
- DESCRIPTION
2412
- Delete an SSH key
2413
- ```
2414
-
2415
- ## `mw user ssh-key get SSHKEYID`
2416
-
2417
- Get a specific stored SshKey
2418
-
2419
- ```
2420
- USAGE
2421
- $ mw user ssh-key get SSHKEYID [--output json|yaml | | ]
2422
-
2423
- ARGUMENTS
2424
- SSHKEYID undefined
2425
-
2426
- FLAGS
2427
- --output=<option> output in a more machine friendly format
2428
- <options: json|yaml>
2429
-
2430
- DESCRIPTION
2431
- Get a specific stored SshKey
2432
- ```
2433
-
2434
- ## `mw user ssh-key list`
2435
-
2436
- Get your stored ssh keys
2437
-
2438
- ```
2439
- USAGE
2440
- $ mw user ssh-key list [--columns <value> | -x] [--sort <value>] [--filter <value>] [--output csv|json|yaml | |
2441
- [--csv | --no-truncate]] [--no-header | ]
2442
-
2443
- FLAGS
2444
- -x, --extended show extra columns
2445
- --columns=<value> only show provided columns (comma-separated)
2446
- --csv output is csv format [alias: --output=csv]
2447
- --filter=<value> filter property by partial string matching, ex: name=foo
2448
- --no-header hide table header from output
2449
- --no-truncate do not truncate output to fit screen
2450
- --output=<option> output in a more machine friendly format
2451
- <options: csv|json|yaml>
2452
- --sort=<value> property to sort by (prepend '-' for descending)
2453
-
2454
- DESCRIPTION
2455
- Get your stored ssh keys
2456
- ```
2457
127
  <!-- commandsstop -->