@mittwald/cli 1.0.0-alpha.36 → 1.0.0-alpha.37
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 +392 -245
- package/bin/dev.cmd +1 -1
- package/bin/dev.js +5 -0
- package/bin/run.js +1 -1
- package/dist/{esm/BaseCommand.js → BaseCommand.js} +2 -1
- package/dist/{esm/Formatter.d.ts → Formatter.d.ts} +12 -2
- package/dist/{esm/Formatter.js → Formatter.js} +11 -2
- package/dist/ListBaseCommand.d.ts +44 -0
- package/dist/{esm/ListBaseCommand.js → ListBaseCommand.js} +4 -6
- package/dist/{esm/commands → commands}/app/copy.js +2 -2
- package/dist/commands/app/dependency/list.d.ts +39 -0
- package/dist/commands/app/dependency/versions.d.ts +41 -0
- package/dist/{esm/commands → commands}/app/download.js +4 -18
- package/dist/{esm/commands → commands}/app/install/drupal.d.ts +2 -1
- package/dist/{esm/commands → commands}/app/install/drupal.js +5 -5
- package/dist/{esm/commands → commands}/app/install/shopware6.d.ts +2 -1
- package/dist/{esm/commands → commands}/app/install/shopware6.js +5 -5
- package/dist/{esm/commands → commands}/app/install/typo3.d.ts +2 -1
- package/dist/{esm/commands → commands}/app/install/typo3.js +5 -5
- package/dist/{esm/commands → commands}/app/install/wordpress.d.ts +2 -1
- package/dist/{esm/commands → commands}/app/install/wordpress.js +5 -5
- package/dist/commands/app/list.d.ts +46 -0
- package/dist/commands/backup/list.d.ts +43 -0
- package/dist/{esm/commands → commands}/backup/list.js +4 -2
- package/dist/commands/backup/schedule/list.d.ts +43 -0
- package/dist/{esm/commands → commands}/context/get.js +19 -6
- package/dist/{esm/commands → commands}/context/reset.js +1 -1
- package/dist/{esm/commands → commands}/context/set.js +1 -1
- package/dist/commands/conversation/categories.d.ts +39 -0
- package/dist/commands/conversation/list.d.ts +39 -0
- package/dist/{esm/commands → commands}/conversation/show.d.ts +1 -0
- package/dist/commands/conversation/show.js +103 -0
- package/dist/commands/conversation/show.test.js +72 -0
- package/dist/commands/cronjob/execution/list.d.ts +42 -0
- package/dist/{esm/commands → commands}/cronjob/execution/list.js +3 -3
- package/dist/commands/cronjob/list.d.ts +43 -0
- package/dist/commands/database/mysql/charsets.d.ts +39 -0
- package/dist/commands/database/mysql/list.d.ts +40 -0
- package/dist/commands/database/mysql/user/list.d.ts +40 -0
- package/dist/commands/database/mysql/versions.d.ts +39 -0
- package/dist/commands/database/redis/list.d.ts +40 -0
- package/dist/commands/database/redis/versions.d.ts +40 -0
- package/dist/commands/ddev/init.d.ts +22 -0
- package/dist/commands/ddev/init.js +120 -0
- package/dist/commands/ddev/render-config.d.ts +12 -0
- package/dist/commands/ddev/render-config.js +22 -0
- package/dist/{esm/commands → commands}/domain/dnszone/get.d.ts +3 -2
- package/dist/commands/domain/dnszone/list.d.ts +40 -0
- package/dist/{esm/commands → commands}/domain/get.d.ts +3 -2
- package/dist/commands/domain/list.d.ts +40 -0
- package/dist/{esm/commands → commands}/domain/virtualhost/create.d.ts +2 -2
- package/dist/{esm/commands → commands}/domain/virtualhost/get.d.ts +1 -1
- package/dist/{esm/commands → commands}/domain/virtualhost/get.js +2 -2
- package/dist/commands/domain/virtualhost/list.d.ts +41 -0
- package/dist/{esm/commands → commands}/login/status.js +2 -1
- package/dist/commands/mail/address/list.d.ts +40 -0
- package/dist/commands/mail/deliverybox/list.d.ts +41 -0
- package/dist/{esm/commands → commands}/org/get.d.ts +1 -1
- package/dist/commands/org/invite/list-own.d.ts +73 -0
- package/dist/{esm/commands → commands}/org/invite/list-own.js +1 -3
- package/dist/commands/org/invite/list.d.ts +41 -0
- package/dist/commands/org/list.d.ts +41 -0
- package/dist/commands/org/membership/list-own.d.ts +73 -0
- package/dist/{esm/commands → commands}/org/membership/list-own.js +5 -7
- package/dist/commands/org/membership/list.d.ts +67 -0
- package/dist/{esm/commands → commands}/org/membership/list.js +4 -2
- package/dist/{esm/commands → commands}/project/create.js +1 -1
- package/dist/{esm/commands → commands}/project/filesystem/usage.d.ts +1 -1
- package/dist/commands/project/invite/list-own.d.ts +39 -0
- package/dist/commands/project/invite/list.d.ts +40 -0
- package/dist/commands/project/list.d.ts +40 -0
- package/dist/commands/project/membership/list-own.d.ts +39 -0
- package/dist/commands/project/membership/list.d.ts +55 -0
- package/dist/commands/server/list.d.ts +39 -0
- package/dist/commands/sftp-user/list.d.ts +43 -0
- package/dist/commands/ssh-user/list.d.ts +43 -0
- package/dist/commands/user/api-token/list.d.ts +39 -0
- package/dist/{esm/commands → commands}/user/api-token/list.js +4 -5
- package/dist/commands/user/session/list.d.ts +39 -0
- package/dist/commands/user/ssh-key/list.d.ts +39 -0
- package/dist/{esm/commands → commands}/user/ssh-key/list.js +2 -5
- package/dist/{esm/lib → lib}/app/hooks.d.ts +7 -6
- package/dist/{esm/lib → lib}/app/install.d.ts +2 -1
- package/dist/{esm/lib → lib}/app/uuid.d.ts +3 -2
- package/dist/{esm/lib → lib}/app/versions.d.ts +1 -2
- package/dist/{esm/lib → lib}/context.d.ts +2 -1
- package/dist/{esm/lib → lib}/context.js +3 -1
- package/dist/lib/context_ddev.d.ts +20 -0
- package/dist/lib/context_ddev.js +81 -0
- package/dist/{esm/lib → lib}/context_flags.js +1 -1
- package/dist/{esm/lib → lib}/context_terraform.js +3 -9
- package/dist/{esm/lib → lib}/database/common.d.ts +3 -2
- package/dist/lib/ddev/config.d.ts +29 -0
- package/dist/lib/ddev/config.js +28 -0
- package/dist/lib/ddev/config_builder.d.ts +16 -0
- package/dist/lib/ddev/config_builder.js +124 -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 +3 -0
- package/dist/lib/ddev/flags.js +10 -0
- package/dist/lib/domain/dnszone/records.d.ts +18 -0
- package/dist/lib/fsutil.d.ts +2 -0
- package/dist/lib/fsutil.js +16 -0
- package/dist/{esm/lib → lib}/handleError.d.ts +3 -2
- package/dist/{esm/lib → lib}/project/flags.js +7 -4
- package/dist/lib/project/hooks.d.ts +4 -0
- package/dist/lib/projectbackup/hooks.d.ts +6 -0
- package/dist/{esm/lib → lib}/ssh/exec.d.ts +1 -1
- package/dist/{esm/lib → lib}/ssh/exec.js +9 -4
- package/dist/lib/viewhelpers/date.d.ts +7 -0
- package/dist/lib/viewhelpers/date.js +47 -0
- package/dist/lib/viewhelpers/list_column_date.d.ts +14 -0
- package/dist/lib/viewhelpers/list_column_date.js +21 -0
- package/dist/lib/viewhelpers/tui.d.ts +2 -0
- package/dist/lib/viewhelpers/tui.js +13 -0
- package/dist/{esm/rendering → rendering}/process/components/ProcessInput.js +1 -1
- package/dist/rendering/process/components/ProcessValidationErrors.d.ts +8 -0
- package/dist/{esm/rendering → rendering}/process/process.js +3 -0
- package/dist/rendering/process/process_exec.d.ts +3 -0
- package/dist/rendering/process/process_exec.js +27 -0
- package/dist/rendering/react/components/AppInstallation/AppInstallationDetails.d.ts +9 -0
- package/dist/rendering/react/components/AppInstallation/AppInstallationStatus.d.ts +10 -0
- package/dist/rendering/react/components/AppInstallation/AppSystemSoftware.d.ts +7 -0
- package/dist/{esm/rendering → rendering}/react/components/Conversation/ConversationMessage.d.ts +1 -1
- package/dist/{esm/rendering → rendering}/react/components/Conversation/ConversationMessages.d.ts +1 -1
- package/dist/{esm/rendering → rendering}/react/components/Conversation/ConversationStatusUpdate.d.ts +1 -1
- package/dist/{esm/rendering → rendering}/react/components/CronJob/CronJobDetails.d.ts +2 -2
- 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/DnsZoneRecords.d.ts +7 -0
- package/dist/rendering/react/components/DnsZone/DnsZoneRecordsA.d.ts +5 -0
- package/dist/rendering/react/components/DnsZone/DnsZoneRecordsAAAA.d.ts +5 -0
- package/dist/rendering/react/components/DnsZone/DnsZoneRecordsMX.d.ts +5 -0
- package/dist/rendering/react/components/DnsZone/DnsZoneRecordsSRV.d.ts +5 -0
- package/dist/rendering/react/components/DnsZone/DnsZoneRecordsTXT.d.ts +5 -0
- package/dist/rendering/react/components/Domain/DomainBaseDetails.d.ts +7 -0
- package/dist/rendering/react/components/Domain/DomainDetails.d.ts +7 -0
- package/dist/rendering/react/components/Domain/DomainHandle.d.ts +8 -0
- package/dist/{esm/rendering → rendering}/react/components/Ingress/DnsValidationErrors.d.ts +2 -2
- package/dist/rendering/react/components/Organization/OrganizationOwner.d.ts +7 -0
- package/dist/{esm/rendering → rendering}/react/components/Project/ProjectSimpleStatus.d.ts +1 -1
- package/dist/{esm/rendering → rendering}/react/components/Project/ProjectStatus.d.ts +2 -2
- package/dist/rendering/react/components/ProjectBackup/ProjectBackupDetails.d.ts +7 -0
- package/dist/rendering/react/components/ProjectBackup/ProjectBackupStatus.d.ts +7 -0
- package/dist/rendering/react/components/Success.d.ts +10 -0
- package/dist/{esm/rendering → rendering}/react/components/Success.js +4 -2
- package/dist/{esm/rendering → rendering}/react/hooks/useMyUserProfile.d.ts +1 -1
- package/dist/types.js +1 -0
- package/package.json +26 -25
- package/bin/dev +0 -17
- package/dist/esm/ListBaseCommand.d.ts +0 -22
- package/dist/esm/commands/app/dependency/list.d.ts +0 -18
- package/dist/esm/commands/app/dependency/versions.d.ts +0 -20
- package/dist/esm/commands/app/list.d.ts +0 -24
- package/dist/esm/commands/backup/list.d.ts +0 -21
- package/dist/esm/commands/backup/schedule/list.d.ts +0 -21
- package/dist/esm/commands/conversation/categories.d.ts +0 -18
- package/dist/esm/commands/conversation/list.d.ts +0 -18
- package/dist/esm/commands/conversation/show.js +0 -74
- package/dist/esm/commands/cronjob/execution/list.d.ts +0 -20
- package/dist/esm/commands/cronjob/list.d.ts +0 -21
- package/dist/esm/commands/database/mysql/charsets.d.ts +0 -18
- package/dist/esm/commands/database/mysql/list.d.ts +0 -18
- package/dist/esm/commands/database/mysql/user/list.d.ts +0 -18
- package/dist/esm/commands/database/mysql/versions.d.ts +0 -18
- package/dist/esm/commands/database/redis/list.d.ts +0 -18
- package/dist/esm/commands/database/redis/versions.d.ts +0 -18
- package/dist/esm/commands/domain/dnszone/list.d.ts +0 -18
- package/dist/esm/commands/domain/list.d.ts +0 -18
- package/dist/esm/commands/domain/virtualhost/list.d.ts +0 -19
- package/dist/esm/commands/mail/address/list.d.ts +0 -18
- package/dist/esm/commands/mail/deliverybox/list.d.ts +0 -19
- package/dist/esm/commands/org/invite/list-own.d.ts +0 -51
- package/dist/esm/commands/org/invite/list.d.ts +0 -19
- package/dist/esm/commands/org/list.d.ts +0 -20
- package/dist/esm/commands/org/membership/list-own.d.ts +0 -50
- package/dist/esm/commands/org/membership/list.d.ts +0 -41
- package/dist/esm/commands/project/invite/list-own.d.ts +0 -18
- package/dist/esm/commands/project/invite/list.d.ts +0 -18
- package/dist/esm/commands/project/list.d.ts +0 -19
- package/dist/esm/commands/project/membership/list-own.d.ts +0 -18
- package/dist/esm/commands/project/membership/list.d.ts +0 -31
- package/dist/esm/commands/server/list.d.ts +0 -18
- package/dist/esm/commands/sftp-user/list.d.ts +0 -21
- package/dist/esm/commands/ssh-user/list.d.ts +0 -21
- package/dist/esm/commands/user/api-token/list.d.ts +0 -18
- package/dist/esm/commands/user/session/list.d.ts +0 -18
- package/dist/esm/commands/user/ssh-key/list.d.ts +0 -18
- package/dist/esm/lib/domain/dnszone/records.d.ts +0 -17
- package/dist/esm/lib/project/hooks.d.ts +0 -3
- package/dist/esm/lib/projectbackup/hooks.d.ts +0 -5
- package/dist/esm/lib/viewhelpers/date.d.ts +0 -5
- package/dist/esm/lib/viewhelpers/date.js +0 -23
- package/dist/esm/lib/viewhelpers/tui.d.ts +0 -2
- package/dist/esm/lib/viewhelpers/tui.js +0 -13
- package/dist/esm/rendering/process/components/ProcessValidationErrors.d.ts +0 -7
- package/dist/esm/rendering/react/components/AppInstallation/AppInstallationDetails.d.ts +0 -8
- package/dist/esm/rendering/react/components/AppInstallation/AppInstallationStatus.d.ts +0 -9
- package/dist/esm/rendering/react/components/AppInstallation/AppSystemSoftware.d.ts +0 -6
- package/dist/esm/rendering/react/components/DnsZone/DnsZoneDetails.d.ts +0 -6
- package/dist/esm/rendering/react/components/DnsZone/DnsZoneRecords.d.ts +0 -6
- package/dist/esm/rendering/react/components/DnsZone/DnsZoneRecordsA.d.ts +0 -4
- package/dist/esm/rendering/react/components/DnsZone/DnsZoneRecordsAAAA.d.ts +0 -4
- package/dist/esm/rendering/react/components/DnsZone/DnsZoneRecordsMX.d.ts +0 -4
- package/dist/esm/rendering/react/components/DnsZone/DnsZoneRecordsSRV.d.ts +0 -4
- package/dist/esm/rendering/react/components/DnsZone/DnsZoneRecordsTXT.d.ts +0 -4
- package/dist/esm/rendering/react/components/Domain/DomainBaseDetails.d.ts +0 -6
- package/dist/esm/rendering/react/components/Domain/DomainDetails.d.ts +0 -6
- package/dist/esm/rendering/react/components/Domain/DomainHandle.d.ts +0 -7
- package/dist/esm/rendering/react/components/Organization/OrganizationOwner.d.ts +0 -6
- package/dist/esm/rendering/react/components/ProjectBackup/ProjectBackupDetails.d.ts +0 -6
- package/dist/esm/rendering/react/components/ProjectBackup/ProjectBackupStatus.d.ts +0 -6
- package/dist/esm/rendering/react/components/Success.d.ts +0 -9
- /package/bin/{mw.cmd → run.cmd} +0 -0
- /package/dist/{esm/BaseCommand.d.ts → BaseCommand.d.ts} +0 -0
- /package/dist/{esm/DeleteBaseCommand.d.ts → DeleteBaseCommand.d.ts} +0 -0
- /package/dist/{esm/DeleteBaseCommand.js → DeleteBaseCommand.js} +0 -0
- /package/dist/{esm/ExtendedBaseCommand.d.ts → ExtendedBaseCommand.d.ts} +0 -0
- /package/dist/{esm/ExtendedBaseCommand.js → ExtendedBaseCommand.js} +0 -0
- /package/dist/{esm/Flags.d.ts → Flags.d.ts} +0 -0
- /package/dist/{esm/Flags.js → Flags.js} +0 -0
- /package/dist/{esm/GetBaseCommand.d.ts → GetBaseCommand.d.ts} +0 -0
- /package/dist/{esm/GetBaseCommand.js → GetBaseCommand.js} +0 -0
- /package/dist/{esm/Printer.d.ts → Printer.d.ts} +0 -0
- /package/dist/{esm/Printer.js → Printer.js} +0 -0
- /package/dist/{esm/commands → commands}/app/copy.d.ts +0 -0
- /package/dist/{esm/commands → commands}/app/create/node.d.ts +0 -0
- /package/dist/{esm/commands → commands}/app/create/node.js +0 -0
- /package/dist/{esm/commands → commands}/app/create/php.d.ts +0 -0
- /package/dist/{esm/commands → commands}/app/create/php.js +0 -0
- /package/dist/{esm/commands → commands}/app/create/python.d.ts +0 -0
- /package/dist/{esm/commands → commands}/app/create/python.js +0 -0
- /package/dist/{esm/commands → commands}/app/create/static.d.ts +0 -0
- /package/dist/{esm/commands → commands}/app/create/static.js +0 -0
- /package/dist/{esm/commands → commands}/app/dependency/list.js +0 -0
- /package/dist/{esm/commands → commands}/app/dependency/update.d.ts +0 -0
- /package/dist/{esm/commands → commands}/app/dependency/update.js +0 -0
- /package/dist/{esm/commands → commands}/app/dependency/versions.js +0 -0
- /package/dist/{esm/commands → commands}/app/download.d.ts +0 -0
- /package/dist/{esm/commands → commands}/app/get.d.ts +0 -0
- /package/dist/{esm/commands → commands}/app/get.js +0 -0
- /package/dist/{esm/commands → commands}/app/install/contao.d.ts +0 -0
- /package/dist/{esm/commands → commands}/app/install/contao.js +0 -0
- /package/dist/{esm/commands → commands}/app/install/grav.d.ts +0 -0
- /package/dist/{esm/commands → commands}/app/install/grav.js +0 -0
- /package/dist/{esm/commands → commands}/app/install/joomla.d.ts +0 -0
- /package/dist/{esm/commands → commands}/app/install/joomla.js +0 -0
- /package/dist/{esm/commands → commands}/app/install/matomo.d.ts +0 -0
- /package/dist/{esm/commands → commands}/app/install/matomo.js +0 -0
- /package/dist/{esm/commands → commands}/app/install/nextcloud.d.ts +0 -0
- /package/dist/{esm/commands → commands}/app/install/nextcloud.js +0 -0
- /package/dist/{esm/commands → commands}/app/install/shopware5.d.ts +0 -0
- /package/dist/{esm/commands → commands}/app/install/shopware5.js +0 -0
- /package/dist/{esm/commands → commands}/app/list.js +0 -0
- /package/dist/{esm/commands → commands}/app/ssh.d.ts +0 -0
- /package/dist/{esm/commands → commands}/app/ssh.js +0 -0
- /package/dist/{esm/commands → commands}/app/uninstall.d.ts +0 -0
- /package/dist/{esm/commands → commands}/app/uninstall.js +0 -0
- /package/dist/{esm/commands → commands}/app/versions.d.ts +0 -0
- /package/dist/{esm/commands → commands}/app/versions.js +0 -0
- /package/dist/{esm/commands → commands}/backup/create.d.ts +0 -0
- /package/dist/{esm/commands → commands}/backup/create.js +0 -0
- /package/dist/{esm/commands → commands}/backup/delete.d.ts +0 -0
- /package/dist/{esm/commands → commands}/backup/delete.js +0 -0
- /package/dist/{esm/commands → commands}/backup/download.d.ts +0 -0
- /package/dist/{esm/commands → commands}/backup/download.js +0 -0
- /package/dist/{esm/commands → commands}/backup/get.d.ts +0 -0
- /package/dist/{esm/commands → commands}/backup/get.js +0 -0
- /package/dist/{esm/commands → commands}/backup/schedule/list.js +0 -0
- /package/dist/{esm/commands → commands}/context/get.d.ts +0 -0
- /package/dist/{esm/commands → commands}/context/reset.d.ts +0 -0
- /package/dist/{esm/commands → commands}/context/set.d.ts +0 -0
- /package/dist/{esm/commands → commands}/conversation/categories.js +0 -0
- /package/dist/{esm/commands → commands}/conversation/close.d.ts +0 -0
- /package/dist/{esm/commands → commands}/conversation/close.js +0 -0
- /package/dist/{esm/commands → commands}/conversation/create.d.ts +0 -0
- /package/dist/{esm/commands → commands}/conversation/create.js +0 -0
- /package/dist/{esm/commands → commands}/conversation/list.js +0 -0
- /package/dist/{esm/commands → commands}/conversation/reply.d.ts +0 -0
- /package/dist/{esm/commands → commands}/conversation/reply.js +0 -0
- /package/dist/{esm/lib/ssh/types.js → commands/conversation/show.test.d.ts} +0 -0
- /package/dist/{esm/commands → commands}/conversation/show2.d.ts +0 -0
- /package/dist/{esm/commands → commands}/conversation/show2.js +0 -0
- /package/dist/{esm/commands → commands}/cronjob/create.d.ts +0 -0
- /package/dist/{esm/commands → commands}/cronjob/create.js +0 -0
- /package/dist/{esm/commands → commands}/cronjob/delete.d.ts +0 -0
- /package/dist/{esm/commands → commands}/cronjob/delete.js +0 -0
- /package/dist/{esm/commands → commands}/cronjob/execute.d.ts +0 -0
- /package/dist/{esm/commands → commands}/cronjob/execute.js +0 -0
- /package/dist/{esm/commands → commands}/cronjob/execution/abort.d.ts +0 -0
- /package/dist/{esm/commands → commands}/cronjob/execution/abort.js +0 -0
- /package/dist/{esm/commands → commands}/cronjob/execution/get.d.ts +0 -0
- /package/dist/{esm/commands → commands}/cronjob/execution/get.js +0 -0
- /package/dist/{esm/commands → commands}/cronjob/execution/logs.d.ts +0 -0
- /package/dist/{esm/commands → commands}/cronjob/execution/logs.js +0 -0
- /package/dist/{esm/commands → commands}/cronjob/get.d.ts +0 -0
- /package/dist/{esm/commands → commands}/cronjob/get.js +0 -0
- /package/dist/{esm/commands → commands}/cronjob/list.js +0 -0
- /package/dist/{esm/commands → commands}/database/mysql/charsets.js +0 -0
- /package/dist/{esm/commands → commands}/database/mysql/create.d.ts +0 -0
- /package/dist/{esm/commands → commands}/database/mysql/create.js +0 -0
- /package/dist/{esm/commands → commands}/database/mysql/delete.d.ts +0 -0
- /package/dist/{esm/commands → commands}/database/mysql/delete.js +0 -0
- /package/dist/{esm/commands → commands}/database/mysql/dump.d.ts +0 -0
- /package/dist/{esm/commands → commands}/database/mysql/dump.js +0 -0
- /package/dist/{esm/commands → commands}/database/mysql/get.d.ts +0 -0
- /package/dist/{esm/commands → commands}/database/mysql/get.js +0 -0
- /package/dist/{esm/commands → commands}/database/mysql/list.js +0 -0
- /package/dist/{esm/commands → commands}/database/mysql/phpmyadmin.d.ts +0 -0
- /package/dist/{esm/commands → commands}/database/mysql/phpmyadmin.js +0 -0
- /package/dist/{esm/commands → commands}/database/mysql/port-forward.d.ts +0 -0
- /package/dist/{esm/commands → commands}/database/mysql/port-forward.js +0 -0
- /package/dist/{esm/commands → commands}/database/mysql/shell.d.ts +0 -0
- /package/dist/{esm/commands → commands}/database/mysql/shell.js +0 -0
- /package/dist/{esm/commands → commands}/database/mysql/user/delete.d.ts +0 -0
- /package/dist/{esm/commands → commands}/database/mysql/user/delete.js +0 -0
- /package/dist/{esm/commands → commands}/database/mysql/user/get.d.ts +0 -0
- /package/dist/{esm/commands → commands}/database/mysql/user/get.js +0 -0
- /package/dist/{esm/commands → commands}/database/mysql/user/list.js +0 -0
- /package/dist/{esm/commands → commands}/database/mysql/versions.js +0 -0
- /package/dist/{esm/commands → commands}/database/redis/create.d.ts +0 -0
- /package/dist/{esm/commands → commands}/database/redis/create.js +0 -0
- /package/dist/{esm/commands → commands}/database/redis/get.d.ts +0 -0
- /package/dist/{esm/commands → commands}/database/redis/get.js +0 -0
- /package/dist/{esm/commands → commands}/database/redis/list.js +0 -0
- /package/dist/{esm/commands → commands}/database/redis/shell.d.ts +0 -0
- /package/dist/{esm/commands → commands}/database/redis/shell.js +0 -0
- /package/dist/{esm/commands → commands}/database/redis/versions.js +0 -0
- /package/dist/{esm/commands → commands}/domain/dnszone/get.js +0 -0
- /package/dist/{esm/commands → commands}/domain/dnszone/list.js +0 -0
- /package/dist/{esm/commands → commands}/domain/dnszone/update.d.ts +0 -0
- /package/dist/{esm/commands → commands}/domain/dnszone/update.js +0 -0
- /package/dist/{esm/commands → commands}/domain/get.js +0 -0
- /package/dist/{esm/commands → commands}/domain/list.js +0 -0
- /package/dist/{esm/commands → commands}/domain/virtualhost/create.js +0 -0
- /package/dist/{esm/commands → commands}/domain/virtualhost/delete.d.ts +0 -0
- /package/dist/{esm/commands → commands}/domain/virtualhost/delete.js +0 -0
- /package/dist/{esm/commands → commands}/domain/virtualhost/list.js +0 -0
- /package/dist/{esm/commands → commands}/login/reset.d.ts +0 -0
- /package/dist/{esm/commands → commands}/login/reset.js +0 -0
- /package/dist/{esm/commands → commands}/login/status.d.ts +0 -0
- /package/dist/{esm/commands → commands}/login/token.d.ts +0 -0
- /package/dist/{esm/commands → commands}/login/token.js +0 -0
- /package/dist/{esm/commands → commands}/mail/address/create.d.ts +0 -0
- /package/dist/{esm/commands → commands}/mail/address/create.js +0 -0
- /package/dist/{esm/commands → commands}/mail/address/delete.d.ts +0 -0
- /package/dist/{esm/commands → commands}/mail/address/delete.js +0 -0
- /package/dist/{esm/commands → commands}/mail/address/get.d.ts +0 -0
- /package/dist/{esm/commands → commands}/mail/address/get.js +0 -0
- /package/dist/{esm/commands → commands}/mail/address/list.js +0 -0
- /package/dist/{esm/commands → commands}/mail/deliverybox/get.d.ts +0 -0
- /package/dist/{esm/commands → commands}/mail/deliverybox/get.js +0 -0
- /package/dist/{esm/commands → commands}/mail/deliverybox/list.js +0 -0
- /package/dist/{esm/commands → commands}/org/delete.d.ts +0 -0
- /package/dist/{esm/commands → commands}/org/delete.js +0 -0
- /package/dist/{esm/commands → commands}/org/get.js +0 -0
- /package/dist/{esm/commands → commands}/org/invite/list.js +0 -0
- /package/dist/{esm/commands → commands}/org/invite/revoke.d.ts +0 -0
- /package/dist/{esm/commands → commands}/org/invite/revoke.js +0 -0
- /package/dist/{esm/commands → commands}/org/invite.d.ts +0 -0
- /package/dist/{esm/commands → commands}/org/invite.js +0 -0
- /package/dist/{esm/commands → commands}/org/list.js +0 -0
- /package/dist/{esm/commands → commands}/org/membership/revoke.d.ts +0 -0
- /package/dist/{esm/commands → commands}/org/membership/revoke.js +0 -0
- /package/dist/{esm/commands → commands}/project/create.d.ts +0 -0
- /package/dist/{esm/commands → commands}/project/delete.d.ts +0 -0
- /package/dist/{esm/commands → commands}/project/delete.js +0 -0
- /package/dist/{esm/commands → commands}/project/filesystem/usage.js +0 -0
- /package/dist/{esm/commands → commands}/project/get.d.ts +0 -0
- /package/dist/{esm/commands → commands}/project/get.js +0 -0
- /package/dist/{esm/commands → commands}/project/invite/get.d.ts +0 -0
- /package/dist/{esm/commands → commands}/project/invite/get.js +0 -0
- /package/dist/{esm/commands → commands}/project/invite/list-own.js +0 -0
- /package/dist/{esm/commands → commands}/project/invite/list.js +0 -0
- /package/dist/{esm/commands → commands}/project/list.js +0 -0
- /package/dist/{esm/commands → commands}/project/membership/get-own.d.ts +0 -0
- /package/dist/{esm/commands → commands}/project/membership/get-own.js +0 -0
- /package/dist/{esm/commands → commands}/project/membership/get.d.ts +0 -0
- /package/dist/{esm/commands → commands}/project/membership/get.js +0 -0
- /package/dist/{esm/commands → commands}/project/membership/list-own.js +0 -0
- /package/dist/{esm/commands → commands}/project/membership/list.js +0 -0
- /package/dist/{esm/commands → commands}/project/ssh.d.ts +0 -0
- /package/dist/{esm/commands → commands}/project/ssh.js +0 -0
- /package/dist/{esm/commands → commands}/project/update.d.ts +0 -0
- /package/dist/{esm/commands → commands}/project/update.js +0 -0
- /package/dist/{esm/commands → commands}/server/get.d.ts +0 -0
- /package/dist/{esm/commands → commands}/server/get.js +0 -0
- /package/dist/{esm/commands → commands}/server/list.js +0 -0
- /package/dist/{esm/commands → commands}/sftp-user/delete.d.ts +0 -0
- /package/dist/{esm/commands → commands}/sftp-user/delete.js +0 -0
- /package/dist/{esm/commands → commands}/sftp-user/list.js +0 -0
- /package/dist/{esm/commands → commands}/ssh-user/delete.d.ts +0 -0
- /package/dist/{esm/commands → commands}/ssh-user/delete.js +0 -0
- /package/dist/{esm/commands → commands}/ssh-user/list.js +0 -0
- /package/dist/{esm/commands → commands}/user/api-token/create.d.ts +0 -0
- /package/dist/{esm/commands → commands}/user/api-token/create.js +0 -0
- /package/dist/{esm/commands → commands}/user/api-token/get.d.ts +0 -0
- /package/dist/{esm/commands → commands}/user/api-token/get.js +0 -0
- /package/dist/{esm/commands → commands}/user/api-token/revoke.d.ts +0 -0
- /package/dist/{esm/commands → commands}/user/api-token/revoke.js +0 -0
- /package/dist/{esm/commands → commands}/user/get.d.ts +0 -0
- /package/dist/{esm/commands → commands}/user/get.js +0 -0
- /package/dist/{esm/commands → commands}/user/session/get.d.ts +0 -0
- /package/dist/{esm/commands → commands}/user/session/get.js +0 -0
- /package/dist/{esm/commands → commands}/user/session/list.js +0 -0
- /package/dist/{esm/commands → commands}/user/ssh-key/create.d.ts +0 -0
- /package/dist/{esm/commands → commands}/user/ssh-key/create.js +0 -0
- /package/dist/{esm/commands → commands}/user/ssh-key/delete.d.ts +0 -0
- /package/dist/{esm/commands → commands}/user/ssh-key/delete.js +0 -0
- /package/dist/{esm/commands → commands}/user/ssh-key/get.d.ts +0 -0
- /package/dist/{esm/commands → commands}/user/ssh-key/get.js +0 -0
- /package/dist/{esm/lib → lib}/app/Installer.d.ts +0 -0
- /package/dist/{esm/lib → lib}/app/Installer.js +0 -0
- /package/dist/{esm/lib → lib}/app/flags.d.ts +0 -0
- /package/dist/{esm/lib → lib}/app/flags.js +0 -0
- /package/dist/{esm/lib → lib}/app/hooks.js +0 -0
- /package/dist/{esm/lib → lib}/app/install.js +0 -0
- /package/dist/{esm/lib → lib}/app/uuid.js +0 -0
- /package/dist/{esm/lib → lib}/app/versions.js +0 -0
- /package/dist/{esm/lib → lib}/app/wait.d.ts +0 -0
- /package/dist/{esm/lib → lib}/app/wait.js +0 -0
- /package/dist/{esm/lib → lib}/assert_success.d.ts +0 -0
- /package/dist/{esm/lib → lib}/assert_success.js +0 -0
- /package/dist/{esm/lib → lib}/bytes.d.ts +0 -0
- /package/dist/{esm/lib → lib}/bytes.js +0 -0
- /package/dist/{esm/lib → lib}/context_flags.d.ts +0 -0
- /package/dist/{esm/lib → lib}/context_terraform.d.ts +0 -0
- /package/dist/{esm/lib → lib}/context_user.d.ts +0 -0
- /package/dist/{esm/lib → lib}/context_user.js +0 -0
- /package/dist/{esm/lib → lib}/conversation/message_input.d.ts +0 -0
- /package/dist/{esm/lib → lib}/conversation/message_input.js +0 -0
- /package/dist/{esm/lib → lib}/database/common.js +0 -0
- /package/dist/{esm/lib → lib}/database/mysql/connect.d.ts +0 -0
- /package/dist/{esm/lib → lib}/database/mysql/connect.js +0 -0
- /package/dist/{esm/lib → lib}/database/mysql/flags.d.ts +0 -0
- /package/dist/{esm/lib → lib}/database/mysql/flags.js +0 -0
- /package/dist/{esm/lib → lib}/database/redis/connect.d.ts +0 -0
- /package/dist/{esm/lib → lib}/database/redis/connect.js +0 -0
- /package/dist/{esm/lib → lib}/database/redis/flags.d.ts +0 -0
- /package/dist/{esm/lib → lib}/database/redis/flags.js +0 -0
- /package/dist/{esm/lib → lib}/domain/dnszone/flags.d.ts +0 -0
- /package/dist/{esm/lib → lib}/domain/dnszone/flags.js +0 -0
- /package/dist/{esm/lib → lib}/domain/dnszone/records.js +0 -0
- /package/dist/{esm/lib → lib}/domain/flags.d.ts +0 -0
- /package/dist/{esm/lib → lib}/domain/flags.js +0 -0
- /package/dist/{esm/lib → lib}/expires.d.ts +0 -0
- /package/dist/{esm/lib → lib}/expires.js +0 -0
- /package/dist/{esm/lib → lib}/handleError.js +0 -0
- /package/dist/{esm/lib → lib}/hasbin.d.ts +0 -0
- /package/dist/{esm/lib → lib}/hasbin.js +0 -0
- /package/dist/{esm/lib → lib}/mergeObjects.d.ts +0 -0
- /package/dist/{esm/lib → lib}/mergeObjects.js +0 -0
- /package/dist/{esm/lib → lib}/notify.d.ts +0 -0
- /package/dist/{esm/lib → lib}/notify.js +0 -0
- /package/dist/{esm/lib → lib}/org/flags.d.ts +0 -0
- /package/dist/{esm/lib → lib}/org/flags.js +0 -0
- /package/dist/{esm/lib → lib}/password.d.ts +0 -0
- /package/dist/{esm/lib → lib}/password.js +0 -0
- /package/dist/{esm/lib → lib}/project/flags.d.ts +0 -0
- /package/dist/{esm/lib → lib}/project/hooks.js +0 -0
- /package/dist/{esm/lib → lib}/project/ingress.d.ts +0 -0
- /package/dist/{esm/lib → lib}/project/ingress.js +0 -0
- /package/dist/{esm/lib → lib}/project/shortId.d.ts +0 -0
- /package/dist/{esm/lib → lib}/project/shortId.js +0 -0
- /package/dist/{esm/lib → lib}/projectbackup/hooks.js +0 -0
- /package/dist/{esm/lib → lib}/server/flags.d.ts +0 -0
- /package/dist/{esm/lib → lib}/server/flags.js +0 -0
- /package/dist/{esm/lib → lib}/ssh/appinstall.d.ts +0 -0
- /package/dist/{esm/lib → lib}/ssh/appinstall.js +0 -0
- /package/dist/{esm/lib → lib}/ssh/flags.d.ts +0 -0
- /package/dist/{esm/lib → lib}/ssh/flags.js +0 -0
- /package/dist/{esm/lib → lib}/ssh/project.d.ts +0 -0
- /package/dist/{esm/lib → lib}/ssh/project.js +0 -0
- /package/dist/{esm/lib → lib}/ssh/types.d.ts +0 -0
- /package/dist/{esm/rendering/react/lib/observable-value → lib/ssh}/types.js +0 -0
- /package/dist/{esm/lib → lib}/viewhelpers/removeLineBreaks.d.ts +0 -0
- /package/dist/{esm/lib → lib}/viewhelpers/removeLineBreaks.js +0 -0
- /package/dist/{esm/lib → lib}/viewhelpers/size.d.ts +0 -0
- /package/dist/{esm/lib → lib}/viewhelpers/size.js +0 -0
- /package/dist/{esm/lib → lib}/wait.d.ts +0 -0
- /package/dist/{esm/lib → lib}/wait.js +0 -0
- /package/dist/{esm/normalize_id.d.ts → normalize_id.d.ts} +0 -0
- /package/dist/{esm/normalize_id.js → normalize_id.js} +0 -0
- /package/dist/{esm/rendering → rendering}/lib/getTerminalWidth.d.ts +0 -0
- /package/dist/{esm/rendering → rendering}/lib/getTerminalWidth.js +0 -0
- /package/dist/{esm/rendering → rendering}/process/components/ProcessConfirmation.d.ts +0 -0
- /package/dist/{esm/rendering → rendering}/process/components/ProcessConfirmation.js +0 -0
- /package/dist/{esm/rendering → rendering}/process/components/ProcessConfirmationStateSummary.d.ts +0 -0
- /package/dist/{esm/rendering → rendering}/process/components/ProcessConfirmationStateSummary.js +0 -0
- /package/dist/{esm/rendering → rendering}/process/components/ProcessError.d.ts +0 -0
- /package/dist/{esm/rendering → rendering}/process/components/ProcessError.js +0 -0
- /package/dist/{esm/rendering → rendering}/process/components/ProcessInput.d.ts +0 -0
- /package/dist/{esm/rendering → rendering}/process/components/ProcessInputStateSummary.d.ts +0 -0
- /package/dist/{esm/rendering → rendering}/process/components/ProcessInputStateSummary.js +0 -0
- /package/dist/{esm/rendering → rendering}/process/components/ProcessState.d.ts +0 -0
- /package/dist/{esm/rendering → rendering}/process/components/ProcessState.js +0 -0
- /package/dist/{esm/rendering → rendering}/process/components/ProcessStateIcon.d.ts +0 -0
- /package/dist/{esm/rendering → rendering}/process/components/ProcessStateIcon.js +0 -0
- /package/dist/{esm/rendering → rendering}/process/components/ProcessStateSummary.d.ts +0 -0
- /package/dist/{esm/rendering → rendering}/process/components/ProcessStateSummary.js +0 -0
- /package/dist/{esm/rendering → rendering}/process/components/ProcessValidationErrors.js +0 -0
- /package/dist/{esm/rendering → rendering}/process/process.d.ts +0 -0
- /package/dist/{esm/rendering → rendering}/process/process_fancy.d.ts +0 -0
- /package/dist/{esm/rendering → rendering}/process/process_fancy.js +0 -0
- /package/dist/{esm/rendering → rendering}/process/process_flags.d.ts +0 -0
- /package/dist/{esm/rendering → rendering}/process/process_flags.js +0 -0
- /package/dist/{esm/rendering → rendering}/process/process_quiet.d.ts +0 -0
- /package/dist/{esm/rendering → rendering}/process/process_quiet.js +0 -0
- /package/dist/{esm/rendering → rendering}/react/ComponentPrinter.d.ts +0 -0
- /package/dist/{esm/rendering → rendering}/react/ComponentPrinter.js +0 -0
- /package/dist/{esm/rendering → rendering}/react/ExecRenderBaseCommand.d.ts +0 -0
- /package/dist/{esm/rendering → rendering}/react/ExecRenderBaseCommand.js +0 -0
- /package/dist/{esm/rendering → rendering}/react/RenderBaseCommand.d.ts +0 -0
- /package/dist/{esm/rendering → rendering}/react/RenderBaseCommand.js +0 -0
- /package/dist/{esm/rendering → rendering}/react/components/AppInstallation/AppInstallationDetails.js +0 -0
- /package/dist/{esm/rendering → rendering}/react/components/AppInstallation/AppInstallationStatus.js +0 -0
- /package/dist/{esm/rendering → rendering}/react/components/AppInstallation/AppSystemSoftware.js +0 -0
- /package/dist/{esm/rendering → rendering}/react/components/BooleanValue.d.ts +0 -0
- /package/dist/{esm/rendering → rendering}/react/components/BooleanValue.js +0 -0
- /package/dist/{esm/rendering → rendering}/react/components/ByteFormat.d.ts +0 -0
- /package/dist/{esm/rendering → rendering}/react/components/ByteFormat.js +0 -0
- /package/dist/{esm/rendering → rendering}/react/components/Conversation/ConversationMessage.js +0 -0
- /package/dist/{esm/rendering → rendering}/react/components/Conversation/ConversationMessages.js +0 -0
- /package/dist/{esm/rendering → rendering}/react/components/Conversation/ConversationMeta.d.ts +0 -0
- /package/dist/{esm/rendering → rendering}/react/components/Conversation/ConversationMeta.js +0 -0
- /package/dist/{esm/rendering → rendering}/react/components/Conversation/ConversationStatusUpdate.js +0 -0
- /package/dist/{esm/rendering → rendering}/react/components/CreatedAt.d.ts +0 -0
- /package/dist/{esm/rendering → rendering}/react/components/CreatedAt.js +0 -0
- /package/dist/{esm/rendering → rendering}/react/components/CronJob/CronJobDetails.js +0 -0
- /package/dist/{esm/rendering → rendering}/react/components/DnsZone/DnsZoneDetails.js +0 -0
- /package/dist/{esm/rendering → rendering}/react/components/DnsZone/DnsZoneRecords.js +0 -0
- /package/dist/{esm/rendering → rendering}/react/components/DnsZone/DnsZoneRecordsA.js +0 -0
- /package/dist/{esm/rendering → rendering}/react/components/DnsZone/DnsZoneRecordsAAAA.js +0 -0
- /package/dist/{esm/rendering → rendering}/react/components/DnsZone/DnsZoneRecordsMX.js +0 -0
- /package/dist/{esm/rendering → rendering}/react/components/DnsZone/DnsZoneRecordsSRV.js +0 -0
- /package/dist/{esm/rendering → rendering}/react/components/DnsZone/DnsZoneRecordsTXT.js +0 -0
- /package/dist/{esm/rendering → rendering}/react/components/DnsZone/RecordComponent.d.ts +0 -0
- /package/dist/{esm/rendering → rendering}/react/components/DnsZone/RecordComponent.js +0 -0
- /package/dist/{esm/rendering → rendering}/react/components/DnsZone/RecordSetManagedByMittwald.d.ts +0 -0
- /package/dist/{esm/rendering → rendering}/react/components/DnsZone/RecordSetManagedByMittwald.js +0 -0
- /package/dist/{esm/rendering → rendering}/react/components/DnsZone/RecordSetValues.d.ts +0 -0
- /package/dist/{esm/rendering → rendering}/react/components/DnsZone/RecordSetValues.js +0 -0
- /package/dist/{esm/rendering → rendering}/react/components/Domain/DomainBaseDetails.js +0 -0
- /package/dist/{esm/rendering → rendering}/react/components/Domain/DomainDetails.js +0 -0
- /package/dist/{esm/rendering → rendering}/react/components/Domain/DomainHandle.js +0 -0
- /package/dist/{esm/rendering → rendering}/react/components/ErrorBox.d.ts +0 -0
- /package/dist/{esm/rendering → rendering}/react/components/ErrorBox.js +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/FormattedDate.d.ts +0 -0
- /package/dist/{esm/rendering → rendering}/react/components/FormattedDate.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/Ingress/DnsValidationErrors.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 → rendering}/react/components/LocalFilename.d.ts +0 -0
- /package/dist/{esm/rendering → rendering}/react/components/LocalFilename.js +0 -0
- /package/dist/{esm/rendering → rendering}/react/components/Note.d.ts +0 -0
- /package/dist/{esm/rendering → rendering}/react/components/Note.js +0 -0
- /package/dist/{esm/rendering → rendering}/react/components/Organization/CustomerIDAndNumber.d.ts +0 -0
- /package/dist/{esm/rendering → rendering}/react/components/Organization/CustomerIDAndNumber.js +0 -0
- /package/dist/{esm/rendering → rendering}/react/components/Organization/OrganizationOrderEligibility.d.ts +0 -0
- /package/dist/{esm/rendering → rendering}/react/components/Organization/OrganizationOrderEligibility.js +0 -0
- /package/dist/{esm/rendering → rendering}/react/components/Organization/OrganizationOwner.js +0 -0
- /package/dist/{esm/rendering → rendering}/react/components/Project/ProjectEnabled.d.ts +0 -0
- /package/dist/{esm/rendering → rendering}/react/components/Project/ProjectEnabled.js +0 -0
- /package/dist/{esm/rendering → rendering}/react/components/Project/ProjectSimpleStatus.js +0 -0
- /package/dist/{esm/rendering → rendering}/react/components/Project/ProjectStatus.js +0 -0
- /package/dist/{esm/rendering → rendering}/react/components/ProjectBackup/ProjectBackupDetails.js +0 -0
- /package/dist/{esm/rendering → rendering}/react/components/ProjectBackup/ProjectBackupStatus.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/components/Table/BodyCell.d.ts +0 -0
- /package/dist/{esm/rendering → rendering}/react/components/Table/BodyCell.js +0 -0
- /package/dist/{esm/rendering → rendering}/react/components/Table/BodyRow.d.ts +0 -0
- /package/dist/{esm/rendering → rendering}/react/components/Table/BodyRow.js +0 -0
- /package/dist/{esm/rendering → rendering}/react/components/Table/BodyRows.d.ts +0 -0
- /package/dist/{esm/rendering → rendering}/react/components/Table/BodyRows.js +0 -0
- /package/dist/{esm/rendering → rendering}/react/components/Table/CellData.d.ts +0 -0
- /package/dist/{esm/rendering → rendering}/react/components/Table/CellData.js +0 -0
- /package/dist/{esm/rendering → rendering}/react/components/Table/CellLayout.d.ts +0 -0
- /package/dist/{esm/rendering → rendering}/react/components/Table/CellLayout.js +0 -0
- /package/dist/{esm/rendering → rendering}/react/components/Table/HeaderCell.d.ts +0 -0
- /package/dist/{esm/rendering → rendering}/react/components/Table/HeaderCell.js +0 -0
- /package/dist/{esm/rendering → rendering}/react/components/Table/HeaderRow.d.ts +0 -0
- /package/dist/{esm/rendering → rendering}/react/components/Table/HeaderRow.js +0 -0
- /package/dist/{esm/rendering → rendering}/react/components/Table/RowLayout.d.ts +0 -0
- /package/dist/{esm/rendering → rendering}/react/components/Table/RowLayout.js +0 -0
- /package/dist/{esm/rendering → rendering}/react/components/Table/Table.d.ts +0 -0
- /package/dist/{esm/rendering → rendering}/react/components/Table/Table.js +0 -0
- /package/dist/{esm/rendering → rendering}/react/components/Table/context.d.ts +0 -0
- /package/dist/{esm/rendering → rendering}/react/components/Table/context.js +0 -0
- /package/dist/{esm/rendering → rendering}/react/components/Table/index.d.ts +0 -0
- /package/dist/{esm/rendering → rendering}/react/components/Table/index.js +0 -0
- /package/dist/{esm/rendering → rendering}/react/components/Table/model/Cell.d.ts +0 -0
- /package/dist/{esm/rendering → rendering}/react/components/Table/model/Cell.js +0 -0
- /package/dist/{esm/rendering → rendering}/react/components/Table/model/Column.d.ts +0 -0
- /package/dist/{esm/rendering → rendering}/react/components/Table/model/Column.js +0 -0
- /package/dist/{esm/rendering → rendering}/react/components/Table/model/ColumnName.d.ts +0 -0
- /package/dist/{esm/rendering → rendering}/react/components/Table/model/ColumnName.js +0 -0
- /package/dist/{esm/rendering → rendering}/react/components/Table/model/ColumnOptions.d.ts +0 -0
- /package/dist/{esm/rendering → rendering}/react/components/Table/model/ColumnOptions.js +0 -0
- /package/dist/{esm/rendering → rendering}/react/components/Table/model/Row.d.ts +0 -0
- /package/dist/{esm/rendering → rendering}/react/components/Table/model/Row.js +0 -0
- /package/dist/{esm/rendering → rendering}/react/components/Table/model/Table.d.ts +0 -0
- /package/dist/{esm/rendering → rendering}/react/components/Table/model/Table.js +0 -0
- /package/dist/{esm/rendering → rendering}/react/components/Table/model/index.d.ts +0 -0
- /package/dist/{esm/rendering → rendering}/react/components/Table/model/index.js +0 -0
- /package/dist/{esm/rendering → rendering}/react/components/Value.d.ts +0 -0
- /package/dist/{esm/rendering → rendering}/react/components/Value.js +0 -0
- /package/dist/{esm/rendering → rendering}/react/components/Warning.d.ts +0 -0
- /package/dist/{esm/rendering → rendering}/react/components/Warning.js +0 -0
- /package/dist/{esm/rendering → rendering}/react/components/WithoutLineBreaks.d.ts +0 -0
- /package/dist/{esm/rendering → rendering}/react/components/WithoutLineBreaks.js +0 -0
- /package/dist/{esm/rendering → rendering}/react/context.d.ts +0 -0
- /package/dist/{esm/rendering → rendering}/react/context.js +0 -0
- /package/dist/{esm/rendering → rendering}/react/error.d.ts +0 -0
- /package/dist/{esm/rendering → rendering}/react/error.js +0 -0
- /package/dist/{esm/rendering → rendering}/react/hooks/useIncreaseInkStdoutColumns.d.ts +0 -0
- /package/dist/{esm/rendering → rendering}/react/hooks/useIncreaseInkStdoutColumns.js +0 -0
- /package/dist/{esm/rendering → rendering}/react/hooks/useMyUserProfile.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.d.ts +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/react/lib/observable-value}/types.js +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
- /package/dist/{esm/rendering → rendering}/react/measure/MeasureChildren.d.ts +0 -0
- /package/dist/{esm/rendering → rendering}/react/measure/MeasureChildren.js +0 -0
- /package/dist/{esm/rendering → rendering}/react/measure/MeasureContextProvider.d.ts +0 -0
- /package/dist/{esm/rendering → rendering}/react/measure/MeasureContextProvider.js +0 -0
- /package/dist/{esm/rendering → rendering}/react/measure/MeasureRenderer.d.ts +0 -0
- /package/dist/{esm/rendering → rendering}/react/measure/MeasureRenderer.js +0 -0
- /package/dist/{esm/rendering → rendering}/react/measure/context.d.ts +0 -0
- /package/dist/{esm/rendering → rendering}/react/measure/context.js +0 -0
- /package/dist/{esm/rendering → rendering}/setup/FlagSupportedSetup.d.ts +0 -0
- /package/dist/{esm/rendering → rendering}/setup/FlagSupportedSetup.js +0 -0
- /package/dist/{esm/rendering → rendering}/setup/TableRenderSetup.d.ts +0 -0
- /package/dist/{esm/rendering → rendering}/setup/TableRenderSetup.js +0 -0
- /package/dist/{esm/rendering → rendering}/setup/usePromiseSetup.d.ts +0 -0
- /package/dist/{esm/rendering → rendering}/setup/usePromiseSetup.js +0 -0
- /package/dist/{esm/types.d.ts → types.d.ts} +0 -0
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import { FC, ReactNode } from "react";
|
|
2
|
+
import type { MittwaldAPIV2 } from "@mittwald/api-client";
|
|
3
|
+
type DomainHandleReadable = MittwaldAPIV2.Components.Schemas.DomainHandleReadable;
|
|
4
|
+
export declare const DomainHandle: FC<{
|
|
5
|
+
title: ReactNode;
|
|
6
|
+
handle: DomainHandleReadable | undefined;
|
|
7
|
+
}>;
|
|
8
|
+
export {};
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
import { MittwaldAPIV2 } from "@mittwald/api-client";
|
|
1
|
+
import type { MittwaldAPIV2 } from "@mittwald/api-client";
|
|
2
2
|
import { FC } from "react";
|
|
3
|
-
|
|
3
|
+
type IngressIngress = MittwaldAPIV2.Components.Schemas.IngressIngress;
|
|
4
4
|
type Props = {
|
|
5
5
|
ingress: IngressIngress;
|
|
6
6
|
};
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { FC } from "react";
|
|
2
|
-
import { MittwaldAPIV2 } from "@mittwald/api-client";
|
|
3
|
-
|
|
2
|
+
import type { MittwaldAPIV2 } from "@mittwald/api-client";
|
|
3
|
+
type ProjectProjectReadinessStatus = MittwaldAPIV2.Components.Schemas.ProjectProjectStatus;
|
|
4
4
|
interface Props {
|
|
5
5
|
/**
|
|
6
6
|
* The project to display the status for.
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import { FC } from "react";
|
|
2
|
+
import type { MittwaldAPIV2 } from "@mittwald/api-client";
|
|
3
|
+
type BackupProjectBackup = MittwaldAPIV2.Components.Schemas.BackupProjectBackup;
|
|
4
|
+
export declare const ProjectBackupDetails: FC<{
|
|
5
|
+
projectBackup: BackupProjectBackup;
|
|
6
|
+
}>;
|
|
7
|
+
export {};
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import { FC } from "react";
|
|
2
|
+
import type { MittwaldAPIV2 } from "@mittwald/api-client";
|
|
3
|
+
type BackupProjectBackup = MittwaldAPIV2.Components.Schemas.BackupProjectBackup;
|
|
4
|
+
export declare const ProjectBackupStatus: FC<{
|
|
5
|
+
projectBackup: BackupProjectBackup;
|
|
6
|
+
}>;
|
|
7
|
+
export {};
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import { FC, PropsWithChildren } from "react";
|
|
2
|
+
interface Props {
|
|
3
|
+
title?: string;
|
|
4
|
+
color?: string;
|
|
5
|
+
width?: number;
|
|
6
|
+
innerText?: boolean;
|
|
7
|
+
}
|
|
8
|
+
export declare const defaultSuccessColor = "#00B785";
|
|
9
|
+
export declare const Success: FC<PropsWithChildren<Props>>;
|
|
10
|
+
export {};
|
|
@@ -1,6 +1,8 @@
|
|
|
1
1
|
import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
|
|
2
2
|
import { Box, Text } from "ink";
|
|
3
|
+
export const defaultSuccessColor = "#00B785";
|
|
3
4
|
export const Success = (props) => {
|
|
4
|
-
const { title = "Success", color =
|
|
5
|
-
|
|
5
|
+
const { title = "Success", color = defaultSuccessColor, width = 80, innerText = true, } = props;
|
|
6
|
+
const inner = innerText ? (_jsx(Text, { wrap: "wrap", color: color, children: props.children })) : (props.children);
|
|
7
|
+
return (_jsxs(Box, { width: width, borderStyle: "round", borderColor: color, flexDirection: "column", paddingX: 2, children: [_jsx(Text, { bold: true, underline: true, color: color, children: title.toUpperCase() }), inner] }));
|
|
6
8
|
};
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
import { MittwaldAPIV2 } from "@mittwald/api-client";
|
|
1
|
+
import type { MittwaldAPIV2 } from "@mittwald/api-client";
|
|
2
2
|
export declare const useMyUserProfile: () => MittwaldAPIV2.Components.Schemas.SignupProfile;
|
package/dist/types.js
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@mittwald/cli",
|
|
3
|
-
"version": "1.0.0-alpha.
|
|
3
|
+
"version": "1.0.0-alpha.37",
|
|
4
4
|
"description": "Hand-crafted CLI for the mittwald API",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"author": {
|
|
@@ -20,15 +20,8 @@
|
|
|
20
20
|
},
|
|
21
21
|
"scripts": {
|
|
22
22
|
"clean": "(rimraf --glob dist tsconfig.*.tsbuildinfo) | true",
|
|
23
|
-
"compile": "tsc --build tsconfig.
|
|
24
|
-
"compile:all": "yarn clean && yarn compile:cjs && yarn compile:esm",
|
|
25
|
-
"compile:cjs": "tsc --build tsconfig.cjs.json",
|
|
26
|
-
"compile:esm": "tsc --build tsconfig.esm.json",
|
|
23
|
+
"compile": "tsc --build tsconfig.json",
|
|
27
24
|
"format": "prettier --write $@ '**/*.{ts,tsx,yaml,yml,json,md,mdx}'",
|
|
28
|
-
"generate:commands": "yarn generate:commands:v2",
|
|
29
|
-
"generate:commands-dev": "yarn generate:commands-dev:v2",
|
|
30
|
-
"generate:commands-dev:v2": "curl --silent https://api-public.dev.mittwald.systems/openapi | ./transform-openapi.sh | yarn acg generate --name MittwaldAPIV2 --outputFormat=oclifCommands - src --optionalHeader x-access-token",
|
|
31
|
-
"generate:commands:v2": "curl --silent https://api.mittwald.de/openapi | ./transform-openapi.sh | yarn acg generate --name MittwaldAPIV2 --outputFormat=oclifCommands - src --optionalHeader x-access-token",
|
|
32
25
|
"generate:readme": "oclif readme < /dev/null > /dev/null",
|
|
33
26
|
"license-check": "yarn pnpify license-checker-rseidelsohn ",
|
|
34
27
|
"lint": "eslint . --cache",
|
|
@@ -37,17 +30,19 @@
|
|
|
37
30
|
"package:tarballs": "oclif pack tarballs --targets=linux-x64,linux-arm64,darwin-x64,darwin-arm64",
|
|
38
31
|
"package:windows": "oclif pack win",
|
|
39
32
|
"post:generate": "yarn run -T compile && yarn run -T compile:cjs",
|
|
40
|
-
"test": "yarn
|
|
33
|
+
"test": "yarn test:format && yarn test:licenses && yarn test:unit",
|
|
34
|
+
"test:format": "yarn lint && yarn format --check",
|
|
35
|
+
"test:unit": "mocha --forbid-only \"src/**/*.test.ts\"",
|
|
41
36
|
"test:licenses": "yarn license-check --summary --unknown --failOn 'UNLICENSED;UNKNOWN'",
|
|
42
37
|
"test:readme": "yarn generate:readme && git diff --exit-code README.md"
|
|
43
38
|
},
|
|
44
39
|
"files": [
|
|
45
40
|
".deps",
|
|
46
|
-
"
|
|
41
|
+
"dist/**/*.{js,d.ts}",
|
|
47
42
|
"bin"
|
|
48
43
|
],
|
|
49
44
|
"dependencies": {
|
|
50
|
-
"@mittwald/api-client": "^
|
|
45
|
+
"@mittwald/api-client": "^4.9.0",
|
|
51
46
|
"@mittwald/api-client-commons": "^4.2.2",
|
|
52
47
|
"@mittwald/react-use-promise": "^2.1.2",
|
|
53
48
|
"@oclif/core": "^3.18.1",
|
|
@@ -63,7 +58,7 @@
|
|
|
63
58
|
"ink-link": "^3.0.0",
|
|
64
59
|
"ink-text-input": "^5.0.1",
|
|
65
60
|
"js-yaml": "^4.1.0",
|
|
66
|
-
"marked": "^
|
|
61
|
+
"marked": "^12.0.0",
|
|
67
62
|
"marked-terminal": "^6.0.0",
|
|
68
63
|
"node-notifier": "^10.0.1",
|
|
69
64
|
"open": "^10.0.3",
|
|
@@ -75,10 +70,12 @@
|
|
|
75
70
|
"tempfile": "^5.0.0"
|
|
76
71
|
},
|
|
77
72
|
"devDependencies": {
|
|
73
|
+
"@oclif/test": "^3.1.16",
|
|
78
74
|
"@types/chalk": "^2.2.0",
|
|
79
75
|
"@types/copyfiles": "^2.4.1",
|
|
80
|
-
"@types/js-yaml": "^4.0.
|
|
76
|
+
"@types/js-yaml": "^4.0.9",
|
|
81
77
|
"@types/marked-terminal": "^3.1.3",
|
|
78
|
+
"@types/mocha": "^10.0.6",
|
|
82
79
|
"@types/node": "^20.3.3",
|
|
83
80
|
"@types/node-notifier": "^8.0.2",
|
|
84
81
|
"@types/parse-duration": "^0.3.0",
|
|
@@ -86,29 +83,30 @@
|
|
|
86
83
|
"@types/react": "^18",
|
|
87
84
|
"@types/semver": "^7.5.0",
|
|
88
85
|
"@types/shell-escape": "^0.2.3",
|
|
89
|
-
"@typescript-eslint/eslint-plugin": "^
|
|
90
|
-
"@typescript-eslint/parser": "^
|
|
86
|
+
"@typescript-eslint/eslint-plugin": "^7.1.0",
|
|
87
|
+
"@typescript-eslint/parser": "^7.0.2",
|
|
91
88
|
"@yarnpkg/pnpify": "^4.0.0-rc.48",
|
|
92
|
-
"copyfiles": "^2.4.1",
|
|
93
89
|
"eslint": "^8.44.0",
|
|
94
|
-
"eslint-config-prettier": "^9.
|
|
90
|
+
"eslint-config-prettier": "^9.1.0",
|
|
95
91
|
"eslint-plugin-json": "^3.1.0",
|
|
96
|
-
"eslint-plugin-prettier": "^
|
|
92
|
+
"eslint-plugin-prettier": "^5.1.3",
|
|
97
93
|
"license-checker-rseidelsohn": "^4.2.6",
|
|
94
|
+
"mocha": "^10.3.0",
|
|
98
95
|
"oclif": "^4.3.9",
|
|
99
|
-
"
|
|
100
|
-
"prettier": "^
|
|
101
|
-
"prettier-plugin-
|
|
102
|
-
"prettier-plugin-
|
|
103
|
-
"prettier-plugin-sort-json": "^2.0.0",
|
|
96
|
+
"prettier": "^3.2.5",
|
|
97
|
+
"prettier-plugin-jsdoc": "^1.3.0",
|
|
98
|
+
"prettier-plugin-package": "^1.4.0",
|
|
99
|
+
"prettier-plugin-sort-json": "^3.1.0",
|
|
104
100
|
"rimraf": "^5.0.1",
|
|
101
|
+
"ts-node": "^10.9.2",
|
|
102
|
+
"tsx": "^4.7.1",
|
|
105
103
|
"type-fest": "^4.6.0",
|
|
106
104
|
"typescript": "^5.1.6"
|
|
107
105
|
},
|
|
108
106
|
"oclif": {
|
|
109
107
|
"bin": "mw",
|
|
110
108
|
"dirname": "mw",
|
|
111
|
-
"commands": "./dist/
|
|
109
|
+
"commands": "./dist/commands",
|
|
112
110
|
"macos": {
|
|
113
111
|
"identifier": "de.mittwald.cli"
|
|
114
112
|
},
|
|
@@ -154,6 +152,9 @@
|
|
|
154
152
|
"database": {
|
|
155
153
|
"description": "Manage databases (like MySQL and Redis) in your projects"
|
|
156
154
|
},
|
|
155
|
+
"ddev": {
|
|
156
|
+
"description": "Integrate your mittwald projects with DDEV"
|
|
157
|
+
},
|
|
157
158
|
"domain": {
|
|
158
159
|
"description": "Manage domains, virtual hosts and DNS settings in your projects"
|
|
159
160
|
},
|
package/bin/dev
DELETED
|
@@ -1,17 +0,0 @@
|
|
|
1
|
-
#!/usr/bin/env node
|
|
2
|
-
|
|
3
|
-
const oclif = require('@oclif/core')
|
|
4
|
-
|
|
5
|
-
const path = require('path')
|
|
6
|
-
const project = path.join(__dirname, '..', 'tsconfig.json')
|
|
7
|
-
|
|
8
|
-
// In dev mode -> use ts-node and dev plugins
|
|
9
|
-
process.env.NODE_ENV = 'development'
|
|
10
|
-
|
|
11
|
-
require('ts-node').register({project})
|
|
12
|
-
|
|
13
|
-
// In dev mode, always show stack traces
|
|
14
|
-
oclif.settings.debug = true;
|
|
15
|
-
|
|
16
|
-
// Start the CLI
|
|
17
|
-
oclif.run().then(oclif.flush).catch(oclif.Errors.handle)
|
|
@@ -1,22 +0,0 @@
|
|
|
1
|
-
import { Command, Interfaces } from "@oclif/core";
|
|
2
|
-
import { BaseCommand } from "./BaseCommand.js";
|
|
3
|
-
import { ListColumns, ListFormatter } from "./Formatter.js";
|
|
4
|
-
import { Response } from "@mittwald/api-client-commons";
|
|
5
|
-
import { SuccessfulResponse } from "./types.js";
|
|
6
|
-
import { ExtendedBaseCommand } from "./ExtendedBaseCommand.js";
|
|
7
|
-
export type Flags<T extends typeof Command> = Interfaces.InferredFlags<(typeof ListBaseCommand)["baseFlags"] & T["flags"]>;
|
|
8
|
-
export type Args<T extends typeof Command> = Interfaces.InferredArgs<T["args"]>;
|
|
9
|
-
export type ColumnOpts<TItem> = {
|
|
10
|
-
shortIdKey?: keyof TItem;
|
|
11
|
-
};
|
|
12
|
-
export declare abstract class ListBaseCommand<T extends typeof BaseCommand, TItem extends Record<string, unknown>, TAPIResponse extends Response> extends ExtendedBaseCommand<T> {
|
|
13
|
-
static baseFlags: {
|
|
14
|
-
[x: string]: Interfaces.Flag<any>;
|
|
15
|
-
};
|
|
16
|
-
protected formatter: ListFormatter;
|
|
17
|
-
init(): Promise<void>;
|
|
18
|
-
run(): Promise<void>;
|
|
19
|
-
protected abstract getData(): Promise<TAPIResponse>;
|
|
20
|
-
protected abstract mapData(data: SuccessfulResponse<TAPIResponse, 200>["data"]): TItem[] | Promise<TItem[]>;
|
|
21
|
-
protected getColumns(data: TItem[], opts?: ColumnOpts<TItem>): ListColumns<TItem>;
|
|
22
|
-
}
|
|
@@ -1,18 +0,0 @@
|
|
|
1
|
-
import { Simplify } from "@mittwald/api-client-commons";
|
|
2
|
-
import { MittwaldAPIV2, MittwaldAPIV2Client } from "@mittwald/api-client";
|
|
3
|
-
import { SuccessfulResponse } from "../../../types.js";
|
|
4
|
-
import { ListBaseCommand } from "../../../ListBaseCommand.js";
|
|
5
|
-
import { ListColumns } from "../../../Formatter.js";
|
|
6
|
-
type ResponseItem = Simplify<MittwaldAPIV2.Paths.V2SystemSoftwares.Get.Responses.$200.Content.ApplicationJson[number]>;
|
|
7
|
-
type Response = Awaited<ReturnType<MittwaldAPIV2Client["app"]["listSystemsoftwares"]>>;
|
|
8
|
-
export declare class List extends ListBaseCommand<typeof List, ResponseItem, Response> {
|
|
9
|
-
static description: string;
|
|
10
|
-
static args: {};
|
|
11
|
-
static flags: {
|
|
12
|
-
[x: string]: import("@oclif/core/lib/interfaces/parser.js").Flag<any>;
|
|
13
|
-
};
|
|
14
|
-
getData(): Promise<Response>;
|
|
15
|
-
protected mapData(data: SuccessfulResponse<Response, 200>["data"]): MittwaldAPIV2.Components.Schemas.AppSystemSoftware[];
|
|
16
|
-
protected getColumns(data: ResponseItem[]): ListColumns<ResponseItem>;
|
|
17
|
-
}
|
|
18
|
-
export {};
|
|
@@ -1,20 +0,0 @@
|
|
|
1
|
-
import { Simplify } from "@mittwald/api-client-commons";
|
|
2
|
-
import { MittwaldAPIV2, MittwaldAPIV2Client } from "@mittwald/api-client";
|
|
3
|
-
import { ListBaseCommand } from "../../../ListBaseCommand.js";
|
|
4
|
-
import { SuccessfulResponse } from "../../../types.js";
|
|
5
|
-
import { ListColumns } from "../../../Formatter.js";
|
|
6
|
-
type ResponseItem = Simplify<MittwaldAPIV2.Paths.V2SystemSoftwareSystemSoftwareIdVersions.Get.Responses.$200.Content.ApplicationJson[number]>;
|
|
7
|
-
type Response = Awaited<ReturnType<MittwaldAPIV2Client["app"]["listSystemsoftwareversions"]>>;
|
|
8
|
-
export declare class Versions extends ListBaseCommand<typeof Versions, ResponseItem, Response> {
|
|
9
|
-
static description: string;
|
|
10
|
-
static args: {
|
|
11
|
-
systemsoftware: import("@oclif/core/lib/interfaces/parser.js").Arg<string, Record<string, unknown>>;
|
|
12
|
-
};
|
|
13
|
-
static flags: {
|
|
14
|
-
[x: string]: import("@oclif/core/lib/interfaces/parser.js").Flag<any>;
|
|
15
|
-
};
|
|
16
|
-
getData(): Promise<Response>;
|
|
17
|
-
protected mapData(data: SuccessfulResponse<Response, 200>["data"]): MittwaldAPIV2.Components.Schemas.AppSystemSoftwareVersion[];
|
|
18
|
-
protected getColumns(data: ResponseItem[]): ListColumns<ResponseItem>;
|
|
19
|
-
}
|
|
20
|
-
export {};
|
|
@@ -1,24 +0,0 @@
|
|
|
1
|
-
import { Simplify } from "@mittwald/api-client-commons";
|
|
2
|
-
import { ListBaseCommand } from "../../ListBaseCommand.js";
|
|
3
|
-
import { MittwaldAPIV2, MittwaldAPIV2Client } from "@mittwald/api-client";
|
|
4
|
-
import { SuccessfulResponse } from "../../types.js";
|
|
5
|
-
import { ListColumns } from "../../Formatter.js";
|
|
6
|
-
import AppApp = MittwaldAPIV2.Components.Schemas.AppApp;
|
|
7
|
-
import AppAppVersion = MittwaldAPIV2.Components.Schemas.AppAppVersion;
|
|
8
|
-
type ResponseItem = Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdAppInstallations.Get.Responses.$200.Content.ApplicationJson[number]>;
|
|
9
|
-
type Response = Awaited<ReturnType<MittwaldAPIV2Client["app"]["listAppinstallations"]>>;
|
|
10
|
-
type ExtendedResponseItem = ResponseItem & {
|
|
11
|
-
app: AppApp;
|
|
12
|
-
appVersionCurrent: AppAppVersion | undefined;
|
|
13
|
-
appVersionDesired: AppAppVersion;
|
|
14
|
-
};
|
|
15
|
-
export default class List extends ListBaseCommand<typeof List, ResponseItem, Response> {
|
|
16
|
-
static description: string;
|
|
17
|
-
static flags: {
|
|
18
|
-
"project-id": import("@oclif/core/lib/interfaces/parser.js").OptionFlag<string>;
|
|
19
|
-
};
|
|
20
|
-
protected getData(): Promise<Response>;
|
|
21
|
-
protected mapData(data: SuccessfulResponse<Response, 200>["data"]): Promise<ExtendedResponseItem[]>;
|
|
22
|
-
protected getColumns(rows: ResponseItem[]): ListColumns<ExtendedResponseItem>;
|
|
23
|
-
}
|
|
24
|
-
export {};
|
|
@@ -1,21 +0,0 @@
|
|
|
1
|
-
import { Response, Simplify } from "@mittwald/api-client-commons";
|
|
2
|
-
import { MittwaldAPIV2 } from "@mittwald/api-client";
|
|
3
|
-
import { SuccessfulResponse } from "../../types.js";
|
|
4
|
-
import { ListBaseCommand } from "../../ListBaseCommand.js";
|
|
5
|
-
import { ListColumns } from "../../Formatter.js";
|
|
6
|
-
import BackupProjectBackup = MittwaldAPIV2.Components.Schemas.BackupProjectBackup;
|
|
7
|
-
type ListResponse = Response<BackupProjectBackup[]>;
|
|
8
|
-
type ListItem = Simplify<BackupProjectBackup>;
|
|
9
|
-
export declare class List extends ListBaseCommand<typeof List, ListItem, ListResponse> {
|
|
10
|
-
static description: string;
|
|
11
|
-
static args: {};
|
|
12
|
-
static flags: {
|
|
13
|
-
"project-id": import("@oclif/core/lib/interfaces/parser.js").OptionFlag<string>;
|
|
14
|
-
};
|
|
15
|
-
static aliases: string[];
|
|
16
|
-
static deprecateAliases: boolean;
|
|
17
|
-
protected mapData(data: SuccessfulResponse<ListResponse, 200>["data"]): ListItem[] | Promise<ListItem[]>;
|
|
18
|
-
getData(): Promise<ListResponse>;
|
|
19
|
-
protected getColumns(data: ListItem[]): ListColumns<ListItem>;
|
|
20
|
-
}
|
|
21
|
-
export {};
|
|
@@ -1,21 +0,0 @@
|
|
|
1
|
-
import { Simplify } from "@mittwald/api-client-commons";
|
|
2
|
-
import { MittwaldAPIV2, MittwaldAPIV2Client } from "@mittwald/api-client";
|
|
3
|
-
import { SuccessfulResponse } from "../../../types.js";
|
|
4
|
-
import { ListColumns } from "../../../Formatter.js";
|
|
5
|
-
import { ListBaseCommand } from "../../../ListBaseCommand.js";
|
|
6
|
-
import BackupProjectBackupSchedule = MittwaldAPIV2.Components.Schemas.BackupProjectBackupSchedule;
|
|
7
|
-
type ResponseItem = Simplify<BackupProjectBackupSchedule>;
|
|
8
|
-
type Response = Awaited<ReturnType<MittwaldAPIV2Client["backup"]["listProjectBackupSchedules"]>>;
|
|
9
|
-
export declare class List extends ListBaseCommand<typeof List, ResponseItem, Response> {
|
|
10
|
-
static description: string;
|
|
11
|
-
static args: {};
|
|
12
|
-
static flags: {
|
|
13
|
-
"project-id": import("@oclif/core/lib/interfaces/parser.js").OptionFlag<string>;
|
|
14
|
-
};
|
|
15
|
-
static aliases: string[];
|
|
16
|
-
static deprecateAliases: boolean;
|
|
17
|
-
getData(): Promise<Response>;
|
|
18
|
-
protected mapData(data: SuccessfulResponse<Response, 200>["data"]): BackupProjectBackupSchedule[];
|
|
19
|
-
protected getColumns(data: ResponseItem[]): ListColumns<ResponseItem>;
|
|
20
|
-
}
|
|
21
|
-
export {};
|
|
@@ -1,18 +0,0 @@
|
|
|
1
|
-
import { Simplify } from "@mittwald/api-client-commons";
|
|
2
|
-
import { MittwaldAPIV2, MittwaldAPIV2Client } from "@mittwald/api-client";
|
|
3
|
-
import { SuccessfulResponse } from "../../types.js";
|
|
4
|
-
import { ListColumns } from "../../Formatter.js";
|
|
5
|
-
import { ListBaseCommand } from "../../ListBaseCommand.js";
|
|
6
|
-
type ResponseItem = Simplify<MittwaldAPIV2.Paths.V2ConversationCategories.Get.Responses.$200.Content.ApplicationJson[number]>;
|
|
7
|
-
type Response = Awaited<ReturnType<MittwaldAPIV2Client["conversation"]["listCategories"]>>;
|
|
8
|
-
export default class Categories extends ListBaseCommand<typeof Categories, ResponseItem, Response> {
|
|
9
|
-
static description: string;
|
|
10
|
-
static args: {};
|
|
11
|
-
static flags: {
|
|
12
|
-
[x: string]: import("@oclif/core/lib/interfaces/parser.js").Flag<any>;
|
|
13
|
-
};
|
|
14
|
-
getData(): Promise<Response>;
|
|
15
|
-
protected mapData(data: SuccessfulResponse<Response, 200>["data"]): MittwaldAPIV2.Components.Schemas.ConversationCategory[];
|
|
16
|
-
protected getColumns(): ListColumns<ResponseItem>;
|
|
17
|
-
}
|
|
18
|
-
export {};
|
|
@@ -1,18 +0,0 @@
|
|
|
1
|
-
import { Simplify } from "@mittwald/api-client-commons";
|
|
2
|
-
import { MittwaldAPIV2, MittwaldAPIV2Client } from "@mittwald/api-client";
|
|
3
|
-
import { SuccessfulResponse } from "../../types.js";
|
|
4
|
-
import { ListColumns } from "../../Formatter.js";
|
|
5
|
-
import { ListBaseCommand } from "../../ListBaseCommand.js";
|
|
6
|
-
type ResponseItem = Simplify<MittwaldAPIV2.Paths.V2Conversations.Get.Responses.$200.Content.ApplicationJson[number]>;
|
|
7
|
-
type Response = Awaited<ReturnType<MittwaldAPIV2Client["conversation"]["listConversations"]>>;
|
|
8
|
-
export default class List extends ListBaseCommand<typeof List, ResponseItem, Response> {
|
|
9
|
-
static description: string;
|
|
10
|
-
static args: {};
|
|
11
|
-
static flags: {
|
|
12
|
-
[x: string]: import("@oclif/core/lib/interfaces/parser.js").Flag<any>;
|
|
13
|
-
};
|
|
14
|
-
getData(): Promise<Response>;
|
|
15
|
-
protected mapData(data: SuccessfulResponse<Response, 200>["data"]): MittwaldAPIV2.Components.Schemas.ConversationConversation[];
|
|
16
|
-
protected getColumns(): ListColumns<ResponseItem>;
|
|
17
|
-
}
|
|
18
|
-
export {};
|
|
@@ -1,74 +0,0 @@
|
|
|
1
|
-
import { BaseCommand } from "../../BaseCommand.js";
|
|
2
|
-
import { Args } from "@oclif/core";
|
|
3
|
-
import { normalizeConversationId } from "../../normalize_id.js";
|
|
4
|
-
import { assertStatus } from "@mittwald/api-client-commons";
|
|
5
|
-
import { formatRelativeDate } from "../../lib/viewhelpers/date.js";
|
|
6
|
-
import { marked } from "marked";
|
|
7
|
-
import TerminalRenderer from "marked-terminal";
|
|
8
|
-
import chalk from "chalk";
|
|
9
|
-
import { printHeader, printKeyValues } from "../../lib/viewhelpers/tui.js";
|
|
10
|
-
export default class Show extends BaseCommand {
|
|
11
|
-
static description = "Show a conversation and message history";
|
|
12
|
-
static args = {
|
|
13
|
-
id: Args.string({
|
|
14
|
-
required: true,
|
|
15
|
-
description: "ID of the conversation to show",
|
|
16
|
-
}),
|
|
17
|
-
};
|
|
18
|
-
async run() {
|
|
19
|
-
const { args } = await this.parse(Show);
|
|
20
|
-
const conversationId = await normalizeConversationId(this.apiClient, args.id);
|
|
21
|
-
const [conversationResponse, messagesResponse] = await Promise.all([
|
|
22
|
-
this.apiClient.conversation.getConversation({
|
|
23
|
-
conversationId,
|
|
24
|
-
}),
|
|
25
|
-
this.apiClient.conversation.listMessagesByConversation({
|
|
26
|
-
conversationId,
|
|
27
|
-
}),
|
|
28
|
-
]);
|
|
29
|
-
assertStatus(conversationResponse, 200);
|
|
30
|
-
assertStatus(messagesResponse, 200);
|
|
31
|
-
const conv = conversationResponse.data;
|
|
32
|
-
printHeader("Conversation metadata");
|
|
33
|
-
printKeyValues({
|
|
34
|
-
Title: conv.title,
|
|
35
|
-
ID: conv.shortId,
|
|
36
|
-
Opened: `${formatRelativeDate(conv.createdAt)} by ${conv.createdBy ? conv.createdBy.clearName : "Unknown User"}`,
|
|
37
|
-
Status: conv.status,
|
|
38
|
-
});
|
|
39
|
-
console.log();
|
|
40
|
-
printHeader("Messages");
|
|
41
|
-
marked.setOptions({
|
|
42
|
-
renderer: new TerminalRenderer(),
|
|
43
|
-
});
|
|
44
|
-
const metaColor = chalk.gray;
|
|
45
|
-
for (const msg of messagesResponse.data) {
|
|
46
|
-
if (msg.type === "MESSAGE") {
|
|
47
|
-
console.log(chalk.whiteBright.underline(`${msg.createdBy?.clearName}, ${formatRelativeDate(msg.createdAt)}`));
|
|
48
|
-
const rendered = (await marked(msg.messageContent ?? ""))
|
|
49
|
-
.trim()
|
|
50
|
-
.split("\n")
|
|
51
|
-
.join("\n");
|
|
52
|
-
console.log(rendered);
|
|
53
|
-
console.log();
|
|
54
|
-
}
|
|
55
|
-
else {
|
|
56
|
-
switch (msg.messageContent) {
|
|
57
|
-
case "CONVERSATION_CREATED":
|
|
58
|
-
console.log(metaColor(`CREATED, ${formatRelativeDate(msg.createdAt)}`));
|
|
59
|
-
break;
|
|
60
|
-
case "STATUS_OPEN":
|
|
61
|
-
console.log(metaColor(`REOPENED, ${formatRelativeDate(msg.createdAt)}`));
|
|
62
|
-
break;
|
|
63
|
-
case "STATUS_CLOSED":
|
|
64
|
-
console.log(metaColor(`CLOSED, ${formatRelativeDate(msg.createdAt)}`));
|
|
65
|
-
break;
|
|
66
|
-
default:
|
|
67
|
-
console.log(metaColor(`${msg.messageContent}, ${formatRelativeDate(msg.createdAt)}`));
|
|
68
|
-
break;
|
|
69
|
-
}
|
|
70
|
-
console.log();
|
|
71
|
-
}
|
|
72
|
-
}
|
|
73
|
-
}
|
|
74
|
-
}
|
|
@@ -1,20 +0,0 @@
|
|
|
1
|
-
import { Simplify } from "@mittwald/api-client-commons";
|
|
2
|
-
import { MittwaldAPIV2, MittwaldAPIV2Client } from "@mittwald/api-client";
|
|
3
|
-
import { SuccessfulResponse } from "../../../types.js";
|
|
4
|
-
import { ListColumns } from "../../../Formatter.js";
|
|
5
|
-
import { ListBaseCommand } from "../../../ListBaseCommand.js";
|
|
6
|
-
type ResponseItem = Simplify<MittwaldAPIV2.Paths.V2CronjobsCronjobIdExecutions.Get.Responses.$200.Content.ApplicationJson[number]>;
|
|
7
|
-
type Response = Awaited<ReturnType<MittwaldAPIV2Client["cronjob"]["listExecutions"]>>;
|
|
8
|
-
export declare class List extends ListBaseCommand<typeof List, ResponseItem, Response> {
|
|
9
|
-
static description: string;
|
|
10
|
-
static aliases: string[];
|
|
11
|
-
static deprecateAliases: boolean;
|
|
12
|
-
static args: {};
|
|
13
|
-
static flags: {
|
|
14
|
-
"cronjob-id": import("@oclif/core/lib/interfaces/parser.js").OptionFlag<string, import("@oclif/core/lib/interfaces/parser.js").CustomOptions>;
|
|
15
|
-
};
|
|
16
|
-
getData(): Promise<Response>;
|
|
17
|
-
protected mapData(data: SuccessfulResponse<Response, 200>["data"]): MittwaldAPIV2.Components.Schemas.CronjobCronjobExecution[];
|
|
18
|
-
protected getColumns(): ListColumns<ResponseItem>;
|
|
19
|
-
}
|
|
20
|
-
export {};
|
|
@@ -1,21 +0,0 @@
|
|
|
1
|
-
import { Simplify } from "@mittwald/api-client-commons";
|
|
2
|
-
import { MittwaldAPIV2, MittwaldAPIV2Client } from "@mittwald/api-client";
|
|
3
|
-
import { SuccessfulResponse } from "../../types.js";
|
|
4
|
-
import { ListBaseCommand } from "../../ListBaseCommand.js";
|
|
5
|
-
import { ListColumns } from "../../Formatter.js";
|
|
6
|
-
type ResponseItem = Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdCronjobs.Get.Responses.$200.Content.ApplicationJson[number]>;
|
|
7
|
-
export type PathParams = MittwaldAPIV2.Paths.V2ProjectsProjectIdCronjobs.Get.Parameters.Path;
|
|
8
|
-
export type Response = Awaited<ReturnType<MittwaldAPIV2Client["cronjob"]["listCronjobs"]>>;
|
|
9
|
-
export declare class List extends ListBaseCommand<typeof List, ResponseItem, Response> {
|
|
10
|
-
static description: string;
|
|
11
|
-
static aliases: string[];
|
|
12
|
-
static deprecateAliases: boolean;
|
|
13
|
-
static args: {};
|
|
14
|
-
static flags: {
|
|
15
|
-
"project-id": import("@oclif/core/lib/interfaces/parser.js").OptionFlag<string>;
|
|
16
|
-
};
|
|
17
|
-
getData(): Promise<Response>;
|
|
18
|
-
protected mapData(data: SuccessfulResponse<Response, 200>["data"]): ResponseItem[] | Promise<ResponseItem[]>;
|
|
19
|
-
protected getColumns(data: ResponseItem[]): ListColumns<ResponseItem>;
|
|
20
|
-
}
|
|
21
|
-
export {};
|
|
@@ -1,18 +0,0 @@
|
|
|
1
|
-
import { Simplify } from "@mittwald/api-client-commons";
|
|
2
|
-
import { MittwaldAPIV2, MittwaldAPIV2Client } from "@mittwald/api-client";
|
|
3
|
-
import { SuccessfulResponse } from "../../../types.js";
|
|
4
|
-
import { ListBaseCommand } from "../../../ListBaseCommand.js";
|
|
5
|
-
import { ListColumns } from "../../../Formatter.js";
|
|
6
|
-
type ResponseItem = Simplify<MittwaldAPIV2.Paths.V2MysqlCharsets.Get.Responses.$200.Content.ApplicationJson[number]>;
|
|
7
|
-
type Response = Awaited<ReturnType<MittwaldAPIV2Client["database"]["listMysqlCharsets"]>>;
|
|
8
|
-
export declare class Charsets extends ListBaseCommand<typeof Charsets, ResponseItem, Response> {
|
|
9
|
-
static description: string;
|
|
10
|
-
static args: {};
|
|
11
|
-
static flags: {
|
|
12
|
-
[x: string]: import("@oclif/core/lib/interfaces/parser.js").Flag<any>;
|
|
13
|
-
};
|
|
14
|
-
getData(): Promise<Response>;
|
|
15
|
-
protected mapData(data: SuccessfulResponse<Response, 200>["data"]): MittwaldAPIV2.Components.Schemas.DatabaseMySqlCharacterSettings[];
|
|
16
|
-
protected getColumns(): ListColumns<ResponseItem>;
|
|
17
|
-
}
|
|
18
|
-
export {};
|
|
@@ -1,18 +0,0 @@
|
|
|
1
|
-
import { Simplify } from "@mittwald/api-client-commons";
|
|
2
|
-
import { MittwaldAPIV2, MittwaldAPIV2Client } from "@mittwald/api-client";
|
|
3
|
-
import { SuccessfulResponse } from "../../../types.js";
|
|
4
|
-
import { ListColumns } from "../../../Formatter.js";
|
|
5
|
-
import { ListBaseCommand } from "../../../ListBaseCommand.js";
|
|
6
|
-
type ResponseItem = Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdMysqlDatabases.Get.Responses.$200.Content.ApplicationJson[number]>;
|
|
7
|
-
type Response = Awaited<ReturnType<MittwaldAPIV2Client["database"]["listMysqlDatabases"]>>;
|
|
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/lib/interfaces/parser.js").OptionFlag<string>;
|
|
13
|
-
};
|
|
14
|
-
getData(): Promise<Response>;
|
|
15
|
-
protected mapData(data: SuccessfulResponse<Response, 200>["data"]): MittwaldAPIV2.Components.Schemas.DatabaseMySqlDatabase[];
|
|
16
|
-
protected getColumns(ignoredData: ResponseItem[]): ListColumns<ResponseItem>;
|
|
17
|
-
}
|
|
18
|
-
export {};
|
|
@@ -1,18 +0,0 @@
|
|
|
1
|
-
import { Simplify } from "@mittwald/api-client-commons";
|
|
2
|
-
import { MittwaldAPIV2, MittwaldAPIV2Client } from "@mittwald/api-client";
|
|
3
|
-
import { SuccessfulResponse } from "../../../../types.js";
|
|
4
|
-
import { ListBaseCommand } from "../../../../ListBaseCommand.js";
|
|
5
|
-
import { ListColumns } from "../../../../Formatter.js";
|
|
6
|
-
type ResponseItem = Simplify<MittwaldAPIV2.Paths.V2MysqlDatabasesMysqlDatabaseIdUsers.Get.Responses.$200.Content.ApplicationJson[number]>;
|
|
7
|
-
type Response = Awaited<ReturnType<MittwaldAPIV2Client["database"]["listMysqlUsers"]>>;
|
|
8
|
-
export declare class List extends ListBaseCommand<typeof List, ResponseItem, Response> {
|
|
9
|
-
static description: string;
|
|
10
|
-
static args: {};
|
|
11
|
-
static flags: {
|
|
12
|
-
"database-id": import("@oclif/core/lib/interfaces/parser.js").OptionFlag<string, import("@oclif/core/lib/interfaces/parser.js").CustomOptions>;
|
|
13
|
-
};
|
|
14
|
-
getData(): Promise<Response>;
|
|
15
|
-
protected mapData(data: SuccessfulResponse<Response, 200>["data"]): MittwaldAPIV2.Components.Schemas.DatabaseMySqlUser[];
|
|
16
|
-
protected getColumns(data: ResponseItem[]): ListColumns<ResponseItem>;
|
|
17
|
-
}
|
|
18
|
-
export {};
|
|
@@ -1,18 +0,0 @@
|
|
|
1
|
-
import { Simplify } from "@mittwald/api-client-commons";
|
|
2
|
-
import { MittwaldAPIV2, MittwaldAPIV2Client } from "@mittwald/api-client";
|
|
3
|
-
import { SuccessfulResponse } from "../../../types.js";
|
|
4
|
-
import { ListBaseCommand } from "../../../ListBaseCommand.js";
|
|
5
|
-
import { ListColumns } from "../../../Formatter.js";
|
|
6
|
-
type ResponseItem = Simplify<MittwaldAPIV2.Paths.V2MysqlVersions.Get.Responses.$200.Content.ApplicationJson[number]>;
|
|
7
|
-
type Response = Awaited<ReturnType<MittwaldAPIV2Client["database"]["listMysqlVersions"]>>;
|
|
8
|
-
export declare class Versions extends ListBaseCommand<typeof Versions, ResponseItem, Response> {
|
|
9
|
-
static description: string;
|
|
10
|
-
static args: {};
|
|
11
|
-
static flags: {
|
|
12
|
-
[x: string]: import("@oclif/core/lib/interfaces/parser.js").Flag<any>;
|
|
13
|
-
};
|
|
14
|
-
getData(): Promise<Response>;
|
|
15
|
-
protected mapData(data: SuccessfulResponse<Response, 200>["data"]): MittwaldAPIV2.Components.Schemas.DatabaseMySqlVersion[];
|
|
16
|
-
protected getColumns(): ListColumns<ResponseItem>;
|
|
17
|
-
}
|
|
18
|
-
export {};
|