def register_command(self, app: typer.Typer) -> None:
"""Register the edit command with the Typer application."""
@app.command()
def edit(
app_names: list[str] | None = CLIOptions.EDIT_APP_NAME_ARGUMENT_OPTIONAL,
config_dir: Path | None = CLIOptions.CONFIG_DIR_OPTION,
url: str | None = CLIOptions.EDIT_URL_OPTION,
download_dir: str | None = CLIOptions.EDIT_DOWNLOAD_DIR_OPTION,
basename: str | None = CLIOptions.EDIT_BASENAME_OPTION,
pattern: str | None = CLIOptions.EDIT_PATTERN_OPTION,
version_pattern: str | None = CLIOptions.EDIT_VERSION_PATTERN_OPTION,
enable: bool | None = CLIOptions.EDIT_ENABLE_OPTION,
prerelease: bool | None = CLIOptions.EDIT_PRERELEASE_OPTION,
rotation: bool | None = CLIOptions.EDIT_ROTATION_OPTION,
symlink_path: str | None = CLIOptions.EDIT_SYMLINK_PATH_OPTION,
retain_count: int | None = CLIOptions.EDIT_RETAIN_COUNT_OPTION,
checksum: bool | None = CLIOptions.EDIT_CHECKSUM_OPTION,
checksum_algorithm: str | None = CLIOptions.EDIT_CHECKSUM_ALGORITHM_OPTION,
checksum_pattern: str | None = CLIOptions.EDIT_CHECKSUM_PATTERN_OPTION,
checksum_required: bool | None = CLIOptions.EDIT_CHECKSUM_REQUIRED_OPTION,
create_dir: bool = CLIOptions.CREATE_DIR_OPTION,
yes: bool = CLIOptions.YES_OPTION,
no: bool = CLIOptions.NO_OPTION,
force: bool = CLIOptions.EDIT_FORCE_OPTION,
direct: bool | None = CLIOptions.EDIT_DIRECT_OPTION,
auto_subdir: bool | None = CLIOptions.EDIT_AUTO_SUBDIR_OPTION,
verbose: bool = CLIOptions.VERBOSE_OPTION,
dry_run: bool = CLIOptions.EDIT_DRY_RUN_OPTION,
debug: bool = CLIOptions.debug_option(),
output_format: OutputFormat = CLIOptions.FORMAT_OPTION,
_version: bool = CLIOptions.version_option(self._version_callback),
) -> None:
"""Edit configuration for existing applications."""
if app_names is None:
self._show_edit_help()
raise typer.Exit(0)
self._execute_edit_command(
app_names=app_names,
config_dir=config_dir,
url=url,
download_dir=download_dir,
basename=basename,
pattern=pattern,
version_pattern=version_pattern,
enable=enable,
prerelease=prerelease,
rotation=rotation,
symlink_path=symlink_path,
retain_count=retain_count,
checksum=checksum,
checksum_algorithm=checksum_algorithm,
checksum_pattern=checksum_pattern,
checksum_required=checksum_required,
create_dir=create_dir,
yes=yes,
no=no,
force=force,
direct=direct,
auto_subdir=auto_subdir,
verbose=verbose,
dry_run=dry_run,
debug=debug,
output_format=output_format,
)