From 2ebb9e50fe3e689e0bc73965d3815bb05183cc8e Mon Sep 17 00:00:00 2001 From: Jesse MacFadyen Date: Wed, 28 Jul 2021 18:40:35 -0700 Subject: [PATCH] 8.0.0 --- README.md | 4049 ++++----------------------------------------- package-lock.json | 4 +- package.json | 2 +- 3 files changed, 343 insertions(+), 3712 deletions(-) diff --git a/README.md b/README.md index fc12f473..84ba426b 100644 --- a/README.md +++ b/README.md @@ -29,12 +29,6 @@ Adobe I/O Extensible CLI * [Usage](#usage) * [Commands](#commands) -* [aio cli health](#aio-cli-health) -* [Getting started](#getting-started) -* [Technical requirements](#technical-requirements) -* [Usage](#usage) -* [Commands](#commands) - @@ -74,19 +68,7 @@ $ npm install -g @adobe/aio-cli $ aio COMMAND running command... $ aio (-v|--version|version) -@adobe/aio-cli/7.1.0 win32-x64 node-v14.17.0 -$ aio --help [COMMAND] -USAGE - $ aio COMMAND -... -``` - -```sh-session -$ npm install -g @adobe/aio-cli -$ aio COMMAND -running command... -$ aio (-v|--version|version) -@adobe/aio-cli/7.0.0 darwin-x64 node-v14.16.0 +@adobe/aio-cli/8.0.0 darwin-x64 node-v12.22.1 $ aio --help [COMMAND] USAGE $ aio COMMAND @@ -100,6 +82,7 @@ USAGE * [`aio app:add:action`](#aio-appaddaction) * [`aio app:add:ci`](#aio-appaddci) * [`aio app:add:event`](#aio-appaddevent) +* [`aio app:add:extension`](#aio-appaddextension) * [`aio app:add:service`](#aio-appaddservice) * [`aio app:add:web-assets`](#aio-appaddweb-assets) * [`aio app:build`](#aio-appbuild) @@ -107,13 +90,17 @@ USAGE * [`aio app:delete`](#aio-appdelete) * [`aio app:delete:action [ACTION-NAME]`](#aio-appdeleteaction-action-name) * [`aio app:delete:ci`](#aio-appdeleteci) -* [`aio app:delete:event EVENT-ACTION-NAME`](#aio-appdeleteevent-event-action-name) +* [`aio app:delete:event [EVENT-ACTION-NAME]`](#aio-appdeleteevent-event-action-name) +* [`aio app:delete:extension`](#aio-appdeleteextension) * [`aio app:delete:service`](#aio-appdeleteservice) * [`aio app:delete:web-assets`](#aio-appdeleteweb-assets) * [`aio app:deploy`](#aio-appdeploy) * [`aio app:get-url [ACTION]`](#aio-appget-url-action) * [`aio app:info`](#aio-appinfo) * [`aio app:init [PATH]`](#aio-appinit-path) +* [`aio app:list`](#aio-applist) +* [`aio app:list:extension`](#aio-applistextension) +* [`aio app:list:extension-points`](#aio-applistextension-points) * [`aio app:logs`](#aio-applogs) * [`aio app:run`](#aio-apprun) * [`aio app:test`](#aio-apptest) @@ -246,7 +233,7 @@ OPTIONS --version Show version ``` -_See code: [@adobe/aio-cli-plugin-app](https://github.com/adobe/aio-cli-plugin-app/blob/7.0.2/src/commands/app/index.js)_ +_See code: [@adobe/aio-cli-plugin-app](https://github.com/adobe/aio-cli-plugin-app/blob/8.0.0/src/commands/app/index.js)_ ## `aio app:add` @@ -263,27 +250,31 @@ OPTIONS --version Show version ``` -_See code: [@adobe/aio-cli-plugin-app](https://github.com/adobe/aio-cli-plugin-app/blob/7.0.2/src/commands/app/add/index.js)_ +_See code: [@adobe/aio-cli-plugin-app](https://github.com/adobe/aio-cli-plugin-app/blob/8.0.0/src/commands/app/add/index.js)_ ## `aio app:add:action` -Add a new action +Add new actions ``` -Add a new action +Add new actions USAGE $ aio app:add:action OPTIONS - -v, --verbose Verbose output - -y, --yes Skip questions, and use all default values - --skip-install Skip npm installation after files are created - --version Show version + -e, --extension=extension Add actions to a specific extension + -v, --verbose Verbose output + -y, --yes Skip questions, and use all default values + --skip-install Skip npm installation after files are created + --version Show version + +ALIASES + $ aio app:add:actions ``` -_See code: [@adobe/aio-cli-plugin-app](https://github.com/adobe/aio-cli-plugin-app/blob/7.0.2/src/commands/app/add/action.js)_ +_See code: [@adobe/aio-cli-plugin-app](https://github.com/adobe/aio-cli-plugin-app/blob/8.0.0/src/commands/app/add/action.js)_ ## `aio app:add:ci` @@ -301,7 +292,7 @@ OPTIONS --version Show version ``` -_See code: [@adobe/aio-cli-plugin-app](https://github.com/adobe/aio-cli-plugin-app/blob/7.0.2/src/commands/app/add/ci.js)_ +_See code: [@adobe/aio-cli-plugin-app](https://github.com/adobe/aio-cli-plugin-app/blob/8.0.0/src/commands/app/add/ci.js)_ ## `aio app:add:event` @@ -315,13 +306,42 @@ USAGE $ aio app:add:event OPTIONS - -v, --verbose Verbose output - -y, --yes Skip questions, and use all default values - --skip-install Skip npm installation after files are created - --version Show version + -e, --extension=extension Add actions to a specific extension + -v, --verbose Verbose output + -y, --yes Skip questions, and use all default values + --skip-install Skip npm installation after files are created + --version Show version + +ALIASES + $ aio app:add:events +``` + +_See code: [@adobe/aio-cli-plugin-app](https://github.com/adobe/aio-cli-plugin-app/blob/8.0.0/src/commands/app/add/event.js)_ + +## `aio app:add:extension` + +Add new extensions or a standalone application to the project + +``` +Add new extensions or a standalone application to the project + + +USAGE + $ aio app:add:extension + +OPTIONS + -e, --extension=extension Specify extensions to add, skips selection prompt + -v, --verbose Verbose output + -y, --yes Skip questions, and use all default values + --skip-install Skip npm installation after files are created + --version Show version + +ALIASES + $ aio app:add:ext + $ aio app:add:extensions ``` -_See code: [@adobe/aio-cli-plugin-app](https://github.com/adobe/aio-cli-plugin-app/blob/7.0.2/src/commands/app/add/event.js)_ +_See code: [@adobe/aio-cli-plugin-app](https://github.com/adobe/aio-cli-plugin-app/blob/8.0.0/src/commands/app/add/extension.js)_ ## `aio app:add:service` @@ -342,7 +362,7 @@ ALIASES $ aio app:add:services ``` -_See code: [@adobe/aio-cli-plugin-app](https://github.com/adobe/aio-cli-plugin-app/blob/7.0.2/src/commands/app/add/service.js)_ +_See code: [@adobe/aio-cli-plugin-app](https://github.com/adobe/aio-cli-plugin-app/blob/8.0.0/src/commands/app/add/service.js)_ ## `aio app:add:web-assets` @@ -356,13 +376,14 @@ USAGE $ aio app:add:web-assets OPTIONS - -v, --verbose Verbose output - -y, --yes Skip questions, and use all default values - --skip-install Skip npm installation after files are created - --version Show version + -e, --extension=extension Add web-assets to a specific extension + -v, --verbose Verbose output + -y, --yes Skip questions, and use all default values + --skip-install Skip npm installation after files are created + --version Show version ``` -_See code: [@adobe/aio-cli-plugin-app](https://github.com/adobe/aio-cli-plugin-app/blob/7.0.2/src/commands/app/add/web-assets.js)_ +_See code: [@adobe/aio-cli-plugin-app](https://github.com/adobe/aio-cli-plugin-app/blob/8.0.0/src/commands/app/add/web-assets.js)_ ## `aio app:build` @@ -378,20 +399,34 @@ USAGE $ aio app:build OPTIONS - -a, --action=action Build only a specific action, the flags can be specified multiple times - -v, --verbose Verbose output - --[no-]content-hash Enable content hashing in browser code (default: true) - --[no-]force-build Forces a build even if one already exists (default: true) - --skip-actions Skip build of actions - --skip-static Skip build of static files - --skip-web-assets Skip build of web assets - --version Show version + -a, --action=action Build only a specific action, the flags can be specified multiple times, this will set + --no-publish + + -e, --extension=extension Build only a specific extension point, the flags can be specified multiple times + + -v, --verbose Verbose output + + --[no-]actions [default: true] Build actions if any + + --[no-]content-hash [default: true] Enable content hashing in browser code + + --[no-]force-build [default: true] Force a build even if one already exists + + --skip-actions [deprecated] Please use --no-actions + + --skip-static [deprecated] Please use --no-web-assets + + --skip-web-assets [deprecated] Please use --no-web-assets + + --version Show version + + --[no-]web-assets [default: true] Build web-assets if any DESCRIPTION This will always force a rebuild unless --no-force-build is set. ``` -_See code: [@adobe/aio-cli-plugin-app](https://github.com/adobe/aio-cli-plugin-app/blob/7.0.2/src/commands/app/build.js)_ +_See code: [@adobe/aio-cli-plugin-app](https://github.com/adobe/aio-cli-plugin-app/blob/8.0.0/src/commands/app/build.js)_ ## `aio app:create [PATH]` @@ -413,7 +448,7 @@ OPTIONS --version Show version ``` -_See code: [@adobe/aio-cli-plugin-app](https://github.com/adobe/aio-cli-plugin-app/blob/7.0.2/src/commands/app/create.js)_ +_See code: [@adobe/aio-cli-plugin-app](https://github.com/adobe/aio-cli-plugin-app/blob/8.0.0/src/commands/app/create.js)_ ## `aio app:delete` @@ -430,29 +465,32 @@ OPTIONS --version Show version ``` -_See code: [@adobe/aio-cli-plugin-app](https://github.com/adobe/aio-cli-plugin-app/blob/7.0.2/src/commands/app/delete/index.js)_ +_See code: [@adobe/aio-cli-plugin-app](https://github.com/adobe/aio-cli-plugin-app/blob/8.0.0/src/commands/app/delete/index.js)_ ## `aio app:delete:action [ACTION-NAME]` -Delete an existing action +Delete existing actions ``` -Delete an existing action +Delete existing actions USAGE $ aio app:delete:action [ACTION-NAME] ARGUMENTS - ACTION-NAME Action name to delete, if not specified you will choose from a list of actions + ACTION-NAME Action `pkg/name` to delete, you can specify multiple actions via a comma separated list OPTIONS -v, --verbose Verbose output -y, --yes Skip questions, and use all default values --version Show version + +ALIASES + $ aio app:delete:actions ``` -_See code: [@adobe/aio-cli-plugin-app](https://github.com/adobe/aio-cli-plugin-app/blob/7.0.2/src/commands/app/delete/action.js)_ +_See code: [@adobe/aio-cli-plugin-app](https://github.com/adobe/aio-cli-plugin-app/blob/8.0.0/src/commands/app/delete/action.js)_ ## `aio app:delete:ci` @@ -471,29 +509,57 @@ OPTIONS --version Show version ``` -_See code: [@adobe/aio-cli-plugin-app](https://github.com/adobe/aio-cli-plugin-app/blob/7.0.2/src/commands/app/delete/ci.js)_ +_See code: [@adobe/aio-cli-plugin-app](https://github.com/adobe/aio-cli-plugin-app/blob/8.0.0/src/commands/app/delete/ci.js)_ -## `aio app:delete:event EVENT-ACTION-NAME` +## `aio app:delete:event [EVENT-ACTION-NAME]` -Delete an existing Adobe I/O Events action +Delete existing Adobe I/O Events actions ``` -Delete an existing Adobe I/O Events action +Delete existing Adobe I/O Events actions USAGE - $ aio app:delete:event EVENT-ACTION-NAME + $ aio app:delete:event [EVENT-ACTION-NAME] ARGUMENTS - EVENT-ACTION-NAME Action name to delete + EVENT-ACTION-NAME Action `pkg/name` to delete, you can specify multiple actions via a comma separated list OPTIONS -v, --verbose Verbose output -y, --yes Skip questions, and use all default values --version Show version + +ALIASES + $ aio app:delete:events +``` + +_See code: [@adobe/aio-cli-plugin-app](https://github.com/adobe/aio-cli-plugin-app/blob/8.0.0/src/commands/app/delete/event.js)_ + +## `aio app:delete:extension` + +Add new extensions or a standalone application to the project + +``` +Add new extensions or a standalone application to the project + + +USAGE + $ aio app:delete:extension + +OPTIONS + -e, --extension=extension Specify extensions to delete, skips selection prompt + -v, --verbose Verbose output + -y, --yes Skip questions, and use all default values + --skip-install Skip npm installation after files are created + --version Show version + +ALIASES + $ aio app:delete:ext + $ aio app:delete:extensions ``` -_See code: [@adobe/aio-cli-plugin-app](https://github.com/adobe/aio-cli-plugin-app/blob/7.0.2/src/commands/app/delete/event.js)_ +_See code: [@adobe/aio-cli-plugin-app](https://github.com/adobe/aio-cli-plugin-app/blob/8.0.0/src/commands/app/delete/extension.js)_ ## `aio app:delete:service` @@ -514,7 +580,7 @@ ALIASES $ aio app:delete:services ``` -_See code: [@adobe/aio-cli-plugin-app](https://github.com/adobe/aio-cli-plugin-app/blob/7.0.2/src/commands/app/delete/service.js)_ +_See code: [@adobe/aio-cli-plugin-app](https://github.com/adobe/aio-cli-plugin-app/blob/8.0.0/src/commands/app/delete/service.js)_ ## `aio app:delete:web-assets` @@ -533,7 +599,7 @@ OPTIONS --version Show version ``` -_See code: [@adobe/aio-cli-plugin-app](https://github.com/adobe/aio-cli-plugin-app/blob/7.0.2/src/commands/app/delete/web-assets.js)_ +_See code: [@adobe/aio-cli-plugin-app](https://github.com/adobe/aio-cli-plugin-app/blob/8.0.0/src/commands/app/delete/web-assets.js)_ ## `aio app:deploy` @@ -542,30 +608,54 @@ Build and deploy an Adobe I/O App ``` Build and deploy an Adobe I/O App -This will always force a rebuild unless --no-force-build is set. +This will always force a rebuild unless --no-force-build is set. USAGE $ aio app:deploy OPTIONS - -a, --action=action Deploy only a specific action, the flags can be specified multiple times - -v, --verbose Verbose output - --[no-]content-hash Enable content hashing in browser code (default: true) - --[no-]force-build Forces a build even if one already exists (default: true) - --open Open the default web browser after a successful deploy, only valid if your app has a front-end - --skip-actions Skip action build & deploy - --skip-build Skip build phase - --skip-deploy Skip deploy phase - --skip-static Skip build & deployment of static files - --skip-web-assets Skip build & deployment of web assets - --version Show version + -a, --action=action Deploy only a specific action, the flags can be specified multiple times, this will set + --no-publish + + -e, --extension=extension Deploy only a specific extension, the flags can be specified multiple times + + -v, --verbose Verbose output + + --[no-]actions [default: true] Deploy actions if any + + --[no-]build [default: true] Run the build phase before deployment + + --[no-]content-hash [default: true] Enable content hashing in browser code + + --[no-]force-build [default: true] Force a build even if one already exists + + --force-publish Force publish extension(s) to Exchange, delete previously published extension points + + --open Open the default web browser after a successful deploy, only valid if your app has a + front-end + + --[no-]publish [default: true] Publish extension(s) to Exchange + + --skip-actions [deprecated] Please use --no-actions + + --skip-build [deprecated] Please use --no-build + + --skip-deploy [deprecated] Please use 'aio app build' + + --skip-static [deprecated] Please use --no-web-assets + + --skip-web-assets [deprecated] Please use --no-web-assets + + --version Show version + + --[no-]web-assets [default: true] Deploy web-assets if any DESCRIPTION This will always force a rebuild unless --no-force-build is set. ``` -_See code: [@adobe/aio-cli-plugin-app](https://github.com/adobe/aio-cli-plugin-app/blob/7.0.2/src/commands/app/deploy.js)_ +_See code: [@adobe/aio-cli-plugin-app](https://github.com/adobe/aio-cli-plugin-app/blob/8.0.0/src/commands/app/deploy.js)_ ## `aio app:get-url [ACTION]` @@ -586,7 +676,7 @@ OPTIONS --version Show version ``` -_See code: [@adobe/aio-cli-plugin-app](https://github.com/adobe/aio-cli-plugin-app/blob/7.0.2/src/commands/app/get-url.js)_ +_See code: [@adobe/aio-cli-plugin-app](https://github.com/adobe/aio-cli-plugin-app/blob/8.0.0/src/commands/app/get-url.js)_ ## `aio app:info` @@ -596,7 +686,6 @@ Display settings/configuration in use by an Adobe I/O App Display settings/configuration in use by an Adobe I/O App - USAGE $ aio app:info @@ -607,11 +696,9 @@ OPTIONS -y, --yml Output yml --[no-]mask Hide known private info --version Show version - -DESCRIPTION ``` -_See code: [@adobe/aio-cli-plugin-app](https://github.com/adobe/aio-cli-plugin-app/blob/7.0.2/src/commands/app/info.js)_ +_See code: [@adobe/aio-cli-plugin-app](https://github.com/adobe/aio-cli-plugin-app/blob/8.0.0/src/commands/app/info.js)_ ## `aio app:init [PATH]` @@ -628,15 +715,88 @@ ARGUMENTS PATH [default: .] Path to the app directory OPTIONS - -i, --import=import Import an Adobe I/O Developer Console configuration file - -s, --skip-install Skip npm installation after files are created - -v, --verbose Verbose output - -y, --yes Skip questions, and use all default values - --[no-]login Login using your Adobe ID for interacting with Adobe I/O Developer Console - --version Show version + -i, --import=import Import an Adobe I/O Developer Console configuration file + -s, --skip-install Skip npm installation after files are created + -v, --verbose Verbose output + + -w, --workspace=workspace [default: Stage] Specify the Adobe Developer Console Workspace to init from, defaults to + Stage + + -y, --yes Skip questions, and use all default values + + --[no-]extensions Use --no-extensions to create a blank application that does not integrate with Exchange + + --[no-]login Login using your Adobe ID for interacting with Adobe I/O Developer Console + + --version Show version +``` + +_See code: [@adobe/aio-cli-plugin-app](https://github.com/adobe/aio-cli-plugin-app/blob/8.0.0/src/commands/app/init.js)_ + +## `aio app:list` + +List components for Adobe I/O App + +``` +List components for Adobe I/O App + +USAGE + $ aio app:list + +OPTIONS + -v, --verbose Verbose output + --version Show version +``` + +_See code: [@adobe/aio-cli-plugin-app](https://github.com/adobe/aio-cli-plugin-app/blob/8.0.0/src/commands/app/list/index.js)_ + +## `aio app:list:extension` + +List implemented extensions + +``` +List implemented extensions + + +USAGE + $ aio app:list:extension + +OPTIONS + -j, --json Output json + -v, --verbose Verbose output + -y, --yml Output yml + --version Show version + +ALIASES + $ aio app:list:ext + $ aio app:list:extensions +``` + +_See code: [@adobe/aio-cli-plugin-app](https://github.com/adobe/aio-cli-plugin-app/blob/8.0.0/src/commands/app/list/extension.js)_ + +## `aio app:list:extension-points` + +List all extension points for the selected org + +``` +List all extension points for the selected org + + +USAGE + $ aio app:list:extension-points + +OPTIONS + -j, --json Output json + -v, --verbose Verbose output + -y, --yml Output yml + --version Show version + +ALIASES + $ aio app:list:ext-points + $ aio app:list:extension-points ``` -_See code: [@adobe/aio-cli-plugin-app](https://github.com/adobe/aio-cli-plugin-app/blob/7.0.2/src/commands/app/init.js)_ +_See code: [@adobe/aio-cli-plugin-app](https://github.com/adobe/aio-cli-plugin-app/blob/8.0.0/src/commands/app/list/extension-points.js)_ ## `aio app:logs` @@ -660,7 +820,7 @@ OPTIONS --version Show version ``` -_See code: [@adobe/aio-cli-plugin-app](https://github.com/adobe/aio-cli-plugin-app/blob/7.0.2/src/commands/app/logs.js)_ +_See code: [@adobe/aio-cli-plugin-app](https://github.com/adobe/aio-cli-plugin-app/blob/8.0.0/src/commands/app/logs.js)_ ## `aio app:run` @@ -673,15 +833,17 @@ USAGE $ aio app:run OPTIONS - -v, --verbose Verbose output - --local run/debug actions locally ( requires Docker running ) - --open Open the default web browser after a successful run, only valid if your app has a front-end - --[no-]serve start frontend server (experimental) - --skip-actions skip actions, only run the ui server - --version Show version + -e, --extension=extension Run only a specific extension, this flag can only be specified once + -v, --verbose Verbose output + --[no-]actions [default: true] Run actions, defaults to true, to skip actions use --no-actions + --local Run/debug actions locally ( requires Docker running ) + --open Open the default web browser after a successful run, only valid if your app has a front-end + --[no-]serve [default: true] Start frontend server (experimental) + --skip-actions [deprecated] Please use --no-actions + --version Show version ``` -_See code: [@adobe/aio-cli-plugin-app](https://github.com/adobe/aio-cli-plugin-app/blob/7.0.2/src/commands/app/run.js)_ +_See code: [@adobe/aio-cli-plugin-app](https://github.com/adobe/aio-cli-plugin-app/blob/8.0.0/src/commands/app/run.js)_ ## `aio app:test` @@ -689,19 +851,33 @@ Run tests for an Adobe I/O App ``` Run tests for an Adobe I/O App +If no flags are specified, by default only unit-tests are run. + +For the --action flag, it tries a substring search on the 'package-name/action-name' pair for an action. +For the --extension flag, it tries a substring search on the 'extension-name' only. +If the extension has a hook called 'test' in its 'ext.config.yaml', the script specified will be run instead. + USAGE $ aio app:test OPTIONS - -e, --e2e runs e2e tests. - -u, --unit runs unit tests (default). - -v, --verbose Verbose output - --version Show version + -a, --action=action the action(s) to test + -e, --extension=extension the extension(s) to test + --all run both unit and e2e tests + --e2e run e2e tests + --unit run unit tests + +DESCRIPTION + If no flags are specified, by default only unit-tests are run. + + For the --action flag, it tries a substring search on the 'package-name/action-name' pair for an action. + For the --extension flag, it tries a substring search on the 'extension-name' only. + If the extension has a hook called 'test' in its 'ext.config.yaml', the script specified will be run instead. ``` -_See code: [@adobe/aio-cli-plugin-app](https://github.com/adobe/aio-cli-plugin-app/blob/7.0.2/src/commands/app/test.js)_ +_See code: [@adobe/aio-cli-plugin-app](https://github.com/adobe/aio-cli-plugin-app/blob/8.0.0/src/commands/app/test.js)_ ## `aio app:undeploy` @@ -715,14 +891,19 @@ USAGE $ aio app:undeploy OPTIONS - -v, --verbose Verbose output - --skip-actions Skip undeployment of actions - --skip-static Skip undeployment of static files - --skip-web-assets Skip undeployment of web assets - --version Show version + -e, --extension=extension Undeploy only a specific extension, the flags can be specified multiple times + -v, --verbose Verbose output + --[no-]actions [default: true] Undeploy actions if any + --force-unpublish Force unpublish extension(s) from Exchange, will delete all extension points + --skip-actions [deprecated] Please use --no-actions + --skip-static [deprecated] Please use --no-web-assets + --skip-web-assets [deprecated] Please use --no-web-assets + --[no-]unpublish [default: true] Unpublish selected extension(s) from Exchange + --version Show version + --[no-]web-assets [default: true] Undeploy web-assets if any ``` -_See code: [@adobe/aio-cli-plugin-app](https://github.com/adobe/aio-cli-plugin-app/blob/7.0.2/src/commands/app/undeploy.js)_ +_See code: [@adobe/aio-cli-plugin-app](https://github.com/adobe/aio-cli-plugin-app/blob/8.0.0/src/commands/app/undeploy.js)_ ## `aio app:use [CONFIG_FILE_PATH]` @@ -750,9 +931,11 @@ OPTIONS -v, --verbose Verbose output - -w, --workspace-name=workspace-name Specify the Adobe Developer Console Workspace name to import the configuration + -w, --workspace=workspace Specify the Adobe Developer Console Workspace name to import the configuration from + -w, --workspace-name=workspace-name [DEPRECATED]: please use --workspace instead + --confirm-service-sync Skip the Service sync prompt and overwrite Service subscriptions in the new Workspace with current subscriptions @@ -760,7 +943,7 @@ OPTIONS configuration file --no-input Skip user prompts by setting --no-service-sync and --merge. Requires one of - config_file_path or --global or --workspace-name + config_file_path or --global or --workspace --no-service-sync Skip the Service sync prompt and do not attach current Service subscriptions to the new Workspace @@ -770,9 +953,6 @@ OPTIONS --version Show version - --workspace Prompt for selection of a Workspace in the same Project, and import the - configuration for this Workspace - DESCRIPTION If the optional configuration file is not set, this command will retrieve the console org, project, and workspace settings from the global config. @@ -783,7 +963,7 @@ DESCRIPTION page in https://console.adobe.io ``` -_See code: [@adobe/aio-cli-plugin-app](https://github.com/adobe/aio-cli-plugin-app/blob/7.0.2/src/commands/app/use.js)_ +_See code: [@adobe/aio-cli-plugin-app](https://github.com/adobe/aio-cli-plugin-app/blob/8.0.0/src/commands/app/use.js)_ ## `aio auth` @@ -1584,7 +1764,7 @@ ALIASES $ aio plugins:discover ``` -_See code: [src/commands/discover.js](https://github.com/adobe/aio-cli/blob/7.1.0/src/commands/discover.js)_ +_See code: [src/commands/discover.js](https://github.com/adobe/aio-cli/blob/8.0.0/src/commands/discover.js)_ ## `aio event` @@ -1602,6 +1782,8 @@ OPTIONS --version Show version ``` +_See code: [@adobe/aio-cli-plugin-events](https://github.com/adobe/aio-cli-plugin-events/blob/v1.1.5/src/commands/event/index.js)_ + ## `aio event:eventmetadata` Manage your Adobe I/O Events Providers' Event Metadata @@ -1618,6 +1800,8 @@ OPTIONS --version Show version ``` +_See code: [@adobe/aio-cli-plugin-events](https://github.com/adobe/aio-cli-plugin-events/blob/v1.1.5/src/commands/event/eventmetadata/index.js)_ + ## `aio event:eventmetadata:create PROVIDERID` Create an Event Metadata for a Provider @@ -1639,6 +1823,8 @@ OPTIONS --version Show version ``` +_See code: [@adobe/aio-cli-plugin-events](https://github.com/adobe/aio-cli-plugin-events/blob/v1.1.5/src/commands/event/eventmetadata/create.js)_ + ## `aio event:eventmetadata:delete PROVIDERID [EVENTCODE]` Delete Event Metadata for a Provider @@ -1659,6 +1845,8 @@ OPTIONS --version Show version ``` +_See code: [@adobe/aio-cli-plugin-events](https://github.com/adobe/aio-cli-plugin-events/blob/v1.1.5/src/commands/event/eventmetadata/delete.js)_ + ## `aio event:eventmetadata:get PROVIDERID EVENTCODE` Get details of an Event Code of a Provider @@ -1681,6 +1869,8 @@ OPTIONS --version Show version ``` +_See code: [@adobe/aio-cli-plugin-events](https://github.com/adobe/aio-cli-plugin-events/blob/v1.1.5/src/commands/event/eventmetadata/get.js)_ + ## `aio event:eventmetadata:list PROVIDERID` List all Event Metadata for a Provider @@ -1705,6 +1895,8 @@ ALIASES $ aio event:eventmetadata:ls ``` +_See code: [@adobe/aio-cli-plugin-events](https://github.com/adobe/aio-cli-plugin-events/blob/v1.1.5/src/commands/event/eventmetadata/list.js)_ + ## `aio event:eventmetadata:update PROVIDERID EVENTCODE` Update an Event Metadata for a Provider @@ -1727,6 +1919,8 @@ OPTIONS --version Show version ``` +_See code: [@adobe/aio-cli-plugin-events](https://github.com/adobe/aio-cli-plugin-events/blob/v1.1.5/src/commands/event/eventmetadata/update.js)_ + ## `aio event:provider` Manage your Adobe I/O Events Providers @@ -1743,6 +1937,8 @@ OPTIONS --version Show version ``` +_See code: [@adobe/aio-cli-plugin-events](https://github.com/adobe/aio-cli-plugin-events/blob/v1.1.5/src/commands/event/provider/index.js)_ + ## `aio event:provider:create` Create a new Provider @@ -1761,6 +1957,8 @@ OPTIONS --version Show version ``` +_See code: [@adobe/aio-cli-plugin-events](https://github.com/adobe/aio-cli-plugin-events/blob/v1.1.5/src/commands/event/provider/create.js)_ + ## `aio event:provider:delete PROVIDERID` Delete Provider by id @@ -1780,6 +1978,8 @@ OPTIONS --version Show version ``` +_See code: [@adobe/aio-cli-plugin-events](https://github.com/adobe/aio-cli-plugin-events/blob/v1.1.5/src/commands/event/provider/delete.js)_ + ## `aio event:provider:get PROVIDERID` Get details of Provider by id @@ -1802,6 +2002,8 @@ OPTIONS --version Show version ``` +_See code: [@adobe/aio-cli-plugin-events](https://github.com/adobe/aio-cli-plugin-events/blob/v1.1.5/src/commands/event/provider/get.js)_ + ## `aio event:provider:list` Get list of all Providers for the Organization @@ -1823,6 +2025,8 @@ ALIASES $ aio event:provider:ls ``` +_See code: [@adobe/aio-cli-plugin-events](https://github.com/adobe/aio-cli-plugin-events/blob/v1.1.5/src/commands/event/provider/list.js)_ + ## `aio event:provider:update PROVIDERID` Update an existing Provider @@ -1844,6 +2048,8 @@ OPTIONS --version Show version ``` +_See code: [@adobe/aio-cli-plugin-events](https://github.com/adobe/aio-cli-plugin-events/blob/v1.1.5/src/commands/event/provider/update.js)_ + ## `aio event:registration` Manage your Adobe I/O Events Registrations @@ -1860,6 +2066,8 @@ OPTIONS --version Show version ``` +_See code: [@adobe/aio-cli-plugin-events](https://github.com/adobe/aio-cli-plugin-events/blob/v1.1.5/src/commands/event/registration/index.js)_ + ## `aio event:registration:create BODYJSONFILE` Create a new Event Registration in your Workspace @@ -1896,6 +2104,8 @@ ALIASES $ aio event:reg:create ``` +_See code: [@adobe/aio-cli-plugin-events](https://github.com/adobe/aio-cli-plugin-events/blob/v1.1.5/src/commands/event/registration/create.js)_ + ## `aio event:registration:delete REGISTRATIONID` Delete Registration @@ -1918,6 +2128,8 @@ ALIASES $ aio event:reg:delete ``` +_See code: [@adobe/aio-cli-plugin-events](https://github.com/adobe/aio-cli-plugin-events/blob/v1.1.5/src/commands/event/registration/delete.js)_ + ## `aio event:registration:get REGISTRATIONID` Get an Event Registration in your Workspace @@ -1942,6 +2154,8 @@ ALIASES $ aio event:reg:get ``` +_See code: [@adobe/aio-cli-plugin-events](https://github.com/adobe/aio-cli-plugin-events/blob/v1.1.5/src/commands/event/registration/get.js)_ + ## `aio event:registration:list` List your Event Registrations in your Workspace @@ -1965,6 +2179,8 @@ ALIASES $ aio event:reg:ls ``` +_See code: [@adobe/aio-cli-plugin-events](https://github.com/adobe/aio-cli-plugin-events/blob/v1.1.5/src/commands/event/registration/list.js)_ + ## `aio help [COMMAND]` display help for aio @@ -2018,7 +2234,7 @@ EXAMPLE $ aio plugins ``` -_See code: [@oclif/plugin-plugins](https://github.com/oclif/plugin-plugins/blob/v1.10.0/src/commands/plugins/index.ts)_ +_See code: [@oclif/plugin-plugins](https://github.com/oclif/plugin-plugins/blob/v1.10.1/src/commands/plugins/index.ts)_ ## `aio plugins:inspect PLUGIN...` @@ -2041,7 +2257,7 @@ EXAMPLE $ aio plugins:inspect myplugin ``` -_See code: [@oclif/plugin-plugins](https://github.com/oclif/plugin-plugins/blob/v1.10.0/src/commands/plugins/inspect.ts)_ +_See code: [@oclif/plugin-plugins](https://github.com/oclif/plugin-plugins/blob/v1.10.1/src/commands/plugins/inspect.ts)_ ## `aio plugins:install PLUGIN...` @@ -2085,7 +2301,7 @@ EXAMPLES $ aio plugins:install someuser/someplugin ``` -_See code: [@oclif/plugin-plugins](https://github.com/oclif/plugin-plugins/blob/v1.10.0/src/commands/plugins/install.ts)_ +_See code: [@oclif/plugin-plugins](https://github.com/oclif/plugin-plugins/blob/v1.10.1/src/commands/plugins/install.ts)_ ## `aio plugins:link PLUGIN` @@ -2118,7 +2334,7 @@ EXAMPLE $ aio plugins:link myplugin ``` -_See code: [@oclif/plugin-plugins](https://github.com/oclif/plugin-plugins/blob/v1.10.0/src/commands/plugins/link.ts)_ +_See code: [@oclif/plugin-plugins](https://github.com/oclif/plugin-plugins/blob/v1.10.1/src/commands/plugins/link.ts)_ ## `aio plugins:uninstall PLUGIN...` @@ -2142,7 +2358,7 @@ ALIASES $ aio plugins:remove ``` -_See code: [@oclif/plugin-plugins](https://github.com/oclif/plugin-plugins/blob/v1.10.0/src/commands/plugins/uninstall.ts)_ +_See code: [@oclif/plugin-plugins](https://github.com/oclif/plugin-plugins/blob/v1.10.1/src/commands/plugins/uninstall.ts)_ ## `aio plugins:update` @@ -2159,7 +2375,7 @@ OPTIONS -v, --verbose ``` -_See code: [@oclif/plugin-plugins](https://github.com/oclif/plugin-plugins/blob/v1.10.0/src/commands/plugins/update.ts)_ +_See code: [@oclif/plugin-plugins](https://github.com/oclif/plugin-plugins/blob/v1.10.1/src/commands/plugins/update.ts)_ ## `aio report` @@ -2195,7 +2411,7 @@ OPTIONS -v, --verbose Verbose output ``` -_See code: [src/commands/rollback.js](https://github.com/adobe/aio-cli/blob/7.1.0/src/commands/rollback.js)_ +_See code: [src/commands/rollback.js](https://github.com/adobe/aio-cli/blob/8.0.0/src/commands/rollback.js)_ ## `aio runtime` @@ -4076,3590 +4292,5 @@ DESCRIPTION - update user-installed plugins that are not core ``` -_See code: [src/commands/update.js](https://github.com/adobe/aio-cli/blob/7.1.0/src/commands/update.js)_ - -* [`aio app`](#aio-app) -* [`aio app:add`](#aio-appadd) -* [`aio app:add:action`](#aio-appaddaction) -* [`aio app:add:ci`](#aio-appaddci) -* [`aio app:add:event`](#aio-appaddevent) -* [`aio app:add:service`](#aio-appaddservice) -* [`aio app:add:web-assets`](#aio-appaddweb-assets) -* [`aio app:build`](#aio-appbuild) -* [`aio app:create [PATH]`](#aio-appcreate-path) -* [`aio app:delete`](#aio-appdelete) -* [`aio app:delete:action [ACTION-NAME]`](#aio-appdeleteaction-action-name) -* [`aio app:delete:ci`](#aio-appdeleteci) -* [`aio app:delete:event EVENT-ACTION-NAME`](#aio-appdeleteevent-event-action-name) -* [`aio app:delete:service`](#aio-appdeleteservice) -* [`aio app:delete:web-assets`](#aio-appdeleteweb-assets) -* [`aio app:deploy`](#aio-appdeploy) -* [`aio app:get-url [ACTION]`](#aio-appget-url-action) -* [`aio app:info`](#aio-appinfo) -* [`aio app:init [PATH]`](#aio-appinit-path) -* [`aio app:logs`](#aio-applogs) -* [`aio app:run`](#aio-apprun) -* [`aio app:test`](#aio-apptest) -* [`aio app:undeploy`](#aio-appundeploy) -* [`aio app:use [CONFIG_FILE_PATH]`](#aio-appuse-config_file_path) -* [`aio auth`](#aio-auth) -* [`aio auth:ctx`](#aio-authctx) -* [`aio auth:login`](#aio-authlogin) -* [`aio auth:logout`](#aio-authlogout) -* [`aio autocomplete [SHELL]`](#aio-autocomplete-shell) -* [`aio certificate`](#aio-certificate) -* [`aio certificate:generate`](#aio-certificategenerate) -* [`aio certificate:verify FILE`](#aio-certificateverify-file) -* [`aio config`](#aio-config) -* [`aio config:clear`](#aio-configclear) -* [`aio config:delete KEYS...`](#aio-configdelete-keys) -* [`aio config:edit`](#aio-configedit) -* [`aio config:get KEY`](#aio-configget-key) -* [`aio config:list`](#aio-configlist) -* [`aio config set key 'a value' # set key to 'a value'`](#aio-config-set-key-a-value--------set-key-to-a-value) -* [`aio console`](#aio-console) -* [`aio console:org`](#aio-consoleorg) -* [`aio console:org:list`](#aio-consoleorglist) -* [`aio console:org:select [ORGCODE]`](#aio-consoleorgselect-orgcode) -* [`aio console:project`](#aio-consoleproject) -* [`aio console:project:list`](#aio-consoleprojectlist) -* [`aio console:project:select [PROJECTIDORNAME]`](#aio-consoleprojectselect-projectidorname) -* [`aio console:where`](#aio-consolewhere) -* [`aio console:workspace`](#aio-consoleworkspace) -* [`aio console:workspace:download [DESTINATION]`](#aio-consoleworkspacedownload-destination) -* [`aio console:workspace:list`](#aio-consoleworkspacelist) -* [`aio console:workspace:select [WORKSPACEIDORNAME]`](#aio-consoleworkspaceselect-workspaceidorname) -* [`aio discover`](#aio-discover) -* [`aio event`](#aio-event) -* [`aio event:eventmetadata`](#aio-eventeventmetadata) -* [`aio event:eventmetadata:create PROVIDERID`](#aio-eventeventmetadatacreate-providerid) -* [`aio event:eventmetadata:delete PROVIDERID [EVENTCODE]`](#aio-eventeventmetadatadelete-providerid-eventcode) -* [`aio event:eventmetadata:get PROVIDERID EVENTCODE`](#aio-eventeventmetadataget-providerid-eventcode) -* [`aio event:eventmetadata:list PROVIDERID`](#aio-eventeventmetadatalist-providerid) -* [`aio event:eventmetadata:update PROVIDERID EVENTCODE`](#aio-eventeventmetadataupdate-providerid-eventcode) -* [`aio event:provider`](#aio-eventprovider) -* [`aio event:provider:create`](#aio-eventprovidercreate) -* [`aio event:provider:delete PROVIDERID`](#aio-eventproviderdelete-providerid) -* [`aio event:provider:get PROVIDERID`](#aio-eventproviderget-providerid) -* [`aio event:provider:list`](#aio-eventproviderlist) -* [`aio event:provider:update PROVIDERID`](#aio-eventproviderupdate-providerid) -* [`aio event:registration`](#aio-eventregistration) -* [`aio event:registration:create BODYJSONFILE`](#aio-eventregistrationcreate-bodyjsonfile) -* [`aio event:registration:delete REGISTRATIONID`](#aio-eventregistrationdelete-registrationid) -* [`aio event:registration:get REGISTRATIONID`](#aio-eventregistrationget-registrationid) -* [`aio event:registration:list`](#aio-eventregistrationlist) -* [`aio help [COMMAND]`](#aio-help-command) -* [`aio info`](#aio-info) -* [`aio plugins`](#aio-plugins) -* [`aio plugins:inspect PLUGIN...`](#aio-pluginsinspect-plugin) -* [`aio plugins:install PLUGIN...`](#aio-pluginsinstall-plugin) -* [`aio plugins:link PLUGIN`](#aio-pluginslink-plugin) -* [`aio plugins:uninstall PLUGIN...`](#aio-pluginsuninstall-plugin) -* [`aio plugins:update`](#aio-pluginsupdate) -* [`aio report`](#aio-report) -* [`aio rollback`](#aio-rollback) -* [`aio runtime`](#aio-runtime) -* [`aio runtime:action`](#aio-runtimeaction) -* [`aio runtime:action:create ACTIONNAME [ACTIONPATH]`](#aio-runtimeactioncreate-actionname-actionpath) -* [`aio runtime:action:delete ACTIONNAME`](#aio-runtimeactiondelete-actionname) -* [`aio runtime:action:get ACTIONNAME`](#aio-runtimeactionget-actionname) -* [`aio runtime:action:invoke ACTIONNAME`](#aio-runtimeactioninvoke-actionname) -* [`aio runtime:action:list [PACKAGENAME]`](#aio-runtimeactionlist-packagename) -* [`aio runtime:action:update ACTIONNAME [ACTIONPATH]`](#aio-runtimeactionupdate-actionname-actionpath) -* [`aio runtime:activation`](#aio-runtimeactivation) -* [`aio runtime:activation:get [ACTIVATIONID]`](#aio-runtimeactivationget-activationid) -* [`aio runtime:activation:list [ACTIVATION_NAME]`](#aio-runtimeactivationlist-activation_name) -* [`aio runtime:activation:logs [ACTIVATIONID]`](#aio-runtimeactivationlogs-activationid) -* [`aio runtime:activation:result [ACTIVATIONID]`](#aio-runtimeactivationresult-activationid) -* [`aio runtime:deploy`](#aio-runtimedeploy) -* [`aio runtime:deploy:export`](#aio-runtimedeployexport) -* [`aio runtime:deploy:report`](#aio-runtimedeployreport) -* [`aio runtime:deploy:sync`](#aio-runtimedeploysync) -* [`aio runtime:deploy:undeploy`](#aio-runtimedeployundeploy) -* [`aio runtime:deploy:version`](#aio-runtimedeployversion) -* [`aio runtime:namespace`](#aio-runtimenamespace) -* [`aio runtime:namespace:get`](#aio-runtimenamespaceget) -* [`aio runtime:namespace:list`](#aio-runtimenamespacelist) -* [`aio runtime:package`](#aio-runtimepackage) -* [`aio runtime:package:bind PACKAGENAME BINDPACKAGENAME`](#aio-runtimepackagebind-packagename-bindpackagename) -* [`aio runtime:package:create PACKAGENAME`](#aio-runtimepackagecreate-packagename) -* [`aio runtime:package:delete PACKAGENAME`](#aio-runtimepackagedelete-packagename) -* [`aio runtime:package:get PACKAGENAME`](#aio-runtimepackageget-packagename) -* [`aio runtime:package:list [NAMESPACE]`](#aio-runtimepackagelist-namespace) -* [`aio runtime:package:update PACKAGENAME`](#aio-runtimepackageupdate-packagename) -* [`aio runtime:property`](#aio-runtimeproperty) -* [`aio runtime:property:get`](#aio-runtimepropertyget) -* [`aio runtime:property:set`](#aio-runtimepropertyset) -* [`aio runtime:property:unset`](#aio-runtimepropertyunset) -* [`aio runtime:route`](#aio-runtimeroute) -* [`aio runtime:route:create [BASEPATH] [RELPATH] [APIVERB] [ACTION]`](#aio-runtimeroutecreate-basepath-relpath-apiverb-action) -* [`aio runtime:route:delete BASEPATHORAPINAME [RELPATH] [APIVERB]`](#aio-runtimeroutedelete-basepathorapiname-relpath-apiverb) -* [`aio runtime:route:get BASEPATHORAPINAME`](#aio-runtimerouteget-basepathorapiname) -* [`aio runtime:route:list [BASEPATH] [RELPATH] [APIVERB]`](#aio-runtimeroutelist-basepath-relpath-apiverb) -* [`aio runtime:rule`](#aio-runtimerule) -* [`aio runtime:rule:create NAME TRIGGER ACTION`](#aio-runtimerulecreate-name-trigger-action) -* [`aio runtime:rule:delete NAME`](#aio-runtimeruledelete-name) -* [`aio runtime:rule:disable NAME`](#aio-runtimeruledisable-name) -* [`aio runtime:rule:enable NAME`](#aio-runtimeruleenable-name) -* [`aio runtime:rule:get NAME`](#aio-runtimeruleget-name) -* [`aio runtime:rule:list`](#aio-runtimerulelist) -* [`aio runtime:rule:status NAME`](#aio-runtimerulestatus-name) -* [`aio runtime:rule:update NAME TRIGGER ACTION`](#aio-runtimeruleupdate-name-trigger-action) -* [`aio runtime:trigger`](#aio-runtimetrigger) -* [`aio runtime:trigger:create TRIGGERNAME`](#aio-runtimetriggercreate-triggername) -* [`aio runtime:trigger:delete TRIGGERPATH`](#aio-runtimetriggerdelete-triggerpath) -* [`aio runtime:trigger:fire TRIGGERNAME`](#aio-runtimetriggerfire-triggername) -* [`aio runtime:trigger:get TRIGGERPATH`](#aio-runtimetriggerget-triggerpath) -* [`aio runtime:trigger:list`](#aio-runtimetriggerlist) -* [`aio runtime:trigger:update TRIGGERNAME`](#aio-runtimetriggerupdate-triggername) -* [`aio update`](#aio-update) - -## `aio app` - -Create, run, test, and deploy Adobe I/O Apps - -``` -USAGE - $ aio app - -OPTIONS - -v, --verbose Verbose output - --version Show version -``` - -_See code: [@adobe/aio-cli-plugin-app](https://github.com/adobe/aio-cli-plugin-app/blob/7.0.0/src/commands/app/index.js)_ - -## `aio app:add` - -Add a new component to an existing Adobe I/O App - -``` -USAGE - $ aio app:add - -OPTIONS - -v, --verbose Verbose output - --version Show version -``` - -_See code: [@adobe/aio-cli-plugin-app](https://github.com/adobe/aio-cli-plugin-app/blob/7.0.0/src/commands/app/add/index.js)_ - -## `aio app:add:action` - -Add a new action - -``` -USAGE - $ aio app:add:action - -OPTIONS - -v, --verbose Verbose output - -y, --yes Skip questions, and use all default values - --skip-install Skip npm installation after files are created - --version Show version -``` - -_See code: [@adobe/aio-cli-plugin-app](https://github.com/adobe/aio-cli-plugin-app/blob/7.0.0/src/commands/app/add/action.js)_ - -## `aio app:add:ci` - -Add CI files - -``` -USAGE - $ aio app:add:ci - -OPTIONS - -v, --verbose Verbose output - --version Show version -``` - -_See code: [@adobe/aio-cli-plugin-app](https://github.com/adobe/aio-cli-plugin-app/blob/7.0.0/src/commands/app/add/ci.js)_ - -## `aio app:add:event` - -Add a new Adobe I/O Events action - -``` -USAGE - $ aio app:add:event - -OPTIONS - -v, --verbose Verbose output - -y, --yes Skip questions, and use all default values - --skip-install Skip npm installation after files are created - --version Show version -``` - -_See code: [@adobe/aio-cli-plugin-app](https://github.com/adobe/aio-cli-plugin-app/blob/7.0.0/src/commands/app/add/event.js)_ - -## `aio app:add:service` - -Subscribe to Services in the current Workspace - -``` -USAGE - $ aio app:add:service - -OPTIONS - -v, --verbose Verbose output - --version Show version - -ALIASES - $ aio app:add:services -``` - -_See code: [@adobe/aio-cli-plugin-app](https://github.com/adobe/aio-cli-plugin-app/blob/7.0.0/src/commands/app/add/service.js)_ - -## `aio app:add:web-assets` - -Add web assets support - -``` -USAGE - $ aio app:add:web-assets - -OPTIONS - -v, --verbose Verbose output - -y, --yes Skip questions, and use all default values - --skip-install Skip npm installation after files are created - --version Show version -``` - -_See code: [@adobe/aio-cli-plugin-app](https://github.com/adobe/aio-cli-plugin-app/blob/7.0.0/src/commands/app/add/web-assets.js)_ - -## `aio app:build` - -Build an Adobe I/O App - -``` -USAGE - $ aio app:build - -OPTIONS - -a, --action=action Build only a specific action, the flags can be specified multiple times - -v, --verbose Verbose output - --[no-]content-hash Enable content hashing in browser code (default: true) - --[no-]force-build Forces a build even if one already exists (default: true) - --skip-actions Skip build of actions - --skip-static Skip build of static files - --skip-web-assets Skip build of web assets - --version Show version - -DESCRIPTION - This will always force a rebuild unless --no-force-build is set. -``` - -_See code: [@adobe/aio-cli-plugin-app](https://github.com/adobe/aio-cli-plugin-app/blob/7.0.0/src/commands/app/build.js)_ - -## `aio app:create [PATH]` - -Create a new Adobe I/O App with default parameters - -``` -USAGE - $ aio app:create [PATH] - -ARGUMENTS - PATH [default: .] Path to the app directory - -OPTIONS - -i, --import=import Import an Adobe I/O Developer Console configuration file - -v, --verbose Verbose output - --version Show version -``` - -_See code: [@adobe/aio-cli-plugin-app](https://github.com/adobe/aio-cli-plugin-app/blob/7.0.0/src/commands/app/create.js)_ - -## `aio app:delete` - -Delete a component from an existing Adobe I/O App - -``` -USAGE - $ aio app:delete - -OPTIONS - -v, --verbose Verbose output - --version Show version -``` - -_See code: [@adobe/aio-cli-plugin-app](https://github.com/adobe/aio-cli-plugin-app/blob/7.0.0/src/commands/app/delete/index.js)_ - -## `aio app:delete:action [ACTION-NAME]` - -Delete an existing action - -``` -USAGE - $ aio app:delete:action [ACTION-NAME] - -ARGUMENTS - ACTION-NAME Action name to delete, if not specified you will choose from a list of actions - -OPTIONS - -v, --verbose Verbose output - -y, --yes Skip questions, and use all default values - --version Show version -``` - -_See code: [@adobe/aio-cli-plugin-app](https://github.com/adobe/aio-cli-plugin-app/blob/7.0.0/src/commands/app/delete/action.js)_ - -## `aio app:delete:ci` - -Delete existing CI files - -``` -USAGE - $ aio app:delete:ci - -OPTIONS - -v, --verbose Verbose output - -y, --yes Skip questions, and use all default values - --version Show version -``` - -_See code: [@adobe/aio-cli-plugin-app](https://github.com/adobe/aio-cli-plugin-app/blob/7.0.0/src/commands/app/delete/ci.js)_ - -## `aio app:delete:event EVENT-ACTION-NAME` - -Delete an existing Adobe I/O Events action - -``` -USAGE - $ aio app:delete:event EVENT-ACTION-NAME - -ARGUMENTS - EVENT-ACTION-NAME Action name to delete - -OPTIONS - -v, --verbose Verbose output - -y, --yes Skip questions, and use all default values - --version Show version -``` - -_See code: [@adobe/aio-cli-plugin-app](https://github.com/adobe/aio-cli-plugin-app/blob/7.0.0/src/commands/app/delete/event.js)_ - -## `aio app:delete:service` - -Delete Services in the current Workspace - -``` -USAGE - $ aio app:delete:service - -OPTIONS - -v, --verbose Verbose output - --version Show version - -ALIASES - $ aio app:delete:services -``` - -_See code: [@adobe/aio-cli-plugin-app](https://github.com/adobe/aio-cli-plugin-app/blob/7.0.0/src/commands/app/delete/service.js)_ - -## `aio app:delete:web-assets` - -Delete existing web assets - -``` -USAGE - $ aio app:delete:web-assets - -OPTIONS - -v, --verbose Verbose output - -y, --yes Skip questions, and use all default values - --version Show version -``` - -_See code: [@adobe/aio-cli-plugin-app](https://github.com/adobe/aio-cli-plugin-app/blob/7.0.0/src/commands/app/delete/web-assets.js)_ - -## `aio app:deploy` - -Build and deploy an Adobe I/O App - -``` -USAGE - $ aio app:deploy - -OPTIONS - -a, --action=action Deploy only a specific action, the flags can be specified multiple times - -v, --verbose Verbose output - --[no-]content-hash Enable content hashing in browser code (default: true) - --[no-]force-build Forces a build even if one already exists (default: true) - --open Open the default web browser after a successful deploy, only valid if your app has a front-end - --skip-actions Skip action build & deploy - --skip-build Skip build phase - --skip-deploy Skip deploy phase - --skip-static Skip build & deployment of static files - --skip-web-assets Skip build & deployment of web assets - --version Show version - -DESCRIPTION - This will always force a rebuild unless --no-force-build is set. -``` - -_See code: [@adobe/aio-cli-plugin-app](https://github.com/adobe/aio-cli-plugin-app/blob/7.0.0/src/commands/app/deploy.js)_ - -## `aio app:get-url [ACTION]` - -Get action URLs - -``` -USAGE - $ aio app:get-url [ACTION] - -OPTIONS - -h, --hson Output human readable json - -j, --json Output json - -v, --verbose Verbose output - -y, --yml Output yml - --cdn Display CDN based action URLs - --version Show version -``` - -_See code: [@adobe/aio-cli-plugin-app](https://github.com/adobe/aio-cli-plugin-app/blob/7.0.0/src/commands/app/get-url.js)_ - -## `aio app:info` - -Display settings/configuration in use by an Adobe I/O App - -``` -USAGE - $ aio app:info - -OPTIONS - -h, --hson Output human readable json - -j, --json Output json - -v, --verbose Verbose output - -y, --yml Output yml - --[no-]mask Hide known private info - --version Show version - -DESCRIPTION -``` - -_See code: [@adobe/aio-cli-plugin-app](https://github.com/adobe/aio-cli-plugin-app/blob/7.0.0/src/commands/app/info.js)_ - -## `aio app:init [PATH]` - -Create a new Adobe I/O App - -``` -USAGE - $ aio app:init [PATH] - -ARGUMENTS - PATH [default: .] Path to the app directory - -OPTIONS - -i, --import=import Import an Adobe I/O Developer Console configuration file - -s, --skip-install Skip npm installation after files are created - -v, --verbose Verbose output - -y, --yes Skip questions, and use all default values - --[no-]login Login using your Adobe ID for interacting with Adobe I/O Developer Console - --version Show version -``` - -_See code: [@adobe/aio-cli-plugin-app](https://github.com/adobe/aio-cli-plugin-app/blob/7.0.0/src/commands/app/init.js)_ - -## `aio app:logs` - -Fetch logs for an Adobe I/O App - -``` -USAGE - $ aio app:logs - -OPTIONS - -a, --action=action Fetch logs for a specific action - -l, --limit=limit [default: 1] Limit number of activations to fetch logs from ( 1-50 ) - -o, --poll Fetch logs continuously - -r, --strip strip timestamp information and output first line only - -t, --tail Fetch logs continuously - -v, --verbose Verbose output - -w, --watch Fetch logs continuously - --version Show version -``` - -_See code: [@adobe/aio-cli-plugin-app](https://github.com/adobe/aio-cli-plugin-app/blob/7.0.0/src/commands/app/logs.js)_ - -## `aio app:run` - -Run an Adobe I/O App - -``` -USAGE - $ aio app:run - -OPTIONS - -v, --verbose Verbose output - --local run/debug actions locally ( requires Docker running ) - --open Open the default web browser after a successful run, only valid if your app has a front-end - --[no-]serve start frontend server (experimental) - --skip-actions skip actions, only run the ui server - --version Show version -``` - -_See code: [@adobe/aio-cli-plugin-app](https://github.com/adobe/aio-cli-plugin-app/blob/7.0.0/src/commands/app/run.js)_ - -## `aio app:test` - -Run tests for an Adobe I/O App - -``` -USAGE - $ aio app:test - -OPTIONS - -e, --e2e runs e2e tests. - -u, --unit runs unit tests (default). - -v, --verbose Verbose output - --version Show version -``` - -_See code: [@adobe/aio-cli-plugin-app](https://github.com/adobe/aio-cli-plugin-app/blob/7.0.0/src/commands/app/test.js)_ - -## `aio app:undeploy` - -Undeploys an Adobe I/O App - -``` -USAGE - $ aio app:undeploy - -OPTIONS - -v, --verbose Verbose output - --skip-actions Skip undeployment of actions - --skip-static Skip undeployment of static files - --skip-web-assets Skip undeployment of web assets - --version Show version -``` - -_See code: [@adobe/aio-cli-plugin-app](https://github.com/adobe/aio-cli-plugin-app/blob/7.0.0/src/commands/app/undeploy.js)_ - -## `aio app:use [CONFIG_FILE_PATH]` - -Import an Adobe Developer Console configuration file - -``` -USAGE - $ aio app:use [CONFIG_FILE_PATH] - -ARGUMENTS - CONFIG_FILE_PATH path to an Adobe I/O Developer Console configuration file - -OPTIONS - -g, --global Use the global Adobe Developer Console Org / Project / Workspace configuration, - which can be set via `aio console` commands - - -v, --verbose Verbose output - - -w, --workspace-name=workspace-name Specify the Adobe Developer Console Workspace name to import the configuration - from - - --confirm-service-sync Skip the Service sync prompt and overwrite Service subscriptions in the new - Workspace with current subscriptions - - --merge Merge any .aio and .env files during import of the Adobe Developer Console - configuration file - - --no-input Skip user prompts by setting --no-service-sync and --merge. Requires one of - config_file_path or --global or --workspace-name - - --no-service-sync Skip the Service sync prompt and do not attach current Service subscriptions to - the new Workspace - - --overwrite Overwrite any .aio and .env files during import of the Adobe Developer Console - configuration file - - --version Show version - - --workspace Prompt for selection of a Workspace in the same Project, and import the - configuration for this Workspace -``` - -_See code: [@adobe/aio-cli-plugin-app](https://github.com/adobe/aio-cli-plugin-app/blob/7.0.0/src/commands/app/use.js)_ - -## `aio auth` - -Adobe IMS commands to login and logout. - -``` -USAGE - $ aio auth - -DESCRIPTION - The main commands are auth:login to get or create an access token and - auth:logout to invalidate an access token and thus log out from Adobe IMS. - - Logging in and out is based on configuration of which there may be - multiple. Each set of configuration properties, called an Adobe IMS context, - can be individually addressed by a label. - - Configuration for the Adobe IMS commands is stored in the "ims" - configuration property. The special property "ims.config.current" contains the - label of the current configuration which can be set using the - "aio auth ctx -s