# bash completion for asc
_asc_completions() {
  local cur
  COMPREPLY=()
  cur="${COMP_WORDS[COMP_CWORD]}"

  if [[ $COMP_CWORD -eq 1 ]]; then
    COMPREPLY=( $(compgen -W "accessibility account actors age-rating agreements alternative-distribution analytics android-ios-mapping app-clips app-events app-setup app-tags apps auth background-assets beta-build-localizations build-bundles build-localizations builds bundle-ids categories certificates completion devices diff docs doctor encryption eula finance game-center iap init insights install-skills localizations marketplace merchant-ids metadata migrate nominations notarization notify pass-type-ids performance pre-orders pricing product-pages profiles publish release release-notes review reviews routing-coverage sandbox schema screenshots signing snitch status submit subscriptions testflight users validate version versions video-previews web webhooks workflow xcode xcode-cloud" -- "$cur") )
    return 0
  fi
}

complete -F _asc_completions asc
