# Print an optspec for argparse to handle cmd's options that are independent of any subcommand.
function __fish_ordinary_global_optspecs
string join \n p/project= api-domain= insecure danger-accept-invalid-certs v/verbose q/quiet pretty h/help V/version
end
function __fish_ordinary_needs_command
# Figure out if the current invocation already has a command.
set -l cmd (commandline -opc)
set -e cmd[1]
argparse -s (__fish_ordinary_global_optspecs) -- $cmd 2>/dev/null
or return
if set -q argv[1]
# Also print the command, so this can be used to figure out what it is.
echo $argv[1]
return 1
end
return 0
end
function __fish_ordinary_using_subcommand
set -l cmd (__fish_ordinary_needs_command)
test -z "$cmd"
and return 1
contains -- $cmd[1] $argv
end
complete -c ordinary -n "__fish_ordinary_needs_command" -s p -l project -d 'project path' -r
complete -c ordinary -n "__fish_ordinary_needs_command" -l api-domain -d 'should only be necessary with localhost or when addressing by IP' -r
complete -c ordinary -n "__fish_ordinary_needs_command" -l insecure -d 'use HTTP instead of HTTPS'
complete -c ordinary -n "__fish_ordinary_needs_command" -l danger-accept-invalid-certs -d 'DANGER: only use when working with self-signed localhost certs'
complete -c ordinary -n "__fish_ordinary_needs_command" -s v -l verbose -d 'Increase logging verbosity'
complete -c ordinary -n "__fish_ordinary_needs_command" -s q -l quiet -d 'Decrease logging verbosity'
complete -c ordinary -n "__fish_ordinary_needs_command" -l pretty -d 'whether to pretty print events to stdio'
complete -c ordinary -n "__fish_ordinary_needs_command" -s h -l help -d 'Print help'
complete -c ordinary -n "__fish_ordinary_needs_command" -s V -l version -d 'Print version'
complete -c ordinary -n "__fish_ordinary_needs_command" -f -a "new" -d 'create a new Ordinary project'
complete -c ordinary -n "__fish_ordinary_needs_command" -f -a "ssg" -d 'manage static site configuration'
complete -c ordinary -n "__fish_ordinary_needs_command" -f -a "build" -d 'build your Ordinary project'
complete -c ordinary -n "__fish_ordinary_needs_command" -f -a "start" -d 'start the app, locally'
complete -c ordinary -n "__fish_ordinary_needs_command" -f -a "publish" -d 'combines `build`, `content update`, `assets write`, `templates upload`, `actions install`'
complete -c ordinary -n "__fish_ordinary_needs_command" -f -a "templates" -d 'manage templates in your Ordinary project'
complete -c ordinary -n "__fish_ordinary_needs_command" -f -a "content" -d 'manage content in your Ordinary project'
complete -c ordinary -n "__fish_ordinary_needs_command" -f -a "assets" -d 'manage assets in your Ordinary project'
complete -c ordinary -n "__fish_ordinary_needs_command" -f -a "models" -d 'manage models in your Ordinary project'
complete -c ordinary -n "__fish_ordinary_needs_command" -f -a "actions" -d 'manage actions in your Ordinary project'
complete -c ordinary -n "__fish_ordinary_needs_command" -f -a "integrations" -d 'manage integrations in your Ordinary project'
complete -c ordinary -n "__fish_ordinary_needs_command" -f -a "accounts" -d 'manage accounts connected to `ordinaryd`'
complete -c ordinary -n "__fish_ordinary_needs_command" -f -a "app" -d 'manage applications running on `ordinaryd`'
complete -c ordinary -n "__fish_ordinary_needs_command" -f -a "secrets" -d 'manage secrets in your Ordinary application'
complete -c ordinary -n "__fish_ordinary_needs_command" -f -a "root"
complete -c ordinary -n "__fish_ordinary_needs_command" -f -a "doctor" -d 'ensure that all the correct system components are installed'
complete -c ordinary -n "__fish_ordinary_needs_command" -f -a "utils" -d 'utility functions for aiding project development'
complete -c ordinary -n "__fish_ordinary_needs_command" -f -a "help" -d 'Print this message or the help of the given subcommand(s)'
complete -c ordinary -n "__fish_ordinary_using_subcommand new" -l path -d 'project path' -r
complete -c ordinary -n "__fish_ordinary_using_subcommand new" -s p -l project -d 'project path' -r
complete -c ordinary -n "__fish_ordinary_using_subcommand new" -l api-domain -d 'should only be necessary with localhost or when addressing by IP' -r
complete -c ordinary -n "__fish_ordinary_using_subcommand new" -l insecure -d 'use HTTP instead of HTTPS'
complete -c ordinary -n "__fish_ordinary_using_subcommand new" -l danger-accept-invalid-certs -d 'DANGER: only use when working with self-signed localhost certs'
complete -c ordinary -n "__fish_ordinary_using_subcommand new" -s v -l verbose -d 'Increase logging verbosity'
complete -c ordinary -n "__fish_ordinary_using_subcommand new" -s q -l quiet -d 'Decrease logging verbosity'
complete -c ordinary -n "__fish_ordinary_using_subcommand new" -l pretty -d 'whether to pretty print events to stdio'
complete -c ordinary -n "__fish_ordinary_using_subcommand new" -s h -l help -d 'Print help'
complete -c ordinary -n "__fish_ordinary_using_subcommand new" -s V -l version -d 'Print version'
complete -c ordinary -n "__fish_ordinary_using_subcommand ssg; and not __fish_seen_subcommand_from init help" -s p -l project -d 'project path' -r
complete -c ordinary -n "__fish_ordinary_using_subcommand ssg; and not __fish_seen_subcommand_from init help" -l api-domain -d 'should only be necessary with localhost or when addressing by IP' -r
complete -c ordinary -n "__fish_ordinary_using_subcommand ssg; and not __fish_seen_subcommand_from init help" -l insecure -d 'use HTTP instead of HTTPS'
complete -c ordinary -n "__fish_ordinary_using_subcommand ssg; and not __fish_seen_subcommand_from init help" -l danger-accept-invalid-certs -d 'DANGER: only use when working with self-signed localhost certs'
complete -c ordinary -n "__fish_ordinary_using_subcommand ssg; and not __fish_seen_subcommand_from init help" -s v -l verbose -d 'Increase logging verbosity'
complete -c ordinary -n "__fish_ordinary_using_subcommand ssg; and not __fish_seen_subcommand_from init help" -s q -l quiet -d 'Decrease logging verbosity'
complete -c ordinary -n "__fish_ordinary_using_subcommand ssg; and not __fish_seen_subcommand_from init help" -l pretty -d 'whether to pretty print events to stdio'
complete -c ordinary -n "__fish_ordinary_using_subcommand ssg; and not __fish_seen_subcommand_from init help" -s h -l help -d 'Print help'
complete -c ordinary -n "__fish_ordinary_using_subcommand ssg; and not __fish_seen_subcommand_from init help" -s V -l version -d 'Print version'
complete -c ordinary -n "__fish_ordinary_using_subcommand ssg; and not __fish_seen_subcommand_from init help" -f -a "init" -d 'generate an `ordinary.json` config to deploy your SSG to a running instance of `ordinaryd`'
complete -c ordinary -n "__fish_ordinary_using_subcommand ssg; and not __fish_seen_subcommand_from init help" -f -a "help" -d 'Print this message or the help of the given subcommand(s)'
complete -c ordinary -n "__fish_ordinary_using_subcommand ssg; and __fish_seen_subcommand_from init" -s c -l contacts -d 'contacts for Let\'s Encrypt (auto-TLS) [source](https://docs.rs/rustls-acme/latest/rustls_acme/struct.AcmeConfig.html#method.contact_push)' -r
complete -c ordinary -n "__fish_ordinary_using_subcommand ssg; and __fish_seen_subcommand_from init" -s p -l project -d 'project path' -r
complete -c ordinary -n "__fish_ordinary_using_subcommand ssg; and __fish_seen_subcommand_from init" -l api-domain -d 'should only be necessary with localhost or when addressing by IP' -r
complete -c ordinary -n "__fish_ordinary_using_subcommand ssg; and __fish_seen_subcommand_from init" -s e -l error-page -d 'include generated 404.html as error page'
complete -c ordinary -n "__fish_ordinary_using_subcommand ssg; and __fish_seen_subcommand_from init" -s s -l inline-styles -d 'accommodate inline styles in the generated files'
complete -c ordinary -n "__fish_ordinary_using_subcommand ssg; and __fish_seen_subcommand_from init" -s r -l inline-scripts -d 'accommodate inline scripts in the generated files'
complete -c ordinary -n "__fish_ordinary_using_subcommand ssg; and __fish_seen_subcommand_from init" -s m -l inline-images -d 'accommodate inline images in the generated files'
complete -c ordinary -n "__fish_ordinary_using_subcommand ssg; and __fish_seen_subcommand_from init" -l insecure -d 'use HTTP instead of HTTPS'
complete -c ordinary -n "__fish_ordinary_using_subcommand ssg; and __fish_seen_subcommand_from init" -l danger-accept-invalid-certs -d 'DANGER: only use when working with self-signed localhost certs'
complete -c ordinary -n "__fish_ordinary_using_subcommand ssg; and __fish_seen_subcommand_from init" -s v -l verbose -d 'Increase logging verbosity'
complete -c ordinary -n "__fish_ordinary_using_subcommand ssg; and __fish_seen_subcommand_from init" -s q -l quiet -d 'Decrease logging verbosity'
complete -c ordinary -n "__fish_ordinary_using_subcommand ssg; and __fish_seen_subcommand_from init" -l pretty -d 'whether to pretty print events to stdio'
complete -c ordinary -n "__fish_ordinary_using_subcommand ssg; and __fish_seen_subcommand_from init" -s h -l help -d 'Print help'
complete -c ordinary -n "__fish_ordinary_using_subcommand ssg; and __fish_seen_subcommand_from init" -s V -l version -d 'Print version'
complete -c ordinary -n "__fish_ordinary_using_subcommand ssg; and __fish_seen_subcommand_from help" -f -a "init" -d 'generate an `ordinary.json` config to deploy your SSG to a running instance of `ordinaryd`'
complete -c ordinary -n "__fish_ordinary_using_subcommand ssg; and __fish_seen_subcommand_from help" -f -a "help" -d 'Print this message or the help of the given subcommand(s)'
complete -c ordinary -n "__fish_ordinary_using_subcommand build" -s p -l project -d 'project path' -r
complete -c ordinary -n "__fish_ordinary_using_subcommand build" -l api-domain -d 'should only be necessary with localhost or when addressing by IP' -r
complete -c ordinary -n "__fish_ordinary_using_subcommand build" -s i -l ignore-cache -d 'build project without checking the cache'
complete -c ordinary -n "__fish_ordinary_using_subcommand build" -l insecure -d 'use HTTP instead of HTTPS'
complete -c ordinary -n "__fish_ordinary_using_subcommand build" -l danger-accept-invalid-certs -d 'DANGER: only use when working with self-signed localhost certs'
complete -c ordinary -n "__fish_ordinary_using_subcommand build" -s v -l verbose -d 'Increase logging verbosity'
complete -c ordinary -n "__fish_ordinary_using_subcommand build" -s q -l quiet -d 'Decrease logging verbosity'
complete -c ordinary -n "__fish_ordinary_using_subcommand build" -l pretty -d 'whether to pretty print events to stdio'
complete -c ordinary -n "__fish_ordinary_using_subcommand build" -s h -l help -d 'Print help (see more with \'--help\')'
complete -c ordinary -n "__fish_ordinary_using_subcommand build" -s V -l version -d 'Print version'
complete -c ordinary -n "__fish_ordinary_using_subcommand start" -l provision -d 'what mode TLS certs should be provisioned in' -r -f -a "staging\t''
production\t''
localhost\t''"
complete -c ordinary -n "__fish_ordinary_using_subcommand start" -l port -d 'specify HTTP(s) port for server' -r
complete -c ordinary -n "__fish_ordinary_using_subcommand start" -l redirect-port -d 'specify HTTP port for server when running in secure mode' -r
complete -c ordinary -n "__fish_ordinary_using_subcommand start" -l log-ttl-hours -d 'max period of time logs are stored' -r
complete -c ordinary -n "__fish_ordinary_using_subcommand start" -l log-rotation-file-size -d 'max size (in bytes) per log file' -r
complete -c ordinary -n "__fish_ordinary_using_subcommand start" -l log-rotation-mins -d 'max amount of time a log file is appended to before being compressed and stored' -r
complete -c ordinary -n "__fish_ordinary_using_subcommand start" -l redacted-header-hash -d '"none" | "blake2" | "blake3"' -r
complete -c ordinary -n "__fish_ordinary_using_subcommand start" -l data-dir -d 'specify the data directory' -r
complete -c ordinary -n "__fish_ordinary_using_subcommand start" -l stdio-logs-fmt -d 'how to format stdio logs' -r -f -a "concise\t''
pretty\t''
json\t''"
complete -c ordinary -n "__fish_ordinary_using_subcommand start" -l log-level -d 'base log level for every component' -r -f -a "error\t''
warn\t''
info\t''
debug\t''
trace\t''"
complete -c ordinary -n "__fish_ordinary_using_subcommand start" -s p -l project -d 'project path' -r
complete -c ordinary -n "__fish_ordinary_using_subcommand start" -l api-domain -d 'should only be necessary with localhost or when addressing by IP' -r
complete -c ordinary -n "__fish_ordinary_using_subcommand start" -l insecure -d 'run without HTTPS'
complete -c ordinary -n "__fish_ordinary_using_subcommand start" -l insecure-cookies -d 'run with insecure cookies'
complete -c ordinary -n "__fish_ordinary_using_subcommand start" -l log-headers -d 'whether HTTP request and response headers are logged'
complete -c ordinary -n "__fish_ordinary_using_subcommand start" -l log-ips -d 'whether IP Addresses are logged with HTTP requests'
complete -c ordinary -n "__fish_ordinary_using_subcommand start" -l stored-logs -d 'persists JSON formatted log lines to <data-dir>/logs/<domain>/'
complete -c ordinary -n "__fish_ordinary_using_subcommand start" -l stdio-logs -d 'logs events to stdio'
complete -c ordinary -n "__fish_ordinary_using_subcommand start" -l journald-logs -d 'logs events to `journald` (only works on Linux distros that use `systemd`)'
complete -c ordinary -n "__fish_ordinary_using_subcommand start" -l log-sizes -d 'whether storage and certain payload sizes are logged'
complete -c ordinary -n "__fish_ordinary_using_subcommand start" -l stdio-logs-timing -d 'whether span timing is logged'
complete -c ordinary -n "__fish_ordinary_using_subcommand start" -s d -l disable-defaults -d 'disables these defaults set for development: `--stdio-logs` `--stdio-logs-fmt concise` `--insecure` `--insecure-cookies`'
complete -c ordinary -n "__fish_ordinary_using_subcommand start" -l danger-accept-invalid-certs -d 'DANGER: only use when working with self-signed localhost certs'
complete -c ordinary -n "__fish_ordinary_using_subcommand start" -s v -l verbose -d 'Increase logging verbosity'
complete -c ordinary -n "__fish_ordinary_using_subcommand start" -s q -l quiet -d 'Decrease logging verbosity'
complete -c ordinary -n "__fish_ordinary_using_subcommand start" -l pretty -d 'whether to pretty print events to stdio'
complete -c ordinary -n "__fish_ordinary_using_subcommand start" -s h -l help -d 'Print help'
complete -c ordinary -n "__fish_ordinary_using_subcommand start" -s V -l version -d 'Print version'
complete -c ordinary -n "__fish_ordinary_using_subcommand publish" -s p -l project -d 'project path' -r
complete -c ordinary -n "__fish_ordinary_using_subcommand publish" -l api-domain -d 'should only be necessary with localhost or when addressing by IP' -r
complete -c ordinary -n "__fish_ordinary_using_subcommand publish" -l insecure -d 'use HTTP instead of HTTPS'
complete -c ordinary -n "__fish_ordinary_using_subcommand publish" -l danger-accept-invalid-certs -d 'DANGER: only use when working with self-signed localhost certs'
complete -c ordinary -n "__fish_ordinary_using_subcommand publish" -s v -l verbose -d 'Increase logging verbosity'
complete -c ordinary -n "__fish_ordinary_using_subcommand publish" -s q -l quiet -d 'Decrease logging verbosity'
complete -c ordinary -n "__fish_ordinary_using_subcommand publish" -l pretty -d 'whether to pretty print events to stdio'
complete -c ordinary -n "__fish_ordinary_using_subcommand publish" -s h -l help -d 'Print help'
complete -c ordinary -n "__fish_ordinary_using_subcommand publish" -s V -l version -d 'Print version'
complete -c ordinary -n "__fish_ordinary_using_subcommand templates; and not __fish_seen_subcommand_from add upload help" -s p -l project -d 'project path' -r
complete -c ordinary -n "__fish_ordinary_using_subcommand templates; and not __fish_seen_subcommand_from add upload help" -l api-domain -d 'should only be necessary with localhost or when addressing by IP' -r
complete -c ordinary -n "__fish_ordinary_using_subcommand templates; and not __fish_seen_subcommand_from add upload help" -l insecure -d 'use HTTP instead of HTTPS'
complete -c ordinary -n "__fish_ordinary_using_subcommand templates; and not __fish_seen_subcommand_from add upload help" -l danger-accept-invalid-certs -d 'DANGER: only use when working with self-signed localhost certs'
complete -c ordinary -n "__fish_ordinary_using_subcommand templates; and not __fish_seen_subcommand_from add upload help" -s v -l verbose -d 'Increase logging verbosity'
complete -c ordinary -n "__fish_ordinary_using_subcommand templates; and not __fish_seen_subcommand_from add upload help" -s q -l quiet -d 'Decrease logging verbosity'
complete -c ordinary -n "__fish_ordinary_using_subcommand templates; and not __fish_seen_subcommand_from add upload help" -l pretty -d 'whether to pretty print events to stdio'
complete -c ordinary -n "__fish_ordinary_using_subcommand templates; and not __fish_seen_subcommand_from add upload help" -s h -l help -d 'Print help'
complete -c ordinary -n "__fish_ordinary_using_subcommand templates; and not __fish_seen_subcommand_from add upload help" -s V -l version -d 'Print version'
complete -c ordinary -n "__fish_ordinary_using_subcommand templates; and not __fish_seen_subcommand_from add upload help" -f -a "add" -d 'add a new template to the Ordinary project'
complete -c ordinary -n "__fish_ordinary_using_subcommand templates; and not __fish_seen_subcommand_from add upload help" -f -a "upload" -d 'upload templates to application running on `ordinaryd` instance'
complete -c ordinary -n "__fish_ordinary_using_subcommand templates; and not __fish_seen_subcommand_from add upload help" -f -a "help" -d 'Print this message or the help of the given subcommand(s)'
complete -c ordinary -n "__fish_ordinary_using_subcommand templates; and __fish_seen_subcommand_from add" -s e -l error -d 'whether the template is an error template' -r -f -a "true\t''
false\t''"
complete -c ordinary -n "__fish_ordinary_using_subcommand templates; and __fish_seen_subcommand_from add" -s p -l project -d 'project path' -r
complete -c ordinary -n "__fish_ordinary_using_subcommand templates; and __fish_seen_subcommand_from add" -l api-domain -d 'should only be necessary with localhost or when addressing by IP' -r
complete -c ordinary -n "__fish_ordinary_using_subcommand templates; and __fish_seen_subcommand_from add" -l insecure -d 'use HTTP instead of HTTPS'
complete -c ordinary -n "__fish_ordinary_using_subcommand templates; and __fish_seen_subcommand_from add" -l danger-accept-invalid-certs -d 'DANGER: only use when working with self-signed localhost certs'
complete -c ordinary -n "__fish_ordinary_using_subcommand templates; and __fish_seen_subcommand_from add" -s v -l verbose -d 'Increase logging verbosity'
complete -c ordinary -n "__fish_ordinary_using_subcommand templates; and __fish_seen_subcommand_from add" -s q -l quiet -d 'Decrease logging verbosity'
complete -c ordinary -n "__fish_ordinary_using_subcommand templates; and __fish_seen_subcommand_from add" -l pretty -d 'whether to pretty print events to stdio'
complete -c ordinary -n "__fish_ordinary_using_subcommand templates; and __fish_seen_subcommand_from add" -s h -l help -d 'Print help'
complete -c ordinary -n "__fish_ordinary_using_subcommand templates; and __fish_seen_subcommand_from add" -s V -l version -d 'Print version'
complete -c ordinary -n "__fish_ordinary_using_subcommand templates; and __fish_seen_subcommand_from upload" -s n -l name -d 'name of a specific template to upload (optional). will upload all when the `--name` flag is not passed' -r
complete -c ordinary -n "__fish_ordinary_using_subcommand templates; and __fish_seen_subcommand_from upload" -s p -l project -d 'project path' -r
complete -c ordinary -n "__fish_ordinary_using_subcommand templates; and __fish_seen_subcommand_from upload" -l api-domain -d 'should only be necessary with localhost or when addressing by IP' -r
complete -c ordinary -n "__fish_ordinary_using_subcommand templates; and __fish_seen_subcommand_from upload" -l insecure -d 'use HTTP instead of HTTPS'
complete -c ordinary -n "__fish_ordinary_using_subcommand templates; and __fish_seen_subcommand_from upload" -l danger-accept-invalid-certs -d 'DANGER: only use when working with self-signed localhost certs'
complete -c ordinary -n "__fish_ordinary_using_subcommand templates; and __fish_seen_subcommand_from upload" -s v -l verbose -d 'Increase logging verbosity'
complete -c ordinary -n "__fish_ordinary_using_subcommand templates; and __fish_seen_subcommand_from upload" -s q -l quiet -d 'Decrease logging verbosity'
complete -c ordinary -n "__fish_ordinary_using_subcommand templates; and __fish_seen_subcommand_from upload" -l pretty -d 'whether to pretty print events to stdio'
complete -c ordinary -n "__fish_ordinary_using_subcommand templates; and __fish_seen_subcommand_from upload" -s h -l help -d 'Print help'
complete -c ordinary -n "__fish_ordinary_using_subcommand templates; and __fish_seen_subcommand_from upload" -s V -l version -d 'Print version'
complete -c ordinary -n "__fish_ordinary_using_subcommand templates; and __fish_seen_subcommand_from help" -f -a "add" -d 'add a new template to the Ordinary project'
complete -c ordinary -n "__fish_ordinary_using_subcommand templates; and __fish_seen_subcommand_from help" -f -a "upload" -d 'upload templates to application running on `ordinaryd` instance'
complete -c ordinary -n "__fish_ordinary_using_subcommand templates; and __fish_seen_subcommand_from help" -f -a "help" -d 'Print this message or the help of the given subcommand(s)'
complete -c ordinary -n "__fish_ordinary_using_subcommand content; and not __fish_seen_subcommand_from definition object update help" -s p -l project -d 'project path' -r
complete -c ordinary -n "__fish_ordinary_using_subcommand content; and not __fish_seen_subcommand_from definition object update help" -l api-domain -d 'should only be necessary with localhost or when addressing by IP' -r
complete -c ordinary -n "__fish_ordinary_using_subcommand content; and not __fish_seen_subcommand_from definition object update help" -l insecure -d 'use HTTP instead of HTTPS'
complete -c ordinary -n "__fish_ordinary_using_subcommand content; and not __fish_seen_subcommand_from definition object update help" -l danger-accept-invalid-certs -d 'DANGER: only use when working with self-signed localhost certs'
complete -c ordinary -n "__fish_ordinary_using_subcommand content; and not __fish_seen_subcommand_from definition object update help" -s v -l verbose -d 'Increase logging verbosity'
complete -c ordinary -n "__fish_ordinary_using_subcommand content; and not __fish_seen_subcommand_from definition object update help" -s q -l quiet -d 'Decrease logging verbosity'
complete -c ordinary -n "__fish_ordinary_using_subcommand content; and not __fish_seen_subcommand_from definition object update help" -l pretty -d 'whether to pretty print events to stdio'
complete -c ordinary -n "__fish_ordinary_using_subcommand content; and not __fish_seen_subcommand_from definition object update help" -s h -l help -d 'Print help'
complete -c ordinary -n "__fish_ordinary_using_subcommand content; and not __fish_seen_subcommand_from definition object update help" -s V -l version -d 'Print version'
complete -c ordinary -n "__fish_ordinary_using_subcommand content; and not __fish_seen_subcommand_from definition object update help" -f -a "definition" -d 'manage content definitions for Ordinary project'
complete -c ordinary -n "__fish_ordinary_using_subcommand content; and not __fish_seen_subcommand_from definition object update help" -f -a "object" -d 'manage content objects for Ordinary project'
complete -c ordinary -n "__fish_ordinary_using_subcommand content; and not __fish_seen_subcommand_from definition object update help" -f -a "update" -d 'update content for application running on `ordinaryd` instance'
complete -c ordinary -n "__fish_ordinary_using_subcommand content; and not __fish_seen_subcommand_from definition object update help" -f -a "help" -d 'Print this message or the help of the given subcommand(s)'
complete -c ordinary -n "__fish_ordinary_using_subcommand content; and __fish_seen_subcommand_from definition" -s p -l project -d 'project path' -r
complete -c ordinary -n "__fish_ordinary_using_subcommand content; and __fish_seen_subcommand_from definition" -l api-domain -d 'should only be necessary with localhost or when addressing by IP' -r
complete -c ordinary -n "__fish_ordinary_using_subcommand content; and __fish_seen_subcommand_from definition" -l insecure -d 'use HTTP instead of HTTPS'
complete -c ordinary -n "__fish_ordinary_using_subcommand content; and __fish_seen_subcommand_from definition" -l danger-accept-invalid-certs -d 'DANGER: only use when working with self-signed localhost certs'
complete -c ordinary -n "__fish_ordinary_using_subcommand content; and __fish_seen_subcommand_from definition" -s v -l verbose -d 'Increase logging verbosity'
complete -c ordinary -n "__fish_ordinary_using_subcommand content; and __fish_seen_subcommand_from definition" -s q -l quiet -d 'Decrease logging verbosity'
complete -c ordinary -n "__fish_ordinary_using_subcommand content; and __fish_seen_subcommand_from definition" -l pretty -d 'whether to pretty print events to stdio'
complete -c ordinary -n "__fish_ordinary_using_subcommand content; and __fish_seen_subcommand_from definition" -s h -l help -d 'Print help'
complete -c ordinary -n "__fish_ordinary_using_subcommand content; and __fish_seen_subcommand_from definition" -s V -l version -d 'Print version'
complete -c ordinary -n "__fish_ordinary_using_subcommand content; and __fish_seen_subcommand_from definition" -f -a "add" -d 'add a content definition to your Ordinary project'
complete -c ordinary -n "__fish_ordinary_using_subcommand content; and __fish_seen_subcommand_from definition" -f -a "edit" -d 'edit a content definition to your Ordinary project'
complete -c ordinary -n "__fish_ordinary_using_subcommand content; and __fish_seen_subcommand_from definition" -f -a "help" -d 'Print this message or the help of the given subcommand(s)'
complete -c ordinary -n "__fish_ordinary_using_subcommand content; and __fish_seen_subcommand_from object" -s p -l project -d 'project path' -r
complete -c ordinary -n "__fish_ordinary_using_subcommand content; and __fish_seen_subcommand_from object" -l api-domain -d 'should only be necessary with localhost or when addressing by IP' -r
complete -c ordinary -n "__fish_ordinary_using_subcommand content; and __fish_seen_subcommand_from object" -l insecure -d 'use HTTP instead of HTTPS'
complete -c ordinary -n "__fish_ordinary_using_subcommand content; and __fish_seen_subcommand_from object" -l danger-accept-invalid-certs -d 'DANGER: only use when working with self-signed localhost certs'
complete -c ordinary -n "__fish_ordinary_using_subcommand content; and __fish_seen_subcommand_from object" -s v -l verbose -d 'Increase logging verbosity'
complete -c ordinary -n "__fish_ordinary_using_subcommand content; and __fish_seen_subcommand_from object" -s q -l quiet -d 'Decrease logging verbosity'
complete -c ordinary -n "__fish_ordinary_using_subcommand content; and __fish_seen_subcommand_from object" -l pretty -d 'whether to pretty print events to stdio'
complete -c ordinary -n "__fish_ordinary_using_subcommand content; and __fish_seen_subcommand_from object" -s h -l help -d 'Print help'
complete -c ordinary -n "__fish_ordinary_using_subcommand content; and __fish_seen_subcommand_from object" -s V -l version -d 'Print version'
complete -c ordinary -n "__fish_ordinary_using_subcommand content; and __fish_seen_subcommand_from object" -f -a "add" -d 'add a content object to your Ordinary project'
complete -c ordinary -n "__fish_ordinary_using_subcommand content; and __fish_seen_subcommand_from object" -f -a "edit" -d 'edit a content object to your Ordinary project'
complete -c ordinary -n "__fish_ordinary_using_subcommand content; and __fish_seen_subcommand_from object" -f -a "delete" -d 'delete a content object to your Ordinary project'
complete -c ordinary -n "__fish_ordinary_using_subcommand content; and __fish_seen_subcommand_from object" -f -a "help" -d 'Print this message or the help of the given subcommand(s)'
complete -c ordinary -n "__fish_ordinary_using_subcommand content; and __fish_seen_subcommand_from update" -s p -l project -d 'project path' -r
complete -c ordinary -n "__fish_ordinary_using_subcommand content; and __fish_seen_subcommand_from update" -l api-domain -d 'should only be necessary with localhost or when addressing by IP' -r
complete -c ordinary -n "__fish_ordinary_using_subcommand content; and __fish_seen_subcommand_from update" -l insecure -d 'use HTTP instead of HTTPS'
complete -c ordinary -n "__fish_ordinary_using_subcommand content; and __fish_seen_subcommand_from update" -l danger-accept-invalid-certs -d 'DANGER: only use when working with self-signed localhost certs'
complete -c ordinary -n "__fish_ordinary_using_subcommand content; and __fish_seen_subcommand_from update" -s v -l verbose -d 'Increase logging verbosity'
complete -c ordinary -n "__fish_ordinary_using_subcommand content; and __fish_seen_subcommand_from update" -s q -l quiet -d 'Decrease logging verbosity'
complete -c ordinary -n "__fish_ordinary_using_subcommand content; and __fish_seen_subcommand_from update" -l pretty -d 'whether to pretty print events to stdio'
complete -c ordinary -n "__fish_ordinary_using_subcommand content; and __fish_seen_subcommand_from update" -s h -l help -d 'Print help'
complete -c ordinary -n "__fish_ordinary_using_subcommand content; and __fish_seen_subcommand_from update" -s V -l version -d 'Print version'
complete -c ordinary -n "__fish_ordinary_using_subcommand content; and __fish_seen_subcommand_from help" -f -a "definition" -d 'manage content definitions for Ordinary project'
complete -c ordinary -n "__fish_ordinary_using_subcommand content; and __fish_seen_subcommand_from help" -f -a "object" -d 'manage content objects for Ordinary project'
complete -c ordinary -n "__fish_ordinary_using_subcommand content; and __fish_seen_subcommand_from help" -f -a "update" -d 'update content for application running on `ordinaryd` instance'
complete -c ordinary -n "__fish_ordinary_using_subcommand content; and __fish_seen_subcommand_from help" -f -a "help" -d 'Print this message or the help of the given subcommand(s)'
complete -c ordinary -n "__fish_ordinary_using_subcommand assets; and not __fish_seen_subcommand_from write help" -s p -l project -d 'project path' -r
complete -c ordinary -n "__fish_ordinary_using_subcommand assets; and not __fish_seen_subcommand_from write help" -l api-domain -d 'should only be necessary with localhost or when addressing by IP' -r
complete -c ordinary -n "__fish_ordinary_using_subcommand assets; and not __fish_seen_subcommand_from write help" -l insecure -d 'use HTTP instead of HTTPS'
complete -c ordinary -n "__fish_ordinary_using_subcommand assets; and not __fish_seen_subcommand_from write help" -l danger-accept-invalid-certs -d 'DANGER: only use when working with self-signed localhost certs'
complete -c ordinary -n "__fish_ordinary_using_subcommand assets; and not __fish_seen_subcommand_from write help" -s v -l verbose -d 'Increase logging verbosity'
complete -c ordinary -n "__fish_ordinary_using_subcommand assets; and not __fish_seen_subcommand_from write help" -s q -l quiet -d 'Decrease logging verbosity'
complete -c ordinary -n "__fish_ordinary_using_subcommand assets; and not __fish_seen_subcommand_from write help" -l pretty -d 'whether to pretty print events to stdio'
complete -c ordinary -n "__fish_ordinary_using_subcommand assets; and not __fish_seen_subcommand_from write help" -s h -l help -d 'Print help'
complete -c ordinary -n "__fish_ordinary_using_subcommand assets; and not __fish_seen_subcommand_from write help" -s V -l version -d 'Print version'
complete -c ordinary -n "__fish_ordinary_using_subcommand assets; and not __fish_seen_subcommand_from write help" -f -a "write" -d 'write assets to application running on `ordinaryd` instance'
complete -c ordinary -n "__fish_ordinary_using_subcommand assets; and not __fish_seen_subcommand_from write help" -f -a "help" -d 'Print this message or the help of the given subcommand(s)'
complete -c ordinary -n "__fish_ordinary_using_subcommand assets; and __fish_seen_subcommand_from write" -s n -l name -d 'name of a specific asset to write (optional). will write all when the `--name` flag is not passed' -r
complete -c ordinary -n "__fish_ordinary_using_subcommand assets; and __fish_seen_subcommand_from write" -s p -l project -d 'project path' -r
complete -c ordinary -n "__fish_ordinary_using_subcommand assets; and __fish_seen_subcommand_from write" -l api-domain -d 'should only be necessary with localhost or when addressing by IP' -r
complete -c ordinary -n "__fish_ordinary_using_subcommand assets; and __fish_seen_subcommand_from write" -l insecure -d 'use HTTP instead of HTTPS'
complete -c ordinary -n "__fish_ordinary_using_subcommand assets; and __fish_seen_subcommand_from write" -l danger-accept-invalid-certs -d 'DANGER: only use when working with self-signed localhost certs'
complete -c ordinary -n "__fish_ordinary_using_subcommand assets; and __fish_seen_subcommand_from write" -s v -l verbose -d 'Increase logging verbosity'
complete -c ordinary -n "__fish_ordinary_using_subcommand assets; and __fish_seen_subcommand_from write" -s q -l quiet -d 'Decrease logging verbosity'
complete -c ordinary -n "__fish_ordinary_using_subcommand assets; and __fish_seen_subcommand_from write" -l pretty -d 'whether to pretty print events to stdio'
complete -c ordinary -n "__fish_ordinary_using_subcommand assets; and __fish_seen_subcommand_from write" -s h -l help -d 'Print help'
complete -c ordinary -n "__fish_ordinary_using_subcommand assets; and __fish_seen_subcommand_from write" -s V -l version -d 'Print version'
complete -c ordinary -n "__fish_ordinary_using_subcommand assets; and __fish_seen_subcommand_from help" -f -a "write" -d 'write assets to application running on `ordinaryd` instance'
complete -c ordinary -n "__fish_ordinary_using_subcommand assets; and __fish_seen_subcommand_from help" -f -a "help" -d 'Print this message or the help of the given subcommand(s)'
complete -c ordinary -n "__fish_ordinary_using_subcommand models; and not __fish_seen_subcommand_from add items help" -s p -l project -d 'project path' -r
complete -c ordinary -n "__fish_ordinary_using_subcommand models; and not __fish_seen_subcommand_from add items help" -l api-domain -d 'should only be necessary with localhost or when addressing by IP' -r
complete -c ordinary -n "__fish_ordinary_using_subcommand models; and not __fish_seen_subcommand_from add items help" -l insecure -d 'use HTTP instead of HTTPS'
complete -c ordinary -n "__fish_ordinary_using_subcommand models; and not __fish_seen_subcommand_from add items help" -l danger-accept-invalid-certs -d 'DANGER: only use when working with self-signed localhost certs'
complete -c ordinary -n "__fish_ordinary_using_subcommand models; and not __fish_seen_subcommand_from add items help" -s v -l verbose -d 'Increase logging verbosity'
complete -c ordinary -n "__fish_ordinary_using_subcommand models; and not __fish_seen_subcommand_from add items help" -s q -l quiet -d 'Decrease logging verbosity'
complete -c ordinary -n "__fish_ordinary_using_subcommand models; and not __fish_seen_subcommand_from add items help" -l pretty -d 'whether to pretty print events to stdio'
complete -c ordinary -n "__fish_ordinary_using_subcommand models; and not __fish_seen_subcommand_from add items help" -s h -l help -d 'Print help'
complete -c ordinary -n "__fish_ordinary_using_subcommand models; and not __fish_seen_subcommand_from add items help" -s V -l version -d 'Print version'
complete -c ordinary -n "__fish_ordinary_using_subcommand models; and not __fish_seen_subcommand_from add items help" -f -a "add" -d 'add a new model to your Ordinary project'
complete -c ordinary -n "__fish_ordinary_using_subcommand models; and not __fish_seen_subcommand_from add items help" -f -a "items" -d 'manage model items for the application running on an `ordinaryd` instance'
complete -c ordinary -n "__fish_ordinary_using_subcommand models; and not __fish_seen_subcommand_from add items help" -f -a "help" -d 'Print this message or the help of the given subcommand(s)'
complete -c ordinary -n "__fish_ordinary_using_subcommand models; and __fish_seen_subcommand_from add" -s p -l project -d 'project path' -r
complete -c ordinary -n "__fish_ordinary_using_subcommand models; and __fish_seen_subcommand_from add" -l api-domain -d 'should only be necessary with localhost or when addressing by IP' -r
complete -c ordinary -n "__fish_ordinary_using_subcommand models; and __fish_seen_subcommand_from add" -l insecure -d 'use HTTP instead of HTTPS'
complete -c ordinary -n "__fish_ordinary_using_subcommand models; and __fish_seen_subcommand_from add" -l danger-accept-invalid-certs -d 'DANGER: only use when working with self-signed localhost certs'
complete -c ordinary -n "__fish_ordinary_using_subcommand models; and __fish_seen_subcommand_from add" -s v -l verbose -d 'Increase logging verbosity'
complete -c ordinary -n "__fish_ordinary_using_subcommand models; and __fish_seen_subcommand_from add" -s q -l quiet -d 'Decrease logging verbosity'
complete -c ordinary -n "__fish_ordinary_using_subcommand models; and __fish_seen_subcommand_from add" -l pretty -d 'whether to pretty print events to stdio'
complete -c ordinary -n "__fish_ordinary_using_subcommand models; and __fish_seen_subcommand_from add" -s h -l help -d 'Print help'
complete -c ordinary -n "__fish_ordinary_using_subcommand models; and __fish_seen_subcommand_from add" -s V -l version -d 'Print version'
complete -c ordinary -n "__fish_ordinary_using_subcommand models; and __fish_seen_subcommand_from items" -s p -l project -d 'project path' -r
complete -c ordinary -n "__fish_ordinary_using_subcommand models; and __fish_seen_subcommand_from items" -l api-domain -d 'should only be necessary with localhost or when addressing by IP' -r
complete -c ordinary -n "__fish_ordinary_using_subcommand models; and __fish_seen_subcommand_from items" -l insecure -d 'use HTTP instead of HTTPS'
complete -c ordinary -n "__fish_ordinary_using_subcommand models; and __fish_seen_subcommand_from items" -l danger-accept-invalid-certs -d 'DANGER: only use when working with self-signed localhost certs'
complete -c ordinary -n "__fish_ordinary_using_subcommand models; and __fish_seen_subcommand_from items" -s v -l verbose -d 'Increase logging verbosity'
complete -c ordinary -n "__fish_ordinary_using_subcommand models; and __fish_seen_subcommand_from items" -s q -l quiet -d 'Decrease logging verbosity'
complete -c ordinary -n "__fish_ordinary_using_subcommand models; and __fish_seen_subcommand_from items" -l pretty -d 'whether to pretty print events to stdio'
complete -c ordinary -n "__fish_ordinary_using_subcommand models; and __fish_seen_subcommand_from items" -s h -l help -d 'Print help'
complete -c ordinary -n "__fish_ordinary_using_subcommand models; and __fish_seen_subcommand_from items" -s V -l version -d 'Print version'
complete -c ordinary -n "__fish_ordinary_using_subcommand models; and __fish_seen_subcommand_from items" -f -a "list" -d 'list model items for the application running on an `ordinaryd` instance'
complete -c ordinary -n "__fish_ordinary_using_subcommand models; and __fish_seen_subcommand_from items" -f -a "help" -d 'Print this message or the help of the given subcommand(s)'
complete -c ordinary -n "__fish_ordinary_using_subcommand models; and __fish_seen_subcommand_from help" -f -a "add" -d 'add a new model to your Ordinary project'
complete -c ordinary -n "__fish_ordinary_using_subcommand models; and __fish_seen_subcommand_from help" -f -a "items" -d 'manage model items for the application running on an `ordinaryd` instance'
complete -c ordinary -n "__fish_ordinary_using_subcommand models; and __fish_seen_subcommand_from help" -f -a "help" -d 'Print this message or the help of the given subcommand(s)'
complete -c ordinary -n "__fish_ordinary_using_subcommand actions; and not __fish_seen_subcommand_from add install help" -s p -l project -d 'project path' -r
complete -c ordinary -n "__fish_ordinary_using_subcommand actions; and not __fish_seen_subcommand_from add install help" -l api-domain -d 'should only be necessary with localhost or when addressing by IP' -r
complete -c ordinary -n "__fish_ordinary_using_subcommand actions; and not __fish_seen_subcommand_from add install help" -l insecure -d 'use HTTP instead of HTTPS'
complete -c ordinary -n "__fish_ordinary_using_subcommand actions; and not __fish_seen_subcommand_from add install help" -l danger-accept-invalid-certs -d 'DANGER: only use when working with self-signed localhost certs'
complete -c ordinary -n "__fish_ordinary_using_subcommand actions; and not __fish_seen_subcommand_from add install help" -s v -l verbose -d 'Increase logging verbosity'
complete -c ordinary -n "__fish_ordinary_using_subcommand actions; and not __fish_seen_subcommand_from add install help" -s q -l quiet -d 'Decrease logging verbosity'
complete -c ordinary -n "__fish_ordinary_using_subcommand actions; and not __fish_seen_subcommand_from add install help" -l pretty -d 'whether to pretty print events to stdio'
complete -c ordinary -n "__fish_ordinary_using_subcommand actions; and not __fish_seen_subcommand_from add install help" -s h -l help -d 'Print help'
complete -c ordinary -n "__fish_ordinary_using_subcommand actions; and not __fish_seen_subcommand_from add install help" -s V -l version -d 'Print version'
complete -c ordinary -n "__fish_ordinary_using_subcommand actions; and not __fish_seen_subcommand_from add install help" -f -a "add" -d 'add a new action to your Ordinary project'
complete -c ordinary -n "__fish_ordinary_using_subcommand actions; and not __fish_seen_subcommand_from add install help" -f -a "install" -d 'install actions to application running on `ordinaryd` instance'
complete -c ordinary -n "__fish_ordinary_using_subcommand actions; and not __fish_seen_subcommand_from add install help" -f -a "help" -d 'Print this message or the help of the given subcommand(s)'
complete -c ordinary -n "__fish_ordinary_using_subcommand actions; and __fish_seen_subcommand_from add" -s p -l project -d 'project path' -r
complete -c ordinary -n "__fish_ordinary_using_subcommand actions; and __fish_seen_subcommand_from add" -l api-domain -d 'should only be necessary with localhost or when addressing by IP' -r
complete -c ordinary -n "__fish_ordinary_using_subcommand actions; and __fish_seen_subcommand_from add" -l insecure -d 'use HTTP instead of HTTPS'
complete -c ordinary -n "__fish_ordinary_using_subcommand actions; and __fish_seen_subcommand_from add" -l danger-accept-invalid-certs -d 'DANGER: only use when working with self-signed localhost certs'
complete -c ordinary -n "__fish_ordinary_using_subcommand actions; and __fish_seen_subcommand_from add" -s v -l verbose -d 'Increase logging verbosity'
complete -c ordinary -n "__fish_ordinary_using_subcommand actions; and __fish_seen_subcommand_from add" -s q -l quiet -d 'Decrease logging verbosity'
complete -c ordinary -n "__fish_ordinary_using_subcommand actions; and __fish_seen_subcommand_from add" -l pretty -d 'whether to pretty print events to stdio'
complete -c ordinary -n "__fish_ordinary_using_subcommand actions; and __fish_seen_subcommand_from add" -s h -l help -d 'Print help'
complete -c ordinary -n "__fish_ordinary_using_subcommand actions; and __fish_seen_subcommand_from add" -s V -l version -d 'Print version'
complete -c ordinary -n "__fish_ordinary_using_subcommand actions; and __fish_seen_subcommand_from install" -s n -l name -d 'name of a specific action to install (optional). will install all when the `--name` flag is not passed' -r
complete -c ordinary -n "__fish_ordinary_using_subcommand actions; and __fish_seen_subcommand_from install" -s p -l project -d 'project path' -r
complete -c ordinary -n "__fish_ordinary_using_subcommand actions; and __fish_seen_subcommand_from install" -l api-domain -d 'should only be necessary with localhost or when addressing by IP' -r
complete -c ordinary -n "__fish_ordinary_using_subcommand actions; and __fish_seen_subcommand_from install" -l insecure -d 'use HTTP instead of HTTPS'
complete -c ordinary -n "__fish_ordinary_using_subcommand actions; and __fish_seen_subcommand_from install" -l danger-accept-invalid-certs -d 'DANGER: only use when working with self-signed localhost certs'
complete -c ordinary -n "__fish_ordinary_using_subcommand actions; and __fish_seen_subcommand_from install" -s v -l verbose -d 'Increase logging verbosity'
complete -c ordinary -n "__fish_ordinary_using_subcommand actions; and __fish_seen_subcommand_from install" -s q -l quiet -d 'Decrease logging verbosity'
complete -c ordinary -n "__fish_ordinary_using_subcommand actions; and __fish_seen_subcommand_from install" -l pretty -d 'whether to pretty print events to stdio'
complete -c ordinary -n "__fish_ordinary_using_subcommand actions; and __fish_seen_subcommand_from install" -s h -l help -d 'Print help'
complete -c ordinary -n "__fish_ordinary_using_subcommand actions; and __fish_seen_subcommand_from install" -s V -l version -d 'Print version'
complete -c ordinary -n "__fish_ordinary_using_subcommand actions; and __fish_seen_subcommand_from help" -f -a "add" -d 'add a new action to your Ordinary project'
complete -c ordinary -n "__fish_ordinary_using_subcommand actions; and __fish_seen_subcommand_from help" -f -a "install" -d 'install actions to application running on `ordinaryd` instance'
complete -c ordinary -n "__fish_ordinary_using_subcommand actions; and __fish_seen_subcommand_from help" -f -a "help" -d 'Print this message or the help of the given subcommand(s)'
complete -c ordinary -n "__fish_ordinary_using_subcommand integrations; and not __fish_seen_subcommand_from add help" -s p -l project -d 'project path' -r
complete -c ordinary -n "__fish_ordinary_using_subcommand integrations; and not __fish_seen_subcommand_from add help" -l api-domain -d 'should only be necessary with localhost or when addressing by IP' -r
complete -c ordinary -n "__fish_ordinary_using_subcommand integrations; and not __fish_seen_subcommand_from add help" -l insecure -d 'use HTTP instead of HTTPS'
complete -c ordinary -n "__fish_ordinary_using_subcommand integrations; and not __fish_seen_subcommand_from add help" -l danger-accept-invalid-certs -d 'DANGER: only use when working with self-signed localhost certs'
complete -c ordinary -n "__fish_ordinary_using_subcommand integrations; and not __fish_seen_subcommand_from add help" -s v -l verbose -d 'Increase logging verbosity'
complete -c ordinary -n "__fish_ordinary_using_subcommand integrations; and not __fish_seen_subcommand_from add help" -s q -l quiet -d 'Decrease logging verbosity'
complete -c ordinary -n "__fish_ordinary_using_subcommand integrations; and not __fish_seen_subcommand_from add help" -l pretty -d 'whether to pretty print events to stdio'
complete -c ordinary -n "__fish_ordinary_using_subcommand integrations; and not __fish_seen_subcommand_from add help" -s h -l help -d 'Print help'
complete -c ordinary -n "__fish_ordinary_using_subcommand integrations; and not __fish_seen_subcommand_from add help" -s V -l version -d 'Print version'
complete -c ordinary -n "__fish_ordinary_using_subcommand integrations; and not __fish_seen_subcommand_from add help" -f -a "add" -d 'add a new integration to your Ordinary project'
complete -c ordinary -n "__fish_ordinary_using_subcommand integrations; and not __fish_seen_subcommand_from add help" -f -a "help" -d 'Print this message or the help of the given subcommand(s)'
complete -c ordinary -n "__fish_ordinary_using_subcommand integrations; and __fish_seen_subcommand_from add" -s p -l project -d 'project path' -r
complete -c ordinary -n "__fish_ordinary_using_subcommand integrations; and __fish_seen_subcommand_from add" -l api-domain -d 'should only be necessary with localhost or when addressing by IP' -r
complete -c ordinary -n "__fish_ordinary_using_subcommand integrations; and __fish_seen_subcommand_from add" -l insecure -d 'use HTTP instead of HTTPS'
complete -c ordinary -n "__fish_ordinary_using_subcommand integrations; and __fish_seen_subcommand_from add" -l danger-accept-invalid-certs -d 'DANGER: only use when working with self-signed localhost certs'
complete -c ordinary -n "__fish_ordinary_using_subcommand integrations; and __fish_seen_subcommand_from add" -s v -l verbose -d 'Increase logging verbosity'
complete -c ordinary -n "__fish_ordinary_using_subcommand integrations; and __fish_seen_subcommand_from add" -s q -l quiet -d 'Decrease logging verbosity'
complete -c ordinary -n "__fish_ordinary_using_subcommand integrations; and __fish_seen_subcommand_from add" -l pretty -d 'whether to pretty print events to stdio'
complete -c ordinary -n "__fish_ordinary_using_subcommand integrations; and __fish_seen_subcommand_from add" -s h -l help -d 'Print help'
complete -c ordinary -n "__fish_ordinary_using_subcommand integrations; and __fish_seen_subcommand_from add" -s V -l version -d 'Print version'
complete -c ordinary -n "__fish_ordinary_using_subcommand integrations; and __fish_seen_subcommand_from help" -f -a "add" -d 'add a new integration to your Ordinary project'
complete -c ordinary -n "__fish_ordinary_using_subcommand integrations; and __fish_seen_subcommand_from help" -f -a "help" -d 'Print this message or the help of the given subcommand(s)'
complete -c ordinary -n "__fish_ordinary_using_subcommand accounts; and not __fish_seen_subcommand_from register login logout access password mfa recovery-codes delete invite current list switch help" -s p -l project -d 'project path' -r
complete -c ordinary -n "__fish_ordinary_using_subcommand accounts; and not __fish_seen_subcommand_from register login logout access password mfa recovery-codes delete invite current list switch help" -l api-domain -d 'should only be necessary with localhost or when addressing by IP' -r
complete -c ordinary -n "__fish_ordinary_using_subcommand accounts; and not __fish_seen_subcommand_from register login logout access password mfa recovery-codes delete invite current list switch help" -l insecure -d 'use HTTP instead of HTTPS'
complete -c ordinary -n "__fish_ordinary_using_subcommand accounts; and not __fish_seen_subcommand_from register login logout access password mfa recovery-codes delete invite current list switch help" -l danger-accept-invalid-certs -d 'DANGER: only use when working with self-signed localhost certs'
complete -c ordinary -n "__fish_ordinary_using_subcommand accounts; and not __fish_seen_subcommand_from register login logout access password mfa recovery-codes delete invite current list switch help" -s v -l verbose -d 'Increase logging verbosity'
complete -c ordinary -n "__fish_ordinary_using_subcommand accounts; and not __fish_seen_subcommand_from register login logout access password mfa recovery-codes delete invite current list switch help" -s q -l quiet -d 'Decrease logging verbosity'
complete -c ordinary -n "__fish_ordinary_using_subcommand accounts; and not __fish_seen_subcommand_from register login logout access password mfa recovery-codes delete invite current list switch help" -l pretty -d 'whether to pretty print events to stdio'
complete -c ordinary -n "__fish_ordinary_using_subcommand accounts; and not __fish_seen_subcommand_from register login logout access password mfa recovery-codes delete invite current list switch help" -s h -l help -d 'Print help'
complete -c ordinary -n "__fish_ordinary_using_subcommand accounts; and not __fish_seen_subcommand_from register login logout access password mfa recovery-codes delete invite current list switch help" -s V -l version -d 'Print version'
complete -c ordinary -n "__fish_ordinary_using_subcommand accounts; and not __fish_seen_subcommand_from register login logout access password mfa recovery-codes delete invite current list switch help" -f -a "register" -d 'register a new account'
complete -c ordinary -n "__fish_ordinary_using_subcommand accounts; and not __fish_seen_subcommand_from register login logout access password mfa recovery-codes delete invite current list switch help" -f -a "login" -d 'log in to an existing account'
complete -c ordinary -n "__fish_ordinary_using_subcommand accounts; and not __fish_seen_subcommand_from register login logout access password mfa recovery-codes delete invite current list switch help" -f -a "logout" -d 'log out of a logged in account'
complete -c ordinary -n "__fish_ordinary_using_subcommand accounts; and not __fish_seen_subcommand_from register login logout access password mfa recovery-codes delete invite current list switch help" -f -a "access" -d 'access management subcommands'
complete -c ordinary -n "__fish_ordinary_using_subcommand accounts; and not __fish_seen_subcommand_from register login logout access password mfa recovery-codes delete invite current list switch help" -f -a "password" -d 'password management'
complete -c ordinary -n "__fish_ordinary_using_subcommand accounts; and not __fish_seen_subcommand_from register login logout access password mfa recovery-codes delete invite current list switch help" -f -a "mfa" -d 'MFA management'
complete -c ordinary -n "__fish_ordinary_using_subcommand accounts; and not __fish_seen_subcommand_from register login logout access password mfa recovery-codes delete invite current list switch help" -f -a "recovery-codes" -d 'recovery code management'
complete -c ordinary -n "__fish_ordinary_using_subcommand accounts; and not __fish_seen_subcommand_from register login logout access password mfa recovery-codes delete invite current list switch help" -f -a "delete" -d 'delete account'
complete -c ordinary -n "__fish_ordinary_using_subcommand accounts; and not __fish_seen_subcommand_from register login logout access password mfa recovery-codes delete invite current list switch help" -f -a "invite" -d 'invite another user to a project'
complete -c ordinary -n "__fish_ordinary_using_subcommand accounts; and not __fish_seen_subcommand_from register login logout access password mfa recovery-codes delete invite current list switch help" -f -a "current" -d 'display info for current account'
complete -c ordinary -n "__fish_ordinary_using_subcommand accounts; and not __fish_seen_subcommand_from register login logout access password mfa recovery-codes delete invite current list switch help" -f -a "list" -d 'list all logged in accounts'
complete -c ordinary -n "__fish_ordinary_using_subcommand accounts; and not __fish_seen_subcommand_from register login logout access password mfa recovery-codes delete invite current list switch help" -f -a "switch" -d 'switch to a different logged in account'
complete -c ordinary -n "__fish_ordinary_using_subcommand accounts; and not __fish_seen_subcommand_from register login logout access password mfa recovery-codes delete invite current list switch help" -f -a "help" -d 'Print this message or the help of the given subcommand(s)'
complete -c ordinary -n "__fish_ordinary_using_subcommand accounts; and __fish_seen_subcommand_from register" -l password -d 'password for your new account' -r
complete -c ordinary -n "__fish_ordinary_using_subcommand accounts; and __fish_seen_subcommand_from register" -l invite -d 'base64 encoded invite token' -r
complete -c ordinary -n "__fish_ordinary_using_subcommand accounts; and __fish_seen_subcommand_from register" -s p -l project -d 'project path' -r
complete -c ordinary -n "__fish_ordinary_using_subcommand accounts; and __fish_seen_subcommand_from register" -l api-domain -d 'should only be necessary with localhost or when addressing by IP' -r
complete -c ordinary -n "__fish_ordinary_using_subcommand accounts; and __fish_seen_subcommand_from register" -l insecure -d 'use HTTP instead of HTTPS'
complete -c ordinary -n "__fish_ordinary_using_subcommand accounts; and __fish_seen_subcommand_from register" -l danger-accept-invalid-certs -d 'DANGER: only use when working with self-signed localhost certs'
complete -c ordinary -n "__fish_ordinary_using_subcommand accounts; and __fish_seen_subcommand_from register" -s v -l verbose -d 'Increase logging verbosity'
complete -c ordinary -n "__fish_ordinary_using_subcommand accounts; and __fish_seen_subcommand_from register" -s q -l quiet -d 'Decrease logging verbosity'
complete -c ordinary -n "__fish_ordinary_using_subcommand accounts; and __fish_seen_subcommand_from register" -l pretty -d 'whether to pretty print events to stdio'
complete -c ordinary -n "__fish_ordinary_using_subcommand accounts; and __fish_seen_subcommand_from register" -s h -l help -d 'Print help'
complete -c ordinary -n "__fish_ordinary_using_subcommand accounts; and __fish_seen_subcommand_from register" -s V -l version -d 'Print version'
complete -c ordinary -n "__fish_ordinary_using_subcommand accounts; and __fish_seen_subcommand_from login" -l password -d 'password for your existing account' -r
complete -c ordinary -n "__fish_ordinary_using_subcommand accounts; and __fish_seen_subcommand_from login" -l mfa -d '6 digit TOTP MFA code' -r
complete -c ordinary -n "__fish_ordinary_using_subcommand accounts; and __fish_seen_subcommand_from login" -s p -l project -d 'project path' -r
complete -c ordinary -n "__fish_ordinary_using_subcommand accounts; and __fish_seen_subcommand_from login" -l api-domain -d 'should only be necessary with localhost or when addressing by IP' -r
complete -c ordinary -n "__fish_ordinary_using_subcommand accounts; and __fish_seen_subcommand_from login" -l insecure -d 'use HTTP instead of HTTPS'
complete -c ordinary -n "__fish_ordinary_using_subcommand accounts; and __fish_seen_subcommand_from login" -l danger-accept-invalid-certs -d 'DANGER: only use when working with self-signed localhost certs'
complete -c ordinary -n "__fish_ordinary_using_subcommand accounts; and __fish_seen_subcommand_from login" -s v -l verbose -d 'Increase logging verbosity'
complete -c ordinary -n "__fish_ordinary_using_subcommand accounts; and __fish_seen_subcommand_from login" -s q -l quiet -d 'Decrease logging verbosity'
complete -c ordinary -n "__fish_ordinary_using_subcommand accounts; and __fish_seen_subcommand_from login" -l pretty -d 'whether to pretty print events to stdio'
complete -c ordinary -n "__fish_ordinary_using_subcommand accounts; and __fish_seen_subcommand_from login" -s h -l help -d 'Print help'
complete -c ordinary -n "__fish_ordinary_using_subcommand accounts; and __fish_seen_subcommand_from login" -s V -l version -d 'Print version'
complete -c ordinary -n "__fish_ordinary_using_subcommand accounts; and __fish_seen_subcommand_from logout" -s p -l project -d 'project path' -r
complete -c ordinary -n "__fish_ordinary_using_subcommand accounts; and __fish_seen_subcommand_from logout" -l api-domain -d 'should only be necessary with localhost or when addressing by IP' -r
complete -c ordinary -n "__fish_ordinary_using_subcommand accounts; and __fish_seen_subcommand_from logout" -l insecure -d 'use HTTP instead of HTTPS'
complete -c ordinary -n "__fish_ordinary_using_subcommand accounts; and __fish_seen_subcommand_from logout" -l danger-accept-invalid-certs -d 'DANGER: only use when working with self-signed localhost certs'
complete -c ordinary -n "__fish_ordinary_using_subcommand accounts; and __fish_seen_subcommand_from logout" -s v -l verbose -d 'Increase logging verbosity'
complete -c ordinary -n "__fish_ordinary_using_subcommand accounts; and __fish_seen_subcommand_from logout" -s q -l quiet -d 'Decrease logging verbosity'
complete -c ordinary -n "__fish_ordinary_using_subcommand accounts; and __fish_seen_subcommand_from logout" -l pretty -d 'whether to pretty print events to stdio'
complete -c ordinary -n "__fish_ordinary_using_subcommand accounts; and __fish_seen_subcommand_from logout" -s h -l help -d 'Print help'
complete -c ordinary -n "__fish_ordinary_using_subcommand accounts; and __fish_seen_subcommand_from logout" -s V -l version -d 'Print version'
complete -c ordinary -n "__fish_ordinary_using_subcommand accounts; and __fish_seen_subcommand_from access" -s p -l project -d 'project path' -r
complete -c ordinary -n "__fish_ordinary_using_subcommand accounts; and __fish_seen_subcommand_from access" -l api-domain -d 'should only be necessary with localhost or when addressing by IP' -r
complete -c ordinary -n "__fish_ordinary_using_subcommand accounts; and __fish_seen_subcommand_from access" -l insecure -d 'use HTTP instead of HTTPS'
complete -c ordinary -n "__fish_ordinary_using_subcommand accounts; and __fish_seen_subcommand_from access" -l danger-accept-invalid-certs -d 'DANGER: only use when working with self-signed localhost certs'
complete -c ordinary -n "__fish_ordinary_using_subcommand accounts; and __fish_seen_subcommand_from access" -s v -l verbose -d 'Increase logging verbosity'
complete -c ordinary -n "__fish_ordinary_using_subcommand accounts; and __fish_seen_subcommand_from access" -s q -l quiet -d 'Decrease logging verbosity'
complete -c ordinary -n "__fish_ordinary_using_subcommand accounts; and __fish_seen_subcommand_from access" -l pretty -d 'whether to pretty print events to stdio'
complete -c ordinary -n "__fish_ordinary_using_subcommand accounts; and __fish_seen_subcommand_from access" -s h -l help -d 'Print help'
complete -c ordinary -n "__fish_ordinary_using_subcommand accounts; and __fish_seen_subcommand_from access" -s V -l version -d 'Print version'
complete -c ordinary -n "__fish_ordinary_using_subcommand accounts; and __fish_seen_subcommand_from access" -f -a "get" -d 'get access'
complete -c ordinary -n "__fish_ordinary_using_subcommand accounts; and __fish_seen_subcommand_from access" -f -a "help" -d 'Print this message or the help of the given subcommand(s)'
complete -c ordinary -n "__fish_ordinary_using_subcommand accounts; and __fish_seen_subcommand_from password" -s p -l project -d 'project path' -r
complete -c ordinary -n "__fish_ordinary_using_subcommand accounts; and __fish_seen_subcommand_from password" -l api-domain -d 'should only be necessary with localhost or when addressing by IP' -r
complete -c ordinary -n "__fish_ordinary_using_subcommand accounts; and __fish_seen_subcommand_from password" -l insecure -d 'use HTTP instead of HTTPS'
complete -c ordinary -n "__fish_ordinary_using_subcommand accounts; and __fish_seen_subcommand_from password" -l danger-accept-invalid-certs -d 'DANGER: only use when working with self-signed localhost certs'
complete -c ordinary -n "__fish_ordinary_using_subcommand accounts; and __fish_seen_subcommand_from password" -s v -l verbose -d 'Increase logging verbosity'
complete -c ordinary -n "__fish_ordinary_using_subcommand accounts; and __fish_seen_subcommand_from password" -s q -l quiet -d 'Decrease logging verbosity'
complete -c ordinary -n "__fish_ordinary_using_subcommand accounts; and __fish_seen_subcommand_from password" -l pretty -d 'whether to pretty print events to stdio'
complete -c ordinary -n "__fish_ordinary_using_subcommand accounts; and __fish_seen_subcommand_from password" -s h -l help -d 'Print help'
complete -c ordinary -n "__fish_ordinary_using_subcommand accounts; and __fish_seen_subcommand_from password" -s V -l version -d 'Print version'
complete -c ordinary -n "__fish_ordinary_using_subcommand accounts; and __fish_seen_subcommand_from password" -f -a "reset" -d 'reset your password'
complete -c ordinary -n "__fish_ordinary_using_subcommand accounts; and __fish_seen_subcommand_from password" -f -a "forgot" -d 'recover your password'
complete -c ordinary -n "__fish_ordinary_using_subcommand accounts; and __fish_seen_subcommand_from password" -f -a "help" -d 'Print this message or the help of the given subcommand(s)'
complete -c ordinary -n "__fish_ordinary_using_subcommand accounts; and __fish_seen_subcommand_from mfa" -s p -l project -d 'project path' -r
complete -c ordinary -n "__fish_ordinary_using_subcommand accounts; and __fish_seen_subcommand_from mfa" -l api-domain -d 'should only be necessary with localhost or when addressing by IP' -r
complete -c ordinary -n "__fish_ordinary_using_subcommand accounts; and __fish_seen_subcommand_from mfa" -l insecure -d 'use HTTP instead of HTTPS'
complete -c ordinary -n "__fish_ordinary_using_subcommand accounts; and __fish_seen_subcommand_from mfa" -l danger-accept-invalid-certs -d 'DANGER: only use when working with self-signed localhost certs'
complete -c ordinary -n "__fish_ordinary_using_subcommand accounts; and __fish_seen_subcommand_from mfa" -s v -l verbose -d 'Increase logging verbosity'
complete -c ordinary -n "__fish_ordinary_using_subcommand accounts; and __fish_seen_subcommand_from mfa" -s q -l quiet -d 'Decrease logging verbosity'
complete -c ordinary -n "__fish_ordinary_using_subcommand accounts; and __fish_seen_subcommand_from mfa" -l pretty -d 'whether to pretty print events to stdio'
complete -c ordinary -n "__fish_ordinary_using_subcommand accounts; and __fish_seen_subcommand_from mfa" -s h -l help -d 'Print help'
complete -c ordinary -n "__fish_ordinary_using_subcommand accounts; and __fish_seen_subcommand_from mfa" -s V -l version -d 'Print version'
complete -c ordinary -n "__fish_ordinary_using_subcommand accounts; and __fish_seen_subcommand_from mfa" -f -a "reset" -d 'reset MFA TOTP secret'
complete -c ordinary -n "__fish_ordinary_using_subcommand accounts; and __fish_seen_subcommand_from mfa" -f -a "lost" -d 'recovery MFA TOTP secret'
complete -c ordinary -n "__fish_ordinary_using_subcommand accounts; and __fish_seen_subcommand_from mfa" -f -a "help" -d 'Print this message or the help of the given subcommand(s)'
complete -c ordinary -n "__fish_ordinary_using_subcommand accounts; and __fish_seen_subcommand_from recovery-codes" -s p -l project -d 'project path' -r
complete -c ordinary -n "__fish_ordinary_using_subcommand accounts; and __fish_seen_subcommand_from recovery-codes" -l api-domain -d 'should only be necessary with localhost or when addressing by IP' -r
complete -c ordinary -n "__fish_ordinary_using_subcommand accounts; and __fish_seen_subcommand_from recovery-codes" -l insecure -d 'use HTTP instead of HTTPS'
complete -c ordinary -n "__fish_ordinary_using_subcommand accounts; and __fish_seen_subcommand_from recovery-codes" -l danger-accept-invalid-certs -d 'DANGER: only use when working with self-signed localhost certs'
complete -c ordinary -n "__fish_ordinary_using_subcommand accounts; and __fish_seen_subcommand_from recovery-codes" -s v -l verbose -d 'Increase logging verbosity'
complete -c ordinary -n "__fish_ordinary_using_subcommand accounts; and __fish_seen_subcommand_from recovery-codes" -s q -l quiet -d 'Decrease logging verbosity'
complete -c ordinary -n "__fish_ordinary_using_subcommand accounts; and __fish_seen_subcommand_from recovery-codes" -l pretty -d 'whether to pretty print events to stdio'
complete -c ordinary -n "__fish_ordinary_using_subcommand accounts; and __fish_seen_subcommand_from recovery-codes" -s h -l help -d 'Print help'
complete -c ordinary -n "__fish_ordinary_using_subcommand accounts; and __fish_seen_subcommand_from recovery-codes" -s V -l version -d 'Print version'
complete -c ordinary -n "__fish_ordinary_using_subcommand accounts; and __fish_seen_subcommand_from recovery-codes" -f -a "reset" -d 'reset recovery codes'
complete -c ordinary -n "__fish_ordinary_using_subcommand accounts; and __fish_seen_subcommand_from recovery-codes" -f -a "help" -d 'Print this message or the help of the given subcommand(s)'
complete -c ordinary -n "__fish_ordinary_using_subcommand accounts; and __fish_seen_subcommand_from delete" -l password -d 'password for your existing account' -r
complete -c ordinary -n "__fish_ordinary_using_subcommand accounts; and __fish_seen_subcommand_from delete" -l mfa -d '6 digit TOTP MFA code' -r
complete -c ordinary -n "__fish_ordinary_using_subcommand accounts; and __fish_seen_subcommand_from delete" -s p -l project -d 'project path' -r
complete -c ordinary -n "__fish_ordinary_using_subcommand accounts; and __fish_seen_subcommand_from delete" -l api-domain -d 'should only be necessary with localhost or when addressing by IP' -r
complete -c ordinary -n "__fish_ordinary_using_subcommand accounts; and __fish_seen_subcommand_from delete" -l insecure -d 'use HTTP instead of HTTPS'
complete -c ordinary -n "__fish_ordinary_using_subcommand accounts; and __fish_seen_subcommand_from delete" -l danger-accept-invalid-certs -d 'DANGER: only use when working with self-signed localhost certs'
complete -c ordinary -n "__fish_ordinary_using_subcommand accounts; and __fish_seen_subcommand_from delete" -s v -l verbose -d 'Increase logging verbosity'
complete -c ordinary -n "__fish_ordinary_using_subcommand accounts; and __fish_seen_subcommand_from delete" -s q -l quiet -d 'Decrease logging verbosity'
complete -c ordinary -n "__fish_ordinary_using_subcommand accounts; and __fish_seen_subcommand_from delete" -l pretty -d 'whether to pretty print events to stdio'
complete -c ordinary -n "__fish_ordinary_using_subcommand accounts; and __fish_seen_subcommand_from delete" -s h -l help -d 'Print help'
complete -c ordinary -n "__fish_ordinary_using_subcommand accounts; and __fish_seen_subcommand_from delete" -s V -l version -d 'Print version'
complete -c ordinary -n "__fish_ordinary_using_subcommand accounts; and __fish_seen_subcommand_from invite" -s p -l project -d 'project path' -r
complete -c ordinary -n "__fish_ordinary_using_subcommand accounts; and __fish_seen_subcommand_from invite" -l api-domain -d 'should only be necessary with localhost or when addressing by IP' -r
complete -c ordinary -n "__fish_ordinary_using_subcommand accounts; and __fish_seen_subcommand_from invite" -l insecure -d 'use HTTP instead of HTTPS'
complete -c ordinary -n "__fish_ordinary_using_subcommand accounts; and __fish_seen_subcommand_from invite" -l danger-accept-invalid-certs -d 'DANGER: only use when working with self-signed localhost certs'
complete -c ordinary -n "__fish_ordinary_using_subcommand accounts; and __fish_seen_subcommand_from invite" -s v -l verbose -d 'Increase logging verbosity'
complete -c ordinary -n "__fish_ordinary_using_subcommand accounts; and __fish_seen_subcommand_from invite" -s q -l quiet -d 'Decrease logging verbosity'
complete -c ordinary -n "__fish_ordinary_using_subcommand accounts; and __fish_seen_subcommand_from invite" -l pretty -d 'whether to pretty print events to stdio'
complete -c ordinary -n "__fish_ordinary_using_subcommand accounts; and __fish_seen_subcommand_from invite" -s h -l help -d 'Print help'
complete -c ordinary -n "__fish_ordinary_using_subcommand accounts; and __fish_seen_subcommand_from invite" -s V -l version -d 'Print version'
complete -c ordinary -n "__fish_ordinary_using_subcommand accounts; and __fish_seen_subcommand_from current" -s p -l project -d 'project path' -r
complete -c ordinary -n "__fish_ordinary_using_subcommand accounts; and __fish_seen_subcommand_from current" -l api-domain -d 'should only be necessary with localhost or when addressing by IP' -r
complete -c ordinary -n "__fish_ordinary_using_subcommand accounts; and __fish_seen_subcommand_from current" -l insecure -d 'use HTTP instead of HTTPS'
complete -c ordinary -n "__fish_ordinary_using_subcommand accounts; and __fish_seen_subcommand_from current" -l danger-accept-invalid-certs -d 'DANGER: only use when working with self-signed localhost certs'
complete -c ordinary -n "__fish_ordinary_using_subcommand accounts; and __fish_seen_subcommand_from current" -s v -l verbose -d 'Increase logging verbosity'
complete -c ordinary -n "__fish_ordinary_using_subcommand accounts; and __fish_seen_subcommand_from current" -s q -l quiet -d 'Decrease logging verbosity'
complete -c ordinary -n "__fish_ordinary_using_subcommand accounts; and __fish_seen_subcommand_from current" -l pretty -d 'whether to pretty print events to stdio'
complete -c ordinary -n "__fish_ordinary_using_subcommand accounts; and __fish_seen_subcommand_from current" -s h -l help -d 'Print help (see more with \'--help\')'
complete -c ordinary -n "__fish_ordinary_using_subcommand accounts; and __fish_seen_subcommand_from current" -s V -l version -d 'Print version'
complete -c ordinary -n "__fish_ordinary_using_subcommand accounts; and __fish_seen_subcommand_from list" -s p -l project -d 'project path' -r
complete -c ordinary -n "__fish_ordinary_using_subcommand accounts; and __fish_seen_subcommand_from list" -l api-domain -d 'should only be necessary with localhost or when addressing by IP' -r
complete -c ordinary -n "__fish_ordinary_using_subcommand accounts; and __fish_seen_subcommand_from list" -l insecure -d 'use HTTP instead of HTTPS'
complete -c ordinary -n "__fish_ordinary_using_subcommand accounts; and __fish_seen_subcommand_from list" -l danger-accept-invalid-certs -d 'DANGER: only use when working with self-signed localhost certs'
complete -c ordinary -n "__fish_ordinary_using_subcommand accounts; and __fish_seen_subcommand_from list" -s v -l verbose -d 'Increase logging verbosity'
complete -c ordinary -n "__fish_ordinary_using_subcommand accounts; and __fish_seen_subcommand_from list" -s q -l quiet -d 'Decrease logging verbosity'
complete -c ordinary -n "__fish_ordinary_using_subcommand accounts; and __fish_seen_subcommand_from list" -l pretty -d 'whether to pretty print events to stdio'
complete -c ordinary -n "__fish_ordinary_using_subcommand accounts; and __fish_seen_subcommand_from list" -s h -l help -d 'Print help'
complete -c ordinary -n "__fish_ordinary_using_subcommand accounts; and __fish_seen_subcommand_from list" -s V -l version -d 'Print version'
complete -c ordinary -n "__fish_ordinary_using_subcommand accounts; and __fish_seen_subcommand_from switch" -s p -l project -d 'project path' -r
complete -c ordinary -n "__fish_ordinary_using_subcommand accounts; and __fish_seen_subcommand_from switch" -l api-domain -d 'should only be necessary with localhost or when addressing by IP' -r
complete -c ordinary -n "__fish_ordinary_using_subcommand accounts; and __fish_seen_subcommand_from switch" -l insecure -d 'use HTTP instead of HTTPS'
complete -c ordinary -n "__fish_ordinary_using_subcommand accounts; and __fish_seen_subcommand_from switch" -l danger-accept-invalid-certs -d 'DANGER: only use when working with self-signed localhost certs'
complete -c ordinary -n "__fish_ordinary_using_subcommand accounts; and __fish_seen_subcommand_from switch" -s v -l verbose -d 'Increase logging verbosity'
complete -c ordinary -n "__fish_ordinary_using_subcommand accounts; and __fish_seen_subcommand_from switch" -s q -l quiet -d 'Decrease logging verbosity'
complete -c ordinary -n "__fish_ordinary_using_subcommand accounts; and __fish_seen_subcommand_from switch" -l pretty -d 'whether to pretty print events to stdio'
complete -c ordinary -n "__fish_ordinary_using_subcommand accounts; and __fish_seen_subcommand_from switch" -s h -l help -d 'Print help'
complete -c ordinary -n "__fish_ordinary_using_subcommand accounts; and __fish_seen_subcommand_from switch" -s V -l version -d 'Print version'
complete -c ordinary -n "__fish_ordinary_using_subcommand accounts; and __fish_seen_subcommand_from help" -f -a "register" -d 'register a new account'
complete -c ordinary -n "__fish_ordinary_using_subcommand accounts; and __fish_seen_subcommand_from help" -f -a "login" -d 'log in to an existing account'
complete -c ordinary -n "__fish_ordinary_using_subcommand accounts; and __fish_seen_subcommand_from help" -f -a "logout" -d 'log out of a logged in account'
complete -c ordinary -n "__fish_ordinary_using_subcommand accounts; and __fish_seen_subcommand_from help" -f -a "access" -d 'access management subcommands'
complete -c ordinary -n "__fish_ordinary_using_subcommand accounts; and __fish_seen_subcommand_from help" -f -a "password" -d 'password management'
complete -c ordinary -n "__fish_ordinary_using_subcommand accounts; and __fish_seen_subcommand_from help" -f -a "mfa" -d 'MFA management'
complete -c ordinary -n "__fish_ordinary_using_subcommand accounts; and __fish_seen_subcommand_from help" -f -a "recovery-codes" -d 'recovery code management'
complete -c ordinary -n "__fish_ordinary_using_subcommand accounts; and __fish_seen_subcommand_from help" -f -a "delete" -d 'delete account'
complete -c ordinary -n "__fish_ordinary_using_subcommand accounts; and __fish_seen_subcommand_from help" -f -a "invite" -d 'invite another user to a project'
complete -c ordinary -n "__fish_ordinary_using_subcommand accounts; and __fish_seen_subcommand_from help" -f -a "current" -d 'display info for current account'
complete -c ordinary -n "__fish_ordinary_using_subcommand accounts; and __fish_seen_subcommand_from help" -f -a "list" -d 'list all logged in accounts'
complete -c ordinary -n "__fish_ordinary_using_subcommand accounts; and __fish_seen_subcommand_from help" -f -a "switch" -d 'switch to a different logged in account'
complete -c ordinary -n "__fish_ordinary_using_subcommand accounts; and __fish_seen_subcommand_from help" -f -a "help" -d 'Print this message or the help of the given subcommand(s)'
complete -c ordinary -n "__fish_ordinary_using_subcommand app; and not __fish_seen_subcommand_from deploy migrate kill restart erase download logs accounts routes help" -s p -l project -d 'project path' -r
complete -c ordinary -n "__fish_ordinary_using_subcommand app; and not __fish_seen_subcommand_from deploy migrate kill restart erase download logs accounts routes help" -l api-domain -d 'should only be necessary with localhost or when addressing by IP' -r
complete -c ordinary -n "__fish_ordinary_using_subcommand app; and not __fish_seen_subcommand_from deploy migrate kill restart erase download logs accounts routes help" -l insecure -d 'use HTTP instead of HTTPS'
complete -c ordinary -n "__fish_ordinary_using_subcommand app; and not __fish_seen_subcommand_from deploy migrate kill restart erase download logs accounts routes help" -l danger-accept-invalid-certs -d 'DANGER: only use when working with self-signed localhost certs'
complete -c ordinary -n "__fish_ordinary_using_subcommand app; and not __fish_seen_subcommand_from deploy migrate kill restart erase download logs accounts routes help" -s v -l verbose -d 'Increase logging verbosity'
complete -c ordinary -n "__fish_ordinary_using_subcommand app; and not __fish_seen_subcommand_from deploy migrate kill restart erase download logs accounts routes help" -s q -l quiet -d 'Decrease logging verbosity'
complete -c ordinary -n "__fish_ordinary_using_subcommand app; and not __fish_seen_subcommand_from deploy migrate kill restart erase download logs accounts routes help" -l pretty -d 'whether to pretty print events to stdio'
complete -c ordinary -n "__fish_ordinary_using_subcommand app; and not __fish_seen_subcommand_from deploy migrate kill restart erase download logs accounts routes help" -s h -l help -d 'Print help'
complete -c ordinary -n "__fish_ordinary_using_subcommand app; and not __fish_seen_subcommand_from deploy migrate kill restart erase download logs accounts routes help" -s V -l version -d 'Print version'
complete -c ordinary -n "__fish_ordinary_using_subcommand app; and not __fish_seen_subcommand_from deploy migrate kill restart erase download logs accounts routes help" -f -a "deploy" -d 'deploy a changes to ordinary.json'
complete -c ordinary -n "__fish_ordinary_using_subcommand app; and not __fish_seen_subcommand_from deploy migrate kill restart erase download logs accounts routes help" -f -a "migrate" -d 'push a configuration change which will modify the shape of your data stores'
complete -c ordinary -n "__fish_ordinary_using_subcommand app; and not __fish_seen_subcommand_from deploy migrate kill restart erase download logs accounts routes help" -f -a "kill" -d 'kill a running instance of the application'
complete -c ordinary -n "__fish_ordinary_using_subcommand app; and not __fish_seen_subcommand_from deploy migrate kill restart erase download logs accounts routes help" -f -a "restart" -d 'restart a running instance of the application'
complete -c ordinary -n "__fish_ordinary_using_subcommand app; and not __fish_seen_subcommand_from deploy migrate kill restart erase download logs accounts routes help" -f -a "erase" -d 'fully erase all content of the application from the host'
complete -c ordinary -n "__fish_ordinary_using_subcommand app; and not __fish_seen_subcommand_from deploy migrate kill restart erase download logs accounts routes help" -f -a "download" -d 'download an application as static files'
complete -c ordinary -n "__fish_ordinary_using_subcommand app; and not __fish_seen_subcommand_from deploy migrate kill restart erase download logs accounts routes help" -f -a "logs" -d 'query application logs'
complete -c ordinary -n "__fish_ordinary_using_subcommand app; and not __fish_seen_subcommand_from deploy migrate kill restart erase download logs accounts routes help" -f -a "accounts" -d 'manage application accounts'
complete -c ordinary -n "__fish_ordinary_using_subcommand app; and not __fish_seen_subcommand_from deploy migrate kill restart erase download logs accounts routes help" -f -a "routes" -d 'list all HTTP routes'
complete -c ordinary -n "__fish_ordinary_using_subcommand app; and not __fish_seen_subcommand_from deploy migrate kill restart erase download logs accounts routes help" -f -a "help" -d 'Print this message or the help of the given subcommand(s)'
complete -c ordinary -n "__fish_ordinary_using_subcommand app; and __fish_seen_subcommand_from deploy" -s p -l project -d 'project path' -r
complete -c ordinary -n "__fish_ordinary_using_subcommand app; and __fish_seen_subcommand_from deploy" -l api-domain -d 'should only be necessary with localhost or when addressing by IP' -r
complete -c ordinary -n "__fish_ordinary_using_subcommand app; and __fish_seen_subcommand_from deploy" -l insecure -d 'use HTTP instead of HTTPS'
complete -c ordinary -n "__fish_ordinary_using_subcommand app; and __fish_seen_subcommand_from deploy" -l danger-accept-invalid-certs -d 'DANGER: only use when working with self-signed localhost certs'
complete -c ordinary -n "__fish_ordinary_using_subcommand app; and __fish_seen_subcommand_from deploy" -s v -l verbose -d 'Increase logging verbosity'
complete -c ordinary -n "__fish_ordinary_using_subcommand app; and __fish_seen_subcommand_from deploy" -s q -l quiet -d 'Decrease logging verbosity'
complete -c ordinary -n "__fish_ordinary_using_subcommand app; and __fish_seen_subcommand_from deploy" -l pretty -d 'whether to pretty print events to stdio'
complete -c ordinary -n "__fish_ordinary_using_subcommand app; and __fish_seen_subcommand_from deploy" -s h -l help -d 'Print help'
complete -c ordinary -n "__fish_ordinary_using_subcommand app; and __fish_seen_subcommand_from deploy" -s V -l version -d 'Print version'
complete -c ordinary -n "__fish_ordinary_using_subcommand app; and __fish_seen_subcommand_from migrate" -s p -l project -d 'project path' -r
complete -c ordinary -n "__fish_ordinary_using_subcommand app; and __fish_seen_subcommand_from migrate" -l api-domain -d 'should only be necessary with localhost or when addressing by IP' -r
complete -c ordinary -n "__fish_ordinary_using_subcommand app; and __fish_seen_subcommand_from migrate" -l insecure -d 'use HTTP instead of HTTPS'
complete -c ordinary -n "__fish_ordinary_using_subcommand app; and __fish_seen_subcommand_from migrate" -l danger-accept-invalid-certs -d 'DANGER: only use when working with self-signed localhost certs'
complete -c ordinary -n "__fish_ordinary_using_subcommand app; and __fish_seen_subcommand_from migrate" -s v -l verbose -d 'Increase logging verbosity'
complete -c ordinary -n "__fish_ordinary_using_subcommand app; and __fish_seen_subcommand_from migrate" -s q -l quiet -d 'Decrease logging verbosity'
complete -c ordinary -n "__fish_ordinary_using_subcommand app; and __fish_seen_subcommand_from migrate" -l pretty -d 'whether to pretty print events to stdio'
complete -c ordinary -n "__fish_ordinary_using_subcommand app; and __fish_seen_subcommand_from migrate" -s h -l help -d 'Print help (see more with \'--help\')'
complete -c ordinary -n "__fish_ordinary_using_subcommand app; and __fish_seen_subcommand_from migrate" -s V -l version -d 'Print version'
complete -c ordinary -n "__fish_ordinary_using_subcommand app; and __fish_seen_subcommand_from kill" -s p -l project -d 'project path' -r
complete -c ordinary -n "__fish_ordinary_using_subcommand app; and __fish_seen_subcommand_from kill" -l api-domain -d 'should only be necessary with localhost or when addressing by IP' -r
complete -c ordinary -n "__fish_ordinary_using_subcommand app; and __fish_seen_subcommand_from kill" -l insecure -d 'use HTTP instead of HTTPS'
complete -c ordinary -n "__fish_ordinary_using_subcommand app; and __fish_seen_subcommand_from kill" -l danger-accept-invalid-certs -d 'DANGER: only use when working with self-signed localhost certs'
complete -c ordinary -n "__fish_ordinary_using_subcommand app; and __fish_seen_subcommand_from kill" -s v -l verbose -d 'Increase logging verbosity'
complete -c ordinary -n "__fish_ordinary_using_subcommand app; and __fish_seen_subcommand_from kill" -s q -l quiet -d 'Decrease logging verbosity'
complete -c ordinary -n "__fish_ordinary_using_subcommand app; and __fish_seen_subcommand_from kill" -l pretty -d 'whether to pretty print events to stdio'
complete -c ordinary -n "__fish_ordinary_using_subcommand app; and __fish_seen_subcommand_from kill" -s h -l help -d 'Print help'
complete -c ordinary -n "__fish_ordinary_using_subcommand app; and __fish_seen_subcommand_from kill" -s V -l version -d 'Print version'
complete -c ordinary -n "__fish_ordinary_using_subcommand app; and __fish_seen_subcommand_from restart" -s p -l project -d 'project path' -r
complete -c ordinary -n "__fish_ordinary_using_subcommand app; and __fish_seen_subcommand_from restart" -l api-domain -d 'should only be necessary with localhost or when addressing by IP' -r
complete -c ordinary -n "__fish_ordinary_using_subcommand app; and __fish_seen_subcommand_from restart" -l insecure -d 'use HTTP instead of HTTPS'
complete -c ordinary -n "__fish_ordinary_using_subcommand app; and __fish_seen_subcommand_from restart" -l danger-accept-invalid-certs -d 'DANGER: only use when working with self-signed localhost certs'
complete -c ordinary -n "__fish_ordinary_using_subcommand app; and __fish_seen_subcommand_from restart" -s v -l verbose -d 'Increase logging verbosity'
complete -c ordinary -n "__fish_ordinary_using_subcommand app; and __fish_seen_subcommand_from restart" -s q -l quiet -d 'Decrease logging verbosity'
complete -c ordinary -n "__fish_ordinary_using_subcommand app; and __fish_seen_subcommand_from restart" -l pretty -d 'whether to pretty print events to stdio'
complete -c ordinary -n "__fish_ordinary_using_subcommand app; and __fish_seen_subcommand_from restart" -s h -l help -d 'Print help'
complete -c ordinary -n "__fish_ordinary_using_subcommand app; and __fish_seen_subcommand_from restart" -s V -l version -d 'Print version'
complete -c ordinary -n "__fish_ordinary_using_subcommand app; and __fish_seen_subcommand_from erase" -s p -l project -d 'project path' -r
complete -c ordinary -n "__fish_ordinary_using_subcommand app; and __fish_seen_subcommand_from erase" -l api-domain -d 'should only be necessary with localhost or when addressing by IP' -r
complete -c ordinary -n "__fish_ordinary_using_subcommand app; and __fish_seen_subcommand_from erase" -l insecure -d 'use HTTP instead of HTTPS'
complete -c ordinary -n "__fish_ordinary_using_subcommand app; and __fish_seen_subcommand_from erase" -l danger-accept-invalid-certs -d 'DANGER: only use when working with self-signed localhost certs'
complete -c ordinary -n "__fish_ordinary_using_subcommand app; and __fish_seen_subcommand_from erase" -s v -l verbose -d 'Increase logging verbosity'
complete -c ordinary -n "__fish_ordinary_using_subcommand app; and __fish_seen_subcommand_from erase" -s q -l quiet -d 'Decrease logging verbosity'
complete -c ordinary -n "__fish_ordinary_using_subcommand app; and __fish_seen_subcommand_from erase" -l pretty -d 'whether to pretty print events to stdio'
complete -c ordinary -n "__fish_ordinary_using_subcommand app; and __fish_seen_subcommand_from erase" -s h -l help -d 'Print help'
complete -c ordinary -n "__fish_ordinary_using_subcommand app; and __fish_seen_subcommand_from erase" -s V -l version -d 'Print version'
complete -c ordinary -n "__fish_ordinary_using_subcommand app; and __fish_seen_subcommand_from download" -s u -l url -d 'url override. will use project domain by default' -r
complete -c ordinary -n "__fish_ordinary_using_subcommand app; and __fish_seen_subcommand_from download" -s o -l out -d 'where to store downloaded files' -r
complete -c ordinary -n "__fish_ordinary_using_subcommand app; and __fish_seen_subcommand_from download" -s p -l project -d 'project path' -r
complete -c ordinary -n "__fish_ordinary_using_subcommand app; and __fish_seen_subcommand_from download" -l api-domain -d 'should only be necessary with localhost or when addressing by IP' -r
complete -c ordinary -n "__fish_ordinary_using_subcommand app; and __fish_seen_subcommand_from download" -l insecure -d 'use HTTP instead of HTTPS'
complete -c ordinary -n "__fish_ordinary_using_subcommand app; and __fish_seen_subcommand_from download" -l danger-accept-invalid-certs -d 'DANGER: only use when working with self-signed localhost certs'
complete -c ordinary -n "__fish_ordinary_using_subcommand app; and __fish_seen_subcommand_from download" -s v -l verbose -d 'Increase logging verbosity'
complete -c ordinary -n "__fish_ordinary_using_subcommand app; and __fish_seen_subcommand_from download" -s q -l quiet -d 'Decrease logging verbosity'
complete -c ordinary -n "__fish_ordinary_using_subcommand app; and __fish_seen_subcommand_from download" -l pretty -d 'whether to pretty print events to stdio'
complete -c ordinary -n "__fish_ordinary_using_subcommand app; and __fish_seen_subcommand_from download" -s h -l help -d 'Print help'
complete -c ordinary -n "__fish_ordinary_using_subcommand app; and __fish_seen_subcommand_from download" -s V -l version -d 'Print version'
complete -c ordinary -n "__fish_ordinary_using_subcommand app; and __fish_seen_subcommand_from logs" -s p -l project -d 'project path' -r
complete -c ordinary -n "__fish_ordinary_using_subcommand app; and __fish_seen_subcommand_from logs" -l api-domain -d 'should only be necessary with localhost or when addressing by IP' -r
complete -c ordinary -n "__fish_ordinary_using_subcommand app; and __fish_seen_subcommand_from logs" -l insecure -d 'use HTTP instead of HTTPS'
complete -c ordinary -n "__fish_ordinary_using_subcommand app; and __fish_seen_subcommand_from logs" -l danger-accept-invalid-certs -d 'DANGER: only use when working with self-signed localhost certs'
complete -c ordinary -n "__fish_ordinary_using_subcommand app; and __fish_seen_subcommand_from logs" -s v -l verbose -d 'Increase logging verbosity'
complete -c ordinary -n "__fish_ordinary_using_subcommand app; and __fish_seen_subcommand_from logs" -s q -l quiet -d 'Decrease logging verbosity'
complete -c ordinary -n "__fish_ordinary_using_subcommand app; and __fish_seen_subcommand_from logs" -l pretty -d 'whether to pretty print events to stdio'
complete -c ordinary -n "__fish_ordinary_using_subcommand app; and __fish_seen_subcommand_from logs" -s h -l help -d 'Print help'
complete -c ordinary -n "__fish_ordinary_using_subcommand app; and __fish_seen_subcommand_from logs" -s V -l version -d 'Print version'
complete -c ordinary -n "__fish_ordinary_using_subcommand app; and __fish_seen_subcommand_from logs" -f -a "sync" -d 'sync files, indexes and tables'
complete -c ordinary -n "__fish_ordinary_using_subcommand app; and __fish_seen_subcommand_from logs" -f -a "search" -d 'search the tantivy index'
complete -c ordinary -n "__fish_ordinary_using_subcommand app; and __fish_seen_subcommand_from logs" -f -a "help" -d 'Print this message or the help of the given subcommand(s)'
complete -c ordinary -n "__fish_ordinary_using_subcommand app; and __fish_seen_subcommand_from accounts" -s p -l project -d 'project path' -r
complete -c ordinary -n "__fish_ordinary_using_subcommand app; and __fish_seen_subcommand_from accounts" -l api-domain -d 'should only be necessary with localhost or when addressing by IP' -r
complete -c ordinary -n "__fish_ordinary_using_subcommand app; and __fish_seen_subcommand_from accounts" -l insecure -d 'use HTTP instead of HTTPS'
complete -c ordinary -n "__fish_ordinary_using_subcommand app; and __fish_seen_subcommand_from accounts" -l danger-accept-invalid-certs -d 'DANGER: only use when working with self-signed localhost certs'
complete -c ordinary -n "__fish_ordinary_using_subcommand app; and __fish_seen_subcommand_from accounts" -s v -l verbose -d 'Increase logging verbosity'
complete -c ordinary -n "__fish_ordinary_using_subcommand app; and __fish_seen_subcommand_from accounts" -s q -l quiet -d 'Decrease logging verbosity'
complete -c ordinary -n "__fish_ordinary_using_subcommand app; and __fish_seen_subcommand_from accounts" -l pretty -d 'whether to pretty print events to stdio'
complete -c ordinary -n "__fish_ordinary_using_subcommand app; and __fish_seen_subcommand_from accounts" -s h -l help -d 'Print help'
complete -c ordinary -n "__fish_ordinary_using_subcommand app; and __fish_seen_subcommand_from accounts" -s V -l version -d 'Print version'
complete -c ordinary -n "__fish_ordinary_using_subcommand app; and __fish_seen_subcommand_from accounts" -f -a "list" -d 'list application accounts'
complete -c ordinary -n "__fish_ordinary_using_subcommand app; and __fish_seen_subcommand_from accounts" -f -a "help" -d 'Print this message or the help of the given subcommand(s)'
complete -c ordinary -n "__fish_ordinary_using_subcommand app; and __fish_seen_subcommand_from routes" -s p -l project -d 'project path' -r
complete -c ordinary -n "__fish_ordinary_using_subcommand app; and __fish_seen_subcommand_from routes" -l api-domain -d 'should only be necessary with localhost or when addressing by IP' -r
complete -c ordinary -n "__fish_ordinary_using_subcommand app; and __fish_seen_subcommand_from routes" -l insecure -d 'use HTTP instead of HTTPS'
complete -c ordinary -n "__fish_ordinary_using_subcommand app; and __fish_seen_subcommand_from routes" -l danger-accept-invalid-certs -d 'DANGER: only use when working with self-signed localhost certs'
complete -c ordinary -n "__fish_ordinary_using_subcommand app; and __fish_seen_subcommand_from routes" -s v -l verbose -d 'Increase logging verbosity'
complete -c ordinary -n "__fish_ordinary_using_subcommand app; and __fish_seen_subcommand_from routes" -s q -l quiet -d 'Decrease logging verbosity'
complete -c ordinary -n "__fish_ordinary_using_subcommand app; and __fish_seen_subcommand_from routes" -l pretty -d 'whether to pretty print events to stdio'
complete -c ordinary -n "__fish_ordinary_using_subcommand app; and __fish_seen_subcommand_from routes" -s h -l help -d 'Print help'
complete -c ordinary -n "__fish_ordinary_using_subcommand app; and __fish_seen_subcommand_from routes" -s V -l version -d 'Print version'
complete -c ordinary -n "__fish_ordinary_using_subcommand app; and __fish_seen_subcommand_from help" -f -a "deploy" -d 'deploy a changes to ordinary.json'
complete -c ordinary -n "__fish_ordinary_using_subcommand app; and __fish_seen_subcommand_from help" -f -a "migrate" -d 'push a configuration change which will modify the shape of your data stores'
complete -c ordinary -n "__fish_ordinary_using_subcommand app; and __fish_seen_subcommand_from help" -f -a "kill" -d 'kill a running instance of the application'
complete -c ordinary -n "__fish_ordinary_using_subcommand app; and __fish_seen_subcommand_from help" -f -a "restart" -d 'restart a running instance of the application'
complete -c ordinary -n "__fish_ordinary_using_subcommand app; and __fish_seen_subcommand_from help" -f -a "erase" -d 'fully erase all content of the application from the host'
complete -c ordinary -n "__fish_ordinary_using_subcommand app; and __fish_seen_subcommand_from help" -f -a "download" -d 'download an application as static files'
complete -c ordinary -n "__fish_ordinary_using_subcommand app; and __fish_seen_subcommand_from help" -f -a "logs" -d 'query application logs'
complete -c ordinary -n "__fish_ordinary_using_subcommand app; and __fish_seen_subcommand_from help" -f -a "accounts" -d 'manage application accounts'
complete -c ordinary -n "__fish_ordinary_using_subcommand app; and __fish_seen_subcommand_from help" -f -a "routes" -d 'list all HTTP routes'
complete -c ordinary -n "__fish_ordinary_using_subcommand app; and __fish_seen_subcommand_from help" -f -a "help" -d 'Print this message or the help of the given subcommand(s)'
complete -c ordinary -n "__fish_ordinary_using_subcommand secrets; and not __fish_seen_subcommand_from store help" -s p -l project -d 'project path' -r
complete -c ordinary -n "__fish_ordinary_using_subcommand secrets; and not __fish_seen_subcommand_from store help" -l api-domain -d 'should only be necessary with localhost or when addressing by IP' -r
complete -c ordinary -n "__fish_ordinary_using_subcommand secrets; and not __fish_seen_subcommand_from store help" -l insecure -d 'use HTTP instead of HTTPS'
complete -c ordinary -n "__fish_ordinary_using_subcommand secrets; and not __fish_seen_subcommand_from store help" -l danger-accept-invalid-certs -d 'DANGER: only use when working with self-signed localhost certs'
complete -c ordinary -n "__fish_ordinary_using_subcommand secrets; and not __fish_seen_subcommand_from store help" -s v -l verbose -d 'Increase logging verbosity'
complete -c ordinary -n "__fish_ordinary_using_subcommand secrets; and not __fish_seen_subcommand_from store help" -s q -l quiet -d 'Decrease logging verbosity'
complete -c ordinary -n "__fish_ordinary_using_subcommand secrets; and not __fish_seen_subcommand_from store help" -l pretty -d 'whether to pretty print events to stdio'
complete -c ordinary -n "__fish_ordinary_using_subcommand secrets; and not __fish_seen_subcommand_from store help" -s h -l help -d 'Print help'
complete -c ordinary -n "__fish_ordinary_using_subcommand secrets; and not __fish_seen_subcommand_from store help" -s V -l version -d 'Print version'
complete -c ordinary -n "__fish_ordinary_using_subcommand secrets; and not __fish_seen_subcommand_from store help" -f -a "store" -d 'store an application secret'
complete -c ordinary -n "__fish_ordinary_using_subcommand secrets; and not __fish_seen_subcommand_from store help" -f -a "help" -d 'Print this message or the help of the given subcommand(s)'
complete -c ordinary -n "__fish_ordinary_using_subcommand secrets; and __fish_seen_subcommand_from store" -s p -l project -d 'project path' -r
complete -c ordinary -n "__fish_ordinary_using_subcommand secrets; and __fish_seen_subcommand_from store" -l api-domain -d 'should only be necessary with localhost or when addressing by IP' -r
complete -c ordinary -n "__fish_ordinary_using_subcommand secrets; and __fish_seen_subcommand_from store" -l insecure -d 'use HTTP instead of HTTPS'
complete -c ordinary -n "__fish_ordinary_using_subcommand secrets; and __fish_seen_subcommand_from store" -l danger-accept-invalid-certs -d 'DANGER: only use when working with self-signed localhost certs'
complete -c ordinary -n "__fish_ordinary_using_subcommand secrets; and __fish_seen_subcommand_from store" -s v -l verbose -d 'Increase logging verbosity'
complete -c ordinary -n "__fish_ordinary_using_subcommand secrets; and __fish_seen_subcommand_from store" -s q -l quiet -d 'Decrease logging verbosity'
complete -c ordinary -n "__fish_ordinary_using_subcommand secrets; and __fish_seen_subcommand_from store" -l pretty -d 'whether to pretty print events to stdio'
complete -c ordinary -n "__fish_ordinary_using_subcommand secrets; and __fish_seen_subcommand_from store" -s h -l help -d 'Print help (see more with \'--help\')'
complete -c ordinary -n "__fish_ordinary_using_subcommand secrets; and __fish_seen_subcommand_from store" -s V -l version -d 'Print version'
complete -c ordinary -n "__fish_ordinary_using_subcommand secrets; and __fish_seen_subcommand_from help" -f -a "store" -d 'store an application secret'
complete -c ordinary -n "__fish_ordinary_using_subcommand secrets; and __fish_seen_subcommand_from help" -f -a "help" -d 'Print this message or the help of the given subcommand(s)'
complete -c ordinary -n "__fish_ordinary_using_subcommand root; and not __fish_seen_subcommand_from info logs lock unlock help" -s p -l project -d 'project path' -r
complete -c ordinary -n "__fish_ordinary_using_subcommand root; and not __fish_seen_subcommand_from info logs lock unlock help" -l api-domain -d 'should only be necessary with localhost or when addressing by IP' -r
complete -c ordinary -n "__fish_ordinary_using_subcommand root; and not __fish_seen_subcommand_from info logs lock unlock help" -l insecure -d 'use HTTP instead of HTTPS'
complete -c ordinary -n "__fish_ordinary_using_subcommand root; and not __fish_seen_subcommand_from info logs lock unlock help" -l danger-accept-invalid-certs -d 'DANGER: only use when working with self-signed localhost certs'
complete -c ordinary -n "__fish_ordinary_using_subcommand root; and not __fish_seen_subcommand_from info logs lock unlock help" -s v -l verbose -d 'Increase logging verbosity'
complete -c ordinary -n "__fish_ordinary_using_subcommand root; and not __fish_seen_subcommand_from info logs lock unlock help" -s q -l quiet -d 'Decrease logging verbosity'
complete -c ordinary -n "__fish_ordinary_using_subcommand root; and not __fish_seen_subcommand_from info logs lock unlock help" -l pretty -d 'whether to pretty print events to stdio'
complete -c ordinary -n "__fish_ordinary_using_subcommand root; and not __fish_seen_subcommand_from info logs lock unlock help" -s h -l help -d 'Print help'
complete -c ordinary -n "__fish_ordinary_using_subcommand root; and not __fish_seen_subcommand_from info logs lock unlock help" -s V -l version -d 'Print version'
complete -c ordinary -n "__fish_ordinary_using_subcommand root; and not __fish_seen_subcommand_from info logs lock unlock help" -f -a "info" -d 'get system and process info for the Ordinary API server'
complete -c ordinary -n "__fish_ordinary_using_subcommand root; and not __fish_seen_subcommand_from info logs lock unlock help" -f -a "logs" -d 'query system and application logs'
complete -c ordinary -n "__fish_ordinary_using_subcommand root; and not __fish_seen_subcommand_from info logs lock unlock help" -f -a "lock" -d 'lock resources to prevent abuse'
complete -c ordinary -n "__fish_ordinary_using_subcommand root; and not __fish_seen_subcommand_from info logs lock unlock help" -f -a "unlock" -d 'unlock resources upon resolution'
complete -c ordinary -n "__fish_ordinary_using_subcommand root; and not __fish_seen_subcommand_from info logs lock unlock help" -f -a "help" -d 'Print this message or the help of the given subcommand(s)'
complete -c ordinary -n "__fish_ordinary_using_subcommand root; and __fish_seen_subcommand_from info" -s p -l project -d 'project path' -r
complete -c ordinary -n "__fish_ordinary_using_subcommand root; and __fish_seen_subcommand_from info" -l api-domain -d 'should only be necessary with localhost or when addressing by IP' -r
complete -c ordinary -n "__fish_ordinary_using_subcommand root; and __fish_seen_subcommand_from info" -l insecure -d 'use HTTP instead of HTTPS'
complete -c ordinary -n "__fish_ordinary_using_subcommand root; and __fish_seen_subcommand_from info" -l danger-accept-invalid-certs -d 'DANGER: only use when working with self-signed localhost certs'
complete -c ordinary -n "__fish_ordinary_using_subcommand root; and __fish_seen_subcommand_from info" -s v -l verbose -d 'Increase logging verbosity'
complete -c ordinary -n "__fish_ordinary_using_subcommand root; and __fish_seen_subcommand_from info" -s q -l quiet -d 'Decrease logging verbosity'
complete -c ordinary -n "__fish_ordinary_using_subcommand root; and __fish_seen_subcommand_from info" -l pretty -d 'whether to pretty print events to stdio'
complete -c ordinary -n "__fish_ordinary_using_subcommand root; and __fish_seen_subcommand_from info" -s h -l help -d 'Print help'
complete -c ordinary -n "__fish_ordinary_using_subcommand root; and __fish_seen_subcommand_from info" -s V -l version -d 'Print version'
complete -c ordinary -n "__fish_ordinary_using_subcommand root; and __fish_seen_subcommand_from logs" -s p -l project -d 'project path' -r
complete -c ordinary -n "__fish_ordinary_using_subcommand root; and __fish_seen_subcommand_from logs" -l api-domain -d 'should only be necessary with localhost or when addressing by IP' -r
complete -c ordinary -n "__fish_ordinary_using_subcommand root; and __fish_seen_subcommand_from logs" -l insecure -d 'use HTTP instead of HTTPS'
complete -c ordinary -n "__fish_ordinary_using_subcommand root; and __fish_seen_subcommand_from logs" -l danger-accept-invalid-certs -d 'DANGER: only use when working with self-signed localhost certs'
complete -c ordinary -n "__fish_ordinary_using_subcommand root; and __fish_seen_subcommand_from logs" -s v -l verbose -d 'Increase logging verbosity'
complete -c ordinary -n "__fish_ordinary_using_subcommand root; and __fish_seen_subcommand_from logs" -s q -l quiet -d 'Decrease logging verbosity'
complete -c ordinary -n "__fish_ordinary_using_subcommand root; and __fish_seen_subcommand_from logs" -l pretty -d 'whether to pretty print events to stdio'
complete -c ordinary -n "__fish_ordinary_using_subcommand root; and __fish_seen_subcommand_from logs" -s h -l help -d 'Print help'
complete -c ordinary -n "__fish_ordinary_using_subcommand root; and __fish_seen_subcommand_from logs" -s V -l version -d 'Print version'
complete -c ordinary -n "__fish_ordinary_using_subcommand root; and __fish_seen_subcommand_from logs" -f -a "sync" -d 'sync files, indexes and tables'
complete -c ordinary -n "__fish_ordinary_using_subcommand root; and __fish_seen_subcommand_from logs" -f -a "search" -d 'search the tantivy index'
complete -c ordinary -n "__fish_ordinary_using_subcommand root; and __fish_seen_subcommand_from logs" -f -a "help" -d 'Print this message or the help of the given subcommand(s)'
complete -c ordinary -n "__fish_ordinary_using_subcommand root; and __fish_seen_subcommand_from lock" -s a -l account -d 'account to be locked' -r
complete -c ordinary -n "__fish_ordinary_using_subcommand root; and __fish_seen_subcommand_from lock" -s p -l project -d 'project path' -r
complete -c ordinary -n "__fish_ordinary_using_subcommand root; and __fish_seen_subcommand_from lock" -l api-domain -d 'should only be necessary with localhost or when addressing by IP' -r
complete -c ordinary -n "__fish_ordinary_using_subcommand root; and __fish_seen_subcommand_from lock" -l insecure -d 'use HTTP instead of HTTPS'
complete -c ordinary -n "__fish_ordinary_using_subcommand root; and __fish_seen_subcommand_from lock" -l danger-accept-invalid-certs -d 'DANGER: only use when working with self-signed localhost certs'
complete -c ordinary -n "__fish_ordinary_using_subcommand root; and __fish_seen_subcommand_from lock" -s v -l verbose -d 'Increase logging verbosity'
complete -c ordinary -n "__fish_ordinary_using_subcommand root; and __fish_seen_subcommand_from lock" -s q -l quiet -d 'Decrease logging verbosity'
complete -c ordinary -n "__fish_ordinary_using_subcommand root; and __fish_seen_subcommand_from lock" -l pretty -d 'whether to pretty print events to stdio'
complete -c ordinary -n "__fish_ordinary_using_subcommand root; and __fish_seen_subcommand_from lock" -s h -l help -d 'Print help'
complete -c ordinary -n "__fish_ordinary_using_subcommand root; and __fish_seen_subcommand_from lock" -s V -l version -d 'Print version'
complete -c ordinary -n "__fish_ordinary_using_subcommand root; and __fish_seen_subcommand_from unlock" -s a -l account -d 'account to be unlocked' -r
complete -c ordinary -n "__fish_ordinary_using_subcommand root; and __fish_seen_subcommand_from unlock" -s p -l project -d 'project path' -r
complete -c ordinary -n "__fish_ordinary_using_subcommand root; and __fish_seen_subcommand_from unlock" -l api-domain -d 'should only be necessary with localhost or when addressing by IP' -r
complete -c ordinary -n "__fish_ordinary_using_subcommand root; and __fish_seen_subcommand_from unlock" -l insecure -d 'use HTTP instead of HTTPS'
complete -c ordinary -n "__fish_ordinary_using_subcommand root; and __fish_seen_subcommand_from unlock" -l danger-accept-invalid-certs -d 'DANGER: only use when working with self-signed localhost certs'
complete -c ordinary -n "__fish_ordinary_using_subcommand root; and __fish_seen_subcommand_from unlock" -s v -l verbose -d 'Increase logging verbosity'
complete -c ordinary -n "__fish_ordinary_using_subcommand root; and __fish_seen_subcommand_from unlock" -s q -l quiet -d 'Decrease logging verbosity'
complete -c ordinary -n "__fish_ordinary_using_subcommand root; and __fish_seen_subcommand_from unlock" -l pretty -d 'whether to pretty print events to stdio'
complete -c ordinary -n "__fish_ordinary_using_subcommand root; and __fish_seen_subcommand_from unlock" -s h -l help -d 'Print help'
complete -c ordinary -n "__fish_ordinary_using_subcommand root; and __fish_seen_subcommand_from unlock" -s V -l version -d 'Print version'
complete -c ordinary -n "__fish_ordinary_using_subcommand root; and __fish_seen_subcommand_from help" -f -a "info" -d 'get system and process info for the Ordinary API server'
complete -c ordinary -n "__fish_ordinary_using_subcommand root; and __fish_seen_subcommand_from help" -f -a "logs" -d 'query system and application logs'
complete -c ordinary -n "__fish_ordinary_using_subcommand root; and __fish_seen_subcommand_from help" -f -a "lock" -d 'lock resources to prevent abuse'
complete -c ordinary -n "__fish_ordinary_using_subcommand root; and __fish_seen_subcommand_from help" -f -a "unlock" -d 'unlock resources upon resolution'
complete -c ordinary -n "__fish_ordinary_using_subcommand root; and __fish_seen_subcommand_from help" -f -a "help" -d 'Print this message or the help of the given subcommand(s)'
complete -c ordinary -n "__fish_ordinary_using_subcommand doctor" -s f -l fix -d 'auto fix installs' -r -f -a "all\t''
rust\t''
wasm\t''
wasm-opt\t''
exiftool\t''"
complete -c ordinary -n "__fish_ordinary_using_subcommand doctor" -s p -l project -d 'project path' -r
complete -c ordinary -n "__fish_ordinary_using_subcommand doctor" -l api-domain -d 'should only be necessary with localhost or when addressing by IP' -r
complete -c ordinary -n "__fish_ordinary_using_subcommand doctor" -l insecure -d 'use HTTP instead of HTTPS'
complete -c ordinary -n "__fish_ordinary_using_subcommand doctor" -l danger-accept-invalid-certs -d 'DANGER: only use when working with self-signed localhost certs'
complete -c ordinary -n "__fish_ordinary_using_subcommand doctor" -s v -l verbose -d 'Increase logging verbosity'
complete -c ordinary -n "__fish_ordinary_using_subcommand doctor" -s q -l quiet -d 'Decrease logging verbosity'
complete -c ordinary -n "__fish_ordinary_using_subcommand doctor" -l pretty -d 'whether to pretty print events to stdio'
complete -c ordinary -n "__fish_ordinary_using_subcommand doctor" -s h -l help -d 'Print help'
complete -c ordinary -n "__fish_ordinary_using_subcommand doctor" -s V -l version -d 'Print version'
complete -c ordinary -n "__fish_ordinary_using_subcommand utils; and not __fish_seen_subcommand_from uuid timestamp html css js markdown exif wasm-opt help" -s p -l project -d 'project path' -r
complete -c ordinary -n "__fish_ordinary_using_subcommand utils; and not __fish_seen_subcommand_from uuid timestamp html css js markdown exif wasm-opt help" -l api-domain -d 'should only be necessary with localhost or when addressing by IP' -r
complete -c ordinary -n "__fish_ordinary_using_subcommand utils; and not __fish_seen_subcommand_from uuid timestamp html css js markdown exif wasm-opt help" -l insecure -d 'use HTTP instead of HTTPS'
complete -c ordinary -n "__fish_ordinary_using_subcommand utils; and not __fish_seen_subcommand_from uuid timestamp html css js markdown exif wasm-opt help" -l danger-accept-invalid-certs -d 'DANGER: only use when working with self-signed localhost certs'
complete -c ordinary -n "__fish_ordinary_using_subcommand utils; and not __fish_seen_subcommand_from uuid timestamp html css js markdown exif wasm-opt help" -s v -l verbose -d 'Increase logging verbosity'
complete -c ordinary -n "__fish_ordinary_using_subcommand utils; and not __fish_seen_subcommand_from uuid timestamp html css js markdown exif wasm-opt help" -s q -l quiet -d 'Decrease logging verbosity'
complete -c ordinary -n "__fish_ordinary_using_subcommand utils; and not __fish_seen_subcommand_from uuid timestamp html css js markdown exif wasm-opt help" -l pretty -d 'whether to pretty print events to stdio'
complete -c ordinary -n "__fish_ordinary_using_subcommand utils; and not __fish_seen_subcommand_from uuid timestamp html css js markdown exif wasm-opt help" -s h -l help -d 'Print help'
complete -c ordinary -n "__fish_ordinary_using_subcommand utils; and not __fish_seen_subcommand_from uuid timestamp html css js markdown exif wasm-opt help" -s V -l version -d 'Print version'
complete -c ordinary -n "__fish_ordinary_using_subcommand utils; and not __fish_seen_subcommand_from uuid timestamp html css js markdown exif wasm-opt help" -f -a "uuid" -d 'generate a UUID'
complete -c ordinary -n "__fish_ordinary_using_subcommand utils; and not __fish_seen_subcommand_from uuid timestamp html css js markdown exif wasm-opt help" -f -a "timestamp" -d 'generate a UNIX timestamp for the current time (i.e. `date +%s`)'
complete -c ordinary -n "__fish_ordinary_using_subcommand utils; and not __fish_seen_subcommand_from uuid timestamp html css js markdown exif wasm-opt help" -f -a "html" -d 'utilities for managing HTML files'
complete -c ordinary -n "__fish_ordinary_using_subcommand utils; and not __fish_seen_subcommand_from uuid timestamp html css js markdown exif wasm-opt help" -f -a "css" -d 'utilities for managing CSS files'
complete -c ordinary -n "__fish_ordinary_using_subcommand utils; and not __fish_seen_subcommand_from uuid timestamp html css js markdown exif wasm-opt help" -f -a "js" -d 'utilities for managing JavaScript files'
complete -c ordinary -n "__fish_ordinary_using_subcommand utils; and not __fish_seen_subcommand_from uuid timestamp html css js markdown exif wasm-opt help" -f -a "markdown" -d 'utilities for manipulating Markdown files'
complete -c ordinary -n "__fish_ordinary_using_subcommand utils; and not __fish_seen_subcommand_from uuid timestamp html css js markdown exif wasm-opt help" -f -a "exif" -d 'utilities for manipulating exif data'
complete -c ordinary -n "__fish_ordinary_using_subcommand utils; and not __fish_seen_subcommand_from uuid timestamp html css js markdown exif wasm-opt help" -f -a "wasm-opt" -d '[`wasm-opt`](https://github.com/WebAssembly/binaryen#wasm-opt) command'
complete -c ordinary -n "__fish_ordinary_using_subcommand utils; and not __fish_seen_subcommand_from uuid timestamp html css js markdown exif wasm-opt help" -f -a "help" -d 'Print this message or the help of the given subcommand(s)'
complete -c ordinary -n "__fish_ordinary_using_subcommand utils; and __fish_seen_subcommand_from uuid" -l v -d 'uuid version' -r -f -a "4\t''"
complete -c ordinary -n "__fish_ordinary_using_subcommand utils; and __fish_seen_subcommand_from uuid" -s p -l project -d 'project path' -r
complete -c ordinary -n "__fish_ordinary_using_subcommand utils; and __fish_seen_subcommand_from uuid" -l api-domain -d 'should only be necessary with localhost or when addressing by IP' -r
complete -c ordinary -n "__fish_ordinary_using_subcommand utils; and __fish_seen_subcommand_from uuid" -l insecure -d 'use HTTP instead of HTTPS'
complete -c ordinary -n "__fish_ordinary_using_subcommand utils; and __fish_seen_subcommand_from uuid" -l danger-accept-invalid-certs -d 'DANGER: only use when working with self-signed localhost certs'
complete -c ordinary -n "__fish_ordinary_using_subcommand utils; and __fish_seen_subcommand_from uuid" -s v -l verbose -d 'Increase logging verbosity'
complete -c ordinary -n "__fish_ordinary_using_subcommand utils; and __fish_seen_subcommand_from uuid" -s q -l quiet -d 'Decrease logging verbosity'
complete -c ordinary -n "__fish_ordinary_using_subcommand utils; and __fish_seen_subcommand_from uuid" -l pretty -d 'whether to pretty print events to stdio'
complete -c ordinary -n "__fish_ordinary_using_subcommand utils; and __fish_seen_subcommand_from uuid" -s h -l help -d 'Print help'
complete -c ordinary -n "__fish_ordinary_using_subcommand utils; and __fish_seen_subcommand_from uuid" -s V -l version -d 'Print version'
complete -c ordinary -n "__fish_ordinary_using_subcommand utils; and __fish_seen_subcommand_from timestamp" -s u -l unit -d 'unit of time' -r -f -a "seconds\t''
millis\t''
micros\t''
nanos\t''"
complete -c ordinary -n "__fish_ordinary_using_subcommand utils; and __fish_seen_subcommand_from timestamp" -s f -l fmt -d 'formatting (uses `time` crate <https://time-rs.github.io/book/api/format-description.html>)' -r
complete -c ordinary -n "__fish_ordinary_using_subcommand utils; and __fish_seen_subcommand_from timestamp" -s p -l project -d 'project path' -r
complete -c ordinary -n "__fish_ordinary_using_subcommand utils; and __fish_seen_subcommand_from timestamp" -l api-domain -d 'should only be necessary with localhost or when addressing by IP' -r
complete -c ordinary -n "__fish_ordinary_using_subcommand utils; and __fish_seen_subcommand_from timestamp" -l insecure -d 'use HTTP instead of HTTPS'
complete -c ordinary -n "__fish_ordinary_using_subcommand utils; and __fish_seen_subcommand_from timestamp" -l danger-accept-invalid-certs -d 'DANGER: only use when working with self-signed localhost certs'
complete -c ordinary -n "__fish_ordinary_using_subcommand utils; and __fish_seen_subcommand_from timestamp" -s v -l verbose -d 'Increase logging verbosity'
complete -c ordinary -n "__fish_ordinary_using_subcommand utils; and __fish_seen_subcommand_from timestamp" -s q -l quiet -d 'Decrease logging verbosity'
complete -c ordinary -n "__fish_ordinary_using_subcommand utils; and __fish_seen_subcommand_from timestamp" -l pretty -d 'whether to pretty print events to stdio'
complete -c ordinary -n "__fish_ordinary_using_subcommand utils; and __fish_seen_subcommand_from timestamp" -s h -l help -d 'Print help (see more with \'--help\')'
complete -c ordinary -n "__fish_ordinary_using_subcommand utils; and __fish_seen_subcommand_from timestamp" -s V -l version -d 'Print version'
complete -c ordinary -n "__fish_ordinary_using_subcommand utils; and __fish_seen_subcommand_from html" -s p -l project -d 'project path' -r
complete -c ordinary -n "__fish_ordinary_using_subcommand utils; and __fish_seen_subcommand_from html" -l api-domain -d 'should only be necessary with localhost or when addressing by IP' -r
complete -c ordinary -n "__fish_ordinary_using_subcommand utils; and __fish_seen_subcommand_from html" -l insecure -d 'use HTTP instead of HTTPS'
complete -c ordinary -n "__fish_ordinary_using_subcommand utils; and __fish_seen_subcommand_from html" -l danger-accept-invalid-certs -d 'DANGER: only use when working with self-signed localhost certs'
complete -c ordinary -n "__fish_ordinary_using_subcommand utils; and __fish_seen_subcommand_from html" -s v -l verbose -d 'Increase logging verbosity'
complete -c ordinary -n "__fish_ordinary_using_subcommand utils; and __fish_seen_subcommand_from html" -s q -l quiet -d 'Decrease logging verbosity'
complete -c ordinary -n "__fish_ordinary_using_subcommand utils; and __fish_seen_subcommand_from html" -l pretty -d 'whether to pretty print events to stdio'
complete -c ordinary -n "__fish_ordinary_using_subcommand utils; and __fish_seen_subcommand_from html" -s h -l help -d 'Print help'
complete -c ordinary -n "__fish_ordinary_using_subcommand utils; and __fish_seen_subcommand_from html" -s V -l version -d 'Print version'
complete -c ordinary -n "__fish_ordinary_using_subcommand utils; and __fish_seen_subcommand_from html" -f -a "minify" -d 'minify HTML files'
complete -c ordinary -n "__fish_ordinary_using_subcommand utils; and __fish_seen_subcommand_from html" -f -a "help" -d 'Print this message or the help of the given subcommand(s)'
complete -c ordinary -n "__fish_ordinary_using_subcommand utils; and __fish_seen_subcommand_from css" -s p -l project -d 'project path' -r
complete -c ordinary -n "__fish_ordinary_using_subcommand utils; and __fish_seen_subcommand_from css" -l api-domain -d 'should only be necessary with localhost or when addressing by IP' -r
complete -c ordinary -n "__fish_ordinary_using_subcommand utils; and __fish_seen_subcommand_from css" -l insecure -d 'use HTTP instead of HTTPS'
complete -c ordinary -n "__fish_ordinary_using_subcommand utils; and __fish_seen_subcommand_from css" -l danger-accept-invalid-certs -d 'DANGER: only use when working with self-signed localhost certs'
complete -c ordinary -n "__fish_ordinary_using_subcommand utils; and __fish_seen_subcommand_from css" -s v -l verbose -d 'Increase logging verbosity'
complete -c ordinary -n "__fish_ordinary_using_subcommand utils; and __fish_seen_subcommand_from css" -s q -l quiet -d 'Decrease logging verbosity'
complete -c ordinary -n "__fish_ordinary_using_subcommand utils; and __fish_seen_subcommand_from css" -l pretty -d 'whether to pretty print events to stdio'
complete -c ordinary -n "__fish_ordinary_using_subcommand utils; and __fish_seen_subcommand_from css" -s h -l help -d 'Print help'
complete -c ordinary -n "__fish_ordinary_using_subcommand utils; and __fish_seen_subcommand_from css" -s V -l version -d 'Print version'
complete -c ordinary -n "__fish_ordinary_using_subcommand utils; and __fish_seen_subcommand_from css" -f -a "minify" -d 'minify CSS files'
complete -c ordinary -n "__fish_ordinary_using_subcommand utils; and __fish_seen_subcommand_from css" -f -a "help" -d 'Print this message or the help of the given subcommand(s)'
complete -c ordinary -n "__fish_ordinary_using_subcommand utils; and __fish_seen_subcommand_from js" -s p -l project -d 'project path' -r
complete -c ordinary -n "__fish_ordinary_using_subcommand utils; and __fish_seen_subcommand_from js" -l api-domain -d 'should only be necessary with localhost or when addressing by IP' -r
complete -c ordinary -n "__fish_ordinary_using_subcommand utils; and __fish_seen_subcommand_from js" -l insecure -d 'use HTTP instead of HTTPS'
complete -c ordinary -n "__fish_ordinary_using_subcommand utils; and __fish_seen_subcommand_from js" -l danger-accept-invalid-certs -d 'DANGER: only use when working with self-signed localhost certs'
complete -c ordinary -n "__fish_ordinary_using_subcommand utils; and __fish_seen_subcommand_from js" -s v -l verbose -d 'Increase logging verbosity'
complete -c ordinary -n "__fish_ordinary_using_subcommand utils; and __fish_seen_subcommand_from js" -s q -l quiet -d 'Decrease logging verbosity'
complete -c ordinary -n "__fish_ordinary_using_subcommand utils; and __fish_seen_subcommand_from js" -l pretty -d 'whether to pretty print events to stdio'
complete -c ordinary -n "__fish_ordinary_using_subcommand utils; and __fish_seen_subcommand_from js" -s h -l help -d 'Print help'
complete -c ordinary -n "__fish_ordinary_using_subcommand utils; and __fish_seen_subcommand_from js" -s V -l version -d 'Print version'
complete -c ordinary -n "__fish_ordinary_using_subcommand utils; and __fish_seen_subcommand_from js" -f -a "minify" -d 'minify JavaScript files'
complete -c ordinary -n "__fish_ordinary_using_subcommand utils; and __fish_seen_subcommand_from js" -f -a "help" -d 'Print this message or the help of the given subcommand(s)'
complete -c ordinary -n "__fish_ordinary_using_subcommand utils; and __fish_seen_subcommand_from markdown" -s p -l project -d 'project path' -r
complete -c ordinary -n "__fish_ordinary_using_subcommand utils; and __fish_seen_subcommand_from markdown" -l api-domain -d 'should only be necessary with localhost or when addressing by IP' -r
complete -c ordinary -n "__fish_ordinary_using_subcommand utils; and __fish_seen_subcommand_from markdown" -l insecure -d 'use HTTP instead of HTTPS'
complete -c ordinary -n "__fish_ordinary_using_subcommand utils; and __fish_seen_subcommand_from markdown" -l danger-accept-invalid-certs -d 'DANGER: only use when working with self-signed localhost certs'
complete -c ordinary -n "__fish_ordinary_using_subcommand utils; and __fish_seen_subcommand_from markdown" -s v -l verbose -d 'Increase logging verbosity'
complete -c ordinary -n "__fish_ordinary_using_subcommand utils; and __fish_seen_subcommand_from markdown" -s q -l quiet -d 'Decrease logging verbosity'
complete -c ordinary -n "__fish_ordinary_using_subcommand utils; and __fish_seen_subcommand_from markdown" -l pretty -d 'whether to pretty print events to stdio'
complete -c ordinary -n "__fish_ordinary_using_subcommand utils; and __fish_seen_subcommand_from markdown" -s h -l help -d 'Print help'
complete -c ordinary -n "__fish_ordinary_using_subcommand utils; and __fish_seen_subcommand_from markdown" -s V -l version -d 'Print version'
complete -c ordinary -n "__fish_ordinary_using_subcommand utils; and __fish_seen_subcommand_from markdown" -f -a "to-html" -d 'process and place an .html file next to the referenced .md file'
complete -c ordinary -n "__fish_ordinary_using_subcommand utils; and __fish_seen_subcommand_from markdown" -f -a "help" -d 'Print this message or the help of the given subcommand(s)'
complete -c ordinary -n "__fish_ordinary_using_subcommand utils; and __fish_seen_subcommand_from exif" -s p -l project -d 'project path' -r
complete -c ordinary -n "__fish_ordinary_using_subcommand utils; and __fish_seen_subcommand_from exif" -l api-domain -d 'should only be necessary with localhost or when addressing by IP' -r
complete -c ordinary -n "__fish_ordinary_using_subcommand utils; and __fish_seen_subcommand_from exif" -l insecure -d 'use HTTP instead of HTTPS'
complete -c ordinary -n "__fish_ordinary_using_subcommand utils; and __fish_seen_subcommand_from exif" -l danger-accept-invalid-certs -d 'DANGER: only use when working with self-signed localhost certs'
complete -c ordinary -n "__fish_ordinary_using_subcommand utils; and __fish_seen_subcommand_from exif" -s v -l verbose -d 'Increase logging verbosity'
complete -c ordinary -n "__fish_ordinary_using_subcommand utils; and __fish_seen_subcommand_from exif" -s q -l quiet -d 'Decrease logging verbosity'
complete -c ordinary -n "__fish_ordinary_using_subcommand utils; and __fish_seen_subcommand_from exif" -l pretty -d 'whether to pretty print events to stdio'
complete -c ordinary -n "__fish_ordinary_using_subcommand utils; and __fish_seen_subcommand_from exif" -s h -l help -d 'Print help'
complete -c ordinary -n "__fish_ordinary_using_subcommand utils; and __fish_seen_subcommand_from exif" -s V -l version -d 'Print version'
complete -c ordinary -n "__fish_ordinary_using_subcommand utils; and __fish_seen_subcommand_from exif" -f -a "tool" -d '[`exiftool`](https://exiftool.org) command'
complete -c ordinary -n "__fish_ordinary_using_subcommand utils; and __fish_seen_subcommand_from exif" -f -a "help" -d 'Print this message or the help of the given subcommand(s)'
complete -c ordinary -n "__fish_ordinary_using_subcommand utils; and __fish_seen_subcommand_from wasm-opt" -s p -l project -d 'project path' -r
complete -c ordinary -n "__fish_ordinary_using_subcommand utils; and __fish_seen_subcommand_from wasm-opt" -l api-domain -d 'should only be necessary with localhost or when addressing by IP' -r
complete -c ordinary -n "__fish_ordinary_using_subcommand utils; and __fish_seen_subcommand_from wasm-opt" -l insecure -d 'use HTTP instead of HTTPS'
complete -c ordinary -n "__fish_ordinary_using_subcommand utils; and __fish_seen_subcommand_from wasm-opt" -l danger-accept-invalid-certs -d 'DANGER: only use when working with self-signed localhost certs'
complete -c ordinary -n "__fish_ordinary_using_subcommand utils; and __fish_seen_subcommand_from wasm-opt" -s v -l verbose -d 'Increase logging verbosity'
complete -c ordinary -n "__fish_ordinary_using_subcommand utils; and __fish_seen_subcommand_from wasm-opt" -s q -l quiet -d 'Decrease logging verbosity'
complete -c ordinary -n "__fish_ordinary_using_subcommand utils; and __fish_seen_subcommand_from wasm-opt" -l pretty -d 'whether to pretty print events to stdio'
complete -c ordinary -n "__fish_ordinary_using_subcommand utils; and __fish_seen_subcommand_from wasm-opt" -s h -l help -d 'Print help'
complete -c ordinary -n "__fish_ordinary_using_subcommand utils; and __fish_seen_subcommand_from wasm-opt" -s V -l version -d 'Print version'
complete -c ordinary -n "__fish_ordinary_using_subcommand utils; and __fish_seen_subcommand_from help" -f -a "uuid" -d 'generate a UUID'
complete -c ordinary -n "__fish_ordinary_using_subcommand utils; and __fish_seen_subcommand_from help" -f -a "timestamp" -d 'generate a UNIX timestamp for the current time (i.e. `date +%s`)'
complete -c ordinary -n "__fish_ordinary_using_subcommand utils; and __fish_seen_subcommand_from help" -f -a "html" -d 'utilities for managing HTML files'
complete -c ordinary -n "__fish_ordinary_using_subcommand utils; and __fish_seen_subcommand_from help" -f -a "css" -d 'utilities for managing CSS files'
complete -c ordinary -n "__fish_ordinary_using_subcommand utils; and __fish_seen_subcommand_from help" -f -a "js" -d 'utilities for managing JavaScript files'
complete -c ordinary -n "__fish_ordinary_using_subcommand utils; and __fish_seen_subcommand_from help" -f -a "markdown" -d 'utilities for manipulating Markdown files'
complete -c ordinary -n "__fish_ordinary_using_subcommand utils; and __fish_seen_subcommand_from help" -f -a "exif" -d 'utilities for manipulating exif data'
complete -c ordinary -n "__fish_ordinary_using_subcommand utils; and __fish_seen_subcommand_from help" -f -a "wasm-opt" -d '[`wasm-opt`](https://github.com/WebAssembly/binaryen#wasm-opt) command'
complete -c ordinary -n "__fish_ordinary_using_subcommand utils; and __fish_seen_subcommand_from help" -f -a "help" -d 'Print this message or the help of the given subcommand(s)'
complete -c ordinary -n "__fish_ordinary_using_subcommand help; and not __fish_seen_subcommand_from new ssg build start publish templates content assets models actions integrations accounts app secrets root doctor utils help" -f -a "new" -d 'create a new Ordinary project'
complete -c ordinary -n "__fish_ordinary_using_subcommand help; and not __fish_seen_subcommand_from new ssg build start publish templates content assets models actions integrations accounts app secrets root doctor utils help" -f -a "ssg" -d 'manage static site configuration'
complete -c ordinary -n "__fish_ordinary_using_subcommand help; and not __fish_seen_subcommand_from new ssg build start publish templates content assets models actions integrations accounts app secrets root doctor utils help" -f -a "build" -d 'build your Ordinary project'
complete -c ordinary -n "__fish_ordinary_using_subcommand help; and not __fish_seen_subcommand_from new ssg build start publish templates content assets models actions integrations accounts app secrets root doctor utils help" -f -a "start" -d 'start the app, locally'
complete -c ordinary -n "__fish_ordinary_using_subcommand help; and not __fish_seen_subcommand_from new ssg build start publish templates content assets models actions integrations accounts app secrets root doctor utils help" -f -a "publish" -d 'combines `build`, `content update`, `assets write`, `templates upload`, `actions install`'
complete -c ordinary -n "__fish_ordinary_using_subcommand help; and not __fish_seen_subcommand_from new ssg build start publish templates content assets models actions integrations accounts app secrets root doctor utils help" -f -a "templates" -d 'manage templates in your Ordinary project'
complete -c ordinary -n "__fish_ordinary_using_subcommand help; and not __fish_seen_subcommand_from new ssg build start publish templates content assets models actions integrations accounts app secrets root doctor utils help" -f -a "content" -d 'manage content in your Ordinary project'
complete -c ordinary -n "__fish_ordinary_using_subcommand help; and not __fish_seen_subcommand_from new ssg build start publish templates content assets models actions integrations accounts app secrets root doctor utils help" -f -a "assets" -d 'manage assets in your Ordinary project'
complete -c ordinary -n "__fish_ordinary_using_subcommand help; and not __fish_seen_subcommand_from new ssg build start publish templates content assets models actions integrations accounts app secrets root doctor utils help" -f -a "models" -d 'manage models in your Ordinary project'
complete -c ordinary -n "__fish_ordinary_using_subcommand help; and not __fish_seen_subcommand_from new ssg build start publish templates content assets models actions integrations accounts app secrets root doctor utils help" -f -a "actions" -d 'manage actions in your Ordinary project'
complete -c ordinary -n "__fish_ordinary_using_subcommand help; and not __fish_seen_subcommand_from new ssg build start publish templates content assets models actions integrations accounts app secrets root doctor utils help" -f -a "integrations" -d 'manage integrations in your Ordinary project'
complete -c ordinary -n "__fish_ordinary_using_subcommand help; and not __fish_seen_subcommand_from new ssg build start publish templates content assets models actions integrations accounts app secrets root doctor utils help" -f -a "accounts" -d 'manage accounts connected to `ordinaryd`'
complete -c ordinary -n "__fish_ordinary_using_subcommand help; and not __fish_seen_subcommand_from new ssg build start publish templates content assets models actions integrations accounts app secrets root doctor utils help" -f -a "app" -d 'manage applications running on `ordinaryd`'
complete -c ordinary -n "__fish_ordinary_using_subcommand help; and not __fish_seen_subcommand_from new ssg build start publish templates content assets models actions integrations accounts app secrets root doctor utils help" -f -a "secrets" -d 'manage secrets in your Ordinary application'
complete -c ordinary -n "__fish_ordinary_using_subcommand help; and not __fish_seen_subcommand_from new ssg build start publish templates content assets models actions integrations accounts app secrets root doctor utils help" -f -a "root"
complete -c ordinary -n "__fish_ordinary_using_subcommand help; and not __fish_seen_subcommand_from new ssg build start publish templates content assets models actions integrations accounts app secrets root doctor utils help" -f -a "doctor" -d 'ensure that all the correct system components are installed'
complete -c ordinary -n "__fish_ordinary_using_subcommand help; and not __fish_seen_subcommand_from new ssg build start publish templates content assets models actions integrations accounts app secrets root doctor utils help" -f -a "utils" -d 'utility functions for aiding project development'
complete -c ordinary -n "__fish_ordinary_using_subcommand help; and not __fish_seen_subcommand_from new ssg build start publish templates content assets models actions integrations accounts app secrets root doctor utils help" -f -a "help" -d 'Print this message or the help of the given subcommand(s)'
complete -c ordinary -n "__fish_ordinary_using_subcommand help; and __fish_seen_subcommand_from ssg" -f -a "init" -d 'generate an `ordinary.json` config to deploy your SSG to a running instance of `ordinaryd`'
complete -c ordinary -n "__fish_ordinary_using_subcommand help; and __fish_seen_subcommand_from templates" -f -a "add" -d 'add a new template to the Ordinary project'
complete -c ordinary -n "__fish_ordinary_using_subcommand help; and __fish_seen_subcommand_from templates" -f -a "upload" -d 'upload templates to application running on `ordinaryd` instance'
complete -c ordinary -n "__fish_ordinary_using_subcommand help; and __fish_seen_subcommand_from content" -f -a "definition" -d 'manage content definitions for Ordinary project'
complete -c ordinary -n "__fish_ordinary_using_subcommand help; and __fish_seen_subcommand_from content" -f -a "object" -d 'manage content objects for Ordinary project'
complete -c ordinary -n "__fish_ordinary_using_subcommand help; and __fish_seen_subcommand_from content" -f -a "update" -d 'update content for application running on `ordinaryd` instance'
complete -c ordinary -n "__fish_ordinary_using_subcommand help; and __fish_seen_subcommand_from assets" -f -a "write" -d 'write assets to application running on `ordinaryd` instance'
complete -c ordinary -n "__fish_ordinary_using_subcommand help; and __fish_seen_subcommand_from models" -f -a "add" -d 'add a new model to your Ordinary project'
complete -c ordinary -n "__fish_ordinary_using_subcommand help; and __fish_seen_subcommand_from models" -f -a "items" -d 'manage model items for the application running on an `ordinaryd` instance'
complete -c ordinary -n "__fish_ordinary_using_subcommand help; and __fish_seen_subcommand_from actions" -f -a "add" -d 'add a new action to your Ordinary project'
complete -c ordinary -n "__fish_ordinary_using_subcommand help; and __fish_seen_subcommand_from actions" -f -a "install" -d 'install actions to application running on `ordinaryd` instance'
complete -c ordinary -n "__fish_ordinary_using_subcommand help; and __fish_seen_subcommand_from integrations" -f -a "add" -d 'add a new integration to your Ordinary project'
complete -c ordinary -n "__fish_ordinary_using_subcommand help; and __fish_seen_subcommand_from accounts" -f -a "register" -d 'register a new account'
complete -c ordinary -n "__fish_ordinary_using_subcommand help; and __fish_seen_subcommand_from accounts" -f -a "login" -d 'log in to an existing account'
complete -c ordinary -n "__fish_ordinary_using_subcommand help; and __fish_seen_subcommand_from accounts" -f -a "logout" -d 'log out of a logged in account'
complete -c ordinary -n "__fish_ordinary_using_subcommand help; and __fish_seen_subcommand_from accounts" -f -a "access" -d 'access management subcommands'
complete -c ordinary -n "__fish_ordinary_using_subcommand help; and __fish_seen_subcommand_from accounts" -f -a "password" -d 'password management'
complete -c ordinary -n "__fish_ordinary_using_subcommand help; and __fish_seen_subcommand_from accounts" -f -a "mfa" -d 'MFA management'
complete -c ordinary -n "__fish_ordinary_using_subcommand help; and __fish_seen_subcommand_from accounts" -f -a "recovery-codes" -d 'recovery code management'
complete -c ordinary -n "__fish_ordinary_using_subcommand help; and __fish_seen_subcommand_from accounts" -f -a "delete" -d 'delete account'
complete -c ordinary -n "__fish_ordinary_using_subcommand help; and __fish_seen_subcommand_from accounts" -f -a "invite" -d 'invite another user to a project'
complete -c ordinary -n "__fish_ordinary_using_subcommand help; and __fish_seen_subcommand_from accounts" -f -a "current" -d 'display info for current account'
complete -c ordinary -n "__fish_ordinary_using_subcommand help; and __fish_seen_subcommand_from accounts" -f -a "list" -d 'list all logged in accounts'
complete -c ordinary -n "__fish_ordinary_using_subcommand help; and __fish_seen_subcommand_from accounts" -f -a "switch" -d 'switch to a different logged in account'
complete -c ordinary -n "__fish_ordinary_using_subcommand help; and __fish_seen_subcommand_from app" -f -a "deploy" -d 'deploy a changes to ordinary.json'
complete -c ordinary -n "__fish_ordinary_using_subcommand help; and __fish_seen_subcommand_from app" -f -a "migrate" -d 'push a configuration change which will modify the shape of your data stores'
complete -c ordinary -n "__fish_ordinary_using_subcommand help; and __fish_seen_subcommand_from app" -f -a "kill" -d 'kill a running instance of the application'
complete -c ordinary -n "__fish_ordinary_using_subcommand help; and __fish_seen_subcommand_from app" -f -a "restart" -d 'restart a running instance of the application'
complete -c ordinary -n "__fish_ordinary_using_subcommand help; and __fish_seen_subcommand_from app" -f -a "erase" -d 'fully erase all content of the application from the host'
complete -c ordinary -n "__fish_ordinary_using_subcommand help; and __fish_seen_subcommand_from app" -f -a "download" -d 'download an application as static files'
complete -c ordinary -n "__fish_ordinary_using_subcommand help; and __fish_seen_subcommand_from app" -f -a "logs" -d 'query application logs'
complete -c ordinary -n "__fish_ordinary_using_subcommand help; and __fish_seen_subcommand_from app" -f -a "accounts" -d 'manage application accounts'
complete -c ordinary -n "__fish_ordinary_using_subcommand help; and __fish_seen_subcommand_from app" -f -a "routes" -d 'list all HTTP routes'
complete -c ordinary -n "__fish_ordinary_using_subcommand help; and __fish_seen_subcommand_from secrets" -f -a "store" -d 'store an application secret'
complete -c ordinary -n "__fish_ordinary_using_subcommand help; and __fish_seen_subcommand_from root" -f -a "info" -d 'get system and process info for the Ordinary API server'
complete -c ordinary -n "__fish_ordinary_using_subcommand help; and __fish_seen_subcommand_from root" -f -a "logs" -d 'query system and application logs'
complete -c ordinary -n "__fish_ordinary_using_subcommand help; and __fish_seen_subcommand_from root" -f -a "lock" -d 'lock resources to prevent abuse'
complete -c ordinary -n "__fish_ordinary_using_subcommand help; and __fish_seen_subcommand_from root" -f -a "unlock" -d 'unlock resources upon resolution'
complete -c ordinary -n "__fish_ordinary_using_subcommand help; and __fish_seen_subcommand_from utils" -f -a "uuid" -d 'generate a UUID'
complete -c ordinary -n "__fish_ordinary_using_subcommand help; and __fish_seen_subcommand_from utils" -f -a "timestamp" -d 'generate a UNIX timestamp for the current time (i.e. `date +%s`)'
complete -c ordinary -n "__fish_ordinary_using_subcommand help; and __fish_seen_subcommand_from utils" -f -a "html" -d 'utilities for managing HTML files'
complete -c ordinary -n "__fish_ordinary_using_subcommand help; and __fish_seen_subcommand_from utils" -f -a "css" -d 'utilities for managing CSS files'
complete -c ordinary -n "__fish_ordinary_using_subcommand help; and __fish_seen_subcommand_from utils" -f -a "js" -d 'utilities for managing JavaScript files'
complete -c ordinary -n "__fish_ordinary_using_subcommand help; and __fish_seen_subcommand_from utils" -f -a "markdown" -d 'utilities for manipulating Markdown files'
complete -c ordinary -n "__fish_ordinary_using_subcommand help; and __fish_seen_subcommand_from utils" -f -a "exif" -d 'utilities for manipulating exif data'
complete -c ordinary -n "__fish_ordinary_using_subcommand help; and __fish_seen_subcommand_from utils" -f -a "wasm-opt" -d '[`wasm-opt`](https://github.com/WebAssembly/binaryen#wasm-opt) command'