diff --git a/README.md b/README.md index a1e5e7c1..d4931111 100644 --- a/README.md +++ b/README.md @@ -31,11 +31,13 @@ $ aio app --help * [`aio app:add:action`](#aio-appaddaction) * [`aio app:add:auth`](#aio-appaddauth) * [`aio app:add:ci`](#aio-appaddci) +* [`aio app:add:event`](#aio-appaddevent) * [`aio app:add:web-assets`](#aio-appaddweb-assets) * [`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:web-assets`](#aio-appdeleteweb-assets) * [`aio app:deploy`](#aio-appdeploy) * [`aio app:get-url [ACTION]`](#aio-appget-url-action) @@ -59,7 +61,7 @@ OPTIONS --version Show version ``` -_See code: [src/commands/app/index.js](https://github.com/adobe/aio-cli-plugin-app/blob/2.1.0/src/commands/app/index.js)_ +_See code: [src/commands/app/index.js](https://github.com/adobe/aio-cli-plugin-app/blob/2.2.0/src/commands/app/index.js)_ ## `aio app:add` @@ -74,7 +76,7 @@ OPTIONS --version Show version ``` -_See code: [src/commands/app/add/index.js](https://github.com/adobe/aio-cli-plugin-app/blob/2.1.0/src/commands/app/add/index.js)_ +_See code: [src/commands/app/add/index.js](https://github.com/adobe/aio-cli-plugin-app/blob/2.2.0/src/commands/app/add/index.js)_ ## `aio app:add:action` @@ -91,7 +93,7 @@ OPTIONS --version Show version ``` -_See code: [src/commands/app/add/action.js](https://github.com/adobe/aio-cli-plugin-app/blob/2.1.0/src/commands/app/add/action.js)_ +_See code: [src/commands/app/add/action.js](https://github.com/adobe/aio-cli-plugin-app/blob/2.2.0/src/commands/app/add/action.js)_ ## `aio app:add:auth` @@ -106,7 +108,7 @@ OPTIONS --version Show version ``` -_See code: [src/commands/app/add/auth.js](https://github.com/adobe/aio-cli-plugin-app/blob/2.1.0/src/commands/app/add/auth.js)_ +_See code: [src/commands/app/add/auth.js](https://github.com/adobe/aio-cli-plugin-app/blob/2.2.0/src/commands/app/add/auth.js)_ ## `aio app:add:ci` @@ -121,7 +123,24 @@ OPTIONS --version Show version ``` -_See code: [src/commands/app/add/ci.js](https://github.com/adobe/aio-cli-plugin-app/blob/2.1.0/src/commands/app/add/ci.js)_ +_See code: [src/commands/app/add/ci.js](https://github.com/adobe/aio-cli-plugin-app/blob/2.2.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: [src/commands/app/add/event.js](https://github.com/adobe/aio-cli-plugin-app/blob/2.2.0/src/commands/app/add/event.js)_ ## `aio app:add:web-assets` @@ -138,7 +157,7 @@ OPTIONS --version Show version ``` -_See code: [src/commands/app/add/web-assets.js](https://github.com/adobe/aio-cli-plugin-app/blob/2.1.0/src/commands/app/add/web-assets.js)_ +_See code: [src/commands/app/add/web-assets.js](https://github.com/adobe/aio-cli-plugin-app/blob/2.2.0/src/commands/app/add/web-assets.js)_ ## `aio app:create [PATH]` @@ -157,7 +176,7 @@ OPTIONS --version Show version ``` -_See code: [src/commands/app/create.js](https://github.com/adobe/aio-cli-plugin-app/blob/2.1.0/src/commands/app/create.js)_ +_See code: [src/commands/app/create.js](https://github.com/adobe/aio-cli-plugin-app/blob/2.2.0/src/commands/app/create.js)_ ## `aio app:delete` @@ -172,7 +191,7 @@ OPTIONS --version Show version ``` -_See code: [src/commands/app/delete/index.js](https://github.com/adobe/aio-cli-plugin-app/blob/2.1.0/src/commands/app/delete/index.js)_ +_See code: [src/commands/app/delete/index.js](https://github.com/adobe/aio-cli-plugin-app/blob/2.2.0/src/commands/app/delete/index.js)_ ## `aio app:delete:action [ACTION-NAME]` @@ -191,7 +210,7 @@ OPTIONS --version Show version ``` -_See code: [src/commands/app/delete/action.js](https://github.com/adobe/aio-cli-plugin-app/blob/2.1.0/src/commands/app/delete/action.js)_ +_See code: [src/commands/app/delete/action.js](https://github.com/adobe/aio-cli-plugin-app/blob/2.2.0/src/commands/app/delete/action.js)_ ## `aio app:delete:ci` @@ -207,7 +226,26 @@ OPTIONS --version Show version ``` -_See code: [src/commands/app/delete/ci.js](https://github.com/adobe/aio-cli-plugin-app/blob/2.1.0/src/commands/app/delete/ci.js)_ +_See code: [src/commands/app/delete/ci.js](https://github.com/adobe/aio-cli-plugin-app/blob/2.2.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: [src/commands/app/delete/event.js](https://github.com/adobe/aio-cli-plugin-app/blob/2.2.0/src/commands/app/delete/event.js)_ ## `aio app:delete:web-assets` @@ -223,7 +261,7 @@ OPTIONS --version Show version ``` -_See code: [src/commands/app/delete/web-assets.js](https://github.com/adobe/aio-cli-plugin-app/blob/2.1.0/src/commands/app/delete/web-assets.js)_ +_See code: [src/commands/app/delete/web-assets.js](https://github.com/adobe/aio-cli-plugin-app/blob/2.2.0/src/commands/app/delete/web-assets.js)_ ## `aio app:deploy` @@ -244,7 +282,7 @@ OPTIONS --version Show version ``` -_See code: [src/commands/app/deploy.js](https://github.com/adobe/aio-cli-plugin-app/blob/2.1.0/src/commands/app/deploy.js)_ +_See code: [src/commands/app/deploy.js](https://github.com/adobe/aio-cli-plugin-app/blob/2.2.0/src/commands/app/deploy.js)_ ## `aio app:get-url [ACTION]` @@ -263,7 +301,7 @@ OPTIONS --version Show version ``` -_See code: [src/commands/app/get-url.js](https://github.com/adobe/aio-cli-plugin-app/blob/2.1.0/src/commands/app/get-url.js)_ +_See code: [src/commands/app/get-url.js](https://github.com/adobe/aio-cli-plugin-app/blob/2.2.0/src/commands/app/get-url.js)_ ## `aio app:init [PATH]` @@ -285,7 +323,7 @@ OPTIONS --version Show version ``` -_See code: [src/commands/app/init.js](https://github.com/adobe/aio-cli-plugin-app/blob/2.1.0/src/commands/app/init.js)_ +_See code: [src/commands/app/init.js](https://github.com/adobe/aio-cli-plugin-app/blob/2.2.0/src/commands/app/init.js)_ ## `aio app:logs` @@ -301,7 +339,7 @@ OPTIONS --version Show version ``` -_See code: [src/commands/app/logs.js](https://github.com/adobe/aio-cli-plugin-app/blob/2.1.0/src/commands/app/logs.js)_ +_See code: [src/commands/app/logs.js](https://github.com/adobe/aio-cli-plugin-app/blob/2.2.0/src/commands/app/logs.js)_ ## `aio app:run` @@ -319,7 +357,7 @@ OPTIONS --version Show version ``` -_See code: [src/commands/app/run.js](https://github.com/adobe/aio-cli-plugin-app/blob/2.1.0/src/commands/app/run.js)_ +_See code: [src/commands/app/run.js](https://github.com/adobe/aio-cli-plugin-app/blob/2.2.0/src/commands/app/run.js)_ ## `aio app:test` @@ -336,7 +374,7 @@ OPTIONS --version Show version ``` -_See code: [src/commands/app/test.js](https://github.com/adobe/aio-cli-plugin-app/blob/2.1.0/src/commands/app/test.js)_ +_See code: [src/commands/app/test.js](https://github.com/adobe/aio-cli-plugin-app/blob/2.2.0/src/commands/app/test.js)_ ## `aio app:undeploy` @@ -353,7 +391,7 @@ OPTIONS --version Show version ``` -_See code: [src/commands/app/undeploy.js](https://github.com/adobe/aio-cli-plugin-app/blob/2.1.0/src/commands/app/undeploy.js)_ +_See code: [src/commands/app/undeploy.js](https://github.com/adobe/aio-cli-plugin-app/blob/2.2.0/src/commands/app/undeploy.js)_ ## `aio app:use [CONFIG_FILE_PATH]` @@ -373,5 +411,5 @@ OPTIONS --version Show version ``` -_See code: [src/commands/app/use.js](https://github.com/adobe/aio-cli-plugin-app/blob/2.1.0/src/commands/app/use.js)_ +_See code: [src/commands/app/use.js](https://github.com/adobe/aio-cli-plugin-app/blob/2.2.0/src/commands/app/use.js)_ diff --git a/package.json b/package.json index 9556e6f2..96cef67c 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "@adobe/aio-cli-plugin-app", "description": "Create, Build and Deploy Adobe I/O Applications", - "version": "2.1.0", + "version": "2.2.0", "author": "Adobe Inc.", "bugs": "https://github.com/adobe/aio-cli-plugin-app/issues", "dependencies": {