@mittwald/cli 1.0.0-alpha.9 → 1.0.0-beta.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +83 -2425
- package/bin/dev.cmd +1 -1
- package/bin/dev.js +5 -0
- package/bin/run.js +1 -1
- package/dist/commands/app/copy.d.ts +18 -0
- package/dist/commands/app/copy.js +40 -0
- package/dist/commands/app/create/node.d.ts +12 -0
- package/dist/commands/app/create/node.js +16 -0
- package/dist/commands/app/create/php.d.ts +12 -0
- package/dist/commands/app/create/php.js +13 -0
- package/dist/commands/app/create/python.d.ts +12 -0
- package/dist/commands/app/create/python.js +13 -0
- package/dist/commands/app/create/static.d.ts +12 -0
- package/dist/commands/app/create/static.js +13 -0
- package/dist/commands/app/dependency/list.d.ts +22 -0
- package/dist/commands/app/dependency/list.js +24 -0
- package/dist/commands/app/dependency/update.d.ts +20 -0
- package/dist/commands/app/dependency/update.js +104 -0
- package/dist/commands/app/dependency/versions.d.ts +24 -0
- package/dist/commands/app/dependency/versions.js +36 -0
- package/dist/commands/app/download.d.ts +20 -0
- package/dist/commands/app/download.js +60 -0
- package/dist/commands/app/get.d.ts +12 -0
- package/dist/commands/app/get.js +21 -0
- package/dist/commands/app/install/contao.d.ts +11 -0
- package/dist/commands/app/install/contao.js +23 -0
- package/dist/commands/app/install/drupal.d.ts +12 -0
- package/dist/commands/app/install/drupal.js +20 -0
- package/dist/commands/app/install/grav.d.ts +11 -0
- package/dist/commands/app/install/grav.js +21 -0
- package/dist/commands/app/install/humhub.d.ts +12 -0
- package/dist/commands/app/install/humhub.js +22 -0
- package/dist/commands/app/install/joomla.d.ts +11 -0
- package/dist/commands/app/install/joomla.js +22 -0
- package/dist/commands/app/install/magento2.d.ts +12 -0
- package/dist/commands/app/install/magento2.js +27 -0
- package/dist/commands/app/install/matomo.d.ts +11 -0
- package/dist/commands/app/install/matomo.js +20 -0
- package/dist/commands/app/install/moodle.d.ts +12 -0
- package/dist/commands/app/install/moodle.js +20 -0
- package/dist/commands/app/install/neos.d.ts +12 -0
- package/dist/commands/app/install/neos.js +20 -0
- package/dist/commands/app/install/nextcloud.d.ts +11 -0
- package/dist/commands/app/install/nextcloud.js +20 -0
- package/dist/commands/app/install/prestashop.d.ts +12 -0
- package/dist/commands/app/install/prestashop.js +22 -0
- package/dist/commands/app/install/shopware5.d.ts +11 -0
- package/dist/commands/app/install/shopware5.js +25 -0
- package/dist/commands/app/install/shopware6.d.ts +12 -0
- package/dist/commands/app/install/shopware6.js +25 -0
- package/dist/commands/app/install/typo3.d.ts +12 -0
- package/dist/commands/app/install/typo3.js +21 -0
- package/dist/commands/app/install/wordpress.d.ts +12 -0
- package/dist/commands/app/install/wordpress.js +20 -0
- package/dist/commands/app/list-upgrade-candidates.d.ts +24 -0
- package/dist/commands/app/list-upgrade-candidates.js +37 -0
- package/dist/commands/app/list.d.ts +31 -0
- package/dist/commands/app/list.js +79 -0
- package/dist/commands/app/ssh.d.ts +16 -0
- package/dist/commands/app/ssh.js +61 -0
- package/dist/commands/app/uninstall.d.ts +9 -0
- package/dist/commands/app/uninstall.js +17 -0
- package/dist/commands/app/update.d.ts +16 -0
- package/dist/commands/app/update.js +80 -0
- package/dist/commands/app/upgrade.d.ts +18 -0
- package/dist/commands/app/upgrade.js +172 -0
- package/dist/commands/app/upload.d.ts +20 -0
- package/dist/commands/app/upload.js +63 -0
- package/dist/commands/app/versions.d.ts +12 -0
- package/dist/commands/app/versions.js +44 -0
- package/dist/commands/backup/create.d.ts +21 -0
- package/dist/commands/backup/create.js +60 -0
- package/dist/commands/backup/delete.d.ts +15 -0
- package/dist/commands/backup/delete.js +18 -0
- package/dist/commands/backup/download.d.ts +29 -0
- package/dist/commands/backup/download.js +174 -0
- package/dist/commands/backup/get.d.ts +14 -0
- package/dist/commands/backup/get.js +26 -0
- package/dist/commands/backup/list.d.ts +25 -0
- package/dist/commands/backup/list.js +36 -0
- package/dist/commands/backup/schedule/create.d.ts +18 -0
- package/dist/commands/backup/schedule/create.js +57 -0
- package/dist/commands/backup/schedule/delete.d.ts +12 -0
- package/dist/commands/backup/schedule/delete.js +32 -0
- package/dist/commands/backup/schedule/list.d.ts +25 -0
- package/dist/commands/backup/schedule/list.js +28 -0
- package/dist/commands/backup/schedule/update.d.ts +18 -0
- package/dist/commands/backup/schedule/update.js +55 -0
- package/dist/commands/context/get.d.ts +10 -0
- package/dist/commands/context/get.js +74 -0
- package/dist/commands/context/reset.d.ts +6 -0
- package/dist/commands/context/reset.js +9 -0
- package/dist/commands/context/set.d.ts +12 -0
- package/dist/commands/context/set.js +42 -0
- package/dist/commands/conversation/categories.d.ts +21 -0
- package/dist/commands/conversation/categories.js +21 -0
- package/dist/commands/conversation/close.d.ts +8 -0
- package/dist/commands/conversation/close.js +20 -0
- package/dist/commands/conversation/create.d.ts +13 -0
- package/dist/commands/conversation/create.js +50 -0
- package/dist/commands/conversation/list.d.ts +21 -0
- package/dist/commands/conversation/list.js +33 -0
- package/dist/commands/conversation/reply.d.ts +13 -0
- package/dist/commands/conversation/reply.js +25 -0
- package/dist/commands/conversation/show.d.ts +9 -0
- package/dist/commands/conversation/show.js +97 -0
- package/dist/commands/conversation/show.test.js +100 -0
- package/dist/commands/cronjob/create.d.ts +24 -0
- package/dist/commands/cronjob/create.js +88 -0
- package/dist/commands/cronjob/delete.d.ts +13 -0
- package/dist/commands/cronjob/delete.js +21 -0
- package/dist/commands/cronjob/execute.d.ts +17 -0
- package/dist/commands/cronjob/execute.js +42 -0
- package/dist/commands/cronjob/execution/abort.d.ts +18 -0
- package/dist/commands/cronjob/execution/abort.js +41 -0
- package/dist/commands/cronjob/execution/get.d.ts +17 -0
- package/dist/commands/cronjob/execution/get.js +26 -0
- package/dist/commands/cronjob/execution/list.d.ts +24 -0
- package/dist/commands/cronjob/execution/list.js +39 -0
- package/dist/commands/cronjob/execution/logs.d.ts +17 -0
- package/dist/commands/cronjob/execution/logs.js +77 -0
- package/dist/commands/cronjob/get.d.ts +14 -0
- package/dist/commands/cronjob/get.js +30 -0
- package/dist/commands/cronjob/list.d.ts +25 -0
- package/dist/commands/cronjob/list.js +40 -0
- package/dist/commands/cronjob/update.d.ts +25 -0
- package/dist/commands/cronjob/update.js +84 -0
- package/dist/commands/database/mysql/charsets.d.ts +22 -0
- package/dist/commands/database/mysql/charsets.js +20 -0
- package/dist/commands/database/mysql/create.d.ts +25 -0
- package/dist/commands/database/mysql/create.js +108 -0
- package/dist/commands/database/mysql/create.test.js +117 -0
- package/dist/commands/database/mysql/delete.d.ts +13 -0
- package/dist/commands/database/mysql/delete.js +16 -0
- package/dist/commands/database/mysql/dump.d.ts +21 -0
- package/dist/commands/database/mysql/dump.js +72 -0
- package/dist/commands/database/mysql/get.d.ts +15 -0
- package/dist/commands/database/mysql/get.js +15 -0
- package/dist/commands/database/mysql/import.d.ts +21 -0
- package/dist/commands/database/mysql/import.js +72 -0
- package/dist/commands/database/mysql/list.d.ts +22 -0
- package/dist/commands/database/mysql/list.js +54 -0
- package/dist/commands/database/mysql/phpmyadmin.d.ts +8 -0
- package/dist/commands/database/mysql/phpmyadmin.js +25 -0
- package/dist/commands/database/mysql/port-forward.d.ts +17 -0
- package/dist/commands/database/mysql/port-forward.js +44 -0
- package/dist/commands/database/mysql/shell.d.ts +17 -0
- package/dist/commands/database/mysql/shell.js +38 -0
- package/dist/commands/database/mysql/user/create.d.ts +20 -0
- package/dist/commands/database/mysql/user/create.js +67 -0
- package/dist/commands/database/mysql/user/delete.d.ts +13 -0
- package/dist/commands/database/mysql/user/delete.js +30 -0
- package/dist/commands/database/mysql/user/get.d.ts +14 -0
- package/dist/commands/database/mysql/user/get.js +19 -0
- package/dist/commands/database/mysql/user/list.d.ts +22 -0
- package/dist/commands/database/mysql/user/list.js +44 -0
- package/dist/commands/database/mysql/user/update.d.ts +21 -0
- package/dist/commands/database/mysql/user/update.js +111 -0
- package/dist/commands/database/mysql/versions.d.ts +21 -0
- package/dist/commands/database/mysql/versions.js +18 -0
- package/dist/commands/database/redis/create.d.ts +20 -0
- package/dist/commands/database/redis/create.js +83 -0
- package/dist/commands/database/redis/get.d.ts +14 -0
- package/dist/commands/database/redis/get.js +19 -0
- package/dist/commands/database/redis/list.d.ts +22 -0
- package/dist/commands/database/redis/list.js +27 -0
- package/dist/commands/database/redis/shell.d.ts +16 -0
- package/dist/commands/database/redis/shell.js +37 -0
- package/dist/commands/database/redis/versions.d.ts +22 -0
- package/dist/commands/database/redis/versions.js +23 -0
- package/dist/commands/ddev/init.d.ts +34 -0
- package/dist/commands/ddev/init.js +179 -0
- package/dist/commands/ddev/render-config.d.ts +14 -0
- package/dist/commands/ddev/render-config.js +25 -0
- package/dist/commands/domain/dnszone/get.d.ts +17 -0
- package/dist/commands/domain/dnszone/get.js +32 -0
- package/dist/commands/domain/dnszone/list.d.ts +22 -0
- package/dist/commands/domain/dnszone/list.js +68 -0
- package/dist/commands/domain/dnszone/update.d.ts +28 -0
- package/dist/commands/domain/dnszone/update.js +176 -0
- package/dist/commands/domain/get.d.ts +17 -0
- package/dist/commands/domain/get.js +32 -0
- package/dist/commands/domain/list.d.ts +22 -0
- package/dist/commands/domain/list.js +40 -0
- package/dist/commands/domain/virtualhost/create.d.ts +25 -0
- package/dist/commands/domain/virtualhost/create.js +106 -0
- package/dist/commands/domain/virtualhost/delete.d.ts +13 -0
- package/dist/commands/domain/virtualhost/delete.js +21 -0
- package/dist/commands/domain/virtualhost/get.d.ts +14 -0
- package/dist/commands/domain/virtualhost/get.js +74 -0
- package/dist/commands/domain/virtualhost/list.d.ts +23 -0
- package/dist/commands/domain/virtualhost/list.js +65 -0
- package/dist/commands/login/reset.d.ts +12 -0
- package/dist/commands/login/reset.js +42 -0
- package/dist/commands/login/status.d.ts +5 -0
- package/dist/commands/login/status.js +23 -0
- package/dist/commands/login/token.d.ts +13 -0
- package/dist/commands/login/token.js +49 -0
- package/dist/commands/mail/address/create.d.ts +34 -0
- package/dist/commands/mail/address/create.js +158 -0
- package/dist/commands/mail/address/delete.d.ts +13 -0
- package/dist/commands/mail/address/delete.js +22 -0
- package/dist/commands/mail/address/get.d.ts +16 -0
- package/dist/commands/mail/address/get.js +22 -0
- package/dist/commands/mail/address/list.d.ts +22 -0
- package/dist/commands/mail/address/list.js +50 -0
- package/dist/commands/mail/address/update.d.ts +35 -0
- package/dist/commands/mail/address/update.js +167 -0
- package/dist/commands/mail/deliverybox/create.d.ts +28 -0
- package/dist/commands/mail/deliverybox/create.js +91 -0
- package/dist/commands/mail/deliverybox/delete.d.ts +13 -0
- package/dist/commands/mail/deliverybox/delete.js +22 -0
- package/dist/commands/mail/deliverybox/get.d.ts +16 -0
- package/dist/commands/mail/deliverybox/get.js +22 -0
- package/dist/commands/mail/deliverybox/list.d.ts +23 -0
- package/dist/commands/mail/deliverybox/list.js +27 -0
- package/dist/commands/mail/deliverybox/update.d.ts +28 -0
- package/dist/commands/mail/deliverybox/update.js +91 -0
- package/dist/commands/org/delete.d.ts +13 -0
- package/dist/commands/org/delete.js +16 -0
- package/dist/commands/org/get.d.ts +14 -0
- package/dist/commands/org/get.js +52 -0
- package/dist/commands/org/invite/list-own.d.ts +57 -0
- package/dist/commands/org/invite/list-own.js +39 -0
- package/dist/commands/org/invite/list.d.ts +22 -0
- package/dist/commands/org/invite/list.js +33 -0
- package/dist/commands/org/invite/revoke.d.ts +17 -0
- package/dist/commands/org/invite/revoke.js +39 -0
- package/dist/commands/org/invite.d.ts +21 -0
- package/dist/commands/org/invite.js +53 -0
- package/dist/commands/org/list.d.ts +23 -0
- package/dist/commands/org/list.js +41 -0
- package/dist/commands/org/membership/list-own.d.ts +57 -0
- package/dist/commands/org/membership/list-own.js +39 -0
- package/dist/commands/org/membership/list.d.ts +56 -0
- package/dist/commands/org/membership/list.js +44 -0
- package/dist/commands/org/membership/revoke.d.ts +17 -0
- package/dist/commands/org/membership/revoke.js +43 -0
- package/dist/commands/project/create.d.ts +21 -0
- package/dist/commands/project/create.js +66 -0
- package/dist/commands/project/delete.d.ts +13 -0
- package/dist/commands/project/delete.js +16 -0
- package/dist/commands/project/filesystem/usage.d.ts +14 -0
- package/dist/commands/project/filesystem/usage.js +58 -0
- package/dist/commands/project/get.d.ts +14 -0
- package/dist/commands/project/get.js +82 -0
- package/dist/commands/project/invite/get.d.ts +14 -0
- package/dist/commands/project/invite/get.js +19 -0
- package/dist/commands/project/invite/list-own.d.ts +21 -0
- package/dist/commands/project/invite/list-own.js +34 -0
- package/dist/commands/project/invite/list.d.ts +22 -0
- package/dist/commands/project/invite/list.js +35 -0
- package/dist/commands/project/list.d.ts +21 -0
- package/dist/commands/project/list.js +36 -0
- package/dist/commands/project/membership/get-own.d.ts +12 -0
- package/dist/commands/project/membership/get-own.js +16 -0
- package/dist/commands/project/membership/get.d.ts +14 -0
- package/dist/commands/project/membership/get.js +19 -0
- package/dist/commands/project/membership/list-own.d.ts +21 -0
- package/dist/commands/project/membership/list-own.js +31 -0
- package/dist/commands/project/membership/list.d.ts +39 -0
- package/dist/commands/project/membership/list.js +54 -0
- package/dist/commands/project/ssh.d.ts +13 -0
- package/dist/commands/project/ssh.js +23 -0
- package/dist/commands/project/update.d.ts +17 -0
- package/dist/commands/project/update.js +41 -0
- package/dist/commands/server/get.d.ts +14 -0
- package/dist/commands/server/get.js +15 -0
- package/dist/commands/server/list.d.ts +21 -0
- package/dist/commands/server/list.js +46 -0
- package/dist/commands/sftp-user/create.d.ts +21 -0
- package/dist/commands/sftp-user/create.js +79 -0
- package/dist/commands/sftp-user/delete.d.ts +13 -0
- package/dist/commands/sftp-user/delete.js +21 -0
- package/dist/commands/sftp-user/list.d.ts +24 -0
- package/dist/commands/sftp-user/list.js +30 -0
- package/dist/commands/sftp-user/update.d.ts +23 -0
- package/dist/commands/sftp-user/update.js +96 -0
- package/dist/commands/ssh-user/create.d.ts +19 -0
- package/dist/commands/ssh-user/create.js +66 -0
- package/dist/commands/ssh-user/delete.d.ts +13 -0
- package/dist/commands/ssh-user/delete.js +21 -0
- package/dist/commands/ssh-user/list.d.ts +24 -0
- package/dist/commands/ssh-user/list.js +28 -0
- package/dist/commands/ssh-user/update.d.ts +21 -0
- package/dist/commands/ssh-user/update.js +85 -0
- package/dist/commands/user/api-token/create.d.ts +16 -0
- package/dist/commands/user/api-token/create.js +53 -0
- package/dist/commands/user/api-token/get.d.ts +14 -0
- package/dist/commands/user/api-token/get.js +19 -0
- package/dist/commands/user/api-token/list.d.ts +21 -0
- package/dist/commands/user/api-token/list.js +27 -0
- package/dist/commands/user/api-token/revoke.d.ts +13 -0
- package/dist/commands/user/api-token/revoke.js +21 -0
- package/dist/commands/user/get.d.ts +15 -0
- package/dist/commands/user/get.js +20 -0
- package/dist/commands/user/session/get.d.ts +14 -0
- package/dist/commands/user/session/get.js +19 -0
- package/dist/commands/user/session/list.d.ts +21 -0
- package/dist/commands/user/session/list.js +32 -0
- package/dist/commands/user/ssh-key/create.d.ts +14 -0
- package/dist/commands/user/ssh-key/create.js +69 -0
- package/dist/commands/user/ssh-key/delete.d.ts +13 -0
- package/dist/commands/user/ssh-key/delete.js +22 -0
- package/dist/commands/user/ssh-key/get.d.ts +14 -0
- package/dist/commands/user/ssh-key/get.js +19 -0
- package/dist/commands/user/ssh-key/import.d.ts +11 -0
- package/dist/commands/user/ssh-key/import.js +56 -0
- package/dist/commands/user/ssh-key/list.d.ts +23 -0
- package/dist/commands/user/ssh-key/list.js +26 -0
- package/dist/lib/apiutil/SuccessfulResponse.d.ts +19 -0
- package/dist/lib/apiutil/SuccessfulResponse.js +1 -0
- package/dist/lib/apiutil/api_consistency.d.ts +2 -0
- package/dist/lib/apiutil/api_consistency.js +27 -0
- package/dist/lib/apiutil/api_logging.d.ts +8 -0
- package/dist/lib/apiutil/api_logging.js +20 -0
- package/dist/lib/apiutil/api_retry.d.ts +2 -0
- package/dist/lib/apiutil/api_retry.js +43 -0
- package/dist/lib/apiutil/assert_success.d.ts +3 -0
- package/dist/lib/apiutil/assert_success.js +7 -0
- package/dist/lib/auth/token.d.ts +13 -0
- package/dist/lib/auth/token.js +44 -0
- package/dist/lib/basecommands/BaseCommand.d.ts +7 -0
- package/dist/lib/basecommands/BaseCommand.js +25 -0
- package/dist/lib/basecommands/CommandFlags.d.ts +6 -0
- package/dist/lib/basecommands/CommandFlags.js +1 -0
- package/dist/lib/basecommands/DeleteBaseCommand.d.ts +12 -0
- package/dist/lib/basecommands/DeleteBaseCommand.js +43 -0
- package/dist/lib/basecommands/ExecRenderBaseCommand.d.ts +8 -0
- package/dist/lib/basecommands/ExecRenderBaseCommand.js +25 -0
- package/dist/lib/basecommands/ExtendedBaseCommand.d.ts +11 -0
- package/dist/lib/basecommands/ExtendedBaseCommand.js +28 -0
- package/dist/lib/basecommands/GetBaseCommand.d.ts +16 -0
- package/dist/lib/basecommands/GetBaseCommand.js +25 -0
- package/dist/lib/basecommands/ListBaseCommand.d.ts +30 -0
- package/dist/lib/basecommands/ListBaseCommand.js +73 -0
- package/dist/lib/basecommands/RenderBaseCommand.d.ts +22 -0
- package/dist/lib/basecommands/RenderBaseCommand.js +62 -0
- package/dist/lib/context/Context.d.ts +37 -0
- package/dist/lib/context/Context.js +65 -0
- package/dist/lib/context/ContextProvider.d.ts +6 -0
- package/dist/lib/context/ContextProvider.js +1 -0
- package/dist/lib/context/DDEVContextProvider.d.ts +21 -0
- package/dist/lib/context/DDEVContextProvider.js +81 -0
- package/dist/lib/context/FlagSet.d.ts +23 -0
- package/dist/lib/context/FlagSet.js +1 -0
- package/dist/lib/context/FlagSetBuilder.d.ts +65 -0
- package/dist/lib/context/FlagSetBuilder.js +148 -0
- package/dist/lib/context/TerraformContextProvider.d.ts +7 -0
- package/dist/lib/context/TerraformContextProvider.js +55 -0
- package/dist/lib/context/UserContextProvider.d.ts +13 -0
- package/dist/lib/context/UserContextProvider.js +54 -0
- package/dist/lib/context/WritableContextProvider.d.ts +14 -0
- package/dist/lib/context/WritableContextProvider.js +1 -0
- package/dist/lib/ddev/config.d.ts +41 -0
- package/dist/lib/ddev/config.js +28 -0
- package/dist/lib/ddev/config_builder.d.ts +18 -0
- package/dist/lib/ddev/config_builder.js +138 -0
- package/dist/lib/ddev/config_loader.d.ts +2 -0
- package/dist/lib/ddev/config_loader.js +13 -0
- package/dist/lib/ddev/config_render.d.ts +2 -0
- package/dist/lib/ddev/config_render.js +6 -0
- package/dist/lib/ddev/flags.d.ts +12 -0
- package/dist/lib/ddev/flags.js +29 -0
- package/dist/lib/ddev/init_assert.d.ts +3 -0
- package/dist/lib/ddev/init_assert.js +22 -0
- package/dist/lib/ddev/init_database.d.ts +19 -0
- package/dist/lib/ddev/init_database.js +59 -0
- package/dist/lib/ddev/init_projecttype.d.ts +32 -0
- package/dist/lib/ddev/init_projecttype.js +102 -0
- package/dist/lib/error/InteractiveInputRequiredError.d.ts +7 -0
- package/dist/lib/error/InteractiveInputRequiredError.js +11 -0
- package/dist/lib/error/UnexpectedShortIDPassedError.d.ts +5 -0
- package/dist/lib/error/UnexpectedShortIDPassedError.js +10 -0
- package/dist/lib/error/handleError.d.ts +11 -0
- package/dist/lib/error/handleError.js +21 -0
- package/dist/lib/flags/expireFlags.d.ts +7 -0
- package/dist/lib/flags/expireFlags.js +18 -0
- package/dist/lib/resources/app/Installer.d.ts +27 -0
- package/dist/lib/resources/app/Installer.js +56 -0
- package/dist/lib/resources/app/custom_installation.d.ts +7 -0
- package/dist/lib/resources/app/custom_installation.js +16 -0
- package/dist/lib/resources/app/flags.d.ts +34 -0
- package/dist/lib/resources/app/flags.js +236 -0
- package/dist/lib/resources/app/hooks.d.ts +12 -0
- package/dist/lib/resources/app/hooks.js +43 -0
- package/dist/lib/resources/app/install.d.ts +10 -0
- package/dist/lib/resources/app/install.js +42 -0
- package/dist/lib/resources/app/sync.d.ts +15 -0
- package/dist/lib/resources/app/sync.js +55 -0
- package/dist/lib/resources/app/upgrade.d.ts +1 -0
- package/dist/lib/resources/app/upgrade.js +1 -0
- package/dist/lib/resources/app/uuid.d.ts +49 -0
- package/dist/lib/resources/app/uuid.js +86 -0
- package/dist/lib/resources/app/versions.d.ts +11 -0
- package/dist/lib/resources/app/versions.js +85 -0
- package/dist/lib/resources/app/wait.d.ts +4 -0
- package/dist/lib/resources/app/wait.js +17 -0
- package/dist/lib/resources/backup/flags.d.ts +5 -0
- package/dist/lib/resources/backup/flags.js +4 -0
- package/dist/lib/resources/backup/schedule/flags.d.ts +14 -0
- package/dist/lib/resources/backup/schedule/flags.js +18 -0
- package/dist/lib/resources/conversation/flags.d.ts +6 -0
- package/dist/lib/resources/conversation/flags.js +12 -0
- package/dist/lib/resources/conversation/message_input.d.ts +10 -0
- package/dist/lib/resources/cronjob/destination.d.ts +4 -0
- package/dist/lib/resources/cronjob/destination.js +22 -0
- package/dist/lib/resources/cronjob/flags.d.ts +26 -0
- package/dist/lib/resources/cronjob/flags.js +28 -0
- package/dist/lib/resources/database/common.d.ts +9 -0
- package/dist/lib/resources/database/common.js +17 -0
- package/dist/lib/resources/database/mysql/connect.d.ts +31 -0
- package/dist/lib/resources/database/mysql/connect.js +68 -0
- package/dist/lib/resources/database/mysql/flags.d.ts +16 -0
- package/dist/lib/resources/database/mysql/flags.js +48 -0
- package/dist/lib/resources/database/mysql/temp_user.d.ts +13 -0
- package/dist/lib/resources/database/mysql/temp_user.js +52 -0
- package/dist/lib/resources/database/mysql/user/flags.d.ts +22 -0
- package/dist/lib/resources/database/mysql/user/flags.js +25 -0
- package/dist/lib/resources/database/redis/connect.d.ts +8 -0
- package/dist/lib/resources/database/redis/connect.js +21 -0
- package/dist/lib/resources/database/redis/flags.d.ts +10 -0
- package/dist/lib/resources/database/redis/flags.js +35 -0
- package/dist/lib/resources/domain/dnszone/flags.d.ts +5 -0
- package/dist/lib/resources/domain/dnszone/flags.js +19 -0
- package/dist/lib/resources/domain/dnszone/records.d.ts +18 -0
- package/dist/lib/resources/domain/dnszone/records.js +18 -0
- package/dist/lib/resources/domain/flags.d.ts +5 -0
- package/dist/lib/resources/domain/flags.js +20 -0
- package/dist/lib/resources/login/useOwnAccount.d.ts +11 -0
- package/dist/lib/resources/login/useOwnAccount.js +7 -0
- package/dist/lib/resources/mail/commons.d.ts +2 -0
- package/dist/lib/resources/mail/commons.js +9 -0
- package/dist/lib/resources/mail/flags.d.ts +10 -0
- package/dist/lib/resources/mail/flags.js +22 -0
- package/dist/lib/resources/org/flags.d.ts +6 -0
- package/dist/lib/resources/org/flags.js +10 -0
- package/dist/lib/resources/project/flags.d.ts +19 -0
- package/dist/lib/resources/project/flags.js +78 -0
- package/dist/lib/resources/project/hooks.d.ts +4 -0
- package/dist/lib/resources/project/hooks.js +11 -0
- package/dist/lib/resources/project/ingress.d.ts +2 -0
- package/dist/lib/resources/project/ingress.js +16 -0
- package/dist/lib/resources/project/shortId.d.ts +2 -0
- package/dist/lib/resources/project/shortId.js +11 -0
- package/dist/lib/resources/projectbackup/hooks.d.ts +6 -0
- package/dist/lib/resources/projectbackup/hooks.js +19 -0
- package/dist/lib/resources/server/flags.d.ts +6 -0
- package/dist/lib/resources/server/flags.js +10 -0
- package/dist/lib/resources/sftp/flags.d.ts +22 -0
- package/dist/lib/resources/sftp/flags.js +28 -0
- package/dist/lib/resources/ssh/appinstall.d.ts +3 -0
- package/dist/lib/resources/ssh/appinstall.js +28 -0
- package/dist/lib/resources/ssh/connection.d.ts +22 -0
- package/dist/lib/resources/ssh/connection.js +19 -0
- package/dist/lib/resources/ssh/doc.d.ts +10 -0
- package/dist/lib/resources/ssh/doc.js +14 -0
- package/dist/lib/resources/ssh/exec.d.ts +18 -0
- package/dist/lib/resources/ssh/exec.js +52 -0
- package/dist/lib/resources/ssh/flags.d.ts +22 -0
- package/dist/lib/resources/ssh/flags.js +43 -0
- package/dist/lib/resources/ssh/project.d.ts +3 -0
- package/dist/lib/resources/ssh/project.js +18 -0
- package/dist/lib/resources/ssh/types.d.ts +5 -0
- package/dist/lib/resources/ssh/types.js +1 -0
- package/dist/lib/units/ByteQuantity.d.ts +23 -0
- package/dist/lib/units/ByteQuantity.js +49 -0
- package/dist/lib/units/Duration.d.ts +23 -0
- package/dist/lib/units/Duration.js +57 -0
- package/dist/lib/util/fs/hasBinaryInPath.d.ts +9 -0
- package/dist/lib/util/fs/hasBinaryInPath.js +25 -0
- package/dist/lib/util/fs/isNotFound.d.ts +8 -0
- package/dist/lib/util/fs/isNotFound.js +10 -0
- package/dist/lib/util/fs/pathExists.d.ts +7 -0
- package/dist/lib/util/fs/pathExists.js +20 -0
- package/dist/lib/util/language/articleForWord.d.ts +10 -0
- package/dist/lib/util/language/articleForWord.js +12 -0
- package/dist/lib/util/maybe.d.ts +12 -0
- package/dist/lib/util/maybe.js +17 -0
- package/dist/lib/util/mergeObjects.d.ts +7 -0
- package/dist/lib/util/mergeObjects.js +12 -0
- package/dist/lib/util/password/generatePassword.d.ts +9 -0
- package/dist/lib/util/password/generatePassword.js +12 -0
- package/dist/lib/util/password/generatePasswordWithSpecialChars.d.ts +9 -0
- package/dist/lib/util/password/generatePasswordWithSpecialChars.js +24 -0
- package/dist/lib/wait.d.ts +8 -0
- package/dist/lib/wait.js +24 -0
- package/dist/rendering/Printer.d.ts +12 -0
- package/dist/rendering/Printer.js +24 -0
- package/dist/rendering/formatter/GetFormatter.d.ts +14 -0
- package/dist/rendering/formatter/GetFormatter.js +24 -0
- package/dist/rendering/formatter/ListDateColumnFormatter.d.ts +26 -0
- package/dist/rendering/formatter/ListDateColumnFormatter.js +28 -0
- package/dist/rendering/formatter/ListFormatter.d.ts +29 -0
- package/dist/rendering/formatter/ListFormatter.js +85 -0
- package/dist/rendering/formatter/Table.d.ts +48 -0
- package/dist/rendering/formatter/Table.js +44 -0
- package/dist/rendering/formatter/Table.test.d.ts +1 -0
- package/dist/rendering/formatter/Table.test.js +105 -0
- package/dist/rendering/formatter/TableCSVRenderer.d.ts +12 -0
- package/dist/rendering/formatter/TableCSVRenderer.js +41 -0
- package/dist/rendering/formatter/TableColumnRenderer.d.ts +38 -0
- package/dist/rendering/formatter/TableColumnRenderer.js +128 -0
- package/dist/rendering/formatter/TableRenderer.d.ts +15 -0
- package/dist/rendering/formatter/TableRenderer.js +1 -0
- package/dist/rendering/formatter/printHeader.d.ts +7 -0
- package/dist/rendering/formatter/printHeader.js +12 -0
- package/dist/rendering/formatter/printKeyValues.d.ts +7 -0
- package/dist/rendering/formatter/printKeyValues.js +14 -0
- package/dist/rendering/formatter/smartPad.d.ts +1 -0
- package/dist/rendering/formatter/smartPad.js +8 -0
- package/dist/rendering/formatter/smartPadOrTruncate.d.ts +1 -0
- package/dist/rendering/formatter/smartPadOrTruncate.js +5 -0
- package/dist/rendering/formatter/smartTruncate.d.ts +1 -0
- package/dist/rendering/formatter/smartTruncate.js +9 -0
- package/dist/rendering/formatter/smartTruncate.test.d.ts +1 -0
- package/dist/rendering/formatter/smartTruncate.test.js +13 -0
- package/dist/rendering/lib/getTerminalWidth.d.ts +7 -0
- package/dist/rendering/lib/getTerminalWidth.js +9 -0
- package/dist/rendering/process/components/InteractiveInputDisabled.d.ts +1 -0
- package/dist/rendering/process/components/InteractiveInputDisabled.js +3 -0
- package/dist/rendering/process/components/ProcessConfirmation.d.ts +6 -0
- package/dist/rendering/process/components/ProcessConfirmation.js +12 -0
- package/dist/rendering/process/components/ProcessConfirmationStateSummary.d.ts +5 -0
- package/dist/rendering/process/components/ProcessConfirmationStateSummary.js +18 -0
- package/dist/rendering/process/components/ProcessError.d.ts +4 -0
- package/dist/rendering/process/components/ProcessError.js +10 -0
- package/dist/rendering/process/components/ProcessInput.d.ts +6 -0
- package/dist/rendering/process/components/ProcessInput.js +15 -0
- package/dist/rendering/process/components/ProcessInputStateSummary.d.ts +5 -0
- package/dist/rendering/process/components/ProcessInputStateSummary.js +13 -0
- package/dist/rendering/process/components/ProcessSelect.d.ts +6 -0
- package/dist/rendering/process/components/ProcessSelect.js +63 -0
- package/dist/rendering/process/components/ProcessSelectStateSummary.d.ts +4 -0
- package/dist/rendering/process/components/ProcessSelectStateSummary.js +10 -0
- package/dist/rendering/process/components/ProcessState.d.ts +5 -0
- package/dist/rendering/process/components/ProcessState.js +8 -0
- package/dist/rendering/process/components/ProcessStateIcon.d.ts +5 -0
- package/dist/rendering/process/components/ProcessStateIcon.js +24 -0
- package/dist/rendering/process/components/ProcessStateSummary.d.ts +5 -0
- package/dist/rendering/process/components/ProcessStateSummary.js +34 -0
- package/dist/rendering/process/components/ProcessValidationErrors.d.ts +8 -0
- package/dist/rendering/process/components/ProcessValidationErrors.js +17 -0
- package/dist/rendering/process/process.d.ts +68 -0
- package/dist/rendering/process/process.js +49 -0
- package/dist/rendering/process/process_exec.d.ts +3 -0
- package/dist/rendering/process/process_exec.js +30 -0
- package/dist/rendering/process/process_fancy.d.ts +24 -0
- package/dist/rendering/process/process_fancy.js +166 -0
- package/dist/rendering/process/process_flags.d.ts +20 -0
- package/dist/rendering/process/process_flags.js +29 -0
- package/dist/rendering/process/process_quiet.d.ts +16 -0
- package/dist/rendering/process/process_quiet.js +43 -0
- package/dist/rendering/react/ComponentPrinter.d.ts +7 -0
- package/dist/rendering/react/components/AppInstallation/AppInstallationDetails.d.ts +9 -0
- package/dist/rendering/react/components/AppInstallation/AppInstallationDetails.js +51 -0
- package/dist/rendering/react/components/AppInstallation/AppInstallationStatus.d.ts +10 -0
- package/dist/rendering/react/components/AppInstallation/AppInstallationStatus.js +12 -0
- package/dist/rendering/react/components/AppInstallation/AppSystemSoftware.d.ts +7 -0
- package/dist/rendering/react/components/AppInstallation/AppSystemSoftware.js +18 -0
- package/dist/rendering/react/components/BooleanValue.d.ts +4 -0
- package/dist/rendering/react/components/BooleanValue.js +9 -0
- package/dist/rendering/react/components/ByteFormat.d.ts +12 -0
- package/dist/rendering/react/components/ByteFormat.js +11 -0
- package/dist/rendering/react/components/CreatedAt.js +10 -0
- package/dist/rendering/react/components/CronJob/CronJobDetails.d.ts +8 -0
- package/dist/rendering/react/components/CronJob/CronJobDetails.js +48 -0
- package/dist/rendering/react/components/DDEV/DDEVInitSuccess.d.ts +1 -0
- package/dist/rendering/react/components/DDEV/DDEVInitSuccess.js +9 -0
- package/dist/rendering/react/components/DnsZone/DnsZoneDetails.d.ts +7 -0
- package/dist/rendering/react/components/DnsZone/DnsZoneDetails.js +12 -0
- package/dist/rendering/react/components/DnsZone/DnsZoneRecords.d.ts +7 -0
- package/dist/rendering/react/components/DnsZone/DnsZoneRecords.js +17 -0
- package/dist/rendering/react/components/DnsZone/DnsZoneRecordsA.d.ts +5 -0
- package/dist/rendering/react/components/DnsZone/DnsZoneRecordsA.js +14 -0
- package/dist/rendering/react/components/DnsZone/DnsZoneRecordsAAAA.d.ts +5 -0
- package/dist/rendering/react/components/DnsZone/DnsZoneRecordsAAAA.js +14 -0
- package/dist/rendering/react/components/DnsZone/DnsZoneRecordsMX.d.ts +5 -0
- package/dist/rendering/react/components/DnsZone/DnsZoneRecordsMX.js +13 -0
- package/dist/rendering/react/components/DnsZone/DnsZoneRecordsSRV.d.ts +5 -0
- package/dist/rendering/react/components/DnsZone/DnsZoneRecordsSRV.js +9 -0
- package/dist/rendering/react/components/DnsZone/DnsZoneRecordsTXT.d.ts +5 -0
- package/dist/rendering/react/components/DnsZone/DnsZoneRecordsTXT.js +9 -0
- package/dist/rendering/react/components/DnsZone/RecordComponent.d.ts +4 -0
- package/dist/rendering/react/components/DnsZone/RecordComponent.js +1 -0
- package/dist/rendering/react/components/DnsZone/RecordSetManagedByMittwald.d.ts +1 -0
- package/dist/rendering/react/components/DnsZone/RecordSetManagedByMittwald.js +3 -0
- package/dist/rendering/react/components/DnsZone/RecordSetValues.d.ts +4 -0
- package/dist/rendering/react/components/DnsZone/RecordSetValues.js +5 -0
- package/dist/rendering/react/components/Domain/DomainBaseDetails.d.ts +7 -0
- package/dist/rendering/react/components/Domain/DomainBaseDetails.js +13 -0
- package/dist/rendering/react/components/Domain/DomainDetails.d.ts +7 -0
- package/dist/rendering/react/components/Domain/DomainDetails.js +7 -0
- package/dist/rendering/react/components/Domain/DomainHandle.d.ts +8 -0
- package/dist/rendering/react/components/Domain/DomainHandle.js +24 -0
- package/dist/rendering/react/components/Error/APIError.d.ts +13 -0
- package/dist/rendering/react/components/Error/APIError.js +41 -0
- package/dist/rendering/react/components/Error/ErrorBox.d.ts +4 -0
- package/dist/rendering/react/components/Error/ErrorBox.js +14 -0
- package/dist/rendering/react/components/Error/ErrorStack.d.ts +4 -0
- package/dist/rendering/react/components/Error/ErrorStack.js +7 -0
- package/dist/rendering/react/components/Error/ErrorText.d.ts +3 -0
- package/dist/rendering/react/components/Error/ErrorText.js +6 -0
- package/dist/rendering/react/components/Error/GenericError.d.ts +12 -0
- package/dist/rendering/react/components/Error/GenericError.js +13 -0
- package/dist/rendering/react/components/Error/InvalidArgsError.d.ts +4 -0
- package/dist/rendering/react/components/Error/InvalidArgsError.js +8 -0
- package/dist/rendering/react/components/Error/InvalidFlagsError.d.ts +6 -0
- package/dist/rendering/react/components/Error/InvalidFlagsError.js +8 -0
- package/dist/rendering/react/components/Error/UnexpectedShortIDPassedErrorBox.d.ts +4 -0
- package/dist/rendering/react/components/Error/UnexpectedShortIDPassedErrorBox.js +7 -0
- package/dist/rendering/react/components/ErrorBoundary.d.ts +20 -0
- package/dist/rendering/react/components/ErrorBoundary.js +32 -0
- package/dist/rendering/react/components/ErrorBox.d.ts +10 -0
- package/dist/rendering/react/components/ErrorBox.js +38 -0
- package/dist/rendering/react/components/FormattedDate.d.ts +8 -0
- package/dist/rendering/react/components/FormattedDate.js +16 -0
- package/dist/rendering/react/components/Ingress/DnsValidationErrors.d.ts +8 -0
- package/dist/rendering/react/components/Ingress/DnsValidationErrors.js +17 -0
- package/dist/rendering/react/components/LocalFilename.d.ts +5 -0
- package/dist/rendering/react/components/LocalFilename.js +14 -0
- package/dist/rendering/react/components/Note.d.ts +10 -0
- package/dist/rendering/react/components/Note.js +8 -0
- package/dist/rendering/react/components/OptionalValue.d.ts +13 -0
- package/dist/rendering/react/components/OptionalValue.js +16 -0
- package/dist/rendering/react/components/Organization/CustomerIDAndNumber.d.ts +7 -0
- package/dist/rendering/react/components/Organization/CustomerIDAndNumber.js +6 -0
- package/dist/rendering/react/components/Organization/OrganizationOrderEligibility.d.ts +6 -0
- package/dist/rendering/react/components/Organization/OrganizationOrderEligibility.js +9 -0
- package/dist/rendering/react/components/Organization/OrganizationOwner.d.ts +7 -0
- package/dist/rendering/react/components/Organization/OrganizationOwner.js +14 -0
- package/dist/rendering/react/components/Project/ProjectSimpleStatus.d.ts +7 -0
- package/dist/rendering/react/components/Project/ProjectSimpleStatus.js +19 -0
- package/dist/rendering/react/components/Project/ProjectStatus.d.ts +18 -0
- package/dist/rendering/react/components/Project/ProjectStatus.js +8 -0
- package/dist/rendering/react/components/ProjectBackup/ProjectBackupDetails.d.ts +7 -0
- package/dist/rendering/react/components/ProjectBackup/ProjectBackupDetails.js +29 -0
- package/dist/rendering/react/components/ProjectBackup/ProjectBackupStatus.d.ts +7 -0
- package/dist/rendering/react/components/ProjectBackup/ProjectBackupStatus.js +8 -0
- package/dist/rendering/react/components/Success.d.ts +10 -0
- package/dist/rendering/react/components/Success.js +8 -0
- package/dist/rendering/react/components/Value.d.ts +6 -0
- package/dist/rendering/react/components/Value.js +8 -0
- package/dist/rendering/react/components/Warning.d.ts +4 -0
- package/dist/rendering/react/components/Warning.js +7 -0
- package/dist/rendering/react/context.d.ts +8 -0
- package/dist/rendering/react/error.d.ts +7 -0
- package/dist/rendering/react/error.js +12 -0
- package/dist/rendering/react/hooks/useIncreaseInkStdoutColumns.d.ts +1 -0
- package/dist/rendering/react/hooks/useIncreaseInkStdoutColumns.js +9 -0
- package/dist/rendering/react/json/context.d.ts +4 -0
- package/dist/rendering/react/lib/observable-value/types.js +1 -0
- package/dist/rendering/setup/FlagSupportedSetup.d.ts +12 -0
- package/dist/rendering/setup/FlagSupportedSetup.js +22 -0
- package/dist/rendering/textformat/formatDate.d.ts +6 -0
- package/dist/rendering/textformat/formatDate.js +40 -0
- package/dist/rendering/textformat/removeLineBreaks.d.ts +6 -0
- package/dist/rendering/textformat/removeLineBreaks.js +8 -0
- package/package.json +117 -54
- package/bin/dev +0 -17
- package/dist/esm/BaseCommand.d.ts +0 -11
- package/dist/esm/BaseCommand.js +0 -44
- package/dist/esm/DeleteBaseCommand.d.ts +0 -12
- package/dist/esm/DeleteBaseCommand.js +0 -43
- package/dist/esm/ExtendedBaseCommand.d.ts +0 -7
- package/dist/esm/ExtendedBaseCommand.js +0 -16
- package/dist/esm/Flags.d.ts +0 -1
- package/dist/esm/Flags.js +0 -1
- package/dist/esm/Formatter.d.ts +0 -18
- package/dist/esm/Formatter.js +0 -33
- package/dist/esm/GetBaseCommand.d.ts +0 -17
- package/dist/esm/GetBaseCommand.js +0 -27
- package/dist/esm/Helpers.d.ts +0 -6
- package/dist/esm/Helpers.js +0 -30
- package/dist/esm/ListBaseCommand.d.ts +0 -20
- package/dist/esm/ListBaseCommand.js +0 -60
- package/dist/esm/Printer.d.ts +0 -15
- package/dist/esm/Printer.js +0 -30
- package/dist/esm/Translator.d.ts +0 -6
- package/dist/esm/Translator.js +0 -64
- package/dist/esm/commands/app/delete.d.ts +0 -12
- package/dist/esm/commands/app/delete.js +0 -45
- package/dist/esm/commands/app/dependency/getSystemsoftware.d.ts +0 -3
- package/dist/esm/commands/app/dependency/getSystemsoftware.js +0 -6
- package/dist/esm/commands/app/dependency/getSystemsoftwareversion.d.ts +0 -3
- package/dist/esm/commands/app/dependency/getSystemsoftwareversion.js +0 -6
- package/dist/esm/commands/app/dependency/listSystemsoftwares.d.ts +0 -9
- package/dist/esm/commands/app/dependency/listSystemsoftwares.js +0 -6
- package/dist/esm/commands/app/dependency/listSystemsoftwareversions.d.ts +0 -9
- package/dist/esm/commands/app/dependency/listSystemsoftwareversions.js +0 -6
- package/dist/esm/commands/app/get.d.ts +0 -3
- package/dist/esm/commands/app/get.js +0 -6
- package/dist/esm/commands/app/install/wordpress.d.ts +0 -14
- package/dist/esm/commands/app/install/wordpress.js +0 -76
- package/dist/esm/commands/app/list.d.ts +0 -16
- package/dist/esm/commands/app/list.js +0 -64
- package/dist/esm/commands/app/versions.d.ts +0 -12
- package/dist/esm/commands/app/versions.js +0 -53
- package/dist/esm/commands/article/get.d.ts +0 -3
- package/dist/esm/commands/article/get.js +0 -6
- package/dist/esm/commands/article/list.d.ts +0 -9
- package/dist/esm/commands/article/list.js +0 -6
- package/dist/esm/commands/context/get.d.ts +0 -10
- package/dist/esm/commands/context/get.js +0 -39
- package/dist/esm/commands/context/set.d.ts +0 -11
- package/dist/esm/commands/context/set.js +0 -37
- package/dist/esm/commands/contract/getBaseItemOfContract.d.ts +0 -3
- package/dist/esm/commands/contract/getBaseItemOfContract.js +0 -6
- package/dist/esm/commands/contract/getDetailOfContract.d.ts +0 -3
- package/dist/esm/commands/contract/getDetailOfContract.js +0 -6
- package/dist/esm/commands/contract/getDetailOfContractByDomain.d.ts +0 -3
- package/dist/esm/commands/contract/getDetailOfContractByDomain.js +0 -6
- package/dist/esm/commands/contract/getDetailOfContractByProject.d.ts +0 -3
- package/dist/esm/commands/contract/getDetailOfContractByProject.js +0 -6
- package/dist/esm/commands/contract/getDetailOfContractByServer.d.ts +0 -3
- package/dist/esm/commands/contract/getDetailOfContractByServer.js +0 -6
- package/dist/esm/commands/contract/getDetailOfContractItem.d.ts +0 -3
- package/dist/esm/commands/contract/getDetailOfContractItem.js +0 -6
- package/dist/esm/commands/contract/getNextTerminationDateForItem.d.ts +0 -3
- package/dist/esm/commands/contract/getNextTerminationDateForItem.js +0 -6
- package/dist/esm/commands/contract/invoiceDetailOfInvoice.d.ts +0 -3
- package/dist/esm/commands/contract/invoiceDetailOfInvoice.js +0 -6
- package/dist/esm/commands/contract/invoiceGetDetailOfInvoiceSettings.d.ts +0 -3
- package/dist/esm/commands/contract/invoiceGetDetailOfInvoiceSettings.js +0 -6
- package/dist/esm/commands/contract/invoiceListCustomerInvoices.d.ts +0 -9
- package/dist/esm/commands/contract/invoiceListCustomerInvoices.js +0 -6
- package/dist/esm/commands/contract/listContracts.d.ts +0 -9
- package/dist/esm/commands/contract/listContracts.js +0 -6
- package/dist/esm/commands/contract/orderGetOrder.d.ts +0 -3
- package/dist/esm/commands/contract/orderGetOrder.js +0 -6
- package/dist/esm/commands/contract/orderListCustomerOrders.d.ts +0 -9
- package/dist/esm/commands/contract/orderListCustomerOrders.js +0 -6
- package/dist/esm/commands/contract/orderListProjectOrders.d.ts +0 -9
- package/dist/esm/commands/contract/orderListProjectOrders.js +0 -6
- package/dist/esm/commands/conversation/categories.d.ts +0 -11
- package/dist/esm/commands/conversation/categories.js +0 -16
- package/dist/esm/commands/conversation/close.d.ts +0 -8
- package/dist/esm/commands/conversation/close.js +0 -24
- package/dist/esm/commands/conversation/create.d.ts +0 -13
- package/dist/esm/commands/conversation/create.js +0 -50
- package/dist/esm/commands/conversation/list.d.ts +0 -11
- package/dist/esm/commands/conversation/list.js +0 -28
- package/dist/esm/commands/conversation/reply.d.ts +0 -13
- package/dist/esm/commands/conversation/reply.js +0 -30
- package/dist/esm/commands/conversation/show.d.ts +0 -8
- package/dist/esm/commands/conversation/show.js +0 -78
- package/dist/esm/commands/conversation/show2.d.ts +0 -11
- package/dist/esm/commands/conversation/show2.js +0 -40
- package/dist/esm/commands/database/mysql/charsets.d.ts +0 -9
- package/dist/esm/commands/database/mysql/charsets.js +0 -6
- package/dist/esm/commands/database/mysql/get.d.ts +0 -3
- package/dist/esm/commands/database/mysql/get.js +0 -6
- package/dist/esm/commands/database/mysql/list.d.ts +0 -11
- package/dist/esm/commands/database/mysql/list.js +0 -54
- package/dist/esm/commands/database/mysql/user/get.d.ts +0 -3
- package/dist/esm/commands/database/mysql/user/get.js +0 -6
- package/dist/esm/commands/database/mysql/user/getMysqlUserPhpMyAdminUrl.d.ts +0 -3
- package/dist/esm/commands/database/mysql/user/getMysqlUserPhpMyAdminUrl.js +0 -7
- package/dist/esm/commands/database/mysql/user/list.d.ts +0 -9
- package/dist/esm/commands/database/mysql/user/list.js +0 -6
- package/dist/esm/commands/database/mysql/versions.d.ts +0 -9
- package/dist/esm/commands/database/mysql/versions.js +0 -6
- package/dist/esm/commands/database/redis/get.d.ts +0 -3
- package/dist/esm/commands/database/redis/get.js +0 -6
- package/dist/esm/commands/database/redis/list.d.ts +0 -9
- package/dist/esm/commands/database/redis/list.js +0 -6
- package/dist/esm/commands/database/redis/versions.d.ts +0 -9
- package/dist/esm/commands/database/redis/versions.js +0 -6
- package/dist/esm/commands/domain/dnszone/get.d.ts +0 -3
- package/dist/esm/commands/domain/dnszone/get.js +0 -6
- package/dist/esm/commands/domain/dnszone/list.d.ts +0 -3
- package/dist/esm/commands/domain/dnszone/list.js +0 -6
- package/dist/esm/commands/domain/get-handle.d.ts +0 -3
- package/dist/esm/commands/domain/get-handle.js +0 -6
- package/dist/esm/commands/domain/get.d.ts +0 -3
- package/dist/esm/commands/domain/get.js +0 -6
- package/dist/esm/commands/domain/list.d.ts +0 -17
- package/dist/esm/commands/domain/list.js +0 -20
- package/dist/esm/commands/domain/ownership/get.d.ts +0 -3
- package/dist/esm/commands/domain/ownership/get.js +0 -6
- package/dist/esm/commands/domain/ownership/list.d.ts +0 -9
- package/dist/esm/commands/domain/ownership/list.js +0 -6
- package/dist/esm/commands/domain/tld/get.d.ts +0 -3
- package/dist/esm/commands/domain/tld/get.js +0 -6
- package/dist/esm/commands/domain/tld/list.d.ts +0 -9
- package/dist/esm/commands/domain/tld/list.js +0 -6
- package/dist/esm/commands/domain/virtualhost/get.d.ts +0 -3
- package/dist/esm/commands/domain/virtualhost/get.js +0 -6
- package/dist/esm/commands/domain/virtualhost/list.d.ts +0 -20
- package/dist/esm/commands/domain/virtualhost/list.js +0 -52
- package/dist/esm/commands/login/reset.d.ts +0 -12
- package/dist/esm/commands/login/reset.js +0 -39
- package/dist/esm/commands/login/status.d.ts +0 -5
- package/dist/esm/commands/login/status.js +0 -29
- package/dist/esm/commands/login/token.d.ts +0 -10
- package/dist/esm/commands/login/token.js +0 -40
- package/dist/esm/commands/mail/address/create.d.ts +0 -20
- package/dist/esm/commands/mail/address/create.js +0 -61
- package/dist/esm/commands/mail/address/delete.d.ts +0 -13
- package/dist/esm/commands/mail/address/delete.js +0 -22
- package/dist/esm/commands/mail/address/get.d.ts +0 -3
- package/dist/esm/commands/mail/address/get.js +0 -6
- package/dist/esm/commands/mail/address/list.d.ts +0 -20
- package/dist/esm/commands/mail/address/list.js +0 -63
- package/dist/esm/commands/mail/deliverybox/get.d.ts +0 -3
- package/dist/esm/commands/mail/deliverybox/get.js +0 -6
- package/dist/esm/commands/mail/deliverybox/list.d.ts +0 -12
- package/dist/esm/commands/mail/deliverybox/list.js +0 -25
- package/dist/esm/commands/org/can-order.d.ts +0 -3
- package/dist/esm/commands/org/can-order.js +0 -6
- package/dist/esm/commands/org/get.d.ts +0 -3
- package/dist/esm/commands/org/get.js +0 -6
- package/dist/esm/commands/org/invite/get.d.ts +0 -3
- package/dist/esm/commands/org/invite/get.js +0 -6
- package/dist/esm/commands/org/invite/list-own.d.ts +0 -9
- package/dist/esm/commands/org/invite/list-own.js +0 -6
- package/dist/esm/commands/org/invite/list.d.ts +0 -9
- package/dist/esm/commands/org/invite/list.js +0 -6
- package/dist/esm/commands/org/list.d.ts +0 -11
- package/dist/esm/commands/org/list.js +0 -28
- package/dist/esm/commands/org/membership/get.d.ts +0 -3
- package/dist/esm/commands/org/membership/get.js +0 -6
- package/dist/esm/commands/org/membership/list-own.d.ts +0 -9
- package/dist/esm/commands/org/membership/list-own.js +0 -6
- package/dist/esm/commands/org/membership/list.d.ts +0 -9
- package/dist/esm/commands/org/membership/list.js +0 -6
- package/dist/esm/commands/project/backup/get.d.ts +0 -3
- package/dist/esm/commands/project/backup/get.js +0 -6
- package/dist/esm/commands/project/backup/list.d.ts +0 -19
- package/dist/esm/commands/project/backup/list.js +0 -32
- package/dist/esm/commands/project/backupschedule/get.d.ts +0 -3
- package/dist/esm/commands/project/backupschedule/get.js +0 -6
- package/dist/esm/commands/project/backupschedule/list.d.ts +0 -13
- package/dist/esm/commands/project/backupschedule/list.js +0 -21
- package/dist/esm/commands/project/create.d.ts +0 -18
- package/dist/esm/commands/project/create.js +0 -65
- package/dist/esm/commands/project/cronjob/execution/get.d.ts +0 -16
- package/dist/esm/commands/project/cronjob/execution/get.js +0 -27
- package/dist/esm/commands/project/cronjob/execution/list.d.ts +0 -18
- package/dist/esm/commands/project/cronjob/execution/list.js +0 -42
- package/dist/esm/commands/project/cronjob/execution/logs.d.ts +0 -15
- package/dist/esm/commands/project/cronjob/execution/logs.js +0 -74
- package/dist/esm/commands/project/cronjob/get.d.ts +0 -3
- package/dist/esm/commands/project/cronjob/get.js +0 -6
- package/dist/esm/commands/project/cronjob/list.d.ts +0 -19
- package/dist/esm/commands/project/cronjob/list.js +0 -45
- package/dist/esm/commands/project/delete.d.ts +0 -14
- package/dist/esm/commands/project/delete.js +0 -20
- package/dist/esm/commands/project/filesystem/usage.d.ts +0 -14
- package/dist/esm/commands/project/filesystem/usage.js +0 -53
- package/dist/esm/commands/project/get.d.ts +0 -14
- package/dist/esm/commands/project/get.js +0 -78
- package/dist/esm/commands/project/invite/get.d.ts +0 -3
- package/dist/esm/commands/project/invite/get.js +0 -6
- package/dist/esm/commands/project/invite/list-own.d.ts +0 -11
- package/dist/esm/commands/project/invite/list-own.js +0 -29
- package/dist/esm/commands/project/invite/list.d.ts +0 -12
- package/dist/esm/commands/project/invite/list.js +0 -32
- package/dist/esm/commands/project/list-react.d.ts +0 -11
- package/dist/esm/commands/project/list-react.js +0 -42
- package/dist/esm/commands/project/list.d.ts +0 -12
- package/dist/esm/commands/project/list.js +0 -33
- package/dist/esm/commands/project/membership/get-own.d.ts +0 -4
- package/dist/esm/commands/project/membership/get-own.js +0 -11
- package/dist/esm/commands/project/membership/get.d.ts +0 -3
- package/dist/esm/commands/project/membership/get.js +0 -6
- package/dist/esm/commands/project/membership/list-own.d.ts +0 -11
- package/dist/esm/commands/project/membership/list-own.js +0 -28
- package/dist/esm/commands/project/membership/list.d.ts +0 -25
- package/dist/esm/commands/project/membership/list.js +0 -46
- package/dist/esm/commands/project/sftp-user/list.d.ts +0 -13
- package/dist/esm/commands/project/sftp-user/list.js +0 -24
- package/dist/esm/commands/project/ssh-user/list.d.ts +0 -13
- package/dist/esm/commands/project/ssh-user/list.js +0 -24
- package/dist/esm/commands/project/ssh.d.ts +0 -8
- package/dist/esm/commands/project/ssh.js +0 -26
- package/dist/esm/commands/project/update.d.ts +0 -8
- package/dist/esm/commands/project/update.js +0 -12
- package/dist/esm/commands/server/get.d.ts +0 -3
- package/dist/esm/commands/server/get.js +0 -6
- package/dist/esm/commands/server/list.d.ts +0 -11
- package/dist/esm/commands/server/list.js +0 -41
- package/dist/esm/commands/user/api-token/create.d.ts +0 -17
- package/dist/esm/commands/user/api-token/create.js +0 -64
- package/dist/esm/commands/user/api-token/get.d.ts +0 -3
- package/dist/esm/commands/user/api-token/get.js +0 -6
- package/dist/esm/commands/user/api-token/list.d.ts +0 -11
- package/dist/esm/commands/user/api-token/list.js +0 -23
- package/dist/esm/commands/user/api-token/revoke.d.ts +0 -13
- package/dist/esm/commands/user/api-token/revoke.js +0 -21
- package/dist/esm/commands/user/get.d.ts +0 -3
- package/dist/esm/commands/user/get.js +0 -6
- package/dist/esm/commands/user/session/get.d.ts +0 -3
- package/dist/esm/commands/user/session/get.js +0 -6
- package/dist/esm/commands/user/session/list.d.ts +0 -11
- package/dist/esm/commands/user/session/list.js +0 -26
- package/dist/esm/commands/user/ssh-key/create.d.ts +0 -13
- package/dist/esm/commands/user/ssh-key/create.js +0 -77
- package/dist/esm/commands/user/ssh-key/delete.d.ts +0 -13
- package/dist/esm/commands/user/ssh-key/delete.js +0 -22
- package/dist/esm/commands/user/ssh-key/get.d.ts +0 -3
- package/dist/esm/commands/user/ssh-key/get.js +0 -6
- package/dist/esm/commands/user/ssh-key/list.d.ts +0 -11
- package/dist/esm/commands/user/ssh-key/list.js +0 -21
- package/dist/esm/generated/app/getApp.d.ts +0 -16
- package/dist/esm/generated/app/getApp.js +0 -25
- package/dist/esm/generated/app/getAppinstallation.d.ts +0 -16
- package/dist/esm/generated/app/getAppinstallation.js +0 -25
- package/dist/esm/generated/app/getAppversion.d.ts +0 -16
- package/dist/esm/generated/app/getAppversion.js +0 -29
- package/dist/esm/generated/app/getSystemsoftware.d.ts +0 -16
- package/dist/esm/generated/app/getSystemsoftware.js +0 -25
- package/dist/esm/generated/app/getSystemsoftwareversion.d.ts +0 -16
- package/dist/esm/generated/app/getSystemsoftwareversion.js +0 -29
- package/dist/esm/generated/app/listAppinstallations.d.ts +0 -13
- package/dist/esm/generated/app/listAppinstallations.js +0 -24
- package/dist/esm/generated/app/listApps.d.ts +0 -13
- package/dist/esm/generated/app/listApps.js +0 -17
- package/dist/esm/generated/app/listAppversions.d.ts +0 -13
- package/dist/esm/generated/app/listAppversions.js +0 -24
- package/dist/esm/generated/app/listSystemsoftwares.d.ts +0 -13
- package/dist/esm/generated/app/listSystemsoftwares.js +0 -17
- package/dist/esm/generated/app/listSystemsoftwareversions.d.ts +0 -13
- package/dist/esm/generated/app/listSystemsoftwareversions.js +0 -24
- package/dist/esm/generated/app/retrieveStatus.d.ts +0 -14
- package/dist/esm/generated/app/retrieveStatus.js +0 -24
- package/dist/esm/generated/article/getArticle.d.ts +0 -16
- package/dist/esm/generated/article/getArticle.js +0 -25
- package/dist/esm/generated/article/listArticles.d.ts +0 -13
- package/dist/esm/generated/article/listArticles.js +0 -17
- package/dist/esm/generated/backup/getProjectBackup.d.ts +0 -16
- package/dist/esm/generated/backup/getProjectBackup.js +0 -25
- package/dist/esm/generated/backup/getProjectBackupSchedule.d.ts +0 -16
- package/dist/esm/generated/backup/getProjectBackupSchedule.js +0 -25
- package/dist/esm/generated/backup/listProjectBackupSchedules.d.ts +0 -13
- package/dist/esm/generated/backup/listProjectBackupSchedules.js +0 -24
- package/dist/esm/generated/backup/listProjectBackups.d.ts +0 -13
- package/dist/esm/generated/backup/listProjectBackups.js +0 -24
- package/dist/esm/generated/contract/getBaseItemOfContract.d.ts +0 -14
- package/dist/esm/generated/contract/getBaseItemOfContract.js +0 -24
- package/dist/esm/generated/contract/getDetailOfContract.d.ts +0 -16
- package/dist/esm/generated/contract/getDetailOfContract.js +0 -25
- package/dist/esm/generated/contract/getDetailOfContractByDomain.d.ts +0 -14
- package/dist/esm/generated/contract/getDetailOfContractByDomain.js +0 -24
- package/dist/esm/generated/contract/getDetailOfContractByProject.d.ts +0 -14
- package/dist/esm/generated/contract/getDetailOfContractByProject.js +0 -24
- package/dist/esm/generated/contract/getDetailOfContractByServer.d.ts +0 -14
- package/dist/esm/generated/contract/getDetailOfContractByServer.js +0 -24
- package/dist/esm/generated/contract/getDetailOfContractItem.d.ts +0 -16
- package/dist/esm/generated/contract/getDetailOfContractItem.js +0 -29
- package/dist/esm/generated/contract/getNextTerminationDateForItem.d.ts +0 -15
- package/dist/esm/generated/contract/getNextTerminationDateForItem.js +0 -28
- package/dist/esm/generated/contract/invoiceDetailOfInvoice.d.ts +0 -16
- package/dist/esm/generated/contract/invoiceDetailOfInvoice.js +0 -29
- package/dist/esm/generated/contract/invoiceGetDetailOfInvoiceSettings.d.ts +0 -14
- package/dist/esm/generated/contract/invoiceGetDetailOfInvoiceSettings.js +0 -24
- package/dist/esm/generated/contract/invoiceListCustomerInvoices.d.ts +0 -13
- package/dist/esm/generated/contract/invoiceListCustomerInvoices.js +0 -24
- package/dist/esm/generated/contract/listContracts.d.ts +0 -13
- package/dist/esm/generated/contract/listContracts.js +0 -24
- package/dist/esm/generated/contract/orderGetOrder.d.ts +0 -16
- package/dist/esm/generated/contract/orderGetOrder.js +0 -25
- package/dist/esm/generated/contract/orderListCustomerOrders.d.ts +0 -13
- package/dist/esm/generated/contract/orderListCustomerOrders.js +0 -24
- package/dist/esm/generated/contract/orderListProjectOrders.d.ts +0 -13
- package/dist/esm/generated/contract/orderListProjectOrders.js +0 -24
- package/dist/esm/generated/conversation/getCategory.d.ts +0 -16
- package/dist/esm/generated/conversation/getCategory.js +0 -25
- package/dist/esm/generated/conversation/getConversation.d.ts +0 -16
- package/dist/esm/generated/conversation/getConversation.js +0 -25
- package/dist/esm/generated/conversation/listCategories.d.ts +0 -13
- package/dist/esm/generated/conversation/listCategories.js +0 -17
- package/dist/esm/generated/conversation/listConversations.d.ts +0 -13
- package/dist/esm/generated/conversation/listConversations.js +0 -17
- package/dist/esm/generated/conversation/listMessagesByConversation.d.ts +0 -13
- package/dist/esm/generated/conversation/listMessagesByConversation.js +0 -24
- package/dist/esm/generated/cronjob/getCronjob.d.ts +0 -16
- package/dist/esm/generated/cronjob/getCronjob.js +0 -25
- package/dist/esm/generated/cronjob/getExecution.d.ts +0 -16
- package/dist/esm/generated/cronjob/getExecution.js +0 -29
- package/dist/esm/generated/customer/getCustomer.d.ts +0 -16
- package/dist/esm/generated/customer/getCustomer.js +0 -25
- package/dist/esm/generated/customer/getCustomerCategory.d.ts +0 -16
- package/dist/esm/generated/customer/getCustomerCategory.js +0 -25
- package/dist/esm/generated/customer/getCustomerInvite.d.ts +0 -16
- package/dist/esm/generated/customer/getCustomerInvite.js +0 -25
- package/dist/esm/generated/customer/getCustomerMembership.d.ts +0 -16
- package/dist/esm/generated/customer/getCustomerMembership.js +0 -25
- package/dist/esm/generated/customer/getCustomerTokenInvite.d.ts +0 -14
- package/dist/esm/generated/customer/getCustomerTokenInvite.js +0 -16
- package/dist/esm/generated/customer/isCustomerLegallyCompetent.d.ts +0 -14
- package/dist/esm/generated/customer/isCustomerLegallyCompetent.js +0 -24
- package/dist/esm/generated/customer/listCustomerInvites.d.ts +0 -13
- package/dist/esm/generated/customer/listCustomerInvites.js +0 -17
- package/dist/esm/generated/customer/listCustomerMemberships.d.ts +0 -13
- package/dist/esm/generated/customer/listCustomerMemberships.js +0 -17
- package/dist/esm/generated/customer/listCustomers.d.ts +0 -13
- package/dist/esm/generated/customer/listCustomers.js +0 -17
- package/dist/esm/generated/customer/listInvitesForCustomer.d.ts +0 -13
- package/dist/esm/generated/customer/listInvitesForCustomer.js +0 -24
- package/dist/esm/generated/customer/listMembershipsForCustomer.d.ts +0 -13
- package/dist/esm/generated/customer/listMembershipsForCustomer.js +0 -24
- package/dist/esm/generated/customer/listOfCustomerCategories.d.ts +0 -13
- package/dist/esm/generated/customer/listOfCustomerCategories.js +0 -17
- package/dist/esm/generated/database/getMysqlDatabase.d.ts +0 -16
- package/dist/esm/generated/database/getMysqlDatabase.js +0 -25
- package/dist/esm/generated/database/getMysqlUser.d.ts +0 -16
- package/dist/esm/generated/database/getMysqlUser.js +0 -25
- package/dist/esm/generated/database/getMysqlUserPhpMyAdminUrl.d.ts +0 -14
- package/dist/esm/generated/database/getMysqlUserPhpMyAdminUrl.js +0 -24
- package/dist/esm/generated/database/getRedisDatabase.d.ts +0 -16
- package/dist/esm/generated/database/getRedisDatabase.js +0 -25
- package/dist/esm/generated/database/listMysqlCharsets.d.ts +0 -13
- package/dist/esm/generated/database/listMysqlCharsets.js +0 -17
- package/dist/esm/generated/database/listMysqlDatabases.d.ts +0 -13
- package/dist/esm/generated/database/listMysqlDatabases.js +0 -24
- package/dist/esm/generated/database/listMysqlUsers.d.ts +0 -13
- package/dist/esm/generated/database/listMysqlUsers.js +0 -24
- package/dist/esm/generated/database/listMysqlVersions.d.ts +0 -13
- package/dist/esm/generated/database/listMysqlVersions.js +0 -17
- package/dist/esm/generated/database/listRedisDatabases.d.ts +0 -13
- package/dist/esm/generated/database/listRedisDatabases.js +0 -24
- package/dist/esm/generated/database/listRedisVersions.d.ts +0 -13
- package/dist/esm/generated/database/listRedisVersions.js +0 -17
- package/dist/esm/generated/domain/dnsZoneGetSpecific.d.ts +0 -16
- package/dist/esm/generated/domain/dnsZoneGetSpecific.js +0 -25
- package/dist/esm/generated/domain/dnsZonesForProject.d.ts +0 -14
- package/dist/esm/generated/domain/dnsZonesForProject.js +0 -24
- package/dist/esm/generated/domain/getDomain.d.ts +0 -16
- package/dist/esm/generated/domain/getDomain.js +0 -25
- package/dist/esm/generated/domain/getHandleFields.d.ts +0 -16
- package/dist/esm/generated/domain/getHandleFields.js +0 -25
- package/dist/esm/generated/domain/getSpecificDomainOwnership.d.ts +0 -16
- package/dist/esm/generated/domain/getSpecificDomainOwnership.js +0 -25
- package/dist/esm/generated/domain/getToplevelDomain.d.ts +0 -16
- package/dist/esm/generated/domain/getToplevelDomain.js +0 -25
- package/dist/esm/generated/domain/ingressGetSpecific.d.ts +0 -16
- package/dist/esm/generated/domain/ingressGetSpecific.js +0 -25
- package/dist/esm/generated/domain/listDomainOwnerships.d.ts +0 -13
- package/dist/esm/generated/domain/listDomainOwnerships.js +0 -24
- package/dist/esm/generated/domain/listToplevelDomains.d.ts +0 -13
- package/dist/esm/generated/domain/listToplevelDomains.js +0 -17
- package/dist/esm/generated/file/getFile.d.ts +0 -16
- package/dist/esm/generated/file/getFile.js +0 -25
- package/dist/esm/generated/file/getFileMeta.d.ts +0 -14
- package/dist/esm/generated/file/getFileMeta.js +0 -24
- package/dist/esm/generated/file/getFileTokenRules.d.ts +0 -16
- package/dist/esm/generated/file/getFileTokenRules.js +0 -25
- package/dist/esm/generated/file/getFileTypeRules.d.ts +0 -16
- package/dist/esm/generated/file/getFileTypeRules.js +0 -25
- package/dist/esm/generated/mail/deliveryboxGetSpecific.d.ts +0 -16
- package/dist/esm/generated/mail/deliveryboxGetSpecific.js +0 -25
- package/dist/esm/generated/mail/deliveryboxList.d.ts +0 -13
- package/dist/esm/generated/mail/deliveryboxList.js +0 -24
- package/dist/esm/generated/mail/mailaddressGetSpecific.d.ts +0 -16
- package/dist/esm/generated/mail/mailaddressGetSpecific.js +0 -25
- package/dist/esm/generated/mail/mailaddressList.d.ts +0 -13
- package/dist/esm/generated/mail/mailaddressList.js +0 -24
- package/dist/esm/generated/mail/projectsettingGetSpecific.d.ts +0 -14
- package/dist/esm/generated/mail/projectsettingGetSpecific.js +0 -24
- package/dist/esm/generated/notification/newsletterGetInfo.d.ts +0 -14
- package/dist/esm/generated/notification/newsletterGetInfo.js +0 -16
- package/dist/esm/generated/notification/scountUnreadNotifications.d.ts +0 -14
- package/dist/esm/generated/notification/scountUnreadNotifications.js +0 -16
- package/dist/esm/generated/notification/slistNotifications.d.ts +0 -13
- package/dist/esm/generated/notification/slistNotifications.js +0 -17
- package/dist/esm/generated/project/getProject.d.ts +0 -16
- package/dist/esm/generated/project/getProject.js +0 -25
- package/dist/esm/generated/project/getProjectInvite.d.ts +0 -16
- package/dist/esm/generated/project/getProjectInvite.js +0 -25
- package/dist/esm/generated/project/getProjectMembership.d.ts +0 -16
- package/dist/esm/generated/project/getProjectMembership.js +0 -25
- package/dist/esm/generated/project/getProjectTokenInvite.d.ts +0 -14
- package/dist/esm/generated/project/getProjectTokenInvite.js +0 -16
- package/dist/esm/generated/project/getSelfMembershipForProject.d.ts +0 -14
- package/dist/esm/generated/project/getSelfMembershipForProject.js +0 -24
- package/dist/esm/generated/project/getServer.d.ts +0 -16
- package/dist/esm/generated/project/getServer.js +0 -25
- package/dist/esm/generated/project/listInvitesForProject.d.ts +0 -13
- package/dist/esm/generated/project/listInvitesForProject.js +0 -24
- package/dist/esm/generated/project/listMembershipsForProject.d.ts +0 -13
- package/dist/esm/generated/project/listMembershipsForProject.js +0 -24
- package/dist/esm/generated/project/listProjectInvites.d.ts +0 -13
- package/dist/esm/generated/project/listProjectInvites.js +0 -17
- package/dist/esm/generated/project/listProjectMemberships.d.ts +0 -13
- package/dist/esm/generated/project/listProjectMemberships.js +0 -17
- package/dist/esm/generated/project/listProjects.d.ts +0 -13
- package/dist/esm/generated/project/listProjects.js +0 -17
- package/dist/esm/generated/project/listServers.d.ts +0 -13
- package/dist/esm/generated/project/listServers.js +0 -17
- package/dist/esm/generated/sshsftpUser/sftpUserGetSftpUser.d.ts +0 -16
- package/dist/esm/generated/sshsftpUser/sftpUserGetSftpUser.js +0 -25
- package/dist/esm/generated/sshsftpUser/sftpUserListSftpUsers.d.ts +0 -13
- package/dist/esm/generated/sshsftpUser/sftpUserListSftpUsers.js +0 -24
- package/dist/esm/generated/sshsftpUser/sshUserGetSshUser.d.ts +0 -16
- package/dist/esm/generated/sshsftpUser/sshUserGetSshUser.js +0 -25
- package/dist/esm/generated/sshsftpUser/sshUserListSshUsers.d.ts +0 -13
- package/dist/esm/generated/sshsftpUser/sshUserListSshUsers.js +0 -24
- package/dist/esm/generated/user/getApiToken.d.ts +0 -16
- package/dist/esm/generated/user/getApiToken.js +0 -25
- package/dist/esm/generated/user/getEmail.d.ts +0 -14
- package/dist/esm/generated/user/getEmail.js +0 -16
- package/dist/esm/generated/user/getMfaStatus.d.ts +0 -14
- package/dist/esm/generated/user/getMfaStatus.js +0 -16
- package/dist/esm/generated/user/getOwnProfile.d.ts +0 -14
- package/dist/esm/generated/user/getOwnProfile.js +0 -16
- package/dist/esm/generated/user/getPasswordUpdatedAt.d.ts +0 -14
- package/dist/esm/generated/user/getPasswordUpdatedAt.js +0 -16
- package/dist/esm/generated/user/getPersonalizedSettings.d.ts +0 -14
- package/dist/esm/generated/user/getPersonalizedSettings.js +0 -24
- package/dist/esm/generated/user/getSession.d.ts +0 -16
- package/dist/esm/generated/user/getSession.js +0 -25
- package/dist/esm/generated/user/getSshKey.d.ts +0 -16
- package/dist/esm/generated/user/getSshKey.js +0 -25
- package/dist/esm/generated/user/getUser.d.ts +0 -14
- package/dist/esm/generated/user/getUser.js +0 -16
- package/dist/esm/generated/user/listApiTokens.d.ts +0 -13
- package/dist/esm/generated/user/listApiTokens.js +0 -17
- package/dist/esm/generated/user/listFeedback.d.ts +0 -13
- package/dist/esm/generated/user/listFeedback.js +0 -24
- package/dist/esm/generated/user/listSessions.d.ts +0 -13
- package/dist/esm/generated/user/listSessions.js +0 -17
- package/dist/esm/generated/user/listSshKeys.d.ts +0 -13
- package/dist/esm/generated/user/listSshKeys.js +0 -17
- package/dist/esm/generated/user/supportCodeRequest.d.ts +0 -14
- package/dist/esm/generated/user/supportCodeRequest.js +0 -16
- package/dist/esm/lib/app/appHelpers.d.ts +0 -4
- package/dist/esm/lib/app/appHelpers.js +0 -43
- package/dist/esm/lib/app/appVersionHelpers.d.ts +0 -5
- package/dist/esm/lib/app/appVersionHelpers.js +0 -35
- package/dist/esm/lib/bytes.d.ts +0 -1
- package/dist/esm/lib/bytes.js +0 -16
- package/dist/esm/lib/context.d.ts +0 -16
- package/dist/esm/lib/context.js +0 -42
- package/dist/esm/lib/context_flags.d.ts +0 -18
- package/dist/esm/lib/context_flags.js +0 -42
- package/dist/esm/lib/conversation/message_input.d.ts +0 -10
- package/dist/esm/lib/handleError.d.ts +0 -4
- package/dist/esm/lib/handleError.js +0 -17
- package/dist/esm/lib/mergeObjects.d.ts +0 -1
- package/dist/esm/lib/mergeObjects.js +0 -6
- package/dist/esm/lib/notify.d.ts +0 -2
- package/dist/esm/lib/notify.js +0 -5
- package/dist/esm/lib/project/flags.d.ts +0 -5
- package/dist/esm/lib/project/flags.js +0 -3
- package/dist/esm/lib/server/flags.d.ts +0 -5
- package/dist/esm/lib/server/flags.js +0 -3
- package/dist/esm/lib/viewhelpers/date.d.ts +0 -5
- package/dist/esm/lib/viewhelpers/date.js +0 -23
- package/dist/esm/lib/viewhelpers/removeLineBreaks.d.ts +0 -1
- package/dist/esm/lib/viewhelpers/removeLineBreaks.js +0 -1
- package/dist/esm/lib/viewhelpers/size.d.ts +0 -1
- package/dist/esm/lib/viewhelpers/size.js +0 -4
- package/dist/esm/lib/viewhelpers/tui.d.ts +0 -2
- package/dist/esm/lib/viewhelpers/tui.js +0 -13
- package/dist/esm/rendering/lib/getTerminalWidth.d.ts +0 -1
- package/dist/esm/rendering/lib/getTerminalWidth.js +0 -2
- package/dist/esm/rendering/react/ComponentPrinter.d.ts +0 -7
- package/dist/esm/rendering/react/ExecRenderBaseCommand.d.ts +0 -8
- package/dist/esm/rendering/react/ExecRenderBaseCommand.js +0 -15
- package/dist/esm/rendering/react/RenderBaseCommand.d.ts +0 -19
- package/dist/esm/rendering/react/RenderBaseCommand.js +0 -45
- package/dist/esm/rendering/react/components/ByteFormat.d.ts +0 -4
- package/dist/esm/rendering/react/components/ByteFormat.js +0 -12
- package/dist/esm/rendering/react/components/Conversation/ConversationMessage.d.ts +0 -8
- package/dist/esm/rendering/react/components/Conversation/ConversationMessage.js +0 -12
- package/dist/esm/rendering/react/components/Conversation/ConversationMessages.d.ts +0 -8
- package/dist/esm/rendering/react/components/Conversation/ConversationMessages.js +0 -13
- package/dist/esm/rendering/react/components/Conversation/ConversationMeta.d.ts +0 -6
- package/dist/esm/rendering/react/components/Conversation/ConversationMeta.js +0 -25
- package/dist/esm/rendering/react/components/Conversation/ConversationStatusUpdate.d.ts +0 -8
- package/dist/esm/rendering/react/components/Conversation/ConversationStatusUpdate.js +0 -6
- package/dist/esm/rendering/react/components/CreatedAt.js +0 -10
- package/dist/esm/rendering/react/components/FormattedDate.d.ts +0 -7
- package/dist/esm/rendering/react/components/FormattedDate.js +0 -18
- package/dist/esm/rendering/react/components/Note.d.ts +0 -10
- package/dist/esm/rendering/react/components/Note.js +0 -8
- package/dist/esm/rendering/react/components/ProjectReadiness.d.ts +0 -7
- package/dist/esm/rendering/react/components/ProjectReadiness.js +0 -16
- package/dist/esm/rendering/react/components/ProjectStatus.d.ts +0 -7
- package/dist/esm/rendering/react/components/ProjectStatus.js +0 -8
- package/dist/esm/rendering/react/components/Success.d.ts +0 -9
- package/dist/esm/rendering/react/components/Success.js +0 -6
- package/dist/esm/rendering/react/components/Table/BodyCell.d.ts +0 -7
- package/dist/esm/rendering/react/components/Table/BodyCell.js +0 -7
- package/dist/esm/rendering/react/components/Table/BodyRow.d.ts +0 -7
- package/dist/esm/rendering/react/components/Table/BodyRow.js +0 -7
- package/dist/esm/rendering/react/components/Table/BodyRows.d.ts +0 -7
- package/dist/esm/rendering/react/components/Table/BodyRows.js +0 -6
- package/dist/esm/rendering/react/components/Table/CellData.d.ts +0 -6
- package/dist/esm/rendering/react/components/Table/CellData.js +0 -32
- package/dist/esm/rendering/react/components/Table/CellLayout.d.ts +0 -8
- package/dist/esm/rendering/react/components/Table/CellLayout.js +0 -17
- package/dist/esm/rendering/react/components/Table/HeaderCell.d.ts +0 -7
- package/dist/esm/rendering/react/components/Table/HeaderCell.js +0 -7
- package/dist/esm/rendering/react/components/Table/HeaderRow.d.ts +0 -8
- package/dist/esm/rendering/react/components/Table/HeaderRow.js +0 -7
- package/dist/esm/rendering/react/components/Table/RowLayout.d.ts +0 -5
- package/dist/esm/rendering/react/components/Table/RowLayout.js +0 -3
- package/dist/esm/rendering/react/components/Table/Table.d.ts +0 -10
- package/dist/esm/rendering/react/components/Table/Table.js +0 -21
- package/dist/esm/rendering/react/components/Table/context.d.ts +0 -9
- package/dist/esm/rendering/react/components/Table/context.js +0 -7
- package/dist/esm/rendering/react/components/Table/index.d.ts +0 -1
- package/dist/esm/rendering/react/components/Table/index.js +0 -1
- package/dist/esm/rendering/react/components/Table/model/Cell.d.ts +0 -19
- package/dist/esm/rendering/react/components/Table/model/Cell.js +0 -24
- package/dist/esm/rendering/react/components/Table/model/Column.d.ts +0 -16
- package/dist/esm/rendering/react/components/Table/model/Column.js +0 -35
- package/dist/esm/rendering/react/components/Table/model/ColumnName.d.ts +0 -7
- package/dist/esm/rendering/react/components/Table/model/ColumnName.js +0 -17
- package/dist/esm/rendering/react/components/Table/model/ColumnOptions.d.ts +0 -25
- package/dist/esm/rendering/react/components/Table/model/ColumnOptions.js +0 -41
- package/dist/esm/rendering/react/components/Table/model/Row.d.ts +0 -14
- package/dist/esm/rendering/react/components/Table/model/Row.js +0 -37
- package/dist/esm/rendering/react/components/Table/model/Table.d.ts +0 -19
- package/dist/esm/rendering/react/components/Table/model/Table.js +0 -48
- package/dist/esm/rendering/react/components/Table/model/index.d.ts +0 -5
- package/dist/esm/rendering/react/components/Table/model/index.js +0 -5
- package/dist/esm/rendering/react/components/Value.d.ts +0 -5
- package/dist/esm/rendering/react/components/Value.js +0 -8
- package/dist/esm/rendering/react/components/WithoutLineBreaks.d.ts +0 -2
- package/dist/esm/rendering/react/components/WithoutLineBreaks.js +0 -7
- package/dist/esm/rendering/react/context.d.ts +0 -9
- package/dist/esm/rendering/react/hooks/useMyUserProfile.d.ts +0 -2
- package/dist/esm/rendering/react/hooks/useMyUserProfile.js +0 -11
- package/dist/esm/rendering/react/json/context.d.ts +0 -5
- package/dist/esm/rendering/react/measure/MeasureChildren.d.ts +0 -8
- package/dist/esm/rendering/react/measure/MeasureChildren.js +0 -19
- package/dist/esm/rendering/react/measure/MeasureContextProvider.d.ts +0 -2
- package/dist/esm/rendering/react/measure/MeasureContextProvider.js +0 -10
- package/dist/esm/rendering/react/measure/MeasureRenderer.d.ts +0 -2
- package/dist/esm/rendering/react/measure/MeasureRenderer.js +0 -22
- package/dist/esm/rendering/react/measure/context.d.ts +0 -18
- package/dist/esm/rendering/react/measure/context.js +0 -48
- package/dist/esm/rendering/react/process.d.ts +0 -42
- package/dist/esm/rendering/react/process.js +0 -24
- package/dist/esm/rendering/react/process_fancy.d.ts +0 -28
- package/dist/esm/rendering/react/process_fancy.js +0 -213
- package/dist/esm/rendering/react/process_flags.d.ts +0 -9
- package/dist/esm/rendering/react/process_flags.js +0 -15
- package/dist/esm/rendering/react/process_quiet.d.ts +0 -12
- package/dist/esm/rendering/react/process_quiet.js +0 -29
- package/dist/esm/rendering/setup/FlagSupportedSetup.d.ts +0 -15
- package/dist/esm/rendering/setup/FlagSupportedSetup.js +0 -22
- package/dist/esm/rendering/setup/TableRenderSetup.d.ts +0 -11
- package/dist/esm/rendering/setup/TableRenderSetup.js +0 -24
- package/dist/esm/rendering/setup/usePromiseSetup.d.ts +0 -12
- package/dist/esm/rendering/setup/usePromiseSetup.js +0 -11
- package/dist/esm/types.d.ts +0 -8
- /package/bin/{mw.cmd → run.cmd} +0 -0
- /package/dist/{esm/rendering/react/lib/observable-value/types.js → commands/conversation/show.test.d.ts} +0 -0
- /package/dist/{esm/types.js → commands/database/mysql/create.test.d.ts} +0 -0
- /package/dist/{esm/lib → lib/resources}/conversation/message_input.js +0 -0
- /package/dist/{esm/rendering → rendering}/react/ComponentPrinter.js +0 -0
- /package/dist/{esm/rendering → rendering}/react/components/CreatedAt.d.ts +0 -0
- /package/dist/{esm/rendering → rendering}/react/components/Filename.d.ts +0 -0
- /package/dist/{esm/rendering → rendering}/react/components/Filename.js +0 -0
- /package/dist/{esm/rendering → rendering}/react/components/Header.d.ts +0 -0
- /package/dist/{esm/rendering → rendering}/react/components/Header.js +0 -0
- /package/dist/{esm/rendering → rendering}/react/components/IDAndShortID.d.ts +0 -0
- /package/dist/{esm/rendering → rendering}/react/components/IDAndShortID.js +0 -0
- /package/dist/{esm/rendering → rendering}/react/components/JSONView.d.ts +0 -0
- /package/dist/{esm/rendering → rendering}/react/components/JSONView.js +0 -0
- /package/dist/{esm/rendering → rendering}/react/components/ListItem.d.ts +0 -0
- /package/dist/{esm/rendering → rendering}/react/components/ListItem.js +0 -0
- /package/dist/{esm/rendering/react/components → rendering/react/components/Project}/ProjectEnabled.d.ts +0 -0
- /package/dist/{esm/rendering/react/components → rendering/react/components/Project}/ProjectEnabled.js +0 -0
- /package/dist/{esm/rendering → rendering}/react/components/Render.d.ts +0 -0
- /package/dist/{esm/rendering → rendering}/react/components/Render.js +0 -0
- /package/dist/{esm/rendering → rendering}/react/components/SingleResult.d.ts +0 -0
- /package/dist/{esm/rendering → rendering}/react/components/SingleResult.js +0 -0
- /package/dist/{esm/rendering → rendering}/react/context.js +0 -0
- /package/dist/{esm/rendering → rendering}/react/json/JsonCollectionProvider.d.ts +0 -0
- /package/dist/{esm/rendering → rendering}/react/json/JsonCollectionProvider.js +0 -0
- /package/dist/{esm/rendering → rendering}/react/json/JsonRenderer.d.ts +0 -0
- /package/dist/{esm/rendering → rendering}/react/json/JsonRenderer.js +0 -0
- /package/dist/{esm/rendering → rendering}/react/json/RenderJson.d.ts +0 -0
- /package/dist/{esm/rendering → rendering}/react/json/RenderJson.js +0 -0
- /package/dist/{esm/rendering → rendering}/react/json/context.js +0 -0
- /package/dist/{esm/rendering → rendering}/react/json/lib/unpackJsonData.d.ts +0 -0
- /package/dist/{esm/rendering → rendering}/react/json/lib/unpackJsonData.js +0 -0
- /package/dist/{esm/rendering → rendering}/react/lib/observable-value/ObservableValue.d.ts +0 -0
- /package/dist/{esm/rendering → rendering}/react/lib/observable-value/ObservableValue.js +0 -0
- /package/dist/{esm/rendering → rendering}/react/lib/observable-value/types.d.ts +0 -0
- /package/dist/{esm/rendering → rendering}/react/lib/observable-value/useWatchObservableValue.d.ts +0 -0
- /package/dist/{esm/rendering → rendering}/react/lib/observable-value/useWatchObservableValue.js +0 -0
|
@@ -0,0 +1,60 @@
|
|
|
1
|
+
import { jsx as _jsx } from "react/jsx-runtime";
|
|
2
|
+
import { ExecRenderBaseCommand } from "../../lib/basecommands/ExecRenderBaseCommand.js";
|
|
3
|
+
import { makeProcessRenderer, processFlags, } from "../../rendering/process/process_flags.js";
|
|
4
|
+
import { projectFlags } from "../../lib/resources/project/flags.js";
|
|
5
|
+
import { Flags } from "@oclif/core";
|
|
6
|
+
import { assertStatus } from "@mittwald/api-client-commons";
|
|
7
|
+
import { Success } from "../../rendering/react/components/Success.js";
|
|
8
|
+
import { waitFlags, waitUntil } from "../../lib/wait.js";
|
|
9
|
+
import { Text } from "ink";
|
|
10
|
+
import { expireFlags } from "../../lib/flags/expireFlags.js";
|
|
11
|
+
export class Create extends ExecRenderBaseCommand {
|
|
12
|
+
static summary = "Create a new backup of a project";
|
|
13
|
+
static flags = {
|
|
14
|
+
...processFlags,
|
|
15
|
+
...projectFlags,
|
|
16
|
+
description: Flags.string({
|
|
17
|
+
description: "a description for the backup.",
|
|
18
|
+
}),
|
|
19
|
+
...expireFlags("backup", true),
|
|
20
|
+
...waitFlags,
|
|
21
|
+
};
|
|
22
|
+
static aliases = ["project:backup:create"];
|
|
23
|
+
static deprecateAliases = true;
|
|
24
|
+
async exec() {
|
|
25
|
+
const p = makeProcessRenderer(this.flags, "Creating backup");
|
|
26
|
+
const projectId = await this.withProjectId(Create);
|
|
27
|
+
const { description, expires } = this.flags;
|
|
28
|
+
const backup = await p.runStep("creating backup", async () => {
|
|
29
|
+
const r = await this.apiClient.backup.createProjectBackup({
|
|
30
|
+
projectId,
|
|
31
|
+
data: {
|
|
32
|
+
description,
|
|
33
|
+
expirationTime: expires.toJSON(),
|
|
34
|
+
},
|
|
35
|
+
});
|
|
36
|
+
assertStatus(r, 201);
|
|
37
|
+
return r.data;
|
|
38
|
+
});
|
|
39
|
+
if (this.flags.wait) {
|
|
40
|
+
const stepWaiting = p.addStep(_jsx(Text, { children: "waiting for backup to be complete" }));
|
|
41
|
+
await waitUntil(async () => {
|
|
42
|
+
const backupResponse = await this.apiClient.backup.getProjectBackup({
|
|
43
|
+
projectBackupId: backup.id,
|
|
44
|
+
});
|
|
45
|
+
if (backupResponse.status === 200 &&
|
|
46
|
+
backupResponse.data.status === "Completed") {
|
|
47
|
+
return true;
|
|
48
|
+
}
|
|
49
|
+
}, this.flags["wait-timeout"]);
|
|
50
|
+
stepWaiting.complete();
|
|
51
|
+
}
|
|
52
|
+
p.complete(_jsx(Success, { children: "Backup successfully created." }));
|
|
53
|
+
return { backupId: backup.id };
|
|
54
|
+
}
|
|
55
|
+
render(executionResult) {
|
|
56
|
+
if (this.flags.quiet) {
|
|
57
|
+
return executionResult.backupId;
|
|
58
|
+
}
|
|
59
|
+
}
|
|
60
|
+
}
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
import { DeleteBaseCommand } from "../../lib/basecommands/DeleteBaseCommand.js";
|
|
2
|
+
export declare class Delete extends DeleteBaseCommand<typeof Delete> {
|
|
3
|
+
static description: string;
|
|
4
|
+
static resourceName: string;
|
|
5
|
+
static flags: {
|
|
6
|
+
force: import("@oclif/core/interfaces").BooleanFlag<boolean>;
|
|
7
|
+
quiet: import("@oclif/core/interfaces").BooleanFlag<boolean>;
|
|
8
|
+
};
|
|
9
|
+
static args: {
|
|
10
|
+
"backup-id": import("@oclif/core/interfaces").Arg<string>;
|
|
11
|
+
};
|
|
12
|
+
static aliases: string[];
|
|
13
|
+
static deprecateAliases: boolean;
|
|
14
|
+
protected deleteResource(): Promise<void>;
|
|
15
|
+
}
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
import { DeleteBaseCommand } from "../../lib/basecommands/DeleteBaseCommand.js";
|
|
2
|
+
import { assertStatus } from "@mittwald/api-client-commons";
|
|
3
|
+
import { backupArgs, withBackupId } from "../../lib/resources/backup/flags.js";
|
|
4
|
+
export class Delete extends DeleteBaseCommand {
|
|
5
|
+
static description = "Delete a backup";
|
|
6
|
+
static resourceName = "backup";
|
|
7
|
+
static flags = { ...DeleteBaseCommand.baseFlags };
|
|
8
|
+
static args = { ...backupArgs };
|
|
9
|
+
static aliases = ["project:backup:delete"];
|
|
10
|
+
static deprecateAliases = true;
|
|
11
|
+
async deleteResource() {
|
|
12
|
+
const projectBackupId = await withBackupId(this.apiClient, Delete, this.flags, this.args, this.config);
|
|
13
|
+
const response = await this.apiClient.backup.deleteProjectBackup({
|
|
14
|
+
projectBackupId,
|
|
15
|
+
});
|
|
16
|
+
assertStatus(response, 204);
|
|
17
|
+
}
|
|
18
|
+
}
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
import { ExecRenderBaseCommand } from "../../lib/basecommands/ExecRenderBaseCommand.js";
|
|
2
|
+
import { ReactNode } from "react";
|
|
3
|
+
import { ProcessRenderer } from "../../rendering/process/process.js";
|
|
4
|
+
import { AxiosResponseHeaders, RawAxiosResponseHeaders } from "@mittwald/api-client-commons";
|
|
5
|
+
type Result = {
|
|
6
|
+
outputFilename: string;
|
|
7
|
+
};
|
|
8
|
+
export declare class Download extends ExecRenderBaseCommand<typeof Download, Result> {
|
|
9
|
+
static description: string;
|
|
10
|
+
static args: {
|
|
11
|
+
"backup-id": import("@oclif/core/interfaces").Arg<string>;
|
|
12
|
+
};
|
|
13
|
+
static flags: {
|
|
14
|
+
output: import("@oclif/core/interfaces").OptionFlag<string | undefined, import("@oclif/core/interfaces").CustomOptions>;
|
|
15
|
+
format: import("@oclif/core/interfaces").OptionFlag<"tar" | "zip", import("@oclif/core/interfaces").CustomOptions>;
|
|
16
|
+
password: import("@oclif/core/interfaces").OptionFlag<string | undefined, import("@oclif/core/interfaces").CustomOptions>;
|
|
17
|
+
"generate-password": import("@oclif/core/interfaces").BooleanFlag<boolean>;
|
|
18
|
+
"prompt-password": import("@oclif/core/interfaces").BooleanFlag<boolean>;
|
|
19
|
+
resume: import("@oclif/core/interfaces").BooleanFlag<boolean>;
|
|
20
|
+
quiet: import("@oclif/core/interfaces").BooleanFlag<boolean>;
|
|
21
|
+
};
|
|
22
|
+
static aliases: string[];
|
|
23
|
+
static deprecateAliases: boolean;
|
|
24
|
+
protected getPassword(p: ProcessRenderer): Promise<string | undefined>;
|
|
25
|
+
protected exec(): Promise<Result>;
|
|
26
|
+
protected getFilename(headers: RawAxiosResponseHeaders | AxiosResponseHeaders): string;
|
|
27
|
+
protected render(executionResult: Result): ReactNode;
|
|
28
|
+
}
|
|
29
|
+
export {};
|
|
@@ -0,0 +1,174 @@
|
|
|
1
|
+
import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
|
|
2
|
+
import { ExecRenderBaseCommand } from "../../lib/basecommands/ExecRenderBaseCommand.js";
|
|
3
|
+
import { Flags } from "@oclif/core";
|
|
4
|
+
import { makeProcessRenderer, processFlags, } from "../../rendering/process/process_flags.js";
|
|
5
|
+
import crypto from "crypto";
|
|
6
|
+
import { Text } from "ink";
|
|
7
|
+
import { Value } from "../../rendering/react/components/Value.js";
|
|
8
|
+
import { assertStatus, } from "@mittwald/api-client-commons";
|
|
9
|
+
import { waitUntil } from "../../lib/wait.js";
|
|
10
|
+
import axios from "axios";
|
|
11
|
+
import * as fs from "fs";
|
|
12
|
+
import { Success } from "../../rendering/react/components/Success.js";
|
|
13
|
+
import ByteQuantity from "../../lib/units/ByteQuantity.js";
|
|
14
|
+
import Duration from "../../lib/units/Duration.js";
|
|
15
|
+
import { backupArgs, withBackupId } from "../../lib/resources/backup/flags.js";
|
|
16
|
+
export class Download extends ExecRenderBaseCommand {
|
|
17
|
+
static description = "Download a backup to your local disk";
|
|
18
|
+
static args = { ...backupArgs };
|
|
19
|
+
static flags = {
|
|
20
|
+
...processFlags,
|
|
21
|
+
output: Flags.string({
|
|
22
|
+
description: "the file to write the backup to; if omitted, the filename will be determined by the server.",
|
|
23
|
+
}),
|
|
24
|
+
format: Flags.custom({
|
|
25
|
+
description: "the file format to download the backup in.",
|
|
26
|
+
options: ["tar", "zip"],
|
|
27
|
+
default: "tar",
|
|
28
|
+
})(),
|
|
29
|
+
password: Flags.string({
|
|
30
|
+
summary: "the password to encrypt the backup with.",
|
|
31
|
+
description: `\
|
|
32
|
+
CAUTION #1: this is not stored anywhere.
|
|
33
|
+
CAUTION #2: it is dangerous to use this option, as the password might be stored in your shell history.`,
|
|
34
|
+
exclusive: ["generate-password", "prompt-password"],
|
|
35
|
+
}),
|
|
36
|
+
"generate-password": Flags.boolean({
|
|
37
|
+
summary: "generate a random password to encrypt the backup with.",
|
|
38
|
+
description: "CAUTION: this is not stored anywhere.",
|
|
39
|
+
exclusive: ["password", "prompt-password"],
|
|
40
|
+
}),
|
|
41
|
+
"prompt-password": Flags.boolean({
|
|
42
|
+
summary: "prompt for a password to encrypt the backup with.",
|
|
43
|
+
description: "CAUTION: this is not stored anywhere.",
|
|
44
|
+
exclusive: ["password", "generate-password"],
|
|
45
|
+
}),
|
|
46
|
+
resume: Flags.boolean({
|
|
47
|
+
summary: "resume a previously interrupted download.",
|
|
48
|
+
dependsOn: ["output"],
|
|
49
|
+
}),
|
|
50
|
+
};
|
|
51
|
+
static aliases = ["project:backup:download"];
|
|
52
|
+
static deprecateAliases = true;
|
|
53
|
+
async getPassword(p) {
|
|
54
|
+
if (this.flags.password) {
|
|
55
|
+
return this.flags.password;
|
|
56
|
+
}
|
|
57
|
+
if (this.flags["generate-password"]) {
|
|
58
|
+
const password = await p.runStep("generating password", async () => {
|
|
59
|
+
return crypto.randomBytes(32).toString("ascii").substring(0, 32);
|
|
60
|
+
});
|
|
61
|
+
p.addInfo(_jsxs(Text, { children: ["generated password: ", _jsx(Value, { children: password })] }));
|
|
62
|
+
return password;
|
|
63
|
+
}
|
|
64
|
+
if (this.flags["prompt-password"]) {
|
|
65
|
+
return await p.addInput(_jsx(Text, { children: "enter backup password" }), true);
|
|
66
|
+
}
|
|
67
|
+
return undefined;
|
|
68
|
+
}
|
|
69
|
+
async exec() {
|
|
70
|
+
const p = makeProcessRenderer(this.flags, "Downloading backup");
|
|
71
|
+
const projectBackupId = await withBackupId(this.apiClient, Download, this.flags, this.args, this.config);
|
|
72
|
+
const { format } = this.flags;
|
|
73
|
+
const password = await this.getPassword(p);
|
|
74
|
+
const backup = await p.runStep("fetching backup", async () => {
|
|
75
|
+
const r = await this.apiClient.backup.getProjectBackup({
|
|
76
|
+
projectBackupId,
|
|
77
|
+
});
|
|
78
|
+
assertStatus(r, 200);
|
|
79
|
+
return r.data;
|
|
80
|
+
});
|
|
81
|
+
if (backup.export && backup.export.phase !== "Expired") {
|
|
82
|
+
p.addInfo(_jsx(Text, { children: "backup download is already prepared" }));
|
|
83
|
+
}
|
|
84
|
+
else {
|
|
85
|
+
await p.runStep("preparing backup download", async () => {
|
|
86
|
+
const r = await this.apiClient.backup.createProjectBackupExport({
|
|
87
|
+
projectBackupId,
|
|
88
|
+
data: {
|
|
89
|
+
format,
|
|
90
|
+
password,
|
|
91
|
+
},
|
|
92
|
+
});
|
|
93
|
+
assertStatus(r, 204);
|
|
94
|
+
});
|
|
95
|
+
}
|
|
96
|
+
const backupExport = await p.runStep("waiting for backup download to be ready", () => {
|
|
97
|
+
return waitUntil(async () => {
|
|
98
|
+
const r = await this.apiClient.backup.getProjectBackup({
|
|
99
|
+
projectBackupId,
|
|
100
|
+
});
|
|
101
|
+
assertStatus(r, 200);
|
|
102
|
+
if (r.data.export?.phase === "Completed") {
|
|
103
|
+
return r.data.export;
|
|
104
|
+
}
|
|
105
|
+
return null;
|
|
106
|
+
}, Duration.fromString("1h"));
|
|
107
|
+
});
|
|
108
|
+
if (!backupExport.downloadURL) {
|
|
109
|
+
throw new Error("backup download is not ready");
|
|
110
|
+
}
|
|
111
|
+
const reqConfig = { responseType: "stream" };
|
|
112
|
+
if (this.flags.resume &&
|
|
113
|
+
this.flags.output &&
|
|
114
|
+
fs.existsSync(this.flags.output)) {
|
|
115
|
+
const stat = fs.statSync(this.flags.output);
|
|
116
|
+
const range = `bytes=${stat.size}-`;
|
|
117
|
+
reqConfig.headers = { Range: range };
|
|
118
|
+
p.addInfo(_jsxs(Text, { children: ["resuming download starting at ", _jsx(Value, { children: stat.size }), " bytes"] }));
|
|
119
|
+
}
|
|
120
|
+
const downloadStep = p.addStep("downloading backup");
|
|
121
|
+
const resp = await axios(backupExport.downloadURL, reqConfig);
|
|
122
|
+
const size = ByteQuantity.fromBytes(parseInt(resp.headers["content-length"] || "0", 10));
|
|
123
|
+
let downloaded = ByteQuantity.fromBytes(0);
|
|
124
|
+
const outputFilename = this.getFilename(resp.headers);
|
|
125
|
+
const outputStream = fs.createWriteStream(outputFilename, {
|
|
126
|
+
flags: this.flags.resume ? "a" : undefined,
|
|
127
|
+
});
|
|
128
|
+
const byteFormattingOpts = {
|
|
129
|
+
maximumFractionDigits: 2,
|
|
130
|
+
minimumFractionDigits: 2,
|
|
131
|
+
};
|
|
132
|
+
resp.data.on("data", (chunk) => {
|
|
133
|
+
downloaded = downloaded.add(ByteQuantity.fromBytes(chunk.length));
|
|
134
|
+
downloadStep.progress(downloaded.format(byteFormattingOpts) +
|
|
135
|
+
" of " +
|
|
136
|
+
size.format(byteFormattingOpts));
|
|
137
|
+
outputStream.write(chunk);
|
|
138
|
+
});
|
|
139
|
+
await new Promise((res) => {
|
|
140
|
+
resp.data.on("end", () => {
|
|
141
|
+
downloadStep.complete();
|
|
142
|
+
res();
|
|
143
|
+
});
|
|
144
|
+
resp.data.on("error", (err) => {
|
|
145
|
+
downloadStep.error(err);
|
|
146
|
+
res();
|
|
147
|
+
});
|
|
148
|
+
});
|
|
149
|
+
p.complete(_jsxs(Success, { children: ["The backup was successfully downloaded to", " ", _jsx(Value, { children: outputFilename })] }));
|
|
150
|
+
return { outputFilename };
|
|
151
|
+
}
|
|
152
|
+
getFilename(headers) {
|
|
153
|
+
if (this.flags.output) {
|
|
154
|
+
return this.flags.output;
|
|
155
|
+
}
|
|
156
|
+
const disposition = headers["content-disposition"];
|
|
157
|
+
if (disposition) {
|
|
158
|
+
const match = disposition.match(/filename=("?)(.*)\1/);
|
|
159
|
+
if (match) {
|
|
160
|
+
return match[2];
|
|
161
|
+
}
|
|
162
|
+
}
|
|
163
|
+
if (this.flags.format === "tar") {
|
|
164
|
+
return "backup.tar.gz";
|
|
165
|
+
}
|
|
166
|
+
return "backup.zip";
|
|
167
|
+
}
|
|
168
|
+
render(executionResult) {
|
|
169
|
+
if (this.flags.quiet) {
|
|
170
|
+
return executionResult.outputFilename;
|
|
171
|
+
}
|
|
172
|
+
return undefined;
|
|
173
|
+
}
|
|
174
|
+
}
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
import { RenderBaseCommand } from "../../lib/basecommands/RenderBaseCommand.js";
|
|
2
|
+
import { ReactNode } from "react";
|
|
3
|
+
export default class Get extends RenderBaseCommand<typeof Get> {
|
|
4
|
+
static description: string;
|
|
5
|
+
static args: {
|
|
6
|
+
"backup-id": import("@oclif/core/interfaces").Arg<string>;
|
|
7
|
+
};
|
|
8
|
+
static flags: {
|
|
9
|
+
[x: string]: import("@oclif/core/interfaces").Flag<any>;
|
|
10
|
+
};
|
|
11
|
+
static aliases: string[];
|
|
12
|
+
static deprecateAliases: boolean;
|
|
13
|
+
protected render(): ReactNode;
|
|
14
|
+
}
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
import { jsx as _jsx } from "react/jsx-runtime";
|
|
2
|
+
import { RenderBaseCommand } from "../../lib/basecommands/RenderBaseCommand.js";
|
|
3
|
+
import { useProjectBackup } from "../../lib/resources/projectbackup/hooks.js";
|
|
4
|
+
import { ProjectBackupDetails } from "../../rendering/react/components/ProjectBackup/ProjectBackupDetails.js";
|
|
5
|
+
import { RenderJson } from "../../rendering/react/json/RenderJson.js";
|
|
6
|
+
import { GetBaseCommand } from "../../lib/basecommands/GetBaseCommand.js";
|
|
7
|
+
import { Box } from "ink";
|
|
8
|
+
import { backupArgs, withBackupId } from "../../lib/resources/backup/flags.js";
|
|
9
|
+
import { usePromise } from "@mittwald/react-use-promise";
|
|
10
|
+
export default class Get extends RenderBaseCommand {
|
|
11
|
+
static description = "Show details of a backup.";
|
|
12
|
+
static args = { ...backupArgs };
|
|
13
|
+
static flags = {
|
|
14
|
+
...GetBaseCommand.baseFlags,
|
|
15
|
+
};
|
|
16
|
+
static aliases = ["project:backup:get"];
|
|
17
|
+
static deprecateAliases = true;
|
|
18
|
+
render() {
|
|
19
|
+
const backupId = usePromise(() => withBackupId(this.apiClient, Get, this.flags, this.args, this.config), []);
|
|
20
|
+
const projectBackup = useProjectBackup(backupId);
|
|
21
|
+
if (this.flags.output === "json") {
|
|
22
|
+
return _jsx(RenderJson, { name: "projectBackup", data: projectBackup });
|
|
23
|
+
}
|
|
24
|
+
return (_jsx(Box, { marginBottom: 1, children: _jsx(ProjectBackupDetails, { projectBackup: projectBackup }) }));
|
|
25
|
+
}
|
|
26
|
+
}
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
import { Response, Simplify } from "@mittwald/api-client-commons";
|
|
2
|
+
import { type MittwaldAPIV2 } from "@mittwald/api-client";
|
|
3
|
+
import { ListBaseCommand } from "../../lib/basecommands/ListBaseCommand.js";
|
|
4
|
+
import { ListColumns } from "../../rendering/formatter/ListFormatter.js";
|
|
5
|
+
type BackupProjectBackup = MittwaldAPIV2.Components.Schemas.BackupProjectBackup;
|
|
6
|
+
type ListResponse = Response<BackupProjectBackup[]>;
|
|
7
|
+
type ListItem = Simplify<BackupProjectBackup>;
|
|
8
|
+
export declare class List extends ListBaseCommand<typeof List, ListItem, ListResponse> {
|
|
9
|
+
static description: string;
|
|
10
|
+
static args: {};
|
|
11
|
+
static flags: {
|
|
12
|
+
"project-id": import("@oclif/core/interfaces").OptionFlag<string>;
|
|
13
|
+
output: import("@oclif/core/interfaces").OptionFlag<"json" | "txt" | "yaml" | "csv" | "tsv">;
|
|
14
|
+
extended: import("@oclif/core/interfaces").BooleanFlag<boolean>;
|
|
15
|
+
"no-header": import("@oclif/core/interfaces").BooleanFlag<boolean>;
|
|
16
|
+
"no-truncate": import("@oclif/core/interfaces").BooleanFlag<boolean>;
|
|
17
|
+
"no-relative-dates": import("@oclif/core/interfaces").BooleanFlag<boolean>;
|
|
18
|
+
"csv-separator": import("@oclif/core/interfaces").OptionFlag<"," | ";">;
|
|
19
|
+
};
|
|
20
|
+
static aliases: string[];
|
|
21
|
+
static deprecateAliases: boolean;
|
|
22
|
+
getData(): Promise<ListResponse>;
|
|
23
|
+
protected getColumns(data: ListItem[]): ListColumns<ListItem>;
|
|
24
|
+
}
|
|
25
|
+
export {};
|
|
@@ -0,0 +1,36 @@
|
|
|
1
|
+
import { assertStatus } from "@mittwald/api-client";
|
|
2
|
+
import { ListBaseCommand } from "../../lib/basecommands/ListBaseCommand.js";
|
|
3
|
+
import { projectFlags } from "../../lib/resources/project/flags.js";
|
|
4
|
+
import ListDateColumnFormatter from "../../rendering/formatter/ListDateColumnFormatter.js";
|
|
5
|
+
export class List extends ListBaseCommand {
|
|
6
|
+
static description = "List Backups for a given Project.";
|
|
7
|
+
static args = {};
|
|
8
|
+
static flags = {
|
|
9
|
+
...ListBaseCommand.baseFlags,
|
|
10
|
+
...projectFlags,
|
|
11
|
+
};
|
|
12
|
+
static aliases = ["project:backup:list"];
|
|
13
|
+
static deprecateAliases = true;
|
|
14
|
+
async getData() {
|
|
15
|
+
const projectId = await this.withProjectId(List);
|
|
16
|
+
const response = await this.apiClient.backup.listProjectBackups({
|
|
17
|
+
projectId,
|
|
18
|
+
});
|
|
19
|
+
assertStatus(response, 200);
|
|
20
|
+
return response;
|
|
21
|
+
}
|
|
22
|
+
getColumns(data) {
|
|
23
|
+
const { id, createdAt } = super.getColumns(data);
|
|
24
|
+
const dateColumnBuilder = new ListDateColumnFormatter(this.flags);
|
|
25
|
+
return {
|
|
26
|
+
id,
|
|
27
|
+
status: {},
|
|
28
|
+
createdAt,
|
|
29
|
+
expiresIn: dateColumnBuilder.buildColumn({
|
|
30
|
+
header: "Expires in",
|
|
31
|
+
column: "expiresAt",
|
|
32
|
+
fallback: "never",
|
|
33
|
+
}),
|
|
34
|
+
};
|
|
35
|
+
}
|
|
36
|
+
}
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
import { ExecRenderBaseCommand } from "../../../lib/basecommands/ExecRenderBaseCommand.js";
|
|
2
|
+
import { ReactNode } from "react";
|
|
3
|
+
type Result = {
|
|
4
|
+
projectBackupScheduleId: string;
|
|
5
|
+
};
|
|
6
|
+
export declare class Create extends ExecRenderBaseCommand<typeof Create, Result> {
|
|
7
|
+
static summary: string;
|
|
8
|
+
static flags: {
|
|
9
|
+
description: import("@oclif/core/interfaces").OptionFlag<string | undefined, import("@oclif/core/interfaces").CustomOptions>;
|
|
10
|
+
schedule: import("@oclif/core/interfaces").OptionFlag<string, import("@oclif/core/interfaces").CustomOptions>;
|
|
11
|
+
ttl: import("@oclif/core/interfaces").OptionFlag<string, import("@oclif/core/interfaces").CustomOptions>;
|
|
12
|
+
quiet: import("@oclif/core/interfaces").BooleanFlag<boolean>;
|
|
13
|
+
"project-id": import("@oclif/core/interfaces").OptionFlag<string>;
|
|
14
|
+
};
|
|
15
|
+
protected exec(): Promise<Result>;
|
|
16
|
+
protected render({ projectBackupScheduleId }: Result): ReactNode;
|
|
17
|
+
}
|
|
18
|
+
export {};
|
|
@@ -0,0 +1,57 @@
|
|
|
1
|
+
import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
|
|
2
|
+
import { ExecRenderBaseCommand } from "../../../lib/basecommands/ExecRenderBaseCommand.js";
|
|
3
|
+
import { makeProcessRenderer, processFlags, } from "../../../rendering/process/process_flags.js";
|
|
4
|
+
import { assertStatus } from "@mittwald/api-client-commons";
|
|
5
|
+
import { Success } from "../../../rendering/react/components/Success.js";
|
|
6
|
+
import { Value } from "../../../rendering/react/components/Value.js";
|
|
7
|
+
import { projectFlags } from "../../../lib/resources/project/flags.js";
|
|
8
|
+
import { backupScheduleFlagDefinitions } from "../../../lib/resources/backup/schedule/flags.js";
|
|
9
|
+
export class Create extends ExecRenderBaseCommand {
|
|
10
|
+
static summary = "Create a new backup schedule";
|
|
11
|
+
static flags = {
|
|
12
|
+
...projectFlags,
|
|
13
|
+
...processFlags,
|
|
14
|
+
description: backupScheduleFlagDefinitions.description(),
|
|
15
|
+
schedule: backupScheduleFlagDefinitions.schedule({ required: true }),
|
|
16
|
+
ttl: backupScheduleFlagDefinitions.ttl({ required: true }),
|
|
17
|
+
};
|
|
18
|
+
async exec() {
|
|
19
|
+
const process = makeProcessRenderer(this.flags, "Creating a new backup schedule");
|
|
20
|
+
const projectId = await this.withProjectId(Create);
|
|
21
|
+
const { description, schedule, ttl } = this.flags;
|
|
22
|
+
const backupScheduleCreationPayload = {
|
|
23
|
+
schedule,
|
|
24
|
+
ttl,
|
|
25
|
+
};
|
|
26
|
+
if (description) {
|
|
27
|
+
backupScheduleCreationPayload.description = description;
|
|
28
|
+
}
|
|
29
|
+
const { id: projectBackupScheduleId } = await process.runStep("creating backup schedule", async () => {
|
|
30
|
+
const r = await this.apiClient.backup.createProjectBackupSchedule({
|
|
31
|
+
projectId,
|
|
32
|
+
data: backupScheduleCreationPayload,
|
|
33
|
+
});
|
|
34
|
+
assertStatus(r, 201);
|
|
35
|
+
return r.data;
|
|
36
|
+
});
|
|
37
|
+
const projectBackupSchedule = await process.runStep("checking newly created backup schedule", async () => {
|
|
38
|
+
const r = await this.apiClient.backup.getProjectBackupSchedule({
|
|
39
|
+
projectBackupScheduleId,
|
|
40
|
+
});
|
|
41
|
+
assertStatus(r, 200);
|
|
42
|
+
return r.data;
|
|
43
|
+
});
|
|
44
|
+
if (description) {
|
|
45
|
+
await process.complete(_jsxs(Success, { children: ["The backup schedule \"", _jsx(Value, { children: projectBackupSchedule.description }), "\" was successfully created."] }));
|
|
46
|
+
}
|
|
47
|
+
else {
|
|
48
|
+
await process.complete(_jsx(Success, { children: "The backup schedule was successfully created." }));
|
|
49
|
+
}
|
|
50
|
+
return { projectBackupScheduleId };
|
|
51
|
+
}
|
|
52
|
+
render({ projectBackupScheduleId }) {
|
|
53
|
+
if (this.flags.quiet) {
|
|
54
|
+
return projectBackupScheduleId;
|
|
55
|
+
}
|
|
56
|
+
}
|
|
57
|
+
}
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import { DeleteBaseCommand } from "../../../lib/basecommands/DeleteBaseCommand.js";
|
|
2
|
+
export declare class Delete extends DeleteBaseCommand<typeof Delete> {
|
|
3
|
+
static description: string;
|
|
4
|
+
static resourceName: string;
|
|
5
|
+
static args: {
|
|
6
|
+
"backup-schedule-id": import("@oclif/core/interfaces").Arg<string, Record<string, unknown>>;
|
|
7
|
+
};
|
|
8
|
+
static flags: {
|
|
9
|
+
quiet: import("@oclif/core/interfaces").BooleanFlag<boolean>;
|
|
10
|
+
};
|
|
11
|
+
protected deleteResource(): Promise<void>;
|
|
12
|
+
}
|
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
import { DeleteBaseCommand } from "../../../lib/basecommands/DeleteBaseCommand.js";
|
|
2
|
+
import assertSuccess from "../../../lib/apiutil/assert_success.js";
|
|
3
|
+
import { Args } from "@oclif/core";
|
|
4
|
+
import { makeProcessRenderer, processFlags, } from "../../../rendering/process/process_flags.js";
|
|
5
|
+
export class Delete extends DeleteBaseCommand {
|
|
6
|
+
static description = "Delete a backup schedule";
|
|
7
|
+
static resourceName = "backupSchedule";
|
|
8
|
+
static args = {
|
|
9
|
+
"backup-schedule-id": Args.string({
|
|
10
|
+
description: "ID of schedule to delete",
|
|
11
|
+
required: true,
|
|
12
|
+
}),
|
|
13
|
+
};
|
|
14
|
+
static flags = {
|
|
15
|
+
...processFlags,
|
|
16
|
+
};
|
|
17
|
+
async deleteResource() {
|
|
18
|
+
const process = makeProcessRenderer(this.flags, "Deleting backup schedule");
|
|
19
|
+
const projectBackupScheduleId = this.args["backup-schedule-id"];
|
|
20
|
+
const currentBackupSchedule = await this.apiClient.backup.getProjectBackupSchedule({
|
|
21
|
+
projectBackupScheduleId,
|
|
22
|
+
});
|
|
23
|
+
if (currentBackupSchedule.data.isSystemBackup) {
|
|
24
|
+
await process.error("The system backup created through this schedule is reserved to restore your project in an emergency. " +
|
|
25
|
+
"It can not be deleted.");
|
|
26
|
+
}
|
|
27
|
+
const response = await this.apiClient.backup.deleteProjectBackupSchedule({
|
|
28
|
+
projectBackupScheduleId,
|
|
29
|
+
});
|
|
30
|
+
assertSuccess(response);
|
|
31
|
+
}
|
|
32
|
+
}
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
import { Simplify } from "@mittwald/api-client-commons";
|
|
2
|
+
import { MittwaldAPIV2, MittwaldAPIV2Client } from "@mittwald/api-client";
|
|
3
|
+
import { ListColumns } from "../../../rendering/formatter/ListFormatter.js";
|
|
4
|
+
import { ListBaseCommand } from "../../../lib/basecommands/ListBaseCommand.js";
|
|
5
|
+
type BackupProjectBackupSchedule = MittwaldAPIV2.Components.Schemas.BackupProjectBackupSchedule;
|
|
6
|
+
type ResponseItem = Simplify<BackupProjectBackupSchedule>;
|
|
7
|
+
type Response = Awaited<ReturnType<MittwaldAPIV2Client["backup"]["listProjectBackupSchedules"]>>;
|
|
8
|
+
export declare class List extends ListBaseCommand<typeof List, ResponseItem, Response> {
|
|
9
|
+
static description: string;
|
|
10
|
+
static args: {};
|
|
11
|
+
static flags: {
|
|
12
|
+
"project-id": import("@oclif/core/interfaces").OptionFlag<string>;
|
|
13
|
+
output: import("@oclif/core/interfaces").OptionFlag<"json" | "txt" | "yaml" | "csv" | "tsv">;
|
|
14
|
+
extended: import("@oclif/core/interfaces").BooleanFlag<boolean>;
|
|
15
|
+
"no-header": import("@oclif/core/interfaces").BooleanFlag<boolean>;
|
|
16
|
+
"no-truncate": import("@oclif/core/interfaces").BooleanFlag<boolean>;
|
|
17
|
+
"no-relative-dates": import("@oclif/core/interfaces").BooleanFlag<boolean>;
|
|
18
|
+
"csv-separator": import("@oclif/core/interfaces").OptionFlag<"," | ";">;
|
|
19
|
+
};
|
|
20
|
+
static aliases: string[];
|
|
21
|
+
static deprecateAliases: boolean;
|
|
22
|
+
getData(): Promise<Response>;
|
|
23
|
+
protected getColumns(data: ResponseItem[]): ListColumns<ResponseItem>;
|
|
24
|
+
}
|
|
25
|
+
export {};
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
import { ListBaseCommand } from "../../../lib/basecommands/ListBaseCommand.js";
|
|
2
|
+
import { projectFlags, withProjectId, } from "../../../lib/resources/project/flags.js";
|
|
3
|
+
export class List extends ListBaseCommand {
|
|
4
|
+
static description = "List backup schedules belonging to a given project.";
|
|
5
|
+
static args = {};
|
|
6
|
+
static flags = {
|
|
7
|
+
...ListBaseCommand.baseFlags,
|
|
8
|
+
...projectFlags,
|
|
9
|
+
};
|
|
10
|
+
static aliases = ["project:backupschedule:list"];
|
|
11
|
+
static deprecateAliases = true;
|
|
12
|
+
async getData() {
|
|
13
|
+
const projectId = await withProjectId(this.apiClient, List, this.flags, this.args, this.config);
|
|
14
|
+
return await this.apiClient.backup.listProjectBackupSchedules({
|
|
15
|
+
projectId,
|
|
16
|
+
});
|
|
17
|
+
}
|
|
18
|
+
getColumns(data) {
|
|
19
|
+
const { id, createdAt } = super.getColumns(data);
|
|
20
|
+
return {
|
|
21
|
+
id,
|
|
22
|
+
isSystemBackup: { header: "System backup" },
|
|
23
|
+
schedule: {},
|
|
24
|
+
ttl: { header: "TTL" },
|
|
25
|
+
createdAt,
|
|
26
|
+
};
|
|
27
|
+
}
|
|
28
|
+
}
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
import { ExecRenderBaseCommand } from "../../../lib/basecommands/ExecRenderBaseCommand.js";
|
|
2
|
+
import { ReactNode } from "react";
|
|
3
|
+
type UpdateResult = void;
|
|
4
|
+
export default class Update extends ExecRenderBaseCommand<typeof Update, UpdateResult> {
|
|
5
|
+
static description: string;
|
|
6
|
+
static args: {
|
|
7
|
+
"backup-schedule-id": import("@oclif/core/interfaces").Arg<string, Record<string, unknown>>;
|
|
8
|
+
};
|
|
9
|
+
static flags: {
|
|
10
|
+
description: import("@oclif/core/interfaces").OptionFlag<string | undefined, import("@oclif/core/interfaces").CustomOptions>;
|
|
11
|
+
schedule: import("@oclif/core/interfaces").OptionFlag<string | undefined, import("@oclif/core/interfaces").CustomOptions>;
|
|
12
|
+
ttl: import("@oclif/core/interfaces").OptionFlag<string | undefined, import("@oclif/core/interfaces").CustomOptions>;
|
|
13
|
+
quiet: import("@oclif/core/interfaces").BooleanFlag<boolean>;
|
|
14
|
+
};
|
|
15
|
+
protected exec(): Promise<void>;
|
|
16
|
+
protected render(): ReactNode;
|
|
17
|
+
}
|
|
18
|
+
export {};
|