#compdef ordinary
autoload -U is-at-least
_ordinary() {
typeset -A opt_args
typeset -a _arguments_options
local ret=1
if is-at-least 5.2; then
_arguments_options=(-s -S -C)
else
_arguments_options=(-s -C)
fi
local context curcontext="$curcontext" state line
_arguments "${_arguments_options[@]}" : \
'*-v[Increase logging verbosity]' \
'*--verbose[Increase logging verbosity]' \
'(-v --verbose)*-q[Decrease logging verbosity]' \
'(-v --verbose)*--quiet[Decrease logging verbosity]' \
'--pretty[whether to pretty print events to stdio]' \
'-h[Print help]' \
'--help[Print help]' \
'-V[Print version]' \
'--version[Print version]' \
":: :_ordinary_commands" \
"*::: :->ordinary" \
&& ret=0
case $state in
(ordinary)
words=($line[1] "${words[@]}")
(( CURRENT += 1 ))
curcontext="${curcontext%:*:*}:ordinary-command-$line[1]:"
case $line[1] in
(app)
_arguments "${_arguments_options[@]}" : \
'*-v[Increase logging verbosity]' \
'*--verbose[Increase logging verbosity]' \
'(-v --verbose)*-q[Decrease logging verbosity]' \
'(-v --verbose)*--quiet[Decrease logging verbosity]' \
'--pretty[whether to pretty print events to stdio]' \
'-h[Print help]' \
'--help[Print help]' \
'-V[Print version]' \
'--version[Print version]' \
":: :_ordinary__subcmd__app_commands" \
"*::: :->app" \
&& ret=0
case $state in
(app)
words=($line[1] "${words[@]}")
(( CURRENT += 1 ))
curcontext="${curcontext%:*:*}:ordinary-app-command-$line[1]:"
case $line[1] in
(new)
_arguments "${_arguments_options[@]}" : \
'--path=[project path]:PATH:_default' \
'*-v[Increase logging verbosity]' \
'*--verbose[Increase logging verbosity]' \
'(-v --verbose)*-q[Decrease logging verbosity]' \
'(-v --verbose)*--quiet[Decrease logging verbosity]' \
'--pretty[whether to pretty print events to stdio]' \
'-h[Print help]' \
'--help[Print help]' \
'-V[Print version]' \
'--version[Print version]' \
':domain -- project domain:_default' \
&& ret=0
;;
(create)
_arguments "${_arguments_options[@]}" : \
'--path=[project path]:PATH:_default' \
'*-v[Increase logging verbosity]' \
'*--verbose[Increase logging verbosity]' \
'(-v --verbose)*-q[Decrease logging verbosity]' \
'(-v --verbose)*--quiet[Decrease logging verbosity]' \
'--pretty[whether to pretty print events to stdio]' \
'-h[Print help]' \
'--help[Print help]' \
'-V[Print version]' \
'--version[Print version]' \
':domain -- project domain:_default' \
&& ret=0
;;
(init)
_arguments "${_arguments_options[@]}" : \
'--path=[project path]:PATH:_default' \
'*-v[Increase logging verbosity]' \
'*--verbose[Increase logging verbosity]' \
'(-v --verbose)*-q[Decrease logging verbosity]' \
'(-v --verbose)*--quiet[Decrease logging verbosity]' \
'--pretty[whether to pretty print events to stdio]' \
'-h[Print help]' \
'--help[Print help]' \
'-V[Print version]' \
'--version[Print version]' \
':domain -- project domain:_default' \
&& ret=0
;;
(build)
_arguments "${_arguments_options[@]}" : \
'-p+[project path]:PROJECT:_default' \
'--project=[project path]:PROJECT:_default' \
'-f[build project without checking the cache]' \
'--force[build project without checking the cache]' \
'*-v[Increase logging verbosity]' \
'*--verbose[Increase logging verbosity]' \
'(-v --verbose)*-q[Decrease logging verbosity]' \
'(-v --verbose)*--quiet[Decrease logging verbosity]' \
'--pretty[whether to pretty print events to stdio]' \
'-h[Print help (see more with '\''--help'\'')]' \
'--help[Print help (see more with '\''--help'\'')]' \
'-V[Print version]' \
'--version[Print version]' \
&& ret=0
;;
(start)
_arguments "${_arguments_options[@]}" : \
'--provision=[what mode TLS certs should be provisioned in]:PROVISION:(staging production localhost)' \
'--port=[specify HTTP(s) port for server]:PORT:_default' \
'--redirect-port=[specify HTTP port for server when running in secure mode]:REDIRECT_PORT:_default' \
'--log-ttl-hours=[max period of time logs are stored]:LOG_TTL_HOURS:_default' \
'--log-rotation-file-size=[max size (in bytes) per log file]:LOG_ROTATION_FILE_SIZE:_default' \
'--log-rotation-mins=[max amount of time a log file is appended to before being compressed and stored]:LOG_ROTATION_MINS:_default' \
'--redacted-header-hash=["none" | "blake2" | "blake3"]:REDACTED_HEADER_HASH:_default' \
'--data-dir=[specify the data directory]:DATA_DIR:_default' \
'--stdio-logs-fmt=[how to format stdio logs]:STDIO_LOGS_FMT:(concise pretty json)' \
'--log-level=[base log level for every component]:LOG_LEVEL:(error warn info debug trace)' \
'-p+[project path]:PROJECT:_default' \
'--project=[project path]:PROJECT:_default' \
'--insecure[run without HTTPS]' \
'--insecure-cookies[run with insecure cookies]' \
'--log-headers[whether HTTP request and response headers are logged]' \
'--log-ips[whether IP Addresses are logged with HTTP requests]' \
'--danger-dns-no-verify[set to \`true\` to bypass verification of proxy domain and CNAME DNS TXT records]' \
'--stored-logs[persists JSON formatted log lines to <data-dir>/logs/<domain>/]' \
'--stdio-logs[logs events to stdio]' \
'--journald-logs[logs events to \`journald\` (only works on Linux distros that use \`systemd\`)]' \
'--log-sizes[whether storage and certain payload sizes are logged]' \
'--stdio-logs-timing[whether span timing is logged]' \
'-d[disables these defaults set for development\: \`--stdio-logs\` \`--stdio-logs-fmt concise\` \`--insecure\` \`--insecure-cookies\`]' \
'--disable-defaults[disables these defaults set for development\: \`--stdio-logs\` \`--stdio-logs-fmt concise\` \`--insecure\` \`--insecure-cookies\`]' \
'*-v[Increase logging verbosity]' \
'*--verbose[Increase logging verbosity]' \
'(-v --verbose)*-q[Decrease logging verbosity]' \
'(-v --verbose)*--quiet[Decrease logging verbosity]' \
'--pretty[whether to pretty print events to stdio]' \
'-h[Print help (see more with '\''--help'\'')]' \
'--help[Print help (see more with '\''--help'\'')]' \
'-V[Print version]' \
'--version[Print version]' \
&& ret=0
;;
(run)
_arguments "${_arguments_options[@]}" : \
'--provision=[what mode TLS certs should be provisioned in]:PROVISION:(staging production localhost)' \
'--port=[specify HTTP(s) port for server]:PORT:_default' \
'--redirect-port=[specify HTTP port for server when running in secure mode]:REDIRECT_PORT:_default' \
'--log-ttl-hours=[max period of time logs are stored]:LOG_TTL_HOURS:_default' \
'--log-rotation-file-size=[max size (in bytes) per log file]:LOG_ROTATION_FILE_SIZE:_default' \
'--log-rotation-mins=[max amount of time a log file is appended to before being compressed and stored]:LOG_ROTATION_MINS:_default' \
'--redacted-header-hash=["none" | "blake2" | "blake3"]:REDACTED_HEADER_HASH:_default' \
'--data-dir=[specify the data directory]:DATA_DIR:_default' \
'--stdio-logs-fmt=[how to format stdio logs]:STDIO_LOGS_FMT:(concise pretty json)' \
'--log-level=[base log level for every component]:LOG_LEVEL:(error warn info debug trace)' \
'-p+[project path]:PROJECT:_default' \
'--project=[project path]:PROJECT:_default' \
'--insecure[run without HTTPS]' \
'--insecure-cookies[run with insecure cookies]' \
'--log-headers[whether HTTP request and response headers are logged]' \
'--log-ips[whether IP Addresses are logged with HTTP requests]' \
'--danger-dns-no-verify[set to \`true\` to bypass verification of proxy domain and CNAME DNS TXT records]' \
'--stored-logs[persists JSON formatted log lines to <data-dir>/logs/<domain>/]' \
'--stdio-logs[logs events to stdio]' \
'--journald-logs[logs events to \`journald\` (only works on Linux distros that use \`systemd\`)]' \
'--log-sizes[whether storage and certain payload sizes are logged]' \
'--stdio-logs-timing[whether span timing is logged]' \
'-d[disables these defaults set for development\: \`--stdio-logs\` \`--stdio-logs-fmt concise\` \`--insecure\` \`--insecure-cookies\`]' \
'--disable-defaults[disables these defaults set for development\: \`--stdio-logs\` \`--stdio-logs-fmt concise\` \`--insecure\` \`--insecure-cookies\`]' \
'*-v[Increase logging verbosity]' \
'*--verbose[Increase logging verbosity]' \
'(-v --verbose)*-q[Decrease logging verbosity]' \
'(-v --verbose)*--quiet[Decrease logging verbosity]' \
'--pretty[whether to pretty print events to stdio]' \
'-h[Print help (see more with '\''--help'\'')]' \
'--help[Print help (see more with '\''--help'\'')]' \
'-V[Print version]' \
'--version[Print version]' \
&& ret=0
;;
(preview)
_arguments "${_arguments_options[@]}" : \
'--provision=[what mode TLS certs should be provisioned in]:PROVISION:(staging production localhost)' \
'--port=[specify HTTP(s) port for server]:PORT:_default' \
'--redirect-port=[specify HTTP port for server when running in secure mode]:REDIRECT_PORT:_default' \
'--log-ttl-hours=[max period of time logs are stored]:LOG_TTL_HOURS:_default' \
'--log-rotation-file-size=[max size (in bytes) per log file]:LOG_ROTATION_FILE_SIZE:_default' \
'--log-rotation-mins=[max amount of time a log file is appended to before being compressed and stored]:LOG_ROTATION_MINS:_default' \
'--redacted-header-hash=["none" | "blake2" | "blake3"]:REDACTED_HEADER_HASH:_default' \
'--data-dir=[specify the data directory]:DATA_DIR:_default' \
'--stdio-logs-fmt=[how to format stdio logs]:STDIO_LOGS_FMT:(concise pretty json)' \
'--log-level=[base log level for every component]:LOG_LEVEL:(error warn info debug trace)' \
'-p+[project path]:PROJECT:_default' \
'--project=[project path]:PROJECT:_default' \
'--insecure[run without HTTPS]' \
'--insecure-cookies[run with insecure cookies]' \
'--log-headers[whether HTTP request and response headers are logged]' \
'--log-ips[whether IP Addresses are logged with HTTP requests]' \
'--danger-dns-no-verify[set to \`true\` to bypass verification of proxy domain and CNAME DNS TXT records]' \
'--stored-logs[persists JSON formatted log lines to <data-dir>/logs/<domain>/]' \
'--stdio-logs[logs events to stdio]' \
'--journald-logs[logs events to \`journald\` (only works on Linux distros that use \`systemd\`)]' \
'--log-sizes[whether storage and certain payload sizes are logged]' \
'--stdio-logs-timing[whether span timing is logged]' \
'-d[disables these defaults set for development\: \`--stdio-logs\` \`--stdio-logs-fmt concise\` \`--insecure\` \`--insecure-cookies\`]' \
'--disable-defaults[disables these defaults set for development\: \`--stdio-logs\` \`--stdio-logs-fmt concise\` \`--insecure\` \`--insecure-cookies\`]' \
'*-v[Increase logging verbosity]' \
'*--verbose[Increase logging verbosity]' \
'(-v --verbose)*-q[Decrease logging verbosity]' \
'(-v --verbose)*--quiet[Decrease logging verbosity]' \
'--pretty[whether to pretty print events to stdio]' \
'-h[Print help (see more with '\''--help'\'')]' \
'--help[Print help (see more with '\''--help'\'')]' \
'-V[Print version]' \
'--version[Print version]' \
&& ret=0
;;
(publish)
_arguments "${_arguments_options[@]}" : \
'--host-domain=[should only be necessary with localhost or when addressing by IP]:HOST_DOMAIN:_default' \
'-p+[project path]:PROJECT:_default' \
'--project=[project path]:PROJECT:_default' \
'--insecure[use HTTP instead of HTTPS]' \
'--danger-accept-invalid-certs[DANGER\: only use when working with self-signed localhost certs]' \
'-t[overrides if mode=production. does nothing if mode is localhost or staging]' \
'--tls-staging[overrides if mode=production. does nothing if mode is localhost or staging]' \
'--no-seed[if \`true\`, will not seed the app database on publish]' \
'*-v[Increase logging verbosity]' \
'*--verbose[Increase logging verbosity]' \
'(-v --verbose)*-q[Decrease logging verbosity]' \
'(-v --verbose)*--quiet[Decrease logging verbosity]' \
'--pretty[whether to pretty print events to stdio]' \
'-h[Print help (see more with '\''--help'\'')]' \
'--help[Print help (see more with '\''--help'\'')]' \
'-V[Print version]' \
'--version[Print version]' \
&& ret=0
;;
(deploy)
_arguments "${_arguments_options[@]}" : \
'--host-domain=[should only be necessary with localhost or when addressing by IP]:HOST_DOMAIN:_default' \
'-p+[project path]:PROJECT:_default' \
'--project=[project path]:PROJECT:_default' \
'--insecure[use HTTP instead of HTTPS]' \
'--danger-accept-invalid-certs[DANGER\: only use when working with self-signed localhost certs]' \
'-j[whether the result of the operation should be printed to stdout formatted as JSON]' \
'--json-to-stdout[whether the result of the operation should be printed to stdout formatted as JSON]' \
'-t[overrides if mode=production. does nothing if mode is localhost or staging]' \
'--tls-staging[overrides if mode=production. does nothing if mode is localhost or staging]' \
'*-v[Increase logging verbosity]' \
'*--verbose[Increase logging verbosity]' \
'(-v --verbose)*-q[Decrease logging verbosity]' \
'(-v --verbose)*--quiet[Decrease logging verbosity]' \
'--pretty[whether to pretty print events to stdio]' \
'-h[Print help (see more with '\''--help'\'')]' \
'--help[Print help (see more with '\''--help'\'')]' \
'-V[Print version]' \
'--version[Print version]' \
&& ret=0
;;
(kill)
_arguments "${_arguments_options[@]}" : \
'--host-domain=[should only be necessary with localhost or when addressing by IP]:HOST_DOMAIN:_default' \
'-p+[project path]:PROJECT:_default' \
'--project=[project path]:PROJECT:_default' \
'--insecure[use HTTP instead of HTTPS]' \
'--danger-accept-invalid-certs[DANGER\: only use when working with self-signed localhost certs]' \
'*-v[Increase logging verbosity]' \
'*--verbose[Increase logging verbosity]' \
'(-v --verbose)*-q[Decrease logging verbosity]' \
'(-v --verbose)*--quiet[Decrease logging verbosity]' \
'--pretty[whether to pretty print events to stdio]' \
'-h[Print help]' \
'--help[Print help]' \
'-V[Print version]' \
'--version[Print version]' \
&& ret=0
;;
(restart)
_arguments "${_arguments_options[@]}" : \
'--host-domain=[should only be necessary with localhost or when addressing by IP]:HOST_DOMAIN:_default' \
'-p+[project path]:PROJECT:_default' \
'--project=[project path]:PROJECT:_default' \
'--insecure[use HTTP instead of HTTPS]' \
'--danger-accept-invalid-certs[DANGER\: only use when working with self-signed localhost certs]' \
'-j[whether the result of the operation should be printed to stdout formatted as JSON]' \
'--json-to-stdout[whether the result of the operation should be printed to stdout formatted as JSON]' \
'-t[overrides if mode=production. does nothing if mode is localhost or staging]' \
'--tls-staging[overrides if mode=production. does nothing if mode is localhost or staging]' \
'*-v[Increase logging verbosity]' \
'*--verbose[Increase logging verbosity]' \
'(-v --verbose)*-q[Decrease logging verbosity]' \
'(-v --verbose)*--quiet[Decrease logging verbosity]' \
'--pretty[whether to pretty print events to stdio]' \
'-h[Print help (see more with '\''--help'\'')]' \
'--help[Print help (see more with '\''--help'\'')]' \
'-V[Print version]' \
'--version[Print version]' \
&& ret=0
;;
(erase)
_arguments "${_arguments_options[@]}" : \
'--host-domain=[should only be necessary with localhost or when addressing by IP]:HOST_DOMAIN:_default' \
'-p+[project path]:PROJECT:_default' \
'--project=[project path]:PROJECT:_default' \
'--insecure[use HTTP instead of HTTPS]' \
'--danger-accept-invalid-certs[DANGER\: only use when working with self-signed localhost certs]' \
'*-v[Increase logging verbosity]' \
'*--verbose[Increase logging verbosity]' \
'(-v --verbose)*-q[Decrease logging verbosity]' \
'(-v --verbose)*--quiet[Decrease logging verbosity]' \
'--pretty[whether to pretty print events to stdio]' \
'-h[Print help]' \
'--help[Print help]' \
'-V[Print version]' \
'--version[Print version]' \
&& ret=0
;;
(logs)
_arguments "${_arguments_options[@]}" : \
'--host-domain=[should only be necessary with localhost or when addressing by IP]:HOST_DOMAIN:_default' \
'-p+[project path]:PROJECT:_default' \
'--project=[project path]:PROJECT:_default' \
'--insecure[use HTTP instead of HTTPS]' \
'--danger-accept-invalid-certs[DANGER\: only use when working with self-signed localhost certs]' \
'*-v[Increase logging verbosity]' \
'*--verbose[Increase logging verbosity]' \
'(-v --verbose)*-q[Decrease logging verbosity]' \
'(-v --verbose)*--quiet[Decrease logging verbosity]' \
'--pretty[whether to pretty print events to stdio]' \
'-h[Print help]' \
'--help[Print help]' \
'-V[Print version]' \
'--version[Print version]' \
":: :_ordinary__subcmd__app__subcmd__logs_commands" \
"*::: :->logs" \
&& ret=0
case $state in
(logs)
words=($line[1] "${words[@]}")
(( CURRENT += 1 ))
curcontext="${curcontext%:*:*}:ordinary-app-logs-command-$line[1]:"
case $line[1] in
(sync)
_arguments "${_arguments_options[@]}" : \
'*-v[Increase logging verbosity]' \
'*--verbose[Increase logging verbosity]' \
'(-v --verbose)*-q[Decrease logging verbosity]' \
'(-v --verbose)*--quiet[Decrease logging verbosity]' \
'--pretty[whether to pretty print events to stdio]' \
'-h[Print help]' \
'--help[Print help]' \
'-V[Print version]' \
'--version[Print version]' \
":: :_ordinary__subcmd__app__subcmd__logs__subcmd__sync_commands" \
"*::: :->sync" \
&& ret=0
case $state in
(sync)
words=($line[1] "${words[@]}")
(( CURRENT += 1 ))
curcontext="${curcontext%:*:*}:ordinary-app-logs-sync-command-$line[1]:"
case $line[1] in
(info)
_arguments "${_arguments_options[@]}" : \
'*-v[Increase logging verbosity]' \
'*--verbose[Increase logging verbosity]' \
'(-v --verbose)*-q[Decrease logging verbosity]' \
'(-v --verbose)*--quiet[Decrease logging verbosity]' \
'--pretty[whether to pretty print events to stdio]' \
'-h[Print help (see more with '\''--help'\'')]' \
'--help[Print help (see more with '\''--help'\'')]' \
'-V[Print version]' \
'--version[Print version]' \
&& ret=0
;;
(file)
_arguments "${_arguments_options[@]}" : \
'*-v[Increase logging verbosity]' \
'*--verbose[Increase logging verbosity]' \
'(-v --verbose)*-q[Decrease logging verbosity]' \
'(-v --verbose)*--quiet[Decrease logging verbosity]' \
'--pretty[whether to pretty print events to stdio]' \
'-h[Print help]' \
'--help[Print help]' \
'-V[Print version]' \
'--version[Print version]' \
':name -- file name:_default' \
&& ret=0
;;
(all)
_arguments "${_arguments_options[@]}" : \
'-f+[download all files from the server, overwriting everything you have locally]:FORCE:(true false)' \
'--force=[download all files from the server, overwriting everything you have locally]:FORCE:(true false)' \
'*-v[Increase logging verbosity]' \
'*--verbose[Increase logging verbosity]' \
'(-v --verbose)*-q[Decrease logging verbosity]' \
'(-v --verbose)*--quiet[Decrease logging verbosity]' \
'--pretty[whether to pretty print events to stdio]' \
'-h[Print help (see more with '\''--help'\'')]' \
'--help[Print help (see more with '\''--help'\'')]' \
'-V[Print version]' \
'--version[Print version]' \
&& ret=0
;;
(help)
_arguments "${_arguments_options[@]}" : \
":: :_ordinary__subcmd__app__subcmd__logs__subcmd__sync__subcmd__help_commands" \
"*::: :->help" \
&& ret=0
case $state in
(help)
words=($line[1] "${words[@]}")
(( CURRENT += 1 ))
curcontext="${curcontext%:*:*}:ordinary-app-logs-sync-help-command-$line[1]:"
case $line[1] in
(info)
_arguments "${_arguments_options[@]}" : \
&& ret=0
;;
(file)
_arguments "${_arguments_options[@]}" : \
&& ret=0
;;
(all)
_arguments "${_arguments_options[@]}" : \
&& ret=0
;;
(help)
_arguments "${_arguments_options[@]}" : \
&& ret=0
;;
esac
;;
esac
;;
esac
;;
esac
;;
(list)
_arguments "${_arguments_options[@]}" : \
'*-v[Increase logging verbosity]' \
'*--verbose[Increase logging verbosity]' \
'(-v --verbose)*-q[Decrease logging verbosity]' \
'(-v --verbose)*--quiet[Decrease logging verbosity]' \
'--pretty[whether to pretty print events to stdio]' \
'-h[Print help]' \
'--help[Print help]' \
'-V[Print version]' \
'--version[Print version]' \
&& ret=0
;;
(ls)
_arguments "${_arguments_options[@]}" : \
'*-v[Increase logging verbosity]' \
'*--verbose[Increase logging verbosity]' \
'(-v --verbose)*-q[Decrease logging verbosity]' \
'(-v --verbose)*--quiet[Decrease logging verbosity]' \
'--pretty[whether to pretty print events to stdio]' \
'-h[Print help]' \
'--help[Print help]' \
'-V[Print version]' \
'--version[Print version]' \
&& ret=0
;;
(read)
_arguments "${_arguments_options[@]}" : \
'-n+[name of the log file to read]:NAME:_default' \
'--name=[name of the log file to read]:NAME:_default' \
'*-v[Increase logging verbosity]' \
'*--verbose[Increase logging verbosity]' \
'(-v --verbose)*-q[Decrease logging verbosity]' \
'(-v --verbose)*--quiet[Decrease logging verbosity]' \
'--pretty[whether to pretty print events to stdio]' \
'-h[Print help]' \
'--help[Print help]' \
'-V[Print version]' \
'--version[Print version]' \
&& ret=0
;;
(query)
_arguments "${_arguments_options[@]}" : \
'*-j+[which columns should be nested as JSON]:JSON_COLUMNS:_default' \
'*--json-columns=[which columns should be nested as JSON]:JSON_COLUMNS:_default' \
'-s+[whether to sync from remote]:SYNC:(true false)' \
'--sync=[whether to sync from remote]:SYNC:(true false)' \
'*-v[Increase logging verbosity]' \
'*--verbose[Increase logging verbosity]' \
'(-v --verbose)*-q[Decrease logging verbosity]' \
'(-v --verbose)*--quiet[Decrease logging verbosity]' \
'--pretty[whether to pretty print events to stdio]' \
'-h[Print help (see more with '\''--help'\'')]' \
'--help[Print help (see more with '\''--help'\'')]' \
'-V[Print version]' \
'--version[Print version]' \
':query -- \[reference\](https\://sqlite.org/lang.html):_default' \
&& ret=0
;;
(search)
_arguments "${_arguments_options[@]}" : \
'--limit=[limit (when using '\''top'\'' format)]:LIMIT:_default' \
'-s+[whether to sync from remote]:SYNC:(true false)' \
'--sync=[whether to sync from remote]:SYNC:(true false)' \
'*-v[Increase logging verbosity]' \
'*--verbose[Increase logging verbosity]' \
'(-v --verbose)*-q[Decrease logging verbosity]' \
'(-v --verbose)*--quiet[Decrease logging verbosity]' \
'--pretty[whether to pretty print events to stdio]' \
'-h[Print help]' \
'--help[Print help]' \
'-V[Print version]' \
'--version[Print version]' \
':format -- format:(all top count)' \
':query -- \[reference\](https\://quickwit.io/docs/reference/query-language):_default' \
&& ret=0
;;
(help)
_arguments "${_arguments_options[@]}" : \
":: :_ordinary__subcmd__app__subcmd__logs__subcmd__help_commands" \
"*::: :->help" \
&& ret=0
case $state in
(help)
words=($line[1] "${words[@]}")
(( CURRENT += 1 ))
curcontext="${curcontext%:*:*}:ordinary-app-logs-help-command-$line[1]:"
case $line[1] in
(sync)
_arguments "${_arguments_options[@]}" : \
":: :_ordinary__subcmd__app__subcmd__logs__subcmd__help__subcmd__sync_commands" \
"*::: :->sync" \
&& ret=0
case $state in
(sync)
words=($line[1] "${words[@]}")
(( CURRENT += 1 ))
curcontext="${curcontext%:*:*}:ordinary-app-logs-help-sync-command-$line[1]:"
case $line[1] in
(info)
_arguments "${_arguments_options[@]}" : \
&& ret=0
;;
(file)
_arguments "${_arguments_options[@]}" : \
&& ret=0
;;
(all)
_arguments "${_arguments_options[@]}" : \
&& ret=0
;;
esac
;;
esac
;;
(list)
_arguments "${_arguments_options[@]}" : \
&& ret=0
;;
(read)
_arguments "${_arguments_options[@]}" : \
&& ret=0
;;
(query)
_arguments "${_arguments_options[@]}" : \
&& ret=0
;;
(search)
_arguments "${_arguments_options[@]}" : \
&& ret=0
;;
(help)
_arguments "${_arguments_options[@]}" : \
&& ret=0
;;
esac
;;
esac
;;
esac
;;
esac
;;
(assets)
_arguments "${_arguments_options[@]}" : \
'-p+[project path]:PROJECT:_default' \
'--project=[project path]:PROJECT:_default' \
'*-v[Increase logging verbosity]' \
'*--verbose[Increase logging verbosity]' \
'(-v --verbose)*-q[Decrease logging verbosity]' \
'(-v --verbose)*--quiet[Decrease logging verbosity]' \
'--pretty[whether to pretty print events to stdio]' \
'-h[Print help]' \
'--help[Print help]' \
'-V[Print version]' \
'--version[Print version]' \
":: :_ordinary__subcmd__app__subcmd__assets_commands" \
"*::: :->assets" \
&& ret=0
case $state in
(assets)
words=($line[1] "${words[@]}")
(( CURRENT += 1 ))
curcontext="${curcontext%:*:*}:ordinary-app-assets-command-$line[1]:"
case $line[1] in
(write)
_arguments "${_arguments_options[@]}" : \
'--host-domain=[should only be necessary with localhost or when addressing by IP]:HOST_DOMAIN:_default' \
'-n+[name of a specific asset to write (optional). will write all when the \`--name\` flag is not passed]:NAME:_default' \
'--name=[name of a specific asset to write (optional). will write all when the \`--name\` flag is not passed]:NAME:_default' \
'--insecure[use HTTP instead of HTTPS]' \
'--danger-accept-invalid-certs[DANGER\: only use when working with self-signed localhost certs]' \
'*-v[Increase logging verbosity]' \
'*--verbose[Increase logging verbosity]' \
'(-v --verbose)*-q[Decrease logging verbosity]' \
'(-v --verbose)*--quiet[Decrease logging verbosity]' \
'--pretty[whether to pretty print events to stdio]' \
'-h[Print help]' \
'--help[Print help]' \
'-V[Print version]' \
'--version[Print version]' \
&& ret=0
;;
(prune)
_arguments "${_arguments_options[@]}" : \
'--host-domain=[should only be necessary with localhost or when addressing by IP]:HOST_DOMAIN:_default' \
'--insecure[use HTTP instead of HTTPS]' \
'--danger-accept-invalid-certs[DANGER\: only use when working with self-signed localhost certs]' \
'*-v[Increase logging verbosity]' \
'*--verbose[Increase logging verbosity]' \
'(-v --verbose)*-q[Decrease logging verbosity]' \
'(-v --verbose)*--quiet[Decrease logging verbosity]' \
'--pretty[whether to pretty print events to stdio]' \
'-h[Print help]' \
'--help[Print help]' \
'-V[Print version]' \
'--version[Print version]' \
&& ret=0
;;
(delete)
_arguments "${_arguments_options[@]}" : \
'--host-domain=[should only be necessary with localhost or when addressing by IP]:HOST_DOMAIN:_default' \
'*--skip=[which items to skip when deleting all]:SKIP:_default' \
'--insecure[use HTTP instead of HTTPS]' \
'--danger-accept-invalid-certs[DANGER\: only use when working with self-signed localhost certs]' \
'*-v[Increase logging verbosity]' \
'*--verbose[Increase logging verbosity]' \
'(-v --verbose)*-q[Decrease logging verbosity]' \
'(-v --verbose)*--quiet[Decrease logging verbosity]' \
'--pretty[whether to pretty print events to stdio]' \
'-h[Print help (see more with '\''--help'\'')]' \
'--help[Print help (see more with '\''--help'\'')]' \
'-V[Print version]' \
'--version[Print version]' \
&& ret=0
;;
(del)
_arguments "${_arguments_options[@]}" : \
'--host-domain=[should only be necessary with localhost or when addressing by IP]:HOST_DOMAIN:_default' \
'*--skip=[which items to skip when deleting all]:SKIP:_default' \
'--insecure[use HTTP instead of HTTPS]' \
'--danger-accept-invalid-certs[DANGER\: only use when working with self-signed localhost certs]' \
'*-v[Increase logging verbosity]' \
'*--verbose[Increase logging verbosity]' \
'(-v --verbose)*-q[Decrease logging verbosity]' \
'(-v --verbose)*--quiet[Decrease logging verbosity]' \
'--pretty[whether to pretty print events to stdio]' \
'-h[Print help (see more with '\''--help'\'')]' \
'--help[Print help (see more with '\''--help'\'')]' \
'-V[Print version]' \
'--version[Print version]' \
&& ret=0
;;
(help)
_arguments "${_arguments_options[@]}" : \
":: :_ordinary__subcmd__app__subcmd__assets__subcmd__help_commands" \
"*::: :->help" \
&& ret=0
case $state in
(help)
words=($line[1] "${words[@]}")
(( CURRENT += 1 ))
curcontext="${curcontext%:*:*}:ordinary-app-assets-help-command-$line[1]:"
case $line[1] in
(write)
_arguments "${_arguments_options[@]}" : \
&& ret=0
;;
(prune)
_arguments "${_arguments_options[@]}" : \
&& ret=0
;;
(delete)
_arguments "${_arguments_options[@]}" : \
&& ret=0
;;
(help)
_arguments "${_arguments_options[@]}" : \
&& ret=0
;;
esac
;;
esac
;;
esac
;;
esac
;;
(accounts)
_arguments "${_arguments_options[@]}" : \
'-p+[project path]:PROJECT:_default' \
'--project=[project path]:PROJECT:_default' \
'*-v[Increase logging verbosity]' \
'*--verbose[Increase logging verbosity]' \
'(-v --verbose)*-q[Decrease logging verbosity]' \
'(-v --verbose)*--quiet[Decrease logging verbosity]' \
'--pretty[whether to pretty print events to stdio]' \
'-h[Print help]' \
'--help[Print help]' \
'-V[Print version]' \
'--version[Print version]' \
":: :_ordinary__subcmd__app__subcmd__accounts_commands" \
"*::: :->accounts" \
&& ret=0
case $state in
(accounts)
words=($line[1] "${words[@]}")
(( CURRENT += 1 ))
curcontext="${curcontext%:*:*}:ordinary-app-accounts-command-$line[1]:"
case $line[1] in
(list)
_arguments "${_arguments_options[@]}" : \
'--host-domain=[should only be necessary with localhost or when addressing by IP]:HOST_DOMAIN:_default' \
'--insecure[use HTTP instead of HTTPS]' \
'--danger-accept-invalid-certs[DANGER\: only use when working with self-signed localhost certs]' \
'*-v[Increase logging verbosity]' \
'*--verbose[Increase logging verbosity]' \
'(-v --verbose)*-q[Decrease logging verbosity]' \
'(-v --verbose)*--quiet[Decrease logging verbosity]' \
'--pretty[whether to pretty print events to stdio]' \
'-h[Print help]' \
'--help[Print help]' \
'-V[Print version]' \
'--version[Print version]' \
&& ret=0
;;
(ls)
_arguments "${_arguments_options[@]}" : \
'--host-domain=[should only be necessary with localhost or when addressing by IP]:HOST_DOMAIN:_default' \
'--insecure[use HTTP instead of HTTPS]' \
'--danger-accept-invalid-certs[DANGER\: only use when working with self-signed localhost certs]' \
'*-v[Increase logging verbosity]' \
'*--verbose[Increase logging verbosity]' \
'(-v --verbose)*-q[Decrease logging verbosity]' \
'(-v --verbose)*--quiet[Decrease logging verbosity]' \
'--pretty[whether to pretty print events to stdio]' \
'-h[Print help]' \
'--help[Print help]' \
'-V[Print version]' \
'--version[Print version]' \
&& ret=0
;;
(help)
_arguments "${_arguments_options[@]}" : \
":: :_ordinary__subcmd__app__subcmd__accounts__subcmd__help_commands" \
"*::: :->help" \
&& ret=0
case $state in
(help)
words=($line[1] "${words[@]}")
(( CURRENT += 1 ))
curcontext="${curcontext%:*:*}:ordinary-app-accounts-help-command-$line[1]:"
case $line[1] in
(list)
_arguments "${_arguments_options[@]}" : \
&& ret=0
;;
(help)
_arguments "${_arguments_options[@]}" : \
&& ret=0
;;
esac
;;
esac
;;
esac
;;
esac
;;
(account)
_arguments "${_arguments_options[@]}" : \
'-p+[project path]:PROJECT:_default' \
'--project=[project path]:PROJECT:_default' \
'*-v[Increase logging verbosity]' \
'*--verbose[Increase logging verbosity]' \
'(-v --verbose)*-q[Decrease logging verbosity]' \
'(-v --verbose)*--quiet[Decrease logging verbosity]' \
'--pretty[whether to pretty print events to stdio]' \
'-h[Print help]' \
'--help[Print help]' \
'-V[Print version]' \
'--version[Print version]' \
":: :_ordinary__subcmd__app__subcmd__accounts_commands" \
"*::: :->accounts" \
&& ret=0
case $state in
(accounts)
words=($line[1] "${words[@]}")
(( CURRENT += 1 ))
curcontext="${curcontext%:*:*}:ordinary-app-accounts-command-$line[1]:"
case $line[1] in
(list)
_arguments "${_arguments_options[@]}" : \
'--host-domain=[should only be necessary with localhost or when addressing by IP]:HOST_DOMAIN:_default' \
'--insecure[use HTTP instead of HTTPS]' \
'--danger-accept-invalid-certs[DANGER\: only use when working with self-signed localhost certs]' \
'*-v[Increase logging verbosity]' \
'*--verbose[Increase logging verbosity]' \
'(-v --verbose)*-q[Decrease logging verbosity]' \
'(-v --verbose)*--quiet[Decrease logging verbosity]' \
'--pretty[whether to pretty print events to stdio]' \
'-h[Print help]' \
'--help[Print help]' \
'-V[Print version]' \
'--version[Print version]' \
&& ret=0
;;
(ls)
_arguments "${_arguments_options[@]}" : \
'--host-domain=[should only be necessary with localhost or when addressing by IP]:HOST_DOMAIN:_default' \
'--insecure[use HTTP instead of HTTPS]' \
'--danger-accept-invalid-certs[DANGER\: only use when working with self-signed localhost certs]' \
'*-v[Increase logging verbosity]' \
'*--verbose[Increase logging verbosity]' \
'(-v --verbose)*-q[Decrease logging verbosity]' \
'(-v --verbose)*--quiet[Decrease logging verbosity]' \
'--pretty[whether to pretty print events to stdio]' \
'-h[Print help]' \
'--help[Print help]' \
'-V[Print version]' \
'--version[Print version]' \
&& ret=0
;;
(help)
_arguments "${_arguments_options[@]}" : \
":: :_ordinary__subcmd__app__subcmd__accounts__subcmd__help_commands" \
"*::: :->help" \
&& ret=0
case $state in
(help)
words=($line[1] "${words[@]}")
(( CURRENT += 1 ))
curcontext="${curcontext%:*:*}:ordinary-app-accounts-help-command-$line[1]:"
case $line[1] in
(list)
_arguments "${_arguments_options[@]}" : \
&& ret=0
;;
(help)
_arguments "${_arguments_options[@]}" : \
&& ret=0
;;
esac
;;
esac
;;
esac
;;
esac
;;
(accts)
_arguments "${_arguments_options[@]}" : \
'-p+[project path]:PROJECT:_default' \
'--project=[project path]:PROJECT:_default' \
'*-v[Increase logging verbosity]' \
'*--verbose[Increase logging verbosity]' \
'(-v --verbose)*-q[Decrease logging verbosity]' \
'(-v --verbose)*--quiet[Decrease logging verbosity]' \
'--pretty[whether to pretty print events to stdio]' \
'-h[Print help]' \
'--help[Print help]' \
'-V[Print version]' \
'--version[Print version]' \
":: :_ordinary__subcmd__app__subcmd__accounts_commands" \
"*::: :->accounts" \
&& ret=0
case $state in
(accounts)
words=($line[1] "${words[@]}")
(( CURRENT += 1 ))
curcontext="${curcontext%:*:*}:ordinary-app-accounts-command-$line[1]:"
case $line[1] in
(list)
_arguments "${_arguments_options[@]}" : \
'--host-domain=[should only be necessary with localhost or when addressing by IP]:HOST_DOMAIN:_default' \
'--insecure[use HTTP instead of HTTPS]' \
'--danger-accept-invalid-certs[DANGER\: only use when working with self-signed localhost certs]' \
'*-v[Increase logging verbosity]' \
'*--verbose[Increase logging verbosity]' \
'(-v --verbose)*-q[Decrease logging verbosity]' \
'(-v --verbose)*--quiet[Decrease logging verbosity]' \
'--pretty[whether to pretty print events to stdio]' \
'-h[Print help]' \
'--help[Print help]' \
'-V[Print version]' \
'--version[Print version]' \
&& ret=0
;;
(ls)
_arguments "${_arguments_options[@]}" : \
'--host-domain=[should only be necessary with localhost or when addressing by IP]:HOST_DOMAIN:_default' \
'--insecure[use HTTP instead of HTTPS]' \
'--danger-accept-invalid-certs[DANGER\: only use when working with self-signed localhost certs]' \
'*-v[Increase logging verbosity]' \
'*--verbose[Increase logging verbosity]' \
'(-v --verbose)*-q[Decrease logging verbosity]' \
'(-v --verbose)*--quiet[Decrease logging verbosity]' \
'--pretty[whether to pretty print events to stdio]' \
'-h[Print help]' \
'--help[Print help]' \
'-V[Print version]' \
'--version[Print version]' \
&& ret=0
;;
(help)
_arguments "${_arguments_options[@]}" : \
":: :_ordinary__subcmd__app__subcmd__accounts__subcmd__help_commands" \
"*::: :->help" \
&& ret=0
case $state in
(help)
words=($line[1] "${words[@]}")
(( CURRENT += 1 ))
curcontext="${curcontext%:*:*}:ordinary-app-accounts-help-command-$line[1]:"
case $line[1] in
(list)
_arguments "${_arguments_options[@]}" : \
&& ret=0
;;
(help)
_arguments "${_arguments_options[@]}" : \
&& ret=0
;;
esac
;;
esac
;;
esac
;;
esac
;;
(acct)
_arguments "${_arguments_options[@]}" : \
'-p+[project path]:PROJECT:_default' \
'--project=[project path]:PROJECT:_default' \
'*-v[Increase logging verbosity]' \
'*--verbose[Increase logging verbosity]' \
'(-v --verbose)*-q[Decrease logging verbosity]' \
'(-v --verbose)*--quiet[Decrease logging verbosity]' \
'--pretty[whether to pretty print events to stdio]' \
'-h[Print help]' \
'--help[Print help]' \
'-V[Print version]' \
'--version[Print version]' \
":: :_ordinary__subcmd__app__subcmd__accounts_commands" \
"*::: :->accounts" \
&& ret=0
case $state in
(accounts)
words=($line[1] "${words[@]}")
(( CURRENT += 1 ))
curcontext="${curcontext%:*:*}:ordinary-app-accounts-command-$line[1]:"
case $line[1] in
(list)
_arguments "${_arguments_options[@]}" : \
'--host-domain=[should only be necessary with localhost or when addressing by IP]:HOST_DOMAIN:_default' \
'--insecure[use HTTP instead of HTTPS]' \
'--danger-accept-invalid-certs[DANGER\: only use when working with self-signed localhost certs]' \
'*-v[Increase logging verbosity]' \
'*--verbose[Increase logging verbosity]' \
'(-v --verbose)*-q[Decrease logging verbosity]' \
'(-v --verbose)*--quiet[Decrease logging verbosity]' \
'--pretty[whether to pretty print events to stdio]' \
'-h[Print help]' \
'--help[Print help]' \
'-V[Print version]' \
'--version[Print version]' \
&& ret=0
;;
(ls)
_arguments "${_arguments_options[@]}" : \
'--host-domain=[should only be necessary with localhost or when addressing by IP]:HOST_DOMAIN:_default' \
'--insecure[use HTTP instead of HTTPS]' \
'--danger-accept-invalid-certs[DANGER\: only use when working with self-signed localhost certs]' \
'*-v[Increase logging verbosity]' \
'*--verbose[Increase logging verbosity]' \
'(-v --verbose)*-q[Decrease logging verbosity]' \
'(-v --verbose)*--quiet[Decrease logging verbosity]' \
'--pretty[whether to pretty print events to stdio]' \
'-h[Print help]' \
'--help[Print help]' \
'-V[Print version]' \
'--version[Print version]' \
&& ret=0
;;
(help)
_arguments "${_arguments_options[@]}" : \
":: :_ordinary__subcmd__app__subcmd__accounts__subcmd__help_commands" \
"*::: :->help" \
&& ret=0
case $state in
(help)
words=($line[1] "${words[@]}")
(( CURRENT += 1 ))
curcontext="${curcontext%:*:*}:ordinary-app-accounts-help-command-$line[1]:"
case $line[1] in
(list)
_arguments "${_arguments_options[@]}" : \
&& ret=0
;;
(help)
_arguments "${_arguments_options[@]}" : \
&& ret=0
;;
esac
;;
esac
;;
esac
;;
esac
;;
(functions)
_arguments "${_arguments_options[@]}" : \
'-p+[project path]:PROJECT:_default' \
'--project=[project path]:PROJECT:_default' \
'*-v[Increase logging verbosity]' \
'*--verbose[Increase logging verbosity]' \
'(-v --verbose)*-q[Decrease logging verbosity]' \
'(-v --verbose)*--quiet[Decrease logging verbosity]' \
'--pretty[whether to pretty print events to stdio]' \
'-h[Print help]' \
'--help[Print help]' \
'-V[Print version]' \
'--version[Print version]' \
":: :_ordinary__subcmd__app__subcmd__functions_commands" \
"*::: :->functions" \
&& ret=0
case $state in
(functions)
words=($line[1] "${words[@]}")
(( CURRENT += 1 ))
curcontext="${curcontext%:*:*}:ordinary-app-functions-command-$line[1]:"
case $line[1] in
(add)
_arguments "${_arguments_options[@]}" : \
'-t+[language the function runs]:TOOLCHAIN:(rust c go js ts)' \
'--toolchain=[language the function runs]:TOOLCHAIN:(rust c go js ts)' \
'*-v[Increase logging verbosity]' \
'*--verbose[Increase logging verbosity]' \
'(-v --verbose)*-q[Decrease logging verbosity]' \
'(-v --verbose)*--quiet[Decrease logging verbosity]' \
'--pretty[whether to pretty print events to stdio]' \
'-h[Print help]' \
'--help[Print help]' \
'-V[Print version]' \
'--version[Print version]' \
':name -- function name:_default' \
&& ret=0
;;
(create)
_arguments "${_arguments_options[@]}" : \
'-t+[language the function runs]:TOOLCHAIN:(rust c go js ts)' \
'--toolchain=[language the function runs]:TOOLCHAIN:(rust c go js ts)' \
'*-v[Increase logging verbosity]' \
'*--verbose[Increase logging verbosity]' \
'(-v --verbose)*-q[Decrease logging verbosity]' \
'(-v --verbose)*--quiet[Decrease logging verbosity]' \
'--pretty[whether to pretty print events to stdio]' \
'-h[Print help]' \
'--help[Print help]' \
'-V[Print version]' \
'--version[Print version]' \
':name -- function name:_default' \
&& ret=0
;;
(new)
_arguments "${_arguments_options[@]}" : \
'-t+[language the function runs]:TOOLCHAIN:(rust c go js ts)' \
'--toolchain=[language the function runs]:TOOLCHAIN:(rust c go js ts)' \
'*-v[Increase logging verbosity]' \
'*--verbose[Increase logging verbosity]' \
'(-v --verbose)*-q[Decrease logging verbosity]' \
'(-v --verbose)*--quiet[Decrease logging verbosity]' \
'--pretty[whether to pretty print events to stdio]' \
'-h[Print help]' \
'--help[Print help]' \
'-V[Print version]' \
'--version[Print version]' \
':name -- function name:_default' \
&& ret=0
;;
(build)
_arguments "${_arguments_options[@]}" : \
'-n+[name of a specific function to build (optional). will install all when the \`--name\` flag is not passed]:NAME:_default' \
'--name=[name of a specific function to build (optional). will install all when the \`--name\` flag is not passed]:NAME:_default' \
'-f[build functions without checking the cache]' \
'--force[build functions without checking the cache]' \
'*-v[Increase logging verbosity]' \
'*--verbose[Increase logging verbosity]' \
'(-v --verbose)*-q[Decrease logging verbosity]' \
'(-v --verbose)*--quiet[Decrease logging verbosity]' \
'--pretty[whether to pretty print events to stdio]' \
'-h[Print help (see more with '\''--help'\'')]' \
'--help[Print help (see more with '\''--help'\'')]' \
'-V[Print version]' \
'--version[Print version]' \
&& ret=0
;;
(upload)
_arguments "${_arguments_options[@]}" : \
'--host-domain=[should only be necessary with localhost or when addressing by IP]:HOST_DOMAIN:_default' \
'-n+[name of a specific function to upload (optional). will upload all when the \`--name\` flag is not passed]:NAME:_default' \
'--name=[name of a specific function to upload (optional). will upload all when the \`--name\` flag is not passed]:NAME:_default' \
'--insecure[use HTTP instead of HTTPS]' \
'--danger-accept-invalid-certs[DANGER\: only use when working with self-signed localhost certs]' \
'*-v[Increase logging verbosity]' \
'*--verbose[Increase logging verbosity]' \
'(-v --verbose)*-q[Decrease logging verbosity]' \
'(-v --verbose)*--quiet[Decrease logging verbosity]' \
'--pretty[whether to pretty print events to stdio]' \
'-h[Print help]' \
'--help[Print help]' \
'-V[Print version]' \
'--version[Print version]' \
&& ret=0
;;
(help)
_arguments "${_arguments_options[@]}" : \
":: :_ordinary__subcmd__app__subcmd__functions__subcmd__help_commands" \
"*::: :->help" \
&& ret=0
case $state in
(help)
words=($line[1] "${words[@]}")
(( CURRENT += 1 ))
curcontext="${curcontext%:*:*}:ordinary-app-functions-help-command-$line[1]:"
case $line[1] in
(add)
_arguments "${_arguments_options[@]}" : \
&& ret=0
;;
(build)
_arguments "${_arguments_options[@]}" : \
&& ret=0
;;
(upload)
_arguments "${_arguments_options[@]}" : \
&& ret=0
;;
(help)
_arguments "${_arguments_options[@]}" : \
&& ret=0
;;
esac
;;
esac
;;
esac
;;
esac
;;
(fns)
_arguments "${_arguments_options[@]}" : \
'-p+[project path]:PROJECT:_default' \
'--project=[project path]:PROJECT:_default' \
'*-v[Increase logging verbosity]' \
'*--verbose[Increase logging verbosity]' \
'(-v --verbose)*-q[Decrease logging verbosity]' \
'(-v --verbose)*--quiet[Decrease logging verbosity]' \
'--pretty[whether to pretty print events to stdio]' \
'-h[Print help]' \
'--help[Print help]' \
'-V[Print version]' \
'--version[Print version]' \
":: :_ordinary__subcmd__app__subcmd__functions_commands" \
"*::: :->functions" \
&& ret=0
case $state in
(functions)
words=($line[1] "${words[@]}")
(( CURRENT += 1 ))
curcontext="${curcontext%:*:*}:ordinary-app-functions-command-$line[1]:"
case $line[1] in
(add)
_arguments "${_arguments_options[@]}" : \
'-t+[language the function runs]:TOOLCHAIN:(rust c go js ts)' \
'--toolchain=[language the function runs]:TOOLCHAIN:(rust c go js ts)' \
'*-v[Increase logging verbosity]' \
'*--verbose[Increase logging verbosity]' \
'(-v --verbose)*-q[Decrease logging verbosity]' \
'(-v --verbose)*--quiet[Decrease logging verbosity]' \
'--pretty[whether to pretty print events to stdio]' \
'-h[Print help]' \
'--help[Print help]' \
'-V[Print version]' \
'--version[Print version]' \
':name -- function name:_default' \
&& ret=0
;;
(create)
_arguments "${_arguments_options[@]}" : \
'-t+[language the function runs]:TOOLCHAIN:(rust c go js ts)' \
'--toolchain=[language the function runs]:TOOLCHAIN:(rust c go js ts)' \
'*-v[Increase logging verbosity]' \
'*--verbose[Increase logging verbosity]' \
'(-v --verbose)*-q[Decrease logging verbosity]' \
'(-v --verbose)*--quiet[Decrease logging verbosity]' \
'--pretty[whether to pretty print events to stdio]' \
'-h[Print help]' \
'--help[Print help]' \
'-V[Print version]' \
'--version[Print version]' \
':name -- function name:_default' \
&& ret=0
;;
(new)
_arguments "${_arguments_options[@]}" : \
'-t+[language the function runs]:TOOLCHAIN:(rust c go js ts)' \
'--toolchain=[language the function runs]:TOOLCHAIN:(rust c go js ts)' \
'*-v[Increase logging verbosity]' \
'*--verbose[Increase logging verbosity]' \
'(-v --verbose)*-q[Decrease logging verbosity]' \
'(-v --verbose)*--quiet[Decrease logging verbosity]' \
'--pretty[whether to pretty print events to stdio]' \
'-h[Print help]' \
'--help[Print help]' \
'-V[Print version]' \
'--version[Print version]' \
':name -- function name:_default' \
&& ret=0
;;
(build)
_arguments "${_arguments_options[@]}" : \
'-n+[name of a specific function to build (optional). will install all when the \`--name\` flag is not passed]:NAME:_default' \
'--name=[name of a specific function to build (optional). will install all when the \`--name\` flag is not passed]:NAME:_default' \
'-f[build functions without checking the cache]' \
'--force[build functions without checking the cache]' \
'*-v[Increase logging verbosity]' \
'*--verbose[Increase logging verbosity]' \
'(-v --verbose)*-q[Decrease logging verbosity]' \
'(-v --verbose)*--quiet[Decrease logging verbosity]' \
'--pretty[whether to pretty print events to stdio]' \
'-h[Print help (see more with '\''--help'\'')]' \
'--help[Print help (see more with '\''--help'\'')]' \
'-V[Print version]' \
'--version[Print version]' \
&& ret=0
;;
(upload)
_arguments "${_arguments_options[@]}" : \
'--host-domain=[should only be necessary with localhost or when addressing by IP]:HOST_DOMAIN:_default' \
'-n+[name of a specific function to upload (optional). will upload all when the \`--name\` flag is not passed]:NAME:_default' \
'--name=[name of a specific function to upload (optional). will upload all when the \`--name\` flag is not passed]:NAME:_default' \
'--insecure[use HTTP instead of HTTPS]' \
'--danger-accept-invalid-certs[DANGER\: only use when working with self-signed localhost certs]' \
'*-v[Increase logging verbosity]' \
'*--verbose[Increase logging verbosity]' \
'(-v --verbose)*-q[Decrease logging verbosity]' \
'(-v --verbose)*--quiet[Decrease logging verbosity]' \
'--pretty[whether to pretty print events to stdio]' \
'-h[Print help]' \
'--help[Print help]' \
'-V[Print version]' \
'--version[Print version]' \
&& ret=0
;;
(help)
_arguments "${_arguments_options[@]}" : \
":: :_ordinary__subcmd__app__subcmd__functions__subcmd__help_commands" \
"*::: :->help" \
&& ret=0
case $state in
(help)
words=($line[1] "${words[@]}")
(( CURRENT += 1 ))
curcontext="${curcontext%:*:*}:ordinary-app-functions-help-command-$line[1]:"
case $line[1] in
(add)
_arguments "${_arguments_options[@]}" : \
&& ret=0
;;
(build)
_arguments "${_arguments_options[@]}" : \
&& ret=0
;;
(upload)
_arguments "${_arguments_options[@]}" : \
&& ret=0
;;
(help)
_arguments "${_arguments_options[@]}" : \
&& ret=0
;;
esac
;;
esac
;;
esac
;;
esac
;;
(fn)
_arguments "${_arguments_options[@]}" : \
'-p+[project path]:PROJECT:_default' \
'--project=[project path]:PROJECT:_default' \
'*-v[Increase logging verbosity]' \
'*--verbose[Increase logging verbosity]' \
'(-v --verbose)*-q[Decrease logging verbosity]' \
'(-v --verbose)*--quiet[Decrease logging verbosity]' \
'--pretty[whether to pretty print events to stdio]' \
'-h[Print help]' \
'--help[Print help]' \
'-V[Print version]' \
'--version[Print version]' \
":: :_ordinary__subcmd__app__subcmd__functions_commands" \
"*::: :->functions" \
&& ret=0
case $state in
(functions)
words=($line[1] "${words[@]}")
(( CURRENT += 1 ))
curcontext="${curcontext%:*:*}:ordinary-app-functions-command-$line[1]:"
case $line[1] in
(add)
_arguments "${_arguments_options[@]}" : \
'-t+[language the function runs]:TOOLCHAIN:(rust c go js ts)' \
'--toolchain=[language the function runs]:TOOLCHAIN:(rust c go js ts)' \
'*-v[Increase logging verbosity]' \
'*--verbose[Increase logging verbosity]' \
'(-v --verbose)*-q[Decrease logging verbosity]' \
'(-v --verbose)*--quiet[Decrease logging verbosity]' \
'--pretty[whether to pretty print events to stdio]' \
'-h[Print help]' \
'--help[Print help]' \
'-V[Print version]' \
'--version[Print version]' \
':name -- function name:_default' \
&& ret=0
;;
(create)
_arguments "${_arguments_options[@]}" : \
'-t+[language the function runs]:TOOLCHAIN:(rust c go js ts)' \
'--toolchain=[language the function runs]:TOOLCHAIN:(rust c go js ts)' \
'*-v[Increase logging verbosity]' \
'*--verbose[Increase logging verbosity]' \
'(-v --verbose)*-q[Decrease logging verbosity]' \
'(-v --verbose)*--quiet[Decrease logging verbosity]' \
'--pretty[whether to pretty print events to stdio]' \
'-h[Print help]' \
'--help[Print help]' \
'-V[Print version]' \
'--version[Print version]' \
':name -- function name:_default' \
&& ret=0
;;
(new)
_arguments "${_arguments_options[@]}" : \
'-t+[language the function runs]:TOOLCHAIN:(rust c go js ts)' \
'--toolchain=[language the function runs]:TOOLCHAIN:(rust c go js ts)' \
'*-v[Increase logging verbosity]' \
'*--verbose[Increase logging verbosity]' \
'(-v --verbose)*-q[Decrease logging verbosity]' \
'(-v --verbose)*--quiet[Decrease logging verbosity]' \
'--pretty[whether to pretty print events to stdio]' \
'-h[Print help]' \
'--help[Print help]' \
'-V[Print version]' \
'--version[Print version]' \
':name -- function name:_default' \
&& ret=0
;;
(build)
_arguments "${_arguments_options[@]}" : \
'-n+[name of a specific function to build (optional). will install all when the \`--name\` flag is not passed]:NAME:_default' \
'--name=[name of a specific function to build (optional). will install all when the \`--name\` flag is not passed]:NAME:_default' \
'-f[build functions without checking the cache]' \
'--force[build functions without checking the cache]' \
'*-v[Increase logging verbosity]' \
'*--verbose[Increase logging verbosity]' \
'(-v --verbose)*-q[Decrease logging verbosity]' \
'(-v --verbose)*--quiet[Decrease logging verbosity]' \
'--pretty[whether to pretty print events to stdio]' \
'-h[Print help (see more with '\''--help'\'')]' \
'--help[Print help (see more with '\''--help'\'')]' \
'-V[Print version]' \
'--version[Print version]' \
&& ret=0
;;
(upload)
_arguments "${_arguments_options[@]}" : \
'--host-domain=[should only be necessary with localhost or when addressing by IP]:HOST_DOMAIN:_default' \
'-n+[name of a specific function to upload (optional). will upload all when the \`--name\` flag is not passed]:NAME:_default' \
'--name=[name of a specific function to upload (optional). will upload all when the \`--name\` flag is not passed]:NAME:_default' \
'--insecure[use HTTP instead of HTTPS]' \
'--danger-accept-invalid-certs[DANGER\: only use when working with self-signed localhost certs]' \
'*-v[Increase logging verbosity]' \
'*--verbose[Increase logging verbosity]' \
'(-v --verbose)*-q[Decrease logging verbosity]' \
'(-v --verbose)*--quiet[Decrease logging verbosity]' \
'--pretty[whether to pretty print events to stdio]' \
'-h[Print help]' \
'--help[Print help]' \
'-V[Print version]' \
'--version[Print version]' \
&& ret=0
;;
(help)
_arguments "${_arguments_options[@]}" : \
":: :_ordinary__subcmd__app__subcmd__functions__subcmd__help_commands" \
"*::: :->help" \
&& ret=0
case $state in
(help)
words=($line[1] "${words[@]}")
(( CURRENT += 1 ))
curcontext="${curcontext%:*:*}:ordinary-app-functions-help-command-$line[1]:"
case $line[1] in
(add)
_arguments "${_arguments_options[@]}" : \
&& ret=0
;;
(build)
_arguments "${_arguments_options[@]}" : \
&& ret=0
;;
(upload)
_arguments "${_arguments_options[@]}" : \
&& ret=0
;;
(help)
_arguments "${_arguments_options[@]}" : \
&& ret=0
;;
esac
;;
esac
;;
esac
;;
esac
;;
(function)
_arguments "${_arguments_options[@]}" : \
'-p+[project path]:PROJECT:_default' \
'--project=[project path]:PROJECT:_default' \
'*-v[Increase logging verbosity]' \
'*--verbose[Increase logging verbosity]' \
'(-v --verbose)*-q[Decrease logging verbosity]' \
'(-v --verbose)*--quiet[Decrease logging verbosity]' \
'--pretty[whether to pretty print events to stdio]' \
'-h[Print help]' \
'--help[Print help]' \
'-V[Print version]' \
'--version[Print version]' \
":: :_ordinary__subcmd__app__subcmd__functions_commands" \
"*::: :->functions" \
&& ret=0
case $state in
(functions)
words=($line[1] "${words[@]}")
(( CURRENT += 1 ))
curcontext="${curcontext%:*:*}:ordinary-app-functions-command-$line[1]:"
case $line[1] in
(add)
_arguments "${_arguments_options[@]}" : \
'-t+[language the function runs]:TOOLCHAIN:(rust c go js ts)' \
'--toolchain=[language the function runs]:TOOLCHAIN:(rust c go js ts)' \
'*-v[Increase logging verbosity]' \
'*--verbose[Increase logging verbosity]' \
'(-v --verbose)*-q[Decrease logging verbosity]' \
'(-v --verbose)*--quiet[Decrease logging verbosity]' \
'--pretty[whether to pretty print events to stdio]' \
'-h[Print help]' \
'--help[Print help]' \
'-V[Print version]' \
'--version[Print version]' \
':name -- function name:_default' \
&& ret=0
;;
(create)
_arguments "${_arguments_options[@]}" : \
'-t+[language the function runs]:TOOLCHAIN:(rust c go js ts)' \
'--toolchain=[language the function runs]:TOOLCHAIN:(rust c go js ts)' \
'*-v[Increase logging verbosity]' \
'*--verbose[Increase logging verbosity]' \
'(-v --verbose)*-q[Decrease logging verbosity]' \
'(-v --verbose)*--quiet[Decrease logging verbosity]' \
'--pretty[whether to pretty print events to stdio]' \
'-h[Print help]' \
'--help[Print help]' \
'-V[Print version]' \
'--version[Print version]' \
':name -- function name:_default' \
&& ret=0
;;
(new)
_arguments "${_arguments_options[@]}" : \
'-t+[language the function runs]:TOOLCHAIN:(rust c go js ts)' \
'--toolchain=[language the function runs]:TOOLCHAIN:(rust c go js ts)' \
'*-v[Increase logging verbosity]' \
'*--verbose[Increase logging verbosity]' \
'(-v --verbose)*-q[Decrease logging verbosity]' \
'(-v --verbose)*--quiet[Decrease logging verbosity]' \
'--pretty[whether to pretty print events to stdio]' \
'-h[Print help]' \
'--help[Print help]' \
'-V[Print version]' \
'--version[Print version]' \
':name -- function name:_default' \
&& ret=0
;;
(build)
_arguments "${_arguments_options[@]}" : \
'-n+[name of a specific function to build (optional). will install all when the \`--name\` flag is not passed]:NAME:_default' \
'--name=[name of a specific function to build (optional). will install all when the \`--name\` flag is not passed]:NAME:_default' \
'-f[build functions without checking the cache]' \
'--force[build functions without checking the cache]' \
'*-v[Increase logging verbosity]' \
'*--verbose[Increase logging verbosity]' \
'(-v --verbose)*-q[Decrease logging verbosity]' \
'(-v --verbose)*--quiet[Decrease logging verbosity]' \
'--pretty[whether to pretty print events to stdio]' \
'-h[Print help (see more with '\''--help'\'')]' \
'--help[Print help (see more with '\''--help'\'')]' \
'-V[Print version]' \
'--version[Print version]' \
&& ret=0
;;
(upload)
_arguments "${_arguments_options[@]}" : \
'--host-domain=[should only be necessary with localhost or when addressing by IP]:HOST_DOMAIN:_default' \
'-n+[name of a specific function to upload (optional). will upload all when the \`--name\` flag is not passed]:NAME:_default' \
'--name=[name of a specific function to upload (optional). will upload all when the \`--name\` flag is not passed]:NAME:_default' \
'--insecure[use HTTP instead of HTTPS]' \
'--danger-accept-invalid-certs[DANGER\: only use when working with self-signed localhost certs]' \
'*-v[Increase logging verbosity]' \
'*--verbose[Increase logging verbosity]' \
'(-v --verbose)*-q[Decrease logging verbosity]' \
'(-v --verbose)*--quiet[Decrease logging verbosity]' \
'--pretty[whether to pretty print events to stdio]' \
'-h[Print help]' \
'--help[Print help]' \
'-V[Print version]' \
'--version[Print version]' \
&& ret=0
;;
(help)
_arguments "${_arguments_options[@]}" : \
":: :_ordinary__subcmd__app__subcmd__functions__subcmd__help_commands" \
"*::: :->help" \
&& ret=0
case $state in
(help)
words=($line[1] "${words[@]}")
(( CURRENT += 1 ))
curcontext="${curcontext%:*:*}:ordinary-app-functions-help-command-$line[1]:"
case $line[1] in
(add)
_arguments "${_arguments_options[@]}" : \
&& ret=0
;;
(build)
_arguments "${_arguments_options[@]}" : \
&& ret=0
;;
(upload)
_arguments "${_arguments_options[@]}" : \
&& ret=0
;;
(help)
_arguments "${_arguments_options[@]}" : \
&& ret=0
;;
esac
;;
esac
;;
esac
;;
esac
;;
(database)
_arguments "${_arguments_options[@]}" : \
'-p+[project path]:PROJECT:_default' \
'--project=[project path]:PROJECT:_default' \
'*-v[Increase logging verbosity]' \
'*--verbose[Increase logging verbosity]' \
'(-v --verbose)*-q[Decrease logging verbosity]' \
'(-v --verbose)*--quiet[Decrease logging verbosity]' \
'--pretty[whether to pretty print events to stdio]' \
'-h[Print help]' \
'--help[Print help]' \
'-V[Print version]' \
'--version[Print version]' \
":: :_ordinary__subcmd__app__subcmd__database_commands" \
"*::: :->database" \
&& ret=0
case $state in
(database)
words=($line[1] "${words[@]}")
(( CURRENT += 1 ))
curcontext="${curcontext%:*:*}:ordinary-app-database-command-$line[1]:"
case $line[1] in
(seed)
_arguments "${_arguments_options[@]}" : \
'--host-domain=[should only be necessary with localhost or when addressing by IP]:HOST_DOMAIN:_default' \
'--insecure[use HTTP instead of HTTPS]' \
'--danger-accept-invalid-certs[DANGER\: only use when working with self-signed localhost certs]' \
'*-v[Increase logging verbosity]' \
'*--verbose[Increase logging verbosity]' \
'(-v --verbose)*-q[Decrease logging verbosity]' \
'(-v --verbose)*--quiet[Decrease logging verbosity]' \
'--pretty[whether to pretty print events to stdio]' \
'-h[Print help]' \
'--help[Print help]' \
'-V[Print version]' \
'--version[Print version]' \
&& ret=0
;;
(models)
_arguments "${_arguments_options[@]}" : \
'*-v[Increase logging verbosity]' \
'*--verbose[Increase logging verbosity]' \
'(-v --verbose)*-q[Decrease logging verbosity]' \
'(-v --verbose)*--quiet[Decrease logging verbosity]' \
'--pretty[whether to pretty print events to stdio]' \
'-h[Print help]' \
'--help[Print help]' \
'-V[Print version]' \
'--version[Print version]' \
":: :_ordinary__subcmd__app__subcmd__database__subcmd__models_commands" \
"*::: :->models" \
&& ret=0
case $state in
(models)
words=($line[1] "${words[@]}")
(( CURRENT += 1 ))
curcontext="${curcontext%:*:*}:ordinary-app-database-models-command-$line[1]:"
case $line[1] in
(add)
_arguments "${_arguments_options[@]}" : \
'*-v[Increase logging verbosity]' \
'*--verbose[Increase logging verbosity]' \
'(-v --verbose)*-q[Decrease logging verbosity]' \
'(-v --verbose)*--quiet[Decrease logging verbosity]' \
'--pretty[whether to pretty print events to stdio]' \
'-h[Print help]' \
'--help[Print help]' \
'-V[Print version]' \
'--version[Print version]' \
':name -- name of the model:_default' \
'::uuid_version -- UUID version:(v4 v7)' \
&& ret=0
;;
(help)
_arguments "${_arguments_options[@]}" : \
":: :_ordinary__subcmd__app__subcmd__database__subcmd__models__subcmd__help_commands" \
"*::: :->help" \
&& ret=0
case $state in
(help)
words=($line[1] "${words[@]}")
(( CURRENT += 1 ))
curcontext="${curcontext%:*:*}:ordinary-app-database-models-help-command-$line[1]:"
case $line[1] in
(add)
_arguments "${_arguments_options[@]}" : \
&& ret=0
;;
(help)
_arguments "${_arguments_options[@]}" : \
&& ret=0
;;
esac
;;
esac
;;
esac
;;
esac
;;
(items)
_arguments "${_arguments_options[@]}" : \
'*-v[Increase logging verbosity]' \
'*--verbose[Increase logging verbosity]' \
'(-v --verbose)*-q[Decrease logging verbosity]' \
'(-v --verbose)*--quiet[Decrease logging verbosity]' \
'--pretty[whether to pretty print events to stdio]' \
'-h[Print help]' \
'--help[Print help]' \
'-V[Print version]' \
'--version[Print version]' \
":: :_ordinary__subcmd__app__subcmd__database__subcmd__items_commands" \
"*::: :->items" \
&& ret=0
case $state in
(items)
words=($line[1] "${words[@]}")
(( CURRENT += 1 ))
curcontext="${curcontext%:*:*}:ordinary-app-database-items-command-$line[1]:"
case $line[1] in
(list)
_arguments "${_arguments_options[@]}" : \
'--host-domain=[should only be necessary with localhost or when addressing by IP]:HOST_DOMAIN:_default' \
'--insecure[use HTTP instead of HTTPS]' \
'--danger-accept-invalid-certs[DANGER\: only use when working with self-signed localhost certs]' \
'--json[for applications that need to consume stdio or pipe to \`jq\`]' \
'*-v[Increase logging verbosity]' \
'*--verbose[Increase logging verbosity]' \
'(-v --verbose)*-q[Decrease logging verbosity]' \
'(-v --verbose)*--quiet[Decrease logging verbosity]' \
'--pretty[whether to pretty print events to stdio]' \
'-h[Print help]' \
'--help[Print help]' \
'-V[Print version]' \
'--version[Print version]' \
':name -- name of the model:_default' \
&& ret=0
;;
(ls)
_arguments "${_arguments_options[@]}" : \
'--host-domain=[should only be necessary with localhost or when addressing by IP]:HOST_DOMAIN:_default' \
'--insecure[use HTTP instead of HTTPS]' \
'--danger-accept-invalid-certs[DANGER\: only use when working with self-signed localhost certs]' \
'--json[for applications that need to consume stdio or pipe to \`jq\`]' \
'*-v[Increase logging verbosity]' \
'*--verbose[Increase logging verbosity]' \
'(-v --verbose)*-q[Decrease logging verbosity]' \
'(-v --verbose)*--quiet[Decrease logging verbosity]' \
'--pretty[whether to pretty print events to stdio]' \
'-h[Print help]' \
'--help[Print help]' \
'-V[Print version]' \
'--version[Print version]' \
':name -- name of the model:_default' \
&& ret=0
;;
(help)
_arguments "${_arguments_options[@]}" : \
":: :_ordinary__subcmd__app__subcmd__database__subcmd__items__subcmd__help_commands" \
"*::: :->help" \
&& ret=0
case $state in
(help)
words=($line[1] "${words[@]}")
(( CURRENT += 1 ))
curcontext="${curcontext%:*:*}:ordinary-app-database-items-help-command-$line[1]:"
case $line[1] in
(list)
_arguments "${_arguments_options[@]}" : \
&& ret=0
;;
(help)
_arguments "${_arguments_options[@]}" : \
&& ret=0
;;
esac
;;
esac
;;
esac
;;
esac
;;
(help)
_arguments "${_arguments_options[@]}" : \
":: :_ordinary__subcmd__app__subcmd__database__subcmd__help_commands" \
"*::: :->help" \
&& ret=0
case $state in
(help)
words=($line[1] "${words[@]}")
(( CURRENT += 1 ))
curcontext="${curcontext%:*:*}:ordinary-app-database-help-command-$line[1]:"
case $line[1] in
(seed)
_arguments "${_arguments_options[@]}" : \
&& ret=0
;;
(models)
_arguments "${_arguments_options[@]}" : \
":: :_ordinary__subcmd__app__subcmd__database__subcmd__help__subcmd__models_commands" \
"*::: :->models" \
&& ret=0
case $state in
(models)
words=($line[1] "${words[@]}")
(( CURRENT += 1 ))
curcontext="${curcontext%:*:*}:ordinary-app-database-help-models-command-$line[1]:"
case $line[1] in
(add)
_arguments "${_arguments_options[@]}" : \
&& ret=0
;;
esac
;;
esac
;;
(items)
_arguments "${_arguments_options[@]}" : \
":: :_ordinary__subcmd__app__subcmd__database__subcmd__help__subcmd__items_commands" \
"*::: :->items" \
&& ret=0
case $state in
(items)
words=($line[1] "${words[@]}")
(( CURRENT += 1 ))
curcontext="${curcontext%:*:*}:ordinary-app-database-help-items-command-$line[1]:"
case $line[1] in
(list)
_arguments "${_arguments_options[@]}" : \
&& ret=0
;;
esac
;;
esac
;;
(help)
_arguments "${_arguments_options[@]}" : \
&& ret=0
;;
esac
;;
esac
;;
esac
;;
esac
;;
(db)
_arguments "${_arguments_options[@]}" : \
'-p+[project path]:PROJECT:_default' \
'--project=[project path]:PROJECT:_default' \
'*-v[Increase logging verbosity]' \
'*--verbose[Increase logging verbosity]' \
'(-v --verbose)*-q[Decrease logging verbosity]' \
'(-v --verbose)*--quiet[Decrease logging verbosity]' \
'--pretty[whether to pretty print events to stdio]' \
'-h[Print help]' \
'--help[Print help]' \
'-V[Print version]' \
'--version[Print version]' \
":: :_ordinary__subcmd__app__subcmd__database_commands" \
"*::: :->database" \
&& ret=0
case $state in
(database)
words=($line[1] "${words[@]}")
(( CURRENT += 1 ))
curcontext="${curcontext%:*:*}:ordinary-app-database-command-$line[1]:"
case $line[1] in
(seed)
_arguments "${_arguments_options[@]}" : \
'--host-domain=[should only be necessary with localhost or when addressing by IP]:HOST_DOMAIN:_default' \
'--insecure[use HTTP instead of HTTPS]' \
'--danger-accept-invalid-certs[DANGER\: only use when working with self-signed localhost certs]' \
'*-v[Increase logging verbosity]' \
'*--verbose[Increase logging verbosity]' \
'(-v --verbose)*-q[Decrease logging verbosity]' \
'(-v --verbose)*--quiet[Decrease logging verbosity]' \
'--pretty[whether to pretty print events to stdio]' \
'-h[Print help]' \
'--help[Print help]' \
'-V[Print version]' \
'--version[Print version]' \
&& ret=0
;;
(models)
_arguments "${_arguments_options[@]}" : \
'*-v[Increase logging verbosity]' \
'*--verbose[Increase logging verbosity]' \
'(-v --verbose)*-q[Decrease logging verbosity]' \
'(-v --verbose)*--quiet[Decrease logging verbosity]' \
'--pretty[whether to pretty print events to stdio]' \
'-h[Print help]' \
'--help[Print help]' \
'-V[Print version]' \
'--version[Print version]' \
":: :_ordinary__subcmd__app__subcmd__database__subcmd__models_commands" \
"*::: :->models" \
&& ret=0
case $state in
(models)
words=($line[1] "${words[@]}")
(( CURRENT += 1 ))
curcontext="${curcontext%:*:*}:ordinary-app-database-models-command-$line[1]:"
case $line[1] in
(add)
_arguments "${_arguments_options[@]}" : \
'*-v[Increase logging verbosity]' \
'*--verbose[Increase logging verbosity]' \
'(-v --verbose)*-q[Decrease logging verbosity]' \
'(-v --verbose)*--quiet[Decrease logging verbosity]' \
'--pretty[whether to pretty print events to stdio]' \
'-h[Print help]' \
'--help[Print help]' \
'-V[Print version]' \
'--version[Print version]' \
':name -- name of the model:_default' \
'::uuid_version -- UUID version:(v4 v7)' \
&& ret=0
;;
(help)
_arguments "${_arguments_options[@]}" : \
":: :_ordinary__subcmd__app__subcmd__database__subcmd__models__subcmd__help_commands" \
"*::: :->help" \
&& ret=0
case $state in
(help)
words=($line[1] "${words[@]}")
(( CURRENT += 1 ))
curcontext="${curcontext%:*:*}:ordinary-app-database-models-help-command-$line[1]:"
case $line[1] in
(add)
_arguments "${_arguments_options[@]}" : \
&& ret=0
;;
(help)
_arguments "${_arguments_options[@]}" : \
&& ret=0
;;
esac
;;
esac
;;
esac
;;
esac
;;
(items)
_arguments "${_arguments_options[@]}" : \
'*-v[Increase logging verbosity]' \
'*--verbose[Increase logging verbosity]' \
'(-v --verbose)*-q[Decrease logging verbosity]' \
'(-v --verbose)*--quiet[Decrease logging verbosity]' \
'--pretty[whether to pretty print events to stdio]' \
'-h[Print help]' \
'--help[Print help]' \
'-V[Print version]' \
'--version[Print version]' \
":: :_ordinary__subcmd__app__subcmd__database__subcmd__items_commands" \
"*::: :->items" \
&& ret=0
case $state in
(items)
words=($line[1] "${words[@]}")
(( CURRENT += 1 ))
curcontext="${curcontext%:*:*}:ordinary-app-database-items-command-$line[1]:"
case $line[1] in
(list)
_arguments "${_arguments_options[@]}" : \
'--host-domain=[should only be necessary with localhost or when addressing by IP]:HOST_DOMAIN:_default' \
'--insecure[use HTTP instead of HTTPS]' \
'--danger-accept-invalid-certs[DANGER\: only use when working with self-signed localhost certs]' \
'--json[for applications that need to consume stdio or pipe to \`jq\`]' \
'*-v[Increase logging verbosity]' \
'*--verbose[Increase logging verbosity]' \
'(-v --verbose)*-q[Decrease logging verbosity]' \
'(-v --verbose)*--quiet[Decrease logging verbosity]' \
'--pretty[whether to pretty print events to stdio]' \
'-h[Print help]' \
'--help[Print help]' \
'-V[Print version]' \
'--version[Print version]' \
':name -- name of the model:_default' \
&& ret=0
;;
(ls)
_arguments "${_arguments_options[@]}" : \
'--host-domain=[should only be necessary with localhost or when addressing by IP]:HOST_DOMAIN:_default' \
'--insecure[use HTTP instead of HTTPS]' \
'--danger-accept-invalid-certs[DANGER\: only use when working with self-signed localhost certs]' \
'--json[for applications that need to consume stdio or pipe to \`jq\`]' \
'*-v[Increase logging verbosity]' \
'*--verbose[Increase logging verbosity]' \
'(-v --verbose)*-q[Decrease logging verbosity]' \
'(-v --verbose)*--quiet[Decrease logging verbosity]' \
'--pretty[whether to pretty print events to stdio]' \
'-h[Print help]' \
'--help[Print help]' \
'-V[Print version]' \
'--version[Print version]' \
':name -- name of the model:_default' \
&& ret=0
;;
(help)
_arguments "${_arguments_options[@]}" : \
":: :_ordinary__subcmd__app__subcmd__database__subcmd__items__subcmd__help_commands" \
"*::: :->help" \
&& ret=0
case $state in
(help)
words=($line[1] "${words[@]}")
(( CURRENT += 1 ))
curcontext="${curcontext%:*:*}:ordinary-app-database-items-help-command-$line[1]:"
case $line[1] in
(list)
_arguments "${_arguments_options[@]}" : \
&& ret=0
;;
(help)
_arguments "${_arguments_options[@]}" : \
&& ret=0
;;
esac
;;
esac
;;
esac
;;
esac
;;
(help)
_arguments "${_arguments_options[@]}" : \
":: :_ordinary__subcmd__app__subcmd__database__subcmd__help_commands" \
"*::: :->help" \
&& ret=0
case $state in
(help)
words=($line[1] "${words[@]}")
(( CURRENT += 1 ))
curcontext="${curcontext%:*:*}:ordinary-app-database-help-command-$line[1]:"
case $line[1] in
(seed)
_arguments "${_arguments_options[@]}" : \
&& ret=0
;;
(models)
_arguments "${_arguments_options[@]}" : \
":: :_ordinary__subcmd__app__subcmd__database__subcmd__help__subcmd__models_commands" \
"*::: :->models" \
&& ret=0
case $state in
(models)
words=($line[1] "${words[@]}")
(( CURRENT += 1 ))
curcontext="${curcontext%:*:*}:ordinary-app-database-help-models-command-$line[1]:"
case $line[1] in
(add)
_arguments "${_arguments_options[@]}" : \
&& ret=0
;;
esac
;;
esac
;;
(items)
_arguments "${_arguments_options[@]}" : \
":: :_ordinary__subcmd__app__subcmd__database__subcmd__help__subcmd__items_commands" \
"*::: :->items" \
&& ret=0
case $state in
(items)
words=($line[1] "${words[@]}")
(( CURRENT += 1 ))
curcontext="${curcontext%:*:*}:ordinary-app-database-help-items-command-$line[1]:"
case $line[1] in
(list)
_arguments "${_arguments_options[@]}" : \
&& ret=0
;;
esac
;;
esac
;;
(help)
_arguments "${_arguments_options[@]}" : \
&& ret=0
;;
esac
;;
esac
;;
esac
;;
esac
;;
(secrets)
_arguments "${_arguments_options[@]}" : \
'-p+[project path]:PROJECT:_default' \
'--project=[project path]:PROJECT:_default' \
'*-v[Increase logging verbosity]' \
'*--verbose[Increase logging verbosity]' \
'(-v --verbose)*-q[Decrease logging verbosity]' \
'(-v --verbose)*--quiet[Decrease logging verbosity]' \
'--pretty[whether to pretty print events to stdio]' \
'-h[Print help]' \
'--help[Print help]' \
'-V[Print version]' \
'--version[Print version]' \
":: :_ordinary__subcmd__app__subcmd__secrets_commands" \
"*::: :->secrets" \
&& ret=0
case $state in
(secrets)
words=($line[1] "${words[@]}")
(( CURRENT += 1 ))
curcontext="${curcontext%:*:*}:ordinary-app-secrets-command-$line[1]:"
case $line[1] in
(store)
_arguments "${_arguments_options[@]}" : \
'--host-domain=[should only be necessary with localhost or when addressing by IP]:HOST_DOMAIN:_default' \
'--insecure[use HTTP instead of HTTPS]' \
'--danger-accept-invalid-certs[DANGER\: only use when working with self-signed localhost certs]' \
'*-v[Increase logging verbosity]' \
'*--verbose[Increase logging verbosity]' \
'(-v --verbose)*-q[Decrease logging verbosity]' \
'(-v --verbose)*--quiet[Decrease logging verbosity]' \
'--pretty[whether to pretty print events to stdio]' \
'-h[Print help (see more with '\''--help'\'')]' \
'--help[Print help (see more with '\''--help'\'')]' \
'-V[Print version]' \
'--version[Print version]' \
':name -- secret name:_default' \
':secret -- secret value:_default' \
&& ret=0
;;
(help)
_arguments "${_arguments_options[@]}" : \
":: :_ordinary__subcmd__app__subcmd__secrets__subcmd__help_commands" \
"*::: :->help" \
&& ret=0
case $state in
(help)
words=($line[1] "${words[@]}")
(( CURRENT += 1 ))
curcontext="${curcontext%:*:*}:ordinary-app-secrets-help-command-$line[1]:"
case $line[1] in
(store)
_arguments "${_arguments_options[@]}" : \
&& ret=0
;;
(help)
_arguments "${_arguments_options[@]}" : \
&& ret=0
;;
esac
;;
esac
;;
esac
;;
esac
;;
(config)
_arguments "${_arguments_options[@]}" : \
'-p+[project path]:PROJECT:_default' \
'--project=[project path]:PROJECT:_default' \
'*-v[Increase logging verbosity]' \
'*--verbose[Increase logging verbosity]' \
'(-v --verbose)*-q[Decrease logging verbosity]' \
'(-v --verbose)*--quiet[Decrease logging verbosity]' \
'--pretty[whether to pretty print events to stdio]' \
'-h[Print help]' \
'--help[Print help]' \
'-V[Print version]' \
'--version[Print version]' \
":: :_ordinary__subcmd__app__subcmd__config_commands" \
"*::: :->config" \
&& ret=0
case $state in
(config)
words=($line[1] "${words[@]}")
(( CURRENT += 1 ))
curcontext="${curcontext%:*:*}:ordinary-app-config-command-$line[1]:"
case $line[1] in
(view)
_arguments "${_arguments_options[@]}" : \
'-f+[]:FOR:(build deploy)' \
'--for=[]:FOR:(build deploy)' \
'*-v[Increase logging verbosity]' \
'*--verbose[Increase logging verbosity]' \
'(-v --verbose)*-q[Decrease logging verbosity]' \
'(-v --verbose)*--quiet[Decrease logging verbosity]' \
'--pretty[whether to pretty print events to stdio]' \
'-h[Print help]' \
'--help[Print help]' \
'-V[Print version]' \
'--version[Print version]' \
&& ret=0
;;
(validate)
_arguments "${_arguments_options[@]}" : \
'-f+[]:FOR:(build deploy)' \
'--for=[]:FOR:(build deploy)' \
'*-v[Increase logging verbosity]' \
'*--verbose[Increase logging verbosity]' \
'(-v --verbose)*-q[Decrease logging verbosity]' \
'(-v --verbose)*--quiet[Decrease logging verbosity]' \
'--pretty[whether to pretty print events to stdio]' \
'-h[Print help]' \
'--help[Print help]' \
'-V[Print version]' \
'--version[Print version]' \
&& ret=0
;;
(help)
_arguments "${_arguments_options[@]}" : \
":: :_ordinary__subcmd__app__subcmd__config__subcmd__help_commands" \
"*::: :->help" \
&& ret=0
case $state in
(help)
words=($line[1] "${words[@]}")
(( CURRENT += 1 ))
curcontext="${curcontext%:*:*}:ordinary-app-config-help-command-$line[1]:"
case $line[1] in
(view)
_arguments "${_arguments_options[@]}" : \
&& ret=0
;;
(validate)
_arguments "${_arguments_options[@]}" : \
&& ret=0
;;
(help)
_arguments "${_arguments_options[@]}" : \
&& ret=0
;;
esac
;;
esac
;;
esac
;;
esac
;;
(routes)
_arguments "${_arguments_options[@]}" : \
'-p+[project path]:PROJECT:_default' \
'--project=[project path]:PROJECT:_default' \
'*-v[Increase logging verbosity]' \
'*--verbose[Increase logging verbosity]' \
'(-v --verbose)*-q[Decrease logging verbosity]' \
'(-v --verbose)*--quiet[Decrease logging verbosity]' \
'--pretty[whether to pretty print events to stdio]' \
'-h[Print help]' \
'--help[Print help]' \
'-V[Print version]' \
'--version[Print version]' \
&& ret=0
;;
(help)
_arguments "${_arguments_options[@]}" : \
":: :_ordinary__subcmd__app__subcmd__help_commands" \
"*::: :->help" \
&& ret=0
case $state in
(help)
words=($line[1] "${words[@]}")
(( CURRENT += 1 ))
curcontext="${curcontext%:*:*}:ordinary-app-help-command-$line[1]:"
case $line[1] in
(new)
_arguments "${_arguments_options[@]}" : \
&& ret=0
;;
(build)
_arguments "${_arguments_options[@]}" : \
&& ret=0
;;
(start)
_arguments "${_arguments_options[@]}" : \
&& ret=0
;;
(publish)
_arguments "${_arguments_options[@]}" : \
&& ret=0
;;
(deploy)
_arguments "${_arguments_options[@]}" : \
&& ret=0
;;
(kill)
_arguments "${_arguments_options[@]}" : \
&& ret=0
;;
(restart)
_arguments "${_arguments_options[@]}" : \
&& ret=0
;;
(erase)
_arguments "${_arguments_options[@]}" : \
&& ret=0
;;
(logs)
_arguments "${_arguments_options[@]}" : \
":: :_ordinary__subcmd__app__subcmd__help__subcmd__logs_commands" \
"*::: :->logs" \
&& ret=0
case $state in
(logs)
words=($line[1] "${words[@]}")
(( CURRENT += 1 ))
curcontext="${curcontext%:*:*}:ordinary-app-help-logs-command-$line[1]:"
case $line[1] in
(sync)
_arguments "${_arguments_options[@]}" : \
":: :_ordinary__subcmd__app__subcmd__help__subcmd__logs__subcmd__sync_commands" \
"*::: :->sync" \
&& ret=0
case $state in
(sync)
words=($line[1] "${words[@]}")
(( CURRENT += 1 ))
curcontext="${curcontext%:*:*}:ordinary-app-help-logs-sync-command-$line[1]:"
case $line[1] in
(info)
_arguments "${_arguments_options[@]}" : \
&& ret=0
;;
(file)
_arguments "${_arguments_options[@]}" : \
&& ret=0
;;
(all)
_arguments "${_arguments_options[@]}" : \
&& ret=0
;;
esac
;;
esac
;;
(list)
_arguments "${_arguments_options[@]}" : \
&& ret=0
;;
(read)
_arguments "${_arguments_options[@]}" : \
&& ret=0
;;
(query)
_arguments "${_arguments_options[@]}" : \
&& ret=0
;;
(search)
_arguments "${_arguments_options[@]}" : \
&& ret=0
;;
esac
;;
esac
;;
(assets)
_arguments "${_arguments_options[@]}" : \
":: :_ordinary__subcmd__app__subcmd__help__subcmd__assets_commands" \
"*::: :->assets" \
&& ret=0
case $state in
(assets)
words=($line[1] "${words[@]}")
(( CURRENT += 1 ))
curcontext="${curcontext%:*:*}:ordinary-app-help-assets-command-$line[1]:"
case $line[1] in
(write)
_arguments "${_arguments_options[@]}" : \
&& ret=0
;;
(prune)
_arguments "${_arguments_options[@]}" : \
&& ret=0
;;
(delete)
_arguments "${_arguments_options[@]}" : \
&& ret=0
;;
esac
;;
esac
;;
(accounts)
_arguments "${_arguments_options[@]}" : \
":: :_ordinary__subcmd__app__subcmd__help__subcmd__accounts_commands" \
"*::: :->accounts" \
&& ret=0
case $state in
(accounts)
words=($line[1] "${words[@]}")
(( CURRENT += 1 ))
curcontext="${curcontext%:*:*}:ordinary-app-help-accounts-command-$line[1]:"
case $line[1] in
(list)
_arguments "${_arguments_options[@]}" : \
&& ret=0
;;
esac
;;
esac
;;
(functions)
_arguments "${_arguments_options[@]}" : \
":: :_ordinary__subcmd__app__subcmd__help__subcmd__functions_commands" \
"*::: :->functions" \
&& ret=0
case $state in
(functions)
words=($line[1] "${words[@]}")
(( CURRENT += 1 ))
curcontext="${curcontext%:*:*}:ordinary-app-help-functions-command-$line[1]:"
case $line[1] in
(add)
_arguments "${_arguments_options[@]}" : \
&& ret=0
;;
(build)
_arguments "${_arguments_options[@]}" : \
&& ret=0
;;
(upload)
_arguments "${_arguments_options[@]}" : \
&& ret=0
;;
esac
;;
esac
;;
(database)
_arguments "${_arguments_options[@]}" : \
":: :_ordinary__subcmd__app__subcmd__help__subcmd__database_commands" \
"*::: :->database" \
&& ret=0
case $state in
(database)
words=($line[1] "${words[@]}")
(( CURRENT += 1 ))
curcontext="${curcontext%:*:*}:ordinary-app-help-database-command-$line[1]:"
case $line[1] in
(seed)
_arguments "${_arguments_options[@]}" : \
&& ret=0
;;
(models)
_arguments "${_arguments_options[@]}" : \
":: :_ordinary__subcmd__app__subcmd__help__subcmd__database__subcmd__models_commands" \
"*::: :->models" \
&& ret=0
case $state in
(models)
words=($line[1] "${words[@]}")
(( CURRENT += 1 ))
curcontext="${curcontext%:*:*}:ordinary-app-help-database-models-command-$line[1]:"
case $line[1] in
(add)
_arguments "${_arguments_options[@]}" : \
&& ret=0
;;
esac
;;
esac
;;
(items)
_arguments "${_arguments_options[@]}" : \
":: :_ordinary__subcmd__app__subcmd__help__subcmd__database__subcmd__items_commands" \
"*::: :->items" \
&& ret=0
case $state in
(items)
words=($line[1] "${words[@]}")
(( CURRENT += 1 ))
curcontext="${curcontext%:*:*}:ordinary-app-help-database-items-command-$line[1]:"
case $line[1] in
(list)
_arguments "${_arguments_options[@]}" : \
&& ret=0
;;
esac
;;
esac
;;
esac
;;
esac
;;
(secrets)
_arguments "${_arguments_options[@]}" : \
":: :_ordinary__subcmd__app__subcmd__help__subcmd__secrets_commands" \
"*::: :->secrets" \
&& ret=0
case $state in
(secrets)
words=($line[1] "${words[@]}")
(( CURRENT += 1 ))
curcontext="${curcontext%:*:*}:ordinary-app-help-secrets-command-$line[1]:"
case $line[1] in
(store)
_arguments "${_arguments_options[@]}" : \
&& ret=0
;;
esac
;;
esac
;;
(config)
_arguments "${_arguments_options[@]}" : \
":: :_ordinary__subcmd__app__subcmd__help__subcmd__config_commands" \
"*::: :->config" \
&& ret=0
case $state in
(config)
words=($line[1] "${words[@]}")
(( CURRENT += 1 ))
curcontext="${curcontext%:*:*}:ordinary-app-help-config-command-$line[1]:"
case $line[1] in
(view)
_arguments "${_arguments_options[@]}" : \
&& ret=0
;;
(validate)
_arguments "${_arguments_options[@]}" : \
&& ret=0
;;
esac
;;
esac
;;
(routes)
_arguments "${_arguments_options[@]}" : \
&& ret=0
;;
(help)
_arguments "${_arguments_options[@]}" : \
&& ret=0
;;
esac
;;
esac
;;
esac
;;
esac
;;
(ssg)
_arguments "${_arguments_options[@]}" : \
'-p+[project path]:PROJECT:_default' \
'--project=[project path]:PROJECT:_default' \
'*-v[Increase logging verbosity]' \
'*--verbose[Increase logging verbosity]' \
'(-v --verbose)*-q[Decrease logging verbosity]' \
'(-v --verbose)*--quiet[Decrease logging verbosity]' \
'--pretty[whether to pretty print events to stdio]' \
'-h[Print help]' \
'--help[Print help]' \
'-V[Print version]' \
'--version[Print version]' \
":: :_ordinary__subcmd__ssg_commands" \
"*::: :->ssg" \
&& ret=0
case $state in
(ssg)
words=($line[1] "${words[@]}")
(( CURRENT += 1 ))
curcontext="${curcontext%:*:*}:ordinary-ssg-command-$line[1]:"
case $line[1] in
(new)
_arguments "${_arguments_options[@]}" : \
'*-c+[contacts for Let'\''s Encrypt (auto-TLS) \[source\](https\://docs.rs/rustls-acme/latest/rustls_acme/struct.AcmeConfig.html#method.contact_push)]:CONTACTS:_default' \
'*--contacts=[contacts for Let'\''s Encrypt (auto-TLS) \[source\](https\://docs.rs/rustls-acme/latest/rustls_acme/struct.AcmeConfig.html#method.contact_push)]:CONTACTS:_default' \
'-e[include generated 404.html as error page]' \
'--error-page[include generated 404.html as error page]' \
'-s[accommodate inline styles in the generated files]' \
'--inline-styles[accommodate inline styles in the generated files]' \
'-r[accommodate inline scripts in the generated files]' \
'--inline-scripts[accommodate inline scripts in the generated files]' \
'-m[accommodate inline images in the generated files]' \
'--inline-images[accommodate inline images in the generated files]' \
'*-v[Increase logging verbosity]' \
'*--verbose[Increase logging verbosity]' \
'(-v --verbose)*-q[Decrease logging verbosity]' \
'(-v --verbose)*--quiet[Decrease logging verbosity]' \
'--pretty[whether to pretty print events to stdio]' \
'-h[Print help]' \
'--help[Print help]' \
'-V[Print version]' \
'--version[Print version]' \
':domain -- project domain:_default' \
':dir_path -- assets `dir_path`:_default' \
&& ret=0
;;
(create)
_arguments "${_arguments_options[@]}" : \
'*-c+[contacts for Let'\''s Encrypt (auto-TLS) \[source\](https\://docs.rs/rustls-acme/latest/rustls_acme/struct.AcmeConfig.html#method.contact_push)]:CONTACTS:_default' \
'*--contacts=[contacts for Let'\''s Encrypt (auto-TLS) \[source\](https\://docs.rs/rustls-acme/latest/rustls_acme/struct.AcmeConfig.html#method.contact_push)]:CONTACTS:_default' \
'-e[include generated 404.html as error page]' \
'--error-page[include generated 404.html as error page]' \
'-s[accommodate inline styles in the generated files]' \
'--inline-styles[accommodate inline styles in the generated files]' \
'-r[accommodate inline scripts in the generated files]' \
'--inline-scripts[accommodate inline scripts in the generated files]' \
'-m[accommodate inline images in the generated files]' \
'--inline-images[accommodate inline images in the generated files]' \
'*-v[Increase logging verbosity]' \
'*--verbose[Increase logging verbosity]' \
'(-v --verbose)*-q[Decrease logging verbosity]' \
'(-v --verbose)*--quiet[Decrease logging verbosity]' \
'--pretty[whether to pretty print events to stdio]' \
'-h[Print help]' \
'--help[Print help]' \
'-V[Print version]' \
'--version[Print version]' \
':domain -- project domain:_default' \
':dir_path -- assets `dir_path`:_default' \
&& ret=0
;;
(init)
_arguments "${_arguments_options[@]}" : \
'*-c+[contacts for Let'\''s Encrypt (auto-TLS) \[source\](https\://docs.rs/rustls-acme/latest/rustls_acme/struct.AcmeConfig.html#method.contact_push)]:CONTACTS:_default' \
'*--contacts=[contacts for Let'\''s Encrypt (auto-TLS) \[source\](https\://docs.rs/rustls-acme/latest/rustls_acme/struct.AcmeConfig.html#method.contact_push)]:CONTACTS:_default' \
'-e[include generated 404.html as error page]' \
'--error-page[include generated 404.html as error page]' \
'-s[accommodate inline styles in the generated files]' \
'--inline-styles[accommodate inline styles in the generated files]' \
'-r[accommodate inline scripts in the generated files]' \
'--inline-scripts[accommodate inline scripts in the generated files]' \
'-m[accommodate inline images in the generated files]' \
'--inline-images[accommodate inline images in the generated files]' \
'*-v[Increase logging verbosity]' \
'*--verbose[Increase logging verbosity]' \
'(-v --verbose)*-q[Decrease logging verbosity]' \
'(-v --verbose)*--quiet[Decrease logging verbosity]' \
'--pretty[whether to pretty print events to stdio]' \
'-h[Print help]' \
'--help[Print help]' \
'-V[Print version]' \
'--version[Print version]' \
':domain -- project domain:_default' \
':dir_path -- assets `dir_path`:_default' \
&& ret=0
;;
(help)
_arguments "${_arguments_options[@]}" : \
":: :_ordinary__subcmd__ssg__subcmd__help_commands" \
"*::: :->help" \
&& ret=0
case $state in
(help)
words=($line[1] "${words[@]}")
(( CURRENT += 1 ))
curcontext="${curcontext%:*:*}:ordinary-ssg-help-command-$line[1]:"
case $line[1] in
(new)
_arguments "${_arguments_options[@]}" : \
&& ret=0
;;
(help)
_arguments "${_arguments_options[@]}" : \
&& ret=0
;;
esac
;;
esac
;;
esac
;;
esac
;;
(host)
_arguments "${_arguments_options[@]}" : \
'--host-domain=[should only be necessary with localhost or when addressing by IP]:HOST_DOMAIN:_default' \
'--insecure[use HTTP instead of HTTPS]' \
'--danger-accept-invalid-certs[DANGER\: only use when working with self-signed localhost certs]' \
'*-v[Increase logging verbosity]' \
'*--verbose[Increase logging verbosity]' \
'(-v --verbose)*-q[Decrease logging verbosity]' \
'(-v --verbose)*--quiet[Decrease logging verbosity]' \
'--pretty[whether to pretty print events to stdio]' \
'-h[Print help]' \
'--help[Print help]' \
'-V[Print version]' \
'--version[Print version]' \
":: :_ordinary__subcmd__host_commands" \
"*::: :->host" \
&& ret=0
case $state in
(host)
words=($line[1] "${words[@]}")
(( CURRENT += 1 ))
curcontext="${curcontext%:*:*}:ordinary-host-command-$line[1]:"
case $line[1] in
(info)
_arguments "${_arguments_options[@]}" : \
'*-v[Increase logging verbosity]' \
'*--verbose[Increase logging verbosity]' \
'(-v --verbose)*-q[Decrease logging verbosity]' \
'(-v --verbose)*--quiet[Decrease logging verbosity]' \
'--pretty[whether to pretty print events to stdio]' \
'-h[Print help]' \
'--help[Print help]' \
'-V[Print version]' \
'--version[Print version]' \
&& ret=0
;;
(metrics)
_arguments "${_arguments_options[@]}" : \
'-s+[name of the service that you'\''d like to retrieve metrics for]:SERVICE:_default' \
'--service=[name of the service that you'\''d like to retrieve metrics for]:SERVICE:_default' \
'*-v[Increase logging verbosity]' \
'*--verbose[Increase logging verbosity]' \
'(-v --verbose)*-q[Decrease logging verbosity]' \
'(-v --verbose)*--quiet[Decrease logging verbosity]' \
'--pretty[whether to pretty print events to stdio]' \
'-h[Print help]' \
'--help[Print help]' \
'-V[Print version]' \
'--version[Print version]' \
&& ret=0
;;
(logs)
_arguments "${_arguments_options[@]}" : \
'*-v[Increase logging verbosity]' \
'*--verbose[Increase logging verbosity]' \
'(-v --verbose)*-q[Decrease logging verbosity]' \
'(-v --verbose)*--quiet[Decrease logging verbosity]' \
'--pretty[whether to pretty print events to stdio]' \
'-h[Print help]' \
'--help[Print help]' \
'-V[Print version]' \
'--version[Print version]' \
":: :_ordinary__subcmd__host__subcmd__logs_commands" \
"*::: :->logs" \
&& ret=0
case $state in
(logs)
words=($line[1] "${words[@]}")
(( CURRENT += 1 ))
curcontext="${curcontext%:*:*}:ordinary-host-logs-command-$line[1]:"
case $line[1] in
(sync)
_arguments "${_arguments_options[@]}" : \
'*-v[Increase logging verbosity]' \
'*--verbose[Increase logging verbosity]' \
'(-v --verbose)*-q[Decrease logging verbosity]' \
'(-v --verbose)*--quiet[Decrease logging verbosity]' \
'--pretty[whether to pretty print events to stdio]' \
'-h[Print help]' \
'--help[Print help]' \
'-V[Print version]' \
'--version[Print version]' \
":: :_ordinary__subcmd__host__subcmd__logs__subcmd__sync_commands" \
"*::: :->sync" \
&& ret=0
case $state in
(sync)
words=($line[1] "${words[@]}")
(( CURRENT += 1 ))
curcontext="${curcontext%:*:*}:ordinary-host-logs-sync-command-$line[1]:"
case $line[1] in
(info)
_arguments "${_arguments_options[@]}" : \
'*-v[Increase logging verbosity]' \
'*--verbose[Increase logging verbosity]' \
'(-v --verbose)*-q[Decrease logging verbosity]' \
'(-v --verbose)*--quiet[Decrease logging verbosity]' \
'--pretty[whether to pretty print events to stdio]' \
'-h[Print help (see more with '\''--help'\'')]' \
'--help[Print help (see more with '\''--help'\'')]' \
'-V[Print version]' \
'--version[Print version]' \
&& ret=0
;;
(file)
_arguments "${_arguments_options[@]}" : \
'*-v[Increase logging verbosity]' \
'*--verbose[Increase logging verbosity]' \
'(-v --verbose)*-q[Decrease logging verbosity]' \
'(-v --verbose)*--quiet[Decrease logging verbosity]' \
'--pretty[whether to pretty print events to stdio]' \
'-h[Print help]' \
'--help[Print help]' \
'-V[Print version]' \
'--version[Print version]' \
':name -- file name:_default' \
&& ret=0
;;
(all)
_arguments "${_arguments_options[@]}" : \
'-f+[download all files from the server, overwriting everything you have locally]:FORCE:(true false)' \
'--force=[download all files from the server, overwriting everything you have locally]:FORCE:(true false)' \
'*-v[Increase logging verbosity]' \
'*--verbose[Increase logging verbosity]' \
'(-v --verbose)*-q[Decrease logging verbosity]' \
'(-v --verbose)*--quiet[Decrease logging verbosity]' \
'--pretty[whether to pretty print events to stdio]' \
'-h[Print help (see more with '\''--help'\'')]' \
'--help[Print help (see more with '\''--help'\'')]' \
'-V[Print version]' \
'--version[Print version]' \
&& ret=0
;;
(help)
_arguments "${_arguments_options[@]}" : \
":: :_ordinary__subcmd__host__subcmd__logs__subcmd__sync__subcmd__help_commands" \
"*::: :->help" \
&& ret=0
case $state in
(help)
words=($line[1] "${words[@]}")
(( CURRENT += 1 ))
curcontext="${curcontext%:*:*}:ordinary-host-logs-sync-help-command-$line[1]:"
case $line[1] in
(info)
_arguments "${_arguments_options[@]}" : \
&& ret=0
;;
(file)
_arguments "${_arguments_options[@]}" : \
&& ret=0
;;
(all)
_arguments "${_arguments_options[@]}" : \
&& ret=0
;;
(help)
_arguments "${_arguments_options[@]}" : \
&& ret=0
;;
esac
;;
esac
;;
esac
;;
esac
;;
(list)
_arguments "${_arguments_options[@]}" : \
'*-v[Increase logging verbosity]' \
'*--verbose[Increase logging verbosity]' \
'(-v --verbose)*-q[Decrease logging verbosity]' \
'(-v --verbose)*--quiet[Decrease logging verbosity]' \
'--pretty[whether to pretty print events to stdio]' \
'-h[Print help]' \
'--help[Print help]' \
'-V[Print version]' \
'--version[Print version]' \
&& ret=0
;;
(ls)
_arguments "${_arguments_options[@]}" : \
'*-v[Increase logging verbosity]' \
'*--verbose[Increase logging verbosity]' \
'(-v --verbose)*-q[Decrease logging verbosity]' \
'(-v --verbose)*--quiet[Decrease logging verbosity]' \
'--pretty[whether to pretty print events to stdio]' \
'-h[Print help]' \
'--help[Print help]' \
'-V[Print version]' \
'--version[Print version]' \
&& ret=0
;;
(read)
_arguments "${_arguments_options[@]}" : \
'-n+[name of the log file to read]:NAME:_default' \
'--name=[name of the log file to read]:NAME:_default' \
'*-v[Increase logging verbosity]' \
'*--verbose[Increase logging verbosity]' \
'(-v --verbose)*-q[Decrease logging verbosity]' \
'(-v --verbose)*--quiet[Decrease logging verbosity]' \
'--pretty[whether to pretty print events to stdio]' \
'-h[Print help]' \
'--help[Print help]' \
'-V[Print version]' \
'--version[Print version]' \
&& ret=0
;;
(query)
_arguments "${_arguments_options[@]}" : \
'*-j+[which columns should be nested as JSON]:JSON_COLUMNS:_default' \
'*--json-columns=[which columns should be nested as JSON]:JSON_COLUMNS:_default' \
'-s+[whether to sync from remote]:SYNC:(true false)' \
'--sync=[whether to sync from remote]:SYNC:(true false)' \
'*-v[Increase logging verbosity]' \
'*--verbose[Increase logging verbosity]' \
'(-v --verbose)*-q[Decrease logging verbosity]' \
'(-v --verbose)*--quiet[Decrease logging verbosity]' \
'--pretty[whether to pretty print events to stdio]' \
'-h[Print help (see more with '\''--help'\'')]' \
'--help[Print help (see more with '\''--help'\'')]' \
'-V[Print version]' \
'--version[Print version]' \
':query -- \[reference\](https\://sqlite.org/lang.html):_default' \
&& ret=0
;;
(search)
_arguments "${_arguments_options[@]}" : \
'--limit=[limit (when using '\''top'\'' format)]:LIMIT:_default' \
'-s+[whether to sync from remote]:SYNC:(true false)' \
'--sync=[whether to sync from remote]:SYNC:(true false)' \
'*-v[Increase logging verbosity]' \
'*--verbose[Increase logging verbosity]' \
'(-v --verbose)*-q[Decrease logging verbosity]' \
'(-v --verbose)*--quiet[Decrease logging verbosity]' \
'--pretty[whether to pretty print events to stdio]' \
'-h[Print help]' \
'--help[Print help]' \
'-V[Print version]' \
'--version[Print version]' \
':format -- format:(all top count)' \
':query -- \[reference\](https\://quickwit.io/docs/reference/query-language):_default' \
&& ret=0
;;
(help)
_arguments "${_arguments_options[@]}" : \
":: :_ordinary__subcmd__host__subcmd__logs__subcmd__help_commands" \
"*::: :->help" \
&& ret=0
case $state in
(help)
words=($line[1] "${words[@]}")
(( CURRENT += 1 ))
curcontext="${curcontext%:*:*}:ordinary-host-logs-help-command-$line[1]:"
case $line[1] in
(sync)
_arguments "${_arguments_options[@]}" : \
":: :_ordinary__subcmd__host__subcmd__logs__subcmd__help__subcmd__sync_commands" \
"*::: :->sync" \
&& ret=0
case $state in
(sync)
words=($line[1] "${words[@]}")
(( CURRENT += 1 ))
curcontext="${curcontext%:*:*}:ordinary-host-logs-help-sync-command-$line[1]:"
case $line[1] in
(info)
_arguments "${_arguments_options[@]}" : \
&& ret=0
;;
(file)
_arguments "${_arguments_options[@]}" : \
&& ret=0
;;
(all)
_arguments "${_arguments_options[@]}" : \
&& ret=0
;;
esac
;;
esac
;;
(list)
_arguments "${_arguments_options[@]}" : \
&& ret=0
;;
(read)
_arguments "${_arguments_options[@]}" : \
&& ret=0
;;
(query)
_arguments "${_arguments_options[@]}" : \
&& ret=0
;;
(search)
_arguments "${_arguments_options[@]}" : \
&& ret=0
;;
(help)
_arguments "${_arguments_options[@]}" : \
&& ret=0
;;
esac
;;
esac
;;
esac
;;
esac
;;
(accounts)
_arguments "${_arguments_options[@]}" : \
'*-v[Increase logging verbosity]' \
'*--verbose[Increase logging verbosity]' \
'(-v --verbose)*-q[Decrease logging verbosity]' \
'(-v --verbose)*--quiet[Decrease logging verbosity]' \
'--pretty[whether to pretty print events to stdio]' \
'-h[Print help]' \
'--help[Print help]' \
'-V[Print version]' \
'--version[Print version]' \
":: :_ordinary__subcmd__host__subcmd__accounts_commands" \
"*::: :->accounts" \
&& ret=0
case $state in
(accounts)
words=($line[1] "${words[@]}")
(( CURRENT += 1 ))
curcontext="${curcontext%:*:*}:ordinary-host-accounts-command-$line[1]:"
case $line[1] in
(register)
_arguments "${_arguments_options[@]}" : \
'--password=[password for your new account]:PASSWORD:_default' \
'--invite=[base64 encoded invite token]:INVITE:_default' \
'*-v[Increase logging verbosity]' \
'*--verbose[Increase logging verbosity]' \
'(-v --verbose)*-q[Decrease logging verbosity]' \
'(-v --verbose)*--quiet[Decrease logging verbosity]' \
'--pretty[whether to pretty print events to stdio]' \
'-h[Print help]' \
'--help[Print help]' \
'-V[Print version]' \
'--version[Print version]' \
':host -- url where `orindaryd` is running:_default' \
':account -- name of your account with the host:_default' \
&& ret=0
;;
(login)
_arguments "${_arguments_options[@]}" : \
'--password=[password for your existing account]:PASSWORD:_default' \
'--mfa=[6 digit TOTP MFA code]:MFA:_default' \
'*-v[Increase logging verbosity]' \
'*--verbose[Increase logging verbosity]' \
'(-v --verbose)*-q[Decrease logging verbosity]' \
'(-v --verbose)*--quiet[Decrease logging verbosity]' \
'--pretty[whether to pretty print events to stdio]' \
'-h[Print help]' \
'--help[Print help]' \
'-V[Print version]' \
'--version[Print version]' \
':host -- url where `orindaryd` is running:_default' \
':account -- name of your account with the host:_default' \
&& ret=0
;;
(logout)
_arguments "${_arguments_options[@]}" : \
'*-v[Increase logging verbosity]' \
'*--verbose[Increase logging verbosity]' \
'(-v --verbose)*-q[Decrease logging verbosity]' \
'(-v --verbose)*--quiet[Decrease logging verbosity]' \
'--pretty[whether to pretty print events to stdio]' \
'-h[Print help]' \
'--help[Print help]' \
'-V[Print version]' \
'--version[Print version]' \
&& ret=0
;;
(access)
_arguments "${_arguments_options[@]}" : \
'*-v[Increase logging verbosity]' \
'*--verbose[Increase logging verbosity]' \
'(-v --verbose)*-q[Decrease logging verbosity]' \
'(-v --verbose)*--quiet[Decrease logging verbosity]' \
'--pretty[whether to pretty print events to stdio]' \
'-h[Print help]' \
'--help[Print help]' \
'-V[Print version]' \
'--version[Print version]' \
":: :_ordinary__subcmd__host__subcmd__accounts__subcmd__access_commands" \
"*::: :->access" \
&& ret=0
case $state in
(access)
words=($line[1] "${words[@]}")
(( CURRENT += 1 ))
curcontext="${curcontext%:*:*}:ordinary-host-accounts-access-command-$line[1]:"
case $line[1] in
(get)
_arguments "${_arguments_options[@]}" : \
'-m+[how long the client signature is valid for]:MIN:_default' \
'--min=[how long the client signature is valid for]:MIN:_default' \
'*-v[Increase logging verbosity]' \
'*--verbose[Increase logging verbosity]' \
'(-v --verbose)*-q[Decrease logging verbosity]' \
'(-v --verbose)*--quiet[Decrease logging verbosity]' \
'--pretty[whether to pretty print events to stdio]' \
'-h[Print help]' \
'--help[Print help]' \
'-V[Print version]' \
'--version[Print version]' \
&& ret=0
;;
(help)
_arguments "${_arguments_options[@]}" : \
":: :_ordinary__subcmd__host__subcmd__accounts__subcmd__access__subcmd__help_commands" \
"*::: :->help" \
&& ret=0
case $state in
(help)
words=($line[1] "${words[@]}")
(( CURRENT += 1 ))
curcontext="${curcontext%:*:*}:ordinary-host-accounts-access-help-command-$line[1]:"
case $line[1] in
(get)
_arguments "${_arguments_options[@]}" : \
&& ret=0
;;
(help)
_arguments "${_arguments_options[@]}" : \
&& ret=0
;;
esac
;;
esac
;;
esac
;;
esac
;;
(password)
_arguments "${_arguments_options[@]}" : \
'*-v[Increase logging verbosity]' \
'*--verbose[Increase logging verbosity]' \
'(-v --verbose)*-q[Decrease logging verbosity]' \
'(-v --verbose)*--quiet[Decrease logging verbosity]' \
'--pretty[whether to pretty print events to stdio]' \
'-h[Print help]' \
'--help[Print help]' \
'-V[Print version]' \
'--version[Print version]' \
":: :_ordinary__subcmd__host__subcmd__accounts__subcmd__password_commands" \
"*::: :->password" \
&& ret=0
case $state in
(password)
words=($line[1] "${words[@]}")
(( CURRENT += 1 ))
curcontext="${curcontext%:*:*}:ordinary-host-accounts-password-command-$line[1]:"
case $line[1] in
(reset)
_arguments "${_arguments_options[@]}" : \
'--password=[existing password]:PASSWORD:_default' \
'--new-password=[new password to be set]:NEW_PASSWORD:_default' \
'--mfa=[6 digit TOTP MFA code]:MFA:_default' \
'*-v[Increase logging verbosity]' \
'*--verbose[Increase logging verbosity]' \
'(-v --verbose)*-q[Decrease logging verbosity]' \
'(-v --verbose)*--quiet[Decrease logging verbosity]' \
'--pretty[whether to pretty print events to stdio]' \
'-h[Print help]' \
'--help[Print help]' \
'-V[Print version]' \
'--version[Print version]' \
&& ret=0
;;
(forgot)
_arguments "${_arguments_options[@]}" : \
'--new-password=[new password to be set]:NEW_PASSWORD:_default' \
'--recovery-code=[11 character recovery code]:RECOVERY_CODE:_default' \
'*-v[Increase logging verbosity]' \
'*--verbose[Increase logging verbosity]' \
'(-v --verbose)*-q[Decrease logging verbosity]' \
'(-v --verbose)*--quiet[Decrease logging verbosity]' \
'--pretty[whether to pretty print events to stdio]' \
'-h[Print help]' \
'--help[Print help]' \
'-V[Print version]' \
'--version[Print version]' \
&& ret=0
;;
(help)
_arguments "${_arguments_options[@]}" : \
":: :_ordinary__subcmd__host__subcmd__accounts__subcmd__password__subcmd__help_commands" \
"*::: :->help" \
&& ret=0
case $state in
(help)
words=($line[1] "${words[@]}")
(( CURRENT += 1 ))
curcontext="${curcontext%:*:*}:ordinary-host-accounts-password-help-command-$line[1]:"
case $line[1] in
(reset)
_arguments "${_arguments_options[@]}" : \
&& ret=0
;;
(forgot)
_arguments "${_arguments_options[@]}" : \
&& ret=0
;;
(help)
_arguments "${_arguments_options[@]}" : \
&& ret=0
;;
esac
;;
esac
;;
esac
;;
esac
;;
(mfa)
_arguments "${_arguments_options[@]}" : \
'*-v[Increase logging verbosity]' \
'*--verbose[Increase logging verbosity]' \
'(-v --verbose)*-q[Decrease logging verbosity]' \
'(-v --verbose)*--quiet[Decrease logging verbosity]' \
'--pretty[whether to pretty print events to stdio]' \
'-h[Print help]' \
'--help[Print help]' \
'-V[Print version]' \
'--version[Print version]' \
":: :_ordinary__subcmd__host__subcmd__accounts__subcmd__mfa_commands" \
"*::: :->mfa" \
&& ret=0
case $state in
(mfa)
words=($line[1] "${words[@]}")
(( CURRENT += 1 ))
curcontext="${curcontext%:*:*}:ordinary-host-accounts-mfa-command-$line[1]:"
case $line[1] in
(reset)
_arguments "${_arguments_options[@]}" : \
'--password=[account password]:PASSWORD:_default' \
'--mfa=[6 digit TOTP MFA code]:MFA:_default' \
'*-v[Increase logging verbosity]' \
'*--verbose[Increase logging verbosity]' \
'(-v --verbose)*-q[Decrease logging verbosity]' \
'(-v --verbose)*--quiet[Decrease logging verbosity]' \
'--pretty[whether to pretty print events to stdio]' \
'-h[Print help]' \
'--help[Print help]' \
'-V[Print version]' \
'--version[Print version]' \
&& ret=0
;;
(lost)
_arguments "${_arguments_options[@]}" : \
'--password=[account password]:PASSWORD:_default' \
'--recovery-code=[11 character recovery code]:RECOVERY_CODE:_default' \
'*-v[Increase logging verbosity]' \
'*--verbose[Increase logging verbosity]' \
'(-v --verbose)*-q[Decrease logging verbosity]' \
'(-v --verbose)*--quiet[Decrease logging verbosity]' \
'--pretty[whether to pretty print events to stdio]' \
'-h[Print help]' \
'--help[Print help]' \
'-V[Print version]' \
'--version[Print version]' \
&& ret=0
;;
(help)
_arguments "${_arguments_options[@]}" : \
":: :_ordinary__subcmd__host__subcmd__accounts__subcmd__mfa__subcmd__help_commands" \
"*::: :->help" \
&& ret=0
case $state in
(help)
words=($line[1] "${words[@]}")
(( CURRENT += 1 ))
curcontext="${curcontext%:*:*}:ordinary-host-accounts-mfa-help-command-$line[1]:"
case $line[1] in
(reset)
_arguments "${_arguments_options[@]}" : \
&& ret=0
;;
(lost)
_arguments "${_arguments_options[@]}" : \
&& ret=0
;;
(help)
_arguments "${_arguments_options[@]}" : \
&& ret=0
;;
esac
;;
esac
;;
esac
;;
esac
;;
(recovery-codes)
_arguments "${_arguments_options[@]}" : \
'*-v[Increase logging verbosity]' \
'*--verbose[Increase logging verbosity]' \
'(-v --verbose)*-q[Decrease logging verbosity]' \
'(-v --verbose)*--quiet[Decrease logging verbosity]' \
'--pretty[whether to pretty print events to stdio]' \
'-h[Print help]' \
'--help[Print help]' \
'-V[Print version]' \
'--version[Print version]' \
":: :_ordinary__subcmd__host__subcmd__accounts__subcmd__recovery-codes_commands" \
"*::: :->recovery-codes" \
&& ret=0
case $state in
(recovery-codes)
words=($line[1] "${words[@]}")
(( CURRENT += 1 ))
curcontext="${curcontext%:*:*}:ordinary-host-accounts-recovery-codes-command-$line[1]:"
case $line[1] in
(reset)
_arguments "${_arguments_options[@]}" : \
'--password=[account password]:PASSWORD:_default' \
'--mfa=[6 digit TOTP MFA code]:MFA:_default' \
'*-v[Increase logging verbosity]' \
'*--verbose[Increase logging verbosity]' \
'(-v --verbose)*-q[Decrease logging verbosity]' \
'(-v --verbose)*--quiet[Decrease logging verbosity]' \
'--pretty[whether to pretty print events to stdio]' \
'-h[Print help]' \
'--help[Print help]' \
'-V[Print version]' \
'--version[Print version]' \
&& ret=0
;;
(help)
_arguments "${_arguments_options[@]}" : \
":: :_ordinary__subcmd__host__subcmd__accounts__subcmd__recovery-codes__subcmd__help_commands" \
"*::: :->help" \
&& ret=0
case $state in
(help)
words=($line[1] "${words[@]}")
(( CURRENT += 1 ))
curcontext="${curcontext%:*:*}:ordinary-host-accounts-recovery-codes-help-command-$line[1]:"
case $line[1] in
(reset)
_arguments "${_arguments_options[@]}" : \
&& ret=0
;;
(help)
_arguments "${_arguments_options[@]}" : \
&& ret=0
;;
esac
;;
esac
;;
esac
;;
esac
;;
(delete)
_arguments "${_arguments_options[@]}" : \
'--password=[password for your existing account]:PASSWORD:_default' \
'--mfa=[6 digit TOTP MFA code]:MFA:_default' \
'*-v[Increase logging verbosity]' \
'*--verbose[Increase logging verbosity]' \
'(-v --verbose)*-q[Decrease logging verbosity]' \
'(-v --verbose)*--quiet[Decrease logging verbosity]' \
'--pretty[whether to pretty print events to stdio]' \
'-h[Print help]' \
'--help[Print help]' \
'-V[Print version]' \
'--version[Print version]' \
':host -- url where `orindaryd` is running:_default' \
':account -- name of your account with the host:_default' \
&& ret=0
;;
(invite)
_arguments "${_arguments_options[@]}" : \
'*-v[Increase logging verbosity]' \
'*--verbose[Increase logging verbosity]' \
'(-v --verbose)*-q[Decrease logging verbosity]' \
'(-v --verbose)*--quiet[Decrease logging verbosity]' \
'--pretty[whether to pretty print events to stdio]' \
'-h[Print help]' \
'--help[Print help]' \
'-V[Print version]' \
'--version[Print version]' \
':account -- name of the account to be invited & registered:_default' \
':domain -- domain for the invited application:_default' \
'*::permissions -- which permissions to include in their set:(admin read write update functions deploy bridge kill erase)' \
&& ret=0
;;
(current)
_arguments "${_arguments_options[@]}" : \
'*-v[Increase logging verbosity]' \
'*--verbose[Increase logging verbosity]' \
'(-v --verbose)*-q[Decrease logging verbosity]' \
'(-v --verbose)*--quiet[Decrease logging verbosity]' \
'--pretty[whether to pretty print events to stdio]' \
'-h[Print help (see more with '\''--help'\'')]' \
'--help[Print help (see more with '\''--help'\'')]' \
'-V[Print version]' \
'--version[Print version]' \
&& ret=0
;;
(list)
_arguments "${_arguments_options[@]}" : \
'*-v[Increase logging verbosity]' \
'*--verbose[Increase logging verbosity]' \
'(-v --verbose)*-q[Decrease logging verbosity]' \
'(-v --verbose)*--quiet[Decrease logging verbosity]' \
'--pretty[whether to pretty print events to stdio]' \
'-h[Print help]' \
'--help[Print help]' \
'-V[Print version]' \
'--version[Print version]' \
&& ret=0
;;
(switch)
_arguments "${_arguments_options[@]}" : \
'*-v[Increase logging verbosity]' \
'*--verbose[Increase logging verbosity]' \
'(-v --verbose)*-q[Decrease logging verbosity]' \
'(-v --verbose)*--quiet[Decrease logging verbosity]' \
'--pretty[whether to pretty print events to stdio]' \
'-h[Print help]' \
'--help[Print help]' \
'-V[Print version]' \
'--version[Print version]' \
':domain -- API domain where `orindaryd` is running:_default' \
':account -- name of the account you'\''d like to switch to:_default' \
&& ret=0
;;
(help)
_arguments "${_arguments_options[@]}" : \
":: :_ordinary__subcmd__host__subcmd__accounts__subcmd__help_commands" \
"*::: :->help" \
&& ret=0
case $state in
(help)
words=($line[1] "${words[@]}")
(( CURRENT += 1 ))
curcontext="${curcontext%:*:*}:ordinary-host-accounts-help-command-$line[1]:"
case $line[1] in
(register)
_arguments "${_arguments_options[@]}" : \
&& ret=0
;;
(login)
_arguments "${_arguments_options[@]}" : \
&& ret=0
;;
(logout)
_arguments "${_arguments_options[@]}" : \
&& ret=0
;;
(access)
_arguments "${_arguments_options[@]}" : \
":: :_ordinary__subcmd__host__subcmd__accounts__subcmd__help__subcmd__access_commands" \
"*::: :->access" \
&& ret=0
case $state in
(access)
words=($line[1] "${words[@]}")
(( CURRENT += 1 ))
curcontext="${curcontext%:*:*}:ordinary-host-accounts-help-access-command-$line[1]:"
case $line[1] in
(get)
_arguments "${_arguments_options[@]}" : \
&& ret=0
;;
esac
;;
esac
;;
(password)
_arguments "${_arguments_options[@]}" : \
":: :_ordinary__subcmd__host__subcmd__accounts__subcmd__help__subcmd__password_commands" \
"*::: :->password" \
&& ret=0
case $state in
(password)
words=($line[1] "${words[@]}")
(( CURRENT += 1 ))
curcontext="${curcontext%:*:*}:ordinary-host-accounts-help-password-command-$line[1]:"
case $line[1] in
(reset)
_arguments "${_arguments_options[@]}" : \
&& ret=0
;;
(forgot)
_arguments "${_arguments_options[@]}" : \
&& ret=0
;;
esac
;;
esac
;;
(mfa)
_arguments "${_arguments_options[@]}" : \
":: :_ordinary__subcmd__host__subcmd__accounts__subcmd__help__subcmd__mfa_commands" \
"*::: :->mfa" \
&& ret=0
case $state in
(mfa)
words=($line[1] "${words[@]}")
(( CURRENT += 1 ))
curcontext="${curcontext%:*:*}:ordinary-host-accounts-help-mfa-command-$line[1]:"
case $line[1] in
(reset)
_arguments "${_arguments_options[@]}" : \
&& ret=0
;;
(lost)
_arguments "${_arguments_options[@]}" : \
&& ret=0
;;
esac
;;
esac
;;
(recovery-codes)
_arguments "${_arguments_options[@]}" : \
":: :_ordinary__subcmd__host__subcmd__accounts__subcmd__help__subcmd__recovery-codes_commands" \
"*::: :->recovery-codes" \
&& ret=0
case $state in
(recovery-codes)
words=($line[1] "${words[@]}")
(( CURRENT += 1 ))
curcontext="${curcontext%:*:*}:ordinary-host-accounts-help-recovery-codes-command-$line[1]:"
case $line[1] in
(reset)
_arguments "${_arguments_options[@]}" : \
&& ret=0
;;
esac
;;
esac
;;
(delete)
_arguments "${_arguments_options[@]}" : \
&& ret=0
;;
(invite)
_arguments "${_arguments_options[@]}" : \
&& ret=0
;;
(current)
_arguments "${_arguments_options[@]}" : \
&& ret=0
;;
(list)
_arguments "${_arguments_options[@]}" : \
&& ret=0
;;
(switch)
_arguments "${_arguments_options[@]}" : \
&& ret=0
;;
(help)
_arguments "${_arguments_options[@]}" : \
&& ret=0
;;
esac
;;
esac
;;
esac
;;
esac
;;
(account)
_arguments "${_arguments_options[@]}" : \
'*-v[Increase logging verbosity]' \
'*--verbose[Increase logging verbosity]' \
'(-v --verbose)*-q[Decrease logging verbosity]' \
'(-v --verbose)*--quiet[Decrease logging verbosity]' \
'--pretty[whether to pretty print events to stdio]' \
'-h[Print help]' \
'--help[Print help]' \
'-V[Print version]' \
'--version[Print version]' \
":: :_ordinary__subcmd__host__subcmd__accounts_commands" \
"*::: :->accounts" \
&& ret=0
case $state in
(accounts)
words=($line[1] "${words[@]}")
(( CURRENT += 1 ))
curcontext="${curcontext%:*:*}:ordinary-host-accounts-command-$line[1]:"
case $line[1] in
(register)
_arguments "${_arguments_options[@]}" : \
'--password=[password for your new account]:PASSWORD:_default' \
'--invite=[base64 encoded invite token]:INVITE:_default' \
'*-v[Increase logging verbosity]' \
'*--verbose[Increase logging verbosity]' \
'(-v --verbose)*-q[Decrease logging verbosity]' \
'(-v --verbose)*--quiet[Decrease logging verbosity]' \
'--pretty[whether to pretty print events to stdio]' \
'-h[Print help]' \
'--help[Print help]' \
'-V[Print version]' \
'--version[Print version]' \
':host -- url where `orindaryd` is running:_default' \
':account -- name of your account with the host:_default' \
&& ret=0
;;
(login)
_arguments "${_arguments_options[@]}" : \
'--password=[password for your existing account]:PASSWORD:_default' \
'--mfa=[6 digit TOTP MFA code]:MFA:_default' \
'*-v[Increase logging verbosity]' \
'*--verbose[Increase logging verbosity]' \
'(-v --verbose)*-q[Decrease logging verbosity]' \
'(-v --verbose)*--quiet[Decrease logging verbosity]' \
'--pretty[whether to pretty print events to stdio]' \
'-h[Print help]' \
'--help[Print help]' \
'-V[Print version]' \
'--version[Print version]' \
':host -- url where `orindaryd` is running:_default' \
':account -- name of your account with the host:_default' \
&& ret=0
;;
(logout)
_arguments "${_arguments_options[@]}" : \
'*-v[Increase logging verbosity]' \
'*--verbose[Increase logging verbosity]' \
'(-v --verbose)*-q[Decrease logging verbosity]' \
'(-v --verbose)*--quiet[Decrease logging verbosity]' \
'--pretty[whether to pretty print events to stdio]' \
'-h[Print help]' \
'--help[Print help]' \
'-V[Print version]' \
'--version[Print version]' \
&& ret=0
;;
(access)
_arguments "${_arguments_options[@]}" : \
'*-v[Increase logging verbosity]' \
'*--verbose[Increase logging verbosity]' \
'(-v --verbose)*-q[Decrease logging verbosity]' \
'(-v --verbose)*--quiet[Decrease logging verbosity]' \
'--pretty[whether to pretty print events to stdio]' \
'-h[Print help]' \
'--help[Print help]' \
'-V[Print version]' \
'--version[Print version]' \
":: :_ordinary__subcmd__host__subcmd__accounts__subcmd__access_commands" \
"*::: :->access" \
&& ret=0
case $state in
(access)
words=($line[1] "${words[@]}")
(( CURRENT += 1 ))
curcontext="${curcontext%:*:*}:ordinary-host-accounts-access-command-$line[1]:"
case $line[1] in
(get)
_arguments "${_arguments_options[@]}" : \
'-m+[how long the client signature is valid for]:MIN:_default' \
'--min=[how long the client signature is valid for]:MIN:_default' \
'*-v[Increase logging verbosity]' \
'*--verbose[Increase logging verbosity]' \
'(-v --verbose)*-q[Decrease logging verbosity]' \
'(-v --verbose)*--quiet[Decrease logging verbosity]' \
'--pretty[whether to pretty print events to stdio]' \
'-h[Print help]' \
'--help[Print help]' \
'-V[Print version]' \
'--version[Print version]' \
&& ret=0
;;
(help)
_arguments "${_arguments_options[@]}" : \
":: :_ordinary__subcmd__host__subcmd__accounts__subcmd__access__subcmd__help_commands" \
"*::: :->help" \
&& ret=0
case $state in
(help)
words=($line[1] "${words[@]}")
(( CURRENT += 1 ))
curcontext="${curcontext%:*:*}:ordinary-host-accounts-access-help-command-$line[1]:"
case $line[1] in
(get)
_arguments "${_arguments_options[@]}" : \
&& ret=0
;;
(help)
_arguments "${_arguments_options[@]}" : \
&& ret=0
;;
esac
;;
esac
;;
esac
;;
esac
;;
(password)
_arguments "${_arguments_options[@]}" : \
'*-v[Increase logging verbosity]' \
'*--verbose[Increase logging verbosity]' \
'(-v --verbose)*-q[Decrease logging verbosity]' \
'(-v --verbose)*--quiet[Decrease logging verbosity]' \
'--pretty[whether to pretty print events to stdio]' \
'-h[Print help]' \
'--help[Print help]' \
'-V[Print version]' \
'--version[Print version]' \
":: :_ordinary__subcmd__host__subcmd__accounts__subcmd__password_commands" \
"*::: :->password" \
&& ret=0
case $state in
(password)
words=($line[1] "${words[@]}")
(( CURRENT += 1 ))
curcontext="${curcontext%:*:*}:ordinary-host-accounts-password-command-$line[1]:"
case $line[1] in
(reset)
_arguments "${_arguments_options[@]}" : \
'--password=[existing password]:PASSWORD:_default' \
'--new-password=[new password to be set]:NEW_PASSWORD:_default' \
'--mfa=[6 digit TOTP MFA code]:MFA:_default' \
'*-v[Increase logging verbosity]' \
'*--verbose[Increase logging verbosity]' \
'(-v --verbose)*-q[Decrease logging verbosity]' \
'(-v --verbose)*--quiet[Decrease logging verbosity]' \
'--pretty[whether to pretty print events to stdio]' \
'-h[Print help]' \
'--help[Print help]' \
'-V[Print version]' \
'--version[Print version]' \
&& ret=0
;;
(forgot)
_arguments "${_arguments_options[@]}" : \
'--new-password=[new password to be set]:NEW_PASSWORD:_default' \
'--recovery-code=[11 character recovery code]:RECOVERY_CODE:_default' \
'*-v[Increase logging verbosity]' \
'*--verbose[Increase logging verbosity]' \
'(-v --verbose)*-q[Decrease logging verbosity]' \
'(-v --verbose)*--quiet[Decrease logging verbosity]' \
'--pretty[whether to pretty print events to stdio]' \
'-h[Print help]' \
'--help[Print help]' \
'-V[Print version]' \
'--version[Print version]' \
&& ret=0
;;
(help)
_arguments "${_arguments_options[@]}" : \
":: :_ordinary__subcmd__host__subcmd__accounts__subcmd__password__subcmd__help_commands" \
"*::: :->help" \
&& ret=0
case $state in
(help)
words=($line[1] "${words[@]}")
(( CURRENT += 1 ))
curcontext="${curcontext%:*:*}:ordinary-host-accounts-password-help-command-$line[1]:"
case $line[1] in
(reset)
_arguments "${_arguments_options[@]}" : \
&& ret=0
;;
(forgot)
_arguments "${_arguments_options[@]}" : \
&& ret=0
;;
(help)
_arguments "${_arguments_options[@]}" : \
&& ret=0
;;
esac
;;
esac
;;
esac
;;
esac
;;
(mfa)
_arguments "${_arguments_options[@]}" : \
'*-v[Increase logging verbosity]' \
'*--verbose[Increase logging verbosity]' \
'(-v --verbose)*-q[Decrease logging verbosity]' \
'(-v --verbose)*--quiet[Decrease logging verbosity]' \
'--pretty[whether to pretty print events to stdio]' \
'-h[Print help]' \
'--help[Print help]' \
'-V[Print version]' \
'--version[Print version]' \
":: :_ordinary__subcmd__host__subcmd__accounts__subcmd__mfa_commands" \
"*::: :->mfa" \
&& ret=0
case $state in
(mfa)
words=($line[1] "${words[@]}")
(( CURRENT += 1 ))
curcontext="${curcontext%:*:*}:ordinary-host-accounts-mfa-command-$line[1]:"
case $line[1] in
(reset)
_arguments "${_arguments_options[@]}" : \
'--password=[account password]:PASSWORD:_default' \
'--mfa=[6 digit TOTP MFA code]:MFA:_default' \
'*-v[Increase logging verbosity]' \
'*--verbose[Increase logging verbosity]' \
'(-v --verbose)*-q[Decrease logging verbosity]' \
'(-v --verbose)*--quiet[Decrease logging verbosity]' \
'--pretty[whether to pretty print events to stdio]' \
'-h[Print help]' \
'--help[Print help]' \
'-V[Print version]' \
'--version[Print version]' \
&& ret=0
;;
(lost)
_arguments "${_arguments_options[@]}" : \
'--password=[account password]:PASSWORD:_default' \
'--recovery-code=[11 character recovery code]:RECOVERY_CODE:_default' \
'*-v[Increase logging verbosity]' \
'*--verbose[Increase logging verbosity]' \
'(-v --verbose)*-q[Decrease logging verbosity]' \
'(-v --verbose)*--quiet[Decrease logging verbosity]' \
'--pretty[whether to pretty print events to stdio]' \
'-h[Print help]' \
'--help[Print help]' \
'-V[Print version]' \
'--version[Print version]' \
&& ret=0
;;
(help)
_arguments "${_arguments_options[@]}" : \
":: :_ordinary__subcmd__host__subcmd__accounts__subcmd__mfa__subcmd__help_commands" \
"*::: :->help" \
&& ret=0
case $state in
(help)
words=($line[1] "${words[@]}")
(( CURRENT += 1 ))
curcontext="${curcontext%:*:*}:ordinary-host-accounts-mfa-help-command-$line[1]:"
case $line[1] in
(reset)
_arguments "${_arguments_options[@]}" : \
&& ret=0
;;
(lost)
_arguments "${_arguments_options[@]}" : \
&& ret=0
;;
(help)
_arguments "${_arguments_options[@]}" : \
&& ret=0
;;
esac
;;
esac
;;
esac
;;
esac
;;
(recovery-codes)
_arguments "${_arguments_options[@]}" : \
'*-v[Increase logging verbosity]' \
'*--verbose[Increase logging verbosity]' \
'(-v --verbose)*-q[Decrease logging verbosity]' \
'(-v --verbose)*--quiet[Decrease logging verbosity]' \
'--pretty[whether to pretty print events to stdio]' \
'-h[Print help]' \
'--help[Print help]' \
'-V[Print version]' \
'--version[Print version]' \
":: :_ordinary__subcmd__host__subcmd__accounts__subcmd__recovery-codes_commands" \
"*::: :->recovery-codes" \
&& ret=0
case $state in
(recovery-codes)
words=($line[1] "${words[@]}")
(( CURRENT += 1 ))
curcontext="${curcontext%:*:*}:ordinary-host-accounts-recovery-codes-command-$line[1]:"
case $line[1] in
(reset)
_arguments "${_arguments_options[@]}" : \
'--password=[account password]:PASSWORD:_default' \
'--mfa=[6 digit TOTP MFA code]:MFA:_default' \
'*-v[Increase logging verbosity]' \
'*--verbose[Increase logging verbosity]' \
'(-v --verbose)*-q[Decrease logging verbosity]' \
'(-v --verbose)*--quiet[Decrease logging verbosity]' \
'--pretty[whether to pretty print events to stdio]' \
'-h[Print help]' \
'--help[Print help]' \
'-V[Print version]' \
'--version[Print version]' \
&& ret=0
;;
(help)
_arguments "${_arguments_options[@]}" : \
":: :_ordinary__subcmd__host__subcmd__accounts__subcmd__recovery-codes__subcmd__help_commands" \
"*::: :->help" \
&& ret=0
case $state in
(help)
words=($line[1] "${words[@]}")
(( CURRENT += 1 ))
curcontext="${curcontext%:*:*}:ordinary-host-accounts-recovery-codes-help-command-$line[1]:"
case $line[1] in
(reset)
_arguments "${_arguments_options[@]}" : \
&& ret=0
;;
(help)
_arguments "${_arguments_options[@]}" : \
&& ret=0
;;
esac
;;
esac
;;
esac
;;
esac
;;
(delete)
_arguments "${_arguments_options[@]}" : \
'--password=[password for your existing account]:PASSWORD:_default' \
'--mfa=[6 digit TOTP MFA code]:MFA:_default' \
'*-v[Increase logging verbosity]' \
'*--verbose[Increase logging verbosity]' \
'(-v --verbose)*-q[Decrease logging verbosity]' \
'(-v --verbose)*--quiet[Decrease logging verbosity]' \
'--pretty[whether to pretty print events to stdio]' \
'-h[Print help]' \
'--help[Print help]' \
'-V[Print version]' \
'--version[Print version]' \
':host -- url where `orindaryd` is running:_default' \
':account -- name of your account with the host:_default' \
&& ret=0
;;
(invite)
_arguments "${_arguments_options[@]}" : \
'*-v[Increase logging verbosity]' \
'*--verbose[Increase logging verbosity]' \
'(-v --verbose)*-q[Decrease logging verbosity]' \
'(-v --verbose)*--quiet[Decrease logging verbosity]' \
'--pretty[whether to pretty print events to stdio]' \
'-h[Print help]' \
'--help[Print help]' \
'-V[Print version]' \
'--version[Print version]' \
':account -- name of the account to be invited & registered:_default' \
':domain -- domain for the invited application:_default' \
'*::permissions -- which permissions to include in their set:(admin read write update functions deploy bridge kill erase)' \
&& ret=0
;;
(current)
_arguments "${_arguments_options[@]}" : \
'*-v[Increase logging verbosity]' \
'*--verbose[Increase logging verbosity]' \
'(-v --verbose)*-q[Decrease logging verbosity]' \
'(-v --verbose)*--quiet[Decrease logging verbosity]' \
'--pretty[whether to pretty print events to stdio]' \
'-h[Print help (see more with '\''--help'\'')]' \
'--help[Print help (see more with '\''--help'\'')]' \
'-V[Print version]' \
'--version[Print version]' \
&& ret=0
;;
(list)
_arguments "${_arguments_options[@]}" : \
'*-v[Increase logging verbosity]' \
'*--verbose[Increase logging verbosity]' \
'(-v --verbose)*-q[Decrease logging verbosity]' \
'(-v --verbose)*--quiet[Decrease logging verbosity]' \
'--pretty[whether to pretty print events to stdio]' \
'-h[Print help]' \
'--help[Print help]' \
'-V[Print version]' \
'--version[Print version]' \
&& ret=0
;;
(switch)
_arguments "${_arguments_options[@]}" : \
'*-v[Increase logging verbosity]' \
'*--verbose[Increase logging verbosity]' \
'(-v --verbose)*-q[Decrease logging verbosity]' \
'(-v --verbose)*--quiet[Decrease logging verbosity]' \
'--pretty[whether to pretty print events to stdio]' \
'-h[Print help]' \
'--help[Print help]' \
'-V[Print version]' \
'--version[Print version]' \
':domain -- API domain where `orindaryd` is running:_default' \
':account -- name of the account you'\''d like to switch to:_default' \
&& ret=0
;;
(help)
_arguments "${_arguments_options[@]}" : \
":: :_ordinary__subcmd__host__subcmd__accounts__subcmd__help_commands" \
"*::: :->help" \
&& ret=0
case $state in
(help)
words=($line[1] "${words[@]}")
(( CURRENT += 1 ))
curcontext="${curcontext%:*:*}:ordinary-host-accounts-help-command-$line[1]:"
case $line[1] in
(register)
_arguments "${_arguments_options[@]}" : \
&& ret=0
;;
(login)
_arguments "${_arguments_options[@]}" : \
&& ret=0
;;
(logout)
_arguments "${_arguments_options[@]}" : \
&& ret=0
;;
(access)
_arguments "${_arguments_options[@]}" : \
":: :_ordinary__subcmd__host__subcmd__accounts__subcmd__help__subcmd__access_commands" \
"*::: :->access" \
&& ret=0
case $state in
(access)
words=($line[1] "${words[@]}")
(( CURRENT += 1 ))
curcontext="${curcontext%:*:*}:ordinary-host-accounts-help-access-command-$line[1]:"
case $line[1] in
(get)
_arguments "${_arguments_options[@]}" : \
&& ret=0
;;
esac
;;
esac
;;
(password)
_arguments "${_arguments_options[@]}" : \
":: :_ordinary__subcmd__host__subcmd__accounts__subcmd__help__subcmd__password_commands" \
"*::: :->password" \
&& ret=0
case $state in
(password)
words=($line[1] "${words[@]}")
(( CURRENT += 1 ))
curcontext="${curcontext%:*:*}:ordinary-host-accounts-help-password-command-$line[1]:"
case $line[1] in
(reset)
_arguments "${_arguments_options[@]}" : \
&& ret=0
;;
(forgot)
_arguments "${_arguments_options[@]}" : \
&& ret=0
;;
esac
;;
esac
;;
(mfa)
_arguments "${_arguments_options[@]}" : \
":: :_ordinary__subcmd__host__subcmd__accounts__subcmd__help__subcmd__mfa_commands" \
"*::: :->mfa" \
&& ret=0
case $state in
(mfa)
words=($line[1] "${words[@]}")
(( CURRENT += 1 ))
curcontext="${curcontext%:*:*}:ordinary-host-accounts-help-mfa-command-$line[1]:"
case $line[1] in
(reset)
_arguments "${_arguments_options[@]}" : \
&& ret=0
;;
(lost)
_arguments "${_arguments_options[@]}" : \
&& ret=0
;;
esac
;;
esac
;;
(recovery-codes)
_arguments "${_arguments_options[@]}" : \
":: :_ordinary__subcmd__host__subcmd__accounts__subcmd__help__subcmd__recovery-codes_commands" \
"*::: :->recovery-codes" \
&& ret=0
case $state in
(recovery-codes)
words=($line[1] "${words[@]}")
(( CURRENT += 1 ))
curcontext="${curcontext%:*:*}:ordinary-host-accounts-help-recovery-codes-command-$line[1]:"
case $line[1] in
(reset)
_arguments "${_arguments_options[@]}" : \
&& ret=0
;;
esac
;;
esac
;;
(delete)
_arguments "${_arguments_options[@]}" : \
&& ret=0
;;
(invite)
_arguments "${_arguments_options[@]}" : \
&& ret=0
;;
(current)
_arguments "${_arguments_options[@]}" : \
&& ret=0
;;
(list)
_arguments "${_arguments_options[@]}" : \
&& ret=0
;;
(switch)
_arguments "${_arguments_options[@]}" : \
&& ret=0
;;
(help)
_arguments "${_arguments_options[@]}" : \
&& ret=0
;;
esac
;;
esac
;;
esac
;;
esac
;;
(accts)
_arguments "${_arguments_options[@]}" : \
'*-v[Increase logging verbosity]' \
'*--verbose[Increase logging verbosity]' \
'(-v --verbose)*-q[Decrease logging verbosity]' \
'(-v --verbose)*--quiet[Decrease logging verbosity]' \
'--pretty[whether to pretty print events to stdio]' \
'-h[Print help]' \
'--help[Print help]' \
'-V[Print version]' \
'--version[Print version]' \
":: :_ordinary__subcmd__host__subcmd__accounts_commands" \
"*::: :->accounts" \
&& ret=0
case $state in
(accounts)
words=($line[1] "${words[@]}")
(( CURRENT += 1 ))
curcontext="${curcontext%:*:*}:ordinary-host-accounts-command-$line[1]:"
case $line[1] in
(register)
_arguments "${_arguments_options[@]}" : \
'--password=[password for your new account]:PASSWORD:_default' \
'--invite=[base64 encoded invite token]:INVITE:_default' \
'*-v[Increase logging verbosity]' \
'*--verbose[Increase logging verbosity]' \
'(-v --verbose)*-q[Decrease logging verbosity]' \
'(-v --verbose)*--quiet[Decrease logging verbosity]' \
'--pretty[whether to pretty print events to stdio]' \
'-h[Print help]' \
'--help[Print help]' \
'-V[Print version]' \
'--version[Print version]' \
':host -- url where `orindaryd` is running:_default' \
':account -- name of your account with the host:_default' \
&& ret=0
;;
(login)
_arguments "${_arguments_options[@]}" : \
'--password=[password for your existing account]:PASSWORD:_default' \
'--mfa=[6 digit TOTP MFA code]:MFA:_default' \
'*-v[Increase logging verbosity]' \
'*--verbose[Increase logging verbosity]' \
'(-v --verbose)*-q[Decrease logging verbosity]' \
'(-v --verbose)*--quiet[Decrease logging verbosity]' \
'--pretty[whether to pretty print events to stdio]' \
'-h[Print help]' \
'--help[Print help]' \
'-V[Print version]' \
'--version[Print version]' \
':host -- url where `orindaryd` is running:_default' \
':account -- name of your account with the host:_default' \
&& ret=0
;;
(logout)
_arguments "${_arguments_options[@]}" : \
'*-v[Increase logging verbosity]' \
'*--verbose[Increase logging verbosity]' \
'(-v --verbose)*-q[Decrease logging verbosity]' \
'(-v --verbose)*--quiet[Decrease logging verbosity]' \
'--pretty[whether to pretty print events to stdio]' \
'-h[Print help]' \
'--help[Print help]' \
'-V[Print version]' \
'--version[Print version]' \
&& ret=0
;;
(access)
_arguments "${_arguments_options[@]}" : \
'*-v[Increase logging verbosity]' \
'*--verbose[Increase logging verbosity]' \
'(-v --verbose)*-q[Decrease logging verbosity]' \
'(-v --verbose)*--quiet[Decrease logging verbosity]' \
'--pretty[whether to pretty print events to stdio]' \
'-h[Print help]' \
'--help[Print help]' \
'-V[Print version]' \
'--version[Print version]' \
":: :_ordinary__subcmd__host__subcmd__accounts__subcmd__access_commands" \
"*::: :->access" \
&& ret=0
case $state in
(access)
words=($line[1] "${words[@]}")
(( CURRENT += 1 ))
curcontext="${curcontext%:*:*}:ordinary-host-accounts-access-command-$line[1]:"
case $line[1] in
(get)
_arguments "${_arguments_options[@]}" : \
'-m+[how long the client signature is valid for]:MIN:_default' \
'--min=[how long the client signature is valid for]:MIN:_default' \
'*-v[Increase logging verbosity]' \
'*--verbose[Increase logging verbosity]' \
'(-v --verbose)*-q[Decrease logging verbosity]' \
'(-v --verbose)*--quiet[Decrease logging verbosity]' \
'--pretty[whether to pretty print events to stdio]' \
'-h[Print help]' \
'--help[Print help]' \
'-V[Print version]' \
'--version[Print version]' \
&& ret=0
;;
(help)
_arguments "${_arguments_options[@]}" : \
":: :_ordinary__subcmd__host__subcmd__accounts__subcmd__access__subcmd__help_commands" \
"*::: :->help" \
&& ret=0
case $state in
(help)
words=($line[1] "${words[@]}")
(( CURRENT += 1 ))
curcontext="${curcontext%:*:*}:ordinary-host-accounts-access-help-command-$line[1]:"
case $line[1] in
(get)
_arguments "${_arguments_options[@]}" : \
&& ret=0
;;
(help)
_arguments "${_arguments_options[@]}" : \
&& ret=0
;;
esac
;;
esac
;;
esac
;;
esac
;;
(password)
_arguments "${_arguments_options[@]}" : \
'*-v[Increase logging verbosity]' \
'*--verbose[Increase logging verbosity]' \
'(-v --verbose)*-q[Decrease logging verbosity]' \
'(-v --verbose)*--quiet[Decrease logging verbosity]' \
'--pretty[whether to pretty print events to stdio]' \
'-h[Print help]' \
'--help[Print help]' \
'-V[Print version]' \
'--version[Print version]' \
":: :_ordinary__subcmd__host__subcmd__accounts__subcmd__password_commands" \
"*::: :->password" \
&& ret=0
case $state in
(password)
words=($line[1] "${words[@]}")
(( CURRENT += 1 ))
curcontext="${curcontext%:*:*}:ordinary-host-accounts-password-command-$line[1]:"
case $line[1] in
(reset)
_arguments "${_arguments_options[@]}" : \
'--password=[existing password]:PASSWORD:_default' \
'--new-password=[new password to be set]:NEW_PASSWORD:_default' \
'--mfa=[6 digit TOTP MFA code]:MFA:_default' \
'*-v[Increase logging verbosity]' \
'*--verbose[Increase logging verbosity]' \
'(-v --verbose)*-q[Decrease logging verbosity]' \
'(-v --verbose)*--quiet[Decrease logging verbosity]' \
'--pretty[whether to pretty print events to stdio]' \
'-h[Print help]' \
'--help[Print help]' \
'-V[Print version]' \
'--version[Print version]' \
&& ret=0
;;
(forgot)
_arguments "${_arguments_options[@]}" : \
'--new-password=[new password to be set]:NEW_PASSWORD:_default' \
'--recovery-code=[11 character recovery code]:RECOVERY_CODE:_default' \
'*-v[Increase logging verbosity]' \
'*--verbose[Increase logging verbosity]' \
'(-v --verbose)*-q[Decrease logging verbosity]' \
'(-v --verbose)*--quiet[Decrease logging verbosity]' \
'--pretty[whether to pretty print events to stdio]' \
'-h[Print help]' \
'--help[Print help]' \
'-V[Print version]' \
'--version[Print version]' \
&& ret=0
;;
(help)
_arguments "${_arguments_options[@]}" : \
":: :_ordinary__subcmd__host__subcmd__accounts__subcmd__password__subcmd__help_commands" \
"*::: :->help" \
&& ret=0
case $state in
(help)
words=($line[1] "${words[@]}")
(( CURRENT += 1 ))
curcontext="${curcontext%:*:*}:ordinary-host-accounts-password-help-command-$line[1]:"
case $line[1] in
(reset)
_arguments "${_arguments_options[@]}" : \
&& ret=0
;;
(forgot)
_arguments "${_arguments_options[@]}" : \
&& ret=0
;;
(help)
_arguments "${_arguments_options[@]}" : \
&& ret=0
;;
esac
;;
esac
;;
esac
;;
esac
;;
(mfa)
_arguments "${_arguments_options[@]}" : \
'*-v[Increase logging verbosity]' \
'*--verbose[Increase logging verbosity]' \
'(-v --verbose)*-q[Decrease logging verbosity]' \
'(-v --verbose)*--quiet[Decrease logging verbosity]' \
'--pretty[whether to pretty print events to stdio]' \
'-h[Print help]' \
'--help[Print help]' \
'-V[Print version]' \
'--version[Print version]' \
":: :_ordinary__subcmd__host__subcmd__accounts__subcmd__mfa_commands" \
"*::: :->mfa" \
&& ret=0
case $state in
(mfa)
words=($line[1] "${words[@]}")
(( CURRENT += 1 ))
curcontext="${curcontext%:*:*}:ordinary-host-accounts-mfa-command-$line[1]:"
case $line[1] in
(reset)
_arguments "${_arguments_options[@]}" : \
'--password=[account password]:PASSWORD:_default' \
'--mfa=[6 digit TOTP MFA code]:MFA:_default' \
'*-v[Increase logging verbosity]' \
'*--verbose[Increase logging verbosity]' \
'(-v --verbose)*-q[Decrease logging verbosity]' \
'(-v --verbose)*--quiet[Decrease logging verbosity]' \
'--pretty[whether to pretty print events to stdio]' \
'-h[Print help]' \
'--help[Print help]' \
'-V[Print version]' \
'--version[Print version]' \
&& ret=0
;;
(lost)
_arguments "${_arguments_options[@]}" : \
'--password=[account password]:PASSWORD:_default' \
'--recovery-code=[11 character recovery code]:RECOVERY_CODE:_default' \
'*-v[Increase logging verbosity]' \
'*--verbose[Increase logging verbosity]' \
'(-v --verbose)*-q[Decrease logging verbosity]' \
'(-v --verbose)*--quiet[Decrease logging verbosity]' \
'--pretty[whether to pretty print events to stdio]' \
'-h[Print help]' \
'--help[Print help]' \
'-V[Print version]' \
'--version[Print version]' \
&& ret=0
;;
(help)
_arguments "${_arguments_options[@]}" : \
":: :_ordinary__subcmd__host__subcmd__accounts__subcmd__mfa__subcmd__help_commands" \
"*::: :->help" \
&& ret=0
case $state in
(help)
words=($line[1] "${words[@]}")
(( CURRENT += 1 ))
curcontext="${curcontext%:*:*}:ordinary-host-accounts-mfa-help-command-$line[1]:"
case $line[1] in
(reset)
_arguments "${_arguments_options[@]}" : \
&& ret=0
;;
(lost)
_arguments "${_arguments_options[@]}" : \
&& ret=0
;;
(help)
_arguments "${_arguments_options[@]}" : \
&& ret=0
;;
esac
;;
esac
;;
esac
;;
esac
;;
(recovery-codes)
_arguments "${_arguments_options[@]}" : \
'*-v[Increase logging verbosity]' \
'*--verbose[Increase logging verbosity]' \
'(-v --verbose)*-q[Decrease logging verbosity]' \
'(-v --verbose)*--quiet[Decrease logging verbosity]' \
'--pretty[whether to pretty print events to stdio]' \
'-h[Print help]' \
'--help[Print help]' \
'-V[Print version]' \
'--version[Print version]' \
":: :_ordinary__subcmd__host__subcmd__accounts__subcmd__recovery-codes_commands" \
"*::: :->recovery-codes" \
&& ret=0
case $state in
(recovery-codes)
words=($line[1] "${words[@]}")
(( CURRENT += 1 ))
curcontext="${curcontext%:*:*}:ordinary-host-accounts-recovery-codes-command-$line[1]:"
case $line[1] in
(reset)
_arguments "${_arguments_options[@]}" : \
'--password=[account password]:PASSWORD:_default' \
'--mfa=[6 digit TOTP MFA code]:MFA:_default' \
'*-v[Increase logging verbosity]' \
'*--verbose[Increase logging verbosity]' \
'(-v --verbose)*-q[Decrease logging verbosity]' \
'(-v --verbose)*--quiet[Decrease logging verbosity]' \
'--pretty[whether to pretty print events to stdio]' \
'-h[Print help]' \
'--help[Print help]' \
'-V[Print version]' \
'--version[Print version]' \
&& ret=0
;;
(help)
_arguments "${_arguments_options[@]}" : \
":: :_ordinary__subcmd__host__subcmd__accounts__subcmd__recovery-codes__subcmd__help_commands" \
"*::: :->help" \
&& ret=0
case $state in
(help)
words=($line[1] "${words[@]}")
(( CURRENT += 1 ))
curcontext="${curcontext%:*:*}:ordinary-host-accounts-recovery-codes-help-command-$line[1]:"
case $line[1] in
(reset)
_arguments "${_arguments_options[@]}" : \
&& ret=0
;;
(help)
_arguments "${_arguments_options[@]}" : \
&& ret=0
;;
esac
;;
esac
;;
esac
;;
esac
;;
(delete)
_arguments "${_arguments_options[@]}" : \
'--password=[password for your existing account]:PASSWORD:_default' \
'--mfa=[6 digit TOTP MFA code]:MFA:_default' \
'*-v[Increase logging verbosity]' \
'*--verbose[Increase logging verbosity]' \
'(-v --verbose)*-q[Decrease logging verbosity]' \
'(-v --verbose)*--quiet[Decrease logging verbosity]' \
'--pretty[whether to pretty print events to stdio]' \
'-h[Print help]' \
'--help[Print help]' \
'-V[Print version]' \
'--version[Print version]' \
':host -- url where `orindaryd` is running:_default' \
':account -- name of your account with the host:_default' \
&& ret=0
;;
(invite)
_arguments "${_arguments_options[@]}" : \
'*-v[Increase logging verbosity]' \
'*--verbose[Increase logging verbosity]' \
'(-v --verbose)*-q[Decrease logging verbosity]' \
'(-v --verbose)*--quiet[Decrease logging verbosity]' \
'--pretty[whether to pretty print events to stdio]' \
'-h[Print help]' \
'--help[Print help]' \
'-V[Print version]' \
'--version[Print version]' \
':account -- name of the account to be invited & registered:_default' \
':domain -- domain for the invited application:_default' \
'*::permissions -- which permissions to include in their set:(admin read write update functions deploy bridge kill erase)' \
&& ret=0
;;
(current)
_arguments "${_arguments_options[@]}" : \
'*-v[Increase logging verbosity]' \
'*--verbose[Increase logging verbosity]' \
'(-v --verbose)*-q[Decrease logging verbosity]' \
'(-v --verbose)*--quiet[Decrease logging verbosity]' \
'--pretty[whether to pretty print events to stdio]' \
'-h[Print help (see more with '\''--help'\'')]' \
'--help[Print help (see more with '\''--help'\'')]' \
'-V[Print version]' \
'--version[Print version]' \
&& ret=0
;;
(list)
_arguments "${_arguments_options[@]}" : \
'*-v[Increase logging verbosity]' \
'*--verbose[Increase logging verbosity]' \
'(-v --verbose)*-q[Decrease logging verbosity]' \
'(-v --verbose)*--quiet[Decrease logging verbosity]' \
'--pretty[whether to pretty print events to stdio]' \
'-h[Print help]' \
'--help[Print help]' \
'-V[Print version]' \
'--version[Print version]' \
&& ret=0
;;
(switch)
_arguments "${_arguments_options[@]}" : \
'*-v[Increase logging verbosity]' \
'*--verbose[Increase logging verbosity]' \
'(-v --verbose)*-q[Decrease logging verbosity]' \
'(-v --verbose)*--quiet[Decrease logging verbosity]' \
'--pretty[whether to pretty print events to stdio]' \
'-h[Print help]' \
'--help[Print help]' \
'-V[Print version]' \
'--version[Print version]' \
':domain -- API domain where `orindaryd` is running:_default' \
':account -- name of the account you'\''d like to switch to:_default' \
&& ret=0
;;
(help)
_arguments "${_arguments_options[@]}" : \
":: :_ordinary__subcmd__host__subcmd__accounts__subcmd__help_commands" \
"*::: :->help" \
&& ret=0
case $state in
(help)
words=($line[1] "${words[@]}")
(( CURRENT += 1 ))
curcontext="${curcontext%:*:*}:ordinary-host-accounts-help-command-$line[1]:"
case $line[1] in
(register)
_arguments "${_arguments_options[@]}" : \
&& ret=0
;;
(login)
_arguments "${_arguments_options[@]}" : \
&& ret=0
;;
(logout)
_arguments "${_arguments_options[@]}" : \
&& ret=0
;;
(access)
_arguments "${_arguments_options[@]}" : \
":: :_ordinary__subcmd__host__subcmd__accounts__subcmd__help__subcmd__access_commands" \
"*::: :->access" \
&& ret=0
case $state in
(access)
words=($line[1] "${words[@]}")
(( CURRENT += 1 ))
curcontext="${curcontext%:*:*}:ordinary-host-accounts-help-access-command-$line[1]:"
case $line[1] in
(get)
_arguments "${_arguments_options[@]}" : \
&& ret=0
;;
esac
;;
esac
;;
(password)
_arguments "${_arguments_options[@]}" : \
":: :_ordinary__subcmd__host__subcmd__accounts__subcmd__help__subcmd__password_commands" \
"*::: :->password" \
&& ret=0
case $state in
(password)
words=($line[1] "${words[@]}")
(( CURRENT += 1 ))
curcontext="${curcontext%:*:*}:ordinary-host-accounts-help-password-command-$line[1]:"
case $line[1] in
(reset)
_arguments "${_arguments_options[@]}" : \
&& ret=0
;;
(forgot)
_arguments "${_arguments_options[@]}" : \
&& ret=0
;;
esac
;;
esac
;;
(mfa)
_arguments "${_arguments_options[@]}" : \
":: :_ordinary__subcmd__host__subcmd__accounts__subcmd__help__subcmd__mfa_commands" \
"*::: :->mfa" \
&& ret=0
case $state in
(mfa)
words=($line[1] "${words[@]}")
(( CURRENT += 1 ))
curcontext="${curcontext%:*:*}:ordinary-host-accounts-help-mfa-command-$line[1]:"
case $line[1] in
(reset)
_arguments "${_arguments_options[@]}" : \
&& ret=0
;;
(lost)
_arguments "${_arguments_options[@]}" : \
&& ret=0
;;
esac
;;
esac
;;
(recovery-codes)
_arguments "${_arguments_options[@]}" : \
":: :_ordinary__subcmd__host__subcmd__accounts__subcmd__help__subcmd__recovery-codes_commands" \
"*::: :->recovery-codes" \
&& ret=0
case $state in
(recovery-codes)
words=($line[1] "${words[@]}")
(( CURRENT += 1 ))
curcontext="${curcontext%:*:*}:ordinary-host-accounts-help-recovery-codes-command-$line[1]:"
case $line[1] in
(reset)
_arguments "${_arguments_options[@]}" : \
&& ret=0
;;
esac
;;
esac
;;
(delete)
_arguments "${_arguments_options[@]}" : \
&& ret=0
;;
(invite)
_arguments "${_arguments_options[@]}" : \
&& ret=0
;;
(current)
_arguments "${_arguments_options[@]}" : \
&& ret=0
;;
(list)
_arguments "${_arguments_options[@]}" : \
&& ret=0
;;
(switch)
_arguments "${_arguments_options[@]}" : \
&& ret=0
;;
(help)
_arguments "${_arguments_options[@]}" : \
&& ret=0
;;
esac
;;
esac
;;
esac
;;
esac
;;
(acct)
_arguments "${_arguments_options[@]}" : \
'*-v[Increase logging verbosity]' \
'*--verbose[Increase logging verbosity]' \
'(-v --verbose)*-q[Decrease logging verbosity]' \
'(-v --verbose)*--quiet[Decrease logging verbosity]' \
'--pretty[whether to pretty print events to stdio]' \
'-h[Print help]' \
'--help[Print help]' \
'-V[Print version]' \
'--version[Print version]' \
":: :_ordinary__subcmd__host__subcmd__accounts_commands" \
"*::: :->accounts" \
&& ret=0
case $state in
(accounts)
words=($line[1] "${words[@]}")
(( CURRENT += 1 ))
curcontext="${curcontext%:*:*}:ordinary-host-accounts-command-$line[1]:"
case $line[1] in
(register)
_arguments "${_arguments_options[@]}" : \
'--password=[password for your new account]:PASSWORD:_default' \
'--invite=[base64 encoded invite token]:INVITE:_default' \
'*-v[Increase logging verbosity]' \
'*--verbose[Increase logging verbosity]' \
'(-v --verbose)*-q[Decrease logging verbosity]' \
'(-v --verbose)*--quiet[Decrease logging verbosity]' \
'--pretty[whether to pretty print events to stdio]' \
'-h[Print help]' \
'--help[Print help]' \
'-V[Print version]' \
'--version[Print version]' \
':host -- url where `orindaryd` is running:_default' \
':account -- name of your account with the host:_default' \
&& ret=0
;;
(login)
_arguments "${_arguments_options[@]}" : \
'--password=[password for your existing account]:PASSWORD:_default' \
'--mfa=[6 digit TOTP MFA code]:MFA:_default' \
'*-v[Increase logging verbosity]' \
'*--verbose[Increase logging verbosity]' \
'(-v --verbose)*-q[Decrease logging verbosity]' \
'(-v --verbose)*--quiet[Decrease logging verbosity]' \
'--pretty[whether to pretty print events to stdio]' \
'-h[Print help]' \
'--help[Print help]' \
'-V[Print version]' \
'--version[Print version]' \
':host -- url where `orindaryd` is running:_default' \
':account -- name of your account with the host:_default' \
&& ret=0
;;
(logout)
_arguments "${_arguments_options[@]}" : \
'*-v[Increase logging verbosity]' \
'*--verbose[Increase logging verbosity]' \
'(-v --verbose)*-q[Decrease logging verbosity]' \
'(-v --verbose)*--quiet[Decrease logging verbosity]' \
'--pretty[whether to pretty print events to stdio]' \
'-h[Print help]' \
'--help[Print help]' \
'-V[Print version]' \
'--version[Print version]' \
&& ret=0
;;
(access)
_arguments "${_arguments_options[@]}" : \
'*-v[Increase logging verbosity]' \
'*--verbose[Increase logging verbosity]' \
'(-v --verbose)*-q[Decrease logging verbosity]' \
'(-v --verbose)*--quiet[Decrease logging verbosity]' \
'--pretty[whether to pretty print events to stdio]' \
'-h[Print help]' \
'--help[Print help]' \
'-V[Print version]' \
'--version[Print version]' \
":: :_ordinary__subcmd__host__subcmd__accounts__subcmd__access_commands" \
"*::: :->access" \
&& ret=0
case $state in
(access)
words=($line[1] "${words[@]}")
(( CURRENT += 1 ))
curcontext="${curcontext%:*:*}:ordinary-host-accounts-access-command-$line[1]:"
case $line[1] in
(get)
_arguments "${_arguments_options[@]}" : \
'-m+[how long the client signature is valid for]:MIN:_default' \
'--min=[how long the client signature is valid for]:MIN:_default' \
'*-v[Increase logging verbosity]' \
'*--verbose[Increase logging verbosity]' \
'(-v --verbose)*-q[Decrease logging verbosity]' \
'(-v --verbose)*--quiet[Decrease logging verbosity]' \
'--pretty[whether to pretty print events to stdio]' \
'-h[Print help]' \
'--help[Print help]' \
'-V[Print version]' \
'--version[Print version]' \
&& ret=0
;;
(help)
_arguments "${_arguments_options[@]}" : \
":: :_ordinary__subcmd__host__subcmd__accounts__subcmd__access__subcmd__help_commands" \
"*::: :->help" \
&& ret=0
case $state in
(help)
words=($line[1] "${words[@]}")
(( CURRENT += 1 ))
curcontext="${curcontext%:*:*}:ordinary-host-accounts-access-help-command-$line[1]:"
case $line[1] in
(get)
_arguments "${_arguments_options[@]}" : \
&& ret=0
;;
(help)
_arguments "${_arguments_options[@]}" : \
&& ret=0
;;
esac
;;
esac
;;
esac
;;
esac
;;
(password)
_arguments "${_arguments_options[@]}" : \
'*-v[Increase logging verbosity]' \
'*--verbose[Increase logging verbosity]' \
'(-v --verbose)*-q[Decrease logging verbosity]' \
'(-v --verbose)*--quiet[Decrease logging verbosity]' \
'--pretty[whether to pretty print events to stdio]' \
'-h[Print help]' \
'--help[Print help]' \
'-V[Print version]' \
'--version[Print version]' \
":: :_ordinary__subcmd__host__subcmd__accounts__subcmd__password_commands" \
"*::: :->password" \
&& ret=0
case $state in
(password)
words=($line[1] "${words[@]}")
(( CURRENT += 1 ))
curcontext="${curcontext%:*:*}:ordinary-host-accounts-password-command-$line[1]:"
case $line[1] in
(reset)
_arguments "${_arguments_options[@]}" : \
'--password=[existing password]:PASSWORD:_default' \
'--new-password=[new password to be set]:NEW_PASSWORD:_default' \
'--mfa=[6 digit TOTP MFA code]:MFA:_default' \
'*-v[Increase logging verbosity]' \
'*--verbose[Increase logging verbosity]' \
'(-v --verbose)*-q[Decrease logging verbosity]' \
'(-v --verbose)*--quiet[Decrease logging verbosity]' \
'--pretty[whether to pretty print events to stdio]' \
'-h[Print help]' \
'--help[Print help]' \
'-V[Print version]' \
'--version[Print version]' \
&& ret=0
;;
(forgot)
_arguments "${_arguments_options[@]}" : \
'--new-password=[new password to be set]:NEW_PASSWORD:_default' \
'--recovery-code=[11 character recovery code]:RECOVERY_CODE:_default' \
'*-v[Increase logging verbosity]' \
'*--verbose[Increase logging verbosity]' \
'(-v --verbose)*-q[Decrease logging verbosity]' \
'(-v --verbose)*--quiet[Decrease logging verbosity]' \
'--pretty[whether to pretty print events to stdio]' \
'-h[Print help]' \
'--help[Print help]' \
'-V[Print version]' \
'--version[Print version]' \
&& ret=0
;;
(help)
_arguments "${_arguments_options[@]}" : \
":: :_ordinary__subcmd__host__subcmd__accounts__subcmd__password__subcmd__help_commands" \
"*::: :->help" \
&& ret=0
case $state in
(help)
words=($line[1] "${words[@]}")
(( CURRENT += 1 ))
curcontext="${curcontext%:*:*}:ordinary-host-accounts-password-help-command-$line[1]:"
case $line[1] in
(reset)
_arguments "${_arguments_options[@]}" : \
&& ret=0
;;
(forgot)
_arguments "${_arguments_options[@]}" : \
&& ret=0
;;
(help)
_arguments "${_arguments_options[@]}" : \
&& ret=0
;;
esac
;;
esac
;;
esac
;;
esac
;;
(mfa)
_arguments "${_arguments_options[@]}" : \
'*-v[Increase logging verbosity]' \
'*--verbose[Increase logging verbosity]' \
'(-v --verbose)*-q[Decrease logging verbosity]' \
'(-v --verbose)*--quiet[Decrease logging verbosity]' \
'--pretty[whether to pretty print events to stdio]' \
'-h[Print help]' \
'--help[Print help]' \
'-V[Print version]' \
'--version[Print version]' \
":: :_ordinary__subcmd__host__subcmd__accounts__subcmd__mfa_commands" \
"*::: :->mfa" \
&& ret=0
case $state in
(mfa)
words=($line[1] "${words[@]}")
(( CURRENT += 1 ))
curcontext="${curcontext%:*:*}:ordinary-host-accounts-mfa-command-$line[1]:"
case $line[1] in
(reset)
_arguments "${_arguments_options[@]}" : \
'--password=[account password]:PASSWORD:_default' \
'--mfa=[6 digit TOTP MFA code]:MFA:_default' \
'*-v[Increase logging verbosity]' \
'*--verbose[Increase logging verbosity]' \
'(-v --verbose)*-q[Decrease logging verbosity]' \
'(-v --verbose)*--quiet[Decrease logging verbosity]' \
'--pretty[whether to pretty print events to stdio]' \
'-h[Print help]' \
'--help[Print help]' \
'-V[Print version]' \
'--version[Print version]' \
&& ret=0
;;
(lost)
_arguments "${_arguments_options[@]}" : \
'--password=[account password]:PASSWORD:_default' \
'--recovery-code=[11 character recovery code]:RECOVERY_CODE:_default' \
'*-v[Increase logging verbosity]' \
'*--verbose[Increase logging verbosity]' \
'(-v --verbose)*-q[Decrease logging verbosity]' \
'(-v --verbose)*--quiet[Decrease logging verbosity]' \
'--pretty[whether to pretty print events to stdio]' \
'-h[Print help]' \
'--help[Print help]' \
'-V[Print version]' \
'--version[Print version]' \
&& ret=0
;;
(help)
_arguments "${_arguments_options[@]}" : \
":: :_ordinary__subcmd__host__subcmd__accounts__subcmd__mfa__subcmd__help_commands" \
"*::: :->help" \
&& ret=0
case $state in
(help)
words=($line[1] "${words[@]}")
(( CURRENT += 1 ))
curcontext="${curcontext%:*:*}:ordinary-host-accounts-mfa-help-command-$line[1]:"
case $line[1] in
(reset)
_arguments "${_arguments_options[@]}" : \
&& ret=0
;;
(lost)
_arguments "${_arguments_options[@]}" : \
&& ret=0
;;
(help)
_arguments "${_arguments_options[@]}" : \
&& ret=0
;;
esac
;;
esac
;;
esac
;;
esac
;;
(recovery-codes)
_arguments "${_arguments_options[@]}" : \
'*-v[Increase logging verbosity]' \
'*--verbose[Increase logging verbosity]' \
'(-v --verbose)*-q[Decrease logging verbosity]' \
'(-v --verbose)*--quiet[Decrease logging verbosity]' \
'--pretty[whether to pretty print events to stdio]' \
'-h[Print help]' \
'--help[Print help]' \
'-V[Print version]' \
'--version[Print version]' \
":: :_ordinary__subcmd__host__subcmd__accounts__subcmd__recovery-codes_commands" \
"*::: :->recovery-codes" \
&& ret=0
case $state in
(recovery-codes)
words=($line[1] "${words[@]}")
(( CURRENT += 1 ))
curcontext="${curcontext%:*:*}:ordinary-host-accounts-recovery-codes-command-$line[1]:"
case $line[1] in
(reset)
_arguments "${_arguments_options[@]}" : \
'--password=[account password]:PASSWORD:_default' \
'--mfa=[6 digit TOTP MFA code]:MFA:_default' \
'*-v[Increase logging verbosity]' \
'*--verbose[Increase logging verbosity]' \
'(-v --verbose)*-q[Decrease logging verbosity]' \
'(-v --verbose)*--quiet[Decrease logging verbosity]' \
'--pretty[whether to pretty print events to stdio]' \
'-h[Print help]' \
'--help[Print help]' \
'-V[Print version]' \
'--version[Print version]' \
&& ret=0
;;
(help)
_arguments "${_arguments_options[@]}" : \
":: :_ordinary__subcmd__host__subcmd__accounts__subcmd__recovery-codes__subcmd__help_commands" \
"*::: :->help" \
&& ret=0
case $state in
(help)
words=($line[1] "${words[@]}")
(( CURRENT += 1 ))
curcontext="${curcontext%:*:*}:ordinary-host-accounts-recovery-codes-help-command-$line[1]:"
case $line[1] in
(reset)
_arguments "${_arguments_options[@]}" : \
&& ret=0
;;
(help)
_arguments "${_arguments_options[@]}" : \
&& ret=0
;;
esac
;;
esac
;;
esac
;;
esac
;;
(delete)
_arguments "${_arguments_options[@]}" : \
'--password=[password for your existing account]:PASSWORD:_default' \
'--mfa=[6 digit TOTP MFA code]:MFA:_default' \
'*-v[Increase logging verbosity]' \
'*--verbose[Increase logging verbosity]' \
'(-v --verbose)*-q[Decrease logging verbosity]' \
'(-v --verbose)*--quiet[Decrease logging verbosity]' \
'--pretty[whether to pretty print events to stdio]' \
'-h[Print help]' \
'--help[Print help]' \
'-V[Print version]' \
'--version[Print version]' \
':host -- url where `orindaryd` is running:_default' \
':account -- name of your account with the host:_default' \
&& ret=0
;;
(invite)
_arguments "${_arguments_options[@]}" : \
'*-v[Increase logging verbosity]' \
'*--verbose[Increase logging verbosity]' \
'(-v --verbose)*-q[Decrease logging verbosity]' \
'(-v --verbose)*--quiet[Decrease logging verbosity]' \
'--pretty[whether to pretty print events to stdio]' \
'-h[Print help]' \
'--help[Print help]' \
'-V[Print version]' \
'--version[Print version]' \
':account -- name of the account to be invited & registered:_default' \
':domain -- domain for the invited application:_default' \
'*::permissions -- which permissions to include in their set:(admin read write update functions deploy bridge kill erase)' \
&& ret=0
;;
(current)
_arguments "${_arguments_options[@]}" : \
'*-v[Increase logging verbosity]' \
'*--verbose[Increase logging verbosity]' \
'(-v --verbose)*-q[Decrease logging verbosity]' \
'(-v --verbose)*--quiet[Decrease logging verbosity]' \
'--pretty[whether to pretty print events to stdio]' \
'-h[Print help (see more with '\''--help'\'')]' \
'--help[Print help (see more with '\''--help'\'')]' \
'-V[Print version]' \
'--version[Print version]' \
&& ret=0
;;
(list)
_arguments "${_arguments_options[@]}" : \
'*-v[Increase logging verbosity]' \
'*--verbose[Increase logging verbosity]' \
'(-v --verbose)*-q[Decrease logging verbosity]' \
'(-v --verbose)*--quiet[Decrease logging verbosity]' \
'--pretty[whether to pretty print events to stdio]' \
'-h[Print help]' \
'--help[Print help]' \
'-V[Print version]' \
'--version[Print version]' \
&& ret=0
;;
(switch)
_arguments "${_arguments_options[@]}" : \
'*-v[Increase logging verbosity]' \
'*--verbose[Increase logging verbosity]' \
'(-v --verbose)*-q[Decrease logging verbosity]' \
'(-v --verbose)*--quiet[Decrease logging verbosity]' \
'--pretty[whether to pretty print events to stdio]' \
'-h[Print help]' \
'--help[Print help]' \
'-V[Print version]' \
'--version[Print version]' \
':domain -- API domain where `orindaryd` is running:_default' \
':account -- name of the account you'\''d like to switch to:_default' \
&& ret=0
;;
(help)
_arguments "${_arguments_options[@]}" : \
":: :_ordinary__subcmd__host__subcmd__accounts__subcmd__help_commands" \
"*::: :->help" \
&& ret=0
case $state in
(help)
words=($line[1] "${words[@]}")
(( CURRENT += 1 ))
curcontext="${curcontext%:*:*}:ordinary-host-accounts-help-command-$line[1]:"
case $line[1] in
(register)
_arguments "${_arguments_options[@]}" : \
&& ret=0
;;
(login)
_arguments "${_arguments_options[@]}" : \
&& ret=0
;;
(logout)
_arguments "${_arguments_options[@]}" : \
&& ret=0
;;
(access)
_arguments "${_arguments_options[@]}" : \
":: :_ordinary__subcmd__host__subcmd__accounts__subcmd__help__subcmd__access_commands" \
"*::: :->access" \
&& ret=0
case $state in
(access)
words=($line[1] "${words[@]}")
(( CURRENT += 1 ))
curcontext="${curcontext%:*:*}:ordinary-host-accounts-help-access-command-$line[1]:"
case $line[1] in
(get)
_arguments "${_arguments_options[@]}" : \
&& ret=0
;;
esac
;;
esac
;;
(password)
_arguments "${_arguments_options[@]}" : \
":: :_ordinary__subcmd__host__subcmd__accounts__subcmd__help__subcmd__password_commands" \
"*::: :->password" \
&& ret=0
case $state in
(password)
words=($line[1] "${words[@]}")
(( CURRENT += 1 ))
curcontext="${curcontext%:*:*}:ordinary-host-accounts-help-password-command-$line[1]:"
case $line[1] in
(reset)
_arguments "${_arguments_options[@]}" : \
&& ret=0
;;
(forgot)
_arguments "${_arguments_options[@]}" : \
&& ret=0
;;
esac
;;
esac
;;
(mfa)
_arguments "${_arguments_options[@]}" : \
":: :_ordinary__subcmd__host__subcmd__accounts__subcmd__help__subcmd__mfa_commands" \
"*::: :->mfa" \
&& ret=0
case $state in
(mfa)
words=($line[1] "${words[@]}")
(( CURRENT += 1 ))
curcontext="${curcontext%:*:*}:ordinary-host-accounts-help-mfa-command-$line[1]:"
case $line[1] in
(reset)
_arguments "${_arguments_options[@]}" : \
&& ret=0
;;
(lost)
_arguments "${_arguments_options[@]}" : \
&& ret=0
;;
esac
;;
esac
;;
(recovery-codes)
_arguments "${_arguments_options[@]}" : \
":: :_ordinary__subcmd__host__subcmd__accounts__subcmd__help__subcmd__recovery-codes_commands" \
"*::: :->recovery-codes" \
&& ret=0
case $state in
(recovery-codes)
words=($line[1] "${words[@]}")
(( CURRENT += 1 ))
curcontext="${curcontext%:*:*}:ordinary-host-accounts-help-recovery-codes-command-$line[1]:"
case $line[1] in
(reset)
_arguments "${_arguments_options[@]}" : \
&& ret=0
;;
esac
;;
esac
;;
(delete)
_arguments "${_arguments_options[@]}" : \
&& ret=0
;;
(invite)
_arguments "${_arguments_options[@]}" : \
&& ret=0
;;
(current)
_arguments "${_arguments_options[@]}" : \
&& ret=0
;;
(list)
_arguments "${_arguments_options[@]}" : \
&& ret=0
;;
(switch)
_arguments "${_arguments_options[@]}" : \
&& ret=0
;;
(help)
_arguments "${_arguments_options[@]}" : \
&& ret=0
;;
esac
;;
esac
;;
esac
;;
esac
;;
(moderation)
_arguments "${_arguments_options[@]}" : \
'*-v[Increase logging verbosity]' \
'*--verbose[Increase logging verbosity]' \
'(-v --verbose)*-q[Decrease logging verbosity]' \
'(-v --verbose)*--quiet[Decrease logging verbosity]' \
'--pretty[whether to pretty print events to stdio]' \
'-h[Print help]' \
'--help[Print help]' \
'-V[Print version]' \
'--version[Print version]' \
":: :_ordinary__subcmd__host__subcmd__moderation_commands" \
"*::: :->moderation" \
&& ret=0
case $state in
(moderation)
words=($line[1] "${words[@]}")
(( CURRENT += 1 ))
curcontext="${curcontext%:*:*}:ordinary-host-moderation-command-$line[1]:"
case $line[1] in
(lock)
_arguments "${_arguments_options[@]}" : \
'-a+[account to be locked]:ACCOUNT:_default' \
'--account=[account to be locked]:ACCOUNT:_default' \
'*-v[Increase logging verbosity]' \
'*--verbose[Increase logging verbosity]' \
'(-v --verbose)*-q[Decrease logging verbosity]' \
'(-v --verbose)*--quiet[Decrease logging verbosity]' \
'--pretty[whether to pretty print events to stdio]' \
'-h[Print help]' \
'--help[Print help]' \
'-V[Print version]' \
'--version[Print version]' \
&& ret=0
;;
(unlock)
_arguments "${_arguments_options[@]}" : \
'-a+[account to be unlocked]:ACCOUNT:_default' \
'--account=[account to be unlocked]:ACCOUNT:_default' \
'*-v[Increase logging verbosity]' \
'*--verbose[Increase logging verbosity]' \
'(-v --verbose)*-q[Decrease logging verbosity]' \
'(-v --verbose)*--quiet[Decrease logging verbosity]' \
'--pretty[whether to pretty print events to stdio]' \
'-h[Print help]' \
'--help[Print help]' \
'-V[Print version]' \
'--version[Print version]' \
&& ret=0
;;
(help)
_arguments "${_arguments_options[@]}" : \
":: :_ordinary__subcmd__host__subcmd__moderation__subcmd__help_commands" \
"*::: :->help" \
&& ret=0
case $state in
(help)
words=($line[1] "${words[@]}")
(( CURRENT += 1 ))
curcontext="${curcontext%:*:*}:ordinary-host-moderation-help-command-$line[1]:"
case $line[1] in
(lock)
_arguments "${_arguments_options[@]}" : \
&& ret=0
;;
(unlock)
_arguments "${_arguments_options[@]}" : \
&& ret=0
;;
(help)
_arguments "${_arguments_options[@]}" : \
&& ret=0
;;
esac
;;
esac
;;
esac
;;
esac
;;
(help)
_arguments "${_arguments_options[@]}" : \
":: :_ordinary__subcmd__host__subcmd__help_commands" \
"*::: :->help" \
&& ret=0
case $state in
(help)
words=($line[1] "${words[@]}")
(( CURRENT += 1 ))
curcontext="${curcontext%:*:*}:ordinary-host-help-command-$line[1]:"
case $line[1] in
(info)
_arguments "${_arguments_options[@]}" : \
&& ret=0
;;
(metrics)
_arguments "${_arguments_options[@]}" : \
&& ret=0
;;
(logs)
_arguments "${_arguments_options[@]}" : \
":: :_ordinary__subcmd__host__subcmd__help__subcmd__logs_commands" \
"*::: :->logs" \
&& ret=0
case $state in
(logs)
words=($line[1] "${words[@]}")
(( CURRENT += 1 ))
curcontext="${curcontext%:*:*}:ordinary-host-help-logs-command-$line[1]:"
case $line[1] in
(sync)
_arguments "${_arguments_options[@]}" : \
":: :_ordinary__subcmd__host__subcmd__help__subcmd__logs__subcmd__sync_commands" \
"*::: :->sync" \
&& ret=0
case $state in
(sync)
words=($line[1] "${words[@]}")
(( CURRENT += 1 ))
curcontext="${curcontext%:*:*}:ordinary-host-help-logs-sync-command-$line[1]:"
case $line[1] in
(info)
_arguments "${_arguments_options[@]}" : \
&& ret=0
;;
(file)
_arguments "${_arguments_options[@]}" : \
&& ret=0
;;
(all)
_arguments "${_arguments_options[@]}" : \
&& ret=0
;;
esac
;;
esac
;;
(list)
_arguments "${_arguments_options[@]}" : \
&& ret=0
;;
(read)
_arguments "${_arguments_options[@]}" : \
&& ret=0
;;
(query)
_arguments "${_arguments_options[@]}" : \
&& ret=0
;;
(search)
_arguments "${_arguments_options[@]}" : \
&& ret=0
;;
esac
;;
esac
;;
(accounts)
_arguments "${_arguments_options[@]}" : \
":: :_ordinary__subcmd__host__subcmd__help__subcmd__accounts_commands" \
"*::: :->accounts" \
&& ret=0
case $state in
(accounts)
words=($line[1] "${words[@]}")
(( CURRENT += 1 ))
curcontext="${curcontext%:*:*}:ordinary-host-help-accounts-command-$line[1]:"
case $line[1] in
(register)
_arguments "${_arguments_options[@]}" : \
&& ret=0
;;
(login)
_arguments "${_arguments_options[@]}" : \
&& ret=0
;;
(logout)
_arguments "${_arguments_options[@]}" : \
&& ret=0
;;
(access)
_arguments "${_arguments_options[@]}" : \
":: :_ordinary__subcmd__host__subcmd__help__subcmd__accounts__subcmd__access_commands" \
"*::: :->access" \
&& ret=0
case $state in
(access)
words=($line[1] "${words[@]}")
(( CURRENT += 1 ))
curcontext="${curcontext%:*:*}:ordinary-host-help-accounts-access-command-$line[1]:"
case $line[1] in
(get)
_arguments "${_arguments_options[@]}" : \
&& ret=0
;;
esac
;;
esac
;;
(password)
_arguments "${_arguments_options[@]}" : \
":: :_ordinary__subcmd__host__subcmd__help__subcmd__accounts__subcmd__password_commands" \
"*::: :->password" \
&& ret=0
case $state in
(password)
words=($line[1] "${words[@]}")
(( CURRENT += 1 ))
curcontext="${curcontext%:*:*}:ordinary-host-help-accounts-password-command-$line[1]:"
case $line[1] in
(reset)
_arguments "${_arguments_options[@]}" : \
&& ret=0
;;
(forgot)
_arguments "${_arguments_options[@]}" : \
&& ret=0
;;
esac
;;
esac
;;
(mfa)
_arguments "${_arguments_options[@]}" : \
":: :_ordinary__subcmd__host__subcmd__help__subcmd__accounts__subcmd__mfa_commands" \
"*::: :->mfa" \
&& ret=0
case $state in
(mfa)
words=($line[1] "${words[@]}")
(( CURRENT += 1 ))
curcontext="${curcontext%:*:*}:ordinary-host-help-accounts-mfa-command-$line[1]:"
case $line[1] in
(reset)
_arguments "${_arguments_options[@]}" : \
&& ret=0
;;
(lost)
_arguments "${_arguments_options[@]}" : \
&& ret=0
;;
esac
;;
esac
;;
(recovery-codes)
_arguments "${_arguments_options[@]}" : \
":: :_ordinary__subcmd__host__subcmd__help__subcmd__accounts__subcmd__recovery-codes_commands" \
"*::: :->recovery-codes" \
&& ret=0
case $state in
(recovery-codes)
words=($line[1] "${words[@]}")
(( CURRENT += 1 ))
curcontext="${curcontext%:*:*}:ordinary-host-help-accounts-recovery-codes-command-$line[1]:"
case $line[1] in
(reset)
_arguments "${_arguments_options[@]}" : \
&& ret=0
;;
esac
;;
esac
;;
(delete)
_arguments "${_arguments_options[@]}" : \
&& ret=0
;;
(invite)
_arguments "${_arguments_options[@]}" : \
&& ret=0
;;
(current)
_arguments "${_arguments_options[@]}" : \
&& ret=0
;;
(list)
_arguments "${_arguments_options[@]}" : \
&& ret=0
;;
(switch)
_arguments "${_arguments_options[@]}" : \
&& ret=0
;;
esac
;;
esac
;;
(moderation)
_arguments "${_arguments_options[@]}" : \
":: :_ordinary__subcmd__host__subcmd__help__subcmd__moderation_commands" \
"*::: :->moderation" \
&& ret=0
case $state in
(moderation)
words=($line[1] "${words[@]}")
(( CURRENT += 1 ))
curcontext="${curcontext%:*:*}:ordinary-host-help-moderation-command-$line[1]:"
case $line[1] in
(lock)
_arguments "${_arguments_options[@]}" : \
&& ret=0
;;
(unlock)
_arguments "${_arguments_options[@]}" : \
&& ret=0
;;
esac
;;
esac
;;
(help)
_arguments "${_arguments_options[@]}" : \
&& ret=0
;;
esac
;;
esac
;;
esac
;;
esac
;;
(doctor)
_arguments "${_arguments_options[@]}" : \
'*-f+[auto fix installs]:FIX:(all rust wasm c go js exiftool)' \
'*--fix=[auto fix installs]:FIX:(all rust wasm c go js exiftool)' \
'*-v[Increase logging verbosity]' \
'*--verbose[Increase logging verbosity]' \
'(-v --verbose)*-q[Decrease logging verbosity]' \
'(-v --verbose)*--quiet[Decrease logging verbosity]' \
'--pretty[whether to pretty print events to stdio]' \
'-h[Print help]' \
'--help[Print help]' \
'-V[Print version]' \
'--version[Print version]' \
&& ret=0
;;
(dr)
_arguments "${_arguments_options[@]}" : \
'*-f+[auto fix installs]:FIX:(all rust wasm c go js exiftool)' \
'*--fix=[auto fix installs]:FIX:(all rust wasm c go js exiftool)' \
'*-v[Increase logging verbosity]' \
'*--verbose[Increase logging verbosity]' \
'(-v --verbose)*-q[Decrease logging verbosity]' \
'(-v --verbose)*--quiet[Decrease logging verbosity]' \
'--pretty[whether to pretty print events to stdio]' \
'-h[Print help]' \
'--help[Print help]' \
'-V[Print version]' \
'--version[Print version]' \
&& ret=0
;;
(utils)
_arguments "${_arguments_options[@]}" : \
'*-v[Increase logging verbosity]' \
'*--verbose[Increase logging verbosity]' \
'(-v --verbose)*-q[Decrease logging verbosity]' \
'(-v --verbose)*--quiet[Decrease logging verbosity]' \
'--pretty[whether to pretty print events to stdio]' \
'-h[Print help]' \
'--help[Print help]' \
'-V[Print version]' \
'--version[Print version]' \
":: :_ordinary__subcmd__utils_commands" \
"*::: :->utils" \
&& ret=0
case $state in
(utils)
words=($line[1] "${words[@]}")
(( CURRENT += 1 ))
curcontext="${curcontext%:*:*}:ordinary-utils-command-$line[1]:"
case $line[1] in
(uuid)
_arguments "${_arguments_options[@]}" : \
'--v=[uuid version]:V:(4)' \
'*-v[Increase logging verbosity]' \
'*--verbose[Increase logging verbosity]' \
'(-v --verbose)*-q[Decrease logging verbosity]' \
'(-v --verbose)*--quiet[Decrease logging verbosity]' \
'--pretty[whether to pretty print events to stdio]' \
'-h[Print help]' \
'--help[Print help]' \
'-V[Print version]' \
'--version[Print version]' \
&& ret=0
;;
(timestamp)
_arguments "${_arguments_options[@]}" : \
'-u+[unit of time]:UNIT:(seconds millis micros nanos)' \
'--unit=[unit of time]:UNIT:(seconds millis micros nanos)' \
'-f+[formatting (uses \`time\` crate <https\://time-rs.github.io/book/api/format-description.html>)]:FMT:_default' \
'--fmt=[formatting (uses \`time\` crate <https\://time-rs.github.io/book/api/format-description.html>)]:FMT:_default' \
'*-v[Increase logging verbosity]' \
'*--verbose[Increase logging verbosity]' \
'(-v --verbose)*-q[Decrease logging verbosity]' \
'(-v --verbose)*--quiet[Decrease logging verbosity]' \
'--pretty[whether to pretty print events to stdio]' \
'-h[Print help (see more with '\''--help'\'')]' \
'--help[Print help (see more with '\''--help'\'')]' \
'-V[Print version]' \
'--version[Print version]' \
&& ret=0
;;
(ts)
_arguments "${_arguments_options[@]}" : \
'-u+[unit of time]:UNIT:(seconds millis micros nanos)' \
'--unit=[unit of time]:UNIT:(seconds millis micros nanos)' \
'-f+[formatting (uses \`time\` crate <https\://time-rs.github.io/book/api/format-description.html>)]:FMT:_default' \
'--fmt=[formatting (uses \`time\` crate <https\://time-rs.github.io/book/api/format-description.html>)]:FMT:_default' \
'*-v[Increase logging verbosity]' \
'*--verbose[Increase logging verbosity]' \
'(-v --verbose)*-q[Decrease logging verbosity]' \
'(-v --verbose)*--quiet[Decrease logging verbosity]' \
'--pretty[whether to pretty print events to stdio]' \
'-h[Print help (see more with '\''--help'\'')]' \
'--help[Print help (see more with '\''--help'\'')]' \
'-V[Print version]' \
'--version[Print version]' \
&& ret=0
;;
(html)
_arguments "${_arguments_options[@]}" : \
'*-v[Increase logging verbosity]' \
'*--verbose[Increase logging verbosity]' \
'(-v --verbose)*-q[Decrease logging verbosity]' \
'(-v --verbose)*--quiet[Decrease logging verbosity]' \
'--pretty[whether to pretty print events to stdio]' \
'-h[Print help]' \
'--help[Print help]' \
'-V[Print version]' \
'--version[Print version]' \
":: :_ordinary__subcmd__utils__subcmd__html_commands" \
"*::: :->html" \
&& ret=0
case $state in
(html)
words=($line[1] "${words[@]}")
(( CURRENT += 1 ))
curcontext="${curcontext%:*:*}:ordinary-utils-html-command-$line[1]:"
case $line[1] in
(minify)
_arguments "${_arguments_options[@]}" : \
'-o+[destination file for output]:OUT:_files' \
'--out=[destination file for output]:OUT:_files' \
'-i[whether it should overwrite the existing file]' \
'--in-place[whether it should overwrite the existing file]' \
'*-v[Increase logging verbosity]' \
'*--verbose[Increase logging verbosity]' \
'(-v --verbose)*-q[Decrease logging verbosity]' \
'(-v --verbose)*--quiet[Decrease logging verbosity]' \
'--pretty[whether to pretty print events to stdio]' \
'-h[Print help]' \
'--help[Print help]' \
'-V[Print version]' \
'--version[Print version]' \
':path -- path to the HTML file:_files' \
&& ret=0
;;
(min)
_arguments "${_arguments_options[@]}" : \
'-o+[destination file for output]:OUT:_files' \
'--out=[destination file for output]:OUT:_files' \
'-i[whether it should overwrite the existing file]' \
'--in-place[whether it should overwrite the existing file]' \
'*-v[Increase logging verbosity]' \
'*--verbose[Increase logging verbosity]' \
'(-v --verbose)*-q[Decrease logging verbosity]' \
'(-v --verbose)*--quiet[Decrease logging verbosity]' \
'--pretty[whether to pretty print events to stdio]' \
'-h[Print help]' \
'--help[Print help]' \
'-V[Print version]' \
'--version[Print version]' \
':path -- path to the HTML file:_files' \
&& ret=0
;;
(csp-hashes)
_arguments "${_arguments_options[@]}" : \
'*-v[Increase logging verbosity]' \
'*--verbose[Increase logging verbosity]' \
'(-v --verbose)*-q[Decrease logging verbosity]' \
'(-v --verbose)*--quiet[Decrease logging verbosity]' \
'--pretty[whether to pretty print events to stdio]' \
'-h[Print help]' \
'--help[Print help]' \
'-V[Print version]' \
'--version[Print version]' \
':path -- path to the HTML file:_files' \
&& ret=0
;;
(help)
_arguments "${_arguments_options[@]}" : \
":: :_ordinary__subcmd__utils__subcmd__html__subcmd__help_commands" \
"*::: :->help" \
&& ret=0
case $state in
(help)
words=($line[1] "${words[@]}")
(( CURRENT += 1 ))
curcontext="${curcontext%:*:*}:ordinary-utils-html-help-command-$line[1]:"
case $line[1] in
(minify)
_arguments "${_arguments_options[@]}" : \
&& ret=0
;;
(csp-hashes)
_arguments "${_arguments_options[@]}" : \
&& ret=0
;;
(help)
_arguments "${_arguments_options[@]}" : \
&& ret=0
;;
esac
;;
esac
;;
esac
;;
esac
;;
(css)
_arguments "${_arguments_options[@]}" : \
'*-v[Increase logging verbosity]' \
'*--verbose[Increase logging verbosity]' \
'(-v --verbose)*-q[Decrease logging verbosity]' \
'(-v --verbose)*--quiet[Decrease logging verbosity]' \
'--pretty[whether to pretty print events to stdio]' \
'-h[Print help]' \
'--help[Print help]' \
'-V[Print version]' \
'--version[Print version]' \
":: :_ordinary__subcmd__utils__subcmd__css_commands" \
"*::: :->css" \
&& ret=0
case $state in
(css)
words=($line[1] "${words[@]}")
(( CURRENT += 1 ))
curcontext="${curcontext%:*:*}:ordinary-utils-css-command-$line[1]:"
case $line[1] in
(minify)
_arguments "${_arguments_options[@]}" : \
'-o+[destination file for output]:OUT:_files' \
'--out=[destination file for output]:OUT:_files' \
'-i[whether it should overwrite the existing file]' \
'--in-place[whether it should overwrite the existing file]' \
'*-v[Increase logging verbosity]' \
'*--verbose[Increase logging verbosity]' \
'(-v --verbose)*-q[Decrease logging verbosity]' \
'(-v --verbose)*--quiet[Decrease logging verbosity]' \
'--pretty[whether to pretty print events to stdio]' \
'-h[Print help]' \
'--help[Print help]' \
'-V[Print version]' \
'--version[Print version]' \
':path -- path to the CSS file:_files' \
&& ret=0
;;
(min)
_arguments "${_arguments_options[@]}" : \
'-o+[destination file for output]:OUT:_files' \
'--out=[destination file for output]:OUT:_files' \
'-i[whether it should overwrite the existing file]' \
'--in-place[whether it should overwrite the existing file]' \
'*-v[Increase logging verbosity]' \
'*--verbose[Increase logging verbosity]' \
'(-v --verbose)*-q[Decrease logging verbosity]' \
'(-v --verbose)*--quiet[Decrease logging verbosity]' \
'--pretty[whether to pretty print events to stdio]' \
'-h[Print help]' \
'--help[Print help]' \
'-V[Print version]' \
'--version[Print version]' \
':path -- path to the CSS file:_files' \
&& ret=0
;;
(help)
_arguments "${_arguments_options[@]}" : \
":: :_ordinary__subcmd__utils__subcmd__css__subcmd__help_commands" \
"*::: :->help" \
&& ret=0
case $state in
(help)
words=($line[1] "${words[@]}")
(( CURRENT += 1 ))
curcontext="${curcontext%:*:*}:ordinary-utils-css-help-command-$line[1]:"
case $line[1] in
(minify)
_arguments "${_arguments_options[@]}" : \
&& ret=0
;;
(help)
_arguments "${_arguments_options[@]}" : \
&& ret=0
;;
esac
;;
esac
;;
esac
;;
esac
;;
(js)
_arguments "${_arguments_options[@]}" : \
'*-v[Increase logging verbosity]' \
'*--verbose[Increase logging verbosity]' \
'(-v --verbose)*-q[Decrease logging verbosity]' \
'(-v --verbose)*--quiet[Decrease logging verbosity]' \
'--pretty[whether to pretty print events to stdio]' \
'-h[Print help]' \
'--help[Print help]' \
'-V[Print version]' \
'--version[Print version]' \
":: :_ordinary__subcmd__utils__subcmd__js_commands" \
"*::: :->js" \
&& ret=0
case $state in
(js)
words=($line[1] "${words[@]}")
(( CURRENT += 1 ))
curcontext="${curcontext%:*:*}:ordinary-utils-js-command-$line[1]:"
case $line[1] in
(minify)
_arguments "${_arguments_options[@]}" : \
'-o+[destination file for output]:OUT:_files' \
'--out=[destination file for output]:OUT:_files' \
'-i[whether it should overwrite the existing file]' \
'--in-place[whether it should overwrite the existing file]' \
'*-v[Increase logging verbosity]' \
'*--verbose[Increase logging verbosity]' \
'(-v --verbose)*-q[Decrease logging verbosity]' \
'(-v --verbose)*--quiet[Decrease logging verbosity]' \
'--pretty[whether to pretty print events to stdio]' \
'-h[Print help]' \
'--help[Print help]' \
'-V[Print version]' \
'--version[Print version]' \
':path -- path to the JavaScript file:_files' \
&& ret=0
;;
(min)
_arguments "${_arguments_options[@]}" : \
'-o+[destination file for output]:OUT:_files' \
'--out=[destination file for output]:OUT:_files' \
'-i[whether it should overwrite the existing file]' \
'--in-place[whether it should overwrite the existing file]' \
'*-v[Increase logging verbosity]' \
'*--verbose[Increase logging verbosity]' \
'(-v --verbose)*-q[Decrease logging verbosity]' \
'(-v --verbose)*--quiet[Decrease logging verbosity]' \
'--pretty[whether to pretty print events to stdio]' \
'-h[Print help]' \
'--help[Print help]' \
'-V[Print version]' \
'--version[Print version]' \
':path -- path to the JavaScript file:_files' \
&& ret=0
;;
(help)
_arguments "${_arguments_options[@]}" : \
":: :_ordinary__subcmd__utils__subcmd__js__subcmd__help_commands" \
"*::: :->help" \
&& ret=0
case $state in
(help)
words=($line[1] "${words[@]}")
(( CURRENT += 1 ))
curcontext="${curcontext%:*:*}:ordinary-utils-js-help-command-$line[1]:"
case $line[1] in
(minify)
_arguments "${_arguments_options[@]}" : \
&& ret=0
;;
(help)
_arguments "${_arguments_options[@]}" : \
&& ret=0
;;
esac
;;
esac
;;
esac
;;
esac
;;
(markdown)
_arguments "${_arguments_options[@]}" : \
'*-v[Increase logging verbosity]' \
'*--verbose[Increase logging verbosity]' \
'(-v --verbose)*-q[Decrease logging verbosity]' \
'(-v --verbose)*--quiet[Decrease logging verbosity]' \
'--pretty[whether to pretty print events to stdio]' \
'-h[Print help]' \
'--help[Print help]' \
'-V[Print version]' \
'--version[Print version]' \
":: :_ordinary__subcmd__utils__subcmd__markdown_commands" \
"*::: :->markdown" \
&& ret=0
case $state in
(markdown)
words=($line[1] "${words[@]}")
(( CURRENT += 1 ))
curcontext="${curcontext%:*:*}:ordinary-utils-markdown-command-$line[1]:"
case $line[1] in
(to-html)
_arguments "${_arguments_options[@]}" : \
'-s[if \`true\` escape all HTML in the Markdown file]' \
'--safe[if \`true\` escape all HTML in the Markdown file]' \
'*-v[Increase logging verbosity]' \
'*--verbose[Increase logging verbosity]' \
'(-v --verbose)*-q[Decrease logging verbosity]' \
'(-v --verbose)*--quiet[Decrease logging verbosity]' \
'--pretty[whether to pretty print events to stdio]' \
'-h[Print help]' \
'--help[Print help]' \
'-V[Print version]' \
'--version[Print version]' \
':path -- path to the Markdown file:_files' \
&& ret=0
;;
(help)
_arguments "${_arguments_options[@]}" : \
":: :_ordinary__subcmd__utils__subcmd__markdown__subcmd__help_commands" \
"*::: :->help" \
&& ret=0
case $state in
(help)
words=($line[1] "${words[@]}")
(( CURRENT += 1 ))
curcontext="${curcontext%:*:*}:ordinary-utils-markdown-help-command-$line[1]:"
case $line[1] in
(to-html)
_arguments "${_arguments_options[@]}" : \
&& ret=0
;;
(help)
_arguments "${_arguments_options[@]}" : \
&& ret=0
;;
esac
;;
esac
;;
esac
;;
esac
;;
(md)
_arguments "${_arguments_options[@]}" : \
'*-v[Increase logging verbosity]' \
'*--verbose[Increase logging verbosity]' \
'(-v --verbose)*-q[Decrease logging verbosity]' \
'(-v --verbose)*--quiet[Decrease logging verbosity]' \
'--pretty[whether to pretty print events to stdio]' \
'-h[Print help]' \
'--help[Print help]' \
'-V[Print version]' \
'--version[Print version]' \
":: :_ordinary__subcmd__utils__subcmd__markdown_commands" \
"*::: :->markdown" \
&& ret=0
case $state in
(markdown)
words=($line[1] "${words[@]}")
(( CURRENT += 1 ))
curcontext="${curcontext%:*:*}:ordinary-utils-markdown-command-$line[1]:"
case $line[1] in
(to-html)
_arguments "${_arguments_options[@]}" : \
'-s[if \`true\` escape all HTML in the Markdown file]' \
'--safe[if \`true\` escape all HTML in the Markdown file]' \
'*-v[Increase logging verbosity]' \
'*--verbose[Increase logging verbosity]' \
'(-v --verbose)*-q[Decrease logging verbosity]' \
'(-v --verbose)*--quiet[Decrease logging verbosity]' \
'--pretty[whether to pretty print events to stdio]' \
'-h[Print help]' \
'--help[Print help]' \
'-V[Print version]' \
'--version[Print version]' \
':path -- path to the Markdown file:_files' \
&& ret=0
;;
(help)
_arguments "${_arguments_options[@]}" : \
":: :_ordinary__subcmd__utils__subcmd__markdown__subcmd__help_commands" \
"*::: :->help" \
&& ret=0
case $state in
(help)
words=($line[1] "${words[@]}")
(( CURRENT += 1 ))
curcontext="${curcontext%:*:*}:ordinary-utils-markdown-help-command-$line[1]:"
case $line[1] in
(to-html)
_arguments "${_arguments_options[@]}" : \
&& ret=0
;;
(help)
_arguments "${_arguments_options[@]}" : \
&& ret=0
;;
esac
;;
esac
;;
esac
;;
esac
;;
(exif)
_arguments "${_arguments_options[@]}" : \
'*-v[Increase logging verbosity]' \
'*--verbose[Increase logging verbosity]' \
'(-v --verbose)*-q[Decrease logging verbosity]' \
'(-v --verbose)*--quiet[Decrease logging verbosity]' \
'--pretty[whether to pretty print events to stdio]' \
'-h[Print help]' \
'--help[Print help]' \
'-V[Print version]' \
'--version[Print version]' \
":: :_ordinary__subcmd__utils__subcmd__exif_commands" \
"*::: :->exif" \
&& ret=0
case $state in
(exif)
words=($line[1] "${words[@]}")
(( CURRENT += 1 ))
curcontext="${curcontext%:*:*}:ordinary-utils-exif-command-$line[1]:"
case $line[1] in
(tool)
_arguments "${_arguments_options[@]}" : \
'*-v[Increase logging verbosity]' \
'*--verbose[Increase logging verbosity]' \
'(-v --verbose)*-q[Decrease logging verbosity]' \
'(-v --verbose)*--quiet[Decrease logging verbosity]' \
'--pretty[whether to pretty print events to stdio]' \
'-h[Print help]' \
'--help[Print help]' \
'-V[Print version]' \
'--version[Print version]' \
'*::args -- `exiftool` args\: <https\://exiftool.org/exiftool_pod.html>:_default' \
&& ret=0
;;
(help)
_arguments "${_arguments_options[@]}" : \
":: :_ordinary__subcmd__utils__subcmd__exif__subcmd__help_commands" \
"*::: :->help" \
&& ret=0
case $state in
(help)
words=($line[1] "${words[@]}")
(( CURRENT += 1 ))
curcontext="${curcontext%:*:*}:ordinary-utils-exif-help-command-$line[1]:"
case $line[1] in
(tool)
_arguments "${_arguments_options[@]}" : \
&& ret=0
;;
(help)
_arguments "${_arguments_options[@]}" : \
&& ret=0
;;
esac
;;
esac
;;
esac
;;
esac
;;
(qr-code)
_arguments "${_arguments_options[@]}" : \
'-o+[where the file should be saved]:OUT:_files' \
'--out=[where the file should be saved]:OUT:_files' \
'--fmt=[format of the output file]:FMT:(svg)' \
'--dark[will make the background black and code color white]' \
'*-v[Increase logging verbosity]' \
'*--verbose[Increase logging verbosity]' \
'(-v --verbose)*-q[Decrease logging verbosity]' \
'(-v --verbose)*--quiet[Decrease logging verbosity]' \
'--pretty[whether to pretty print events to stdio]' \
'-h[Print help (see more with '\''--help'\'')]' \
'--help[Print help (see more with '\''--help'\'')]' \
'-V[Print version]' \
'--version[Print version]' \
':url -- URL the QR code will represent:_default' \
&& ret=0
;;
(qr)
_arguments "${_arguments_options[@]}" : \
'-o+[where the file should be saved]:OUT:_files' \
'--out=[where the file should be saved]:OUT:_files' \
'--fmt=[format of the output file]:FMT:(svg)' \
'--dark[will make the background black and code color white]' \
'*-v[Increase logging verbosity]' \
'*--verbose[Increase logging verbosity]' \
'(-v --verbose)*-q[Decrease logging verbosity]' \
'(-v --verbose)*--quiet[Decrease logging verbosity]' \
'--pretty[whether to pretty print events to stdio]' \
'-h[Print help (see more with '\''--help'\'')]' \
'--help[Print help (see more with '\''--help'\'')]' \
'-V[Print version]' \
'--version[Print version]' \
':url -- URL the QR code will represent:_default' \
&& ret=0
;;
(help)
_arguments "${_arguments_options[@]}" : \
":: :_ordinary__subcmd__utils__subcmd__help_commands" \
"*::: :->help" \
&& ret=0
case $state in
(help)
words=($line[1] "${words[@]}")
(( CURRENT += 1 ))
curcontext="${curcontext%:*:*}:ordinary-utils-help-command-$line[1]:"
case $line[1] in
(uuid)
_arguments "${_arguments_options[@]}" : \
&& ret=0
;;
(timestamp)
_arguments "${_arguments_options[@]}" : \
&& ret=0
;;
(html)
_arguments "${_arguments_options[@]}" : \
":: :_ordinary__subcmd__utils__subcmd__help__subcmd__html_commands" \
"*::: :->html" \
&& ret=0
case $state in
(html)
words=($line[1] "${words[@]}")
(( CURRENT += 1 ))
curcontext="${curcontext%:*:*}:ordinary-utils-help-html-command-$line[1]:"
case $line[1] in
(minify)
_arguments "${_arguments_options[@]}" : \
&& ret=0
;;
(csp-hashes)
_arguments "${_arguments_options[@]}" : \
&& ret=0
;;
esac
;;
esac
;;
(css)
_arguments "${_arguments_options[@]}" : \
":: :_ordinary__subcmd__utils__subcmd__help__subcmd__css_commands" \
"*::: :->css" \
&& ret=0
case $state in
(css)
words=($line[1] "${words[@]}")
(( CURRENT += 1 ))
curcontext="${curcontext%:*:*}:ordinary-utils-help-css-command-$line[1]:"
case $line[1] in
(minify)
_arguments "${_arguments_options[@]}" : \
&& ret=0
;;
esac
;;
esac
;;
(js)
_arguments "${_arguments_options[@]}" : \
":: :_ordinary__subcmd__utils__subcmd__help__subcmd__js_commands" \
"*::: :->js" \
&& ret=0
case $state in
(js)
words=($line[1] "${words[@]}")
(( CURRENT += 1 ))
curcontext="${curcontext%:*:*}:ordinary-utils-help-js-command-$line[1]:"
case $line[1] in
(minify)
_arguments "${_arguments_options[@]}" : \
&& ret=0
;;
esac
;;
esac
;;
(markdown)
_arguments "${_arguments_options[@]}" : \
":: :_ordinary__subcmd__utils__subcmd__help__subcmd__markdown_commands" \
"*::: :->markdown" \
&& ret=0
case $state in
(markdown)
words=($line[1] "${words[@]}")
(( CURRENT += 1 ))
curcontext="${curcontext%:*:*}:ordinary-utils-help-markdown-command-$line[1]:"
case $line[1] in
(to-html)
_arguments "${_arguments_options[@]}" : \
&& ret=0
;;
esac
;;
esac
;;
(exif)
_arguments "${_arguments_options[@]}" : \
":: :_ordinary__subcmd__utils__subcmd__help__subcmd__exif_commands" \
"*::: :->exif" \
&& ret=0
case $state in
(exif)
words=($line[1] "${words[@]}")
(( CURRENT += 1 ))
curcontext="${curcontext%:*:*}:ordinary-utils-help-exif-command-$line[1]:"
case $line[1] in
(tool)
_arguments "${_arguments_options[@]}" : \
&& ret=0
;;
esac
;;
esac
;;
(qr-code)
_arguments "${_arguments_options[@]}" : \
&& ret=0
;;
(help)
_arguments "${_arguments_options[@]}" : \
&& ret=0
;;
esac
;;
esac
;;
esac
;;
esac
;;
(help)
_arguments "${_arguments_options[@]}" : \
":: :_ordinary__subcmd__help_commands" \
"*::: :->help" \
&& ret=0
case $state in
(help)
words=($line[1] "${words[@]}")
(( CURRENT += 1 ))
curcontext="${curcontext%:*:*}:ordinary-help-command-$line[1]:"
case $line[1] in
(app)
_arguments "${_arguments_options[@]}" : \
":: :_ordinary__subcmd__help__subcmd__app_commands" \
"*::: :->app" \
&& ret=0
case $state in
(app)
words=($line[1] "${words[@]}")
(( CURRENT += 1 ))
curcontext="${curcontext%:*:*}:ordinary-help-app-command-$line[1]:"
case $line[1] in
(new)
_arguments "${_arguments_options[@]}" : \
&& ret=0
;;
(build)
_arguments "${_arguments_options[@]}" : \
&& ret=0
;;
(start)
_arguments "${_arguments_options[@]}" : \
&& ret=0
;;
(publish)
_arguments "${_arguments_options[@]}" : \
&& ret=0
;;
(deploy)
_arguments "${_arguments_options[@]}" : \
&& ret=0
;;
(kill)
_arguments "${_arguments_options[@]}" : \
&& ret=0
;;
(restart)
_arguments "${_arguments_options[@]}" : \
&& ret=0
;;
(erase)
_arguments "${_arguments_options[@]}" : \
&& ret=0
;;
(logs)
_arguments "${_arguments_options[@]}" : \
":: :_ordinary__subcmd__help__subcmd__app__subcmd__logs_commands" \
"*::: :->logs" \
&& ret=0
case $state in
(logs)
words=($line[1] "${words[@]}")
(( CURRENT += 1 ))
curcontext="${curcontext%:*:*}:ordinary-help-app-logs-command-$line[1]:"
case $line[1] in
(sync)
_arguments "${_arguments_options[@]}" : \
":: :_ordinary__subcmd__help__subcmd__app__subcmd__logs__subcmd__sync_commands" \
"*::: :->sync" \
&& ret=0
case $state in
(sync)
words=($line[1] "${words[@]}")
(( CURRENT += 1 ))
curcontext="${curcontext%:*:*}:ordinary-help-app-logs-sync-command-$line[1]:"
case $line[1] in
(info)
_arguments "${_arguments_options[@]}" : \
&& ret=0
;;
(file)
_arguments "${_arguments_options[@]}" : \
&& ret=0
;;
(all)
_arguments "${_arguments_options[@]}" : \
&& ret=0
;;
esac
;;
esac
;;
(list)
_arguments "${_arguments_options[@]}" : \
&& ret=0
;;
(read)
_arguments "${_arguments_options[@]}" : \
&& ret=0
;;
(query)
_arguments "${_arguments_options[@]}" : \
&& ret=0
;;
(search)
_arguments "${_arguments_options[@]}" : \
&& ret=0
;;
esac
;;
esac
;;
(assets)
_arguments "${_arguments_options[@]}" : \
":: :_ordinary__subcmd__help__subcmd__app__subcmd__assets_commands" \
"*::: :->assets" \
&& ret=0
case $state in
(assets)
words=($line[1] "${words[@]}")
(( CURRENT += 1 ))
curcontext="${curcontext%:*:*}:ordinary-help-app-assets-command-$line[1]:"
case $line[1] in
(write)
_arguments "${_arguments_options[@]}" : \
&& ret=0
;;
(prune)
_arguments "${_arguments_options[@]}" : \
&& ret=0
;;
(delete)
_arguments "${_arguments_options[@]}" : \
&& ret=0
;;
esac
;;
esac
;;
(accounts)
_arguments "${_arguments_options[@]}" : \
":: :_ordinary__subcmd__help__subcmd__app__subcmd__accounts_commands" \
"*::: :->accounts" \
&& ret=0
case $state in
(accounts)
words=($line[1] "${words[@]}")
(( CURRENT += 1 ))
curcontext="${curcontext%:*:*}:ordinary-help-app-accounts-command-$line[1]:"
case $line[1] in
(list)
_arguments "${_arguments_options[@]}" : \
&& ret=0
;;
esac
;;
esac
;;
(functions)
_arguments "${_arguments_options[@]}" : \
":: :_ordinary__subcmd__help__subcmd__app__subcmd__functions_commands" \
"*::: :->functions" \
&& ret=0
case $state in
(functions)
words=($line[1] "${words[@]}")
(( CURRENT += 1 ))
curcontext="${curcontext%:*:*}:ordinary-help-app-functions-command-$line[1]:"
case $line[1] in
(add)
_arguments "${_arguments_options[@]}" : \
&& ret=0
;;
(build)
_arguments "${_arguments_options[@]}" : \
&& ret=0
;;
(upload)
_arguments "${_arguments_options[@]}" : \
&& ret=0
;;
esac
;;
esac
;;
(database)
_arguments "${_arguments_options[@]}" : \
":: :_ordinary__subcmd__help__subcmd__app__subcmd__database_commands" \
"*::: :->database" \
&& ret=0
case $state in
(database)
words=($line[1] "${words[@]}")
(( CURRENT += 1 ))
curcontext="${curcontext%:*:*}:ordinary-help-app-database-command-$line[1]:"
case $line[1] in
(seed)
_arguments "${_arguments_options[@]}" : \
&& ret=0
;;
(models)
_arguments "${_arguments_options[@]}" : \
":: :_ordinary__subcmd__help__subcmd__app__subcmd__database__subcmd__models_commands" \
"*::: :->models" \
&& ret=0
case $state in
(models)
words=($line[1] "${words[@]}")
(( CURRENT += 1 ))
curcontext="${curcontext%:*:*}:ordinary-help-app-database-models-command-$line[1]:"
case $line[1] in
(add)
_arguments "${_arguments_options[@]}" : \
&& ret=0
;;
esac
;;
esac
;;
(items)
_arguments "${_arguments_options[@]}" : \
":: :_ordinary__subcmd__help__subcmd__app__subcmd__database__subcmd__items_commands" \
"*::: :->items" \
&& ret=0
case $state in
(items)
words=($line[1] "${words[@]}")
(( CURRENT += 1 ))
curcontext="${curcontext%:*:*}:ordinary-help-app-database-items-command-$line[1]:"
case $line[1] in
(list)
_arguments "${_arguments_options[@]}" : \
&& ret=0
;;
esac
;;
esac
;;
esac
;;
esac
;;
(secrets)
_arguments "${_arguments_options[@]}" : \
":: :_ordinary__subcmd__help__subcmd__app__subcmd__secrets_commands" \
"*::: :->secrets" \
&& ret=0
case $state in
(secrets)
words=($line[1] "${words[@]}")
(( CURRENT += 1 ))
curcontext="${curcontext%:*:*}:ordinary-help-app-secrets-command-$line[1]:"
case $line[1] in
(store)
_arguments "${_arguments_options[@]}" : \
&& ret=0
;;
esac
;;
esac
;;
(config)
_arguments "${_arguments_options[@]}" : \
":: :_ordinary__subcmd__help__subcmd__app__subcmd__config_commands" \
"*::: :->config" \
&& ret=0
case $state in
(config)
words=($line[1] "${words[@]}")
(( CURRENT += 1 ))
curcontext="${curcontext%:*:*}:ordinary-help-app-config-command-$line[1]:"
case $line[1] in
(view)
_arguments "${_arguments_options[@]}" : \
&& ret=0
;;
(validate)
_arguments "${_arguments_options[@]}" : \
&& ret=0
;;
esac
;;
esac
;;
(routes)
_arguments "${_arguments_options[@]}" : \
&& ret=0
;;
esac
;;
esac
;;
(ssg)
_arguments "${_arguments_options[@]}" : \
":: :_ordinary__subcmd__help__subcmd__ssg_commands" \
"*::: :->ssg" \
&& ret=0
case $state in
(ssg)
words=($line[1] "${words[@]}")
(( CURRENT += 1 ))
curcontext="${curcontext%:*:*}:ordinary-help-ssg-command-$line[1]:"
case $line[1] in
(new)
_arguments "${_arguments_options[@]}" : \
&& ret=0
;;
esac
;;
esac
;;
(host)
_arguments "${_arguments_options[@]}" : \
":: :_ordinary__subcmd__help__subcmd__host_commands" \
"*::: :->host" \
&& ret=0
case $state in
(host)
words=($line[1] "${words[@]}")
(( CURRENT += 1 ))
curcontext="${curcontext%:*:*}:ordinary-help-host-command-$line[1]:"
case $line[1] in
(info)
_arguments "${_arguments_options[@]}" : \
&& ret=0
;;
(metrics)
_arguments "${_arguments_options[@]}" : \
&& ret=0
;;
(logs)
_arguments "${_arguments_options[@]}" : \
":: :_ordinary__subcmd__help__subcmd__host__subcmd__logs_commands" \
"*::: :->logs" \
&& ret=0
case $state in
(logs)
words=($line[1] "${words[@]}")
(( CURRENT += 1 ))
curcontext="${curcontext%:*:*}:ordinary-help-host-logs-command-$line[1]:"
case $line[1] in
(sync)
_arguments "${_arguments_options[@]}" : \
":: :_ordinary__subcmd__help__subcmd__host__subcmd__logs__subcmd__sync_commands" \
"*::: :->sync" \
&& ret=0
case $state in
(sync)
words=($line[1] "${words[@]}")
(( CURRENT += 1 ))
curcontext="${curcontext%:*:*}:ordinary-help-host-logs-sync-command-$line[1]:"
case $line[1] in
(info)
_arguments "${_arguments_options[@]}" : \
&& ret=0
;;
(file)
_arguments "${_arguments_options[@]}" : \
&& ret=0
;;
(all)
_arguments "${_arguments_options[@]}" : \
&& ret=0
;;
esac
;;
esac
;;
(list)
_arguments "${_arguments_options[@]}" : \
&& ret=0
;;
(read)
_arguments "${_arguments_options[@]}" : \
&& ret=0
;;
(query)
_arguments "${_arguments_options[@]}" : \
&& ret=0
;;
(search)
_arguments "${_arguments_options[@]}" : \
&& ret=0
;;
esac
;;
esac
;;
(accounts)
_arguments "${_arguments_options[@]}" : \
":: :_ordinary__subcmd__help__subcmd__host__subcmd__accounts_commands" \
"*::: :->accounts" \
&& ret=0
case $state in
(accounts)
words=($line[1] "${words[@]}")
(( CURRENT += 1 ))
curcontext="${curcontext%:*:*}:ordinary-help-host-accounts-command-$line[1]:"
case $line[1] in
(register)
_arguments "${_arguments_options[@]}" : \
&& ret=0
;;
(login)
_arguments "${_arguments_options[@]}" : \
&& ret=0
;;
(logout)
_arguments "${_arguments_options[@]}" : \
&& ret=0
;;
(access)
_arguments "${_arguments_options[@]}" : \
":: :_ordinary__subcmd__help__subcmd__host__subcmd__accounts__subcmd__access_commands" \
"*::: :->access" \
&& ret=0
case $state in
(access)
words=($line[1] "${words[@]}")
(( CURRENT += 1 ))
curcontext="${curcontext%:*:*}:ordinary-help-host-accounts-access-command-$line[1]:"
case $line[1] in
(get)
_arguments "${_arguments_options[@]}" : \
&& ret=0
;;
esac
;;
esac
;;
(password)
_arguments "${_arguments_options[@]}" : \
":: :_ordinary__subcmd__help__subcmd__host__subcmd__accounts__subcmd__password_commands" \
"*::: :->password" \
&& ret=0
case $state in
(password)
words=($line[1] "${words[@]}")
(( CURRENT += 1 ))
curcontext="${curcontext%:*:*}:ordinary-help-host-accounts-password-command-$line[1]:"
case $line[1] in
(reset)
_arguments "${_arguments_options[@]}" : \
&& ret=0
;;
(forgot)
_arguments "${_arguments_options[@]}" : \
&& ret=0
;;
esac
;;
esac
;;
(mfa)
_arguments "${_arguments_options[@]}" : \
":: :_ordinary__subcmd__help__subcmd__host__subcmd__accounts__subcmd__mfa_commands" \
"*::: :->mfa" \
&& ret=0
case $state in
(mfa)
words=($line[1] "${words[@]}")
(( CURRENT += 1 ))
curcontext="${curcontext%:*:*}:ordinary-help-host-accounts-mfa-command-$line[1]:"
case $line[1] in
(reset)
_arguments "${_arguments_options[@]}" : \
&& ret=0
;;
(lost)
_arguments "${_arguments_options[@]}" : \
&& ret=0
;;
esac
;;
esac
;;
(recovery-codes)
_arguments "${_arguments_options[@]}" : \
":: :_ordinary__subcmd__help__subcmd__host__subcmd__accounts__subcmd__recovery-codes_commands" \
"*::: :->recovery-codes" \
&& ret=0
case $state in
(recovery-codes)
words=($line[1] "${words[@]}")
(( CURRENT += 1 ))
curcontext="${curcontext%:*:*}:ordinary-help-host-accounts-recovery-codes-command-$line[1]:"
case $line[1] in
(reset)
_arguments "${_arguments_options[@]}" : \
&& ret=0
;;
esac
;;
esac
;;
(delete)
_arguments "${_arguments_options[@]}" : \
&& ret=0
;;
(invite)
_arguments "${_arguments_options[@]}" : \
&& ret=0
;;
(current)
_arguments "${_arguments_options[@]}" : \
&& ret=0
;;
(list)
_arguments "${_arguments_options[@]}" : \
&& ret=0
;;
(switch)
_arguments "${_arguments_options[@]}" : \
&& ret=0
;;
esac
;;
esac
;;
(moderation)
_arguments "${_arguments_options[@]}" : \
":: :_ordinary__subcmd__help__subcmd__host__subcmd__moderation_commands" \
"*::: :->moderation" \
&& ret=0
case $state in
(moderation)
words=($line[1] "${words[@]}")
(( CURRENT += 1 ))
curcontext="${curcontext%:*:*}:ordinary-help-host-moderation-command-$line[1]:"
case $line[1] in
(lock)
_arguments "${_arguments_options[@]}" : \
&& ret=0
;;
(unlock)
_arguments "${_arguments_options[@]}" : \
&& ret=0
;;
esac
;;
esac
;;
esac
;;
esac
;;
(doctor)
_arguments "${_arguments_options[@]}" : \
&& ret=0
;;
(utils)
_arguments "${_arguments_options[@]}" : \
":: :_ordinary__subcmd__help__subcmd__utils_commands" \
"*::: :->utils" \
&& ret=0
case $state in
(utils)
words=($line[1] "${words[@]}")
(( CURRENT += 1 ))
curcontext="${curcontext%:*:*}:ordinary-help-utils-command-$line[1]:"
case $line[1] in
(uuid)
_arguments "${_arguments_options[@]}" : \
&& ret=0
;;
(timestamp)
_arguments "${_arguments_options[@]}" : \
&& ret=0
;;
(html)
_arguments "${_arguments_options[@]}" : \
":: :_ordinary__subcmd__help__subcmd__utils__subcmd__html_commands" \
"*::: :->html" \
&& ret=0
case $state in
(html)
words=($line[1] "${words[@]}")
(( CURRENT += 1 ))
curcontext="${curcontext%:*:*}:ordinary-help-utils-html-command-$line[1]:"
case $line[1] in
(minify)
_arguments "${_arguments_options[@]}" : \
&& ret=0
;;
(csp-hashes)
_arguments "${_arguments_options[@]}" : \
&& ret=0
;;
esac
;;
esac
;;
(css)
_arguments "${_arguments_options[@]}" : \
":: :_ordinary__subcmd__help__subcmd__utils__subcmd__css_commands" \
"*::: :->css" \
&& ret=0
case $state in
(css)
words=($line[1] "${words[@]}")
(( CURRENT += 1 ))
curcontext="${curcontext%:*:*}:ordinary-help-utils-css-command-$line[1]:"
case $line[1] in
(minify)
_arguments "${_arguments_options[@]}" : \
&& ret=0
;;
esac
;;
esac
;;
(js)
_arguments "${_arguments_options[@]}" : \
":: :_ordinary__subcmd__help__subcmd__utils__subcmd__js_commands" \
"*::: :->js" \
&& ret=0
case $state in
(js)
words=($line[1] "${words[@]}")
(( CURRENT += 1 ))
curcontext="${curcontext%:*:*}:ordinary-help-utils-js-command-$line[1]:"
case $line[1] in
(minify)
_arguments "${_arguments_options[@]}" : \
&& ret=0
;;
esac
;;
esac
;;
(markdown)
_arguments "${_arguments_options[@]}" : \
":: :_ordinary__subcmd__help__subcmd__utils__subcmd__markdown_commands" \
"*::: :->markdown" \
&& ret=0
case $state in
(markdown)
words=($line[1] "${words[@]}")
(( CURRENT += 1 ))
curcontext="${curcontext%:*:*}:ordinary-help-utils-markdown-command-$line[1]:"
case $line[1] in
(to-html)
_arguments "${_arguments_options[@]}" : \
&& ret=0
;;
esac
;;
esac
;;
(exif)
_arguments "${_arguments_options[@]}" : \
":: :_ordinary__subcmd__help__subcmd__utils__subcmd__exif_commands" \
"*::: :->exif" \
&& ret=0
case $state in
(exif)
words=($line[1] "${words[@]}")
(( CURRENT += 1 ))
curcontext="${curcontext%:*:*}:ordinary-help-utils-exif-command-$line[1]:"
case $line[1] in
(tool)
_arguments "${_arguments_options[@]}" : \
&& ret=0
;;
esac
;;
esac
;;
(qr-code)
_arguments "${_arguments_options[@]}" : \
&& ret=0
;;
esac
;;
esac
;;
(help)
_arguments "${_arguments_options[@]}" : \
&& ret=0
;;
esac
;;
esac
;;
esac
;;
esac
}
(( $+functions[_ordinary_commands] )) ||
_ordinary_commands() {
local commands; commands=(
'app:manage applications running on \`ordinaryd\`' \
'ssg:manage static site configuration' \
'host:manage an \`ordinaryd\` instance' \
'doctor:ensure that all the correct system components are installed' \
'dr:ensure that all the correct system components are installed' \
'utils:utility functions for aiding project development' \
'help:Print this message or the help of the given subcommand(s)' \
)
_describe -t commands 'ordinary commands' commands "$@"
}
(( $+functions[_ordinary__subcmd__app_commands] )) ||
_ordinary__subcmd__app_commands() {
local commands; commands=(
'new:create a new Ordinary project' \
'create:create a new Ordinary project' \
'init:create a new Ordinary project' \
'build:build your Ordinary app' \
'start:start the app, locally' \
'run:start the app, locally' \
'preview:start the app, locally' \
'publish:combines \`build\`, \`deploy\`, \`assets write\`, and \`functions upload\`' \
'deploy:deploy a changes to ordinary.json' \
'kill:kill a running instance of the application' \
'restart:restart a deployed/running instance of the application on \`ordinaryd\`' \
'erase:fully erase all content of the application from the host' \
'logs:query application logs' \
'assets:manage assets in your Ordinary project' \
'accounts:manage application accounts' \
'account:manage application accounts' \
'accts:manage application accounts' \
'acct:manage application accounts' \
'functions:manage functions on your Ordinary app' \
'fns:manage functions on your Ordinary app' \
'fn:manage functions on your Ordinary app' \
'function:manage functions on your Ordinary app' \
'database:manage database models in your Ordinary app' \
'db:manage database models in your Ordinary app' \
'secrets:manage secrets in your Ordinary application' \
'config:view and validate the app config' \
'routes:list all HTTP routes' \
'help:Print this message or the help of the given subcommand(s)' \
)
_describe -t commands 'ordinary app commands' commands "$@"
}
(( $+functions[_ordinary__subcmd__app__subcmd__accounts_commands] )) ||
_ordinary__subcmd__app__subcmd__accounts_commands() {
local commands; commands=(
'list:list application accounts' \
'ls:list application accounts' \
'help:Print this message or the help of the given subcommand(s)' \
)
_describe -t commands 'ordinary app accounts commands' commands "$@"
}
(( $+functions[_ordinary__subcmd__app__subcmd__accounts__subcmd__help_commands] )) ||
_ordinary__subcmd__app__subcmd__accounts__subcmd__help_commands() {
local commands; commands=(
'list:list application accounts' \
'help:Print this message or the help of the given subcommand(s)' \
)
_describe -t commands 'ordinary app accounts help commands' commands "$@"
}
(( $+functions[_ordinary__subcmd__app__subcmd__accounts__subcmd__help__subcmd__help_commands] )) ||
_ordinary__subcmd__app__subcmd__accounts__subcmd__help__subcmd__help_commands() {
local commands; commands=()
_describe -t commands 'ordinary app accounts help help commands' commands "$@"
}
(( $+functions[_ordinary__subcmd__app__subcmd__accounts__subcmd__help__subcmd__list_commands] )) ||
_ordinary__subcmd__app__subcmd__accounts__subcmd__help__subcmd__list_commands() {
local commands; commands=()
_describe -t commands 'ordinary app accounts help list commands' commands "$@"
}
(( $+functions[_ordinary__subcmd__app__subcmd__accounts__subcmd__list_commands] )) ||
_ordinary__subcmd__app__subcmd__accounts__subcmd__list_commands() {
local commands; commands=()
_describe -t commands 'ordinary app accounts list commands' commands "$@"
}
(( $+functions[_ordinary__subcmd__app__subcmd__assets_commands] )) ||
_ordinary__subcmd__app__subcmd__assets_commands() {
local commands; commands=(
'write:write assets to application running on \`ordinaryd\` instance' \
'prune:prune all assets on the server that are not known locally' \
'delete:deletes assets on the server' \
'del:deletes assets on the server' \
'help:Print this message or the help of the given subcommand(s)' \
)
_describe -t commands 'ordinary app assets commands' commands "$@"
}
(( $+functions[_ordinary__subcmd__app__subcmd__assets__subcmd__delete_commands] )) ||
_ordinary__subcmd__app__subcmd__assets__subcmd__delete_commands() {
local commands; commands=()
_describe -t commands 'ordinary app assets delete commands' commands "$@"
}
(( $+functions[_ordinary__subcmd__app__subcmd__assets__subcmd__help_commands] )) ||
_ordinary__subcmd__app__subcmd__assets__subcmd__help_commands() {
local commands; commands=(
'write:write assets to application running on \`ordinaryd\` instance' \
'prune:prune all assets on the server that are not known locally' \
'delete:deletes assets on the server' \
'help:Print this message or the help of the given subcommand(s)' \
)
_describe -t commands 'ordinary app assets help commands' commands "$@"
}
(( $+functions[_ordinary__subcmd__app__subcmd__assets__subcmd__help__subcmd__delete_commands] )) ||
_ordinary__subcmd__app__subcmd__assets__subcmd__help__subcmd__delete_commands() {
local commands; commands=()
_describe -t commands 'ordinary app assets help delete commands' commands "$@"
}
(( $+functions[_ordinary__subcmd__app__subcmd__assets__subcmd__help__subcmd__help_commands] )) ||
_ordinary__subcmd__app__subcmd__assets__subcmd__help__subcmd__help_commands() {
local commands; commands=()
_describe -t commands 'ordinary app assets help help commands' commands "$@"
}
(( $+functions[_ordinary__subcmd__app__subcmd__assets__subcmd__help__subcmd__prune_commands] )) ||
_ordinary__subcmd__app__subcmd__assets__subcmd__help__subcmd__prune_commands() {
local commands; commands=()
_describe -t commands 'ordinary app assets help prune commands' commands "$@"
}
(( $+functions[_ordinary__subcmd__app__subcmd__assets__subcmd__help__subcmd__write_commands] )) ||
_ordinary__subcmd__app__subcmd__assets__subcmd__help__subcmd__write_commands() {
local commands; commands=()
_describe -t commands 'ordinary app assets help write commands' commands "$@"
}
(( $+functions[_ordinary__subcmd__app__subcmd__assets__subcmd__prune_commands] )) ||
_ordinary__subcmd__app__subcmd__assets__subcmd__prune_commands() {
local commands; commands=()
_describe -t commands 'ordinary app assets prune commands' commands "$@"
}
(( $+functions[_ordinary__subcmd__app__subcmd__assets__subcmd__write_commands] )) ||
_ordinary__subcmd__app__subcmd__assets__subcmd__write_commands() {
local commands; commands=()
_describe -t commands 'ordinary app assets write commands' commands "$@"
}
(( $+functions[_ordinary__subcmd__app__subcmd__build_commands] )) ||
_ordinary__subcmd__app__subcmd__build_commands() {
local commands; commands=()
_describe -t commands 'ordinary app build commands' commands "$@"
}
(( $+functions[_ordinary__subcmd__app__subcmd__config_commands] )) ||
_ordinary__subcmd__app__subcmd__config_commands() {
local commands; commands=(
'view:view the config that will be produced and used by operations that depend on its assembled state' \
'validate:validate the existing config in an assembled state' \
'help:Print this message or the help of the given subcommand(s)' \
)
_describe -t commands 'ordinary app config commands' commands "$@"
}
(( $+functions[_ordinary__subcmd__app__subcmd__config__subcmd__help_commands] )) ||
_ordinary__subcmd__app__subcmd__config__subcmd__help_commands() {
local commands; commands=(
'view:view the config that will be produced and used by operations that depend on its assembled state' \
'validate:validate the existing config in an assembled state' \
'help:Print this message or the help of the given subcommand(s)' \
)
_describe -t commands 'ordinary app config help commands' commands "$@"
}
(( $+functions[_ordinary__subcmd__app__subcmd__config__subcmd__help__subcmd__help_commands] )) ||
_ordinary__subcmd__app__subcmd__config__subcmd__help__subcmd__help_commands() {
local commands; commands=()
_describe -t commands 'ordinary app config help help commands' commands "$@"
}
(( $+functions[_ordinary__subcmd__app__subcmd__config__subcmd__help__subcmd__validate_commands] )) ||
_ordinary__subcmd__app__subcmd__config__subcmd__help__subcmd__validate_commands() {
local commands; commands=()
_describe -t commands 'ordinary app config help validate commands' commands "$@"
}
(( $+functions[_ordinary__subcmd__app__subcmd__config__subcmd__help__subcmd__view_commands] )) ||
_ordinary__subcmd__app__subcmd__config__subcmd__help__subcmd__view_commands() {
local commands; commands=()
_describe -t commands 'ordinary app config help view commands' commands "$@"
}
(( $+functions[_ordinary__subcmd__app__subcmd__config__subcmd__validate_commands] )) ||
_ordinary__subcmd__app__subcmd__config__subcmd__validate_commands() {
local commands; commands=()
_describe -t commands 'ordinary app config validate commands' commands "$@"
}
(( $+functions[_ordinary__subcmd__app__subcmd__config__subcmd__view_commands] )) ||
_ordinary__subcmd__app__subcmd__config__subcmd__view_commands() {
local commands; commands=()
_describe -t commands 'ordinary app config view commands' commands "$@"
}
(( $+functions[_ordinary__subcmd__app__subcmd__database_commands] )) ||
_ordinary__subcmd__app__subcmd__database_commands() {
local commands; commands=(
'seed:seed the database if the \`seed_path\` is set' \
'models:' \
'items:manage model items for the application running on an \`ordinaryd\` instance' \
'help:Print this message or the help of the given subcommand(s)' \
)
_describe -t commands 'ordinary app database commands' commands "$@"
}
(( $+functions[_ordinary__subcmd__app__subcmd__database__subcmd__help_commands] )) ||
_ordinary__subcmd__app__subcmd__database__subcmd__help_commands() {
local commands; commands=(
'seed:seed the database if the \`seed_path\` is set' \
'models:' \
'items:manage model items for the application running on an \`ordinaryd\` instance' \
'help:Print this message or the help of the given subcommand(s)' \
)
_describe -t commands 'ordinary app database help commands' commands "$@"
}
(( $+functions[_ordinary__subcmd__app__subcmd__database__subcmd__help__subcmd__help_commands] )) ||
_ordinary__subcmd__app__subcmd__database__subcmd__help__subcmd__help_commands() {
local commands; commands=()
_describe -t commands 'ordinary app database help help commands' commands "$@"
}
(( $+functions[_ordinary__subcmd__app__subcmd__database__subcmd__help__subcmd__items_commands] )) ||
_ordinary__subcmd__app__subcmd__database__subcmd__help__subcmd__items_commands() {
local commands; commands=(
'list:list model items for the application running on an \`ordinaryd\` instance' \
)
_describe -t commands 'ordinary app database help items commands' commands "$@"
}
(( $+functions[_ordinary__subcmd__app__subcmd__database__subcmd__help__subcmd__items__subcmd__list_commands] )) ||
_ordinary__subcmd__app__subcmd__database__subcmd__help__subcmd__items__subcmd__list_commands() {
local commands; commands=()
_describe -t commands 'ordinary app database help items list commands' commands "$@"
}
(( $+functions[_ordinary__subcmd__app__subcmd__database__subcmd__help__subcmd__models_commands] )) ||
_ordinary__subcmd__app__subcmd__database__subcmd__help__subcmd__models_commands() {
local commands; commands=(
'add:add a new model to your Ordinary project' \
)
_describe -t commands 'ordinary app database help models commands' commands "$@"
}
(( $+functions[_ordinary__subcmd__app__subcmd__database__subcmd__help__subcmd__models__subcmd__add_commands] )) ||
_ordinary__subcmd__app__subcmd__database__subcmd__help__subcmd__models__subcmd__add_commands() {
local commands; commands=()
_describe -t commands 'ordinary app database help models add commands' commands "$@"
}
(( $+functions[_ordinary__subcmd__app__subcmd__database__subcmd__help__subcmd__seed_commands] )) ||
_ordinary__subcmd__app__subcmd__database__subcmd__help__subcmd__seed_commands() {
local commands; commands=()
_describe -t commands 'ordinary app database help seed commands' commands "$@"
}
(( $+functions[_ordinary__subcmd__app__subcmd__database__subcmd__items_commands] )) ||
_ordinary__subcmd__app__subcmd__database__subcmd__items_commands() {
local commands; commands=(
'list:list model items for the application running on an \`ordinaryd\` instance' \
'ls:list model items for the application running on an \`ordinaryd\` instance' \
'help:Print this message or the help of the given subcommand(s)' \
)
_describe -t commands 'ordinary app database items commands' commands "$@"
}
(( $+functions[_ordinary__subcmd__app__subcmd__database__subcmd__items__subcmd__help_commands] )) ||
_ordinary__subcmd__app__subcmd__database__subcmd__items__subcmd__help_commands() {
local commands; commands=(
'list:list model items for the application running on an \`ordinaryd\` instance' \
'help:Print this message or the help of the given subcommand(s)' \
)
_describe -t commands 'ordinary app database items help commands' commands "$@"
}
(( $+functions[_ordinary__subcmd__app__subcmd__database__subcmd__items__subcmd__help__subcmd__help_commands] )) ||
_ordinary__subcmd__app__subcmd__database__subcmd__items__subcmd__help__subcmd__help_commands() {
local commands; commands=()
_describe -t commands 'ordinary app database items help help commands' commands "$@"
}
(( $+functions[_ordinary__subcmd__app__subcmd__database__subcmd__items__subcmd__help__subcmd__list_commands] )) ||
_ordinary__subcmd__app__subcmd__database__subcmd__items__subcmd__help__subcmd__list_commands() {
local commands; commands=()
_describe -t commands 'ordinary app database items help list commands' commands "$@"
}
(( $+functions[_ordinary__subcmd__app__subcmd__database__subcmd__items__subcmd__list_commands] )) ||
_ordinary__subcmd__app__subcmd__database__subcmd__items__subcmd__list_commands() {
local commands; commands=()
_describe -t commands 'ordinary app database items list commands' commands "$@"
}
(( $+functions[_ordinary__subcmd__app__subcmd__database__subcmd__models_commands] )) ||
_ordinary__subcmd__app__subcmd__database__subcmd__models_commands() {
local commands; commands=(
'add:add a new model to your Ordinary project' \
'help:Print this message or the help of the given subcommand(s)' \
)
_describe -t commands 'ordinary app database models commands' commands "$@"
}
(( $+functions[_ordinary__subcmd__app__subcmd__database__subcmd__models__subcmd__add_commands] )) ||
_ordinary__subcmd__app__subcmd__database__subcmd__models__subcmd__add_commands() {
local commands; commands=()
_describe -t commands 'ordinary app database models add commands' commands "$@"
}
(( $+functions[_ordinary__subcmd__app__subcmd__database__subcmd__models__subcmd__help_commands] )) ||
_ordinary__subcmd__app__subcmd__database__subcmd__models__subcmd__help_commands() {
local commands; commands=(
'add:add a new model to your Ordinary project' \
'help:Print this message or the help of the given subcommand(s)' \
)
_describe -t commands 'ordinary app database models help commands' commands "$@"
}
(( $+functions[_ordinary__subcmd__app__subcmd__database__subcmd__models__subcmd__help__subcmd__add_commands] )) ||
_ordinary__subcmd__app__subcmd__database__subcmd__models__subcmd__help__subcmd__add_commands() {
local commands; commands=()
_describe -t commands 'ordinary app database models help add commands' commands "$@"
}
(( $+functions[_ordinary__subcmd__app__subcmd__database__subcmd__models__subcmd__help__subcmd__help_commands] )) ||
_ordinary__subcmd__app__subcmd__database__subcmd__models__subcmd__help__subcmd__help_commands() {
local commands; commands=()
_describe -t commands 'ordinary app database models help help commands' commands "$@"
}
(( $+functions[_ordinary__subcmd__app__subcmd__database__subcmd__seed_commands] )) ||
_ordinary__subcmd__app__subcmd__database__subcmd__seed_commands() {
local commands; commands=()
_describe -t commands 'ordinary app database seed commands' commands "$@"
}
(( $+functions[_ordinary__subcmd__app__subcmd__deploy_commands] )) ||
_ordinary__subcmd__app__subcmd__deploy_commands() {
local commands; commands=()
_describe -t commands 'ordinary app deploy commands' commands "$@"
}
(( $+functions[_ordinary__subcmd__app__subcmd__erase_commands] )) ||
_ordinary__subcmd__app__subcmd__erase_commands() {
local commands; commands=()
_describe -t commands 'ordinary app erase commands' commands "$@"
}
(( $+functions[_ordinary__subcmd__app__subcmd__functions_commands] )) ||
_ordinary__subcmd__app__subcmd__functions_commands() {
local commands; commands=(
'add:add a new function to your Ordinary project' \
'create:add a new function to your Ordinary project' \
'new:add a new function to your Ordinary project' \
'build:build just the functions' \
'upload:upload functions to application running on \`ordinaryd\` instance' \
'help:Print this message or the help of the given subcommand(s)' \
)
_describe -t commands 'ordinary app functions commands' commands "$@"
}
(( $+functions[_ordinary__subcmd__app__subcmd__functions__subcmd__add_commands] )) ||
_ordinary__subcmd__app__subcmd__functions__subcmd__add_commands() {
local commands; commands=()
_describe -t commands 'ordinary app functions add commands' commands "$@"
}
(( $+functions[_ordinary__subcmd__app__subcmd__functions__subcmd__build_commands] )) ||
_ordinary__subcmd__app__subcmd__functions__subcmd__build_commands() {
local commands; commands=()
_describe -t commands 'ordinary app functions build commands' commands "$@"
}
(( $+functions[_ordinary__subcmd__app__subcmd__functions__subcmd__help_commands] )) ||
_ordinary__subcmd__app__subcmd__functions__subcmd__help_commands() {
local commands; commands=(
'add:add a new function to your Ordinary project' \
'build:build just the functions' \
'upload:upload functions to application running on \`ordinaryd\` instance' \
'help:Print this message or the help of the given subcommand(s)' \
)
_describe -t commands 'ordinary app functions help commands' commands "$@"
}
(( $+functions[_ordinary__subcmd__app__subcmd__functions__subcmd__help__subcmd__add_commands] )) ||
_ordinary__subcmd__app__subcmd__functions__subcmd__help__subcmd__add_commands() {
local commands; commands=()
_describe -t commands 'ordinary app functions help add commands' commands "$@"
}
(( $+functions[_ordinary__subcmd__app__subcmd__functions__subcmd__help__subcmd__build_commands] )) ||
_ordinary__subcmd__app__subcmd__functions__subcmd__help__subcmd__build_commands() {
local commands; commands=()
_describe -t commands 'ordinary app functions help build commands' commands "$@"
}
(( $+functions[_ordinary__subcmd__app__subcmd__functions__subcmd__help__subcmd__help_commands] )) ||
_ordinary__subcmd__app__subcmd__functions__subcmd__help__subcmd__help_commands() {
local commands; commands=()
_describe -t commands 'ordinary app functions help help commands' commands "$@"
}
(( $+functions[_ordinary__subcmd__app__subcmd__functions__subcmd__help__subcmd__upload_commands] )) ||
_ordinary__subcmd__app__subcmd__functions__subcmd__help__subcmd__upload_commands() {
local commands; commands=()
_describe -t commands 'ordinary app functions help upload commands' commands "$@"
}
(( $+functions[_ordinary__subcmd__app__subcmd__functions__subcmd__upload_commands] )) ||
_ordinary__subcmd__app__subcmd__functions__subcmd__upload_commands() {
local commands; commands=()
_describe -t commands 'ordinary app functions upload commands' commands "$@"
}
(( $+functions[_ordinary__subcmd__app__subcmd__help_commands] )) ||
_ordinary__subcmd__app__subcmd__help_commands() {
local commands; commands=(
'new:create a new Ordinary project' \
'build:build your Ordinary app' \
'start:start the app, locally' \
'publish:combines \`build\`, \`deploy\`, \`assets write\`, and \`functions upload\`' \
'deploy:deploy a changes to ordinary.json' \
'kill:kill a running instance of the application' \
'restart:restart a deployed/running instance of the application on \`ordinaryd\`' \
'erase:fully erase all content of the application from the host' \
'logs:query application logs' \
'assets:manage assets in your Ordinary project' \
'accounts:manage application accounts' \
'functions:manage functions on your Ordinary app' \
'database:manage database models in your Ordinary app' \
'secrets:manage secrets in your Ordinary application' \
'config:view and validate the app config' \
'routes:list all HTTP routes' \
'help:Print this message or the help of the given subcommand(s)' \
)
_describe -t commands 'ordinary app help commands' commands "$@"
}
(( $+functions[_ordinary__subcmd__app__subcmd__help__subcmd__accounts_commands] )) ||
_ordinary__subcmd__app__subcmd__help__subcmd__accounts_commands() {
local commands; commands=(
'list:list application accounts' \
)
_describe -t commands 'ordinary app help accounts commands' commands "$@"
}
(( $+functions[_ordinary__subcmd__app__subcmd__help__subcmd__accounts__subcmd__list_commands] )) ||
_ordinary__subcmd__app__subcmd__help__subcmd__accounts__subcmd__list_commands() {
local commands; commands=()
_describe -t commands 'ordinary app help accounts list commands' commands "$@"
}
(( $+functions[_ordinary__subcmd__app__subcmd__help__subcmd__assets_commands] )) ||
_ordinary__subcmd__app__subcmd__help__subcmd__assets_commands() {
local commands; commands=(
'write:write assets to application running on \`ordinaryd\` instance' \
'prune:prune all assets on the server that are not known locally' \
'delete:deletes assets on the server' \
)
_describe -t commands 'ordinary app help assets commands' commands "$@"
}
(( $+functions[_ordinary__subcmd__app__subcmd__help__subcmd__assets__subcmd__delete_commands] )) ||
_ordinary__subcmd__app__subcmd__help__subcmd__assets__subcmd__delete_commands() {
local commands; commands=()
_describe -t commands 'ordinary app help assets delete commands' commands "$@"
}
(( $+functions[_ordinary__subcmd__app__subcmd__help__subcmd__assets__subcmd__prune_commands] )) ||
_ordinary__subcmd__app__subcmd__help__subcmd__assets__subcmd__prune_commands() {
local commands; commands=()
_describe -t commands 'ordinary app help assets prune commands' commands "$@"
}
(( $+functions[_ordinary__subcmd__app__subcmd__help__subcmd__assets__subcmd__write_commands] )) ||
_ordinary__subcmd__app__subcmd__help__subcmd__assets__subcmd__write_commands() {
local commands; commands=()
_describe -t commands 'ordinary app help assets write commands' commands "$@"
}
(( $+functions[_ordinary__subcmd__app__subcmd__help__subcmd__build_commands] )) ||
_ordinary__subcmd__app__subcmd__help__subcmd__build_commands() {
local commands; commands=()
_describe -t commands 'ordinary app help build commands' commands "$@"
}
(( $+functions[_ordinary__subcmd__app__subcmd__help__subcmd__config_commands] )) ||
_ordinary__subcmd__app__subcmd__help__subcmd__config_commands() {
local commands; commands=(
'view:view the config that will be produced and used by operations that depend on its assembled state' \
'validate:validate the existing config in an assembled state' \
)
_describe -t commands 'ordinary app help config commands' commands "$@"
}
(( $+functions[_ordinary__subcmd__app__subcmd__help__subcmd__config__subcmd__validate_commands] )) ||
_ordinary__subcmd__app__subcmd__help__subcmd__config__subcmd__validate_commands() {
local commands; commands=()
_describe -t commands 'ordinary app help config validate commands' commands "$@"
}
(( $+functions[_ordinary__subcmd__app__subcmd__help__subcmd__config__subcmd__view_commands] )) ||
_ordinary__subcmd__app__subcmd__help__subcmd__config__subcmd__view_commands() {
local commands; commands=()
_describe -t commands 'ordinary app help config view commands' commands "$@"
}
(( $+functions[_ordinary__subcmd__app__subcmd__help__subcmd__database_commands] )) ||
_ordinary__subcmd__app__subcmd__help__subcmd__database_commands() {
local commands; commands=(
'seed:seed the database if the \`seed_path\` is set' \
'models:' \
'items:manage model items for the application running on an \`ordinaryd\` instance' \
)
_describe -t commands 'ordinary app help database commands' commands "$@"
}
(( $+functions[_ordinary__subcmd__app__subcmd__help__subcmd__database__subcmd__items_commands] )) ||
_ordinary__subcmd__app__subcmd__help__subcmd__database__subcmd__items_commands() {
local commands; commands=(
'list:list model items for the application running on an \`ordinaryd\` instance' \
)
_describe -t commands 'ordinary app help database items commands' commands "$@"
}
(( $+functions[_ordinary__subcmd__app__subcmd__help__subcmd__database__subcmd__items__subcmd__list_commands] )) ||
_ordinary__subcmd__app__subcmd__help__subcmd__database__subcmd__items__subcmd__list_commands() {
local commands; commands=()
_describe -t commands 'ordinary app help database items list commands' commands "$@"
}
(( $+functions[_ordinary__subcmd__app__subcmd__help__subcmd__database__subcmd__models_commands] )) ||
_ordinary__subcmd__app__subcmd__help__subcmd__database__subcmd__models_commands() {
local commands; commands=(
'add:add a new model to your Ordinary project' \
)
_describe -t commands 'ordinary app help database models commands' commands "$@"
}
(( $+functions[_ordinary__subcmd__app__subcmd__help__subcmd__database__subcmd__models__subcmd__add_commands] )) ||
_ordinary__subcmd__app__subcmd__help__subcmd__database__subcmd__models__subcmd__add_commands() {
local commands; commands=()
_describe -t commands 'ordinary app help database models add commands' commands "$@"
}
(( $+functions[_ordinary__subcmd__app__subcmd__help__subcmd__database__subcmd__seed_commands] )) ||
_ordinary__subcmd__app__subcmd__help__subcmd__database__subcmd__seed_commands() {
local commands; commands=()
_describe -t commands 'ordinary app help database seed commands' commands "$@"
}
(( $+functions[_ordinary__subcmd__app__subcmd__help__subcmd__deploy_commands] )) ||
_ordinary__subcmd__app__subcmd__help__subcmd__deploy_commands() {
local commands; commands=()
_describe -t commands 'ordinary app help deploy commands' commands "$@"
}
(( $+functions[_ordinary__subcmd__app__subcmd__help__subcmd__erase_commands] )) ||
_ordinary__subcmd__app__subcmd__help__subcmd__erase_commands() {
local commands; commands=()
_describe -t commands 'ordinary app help erase commands' commands "$@"
}
(( $+functions[_ordinary__subcmd__app__subcmd__help__subcmd__functions_commands] )) ||
_ordinary__subcmd__app__subcmd__help__subcmd__functions_commands() {
local commands; commands=(
'add:add a new function to your Ordinary project' \
'build:build just the functions' \
'upload:upload functions to application running on \`ordinaryd\` instance' \
)
_describe -t commands 'ordinary app help functions commands' commands "$@"
}
(( $+functions[_ordinary__subcmd__app__subcmd__help__subcmd__functions__subcmd__add_commands] )) ||
_ordinary__subcmd__app__subcmd__help__subcmd__functions__subcmd__add_commands() {
local commands; commands=()
_describe -t commands 'ordinary app help functions add commands' commands "$@"
}
(( $+functions[_ordinary__subcmd__app__subcmd__help__subcmd__functions__subcmd__build_commands] )) ||
_ordinary__subcmd__app__subcmd__help__subcmd__functions__subcmd__build_commands() {
local commands; commands=()
_describe -t commands 'ordinary app help functions build commands' commands "$@"
}
(( $+functions[_ordinary__subcmd__app__subcmd__help__subcmd__functions__subcmd__upload_commands] )) ||
_ordinary__subcmd__app__subcmd__help__subcmd__functions__subcmd__upload_commands() {
local commands; commands=()
_describe -t commands 'ordinary app help functions upload commands' commands "$@"
}
(( $+functions[_ordinary__subcmd__app__subcmd__help__subcmd__help_commands] )) ||
_ordinary__subcmd__app__subcmd__help__subcmd__help_commands() {
local commands; commands=()
_describe -t commands 'ordinary app help help commands' commands "$@"
}
(( $+functions[_ordinary__subcmd__app__subcmd__help__subcmd__kill_commands] )) ||
_ordinary__subcmd__app__subcmd__help__subcmd__kill_commands() {
local commands; commands=()
_describe -t commands 'ordinary app help kill commands' commands "$@"
}
(( $+functions[_ordinary__subcmd__app__subcmd__help__subcmd__logs_commands] )) ||
_ordinary__subcmd__app__subcmd__help__subcmd__logs_commands() {
local commands; commands=(
'sync:sync files, indexes and tables' \
'list:list all log files' \
'read:read one or all files to stdout' \
'query:query logs with SQL' \
'search:search the tantivy index' \
)
_describe -t commands 'ordinary app help logs commands' commands "$@"
}
(( $+functions[_ordinary__subcmd__app__subcmd__help__subcmd__logs__subcmd__list_commands] )) ||
_ordinary__subcmd__app__subcmd__help__subcmd__logs__subcmd__list_commands() {
local commands; commands=()
_describe -t commands 'ordinary app help logs list commands' commands "$@"
}
(( $+functions[_ordinary__subcmd__app__subcmd__help__subcmd__logs__subcmd__query_commands] )) ||
_ordinary__subcmd__app__subcmd__help__subcmd__logs__subcmd__query_commands() {
local commands; commands=()
_describe -t commands 'ordinary app help logs query commands' commands "$@"
}
(( $+functions[_ordinary__subcmd__app__subcmd__help__subcmd__logs__subcmd__read_commands] )) ||
_ordinary__subcmd__app__subcmd__help__subcmd__logs__subcmd__read_commands() {
local commands; commands=()
_describe -t commands 'ordinary app help logs read commands' commands "$@"
}
(( $+functions[_ordinary__subcmd__app__subcmd__help__subcmd__logs__subcmd__search_commands] )) ||
_ordinary__subcmd__app__subcmd__help__subcmd__logs__subcmd__search_commands() {
local commands; commands=()
_describe -t commands 'ordinary app help logs search commands' commands "$@"
}
(( $+functions[_ordinary__subcmd__app__subcmd__help__subcmd__logs__subcmd__sync_commands] )) ||
_ordinary__subcmd__app__subcmd__help__subcmd__logs__subcmd__sync_commands() {
local commands; commands=(
'info:get information about remote and local log files' \
'file:sync a single file' \
'all:repair local state for all out of sync (⚠️) and remote files not yet downloaded (❌)' \
)
_describe -t commands 'ordinary app help logs sync commands' commands "$@"
}
(( $+functions[_ordinary__subcmd__app__subcmd__help__subcmd__logs__subcmd__sync__subcmd__all_commands] )) ||
_ordinary__subcmd__app__subcmd__help__subcmd__logs__subcmd__sync__subcmd__all_commands() {
local commands; commands=()
_describe -t commands 'ordinary app help logs sync all commands' commands "$@"
}
(( $+functions[_ordinary__subcmd__app__subcmd__help__subcmd__logs__subcmd__sync__subcmd__file_commands] )) ||
_ordinary__subcmd__app__subcmd__help__subcmd__logs__subcmd__sync__subcmd__file_commands() {
local commands; commands=()
_describe -t commands 'ordinary app help logs sync file commands' commands "$@"
}
(( $+functions[_ordinary__subcmd__app__subcmd__help__subcmd__logs__subcmd__sync__subcmd__info_commands] )) ||
_ordinary__subcmd__app__subcmd__help__subcmd__logs__subcmd__sync__subcmd__info_commands() {
local commands; commands=()
_describe -t commands 'ordinary app help logs sync info commands' commands "$@"
}
(( $+functions[_ordinary__subcmd__app__subcmd__help__subcmd__new_commands] )) ||
_ordinary__subcmd__app__subcmd__help__subcmd__new_commands() {
local commands; commands=()
_describe -t commands 'ordinary app help new commands' commands "$@"
}
(( $+functions[_ordinary__subcmd__app__subcmd__help__subcmd__publish_commands] )) ||
_ordinary__subcmd__app__subcmd__help__subcmd__publish_commands() {
local commands; commands=()
_describe -t commands 'ordinary app help publish commands' commands "$@"
}
(( $+functions[_ordinary__subcmd__app__subcmd__help__subcmd__restart_commands] )) ||
_ordinary__subcmd__app__subcmd__help__subcmd__restart_commands() {
local commands; commands=()
_describe -t commands 'ordinary app help restart commands' commands "$@"
}
(( $+functions[_ordinary__subcmd__app__subcmd__help__subcmd__routes_commands] )) ||
_ordinary__subcmd__app__subcmd__help__subcmd__routes_commands() {
local commands; commands=()
_describe -t commands 'ordinary app help routes commands' commands "$@"
}
(( $+functions[_ordinary__subcmd__app__subcmd__help__subcmd__secrets_commands] )) ||
_ordinary__subcmd__app__subcmd__help__subcmd__secrets_commands() {
local commands; commands=(
'store:store an application secret' \
)
_describe -t commands 'ordinary app help secrets commands' commands "$@"
}
(( $+functions[_ordinary__subcmd__app__subcmd__help__subcmd__secrets__subcmd__store_commands] )) ||
_ordinary__subcmd__app__subcmd__help__subcmd__secrets__subcmd__store_commands() {
local commands; commands=()
_describe -t commands 'ordinary app help secrets store commands' commands "$@"
}
(( $+functions[_ordinary__subcmd__app__subcmd__help__subcmd__start_commands] )) ||
_ordinary__subcmd__app__subcmd__help__subcmd__start_commands() {
local commands; commands=()
_describe -t commands 'ordinary app help start commands' commands "$@"
}
(( $+functions[_ordinary__subcmd__app__subcmd__kill_commands] )) ||
_ordinary__subcmd__app__subcmd__kill_commands() {
local commands; commands=()
_describe -t commands 'ordinary app kill commands' commands "$@"
}
(( $+functions[_ordinary__subcmd__app__subcmd__logs_commands] )) ||
_ordinary__subcmd__app__subcmd__logs_commands() {
local commands; commands=(
'sync:sync files, indexes and tables' \
'list:list all log files' \
'ls:list all log files' \
'read:read one or all files to stdout' \
'query:query logs with SQL' \
'search:search the tantivy index' \
'help:Print this message or the help of the given subcommand(s)' \
)
_describe -t commands 'ordinary app logs commands' commands "$@"
}
(( $+functions[_ordinary__subcmd__app__subcmd__logs__subcmd__help_commands] )) ||
_ordinary__subcmd__app__subcmd__logs__subcmd__help_commands() {
local commands; commands=(
'sync:sync files, indexes and tables' \
'list:list all log files' \
'read:read one or all files to stdout' \
'query:query logs with SQL' \
'search:search the tantivy index' \
'help:Print this message or the help of the given subcommand(s)' \
)
_describe -t commands 'ordinary app logs help commands' commands "$@"
}
(( $+functions[_ordinary__subcmd__app__subcmd__logs__subcmd__help__subcmd__help_commands] )) ||
_ordinary__subcmd__app__subcmd__logs__subcmd__help__subcmd__help_commands() {
local commands; commands=()
_describe -t commands 'ordinary app logs help help commands' commands "$@"
}
(( $+functions[_ordinary__subcmd__app__subcmd__logs__subcmd__help__subcmd__list_commands] )) ||
_ordinary__subcmd__app__subcmd__logs__subcmd__help__subcmd__list_commands() {
local commands; commands=()
_describe -t commands 'ordinary app logs help list commands' commands "$@"
}
(( $+functions[_ordinary__subcmd__app__subcmd__logs__subcmd__help__subcmd__query_commands] )) ||
_ordinary__subcmd__app__subcmd__logs__subcmd__help__subcmd__query_commands() {
local commands; commands=()
_describe -t commands 'ordinary app logs help query commands' commands "$@"
}
(( $+functions[_ordinary__subcmd__app__subcmd__logs__subcmd__help__subcmd__read_commands] )) ||
_ordinary__subcmd__app__subcmd__logs__subcmd__help__subcmd__read_commands() {
local commands; commands=()
_describe -t commands 'ordinary app logs help read commands' commands "$@"
}
(( $+functions[_ordinary__subcmd__app__subcmd__logs__subcmd__help__subcmd__search_commands] )) ||
_ordinary__subcmd__app__subcmd__logs__subcmd__help__subcmd__search_commands() {
local commands; commands=()
_describe -t commands 'ordinary app logs help search commands' commands "$@"
}
(( $+functions[_ordinary__subcmd__app__subcmd__logs__subcmd__help__subcmd__sync_commands] )) ||
_ordinary__subcmd__app__subcmd__logs__subcmd__help__subcmd__sync_commands() {
local commands; commands=(
'info:get information about remote and local log files' \
'file:sync a single file' \
'all:repair local state for all out of sync (⚠️) and remote files not yet downloaded (❌)' \
)
_describe -t commands 'ordinary app logs help sync commands' commands "$@"
}
(( $+functions[_ordinary__subcmd__app__subcmd__logs__subcmd__help__subcmd__sync__subcmd__all_commands] )) ||
_ordinary__subcmd__app__subcmd__logs__subcmd__help__subcmd__sync__subcmd__all_commands() {
local commands; commands=()
_describe -t commands 'ordinary app logs help sync all commands' commands "$@"
}
(( $+functions[_ordinary__subcmd__app__subcmd__logs__subcmd__help__subcmd__sync__subcmd__file_commands] )) ||
_ordinary__subcmd__app__subcmd__logs__subcmd__help__subcmd__sync__subcmd__file_commands() {
local commands; commands=()
_describe -t commands 'ordinary app logs help sync file commands' commands "$@"
}
(( $+functions[_ordinary__subcmd__app__subcmd__logs__subcmd__help__subcmd__sync__subcmd__info_commands] )) ||
_ordinary__subcmd__app__subcmd__logs__subcmd__help__subcmd__sync__subcmd__info_commands() {
local commands; commands=()
_describe -t commands 'ordinary app logs help sync info commands' commands "$@"
}
(( $+functions[_ordinary__subcmd__app__subcmd__logs__subcmd__list_commands] )) ||
_ordinary__subcmd__app__subcmd__logs__subcmd__list_commands() {
local commands; commands=()
_describe -t commands 'ordinary app logs list commands' commands "$@"
}
(( $+functions[_ordinary__subcmd__app__subcmd__logs__subcmd__query_commands] )) ||
_ordinary__subcmd__app__subcmd__logs__subcmd__query_commands() {
local commands; commands=()
_describe -t commands 'ordinary app logs query commands' commands "$@"
}
(( $+functions[_ordinary__subcmd__app__subcmd__logs__subcmd__read_commands] )) ||
_ordinary__subcmd__app__subcmd__logs__subcmd__read_commands() {
local commands; commands=()
_describe -t commands 'ordinary app logs read commands' commands "$@"
}
(( $+functions[_ordinary__subcmd__app__subcmd__logs__subcmd__search_commands] )) ||
_ordinary__subcmd__app__subcmd__logs__subcmd__search_commands() {
local commands; commands=()
_describe -t commands 'ordinary app logs search commands' commands "$@"
}
(( $+functions[_ordinary__subcmd__app__subcmd__logs__subcmd__sync_commands] )) ||
_ordinary__subcmd__app__subcmd__logs__subcmd__sync_commands() {
local commands; commands=(
'info:get information about remote and local log files' \
'file:sync a single file' \
'all:repair local state for all out of sync (⚠️) and remote files not yet downloaded (❌)' \
'help:Print this message or the help of the given subcommand(s)' \
)
_describe -t commands 'ordinary app logs sync commands' commands "$@"
}
(( $+functions[_ordinary__subcmd__app__subcmd__logs__subcmd__sync__subcmd__all_commands] )) ||
_ordinary__subcmd__app__subcmd__logs__subcmd__sync__subcmd__all_commands() {
local commands; commands=()
_describe -t commands 'ordinary app logs sync all commands' commands "$@"
}
(( $+functions[_ordinary__subcmd__app__subcmd__logs__subcmd__sync__subcmd__file_commands] )) ||
_ordinary__subcmd__app__subcmd__logs__subcmd__sync__subcmd__file_commands() {
local commands; commands=()
_describe -t commands 'ordinary app logs sync file commands' commands "$@"
}
(( $+functions[_ordinary__subcmd__app__subcmd__logs__subcmd__sync__subcmd__help_commands] )) ||
_ordinary__subcmd__app__subcmd__logs__subcmd__sync__subcmd__help_commands() {
local commands; commands=(
'info:get information about remote and local log files' \
'file:sync a single file' \
'all:repair local state for all out of sync (⚠️) and remote files not yet downloaded (❌)' \
'help:Print this message or the help of the given subcommand(s)' \
)
_describe -t commands 'ordinary app logs sync help commands' commands "$@"
}
(( $+functions[_ordinary__subcmd__app__subcmd__logs__subcmd__sync__subcmd__help__subcmd__all_commands] )) ||
_ordinary__subcmd__app__subcmd__logs__subcmd__sync__subcmd__help__subcmd__all_commands() {
local commands; commands=()
_describe -t commands 'ordinary app logs sync help all commands' commands "$@"
}
(( $+functions[_ordinary__subcmd__app__subcmd__logs__subcmd__sync__subcmd__help__subcmd__file_commands] )) ||
_ordinary__subcmd__app__subcmd__logs__subcmd__sync__subcmd__help__subcmd__file_commands() {
local commands; commands=()
_describe -t commands 'ordinary app logs sync help file commands' commands "$@"
}
(( $+functions[_ordinary__subcmd__app__subcmd__logs__subcmd__sync__subcmd__help__subcmd__help_commands] )) ||
_ordinary__subcmd__app__subcmd__logs__subcmd__sync__subcmd__help__subcmd__help_commands() {
local commands; commands=()
_describe -t commands 'ordinary app logs sync help help commands' commands "$@"
}
(( $+functions[_ordinary__subcmd__app__subcmd__logs__subcmd__sync__subcmd__help__subcmd__info_commands] )) ||
_ordinary__subcmd__app__subcmd__logs__subcmd__sync__subcmd__help__subcmd__info_commands() {
local commands; commands=()
_describe -t commands 'ordinary app logs sync help info commands' commands "$@"
}
(( $+functions[_ordinary__subcmd__app__subcmd__logs__subcmd__sync__subcmd__info_commands] )) ||
_ordinary__subcmd__app__subcmd__logs__subcmd__sync__subcmd__info_commands() {
local commands; commands=()
_describe -t commands 'ordinary app logs sync info commands' commands "$@"
}
(( $+functions[_ordinary__subcmd__app__subcmd__new_commands] )) ||
_ordinary__subcmd__app__subcmd__new_commands() {
local commands; commands=()
_describe -t commands 'ordinary app new commands' commands "$@"
}
(( $+functions[_ordinary__subcmd__app__subcmd__publish_commands] )) ||
_ordinary__subcmd__app__subcmd__publish_commands() {
local commands; commands=()
_describe -t commands 'ordinary app publish commands' commands "$@"
}
(( $+functions[_ordinary__subcmd__app__subcmd__restart_commands] )) ||
_ordinary__subcmd__app__subcmd__restart_commands() {
local commands; commands=()
_describe -t commands 'ordinary app restart commands' commands "$@"
}
(( $+functions[_ordinary__subcmd__app__subcmd__routes_commands] )) ||
_ordinary__subcmd__app__subcmd__routes_commands() {
local commands; commands=()
_describe -t commands 'ordinary app routes commands' commands "$@"
}
(( $+functions[_ordinary__subcmd__app__subcmd__secrets_commands] )) ||
_ordinary__subcmd__app__subcmd__secrets_commands() {
local commands; commands=(
'store:store an application secret' \
'help:Print this message or the help of the given subcommand(s)' \
)
_describe -t commands 'ordinary app secrets commands' commands "$@"
}
(( $+functions[_ordinary__subcmd__app__subcmd__secrets__subcmd__help_commands] )) ||
_ordinary__subcmd__app__subcmd__secrets__subcmd__help_commands() {
local commands; commands=(
'store:store an application secret' \
'help:Print this message or the help of the given subcommand(s)' \
)
_describe -t commands 'ordinary app secrets help commands' commands "$@"
}
(( $+functions[_ordinary__subcmd__app__subcmd__secrets__subcmd__help__subcmd__help_commands] )) ||
_ordinary__subcmd__app__subcmd__secrets__subcmd__help__subcmd__help_commands() {
local commands; commands=()
_describe -t commands 'ordinary app secrets help help commands' commands "$@"
}
(( $+functions[_ordinary__subcmd__app__subcmd__secrets__subcmd__help__subcmd__store_commands] )) ||
_ordinary__subcmd__app__subcmd__secrets__subcmd__help__subcmd__store_commands() {
local commands; commands=()
_describe -t commands 'ordinary app secrets help store commands' commands "$@"
}
(( $+functions[_ordinary__subcmd__app__subcmd__secrets__subcmd__store_commands] )) ||
_ordinary__subcmd__app__subcmd__secrets__subcmd__store_commands() {
local commands; commands=()
_describe -t commands 'ordinary app secrets store commands' commands "$@"
}
(( $+functions[_ordinary__subcmd__app__subcmd__start_commands] )) ||
_ordinary__subcmd__app__subcmd__start_commands() {
local commands; commands=()
_describe -t commands 'ordinary app start commands' commands "$@"
}
(( $+functions[_ordinary__subcmd__doctor_commands] )) ||
_ordinary__subcmd__doctor_commands() {
local commands; commands=()
_describe -t commands 'ordinary doctor commands' commands "$@"
}
(( $+functions[_ordinary__subcmd__help_commands] )) ||
_ordinary__subcmd__help_commands() {
local commands; commands=(
'app:manage applications running on \`ordinaryd\`' \
'ssg:manage static site configuration' \
'host:manage an \`ordinaryd\` instance' \
'doctor:ensure that all the correct system components are installed' \
'utils:utility functions for aiding project development' \
'help:Print this message or the help of the given subcommand(s)' \
)
_describe -t commands 'ordinary help commands' commands "$@"
}
(( $+functions[_ordinary__subcmd__help__subcmd__app_commands] )) ||
_ordinary__subcmd__help__subcmd__app_commands() {
local commands; commands=(
'new:create a new Ordinary project' \
'build:build your Ordinary app' \
'start:start the app, locally' \
'publish:combines \`build\`, \`deploy\`, \`assets write\`, and \`functions upload\`' \
'deploy:deploy a changes to ordinary.json' \
'kill:kill a running instance of the application' \
'restart:restart a deployed/running instance of the application on \`ordinaryd\`' \
'erase:fully erase all content of the application from the host' \
'logs:query application logs' \
'assets:manage assets in your Ordinary project' \
'accounts:manage application accounts' \
'functions:manage functions on your Ordinary app' \
'database:manage database models in your Ordinary app' \
'secrets:manage secrets in your Ordinary application' \
'config:view and validate the app config' \
'routes:list all HTTP routes' \
)
_describe -t commands 'ordinary help app commands' commands "$@"
}
(( $+functions[_ordinary__subcmd__help__subcmd__app__subcmd__accounts_commands] )) ||
_ordinary__subcmd__help__subcmd__app__subcmd__accounts_commands() {
local commands; commands=(
'list:list application accounts' \
)
_describe -t commands 'ordinary help app accounts commands' commands "$@"
}
(( $+functions[_ordinary__subcmd__help__subcmd__app__subcmd__accounts__subcmd__list_commands] )) ||
_ordinary__subcmd__help__subcmd__app__subcmd__accounts__subcmd__list_commands() {
local commands; commands=()
_describe -t commands 'ordinary help app accounts list commands' commands "$@"
}
(( $+functions[_ordinary__subcmd__help__subcmd__app__subcmd__assets_commands] )) ||
_ordinary__subcmd__help__subcmd__app__subcmd__assets_commands() {
local commands; commands=(
'write:write assets to application running on \`ordinaryd\` instance' \
'prune:prune all assets on the server that are not known locally' \
'delete:deletes assets on the server' \
)
_describe -t commands 'ordinary help app assets commands' commands "$@"
}
(( $+functions[_ordinary__subcmd__help__subcmd__app__subcmd__assets__subcmd__delete_commands] )) ||
_ordinary__subcmd__help__subcmd__app__subcmd__assets__subcmd__delete_commands() {
local commands; commands=()
_describe -t commands 'ordinary help app assets delete commands' commands "$@"
}
(( $+functions[_ordinary__subcmd__help__subcmd__app__subcmd__assets__subcmd__prune_commands] )) ||
_ordinary__subcmd__help__subcmd__app__subcmd__assets__subcmd__prune_commands() {
local commands; commands=()
_describe -t commands 'ordinary help app assets prune commands' commands "$@"
}
(( $+functions[_ordinary__subcmd__help__subcmd__app__subcmd__assets__subcmd__write_commands] )) ||
_ordinary__subcmd__help__subcmd__app__subcmd__assets__subcmd__write_commands() {
local commands; commands=()
_describe -t commands 'ordinary help app assets write commands' commands "$@"
}
(( $+functions[_ordinary__subcmd__help__subcmd__app__subcmd__build_commands] )) ||
_ordinary__subcmd__help__subcmd__app__subcmd__build_commands() {
local commands; commands=()
_describe -t commands 'ordinary help app build commands' commands "$@"
}
(( $+functions[_ordinary__subcmd__help__subcmd__app__subcmd__config_commands] )) ||
_ordinary__subcmd__help__subcmd__app__subcmd__config_commands() {
local commands; commands=(
'view:view the config that will be produced and used by operations that depend on its assembled state' \
'validate:validate the existing config in an assembled state' \
)
_describe -t commands 'ordinary help app config commands' commands "$@"
}
(( $+functions[_ordinary__subcmd__help__subcmd__app__subcmd__config__subcmd__validate_commands] )) ||
_ordinary__subcmd__help__subcmd__app__subcmd__config__subcmd__validate_commands() {
local commands; commands=()
_describe -t commands 'ordinary help app config validate commands' commands "$@"
}
(( $+functions[_ordinary__subcmd__help__subcmd__app__subcmd__config__subcmd__view_commands] )) ||
_ordinary__subcmd__help__subcmd__app__subcmd__config__subcmd__view_commands() {
local commands; commands=()
_describe -t commands 'ordinary help app config view commands' commands "$@"
}
(( $+functions[_ordinary__subcmd__help__subcmd__app__subcmd__database_commands] )) ||
_ordinary__subcmd__help__subcmd__app__subcmd__database_commands() {
local commands; commands=(
'seed:seed the database if the \`seed_path\` is set' \
'models:' \
'items:manage model items for the application running on an \`ordinaryd\` instance' \
)
_describe -t commands 'ordinary help app database commands' commands "$@"
}
(( $+functions[_ordinary__subcmd__help__subcmd__app__subcmd__database__subcmd__items_commands] )) ||
_ordinary__subcmd__help__subcmd__app__subcmd__database__subcmd__items_commands() {
local commands; commands=(
'list:list model items for the application running on an \`ordinaryd\` instance' \
)
_describe -t commands 'ordinary help app database items commands' commands "$@"
}
(( $+functions[_ordinary__subcmd__help__subcmd__app__subcmd__database__subcmd__items__subcmd__list_commands] )) ||
_ordinary__subcmd__help__subcmd__app__subcmd__database__subcmd__items__subcmd__list_commands() {
local commands; commands=()
_describe -t commands 'ordinary help app database items list commands' commands "$@"
}
(( $+functions[_ordinary__subcmd__help__subcmd__app__subcmd__database__subcmd__models_commands] )) ||
_ordinary__subcmd__help__subcmd__app__subcmd__database__subcmd__models_commands() {
local commands; commands=(
'add:add a new model to your Ordinary project' \
)
_describe -t commands 'ordinary help app database models commands' commands "$@"
}
(( $+functions[_ordinary__subcmd__help__subcmd__app__subcmd__database__subcmd__models__subcmd__add_commands] )) ||
_ordinary__subcmd__help__subcmd__app__subcmd__database__subcmd__models__subcmd__add_commands() {
local commands; commands=()
_describe -t commands 'ordinary help app database models add commands' commands "$@"
}
(( $+functions[_ordinary__subcmd__help__subcmd__app__subcmd__database__subcmd__seed_commands] )) ||
_ordinary__subcmd__help__subcmd__app__subcmd__database__subcmd__seed_commands() {
local commands; commands=()
_describe -t commands 'ordinary help app database seed commands' commands "$@"
}
(( $+functions[_ordinary__subcmd__help__subcmd__app__subcmd__deploy_commands] )) ||
_ordinary__subcmd__help__subcmd__app__subcmd__deploy_commands() {
local commands; commands=()
_describe -t commands 'ordinary help app deploy commands' commands "$@"
}
(( $+functions[_ordinary__subcmd__help__subcmd__app__subcmd__erase_commands] )) ||
_ordinary__subcmd__help__subcmd__app__subcmd__erase_commands() {
local commands; commands=()
_describe -t commands 'ordinary help app erase commands' commands "$@"
}
(( $+functions[_ordinary__subcmd__help__subcmd__app__subcmd__functions_commands] )) ||
_ordinary__subcmd__help__subcmd__app__subcmd__functions_commands() {
local commands; commands=(
'add:add a new function to your Ordinary project' \
'build:build just the functions' \
'upload:upload functions to application running on \`ordinaryd\` instance' \
)
_describe -t commands 'ordinary help app functions commands' commands "$@"
}
(( $+functions[_ordinary__subcmd__help__subcmd__app__subcmd__functions__subcmd__add_commands] )) ||
_ordinary__subcmd__help__subcmd__app__subcmd__functions__subcmd__add_commands() {
local commands; commands=()
_describe -t commands 'ordinary help app functions add commands' commands "$@"
}
(( $+functions[_ordinary__subcmd__help__subcmd__app__subcmd__functions__subcmd__build_commands] )) ||
_ordinary__subcmd__help__subcmd__app__subcmd__functions__subcmd__build_commands() {
local commands; commands=()
_describe -t commands 'ordinary help app functions build commands' commands "$@"
}
(( $+functions[_ordinary__subcmd__help__subcmd__app__subcmd__functions__subcmd__upload_commands] )) ||
_ordinary__subcmd__help__subcmd__app__subcmd__functions__subcmd__upload_commands() {
local commands; commands=()
_describe -t commands 'ordinary help app functions upload commands' commands "$@"
}
(( $+functions[_ordinary__subcmd__help__subcmd__app__subcmd__kill_commands] )) ||
_ordinary__subcmd__help__subcmd__app__subcmd__kill_commands() {
local commands; commands=()
_describe -t commands 'ordinary help app kill commands' commands "$@"
}
(( $+functions[_ordinary__subcmd__help__subcmd__app__subcmd__logs_commands] )) ||
_ordinary__subcmd__help__subcmd__app__subcmd__logs_commands() {
local commands; commands=(
'sync:sync files, indexes and tables' \
'list:list all log files' \
'read:read one or all files to stdout' \
'query:query logs with SQL' \
'search:search the tantivy index' \
)
_describe -t commands 'ordinary help app logs commands' commands "$@"
}
(( $+functions[_ordinary__subcmd__help__subcmd__app__subcmd__logs__subcmd__list_commands] )) ||
_ordinary__subcmd__help__subcmd__app__subcmd__logs__subcmd__list_commands() {
local commands; commands=()
_describe -t commands 'ordinary help app logs list commands' commands "$@"
}
(( $+functions[_ordinary__subcmd__help__subcmd__app__subcmd__logs__subcmd__query_commands] )) ||
_ordinary__subcmd__help__subcmd__app__subcmd__logs__subcmd__query_commands() {
local commands; commands=()
_describe -t commands 'ordinary help app logs query commands' commands "$@"
}
(( $+functions[_ordinary__subcmd__help__subcmd__app__subcmd__logs__subcmd__read_commands] )) ||
_ordinary__subcmd__help__subcmd__app__subcmd__logs__subcmd__read_commands() {
local commands; commands=()
_describe -t commands 'ordinary help app logs read commands' commands "$@"
}
(( $+functions[_ordinary__subcmd__help__subcmd__app__subcmd__logs__subcmd__search_commands] )) ||
_ordinary__subcmd__help__subcmd__app__subcmd__logs__subcmd__search_commands() {
local commands; commands=()
_describe -t commands 'ordinary help app logs search commands' commands "$@"
}
(( $+functions[_ordinary__subcmd__help__subcmd__app__subcmd__logs__subcmd__sync_commands] )) ||
_ordinary__subcmd__help__subcmd__app__subcmd__logs__subcmd__sync_commands() {
local commands; commands=(
'info:get information about remote and local log files' \
'file:sync a single file' \
'all:repair local state for all out of sync (⚠️) and remote files not yet downloaded (❌)' \
)
_describe -t commands 'ordinary help app logs sync commands' commands "$@"
}
(( $+functions[_ordinary__subcmd__help__subcmd__app__subcmd__logs__subcmd__sync__subcmd__all_commands] )) ||
_ordinary__subcmd__help__subcmd__app__subcmd__logs__subcmd__sync__subcmd__all_commands() {
local commands; commands=()
_describe -t commands 'ordinary help app logs sync all commands' commands "$@"
}
(( $+functions[_ordinary__subcmd__help__subcmd__app__subcmd__logs__subcmd__sync__subcmd__file_commands] )) ||
_ordinary__subcmd__help__subcmd__app__subcmd__logs__subcmd__sync__subcmd__file_commands() {
local commands; commands=()
_describe -t commands 'ordinary help app logs sync file commands' commands "$@"
}
(( $+functions[_ordinary__subcmd__help__subcmd__app__subcmd__logs__subcmd__sync__subcmd__info_commands] )) ||
_ordinary__subcmd__help__subcmd__app__subcmd__logs__subcmd__sync__subcmd__info_commands() {
local commands; commands=()
_describe -t commands 'ordinary help app logs sync info commands' commands "$@"
}
(( $+functions[_ordinary__subcmd__help__subcmd__app__subcmd__new_commands] )) ||
_ordinary__subcmd__help__subcmd__app__subcmd__new_commands() {
local commands; commands=()
_describe -t commands 'ordinary help app new commands' commands "$@"
}
(( $+functions[_ordinary__subcmd__help__subcmd__app__subcmd__publish_commands] )) ||
_ordinary__subcmd__help__subcmd__app__subcmd__publish_commands() {
local commands; commands=()
_describe -t commands 'ordinary help app publish commands' commands "$@"
}
(( $+functions[_ordinary__subcmd__help__subcmd__app__subcmd__restart_commands] )) ||
_ordinary__subcmd__help__subcmd__app__subcmd__restart_commands() {
local commands; commands=()
_describe -t commands 'ordinary help app restart commands' commands "$@"
}
(( $+functions[_ordinary__subcmd__help__subcmd__app__subcmd__routes_commands] )) ||
_ordinary__subcmd__help__subcmd__app__subcmd__routes_commands() {
local commands; commands=()
_describe -t commands 'ordinary help app routes commands' commands "$@"
}
(( $+functions[_ordinary__subcmd__help__subcmd__app__subcmd__secrets_commands] )) ||
_ordinary__subcmd__help__subcmd__app__subcmd__secrets_commands() {
local commands; commands=(
'store:store an application secret' \
)
_describe -t commands 'ordinary help app secrets commands' commands "$@"
}
(( $+functions[_ordinary__subcmd__help__subcmd__app__subcmd__secrets__subcmd__store_commands] )) ||
_ordinary__subcmd__help__subcmd__app__subcmd__secrets__subcmd__store_commands() {
local commands; commands=()
_describe -t commands 'ordinary help app secrets store commands' commands "$@"
}
(( $+functions[_ordinary__subcmd__help__subcmd__app__subcmd__start_commands] )) ||
_ordinary__subcmd__help__subcmd__app__subcmd__start_commands() {
local commands; commands=()
_describe -t commands 'ordinary help app start commands' commands "$@"
}
(( $+functions[_ordinary__subcmd__help__subcmd__doctor_commands] )) ||
_ordinary__subcmd__help__subcmd__doctor_commands() {
local commands; commands=()
_describe -t commands 'ordinary help doctor commands' commands "$@"
}
(( $+functions[_ordinary__subcmd__help__subcmd__help_commands] )) ||
_ordinary__subcmd__help__subcmd__help_commands() {
local commands; commands=()
_describe -t commands 'ordinary help help commands' commands "$@"
}
(( $+functions[_ordinary__subcmd__help__subcmd__host_commands] )) ||
_ordinary__subcmd__help__subcmd__host_commands() {
local commands; commands=(
'info:get system and process info for the Ordinary API server' \
'metrics:get proxied service metrics' \
'logs:query system and application logs' \
'accounts:manage accounts connected to \`ordinaryd\`' \
'moderation:tools for moderation' \
)
_describe -t commands 'ordinary help host commands' commands "$@"
}
(( $+functions[_ordinary__subcmd__help__subcmd__host__subcmd__accounts_commands] )) ||
_ordinary__subcmd__help__subcmd__host__subcmd__accounts_commands() {
local commands; commands=(
'register:register a new account' \
'login:log in to an existing account' \
'logout:log out of a logged in account' \
'access:access management subcommands' \
'password:password management' \
'mfa:MFA management' \
'recovery-codes:recovery code management' \
'delete:delete account' \
'invite:invite another user to a project' \
'current:display info for current account' \
'list:list all logged in accounts' \
'switch:switch to a different logged in account' \
)
_describe -t commands 'ordinary help host accounts commands' commands "$@"
}
(( $+functions[_ordinary__subcmd__help__subcmd__host__subcmd__accounts__subcmd__access_commands] )) ||
_ordinary__subcmd__help__subcmd__host__subcmd__accounts__subcmd__access_commands() {
local commands; commands=(
'get:get access' \
)
_describe -t commands 'ordinary help host accounts access commands' commands "$@"
}
(( $+functions[_ordinary__subcmd__help__subcmd__host__subcmd__accounts__subcmd__access__subcmd__get_commands] )) ||
_ordinary__subcmd__help__subcmd__host__subcmd__accounts__subcmd__access__subcmd__get_commands() {
local commands; commands=()
_describe -t commands 'ordinary help host accounts access get commands' commands "$@"
}
(( $+functions[_ordinary__subcmd__help__subcmd__host__subcmd__accounts__subcmd__current_commands] )) ||
_ordinary__subcmd__help__subcmd__host__subcmd__accounts__subcmd__current_commands() {
local commands; commands=()
_describe -t commands 'ordinary help host accounts current commands' commands "$@"
}
(( $+functions[_ordinary__subcmd__help__subcmd__host__subcmd__accounts__subcmd__delete_commands] )) ||
_ordinary__subcmd__help__subcmd__host__subcmd__accounts__subcmd__delete_commands() {
local commands; commands=()
_describe -t commands 'ordinary help host accounts delete commands' commands "$@"
}
(( $+functions[_ordinary__subcmd__help__subcmd__host__subcmd__accounts__subcmd__invite_commands] )) ||
_ordinary__subcmd__help__subcmd__host__subcmd__accounts__subcmd__invite_commands() {
local commands; commands=()
_describe -t commands 'ordinary help host accounts invite commands' commands "$@"
}
(( $+functions[_ordinary__subcmd__help__subcmd__host__subcmd__accounts__subcmd__list_commands] )) ||
_ordinary__subcmd__help__subcmd__host__subcmd__accounts__subcmd__list_commands() {
local commands; commands=()
_describe -t commands 'ordinary help host accounts list commands' commands "$@"
}
(( $+functions[_ordinary__subcmd__help__subcmd__host__subcmd__accounts__subcmd__login_commands] )) ||
_ordinary__subcmd__help__subcmd__host__subcmd__accounts__subcmd__login_commands() {
local commands; commands=()
_describe -t commands 'ordinary help host accounts login commands' commands "$@"
}
(( $+functions[_ordinary__subcmd__help__subcmd__host__subcmd__accounts__subcmd__logout_commands] )) ||
_ordinary__subcmd__help__subcmd__host__subcmd__accounts__subcmd__logout_commands() {
local commands; commands=()
_describe -t commands 'ordinary help host accounts logout commands' commands "$@"
}
(( $+functions[_ordinary__subcmd__help__subcmd__host__subcmd__accounts__subcmd__mfa_commands] )) ||
_ordinary__subcmd__help__subcmd__host__subcmd__accounts__subcmd__mfa_commands() {
local commands; commands=(
'reset:reset MFA TOTP secret' \
'lost:recovery MFA TOTP secret' \
)
_describe -t commands 'ordinary help host accounts mfa commands' commands "$@"
}
(( $+functions[_ordinary__subcmd__help__subcmd__host__subcmd__accounts__subcmd__mfa__subcmd__lost_commands] )) ||
_ordinary__subcmd__help__subcmd__host__subcmd__accounts__subcmd__mfa__subcmd__lost_commands() {
local commands; commands=()
_describe -t commands 'ordinary help host accounts mfa lost commands' commands "$@"
}
(( $+functions[_ordinary__subcmd__help__subcmd__host__subcmd__accounts__subcmd__mfa__subcmd__reset_commands] )) ||
_ordinary__subcmd__help__subcmd__host__subcmd__accounts__subcmd__mfa__subcmd__reset_commands() {
local commands; commands=()
_describe -t commands 'ordinary help host accounts mfa reset commands' commands "$@"
}
(( $+functions[_ordinary__subcmd__help__subcmd__host__subcmd__accounts__subcmd__password_commands] )) ||
_ordinary__subcmd__help__subcmd__host__subcmd__accounts__subcmd__password_commands() {
local commands; commands=(
'reset:reset your password' \
'forgot:recover your password' \
)
_describe -t commands 'ordinary help host accounts password commands' commands "$@"
}
(( $+functions[_ordinary__subcmd__help__subcmd__host__subcmd__accounts__subcmd__password__subcmd__forgot_commands] )) ||
_ordinary__subcmd__help__subcmd__host__subcmd__accounts__subcmd__password__subcmd__forgot_commands() {
local commands; commands=()
_describe -t commands 'ordinary help host accounts password forgot commands' commands "$@"
}
(( $+functions[_ordinary__subcmd__help__subcmd__host__subcmd__accounts__subcmd__password__subcmd__reset_commands] )) ||
_ordinary__subcmd__help__subcmd__host__subcmd__accounts__subcmd__password__subcmd__reset_commands() {
local commands; commands=()
_describe -t commands 'ordinary help host accounts password reset commands' commands "$@"
}
(( $+functions[_ordinary__subcmd__help__subcmd__host__subcmd__accounts__subcmd__recovery-codes_commands] )) ||
_ordinary__subcmd__help__subcmd__host__subcmd__accounts__subcmd__recovery-codes_commands() {
local commands; commands=(
'reset:reset recovery codes' \
)
_describe -t commands 'ordinary help host accounts recovery-codes commands' commands "$@"
}
(( $+functions[_ordinary__subcmd__help__subcmd__host__subcmd__accounts__subcmd__recovery-codes__subcmd__reset_commands] )) ||
_ordinary__subcmd__help__subcmd__host__subcmd__accounts__subcmd__recovery-codes__subcmd__reset_commands() {
local commands; commands=()
_describe -t commands 'ordinary help host accounts recovery-codes reset commands' commands "$@"
}
(( $+functions[_ordinary__subcmd__help__subcmd__host__subcmd__accounts__subcmd__register_commands] )) ||
_ordinary__subcmd__help__subcmd__host__subcmd__accounts__subcmd__register_commands() {
local commands; commands=()
_describe -t commands 'ordinary help host accounts register commands' commands "$@"
}
(( $+functions[_ordinary__subcmd__help__subcmd__host__subcmd__accounts__subcmd__switch_commands] )) ||
_ordinary__subcmd__help__subcmd__host__subcmd__accounts__subcmd__switch_commands() {
local commands; commands=()
_describe -t commands 'ordinary help host accounts switch commands' commands "$@"
}
(( $+functions[_ordinary__subcmd__help__subcmd__host__subcmd__info_commands] )) ||
_ordinary__subcmd__help__subcmd__host__subcmd__info_commands() {
local commands; commands=()
_describe -t commands 'ordinary help host info commands' commands "$@"
}
(( $+functions[_ordinary__subcmd__help__subcmd__host__subcmd__logs_commands] )) ||
_ordinary__subcmd__help__subcmd__host__subcmd__logs_commands() {
local commands; commands=(
'sync:sync files, indexes and tables' \
'list:list all log files' \
'read:read one or all files to stdout' \
'query:query logs with SQL' \
'search:search the tantivy index' \
)
_describe -t commands 'ordinary help host logs commands' commands "$@"
}
(( $+functions[_ordinary__subcmd__help__subcmd__host__subcmd__logs__subcmd__list_commands] )) ||
_ordinary__subcmd__help__subcmd__host__subcmd__logs__subcmd__list_commands() {
local commands; commands=()
_describe -t commands 'ordinary help host logs list commands' commands "$@"
}
(( $+functions[_ordinary__subcmd__help__subcmd__host__subcmd__logs__subcmd__query_commands] )) ||
_ordinary__subcmd__help__subcmd__host__subcmd__logs__subcmd__query_commands() {
local commands; commands=()
_describe -t commands 'ordinary help host logs query commands' commands "$@"
}
(( $+functions[_ordinary__subcmd__help__subcmd__host__subcmd__logs__subcmd__read_commands] )) ||
_ordinary__subcmd__help__subcmd__host__subcmd__logs__subcmd__read_commands() {
local commands; commands=()
_describe -t commands 'ordinary help host logs read commands' commands "$@"
}
(( $+functions[_ordinary__subcmd__help__subcmd__host__subcmd__logs__subcmd__search_commands] )) ||
_ordinary__subcmd__help__subcmd__host__subcmd__logs__subcmd__search_commands() {
local commands; commands=()
_describe -t commands 'ordinary help host logs search commands' commands "$@"
}
(( $+functions[_ordinary__subcmd__help__subcmd__host__subcmd__logs__subcmd__sync_commands] )) ||
_ordinary__subcmd__help__subcmd__host__subcmd__logs__subcmd__sync_commands() {
local commands; commands=(
'info:get information about remote and local log files' \
'file:sync a single file' \
'all:repair local state for all out of sync (⚠️) and remote files not yet downloaded (❌)' \
)
_describe -t commands 'ordinary help host logs sync commands' commands "$@"
}
(( $+functions[_ordinary__subcmd__help__subcmd__host__subcmd__logs__subcmd__sync__subcmd__all_commands] )) ||
_ordinary__subcmd__help__subcmd__host__subcmd__logs__subcmd__sync__subcmd__all_commands() {
local commands; commands=()
_describe -t commands 'ordinary help host logs sync all commands' commands "$@"
}
(( $+functions[_ordinary__subcmd__help__subcmd__host__subcmd__logs__subcmd__sync__subcmd__file_commands] )) ||
_ordinary__subcmd__help__subcmd__host__subcmd__logs__subcmd__sync__subcmd__file_commands() {
local commands; commands=()
_describe -t commands 'ordinary help host logs sync file commands' commands "$@"
}
(( $+functions[_ordinary__subcmd__help__subcmd__host__subcmd__logs__subcmd__sync__subcmd__info_commands] )) ||
_ordinary__subcmd__help__subcmd__host__subcmd__logs__subcmd__sync__subcmd__info_commands() {
local commands; commands=()
_describe -t commands 'ordinary help host logs sync info commands' commands "$@"
}
(( $+functions[_ordinary__subcmd__help__subcmd__host__subcmd__metrics_commands] )) ||
_ordinary__subcmd__help__subcmd__host__subcmd__metrics_commands() {
local commands; commands=()
_describe -t commands 'ordinary help host metrics commands' commands "$@"
}
(( $+functions[_ordinary__subcmd__help__subcmd__host__subcmd__moderation_commands] )) ||
_ordinary__subcmd__help__subcmd__host__subcmd__moderation_commands() {
local commands; commands=(
'lock:lock resources to prevent abuse' \
'unlock:unlock resources upon resolution' \
)
_describe -t commands 'ordinary help host moderation commands' commands "$@"
}
(( $+functions[_ordinary__subcmd__help__subcmd__host__subcmd__moderation__subcmd__lock_commands] )) ||
_ordinary__subcmd__help__subcmd__host__subcmd__moderation__subcmd__lock_commands() {
local commands; commands=()
_describe -t commands 'ordinary help host moderation lock commands' commands "$@"
}
(( $+functions[_ordinary__subcmd__help__subcmd__host__subcmd__moderation__subcmd__unlock_commands] )) ||
_ordinary__subcmd__help__subcmd__host__subcmd__moderation__subcmd__unlock_commands() {
local commands; commands=()
_describe -t commands 'ordinary help host moderation unlock commands' commands "$@"
}
(( $+functions[_ordinary__subcmd__help__subcmd__ssg_commands] )) ||
_ordinary__subcmd__help__subcmd__ssg_commands() {
local commands; commands=(
'new:generate an \`ordinary.json\` config to deploy your SSG to a running instance of \`ordinaryd\`' \
)
_describe -t commands 'ordinary help ssg commands' commands "$@"
}
(( $+functions[_ordinary__subcmd__help__subcmd__ssg__subcmd__new_commands] )) ||
_ordinary__subcmd__help__subcmd__ssg__subcmd__new_commands() {
local commands; commands=()
_describe -t commands 'ordinary help ssg new commands' commands "$@"
}
(( $+functions[_ordinary__subcmd__help__subcmd__utils_commands] )) ||
_ordinary__subcmd__help__subcmd__utils_commands() {
local commands; commands=(
'uuid:generate a UUID' \
'timestamp:generate a UNIX timestamp for the current time (i.e. \`date +%s\`)' \
'html:utilities for managing HTML files' \
'css:utilities for managing CSS files' \
'js:utilities for managing JavaScript/TypeScript files' \
'markdown:utilities for manipulating Markdown files' \
'exif:utilities for manipulating exif data' \
'qr-code:tool for generating QR codes' \
)
_describe -t commands 'ordinary help utils commands' commands "$@"
}
(( $+functions[_ordinary__subcmd__help__subcmd__utils__subcmd__css_commands] )) ||
_ordinary__subcmd__help__subcmd__utils__subcmd__css_commands() {
local commands; commands=(
'minify:minify CSS files' \
)
_describe -t commands 'ordinary help utils css commands' commands "$@"
}
(( $+functions[_ordinary__subcmd__help__subcmd__utils__subcmd__css__subcmd__minify_commands] )) ||
_ordinary__subcmd__help__subcmd__utils__subcmd__css__subcmd__minify_commands() {
local commands; commands=()
_describe -t commands 'ordinary help utils css minify commands' commands "$@"
}
(( $+functions[_ordinary__subcmd__help__subcmd__utils__subcmd__exif_commands] )) ||
_ordinary__subcmd__help__subcmd__utils__subcmd__exif_commands() {
local commands; commands=(
'tool:\[\`exiftool\`\](https\://exiftool.org) command' \
)
_describe -t commands 'ordinary help utils exif commands' commands "$@"
}
(( $+functions[_ordinary__subcmd__help__subcmd__utils__subcmd__exif__subcmd__tool_commands] )) ||
_ordinary__subcmd__help__subcmd__utils__subcmd__exif__subcmd__tool_commands() {
local commands; commands=()
_describe -t commands 'ordinary help utils exif tool commands' commands "$@"
}
(( $+functions[_ordinary__subcmd__help__subcmd__utils__subcmd__html_commands] )) ||
_ordinary__subcmd__help__subcmd__utils__subcmd__html_commands() {
local commands; commands=(
'minify:minify HTML files' \
'csp-hashes:generate hashes for a Content-Security-Policy based on an HTML file and its inlined scripts/styles' \
)
_describe -t commands 'ordinary help utils html commands' commands "$@"
}
(( $+functions[_ordinary__subcmd__help__subcmd__utils__subcmd__html__subcmd__csp-hashes_commands] )) ||
_ordinary__subcmd__help__subcmd__utils__subcmd__html__subcmd__csp-hashes_commands() {
local commands; commands=()
_describe -t commands 'ordinary help utils html csp-hashes commands' commands "$@"
}
(( $+functions[_ordinary__subcmd__help__subcmd__utils__subcmd__html__subcmd__minify_commands] )) ||
_ordinary__subcmd__help__subcmd__utils__subcmd__html__subcmd__minify_commands() {
local commands; commands=()
_describe -t commands 'ordinary help utils html minify commands' commands "$@"
}
(( $+functions[_ordinary__subcmd__help__subcmd__utils__subcmd__js_commands] )) ||
_ordinary__subcmd__help__subcmd__utils__subcmd__js_commands() {
local commands; commands=(
'minify:minify JavaScript files' \
)
_describe -t commands 'ordinary help utils js commands' commands "$@"
}
(( $+functions[_ordinary__subcmd__help__subcmd__utils__subcmd__js__subcmd__minify_commands] )) ||
_ordinary__subcmd__help__subcmd__utils__subcmd__js__subcmd__minify_commands() {
local commands; commands=()
_describe -t commands 'ordinary help utils js minify commands' commands "$@"
}
(( $+functions[_ordinary__subcmd__help__subcmd__utils__subcmd__markdown_commands] )) ||
_ordinary__subcmd__help__subcmd__utils__subcmd__markdown_commands() {
local commands; commands=(
'to-html:process and place an .html file next to the referenced .md file' \
)
_describe -t commands 'ordinary help utils markdown commands' commands "$@"
}
(( $+functions[_ordinary__subcmd__help__subcmd__utils__subcmd__markdown__subcmd__to-html_commands] )) ||
_ordinary__subcmd__help__subcmd__utils__subcmd__markdown__subcmd__to-html_commands() {
local commands; commands=()
_describe -t commands 'ordinary help utils markdown to-html commands' commands "$@"
}
(( $+functions[_ordinary__subcmd__help__subcmd__utils__subcmd__qr-code_commands] )) ||
_ordinary__subcmd__help__subcmd__utils__subcmd__qr-code_commands() {
local commands; commands=()
_describe -t commands 'ordinary help utils qr-code commands' commands "$@"
}
(( $+functions[_ordinary__subcmd__help__subcmd__utils__subcmd__timestamp_commands] )) ||
_ordinary__subcmd__help__subcmd__utils__subcmd__timestamp_commands() {
local commands; commands=()
_describe -t commands 'ordinary help utils timestamp commands' commands "$@"
}
(( $+functions[_ordinary__subcmd__help__subcmd__utils__subcmd__uuid_commands] )) ||
_ordinary__subcmd__help__subcmd__utils__subcmd__uuid_commands() {
local commands; commands=()
_describe -t commands 'ordinary help utils uuid commands' commands "$@"
}
(( $+functions[_ordinary__subcmd__host_commands] )) ||
_ordinary__subcmd__host_commands() {
local commands; commands=(
'info:get system and process info for the Ordinary API server' \
'metrics:get proxied service metrics' \
'logs:query system and application logs' \
'accounts:manage accounts connected to \`ordinaryd\`' \
'account:manage accounts connected to \`ordinaryd\`' \
'accts:manage accounts connected to \`ordinaryd\`' \
'acct:manage accounts connected to \`ordinaryd\`' \
'moderation:tools for moderation' \
'help:Print this message or the help of the given subcommand(s)' \
)
_describe -t commands 'ordinary host commands' commands "$@"
}
(( $+functions[_ordinary__subcmd__host__subcmd__accounts_commands] )) ||
_ordinary__subcmd__host__subcmd__accounts_commands() {
local commands; commands=(
'register:register a new account' \
'login:log in to an existing account' \
'logout:log out of a logged in account' \
'access:access management subcommands' \
'password:password management' \
'mfa:MFA management' \
'recovery-codes:recovery code management' \
'delete:delete account' \
'invite:invite another user to a project' \
'current:display info for current account' \
'list:list all logged in accounts' \
'switch:switch to a different logged in account' \
'help:Print this message or the help of the given subcommand(s)' \
)
_describe -t commands 'ordinary host accounts commands' commands "$@"
}
(( $+functions[_ordinary__subcmd__host__subcmd__accounts__subcmd__access_commands] )) ||
_ordinary__subcmd__host__subcmd__accounts__subcmd__access_commands() {
local commands; commands=(
'get:get access' \
'help:Print this message or the help of the given subcommand(s)' \
)
_describe -t commands 'ordinary host accounts access commands' commands "$@"
}
(( $+functions[_ordinary__subcmd__host__subcmd__accounts__subcmd__access__subcmd__get_commands] )) ||
_ordinary__subcmd__host__subcmd__accounts__subcmd__access__subcmd__get_commands() {
local commands; commands=()
_describe -t commands 'ordinary host accounts access get commands' commands "$@"
}
(( $+functions[_ordinary__subcmd__host__subcmd__accounts__subcmd__access__subcmd__help_commands] )) ||
_ordinary__subcmd__host__subcmd__accounts__subcmd__access__subcmd__help_commands() {
local commands; commands=(
'get:get access' \
'help:Print this message or the help of the given subcommand(s)' \
)
_describe -t commands 'ordinary host accounts access help commands' commands "$@"
}
(( $+functions[_ordinary__subcmd__host__subcmd__accounts__subcmd__access__subcmd__help__subcmd__get_commands] )) ||
_ordinary__subcmd__host__subcmd__accounts__subcmd__access__subcmd__help__subcmd__get_commands() {
local commands; commands=()
_describe -t commands 'ordinary host accounts access help get commands' commands "$@"
}
(( $+functions[_ordinary__subcmd__host__subcmd__accounts__subcmd__access__subcmd__help__subcmd__help_commands] )) ||
_ordinary__subcmd__host__subcmd__accounts__subcmd__access__subcmd__help__subcmd__help_commands() {
local commands; commands=()
_describe -t commands 'ordinary host accounts access help help commands' commands "$@"
}
(( $+functions[_ordinary__subcmd__host__subcmd__accounts__subcmd__current_commands] )) ||
_ordinary__subcmd__host__subcmd__accounts__subcmd__current_commands() {
local commands; commands=()
_describe -t commands 'ordinary host accounts current commands' commands "$@"
}
(( $+functions[_ordinary__subcmd__host__subcmd__accounts__subcmd__delete_commands] )) ||
_ordinary__subcmd__host__subcmd__accounts__subcmd__delete_commands() {
local commands; commands=()
_describe -t commands 'ordinary host accounts delete commands' commands "$@"
}
(( $+functions[_ordinary__subcmd__host__subcmd__accounts__subcmd__help_commands] )) ||
_ordinary__subcmd__host__subcmd__accounts__subcmd__help_commands() {
local commands; commands=(
'register:register a new account' \
'login:log in to an existing account' \
'logout:log out of a logged in account' \
'access:access management subcommands' \
'password:password management' \
'mfa:MFA management' \
'recovery-codes:recovery code management' \
'delete:delete account' \
'invite:invite another user to a project' \
'current:display info for current account' \
'list:list all logged in accounts' \
'switch:switch to a different logged in account' \
'help:Print this message or the help of the given subcommand(s)' \
)
_describe -t commands 'ordinary host accounts help commands' commands "$@"
}
(( $+functions[_ordinary__subcmd__host__subcmd__accounts__subcmd__help__subcmd__access_commands] )) ||
_ordinary__subcmd__host__subcmd__accounts__subcmd__help__subcmd__access_commands() {
local commands; commands=(
'get:get access' \
)
_describe -t commands 'ordinary host accounts help access commands' commands "$@"
}
(( $+functions[_ordinary__subcmd__host__subcmd__accounts__subcmd__help__subcmd__access__subcmd__get_commands] )) ||
_ordinary__subcmd__host__subcmd__accounts__subcmd__help__subcmd__access__subcmd__get_commands() {
local commands; commands=()
_describe -t commands 'ordinary host accounts help access get commands' commands "$@"
}
(( $+functions[_ordinary__subcmd__host__subcmd__accounts__subcmd__help__subcmd__current_commands] )) ||
_ordinary__subcmd__host__subcmd__accounts__subcmd__help__subcmd__current_commands() {
local commands; commands=()
_describe -t commands 'ordinary host accounts help current commands' commands "$@"
}
(( $+functions[_ordinary__subcmd__host__subcmd__accounts__subcmd__help__subcmd__delete_commands] )) ||
_ordinary__subcmd__host__subcmd__accounts__subcmd__help__subcmd__delete_commands() {
local commands; commands=()
_describe -t commands 'ordinary host accounts help delete commands' commands "$@"
}
(( $+functions[_ordinary__subcmd__host__subcmd__accounts__subcmd__help__subcmd__help_commands] )) ||
_ordinary__subcmd__host__subcmd__accounts__subcmd__help__subcmd__help_commands() {
local commands; commands=()
_describe -t commands 'ordinary host accounts help help commands' commands "$@"
}
(( $+functions[_ordinary__subcmd__host__subcmd__accounts__subcmd__help__subcmd__invite_commands] )) ||
_ordinary__subcmd__host__subcmd__accounts__subcmd__help__subcmd__invite_commands() {
local commands; commands=()
_describe -t commands 'ordinary host accounts help invite commands' commands "$@"
}
(( $+functions[_ordinary__subcmd__host__subcmd__accounts__subcmd__help__subcmd__list_commands] )) ||
_ordinary__subcmd__host__subcmd__accounts__subcmd__help__subcmd__list_commands() {
local commands; commands=()
_describe -t commands 'ordinary host accounts help list commands' commands "$@"
}
(( $+functions[_ordinary__subcmd__host__subcmd__accounts__subcmd__help__subcmd__login_commands] )) ||
_ordinary__subcmd__host__subcmd__accounts__subcmd__help__subcmd__login_commands() {
local commands; commands=()
_describe -t commands 'ordinary host accounts help login commands' commands "$@"
}
(( $+functions[_ordinary__subcmd__host__subcmd__accounts__subcmd__help__subcmd__logout_commands] )) ||
_ordinary__subcmd__host__subcmd__accounts__subcmd__help__subcmd__logout_commands() {
local commands; commands=()
_describe -t commands 'ordinary host accounts help logout commands' commands "$@"
}
(( $+functions[_ordinary__subcmd__host__subcmd__accounts__subcmd__help__subcmd__mfa_commands] )) ||
_ordinary__subcmd__host__subcmd__accounts__subcmd__help__subcmd__mfa_commands() {
local commands; commands=(
'reset:reset MFA TOTP secret' \
'lost:recovery MFA TOTP secret' \
)
_describe -t commands 'ordinary host accounts help mfa commands' commands "$@"
}
(( $+functions[_ordinary__subcmd__host__subcmd__accounts__subcmd__help__subcmd__mfa__subcmd__lost_commands] )) ||
_ordinary__subcmd__host__subcmd__accounts__subcmd__help__subcmd__mfa__subcmd__lost_commands() {
local commands; commands=()
_describe -t commands 'ordinary host accounts help mfa lost commands' commands "$@"
}
(( $+functions[_ordinary__subcmd__host__subcmd__accounts__subcmd__help__subcmd__mfa__subcmd__reset_commands] )) ||
_ordinary__subcmd__host__subcmd__accounts__subcmd__help__subcmd__mfa__subcmd__reset_commands() {
local commands; commands=()
_describe -t commands 'ordinary host accounts help mfa reset commands' commands "$@"
}
(( $+functions[_ordinary__subcmd__host__subcmd__accounts__subcmd__help__subcmd__password_commands] )) ||
_ordinary__subcmd__host__subcmd__accounts__subcmd__help__subcmd__password_commands() {
local commands; commands=(
'reset:reset your password' \
'forgot:recover your password' \
)
_describe -t commands 'ordinary host accounts help password commands' commands "$@"
}
(( $+functions[_ordinary__subcmd__host__subcmd__accounts__subcmd__help__subcmd__password__subcmd__forgot_commands] )) ||
_ordinary__subcmd__host__subcmd__accounts__subcmd__help__subcmd__password__subcmd__forgot_commands() {
local commands; commands=()
_describe -t commands 'ordinary host accounts help password forgot commands' commands "$@"
}
(( $+functions[_ordinary__subcmd__host__subcmd__accounts__subcmd__help__subcmd__password__subcmd__reset_commands] )) ||
_ordinary__subcmd__host__subcmd__accounts__subcmd__help__subcmd__password__subcmd__reset_commands() {
local commands; commands=()
_describe -t commands 'ordinary host accounts help password reset commands' commands "$@"
}
(( $+functions[_ordinary__subcmd__host__subcmd__accounts__subcmd__help__subcmd__recovery-codes_commands] )) ||
_ordinary__subcmd__host__subcmd__accounts__subcmd__help__subcmd__recovery-codes_commands() {
local commands; commands=(
'reset:reset recovery codes' \
)
_describe -t commands 'ordinary host accounts help recovery-codes commands' commands "$@"
}
(( $+functions[_ordinary__subcmd__host__subcmd__accounts__subcmd__help__subcmd__recovery-codes__subcmd__reset_commands] )) ||
_ordinary__subcmd__host__subcmd__accounts__subcmd__help__subcmd__recovery-codes__subcmd__reset_commands() {
local commands; commands=()
_describe -t commands 'ordinary host accounts help recovery-codes reset commands' commands "$@"
}
(( $+functions[_ordinary__subcmd__host__subcmd__accounts__subcmd__help__subcmd__register_commands] )) ||
_ordinary__subcmd__host__subcmd__accounts__subcmd__help__subcmd__register_commands() {
local commands; commands=()
_describe -t commands 'ordinary host accounts help register commands' commands "$@"
}
(( $+functions[_ordinary__subcmd__host__subcmd__accounts__subcmd__help__subcmd__switch_commands] )) ||
_ordinary__subcmd__host__subcmd__accounts__subcmd__help__subcmd__switch_commands() {
local commands; commands=()
_describe -t commands 'ordinary host accounts help switch commands' commands "$@"
}
(( $+functions[_ordinary__subcmd__host__subcmd__accounts__subcmd__invite_commands] )) ||
_ordinary__subcmd__host__subcmd__accounts__subcmd__invite_commands() {
local commands; commands=()
_describe -t commands 'ordinary host accounts invite commands' commands "$@"
}
(( $+functions[_ordinary__subcmd__host__subcmd__accounts__subcmd__list_commands] )) ||
_ordinary__subcmd__host__subcmd__accounts__subcmd__list_commands() {
local commands; commands=()
_describe -t commands 'ordinary host accounts list commands' commands "$@"
}
(( $+functions[_ordinary__subcmd__host__subcmd__accounts__subcmd__login_commands] )) ||
_ordinary__subcmd__host__subcmd__accounts__subcmd__login_commands() {
local commands; commands=()
_describe -t commands 'ordinary host accounts login commands' commands "$@"
}
(( $+functions[_ordinary__subcmd__host__subcmd__accounts__subcmd__logout_commands] )) ||
_ordinary__subcmd__host__subcmd__accounts__subcmd__logout_commands() {
local commands; commands=()
_describe -t commands 'ordinary host accounts logout commands' commands "$@"
}
(( $+functions[_ordinary__subcmd__host__subcmd__accounts__subcmd__mfa_commands] )) ||
_ordinary__subcmd__host__subcmd__accounts__subcmd__mfa_commands() {
local commands; commands=(
'reset:reset MFA TOTP secret' \
'lost:recovery MFA TOTP secret' \
'help:Print this message or the help of the given subcommand(s)' \
)
_describe -t commands 'ordinary host accounts mfa commands' commands "$@"
}
(( $+functions[_ordinary__subcmd__host__subcmd__accounts__subcmd__mfa__subcmd__help_commands] )) ||
_ordinary__subcmd__host__subcmd__accounts__subcmd__mfa__subcmd__help_commands() {
local commands; commands=(
'reset:reset MFA TOTP secret' \
'lost:recovery MFA TOTP secret' \
'help:Print this message or the help of the given subcommand(s)' \
)
_describe -t commands 'ordinary host accounts mfa help commands' commands "$@"
}
(( $+functions[_ordinary__subcmd__host__subcmd__accounts__subcmd__mfa__subcmd__help__subcmd__help_commands] )) ||
_ordinary__subcmd__host__subcmd__accounts__subcmd__mfa__subcmd__help__subcmd__help_commands() {
local commands; commands=()
_describe -t commands 'ordinary host accounts mfa help help commands' commands "$@"
}
(( $+functions[_ordinary__subcmd__host__subcmd__accounts__subcmd__mfa__subcmd__help__subcmd__lost_commands] )) ||
_ordinary__subcmd__host__subcmd__accounts__subcmd__mfa__subcmd__help__subcmd__lost_commands() {
local commands; commands=()
_describe -t commands 'ordinary host accounts mfa help lost commands' commands "$@"
}
(( $+functions[_ordinary__subcmd__host__subcmd__accounts__subcmd__mfa__subcmd__help__subcmd__reset_commands] )) ||
_ordinary__subcmd__host__subcmd__accounts__subcmd__mfa__subcmd__help__subcmd__reset_commands() {
local commands; commands=()
_describe -t commands 'ordinary host accounts mfa help reset commands' commands "$@"
}
(( $+functions[_ordinary__subcmd__host__subcmd__accounts__subcmd__mfa__subcmd__lost_commands] )) ||
_ordinary__subcmd__host__subcmd__accounts__subcmd__mfa__subcmd__lost_commands() {
local commands; commands=()
_describe -t commands 'ordinary host accounts mfa lost commands' commands "$@"
}
(( $+functions[_ordinary__subcmd__host__subcmd__accounts__subcmd__mfa__subcmd__reset_commands] )) ||
_ordinary__subcmd__host__subcmd__accounts__subcmd__mfa__subcmd__reset_commands() {
local commands; commands=()
_describe -t commands 'ordinary host accounts mfa reset commands' commands "$@"
}
(( $+functions[_ordinary__subcmd__host__subcmd__accounts__subcmd__password_commands] )) ||
_ordinary__subcmd__host__subcmd__accounts__subcmd__password_commands() {
local commands; commands=(
'reset:reset your password' \
'forgot:recover your password' \
'help:Print this message or the help of the given subcommand(s)' \
)
_describe -t commands 'ordinary host accounts password commands' commands "$@"
}
(( $+functions[_ordinary__subcmd__host__subcmd__accounts__subcmd__password__subcmd__forgot_commands] )) ||
_ordinary__subcmd__host__subcmd__accounts__subcmd__password__subcmd__forgot_commands() {
local commands; commands=()
_describe -t commands 'ordinary host accounts password forgot commands' commands "$@"
}
(( $+functions[_ordinary__subcmd__host__subcmd__accounts__subcmd__password__subcmd__help_commands] )) ||
_ordinary__subcmd__host__subcmd__accounts__subcmd__password__subcmd__help_commands() {
local commands; commands=(
'reset:reset your password' \
'forgot:recover your password' \
'help:Print this message or the help of the given subcommand(s)' \
)
_describe -t commands 'ordinary host accounts password help commands' commands "$@"
}
(( $+functions[_ordinary__subcmd__host__subcmd__accounts__subcmd__password__subcmd__help__subcmd__forgot_commands] )) ||
_ordinary__subcmd__host__subcmd__accounts__subcmd__password__subcmd__help__subcmd__forgot_commands() {
local commands; commands=()
_describe -t commands 'ordinary host accounts password help forgot commands' commands "$@"
}
(( $+functions[_ordinary__subcmd__host__subcmd__accounts__subcmd__password__subcmd__help__subcmd__help_commands] )) ||
_ordinary__subcmd__host__subcmd__accounts__subcmd__password__subcmd__help__subcmd__help_commands() {
local commands; commands=()
_describe -t commands 'ordinary host accounts password help help commands' commands "$@"
}
(( $+functions[_ordinary__subcmd__host__subcmd__accounts__subcmd__password__subcmd__help__subcmd__reset_commands] )) ||
_ordinary__subcmd__host__subcmd__accounts__subcmd__password__subcmd__help__subcmd__reset_commands() {
local commands; commands=()
_describe -t commands 'ordinary host accounts password help reset commands' commands "$@"
}
(( $+functions[_ordinary__subcmd__host__subcmd__accounts__subcmd__password__subcmd__reset_commands] )) ||
_ordinary__subcmd__host__subcmd__accounts__subcmd__password__subcmd__reset_commands() {
local commands; commands=()
_describe -t commands 'ordinary host accounts password reset commands' commands "$@"
}
(( $+functions[_ordinary__subcmd__host__subcmd__accounts__subcmd__recovery-codes_commands] )) ||
_ordinary__subcmd__host__subcmd__accounts__subcmd__recovery-codes_commands() {
local commands; commands=(
'reset:reset recovery codes' \
'help:Print this message or the help of the given subcommand(s)' \
)
_describe -t commands 'ordinary host accounts recovery-codes commands' commands "$@"
}
(( $+functions[_ordinary__subcmd__host__subcmd__accounts__subcmd__recovery-codes__subcmd__help_commands] )) ||
_ordinary__subcmd__host__subcmd__accounts__subcmd__recovery-codes__subcmd__help_commands() {
local commands; commands=(
'reset:reset recovery codes' \
'help:Print this message or the help of the given subcommand(s)' \
)
_describe -t commands 'ordinary host accounts recovery-codes help commands' commands "$@"
}
(( $+functions[_ordinary__subcmd__host__subcmd__accounts__subcmd__recovery-codes__subcmd__help__subcmd__help_commands] )) ||
_ordinary__subcmd__host__subcmd__accounts__subcmd__recovery-codes__subcmd__help__subcmd__help_commands() {
local commands; commands=()
_describe -t commands 'ordinary host accounts recovery-codes help help commands' commands "$@"
}
(( $+functions[_ordinary__subcmd__host__subcmd__accounts__subcmd__recovery-codes__subcmd__help__subcmd__reset_commands] )) ||
_ordinary__subcmd__host__subcmd__accounts__subcmd__recovery-codes__subcmd__help__subcmd__reset_commands() {
local commands; commands=()
_describe -t commands 'ordinary host accounts recovery-codes help reset commands' commands "$@"
}
(( $+functions[_ordinary__subcmd__host__subcmd__accounts__subcmd__recovery-codes__subcmd__reset_commands] )) ||
_ordinary__subcmd__host__subcmd__accounts__subcmd__recovery-codes__subcmd__reset_commands() {
local commands; commands=()
_describe -t commands 'ordinary host accounts recovery-codes reset commands' commands "$@"
}
(( $+functions[_ordinary__subcmd__host__subcmd__accounts__subcmd__register_commands] )) ||
_ordinary__subcmd__host__subcmd__accounts__subcmd__register_commands() {
local commands; commands=()
_describe -t commands 'ordinary host accounts register commands' commands "$@"
}
(( $+functions[_ordinary__subcmd__host__subcmd__accounts__subcmd__switch_commands] )) ||
_ordinary__subcmd__host__subcmd__accounts__subcmd__switch_commands() {
local commands; commands=()
_describe -t commands 'ordinary host accounts switch commands' commands "$@"
}
(( $+functions[_ordinary__subcmd__host__subcmd__help_commands] )) ||
_ordinary__subcmd__host__subcmd__help_commands() {
local commands; commands=(
'info:get system and process info for the Ordinary API server' \
'metrics:get proxied service metrics' \
'logs:query system and application logs' \
'accounts:manage accounts connected to \`ordinaryd\`' \
'moderation:tools for moderation' \
'help:Print this message or the help of the given subcommand(s)' \
)
_describe -t commands 'ordinary host help commands' commands "$@"
}
(( $+functions[_ordinary__subcmd__host__subcmd__help__subcmd__accounts_commands] )) ||
_ordinary__subcmd__host__subcmd__help__subcmd__accounts_commands() {
local commands; commands=(
'register:register a new account' \
'login:log in to an existing account' \
'logout:log out of a logged in account' \
'access:access management subcommands' \
'password:password management' \
'mfa:MFA management' \
'recovery-codes:recovery code management' \
'delete:delete account' \
'invite:invite another user to a project' \
'current:display info for current account' \
'list:list all logged in accounts' \
'switch:switch to a different logged in account' \
)
_describe -t commands 'ordinary host help accounts commands' commands "$@"
}
(( $+functions[_ordinary__subcmd__host__subcmd__help__subcmd__accounts__subcmd__access_commands] )) ||
_ordinary__subcmd__host__subcmd__help__subcmd__accounts__subcmd__access_commands() {
local commands; commands=(
'get:get access' \
)
_describe -t commands 'ordinary host help accounts access commands' commands "$@"
}
(( $+functions[_ordinary__subcmd__host__subcmd__help__subcmd__accounts__subcmd__access__subcmd__get_commands] )) ||
_ordinary__subcmd__host__subcmd__help__subcmd__accounts__subcmd__access__subcmd__get_commands() {
local commands; commands=()
_describe -t commands 'ordinary host help accounts access get commands' commands "$@"
}
(( $+functions[_ordinary__subcmd__host__subcmd__help__subcmd__accounts__subcmd__current_commands] )) ||
_ordinary__subcmd__host__subcmd__help__subcmd__accounts__subcmd__current_commands() {
local commands; commands=()
_describe -t commands 'ordinary host help accounts current commands' commands "$@"
}
(( $+functions[_ordinary__subcmd__host__subcmd__help__subcmd__accounts__subcmd__delete_commands] )) ||
_ordinary__subcmd__host__subcmd__help__subcmd__accounts__subcmd__delete_commands() {
local commands; commands=()
_describe -t commands 'ordinary host help accounts delete commands' commands "$@"
}
(( $+functions[_ordinary__subcmd__host__subcmd__help__subcmd__accounts__subcmd__invite_commands] )) ||
_ordinary__subcmd__host__subcmd__help__subcmd__accounts__subcmd__invite_commands() {
local commands; commands=()
_describe -t commands 'ordinary host help accounts invite commands' commands "$@"
}
(( $+functions[_ordinary__subcmd__host__subcmd__help__subcmd__accounts__subcmd__list_commands] )) ||
_ordinary__subcmd__host__subcmd__help__subcmd__accounts__subcmd__list_commands() {
local commands; commands=()
_describe -t commands 'ordinary host help accounts list commands' commands "$@"
}
(( $+functions[_ordinary__subcmd__host__subcmd__help__subcmd__accounts__subcmd__login_commands] )) ||
_ordinary__subcmd__host__subcmd__help__subcmd__accounts__subcmd__login_commands() {
local commands; commands=()
_describe -t commands 'ordinary host help accounts login commands' commands "$@"
}
(( $+functions[_ordinary__subcmd__host__subcmd__help__subcmd__accounts__subcmd__logout_commands] )) ||
_ordinary__subcmd__host__subcmd__help__subcmd__accounts__subcmd__logout_commands() {
local commands; commands=()
_describe -t commands 'ordinary host help accounts logout commands' commands "$@"
}
(( $+functions[_ordinary__subcmd__host__subcmd__help__subcmd__accounts__subcmd__mfa_commands] )) ||
_ordinary__subcmd__host__subcmd__help__subcmd__accounts__subcmd__mfa_commands() {
local commands; commands=(
'reset:reset MFA TOTP secret' \
'lost:recovery MFA TOTP secret' \
)
_describe -t commands 'ordinary host help accounts mfa commands' commands "$@"
}
(( $+functions[_ordinary__subcmd__host__subcmd__help__subcmd__accounts__subcmd__mfa__subcmd__lost_commands] )) ||
_ordinary__subcmd__host__subcmd__help__subcmd__accounts__subcmd__mfa__subcmd__lost_commands() {
local commands; commands=()
_describe -t commands 'ordinary host help accounts mfa lost commands' commands "$@"
}
(( $+functions[_ordinary__subcmd__host__subcmd__help__subcmd__accounts__subcmd__mfa__subcmd__reset_commands] )) ||
_ordinary__subcmd__host__subcmd__help__subcmd__accounts__subcmd__mfa__subcmd__reset_commands() {
local commands; commands=()
_describe -t commands 'ordinary host help accounts mfa reset commands' commands "$@"
}
(( $+functions[_ordinary__subcmd__host__subcmd__help__subcmd__accounts__subcmd__password_commands] )) ||
_ordinary__subcmd__host__subcmd__help__subcmd__accounts__subcmd__password_commands() {
local commands; commands=(
'reset:reset your password' \
'forgot:recover your password' \
)
_describe -t commands 'ordinary host help accounts password commands' commands "$@"
}
(( $+functions[_ordinary__subcmd__host__subcmd__help__subcmd__accounts__subcmd__password__subcmd__forgot_commands] )) ||
_ordinary__subcmd__host__subcmd__help__subcmd__accounts__subcmd__password__subcmd__forgot_commands() {
local commands; commands=()
_describe -t commands 'ordinary host help accounts password forgot commands' commands "$@"
}
(( $+functions[_ordinary__subcmd__host__subcmd__help__subcmd__accounts__subcmd__password__subcmd__reset_commands] )) ||
_ordinary__subcmd__host__subcmd__help__subcmd__accounts__subcmd__password__subcmd__reset_commands() {
local commands; commands=()
_describe -t commands 'ordinary host help accounts password reset commands' commands "$@"
}
(( $+functions[_ordinary__subcmd__host__subcmd__help__subcmd__accounts__subcmd__recovery-codes_commands] )) ||
_ordinary__subcmd__host__subcmd__help__subcmd__accounts__subcmd__recovery-codes_commands() {
local commands; commands=(
'reset:reset recovery codes' \
)
_describe -t commands 'ordinary host help accounts recovery-codes commands' commands "$@"
}
(( $+functions[_ordinary__subcmd__host__subcmd__help__subcmd__accounts__subcmd__recovery-codes__subcmd__reset_commands] )) ||
_ordinary__subcmd__host__subcmd__help__subcmd__accounts__subcmd__recovery-codes__subcmd__reset_commands() {
local commands; commands=()
_describe -t commands 'ordinary host help accounts recovery-codes reset commands' commands "$@"
}
(( $+functions[_ordinary__subcmd__host__subcmd__help__subcmd__accounts__subcmd__register_commands] )) ||
_ordinary__subcmd__host__subcmd__help__subcmd__accounts__subcmd__register_commands() {
local commands; commands=()
_describe -t commands 'ordinary host help accounts register commands' commands "$@"
}
(( $+functions[_ordinary__subcmd__host__subcmd__help__subcmd__accounts__subcmd__switch_commands] )) ||
_ordinary__subcmd__host__subcmd__help__subcmd__accounts__subcmd__switch_commands() {
local commands; commands=()
_describe -t commands 'ordinary host help accounts switch commands' commands "$@"
}
(( $+functions[_ordinary__subcmd__host__subcmd__help__subcmd__help_commands] )) ||
_ordinary__subcmd__host__subcmd__help__subcmd__help_commands() {
local commands; commands=()
_describe -t commands 'ordinary host help help commands' commands "$@"
}
(( $+functions[_ordinary__subcmd__host__subcmd__help__subcmd__info_commands] )) ||
_ordinary__subcmd__host__subcmd__help__subcmd__info_commands() {
local commands; commands=()
_describe -t commands 'ordinary host help info commands' commands "$@"
}
(( $+functions[_ordinary__subcmd__host__subcmd__help__subcmd__logs_commands] )) ||
_ordinary__subcmd__host__subcmd__help__subcmd__logs_commands() {
local commands; commands=(
'sync:sync files, indexes and tables' \
'list:list all log files' \
'read:read one or all files to stdout' \
'query:query logs with SQL' \
'search:search the tantivy index' \
)
_describe -t commands 'ordinary host help logs commands' commands "$@"
}
(( $+functions[_ordinary__subcmd__host__subcmd__help__subcmd__logs__subcmd__list_commands] )) ||
_ordinary__subcmd__host__subcmd__help__subcmd__logs__subcmd__list_commands() {
local commands; commands=()
_describe -t commands 'ordinary host help logs list commands' commands "$@"
}
(( $+functions[_ordinary__subcmd__host__subcmd__help__subcmd__logs__subcmd__query_commands] )) ||
_ordinary__subcmd__host__subcmd__help__subcmd__logs__subcmd__query_commands() {
local commands; commands=()
_describe -t commands 'ordinary host help logs query commands' commands "$@"
}
(( $+functions[_ordinary__subcmd__host__subcmd__help__subcmd__logs__subcmd__read_commands] )) ||
_ordinary__subcmd__host__subcmd__help__subcmd__logs__subcmd__read_commands() {
local commands; commands=()
_describe -t commands 'ordinary host help logs read commands' commands "$@"
}
(( $+functions[_ordinary__subcmd__host__subcmd__help__subcmd__logs__subcmd__search_commands] )) ||
_ordinary__subcmd__host__subcmd__help__subcmd__logs__subcmd__search_commands() {
local commands; commands=()
_describe -t commands 'ordinary host help logs search commands' commands "$@"
}
(( $+functions[_ordinary__subcmd__host__subcmd__help__subcmd__logs__subcmd__sync_commands] )) ||
_ordinary__subcmd__host__subcmd__help__subcmd__logs__subcmd__sync_commands() {
local commands; commands=(
'info:get information about remote and local log files' \
'file:sync a single file' \
'all:repair local state for all out of sync (⚠️) and remote files not yet downloaded (❌)' \
)
_describe -t commands 'ordinary host help logs sync commands' commands "$@"
}
(( $+functions[_ordinary__subcmd__host__subcmd__help__subcmd__logs__subcmd__sync__subcmd__all_commands] )) ||
_ordinary__subcmd__host__subcmd__help__subcmd__logs__subcmd__sync__subcmd__all_commands() {
local commands; commands=()
_describe -t commands 'ordinary host help logs sync all commands' commands "$@"
}
(( $+functions[_ordinary__subcmd__host__subcmd__help__subcmd__logs__subcmd__sync__subcmd__file_commands] )) ||
_ordinary__subcmd__host__subcmd__help__subcmd__logs__subcmd__sync__subcmd__file_commands() {
local commands; commands=()
_describe -t commands 'ordinary host help logs sync file commands' commands "$@"
}
(( $+functions[_ordinary__subcmd__host__subcmd__help__subcmd__logs__subcmd__sync__subcmd__info_commands] )) ||
_ordinary__subcmd__host__subcmd__help__subcmd__logs__subcmd__sync__subcmd__info_commands() {
local commands; commands=()
_describe -t commands 'ordinary host help logs sync info commands' commands "$@"
}
(( $+functions[_ordinary__subcmd__host__subcmd__help__subcmd__metrics_commands] )) ||
_ordinary__subcmd__host__subcmd__help__subcmd__metrics_commands() {
local commands; commands=()
_describe -t commands 'ordinary host help metrics commands' commands "$@"
}
(( $+functions[_ordinary__subcmd__host__subcmd__help__subcmd__moderation_commands] )) ||
_ordinary__subcmd__host__subcmd__help__subcmd__moderation_commands() {
local commands; commands=(
'lock:lock resources to prevent abuse' \
'unlock:unlock resources upon resolution' \
)
_describe -t commands 'ordinary host help moderation commands' commands "$@"
}
(( $+functions[_ordinary__subcmd__host__subcmd__help__subcmd__moderation__subcmd__lock_commands] )) ||
_ordinary__subcmd__host__subcmd__help__subcmd__moderation__subcmd__lock_commands() {
local commands; commands=()
_describe -t commands 'ordinary host help moderation lock commands' commands "$@"
}
(( $+functions[_ordinary__subcmd__host__subcmd__help__subcmd__moderation__subcmd__unlock_commands] )) ||
_ordinary__subcmd__host__subcmd__help__subcmd__moderation__subcmd__unlock_commands() {
local commands; commands=()
_describe -t commands 'ordinary host help moderation unlock commands' commands "$@"
}
(( $+functions[_ordinary__subcmd__host__subcmd__info_commands] )) ||
_ordinary__subcmd__host__subcmd__info_commands() {
local commands; commands=()
_describe -t commands 'ordinary host info commands' commands "$@"
}
(( $+functions[_ordinary__subcmd__host__subcmd__logs_commands] )) ||
_ordinary__subcmd__host__subcmd__logs_commands() {
local commands; commands=(
'sync:sync files, indexes and tables' \
'list:list all log files' \
'ls:list all log files' \
'read:read one or all files to stdout' \
'query:query logs with SQL' \
'search:search the tantivy index' \
'help:Print this message or the help of the given subcommand(s)' \
)
_describe -t commands 'ordinary host logs commands' commands "$@"
}
(( $+functions[_ordinary__subcmd__host__subcmd__logs__subcmd__help_commands] )) ||
_ordinary__subcmd__host__subcmd__logs__subcmd__help_commands() {
local commands; commands=(
'sync:sync files, indexes and tables' \
'list:list all log files' \
'read:read one or all files to stdout' \
'query:query logs with SQL' \
'search:search the tantivy index' \
'help:Print this message or the help of the given subcommand(s)' \
)
_describe -t commands 'ordinary host logs help commands' commands "$@"
}
(( $+functions[_ordinary__subcmd__host__subcmd__logs__subcmd__help__subcmd__help_commands] )) ||
_ordinary__subcmd__host__subcmd__logs__subcmd__help__subcmd__help_commands() {
local commands; commands=()
_describe -t commands 'ordinary host logs help help commands' commands "$@"
}
(( $+functions[_ordinary__subcmd__host__subcmd__logs__subcmd__help__subcmd__list_commands] )) ||
_ordinary__subcmd__host__subcmd__logs__subcmd__help__subcmd__list_commands() {
local commands; commands=()
_describe -t commands 'ordinary host logs help list commands' commands "$@"
}
(( $+functions[_ordinary__subcmd__host__subcmd__logs__subcmd__help__subcmd__query_commands] )) ||
_ordinary__subcmd__host__subcmd__logs__subcmd__help__subcmd__query_commands() {
local commands; commands=()
_describe -t commands 'ordinary host logs help query commands' commands "$@"
}
(( $+functions[_ordinary__subcmd__host__subcmd__logs__subcmd__help__subcmd__read_commands] )) ||
_ordinary__subcmd__host__subcmd__logs__subcmd__help__subcmd__read_commands() {
local commands; commands=()
_describe -t commands 'ordinary host logs help read commands' commands "$@"
}
(( $+functions[_ordinary__subcmd__host__subcmd__logs__subcmd__help__subcmd__search_commands] )) ||
_ordinary__subcmd__host__subcmd__logs__subcmd__help__subcmd__search_commands() {
local commands; commands=()
_describe -t commands 'ordinary host logs help search commands' commands "$@"
}
(( $+functions[_ordinary__subcmd__host__subcmd__logs__subcmd__help__subcmd__sync_commands] )) ||
_ordinary__subcmd__host__subcmd__logs__subcmd__help__subcmd__sync_commands() {
local commands; commands=(
'info:get information about remote and local log files' \
'file:sync a single file' \
'all:repair local state for all out of sync (⚠️) and remote files not yet downloaded (❌)' \
)
_describe -t commands 'ordinary host logs help sync commands' commands "$@"
}
(( $+functions[_ordinary__subcmd__host__subcmd__logs__subcmd__help__subcmd__sync__subcmd__all_commands] )) ||
_ordinary__subcmd__host__subcmd__logs__subcmd__help__subcmd__sync__subcmd__all_commands() {
local commands; commands=()
_describe -t commands 'ordinary host logs help sync all commands' commands "$@"
}
(( $+functions[_ordinary__subcmd__host__subcmd__logs__subcmd__help__subcmd__sync__subcmd__file_commands] )) ||
_ordinary__subcmd__host__subcmd__logs__subcmd__help__subcmd__sync__subcmd__file_commands() {
local commands; commands=()
_describe -t commands 'ordinary host logs help sync file commands' commands "$@"
}
(( $+functions[_ordinary__subcmd__host__subcmd__logs__subcmd__help__subcmd__sync__subcmd__info_commands] )) ||
_ordinary__subcmd__host__subcmd__logs__subcmd__help__subcmd__sync__subcmd__info_commands() {
local commands; commands=()
_describe -t commands 'ordinary host logs help sync info commands' commands "$@"
}
(( $+functions[_ordinary__subcmd__host__subcmd__logs__subcmd__list_commands] )) ||
_ordinary__subcmd__host__subcmd__logs__subcmd__list_commands() {
local commands; commands=()
_describe -t commands 'ordinary host logs list commands' commands "$@"
}
(( $+functions[_ordinary__subcmd__host__subcmd__logs__subcmd__query_commands] )) ||
_ordinary__subcmd__host__subcmd__logs__subcmd__query_commands() {
local commands; commands=()
_describe -t commands 'ordinary host logs query commands' commands "$@"
}
(( $+functions[_ordinary__subcmd__host__subcmd__logs__subcmd__read_commands] )) ||
_ordinary__subcmd__host__subcmd__logs__subcmd__read_commands() {
local commands; commands=()
_describe -t commands 'ordinary host logs read commands' commands "$@"
}
(( $+functions[_ordinary__subcmd__host__subcmd__logs__subcmd__search_commands] )) ||
_ordinary__subcmd__host__subcmd__logs__subcmd__search_commands() {
local commands; commands=()
_describe -t commands 'ordinary host logs search commands' commands "$@"
}
(( $+functions[_ordinary__subcmd__host__subcmd__logs__subcmd__sync_commands] )) ||
_ordinary__subcmd__host__subcmd__logs__subcmd__sync_commands() {
local commands; commands=(
'info:get information about remote and local log files' \
'file:sync a single file' \
'all:repair local state for all out of sync (⚠️) and remote files not yet downloaded (❌)' \
'help:Print this message or the help of the given subcommand(s)' \
)
_describe -t commands 'ordinary host logs sync commands' commands "$@"
}
(( $+functions[_ordinary__subcmd__host__subcmd__logs__subcmd__sync__subcmd__all_commands] )) ||
_ordinary__subcmd__host__subcmd__logs__subcmd__sync__subcmd__all_commands() {
local commands; commands=()
_describe -t commands 'ordinary host logs sync all commands' commands "$@"
}
(( $+functions[_ordinary__subcmd__host__subcmd__logs__subcmd__sync__subcmd__file_commands] )) ||
_ordinary__subcmd__host__subcmd__logs__subcmd__sync__subcmd__file_commands() {
local commands; commands=()
_describe -t commands 'ordinary host logs sync file commands' commands "$@"
}
(( $+functions[_ordinary__subcmd__host__subcmd__logs__subcmd__sync__subcmd__help_commands] )) ||
_ordinary__subcmd__host__subcmd__logs__subcmd__sync__subcmd__help_commands() {
local commands; commands=(
'info:get information about remote and local log files' \
'file:sync a single file' \
'all:repair local state for all out of sync (⚠️) and remote files not yet downloaded (❌)' \
'help:Print this message or the help of the given subcommand(s)' \
)
_describe -t commands 'ordinary host logs sync help commands' commands "$@"
}
(( $+functions[_ordinary__subcmd__host__subcmd__logs__subcmd__sync__subcmd__help__subcmd__all_commands] )) ||
_ordinary__subcmd__host__subcmd__logs__subcmd__sync__subcmd__help__subcmd__all_commands() {
local commands; commands=()
_describe -t commands 'ordinary host logs sync help all commands' commands "$@"
}
(( $+functions[_ordinary__subcmd__host__subcmd__logs__subcmd__sync__subcmd__help__subcmd__file_commands] )) ||
_ordinary__subcmd__host__subcmd__logs__subcmd__sync__subcmd__help__subcmd__file_commands() {
local commands; commands=()
_describe -t commands 'ordinary host logs sync help file commands' commands "$@"
}
(( $+functions[_ordinary__subcmd__host__subcmd__logs__subcmd__sync__subcmd__help__subcmd__help_commands] )) ||
_ordinary__subcmd__host__subcmd__logs__subcmd__sync__subcmd__help__subcmd__help_commands() {
local commands; commands=()
_describe -t commands 'ordinary host logs sync help help commands' commands "$@"
}
(( $+functions[_ordinary__subcmd__host__subcmd__logs__subcmd__sync__subcmd__help__subcmd__info_commands] )) ||
_ordinary__subcmd__host__subcmd__logs__subcmd__sync__subcmd__help__subcmd__info_commands() {
local commands; commands=()
_describe -t commands 'ordinary host logs sync help info commands' commands "$@"
}
(( $+functions[_ordinary__subcmd__host__subcmd__logs__subcmd__sync__subcmd__info_commands] )) ||
_ordinary__subcmd__host__subcmd__logs__subcmd__sync__subcmd__info_commands() {
local commands; commands=()
_describe -t commands 'ordinary host logs sync info commands' commands "$@"
}
(( $+functions[_ordinary__subcmd__host__subcmd__metrics_commands] )) ||
_ordinary__subcmd__host__subcmd__metrics_commands() {
local commands; commands=()
_describe -t commands 'ordinary host metrics commands' commands "$@"
}
(( $+functions[_ordinary__subcmd__host__subcmd__moderation_commands] )) ||
_ordinary__subcmd__host__subcmd__moderation_commands() {
local commands; commands=(
'lock:lock resources to prevent abuse' \
'unlock:unlock resources upon resolution' \
'help:Print this message or the help of the given subcommand(s)' \
)
_describe -t commands 'ordinary host moderation commands' commands "$@"
}
(( $+functions[_ordinary__subcmd__host__subcmd__moderation__subcmd__help_commands] )) ||
_ordinary__subcmd__host__subcmd__moderation__subcmd__help_commands() {
local commands; commands=(
'lock:lock resources to prevent abuse' \
'unlock:unlock resources upon resolution' \
'help:Print this message or the help of the given subcommand(s)' \
)
_describe -t commands 'ordinary host moderation help commands' commands "$@"
}
(( $+functions[_ordinary__subcmd__host__subcmd__moderation__subcmd__help__subcmd__help_commands] )) ||
_ordinary__subcmd__host__subcmd__moderation__subcmd__help__subcmd__help_commands() {
local commands; commands=()
_describe -t commands 'ordinary host moderation help help commands' commands "$@"
}
(( $+functions[_ordinary__subcmd__host__subcmd__moderation__subcmd__help__subcmd__lock_commands] )) ||
_ordinary__subcmd__host__subcmd__moderation__subcmd__help__subcmd__lock_commands() {
local commands; commands=()
_describe -t commands 'ordinary host moderation help lock commands' commands "$@"
}
(( $+functions[_ordinary__subcmd__host__subcmd__moderation__subcmd__help__subcmd__unlock_commands] )) ||
_ordinary__subcmd__host__subcmd__moderation__subcmd__help__subcmd__unlock_commands() {
local commands; commands=()
_describe -t commands 'ordinary host moderation help unlock commands' commands "$@"
}
(( $+functions[_ordinary__subcmd__host__subcmd__moderation__subcmd__lock_commands] )) ||
_ordinary__subcmd__host__subcmd__moderation__subcmd__lock_commands() {
local commands; commands=()
_describe -t commands 'ordinary host moderation lock commands' commands "$@"
}
(( $+functions[_ordinary__subcmd__host__subcmd__moderation__subcmd__unlock_commands] )) ||
_ordinary__subcmd__host__subcmd__moderation__subcmd__unlock_commands() {
local commands; commands=()
_describe -t commands 'ordinary host moderation unlock commands' commands "$@"
}
(( $+functions[_ordinary__subcmd__ssg_commands] )) ||
_ordinary__subcmd__ssg_commands() {
local commands; commands=(
'new:generate an \`ordinary.json\` config to deploy your SSG to a running instance of \`ordinaryd\`' \
'create:generate an \`ordinary.json\` config to deploy your SSG to a running instance of \`ordinaryd\`' \
'init:generate an \`ordinary.json\` config to deploy your SSG to a running instance of \`ordinaryd\`' \
'help:Print this message or the help of the given subcommand(s)' \
)
_describe -t commands 'ordinary ssg commands' commands "$@"
}
(( $+functions[_ordinary__subcmd__ssg__subcmd__help_commands] )) ||
_ordinary__subcmd__ssg__subcmd__help_commands() {
local commands; commands=(
'new:generate an \`ordinary.json\` config to deploy your SSG to a running instance of \`ordinaryd\`' \
'help:Print this message or the help of the given subcommand(s)' \
)
_describe -t commands 'ordinary ssg help commands' commands "$@"
}
(( $+functions[_ordinary__subcmd__ssg__subcmd__help__subcmd__help_commands] )) ||
_ordinary__subcmd__ssg__subcmd__help__subcmd__help_commands() {
local commands; commands=()
_describe -t commands 'ordinary ssg help help commands' commands "$@"
}
(( $+functions[_ordinary__subcmd__ssg__subcmd__help__subcmd__new_commands] )) ||
_ordinary__subcmd__ssg__subcmd__help__subcmd__new_commands() {
local commands; commands=()
_describe -t commands 'ordinary ssg help new commands' commands "$@"
}
(( $+functions[_ordinary__subcmd__ssg__subcmd__new_commands] )) ||
_ordinary__subcmd__ssg__subcmd__new_commands() {
local commands; commands=()
_describe -t commands 'ordinary ssg new commands' commands "$@"
}
(( $+functions[_ordinary__subcmd__utils_commands] )) ||
_ordinary__subcmd__utils_commands() {
local commands; commands=(
'uuid:generate a UUID' \
'timestamp:generate a UNIX timestamp for the current time (i.e. \`date +%s\`)' \
'ts:generate a UNIX timestamp for the current time (i.e. \`date +%s\`)' \
'html:utilities for managing HTML files' \
'css:utilities for managing CSS files' \
'js:utilities for managing JavaScript/TypeScript files' \
'markdown:utilities for manipulating Markdown files' \
'md:utilities for manipulating Markdown files' \
'exif:utilities for manipulating exif data' \
'qr-code:tool for generating QR codes' \
'qr:tool for generating QR codes' \
'help:Print this message or the help of the given subcommand(s)' \
)
_describe -t commands 'ordinary utils commands' commands "$@"
}
(( $+functions[_ordinary__subcmd__utils__subcmd__css_commands] )) ||
_ordinary__subcmd__utils__subcmd__css_commands() {
local commands; commands=(
'minify:minify CSS files' \
'min:minify CSS files' \
'help:Print this message or the help of the given subcommand(s)' \
)
_describe -t commands 'ordinary utils css commands' commands "$@"
}
(( $+functions[_ordinary__subcmd__utils__subcmd__css__subcmd__help_commands] )) ||
_ordinary__subcmd__utils__subcmd__css__subcmd__help_commands() {
local commands; commands=(
'minify:minify CSS files' \
'help:Print this message or the help of the given subcommand(s)' \
)
_describe -t commands 'ordinary utils css help commands' commands "$@"
}
(( $+functions[_ordinary__subcmd__utils__subcmd__css__subcmd__help__subcmd__help_commands] )) ||
_ordinary__subcmd__utils__subcmd__css__subcmd__help__subcmd__help_commands() {
local commands; commands=()
_describe -t commands 'ordinary utils css help help commands' commands "$@"
}
(( $+functions[_ordinary__subcmd__utils__subcmd__css__subcmd__help__subcmd__minify_commands] )) ||
_ordinary__subcmd__utils__subcmd__css__subcmd__help__subcmd__minify_commands() {
local commands; commands=()
_describe -t commands 'ordinary utils css help minify commands' commands "$@"
}
(( $+functions[_ordinary__subcmd__utils__subcmd__css__subcmd__minify_commands] )) ||
_ordinary__subcmd__utils__subcmd__css__subcmd__minify_commands() {
local commands; commands=()
_describe -t commands 'ordinary utils css minify commands' commands "$@"
}
(( $+functions[_ordinary__subcmd__utils__subcmd__exif_commands] )) ||
_ordinary__subcmd__utils__subcmd__exif_commands() {
local commands; commands=(
'tool:\[\`exiftool\`\](https\://exiftool.org) command' \
'help:Print this message or the help of the given subcommand(s)' \
)
_describe -t commands 'ordinary utils exif commands' commands "$@"
}
(( $+functions[_ordinary__subcmd__utils__subcmd__exif__subcmd__help_commands] )) ||
_ordinary__subcmd__utils__subcmd__exif__subcmd__help_commands() {
local commands; commands=(
'tool:\[\`exiftool\`\](https\://exiftool.org) command' \
'help:Print this message or the help of the given subcommand(s)' \
)
_describe -t commands 'ordinary utils exif help commands' commands "$@"
}
(( $+functions[_ordinary__subcmd__utils__subcmd__exif__subcmd__help__subcmd__help_commands] )) ||
_ordinary__subcmd__utils__subcmd__exif__subcmd__help__subcmd__help_commands() {
local commands; commands=()
_describe -t commands 'ordinary utils exif help help commands' commands "$@"
}
(( $+functions[_ordinary__subcmd__utils__subcmd__exif__subcmd__help__subcmd__tool_commands] )) ||
_ordinary__subcmd__utils__subcmd__exif__subcmd__help__subcmd__tool_commands() {
local commands; commands=()
_describe -t commands 'ordinary utils exif help tool commands' commands "$@"
}
(( $+functions[_ordinary__subcmd__utils__subcmd__exif__subcmd__tool_commands] )) ||
_ordinary__subcmd__utils__subcmd__exif__subcmd__tool_commands() {
local commands; commands=()
_describe -t commands 'ordinary utils exif tool commands' commands "$@"
}
(( $+functions[_ordinary__subcmd__utils__subcmd__help_commands] )) ||
_ordinary__subcmd__utils__subcmd__help_commands() {
local commands; commands=(
'uuid:generate a UUID' \
'timestamp:generate a UNIX timestamp for the current time (i.e. \`date +%s\`)' \
'html:utilities for managing HTML files' \
'css:utilities for managing CSS files' \
'js:utilities for managing JavaScript/TypeScript files' \
'markdown:utilities for manipulating Markdown files' \
'exif:utilities for manipulating exif data' \
'qr-code:tool for generating QR codes' \
'help:Print this message or the help of the given subcommand(s)' \
)
_describe -t commands 'ordinary utils help commands' commands "$@"
}
(( $+functions[_ordinary__subcmd__utils__subcmd__help__subcmd__css_commands] )) ||
_ordinary__subcmd__utils__subcmd__help__subcmd__css_commands() {
local commands; commands=(
'minify:minify CSS files' \
)
_describe -t commands 'ordinary utils help css commands' commands "$@"
}
(( $+functions[_ordinary__subcmd__utils__subcmd__help__subcmd__css__subcmd__minify_commands] )) ||
_ordinary__subcmd__utils__subcmd__help__subcmd__css__subcmd__minify_commands() {
local commands; commands=()
_describe -t commands 'ordinary utils help css minify commands' commands "$@"
}
(( $+functions[_ordinary__subcmd__utils__subcmd__help__subcmd__exif_commands] )) ||
_ordinary__subcmd__utils__subcmd__help__subcmd__exif_commands() {
local commands; commands=(
'tool:\[\`exiftool\`\](https\://exiftool.org) command' \
)
_describe -t commands 'ordinary utils help exif commands' commands "$@"
}
(( $+functions[_ordinary__subcmd__utils__subcmd__help__subcmd__exif__subcmd__tool_commands] )) ||
_ordinary__subcmd__utils__subcmd__help__subcmd__exif__subcmd__tool_commands() {
local commands; commands=()
_describe -t commands 'ordinary utils help exif tool commands' commands "$@"
}
(( $+functions[_ordinary__subcmd__utils__subcmd__help__subcmd__help_commands] )) ||
_ordinary__subcmd__utils__subcmd__help__subcmd__help_commands() {
local commands; commands=()
_describe -t commands 'ordinary utils help help commands' commands "$@"
}
(( $+functions[_ordinary__subcmd__utils__subcmd__help__subcmd__html_commands] )) ||
_ordinary__subcmd__utils__subcmd__help__subcmd__html_commands() {
local commands; commands=(
'minify:minify HTML files' \
'csp-hashes:generate hashes for a Content-Security-Policy based on an HTML file and its inlined scripts/styles' \
)
_describe -t commands 'ordinary utils help html commands' commands "$@"
}
(( $+functions[_ordinary__subcmd__utils__subcmd__help__subcmd__html__subcmd__csp-hashes_commands] )) ||
_ordinary__subcmd__utils__subcmd__help__subcmd__html__subcmd__csp-hashes_commands() {
local commands; commands=()
_describe -t commands 'ordinary utils help html csp-hashes commands' commands "$@"
}
(( $+functions[_ordinary__subcmd__utils__subcmd__help__subcmd__html__subcmd__minify_commands] )) ||
_ordinary__subcmd__utils__subcmd__help__subcmd__html__subcmd__minify_commands() {
local commands; commands=()
_describe -t commands 'ordinary utils help html minify commands' commands "$@"
}
(( $+functions[_ordinary__subcmd__utils__subcmd__help__subcmd__js_commands] )) ||
_ordinary__subcmd__utils__subcmd__help__subcmd__js_commands() {
local commands; commands=(
'minify:minify JavaScript files' \
)
_describe -t commands 'ordinary utils help js commands' commands "$@"
}
(( $+functions[_ordinary__subcmd__utils__subcmd__help__subcmd__js__subcmd__minify_commands] )) ||
_ordinary__subcmd__utils__subcmd__help__subcmd__js__subcmd__minify_commands() {
local commands; commands=()
_describe -t commands 'ordinary utils help js minify commands' commands "$@"
}
(( $+functions[_ordinary__subcmd__utils__subcmd__help__subcmd__markdown_commands] )) ||
_ordinary__subcmd__utils__subcmd__help__subcmd__markdown_commands() {
local commands; commands=(
'to-html:process and place an .html file next to the referenced .md file' \
)
_describe -t commands 'ordinary utils help markdown commands' commands "$@"
}
(( $+functions[_ordinary__subcmd__utils__subcmd__help__subcmd__markdown__subcmd__to-html_commands] )) ||
_ordinary__subcmd__utils__subcmd__help__subcmd__markdown__subcmd__to-html_commands() {
local commands; commands=()
_describe -t commands 'ordinary utils help markdown to-html commands' commands "$@"
}
(( $+functions[_ordinary__subcmd__utils__subcmd__help__subcmd__qr-code_commands] )) ||
_ordinary__subcmd__utils__subcmd__help__subcmd__qr-code_commands() {
local commands; commands=()
_describe -t commands 'ordinary utils help qr-code commands' commands "$@"
}
(( $+functions[_ordinary__subcmd__utils__subcmd__help__subcmd__timestamp_commands] )) ||
_ordinary__subcmd__utils__subcmd__help__subcmd__timestamp_commands() {
local commands; commands=()
_describe -t commands 'ordinary utils help timestamp commands' commands "$@"
}
(( $+functions[_ordinary__subcmd__utils__subcmd__help__subcmd__uuid_commands] )) ||
_ordinary__subcmd__utils__subcmd__help__subcmd__uuid_commands() {
local commands; commands=()
_describe -t commands 'ordinary utils help uuid commands' commands "$@"
}
(( $+functions[_ordinary__subcmd__utils__subcmd__html_commands] )) ||
_ordinary__subcmd__utils__subcmd__html_commands() {
local commands; commands=(
'minify:minify HTML files' \
'min:minify HTML files' \
'csp-hashes:generate hashes for a Content-Security-Policy based on an HTML file and its inlined scripts/styles' \
'help:Print this message or the help of the given subcommand(s)' \
)
_describe -t commands 'ordinary utils html commands' commands "$@"
}
(( $+functions[_ordinary__subcmd__utils__subcmd__html__subcmd__csp-hashes_commands] )) ||
_ordinary__subcmd__utils__subcmd__html__subcmd__csp-hashes_commands() {
local commands; commands=()
_describe -t commands 'ordinary utils html csp-hashes commands' commands "$@"
}
(( $+functions[_ordinary__subcmd__utils__subcmd__html__subcmd__help_commands] )) ||
_ordinary__subcmd__utils__subcmd__html__subcmd__help_commands() {
local commands; commands=(
'minify:minify HTML files' \
'csp-hashes:generate hashes for a Content-Security-Policy based on an HTML file and its inlined scripts/styles' \
'help:Print this message or the help of the given subcommand(s)' \
)
_describe -t commands 'ordinary utils html help commands' commands "$@"
}
(( $+functions[_ordinary__subcmd__utils__subcmd__html__subcmd__help__subcmd__csp-hashes_commands] )) ||
_ordinary__subcmd__utils__subcmd__html__subcmd__help__subcmd__csp-hashes_commands() {
local commands; commands=()
_describe -t commands 'ordinary utils html help csp-hashes commands' commands "$@"
}
(( $+functions[_ordinary__subcmd__utils__subcmd__html__subcmd__help__subcmd__help_commands] )) ||
_ordinary__subcmd__utils__subcmd__html__subcmd__help__subcmd__help_commands() {
local commands; commands=()
_describe -t commands 'ordinary utils html help help commands' commands "$@"
}
(( $+functions[_ordinary__subcmd__utils__subcmd__html__subcmd__help__subcmd__minify_commands] )) ||
_ordinary__subcmd__utils__subcmd__html__subcmd__help__subcmd__minify_commands() {
local commands; commands=()
_describe -t commands 'ordinary utils html help minify commands' commands "$@"
}
(( $+functions[_ordinary__subcmd__utils__subcmd__html__subcmd__minify_commands] )) ||
_ordinary__subcmd__utils__subcmd__html__subcmd__minify_commands() {
local commands; commands=()
_describe -t commands 'ordinary utils html minify commands' commands "$@"
}
(( $+functions[_ordinary__subcmd__utils__subcmd__js_commands] )) ||
_ordinary__subcmd__utils__subcmd__js_commands() {
local commands; commands=(
'minify:minify JavaScript files' \
'min:minify JavaScript files' \
'help:Print this message or the help of the given subcommand(s)' \
)
_describe -t commands 'ordinary utils js commands' commands "$@"
}
(( $+functions[_ordinary__subcmd__utils__subcmd__js__subcmd__help_commands] )) ||
_ordinary__subcmd__utils__subcmd__js__subcmd__help_commands() {
local commands; commands=(
'minify:minify JavaScript files' \
'help:Print this message or the help of the given subcommand(s)' \
)
_describe -t commands 'ordinary utils js help commands' commands "$@"
}
(( $+functions[_ordinary__subcmd__utils__subcmd__js__subcmd__help__subcmd__help_commands] )) ||
_ordinary__subcmd__utils__subcmd__js__subcmd__help__subcmd__help_commands() {
local commands; commands=()
_describe -t commands 'ordinary utils js help help commands' commands "$@"
}
(( $+functions[_ordinary__subcmd__utils__subcmd__js__subcmd__help__subcmd__minify_commands] )) ||
_ordinary__subcmd__utils__subcmd__js__subcmd__help__subcmd__minify_commands() {
local commands; commands=()
_describe -t commands 'ordinary utils js help minify commands' commands "$@"
}
(( $+functions[_ordinary__subcmd__utils__subcmd__js__subcmd__minify_commands] )) ||
_ordinary__subcmd__utils__subcmd__js__subcmd__minify_commands() {
local commands; commands=()
_describe -t commands 'ordinary utils js minify commands' commands "$@"
}
(( $+functions[_ordinary__subcmd__utils__subcmd__markdown_commands] )) ||
_ordinary__subcmd__utils__subcmd__markdown_commands() {
local commands; commands=(
'to-html:process and place an .html file next to the referenced .md file' \
'help:Print this message or the help of the given subcommand(s)' \
)
_describe -t commands 'ordinary utils markdown commands' commands "$@"
}
(( $+functions[_ordinary__subcmd__utils__subcmd__markdown__subcmd__help_commands] )) ||
_ordinary__subcmd__utils__subcmd__markdown__subcmd__help_commands() {
local commands; commands=(
'to-html:process and place an .html file next to the referenced .md file' \
'help:Print this message or the help of the given subcommand(s)' \
)
_describe -t commands 'ordinary utils markdown help commands' commands "$@"
}
(( $+functions[_ordinary__subcmd__utils__subcmd__markdown__subcmd__help__subcmd__help_commands] )) ||
_ordinary__subcmd__utils__subcmd__markdown__subcmd__help__subcmd__help_commands() {
local commands; commands=()
_describe -t commands 'ordinary utils markdown help help commands' commands "$@"
}
(( $+functions[_ordinary__subcmd__utils__subcmd__markdown__subcmd__help__subcmd__to-html_commands] )) ||
_ordinary__subcmd__utils__subcmd__markdown__subcmd__help__subcmd__to-html_commands() {
local commands; commands=()
_describe -t commands 'ordinary utils markdown help to-html commands' commands "$@"
}
(( $+functions[_ordinary__subcmd__utils__subcmd__markdown__subcmd__to-html_commands] )) ||
_ordinary__subcmd__utils__subcmd__markdown__subcmd__to-html_commands() {
local commands; commands=()
_describe -t commands 'ordinary utils markdown to-html commands' commands "$@"
}
(( $+functions[_ordinary__subcmd__utils__subcmd__qr-code_commands] )) ||
_ordinary__subcmd__utils__subcmd__qr-code_commands() {
local commands; commands=()
_describe -t commands 'ordinary utils qr-code commands' commands "$@"
}
(( $+functions[_ordinary__subcmd__utils__subcmd__timestamp_commands] )) ||
_ordinary__subcmd__utils__subcmd__timestamp_commands() {
local commands; commands=()
_describe -t commands 'ordinary utils timestamp commands' commands "$@"
}
(( $+functions[_ordinary__subcmd__utils__subcmd__uuid_commands] )) ||
_ordinary__subcmd__utils__subcmd__uuid_commands() {
local commands; commands=()
_describe -t commands 'ordinary utils uuid commands' commands "$@"
}
if [ "$funcstack[1]" = "_ordinary" ]; then
_ordinary "$@"
else
compdef _ordinary ordinary
fi