@adobe/aio-cli-plugin-app 8.5.1 → 8.6.1-pre.2022-08-17.163d3a3a

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (43) hide show
  1. package/README.md +688 -256
  2. package/bin/openwhisk-standalone-config/get-runtimes.js +52 -0
  3. package/bin/openwhisk-standalone-config/runtimes.json +16 -8
  4. package/oclif.manifest.json +1 -1
  5. package/package.json +24 -27
  6. package/src/AddCommand.js +3 -3
  7. package/src/BaseCommand.js +13 -8
  8. package/src/commands/app/add/action.js +8 -8
  9. package/src/commands/app/add/ci.js +4 -5
  10. package/src/commands/app/add/event.js +7 -7
  11. package/src/commands/app/add/extension.js +7 -7
  12. package/src/commands/app/add/index.js +3 -3
  13. package/src/commands/app/add/service.js +3 -3
  14. package/src/commands/app/add/web-assets.js +8 -8
  15. package/src/commands/app/build.js +15 -15
  16. package/src/commands/app/config/get/index.js +3 -3
  17. package/src/commands/app/config/index.js +3 -3
  18. package/src/commands/app/config/set/index.js +3 -3
  19. package/src/commands/app/create.js +3 -3
  20. package/src/commands/app/delete/action.js +3 -3
  21. package/src/commands/app/delete/ci.js +6 -6
  22. package/src/commands/app/delete/event.js +3 -3
  23. package/src/commands/app/delete/extension.js +6 -6
  24. package/src/commands/app/delete/index.js +3 -3
  25. package/src/commands/app/delete/web-assets.js +3 -3
  26. package/src/commands/app/deploy.js +19 -21
  27. package/src/commands/app/get-url.js +20 -9
  28. package/src/commands/app/index.js +3 -3
  29. package/src/commands/app/info.js +7 -7
  30. package/src/commands/app/init.js +34 -15
  31. package/src/commands/app/list/extension-points.js +4 -4
  32. package/src/commands/app/list/extension.js +4 -4
  33. package/src/commands/app/list/index.js +3 -3
  34. package/src/commands/app/logs.js +20 -12
  35. package/src/commands/app/run.js +13 -12
  36. package/src/commands/app/test.js +7 -7
  37. package/src/commands/app/undeploy.js +10 -10
  38. package/src/commands/app/use.js +11 -11
  39. package/src/lib/build-actions.js +3 -2
  40. package/src/lib/deploy-actions.js +3 -3
  41. package/src/lib/run-dev.js +6 -7
  42. package/src/lib/run-local-runtime.js +22 -12
  43. package/src/lib/vscode.js +3 -3
package/README.md CHANGED
@@ -29,33 +29,49 @@ $ aio app --help
29
29
  * [`aio app`](#aio-app)
30
30
  * [`aio app:add`](#aio-appadd)
31
31
  * [`aio app:add:action`](#aio-appaddaction)
32
+ * [`aio app:add:actions`](#aio-appaddactions)
32
33
  * [`aio app:add:ci`](#aio-appaddci)
33
34
  * [`aio app:add:event`](#aio-appaddevent)
35
+ * [`aio app:add:events`](#aio-appaddevents)
36
+ * [`aio app:add:ext`](#aio-appaddext)
34
37
  * [`aio app:add:extension`](#aio-appaddextension)
38
+ * [`aio app:add:extensions`](#aio-appaddextensions)
35
39
  * [`aio app:add:service`](#aio-appaddservice)
40
+ * [`aio app:add:services`](#aio-appaddservices)
36
41
  * [`aio app:add:web-assets`](#aio-appaddweb-assets)
37
42
  * [`aio app:build`](#aio-appbuild)
38
43
  * [`aio app:config`](#aio-appconfig)
39
44
  * [`aio app:config:get`](#aio-appconfigget)
45
+ * [`aio app:config:get:lf`](#aio-appconfiggetlf)
46
+ * [`aio app:config:get:lf:errors`](#aio-appconfiggetlferrors)
40
47
  * [`aio app:config:get:log-forwarding`](#aio-appconfiggetlog-forwarding)
41
48
  * [`aio app:config:get:log-forwarding:errors`](#aio-appconfiggetlog-forwardingerrors)
42
49
  * [`aio app:config:set`](#aio-appconfigset)
50
+ * [`aio app:config:set:lf`](#aio-appconfigsetlf)
43
51
  * [`aio app:config:set:log-forwarding`](#aio-appconfigsetlog-forwarding)
44
52
  * [`aio app:create [PATH]`](#aio-appcreate-path)
45
53
  * [`aio app:delete`](#aio-appdelete)
46
54
  * [`aio app:delete:action [ACTION-NAME]`](#aio-appdeleteaction-action-name)
55
+ * [`aio app:delete:actions [ACTION-NAME]`](#aio-appdeleteactions-action-name)
47
56
  * [`aio app:delete:ci`](#aio-appdeleteci)
48
57
  * [`aio app:delete:event [EVENT-ACTION-NAME]`](#aio-appdeleteevent-event-action-name)
58
+ * [`aio app:delete:events [EVENT-ACTION-NAME]`](#aio-appdeleteevents-event-action-name)
59
+ * [`aio app:delete:ext`](#aio-appdeleteext)
49
60
  * [`aio app:delete:extension`](#aio-appdeleteextension)
61
+ * [`aio app:delete:extensions`](#aio-appdeleteextensions)
50
62
  * [`aio app:delete:service`](#aio-appdeleteservice)
63
+ * [`aio app:delete:services`](#aio-appdeleteservices)
51
64
  * [`aio app:delete:web-assets`](#aio-appdeleteweb-assets)
52
65
  * [`aio app:deploy`](#aio-appdeploy)
53
66
  * [`aio app:get-url [ACTION]`](#aio-appget-url-action)
54
67
  * [`aio app:info`](#aio-appinfo)
55
68
  * [`aio app:init [PATH]`](#aio-appinit-path)
56
69
  * [`aio app:list`](#aio-applist)
70
+ * [`aio app:list:ext`](#aio-applistext)
71
+ * [`aio app:list:ext-points`](#aio-applistext-points)
57
72
  * [`aio app:list:extension`](#aio-applistextension)
58
73
  * [`aio app:list:extension-points`](#aio-applistextension-points)
74
+ * [`aio app:list:extensions`](#aio-applistextensions)
59
75
  * [`aio app:logs`](#aio-applogs)
60
76
  * [`aio app:run`](#aio-apprun)
61
77
  * [`aio app:test`](#aio-apptest)
@@ -68,14 +84,17 @@ Create, run, test, and deploy Adobe I/O Apps
68
84
 
69
85
  ```
70
86
  USAGE
71
- $ aio app
87
+ $ aio app [-v] [--version]
72
88
 
73
- OPTIONS
89
+ FLAGS
74
90
  -v, --verbose Verbose output
75
91
  --version Show version
92
+
93
+ DESCRIPTION
94
+ Create, run, test, and deploy Adobe I/O Apps
76
95
  ```
77
96
 
78
- _See code: [src/commands/app/index.ts](https://github.com/adobe/aio-cli-plugin-app/blob/8.5.1/src/commands/app/index.ts)_
97
+ _See code: [src/commands/app/index.js](https://github.com/adobe/aio-cli-plugin-app/blob/8.6.1-pre.2022-08-17.163d3a3a/src/commands/app/index.js)_
79
98
 
80
99
  ## `aio app:add`
81
100
 
@@ -83,14 +102,17 @@ Add a new component to an existing Adobe I/O App
83
102
 
84
103
  ```
85
104
  USAGE
86
- $ aio app:add
105
+ $ aio app:add [-v] [--version]
87
106
 
88
- OPTIONS
107
+ FLAGS
89
108
  -v, --verbose Verbose output
90
109
  --version Show version
110
+
111
+ DESCRIPTION
112
+ Add a new component to an existing Adobe I/O App
91
113
  ```
92
114
 
93
- _See code: [src/commands/app/add/index.ts](https://github.com/adobe/aio-cli-plugin-app/blob/8.5.1/src/commands/app/add/index.ts)_
115
+ _See code: [src/commands/app/add/index.js](https://github.com/adobe/aio-cli-plugin-app/blob/8.6.1-pre.2022-08-17.163d3a3a/src/commands/app/add/index.js)_
94
116
 
95
117
  ## `aio app:add:action`
96
118
 
@@ -98,21 +120,47 @@ Add new actions
98
120
 
99
121
  ```
100
122
  USAGE
101
- $ aio app:add:action
123
+ $ aio app:add:action [-v] [--version] [-s] [--install] [-y] [-e <value>]
124
+
125
+ FLAGS
126
+ -e, --extension=<value> Add actions to a specific extension
127
+ -s, --skip-install [deprecated] Please use --no-install
128
+ -v, --verbose Verbose output
129
+ -y, --yes Skip questions, and use all default values
130
+ --[no-]install [default: true] Run npm installation after files are created
131
+ --version Show version
102
132
 
103
- OPTIONS
104
- -e, --extension=extension Add actions to a specific extension
105
- -s, --skip-install [deprecated] Please use --no-install
106
- -v, --verbose Verbose output
107
- -y, --yes Skip questions, and use all default values
108
- --[no-]install [default: true] Run npm installation after files are created
109
- --version Show version
133
+ DESCRIPTION
134
+ Add new actions
110
135
 
111
136
  ALIASES
112
137
  $ aio app:add:actions
113
138
  ```
114
139
 
115
- _See code: [src/commands/app/add/action.ts](https://github.com/adobe/aio-cli-plugin-app/blob/8.5.1/src/commands/app/add/action.ts)_
140
+ _See code: [src/commands/app/add/action.js](https://github.com/adobe/aio-cli-plugin-app/blob/8.6.1-pre.2022-08-17.163d3a3a/src/commands/app/add/action.js)_
141
+
142
+ ## `aio app:add:actions`
143
+
144
+ Add new actions
145
+
146
+ ```
147
+ USAGE
148
+ $ aio app:add:actions [-v] [--version] [-s] [--install] [-y] [-e <value>]
149
+
150
+ FLAGS
151
+ -e, --extension=<value> Add actions to a specific extension
152
+ -s, --skip-install [deprecated] Please use --no-install
153
+ -v, --verbose Verbose output
154
+ -y, --yes Skip questions, and use all default values
155
+ --[no-]install [default: true] Run npm installation after files are created
156
+ --version Show version
157
+
158
+ DESCRIPTION
159
+ Add new actions
160
+
161
+ ALIASES
162
+ $ aio app:add:actions
163
+ ```
116
164
 
117
165
  ## `aio app:add:ci`
118
166
 
@@ -120,14 +168,17 @@ Add CI files
120
168
 
121
169
  ```
122
170
  USAGE
123
- $ aio app:add:ci
171
+ $ aio app:add:ci [-v] [--version]
124
172
 
125
- OPTIONS
173
+ FLAGS
126
174
  -v, --verbose Verbose output
127
175
  --version Show version
176
+
177
+ DESCRIPTION
178
+ Add CI files
128
179
  ```
129
180
 
130
- _See code: [src/commands/app/add/ci.ts](https://github.com/adobe/aio-cli-plugin-app/blob/8.5.1/src/commands/app/add/ci.ts)_
181
+ _See code: [src/commands/app/add/ci.js](https://github.com/adobe/aio-cli-plugin-app/blob/8.6.1-pre.2022-08-17.163d3a3a/src/commands/app/add/ci.js)_
131
182
 
132
183
  ## `aio app:add:event`
133
184
 
@@ -135,21 +186,71 @@ Add a new Adobe I/O Events action
135
186
 
136
187
  ```
137
188
  USAGE
138
- $ aio app:add:event
189
+ $ aio app:add:event [-v] [--version] [-s] [--install] [-y] [-e <value>]
139
190
 
140
- OPTIONS
141
- -e, --extension=extension Add actions to a specific extension
142
- -s, --skip-install [deprecated] Please use --no-install
143
- -v, --verbose Verbose output
144
- -y, --yes Skip questions, and use all default values
145
- --[no-]install [default: true] Run npm installation after files are created
146
- --version Show version
191
+ FLAGS
192
+ -e, --extension=<value> Add actions to a specific extension
193
+ -s, --skip-install [deprecated] Please use --no-install
194
+ -v, --verbose Verbose output
195
+ -y, --yes Skip questions, and use all default values
196
+ --[no-]install [default: true] Run npm installation after files are created
197
+ --version Show version
198
+
199
+ DESCRIPTION
200
+ Add a new Adobe I/O Events action
147
201
 
148
202
  ALIASES
149
203
  $ aio app:add:events
150
204
  ```
151
205
 
152
- _See code: [src/commands/app/add/event.ts](https://github.com/adobe/aio-cli-plugin-app/blob/8.5.1/src/commands/app/add/event.ts)_
206
+ _See code: [src/commands/app/add/event.js](https://github.com/adobe/aio-cli-plugin-app/blob/8.6.1-pre.2022-08-17.163d3a3a/src/commands/app/add/event.js)_
207
+
208
+ ## `aio app:add:events`
209
+
210
+ Add a new Adobe I/O Events action
211
+
212
+ ```
213
+ USAGE
214
+ $ aio app:add:events [-v] [--version] [-s] [--install] [-y] [-e <value>]
215
+
216
+ FLAGS
217
+ -e, --extension=<value> Add actions to a specific extension
218
+ -s, --skip-install [deprecated] Please use --no-install
219
+ -v, --verbose Verbose output
220
+ -y, --yes Skip questions, and use all default values
221
+ --[no-]install [default: true] Run npm installation after files are created
222
+ --version Show version
223
+
224
+ DESCRIPTION
225
+ Add a new Adobe I/O Events action
226
+
227
+ ALIASES
228
+ $ aio app:add:events
229
+ ```
230
+
231
+ ## `aio app:add:ext`
232
+
233
+ Add new extensions or a standalone application to the project
234
+
235
+ ```
236
+ USAGE
237
+ $ aio app:add:ext [-v] [--version] [-s] [--install] [-y] [-e <value>]
238
+
239
+ FLAGS
240
+ -e, --extension=<value>... Specify extensions to add, skips selection prompt
241
+ -s, --skip-install [deprecated] Please use --no-install
242
+ -v, --verbose Verbose output
243
+ -y, --yes Skip questions, and use all default values
244
+ --[no-]install [default: true] Run npm installation after files are created
245
+ --version Show version
246
+
247
+ DESCRIPTION
248
+ Add new extensions or a standalone application to the project
249
+
250
+ ALIASES
251
+ $ aio app:add:ext
252
+ $ aio app:add:extensions
253
+ ```
153
254
 
154
255
  ## `aio app:add:extension`
155
256
 
@@ -157,99 +258,143 @@ Add new extensions or a standalone application to the project
157
258
 
158
259
  ```
159
260
  USAGE
160
- $ aio app:add:extension
261
+ $ aio app:add:extension [-v] [--version] [-s] [--install] [-y] [-e <value>]
262
+
263
+ FLAGS
264
+ -e, --extension=<value>... Specify extensions to add, skips selection prompt
265
+ -s, --skip-install [deprecated] Please use --no-install
266
+ -v, --verbose Verbose output
267
+ -y, --yes Skip questions, and use all default values
268
+ --[no-]install [default: true] Run npm installation after files are created
269
+ --version Show version
161
270
 
162
- OPTIONS
163
- -e, --extension=extension Specify extensions to add, skips selection prompt
164
- -s, --skip-install [deprecated] Please use --no-install
165
- -v, --verbose Verbose output
166
- -y, --yes Skip questions, and use all default values
167
- --[no-]install [default: true] Run npm installation after files are created
168
- --version Show version
271
+ DESCRIPTION
272
+ Add new extensions or a standalone application to the project
169
273
 
170
274
  ALIASES
171
275
  $ aio app:add:ext
172
276
  $ aio app:add:extensions
173
277
  ```
174
278
 
175
- _See code: [src/commands/app/add/extension.ts](https://github.com/adobe/aio-cli-plugin-app/blob/8.5.1/src/commands/app/add/extension.ts)_
279
+ _See code: [src/commands/app/add/extension.js](https://github.com/adobe/aio-cli-plugin-app/blob/8.6.1-pre.2022-08-17.163d3a3a/src/commands/app/add/extension.js)_
176
280
 
177
- ## `aio app:add:service`
281
+ ## `aio app:add:extensions`
178
282
 
179
- Subscribe to Services in the current Workspace
283
+ Add new extensions or a standalone application to the project
180
284
 
181
285
  ```
182
286
  USAGE
183
- $ aio app:add:service
287
+ $ aio app:add:extensions [-v] [--version] [-s] [--install] [-y] [-e <value>]
184
288
 
185
- OPTIONS
186
- -v, --verbose Verbose output
187
- --version Show version
289
+ FLAGS
290
+ -e, --extension=<value>... Specify extensions to add, skips selection prompt
291
+ -s, --skip-install [deprecated] Please use --no-install
292
+ -v, --verbose Verbose output
293
+ -y, --yes Skip questions, and use all default values
294
+ --[no-]install [default: true] Run npm installation after files are created
295
+ --version Show version
296
+
297
+ DESCRIPTION
298
+ Add new extensions or a standalone application to the project
188
299
 
189
300
  ALIASES
190
- $ aio app:add:services
301
+ $ aio app:add:ext
302
+ $ aio app:add:extensions
191
303
  ```
192
304
 
193
- _See code: [src/commands/app/add/service.ts](https://github.com/adobe/aio-cli-plugin-app/blob/8.5.1/src/commands/app/add/service.ts)_
194
-
195
- ## `aio app:add:web-assets`
305
+ ## `aio app:add:service`
196
306
 
197
- Add web assets support
307
+ Subscribe to Services in the current Workspace
198
308
 
199
309
  ```
200
310
  USAGE
201
- $ aio app:add:web-assets
311
+ $ aio app:add:service [-v] [--version]
202
312
 
203
- OPTIONS
204
- -e, --extension=extension Add web-assets to a specific extension
205
- -s, --skip-install [deprecated] Please use --no-install
206
- -v, --verbose Verbose output
207
- -y, --yes Skip questions, and use all default values
208
- --[no-]install [default: true] Run npm installation after files are created
209
- --version Show version
313
+ FLAGS
314
+ -v, --verbose Verbose output
315
+ --version Show version
316
+
317
+ DESCRIPTION
318
+ Subscribe to Services in the current Workspace
319
+
320
+ ALIASES
321
+ $ aio app:add:services
210
322
  ```
211
323
 
212
- _See code: [src/commands/app/add/web-assets.ts](https://github.com/adobe/aio-cli-plugin-app/blob/8.5.1/src/commands/app/add/web-assets.ts)_
324
+ _See code: [src/commands/app/add/service.js](https://github.com/adobe/aio-cli-plugin-app/blob/8.6.1-pre.2022-08-17.163d3a3a/src/commands/app/add/service.js)_
213
325
 
214
- ## `aio app:build`
326
+ ## `aio app:add:services`
215
327
 
216
- Build an Adobe I/O App
328
+ Subscribe to Services in the current Workspace
217
329
 
218
330
  ```
219
331
  USAGE
220
- $ aio app:build
332
+ $ aio app:add:services [-v] [--version]
221
333
 
222
- OPTIONS
223
- -a, --action=action Build only a specific action, the flags can be specified multiple times, this will set
224
- --no-publish
334
+ FLAGS
335
+ -v, --verbose Verbose output
336
+ --version Show version
225
337
 
226
- -e, --extension=extension Build only a specific extension point, the flags can be specified multiple times
338
+ DESCRIPTION
339
+ Subscribe to Services in the current Workspace
227
340
 
228
- -v, --verbose Verbose output
341
+ ALIASES
342
+ $ aio app:add:services
343
+ ```
229
344
 
230
- --[no-]actions [default: true] Build actions if any
345
+ ## `aio app:add:web-assets`
231
346
 
232
- --[no-]content-hash [default: true] Enable content hashing in browser code
347
+ Add web assets support
233
348
 
234
- --[no-]force-build [default: true] Force a build even if one already exists
349
+ ```
350
+ USAGE
351
+ $ aio app:add:web-assets [-v] [--version] [-s] [--install] [-y] [-e <value>]
235
352
 
236
- --skip-actions [deprecated] Please use --no-actions
353
+ FLAGS
354
+ -e, --extension=<value> Add web-assets to a specific extension
355
+ -s, --skip-install [deprecated] Please use --no-install
356
+ -v, --verbose Verbose output
357
+ -y, --yes Skip questions, and use all default values
358
+ --[no-]install [default: true] Run npm installation after files are created
359
+ --version Show version
237
360
 
238
- --skip-static [deprecated] Please use --no-web-assets
361
+ DESCRIPTION
362
+ Add web assets support
363
+ ```
239
364
 
240
- --skip-web-assets [deprecated] Please use --no-web-assets
365
+ _See code: [src/commands/app/add/web-assets.js](https://github.com/adobe/aio-cli-plugin-app/blob/8.6.1-pre.2022-08-17.163d3a3a/src/commands/app/add/web-assets.js)_
241
366
 
242
- --version Show version
367
+ ## `aio app:build`
243
368
 
244
- --[no-]web-assets [default: true] Build web-assets if any
369
+ Build an Adobe I/O App
245
370
 
246
- --web-optimize [default: false] Enable optimization (minification) of js/css/html
371
+ ```
372
+ USAGE
373
+ $ aio app:build [-v] [--version] [--skip-static] [--skip-web-assets] [--skip-actions] [--actions | -a
374
+ <value>] [--web-assets] [--force-build] [--content-hash] [--web-optimize] [-e <value> | ]
375
+
376
+ FLAGS
377
+ -a, --action=<value>... Build only a specific action, the flags can be specified multiple times, this will set
378
+ --no-publish
379
+ -e, --extension=<value>... Build only a specific extension point, the flags can be specified multiple times
380
+ -v, --verbose Verbose output
381
+ --[no-]actions [default: true] Build actions if any
382
+ --[no-]content-hash [default: true] Enable content hashing in browser code
383
+ --[no-]force-build [default: true] Force a build even if one already exists
384
+ --skip-actions [deprecated] Please use --no-actions
385
+ --skip-static [deprecated] Please use --no-web-assets
386
+ --skip-web-assets [deprecated] Please use --no-web-assets
387
+ --version Show version
388
+ --[no-]web-assets [default: true] Build web-assets if any
389
+ --web-optimize [default: false] Enable optimization (minification) of js/css/html
247
390
 
248
391
  DESCRIPTION
392
+ Build an Adobe I/O App
393
+
249
394
  This will always force a rebuild unless --no-force-build is set.
250
395
  ```
251
396
 
252
- _See code: [src/commands/app/build.ts](https://github.com/adobe/aio-cli-plugin-app/blob/8.5.1/src/commands/app/build.ts)_
397
+ _See code: [src/commands/app/build.js](https://github.com/adobe/aio-cli-plugin-app/blob/8.6.1-pre.2022-08-17.163d3a3a/src/commands/app/build.js)_
253
398
 
254
399
  ## `aio app:config`
255
400
 
@@ -257,18 +402,21 @@ Manage app config
257
402
 
258
403
  ```
259
404
  USAGE
260
- $ aio app:config
405
+ $ aio app:config [-v] [--version]
261
406
 
262
- OPTIONS
407
+ FLAGS
263
408
  -v, --verbose Verbose output
264
409
  --version Show version
265
410
 
411
+ DESCRIPTION
412
+ Manage app config
413
+
266
414
  ALIASES
267
415
  $ aio app:config
268
416
  $ aio app:config
269
417
  ```
270
418
 
271
- _See code: [src/commands/app/config/index.ts](https://github.com/adobe/aio-cli-plugin-app/blob/8.5.1/src/commands/app/config/index.ts)_
419
+ _See code: [src/commands/app/config/index.js](https://github.com/adobe/aio-cli-plugin-app/blob/8.6.1-pre.2022-08-17.163d3a3a/src/commands/app/config/index.js)_
272
420
 
273
421
  ## `aio app:config:get`
274
422
 
@@ -276,36 +424,82 @@ Get app config
276
424
 
277
425
  ```
278
426
  USAGE
279
- $ aio app:config:get
427
+ $ aio app:config:get [-v] [--version]
280
428
 
281
- OPTIONS
429
+ FLAGS
282
430
  -v, --verbose Verbose output
283
431
  --version Show version
284
432
 
433
+ DESCRIPTION
434
+ Get app config
435
+
285
436
  ALIASES
286
437
  $ aio app:config:get
287
438
  ```
288
439
 
289
- _See code: [src/commands/app/config/get/index.ts](https://github.com/adobe/aio-cli-plugin-app/blob/8.5.1/src/commands/app/config/get/index.ts)_
440
+ _See code: [src/commands/app/config/get/index.js](https://github.com/adobe/aio-cli-plugin-app/blob/8.6.1-pre.2022-08-17.163d3a3a/src/commands/app/config/get/index.js)_
290
441
 
291
- ## `aio app:config:get:log-forwarding`
442
+ ## `aio app:config:get:lf`
292
443
 
293
444
  Get log forwarding destination configuration
294
445
 
295
446
  ```
296
447
  USAGE
448
+ $ aio app:config:get:lf [-v] [--version]
449
+
450
+ FLAGS
451
+ -v, --verbose Verbose output
452
+ --version Show version
453
+
454
+ DESCRIPTION
455
+ Get log forwarding destination configuration
456
+
457
+ ALIASES
297
458
  $ aio app:config:get:log-forwarding
459
+ $ aio app:config:get:lf
460
+ ```
461
+
462
+ ## `aio app:config:get:lf:errors`
463
+
464
+ Get log forwarding errors
298
465
 
299
- OPTIONS
466
+ ```
467
+ USAGE
468
+ $ aio app:config:get:lf:errors [-v] [--version]
469
+
470
+ FLAGS
471
+ -v, --verbose Verbose output
472
+ --version Show version
473
+
474
+ DESCRIPTION
475
+ Get log forwarding errors
476
+
477
+ ALIASES
478
+ $ aio app:config:get:log-forwarding:errors
479
+ $ aio app:config:get:lf:errors
480
+ ```
481
+
482
+ ## `aio app:config:get:log-forwarding`
483
+
484
+ Get log forwarding destination configuration
485
+
486
+ ```
487
+ USAGE
488
+ $ aio app:config:get:log-forwarding [-v] [--version]
489
+
490
+ FLAGS
300
491
  -v, --verbose Verbose output
301
492
  --version Show version
302
493
 
494
+ DESCRIPTION
495
+ Get log forwarding destination configuration
496
+
303
497
  ALIASES
304
498
  $ aio app:config:get:log-forwarding
305
499
  $ aio app:config:get:lf
306
500
  ```
307
501
 
308
- _See code: [src/commands/app/config/get/log-forwarding.ts](https://github.com/adobe/aio-cli-plugin-app/blob/8.5.1/src/commands/app/config/get/log-forwarding.ts)_
502
+ _See code: [src/commands/app/config/get/log-forwarding.js](https://github.com/adobe/aio-cli-plugin-app/blob/8.6.1-pre.2022-08-17.163d3a3a/src/commands/app/config/get/log-forwarding.js)_
309
503
 
310
504
  ## `aio app:config:get:log-forwarding:errors`
311
505
 
@@ -313,18 +507,21 @@ Get log forwarding errors
313
507
 
314
508
  ```
315
509
  USAGE
316
- $ aio app:config:get:log-forwarding:errors
510
+ $ aio app:config:get:log-forwarding:errors [-v] [--version]
317
511
 
318
- OPTIONS
512
+ FLAGS
319
513
  -v, --verbose Verbose output
320
514
  --version Show version
321
515
 
516
+ DESCRIPTION
517
+ Get log forwarding errors
518
+
322
519
  ALIASES
323
520
  $ aio app:config:get:log-forwarding:errors
324
521
  $ aio app:config:get:lf:errors
325
522
  ```
326
523
 
327
- _See code: [src/commands/app/config/get/log-forwarding/errors.ts](https://github.com/adobe/aio-cli-plugin-app/blob/8.5.1/src/commands/app/config/get/log-forwarding/errors.ts)_
524
+ _See code: [src/commands/app/config/get/log-forwarding/errors.js](https://github.com/adobe/aio-cli-plugin-app/blob/8.6.1-pre.2022-08-17.163d3a3a/src/commands/app/config/get/log-forwarding/errors.js)_
328
525
 
329
526
  ## `aio app:config:set`
330
527
 
@@ -332,36 +529,62 @@ Set app config
332
529
 
333
530
  ```
334
531
  USAGE
335
- $ aio app:config:set
532
+ $ aio app:config:set [-v] [--version]
336
533
 
337
- OPTIONS
534
+ FLAGS
338
535
  -v, --verbose Verbose output
339
536
  --version Show version
340
537
 
538
+ DESCRIPTION
539
+ Set app config
540
+
341
541
  ALIASES
342
542
  $ aio app:config:set
343
543
  ```
344
544
 
345
- _See code: [src/commands/app/config/set/index.ts](https://github.com/adobe/aio-cli-plugin-app/blob/8.5.1/src/commands/app/config/set/index.ts)_
545
+ _See code: [src/commands/app/config/set/index.js](https://github.com/adobe/aio-cli-plugin-app/blob/8.6.1-pre.2022-08-17.163d3a3a/src/commands/app/config/set/index.js)_
346
546
 
347
- ## `aio app:config:set:log-forwarding`
547
+ ## `aio app:config:set:lf`
348
548
 
349
549
  Set log forwarding destination configuration
350
550
 
351
551
  ```
352
552
  USAGE
553
+ $ aio app:config:set:lf [-v] [--version]
554
+
555
+ FLAGS
556
+ -v, --verbose Verbose output
557
+ --version Show version
558
+
559
+ DESCRIPTION
560
+ Set log forwarding destination configuration
561
+
562
+ ALIASES
353
563
  $ aio app:config:set:log-forwarding
564
+ $ aio app:config:set:lf
565
+ ```
566
+
567
+ ## `aio app:config:set:log-forwarding`
568
+
569
+ Set log forwarding destination configuration
570
+
571
+ ```
572
+ USAGE
573
+ $ aio app:config:set:log-forwarding [-v] [--version]
354
574
 
355
- OPTIONS
575
+ FLAGS
356
576
  -v, --verbose Verbose output
357
577
  --version Show version
358
578
 
579
+ DESCRIPTION
580
+ Set log forwarding destination configuration
581
+
359
582
  ALIASES
360
583
  $ aio app:config:set:log-forwarding
361
584
  $ aio app:config:set:lf
362
585
  ```
363
586
 
364
- _See code: [src/commands/app/config/set/log-forwarding.ts](https://github.com/adobe/aio-cli-plugin-app/blob/8.5.1/src/commands/app/config/set/log-forwarding.ts)_
587
+ _See code: [src/commands/app/config/set/log-forwarding.js](https://github.com/adobe/aio-cli-plugin-app/blob/8.6.1-pre.2022-08-17.163d3a3a/src/commands/app/config/set/log-forwarding.js)_
365
588
 
366
589
  ## `aio app:create [PATH]`
367
590
 
@@ -369,18 +592,21 @@ Create a new Adobe I/O App with default parameters
369
592
 
370
593
  ```
371
594
  USAGE
372
- $ aio app:create [PATH]
595
+ $ aio app:create [PATH] [-v] [--version] [-i <value>]
373
596
 
374
597
  ARGUMENTS
375
598
  PATH [default: .] Path to the app directory
376
599
 
377
- OPTIONS
378
- -i, --import=import Import an Adobe I/O Developer Console configuration file
379
- -v, --verbose Verbose output
380
- --version Show version
600
+ FLAGS
601
+ -i, --import=<value> Import an Adobe I/O Developer Console configuration file
602
+ -v, --verbose Verbose output
603
+ --version Show version
604
+
605
+ DESCRIPTION
606
+ Create a new Adobe I/O App with default parameters
381
607
  ```
382
608
 
383
- _See code: [src/commands/app/create.ts](https://github.com/adobe/aio-cli-plugin-app/blob/8.5.1/src/commands/app/create.ts)_
609
+ _See code: [src/commands/app/create.js](https://github.com/adobe/aio-cli-plugin-app/blob/8.6.1-pre.2022-08-17.163d3a3a/src/commands/app/create.js)_
384
610
 
385
611
  ## `aio app:delete`
386
612
 
@@ -388,14 +614,17 @@ Delete a component from an existing Adobe I/O App
388
614
 
389
615
  ```
390
616
  USAGE
391
- $ aio app:delete
617
+ $ aio app:delete [-v] [--version]
392
618
 
393
- OPTIONS
619
+ FLAGS
394
620
  -v, --verbose Verbose output
395
621
  --version Show version
622
+
623
+ DESCRIPTION
624
+ Delete a component from an existing Adobe I/O App
396
625
  ```
397
626
 
398
- _See code: [src/commands/app/delete/index.ts](https://github.com/adobe/aio-cli-plugin-app/blob/8.5.1/src/commands/app/delete/index.ts)_
627
+ _See code: [src/commands/app/delete/index.js](https://github.com/adobe/aio-cli-plugin-app/blob/8.6.1-pre.2022-08-17.163d3a3a/src/commands/app/delete/index.js)_
399
628
 
400
629
  ## `aio app:delete:action [ACTION-NAME]`
401
630
 
@@ -403,21 +632,47 @@ Delete existing actions
403
632
 
404
633
  ```
405
634
  USAGE
406
- $ aio app:delete:action [ACTION-NAME]
635
+ $ aio app:delete:action [ACTION-NAME] [-v] [--version] [-y]
407
636
 
408
637
  ARGUMENTS
409
638
  ACTION-NAME Action `pkg/name` to delete, you can specify multiple actions via a comma separated list
410
639
 
411
- OPTIONS
640
+ FLAGS
412
641
  -v, --verbose Verbose output
413
642
  -y, --yes Skip questions, and use all default values
414
643
  --version Show version
415
644
 
645
+ DESCRIPTION
646
+ Delete existing actions
647
+
416
648
  ALIASES
417
649
  $ aio app:delete:actions
418
650
  ```
419
651
 
420
- _See code: [src/commands/app/delete/action.ts](https://github.com/adobe/aio-cli-plugin-app/blob/8.5.1/src/commands/app/delete/action.ts)_
652
+ _See code: [src/commands/app/delete/action.js](https://github.com/adobe/aio-cli-plugin-app/blob/8.6.1-pre.2022-08-17.163d3a3a/src/commands/app/delete/action.js)_
653
+
654
+ ## `aio app:delete:actions [ACTION-NAME]`
655
+
656
+ Delete existing actions
657
+
658
+ ```
659
+ USAGE
660
+ $ aio app:delete:actions [ACTION-NAME] [-v] [--version] [-y]
661
+
662
+ ARGUMENTS
663
+ ACTION-NAME Action `pkg/name` to delete, you can specify multiple actions via a comma separated list
664
+
665
+ FLAGS
666
+ -v, --verbose Verbose output
667
+ -y, --yes Skip questions, and use all default values
668
+ --version Show version
669
+
670
+ DESCRIPTION
671
+ Delete existing actions
672
+
673
+ ALIASES
674
+ $ aio app:delete:actions
675
+ ```
421
676
 
422
677
  ## `aio app:delete:ci`
423
678
 
@@ -425,15 +680,18 @@ Delete existing CI files
425
680
 
426
681
  ```
427
682
  USAGE
428
- $ aio app:delete:ci
683
+ $ aio app:delete:ci [-v] [--version] [-y]
429
684
 
430
- OPTIONS
685
+ FLAGS
431
686
  -v, --verbose Verbose output
432
687
  -y, --yes Skip questions, and use all default values
433
688
  --version Show version
689
+
690
+ DESCRIPTION
691
+ Delete existing CI files
434
692
  ```
435
693
 
436
- _See code: [src/commands/app/delete/ci.ts](https://github.com/adobe/aio-cli-plugin-app/blob/8.5.1/src/commands/app/delete/ci.ts)_
694
+ _See code: [src/commands/app/delete/ci.js](https://github.com/adobe/aio-cli-plugin-app/blob/8.6.1-pre.2022-08-17.163d3a3a/src/commands/app/delete/ci.js)_
437
695
 
438
696
  ## `aio app:delete:event [EVENT-ACTION-NAME]`
439
697
 
@@ -441,43 +699,118 @@ Delete existing Adobe I/O Events actions
441
699
 
442
700
  ```
443
701
  USAGE
444
- $ aio app:delete:event [EVENT-ACTION-NAME]
702
+ $ aio app:delete:event [EVENT-ACTION-NAME] [-v] [--version] [-y]
445
703
 
446
704
  ARGUMENTS
447
705
  EVENT-ACTION-NAME Action `pkg/name` to delete, you can specify multiple actions via a comma separated list
448
706
 
449
- OPTIONS
707
+ FLAGS
450
708
  -v, --verbose Verbose output
451
709
  -y, --yes Skip questions, and use all default values
452
710
  --version Show version
453
711
 
712
+ DESCRIPTION
713
+ Delete existing Adobe I/O Events actions
714
+
454
715
  ALIASES
455
716
  $ aio app:delete:events
456
717
  ```
457
718
 
458
- _See code: [src/commands/app/delete/event.ts](https://github.com/adobe/aio-cli-plugin-app/blob/8.5.1/src/commands/app/delete/event.ts)_
719
+ _See code: [src/commands/app/delete/event.js](https://github.com/adobe/aio-cli-plugin-app/blob/8.6.1-pre.2022-08-17.163d3a3a/src/commands/app/delete/event.js)_
720
+
721
+ ## `aio app:delete:events [EVENT-ACTION-NAME]`
722
+
723
+ Delete existing Adobe I/O Events actions
724
+
725
+ ```
726
+ USAGE
727
+ $ aio app:delete:events [EVENT-ACTION-NAME] [-v] [--version] [-y]
728
+
729
+ ARGUMENTS
730
+ EVENT-ACTION-NAME Action `pkg/name` to delete, you can specify multiple actions via a comma separated list
731
+
732
+ FLAGS
733
+ -v, --verbose Verbose output
734
+ -y, --yes Skip questions, and use all default values
735
+ --version Show version
736
+
737
+ DESCRIPTION
738
+ Delete existing Adobe I/O Events actions
739
+
740
+ ALIASES
741
+ $ aio app:delete:events
742
+ ```
743
+
744
+ ## `aio app:delete:ext`
745
+
746
+ Delete existing extensions
747
+
748
+ ```
749
+ USAGE
750
+ $ aio app:delete:ext [-v] [--version] [-y] [--skip-install] [-e <value>]
751
+
752
+ FLAGS
753
+ -e, --extension=<value>... Specify extensions to delete, skips selection prompt
754
+ -v, --verbose Verbose output
755
+ -y, --yes Skip questions, and use all default values
756
+ --skip-install Skip npm installation after files are created
757
+ --version Show version
758
+
759
+ DESCRIPTION
760
+ Delete existing extensions
761
+
762
+ ALIASES
763
+ $ aio app:delete:ext
764
+ $ aio app:delete:extensions
765
+ ```
459
766
 
460
767
  ## `aio app:delete:extension`
461
768
 
462
- Add new extensions or a standalone application to the project
769
+ Delete existing extensions
463
770
 
464
771
  ```
465
772
  USAGE
466
- $ aio app:delete:extension
773
+ $ aio app:delete:extension [-v] [--version] [-y] [--skip-install] [-e <value>]
467
774
 
468
- OPTIONS
469
- -e, --extension=extension Specify extensions to delete, skips selection prompt
470
- -v, --verbose Verbose output
471
- -y, --yes Skip questions, and use all default values
472
- --skip-install Skip npm installation after files are created
473
- --version Show version
775
+ FLAGS
776
+ -e, --extension=<value>... Specify extensions to delete, skips selection prompt
777
+ -v, --verbose Verbose output
778
+ -y, --yes Skip questions, and use all default values
779
+ --skip-install Skip npm installation after files are created
780
+ --version Show version
781
+
782
+ DESCRIPTION
783
+ Delete existing extensions
474
784
 
475
785
  ALIASES
476
786
  $ aio app:delete:ext
477
787
  $ aio app:delete:extensions
478
788
  ```
479
789
 
480
- _See code: [src/commands/app/delete/extension.ts](https://github.com/adobe/aio-cli-plugin-app/blob/8.5.1/src/commands/app/delete/extension.ts)_
790
+ _See code: [src/commands/app/delete/extension.js](https://github.com/adobe/aio-cli-plugin-app/blob/8.6.1-pre.2022-08-17.163d3a3a/src/commands/app/delete/extension.js)_
791
+
792
+ ## `aio app:delete:extensions`
793
+
794
+ Delete existing extensions
795
+
796
+ ```
797
+ USAGE
798
+ $ aio app:delete:extensions [-v] [--version] [-y] [--skip-install] [-e <value>]
799
+
800
+ FLAGS
801
+ -e, --extension=<value>... Specify extensions to delete, skips selection prompt
802
+ -v, --verbose Verbose output
803
+ -y, --yes Skip questions, and use all default values
804
+ --skip-install Skip npm installation after files are created
805
+ --version Show version
806
+
807
+ DESCRIPTION
808
+ Delete existing extensions
809
+
810
+ ALIASES
811
+ $ aio app:delete:ext
812
+ $ aio app:delete:extensions
813
+ ```
481
814
 
482
815
  ## `aio app:delete:service`
483
816
 
@@ -485,17 +818,39 @@ Delete Services in the current Workspace
485
818
 
486
819
  ```
487
820
  USAGE
488
- $ aio app:delete:service
821
+ $ aio app:delete:service [-v] [--version]
489
822
 
490
- OPTIONS
823
+ FLAGS
491
824
  -v, --verbose Verbose output
492
825
  --version Show version
493
826
 
827
+ DESCRIPTION
828
+ Delete Services in the current Workspace
829
+
494
830
  ALIASES
495
831
  $ aio app:delete:services
496
832
  ```
497
833
 
498
- _See code: [src/commands/app/delete/service.ts](https://github.com/adobe/aio-cli-plugin-app/blob/8.5.1/src/commands/app/delete/service.ts)_
834
+ _See code: [src/commands/app/delete/service.js](https://github.com/adobe/aio-cli-plugin-app/blob/8.6.1-pre.2022-08-17.163d3a3a/src/commands/app/delete/service.js)_
835
+
836
+ ## `aio app:delete:services`
837
+
838
+ Delete Services in the current Workspace
839
+
840
+ ```
841
+ USAGE
842
+ $ aio app:delete:services [-v] [--version]
843
+
844
+ FLAGS
845
+ -v, --verbose Verbose output
846
+ --version Show version
847
+
848
+ DESCRIPTION
849
+ Delete Services in the current Workspace
850
+
851
+ ALIASES
852
+ $ aio app:delete:services
853
+ ```
499
854
 
500
855
  ## `aio app:delete:web-assets`
501
856
 
@@ -503,15 +858,18 @@ Delete existing web assets
503
858
 
504
859
  ```
505
860
  USAGE
506
- $ aio app:delete:web-assets
861
+ $ aio app:delete:web-assets [-v] [--version] [-y]
507
862
 
508
- OPTIONS
863
+ FLAGS
509
864
  -v, --verbose Verbose output
510
865
  -y, --yes Skip questions, and use all default values
511
866
  --version Show version
867
+
868
+ DESCRIPTION
869
+ Delete existing web assets
512
870
  ```
513
871
 
514
- _See code: [src/commands/app/delete/web-assets.ts](https://github.com/adobe/aio-cli-plugin-app/blob/8.5.1/src/commands/app/delete/web-assets.ts)_
872
+ _See code: [src/commands/app/delete/web-assets.js](https://github.com/adobe/aio-cli-plugin-app/blob/8.6.1-pre.2022-08-17.163d3a3a/src/commands/app/delete/web-assets.js)_
515
873
 
516
874
  ## `aio app:deploy`
517
875
 
@@ -519,54 +877,40 @@ Build and deploy an Adobe I/O App
519
877
 
520
878
  ```
521
879
  USAGE
522
- $ aio app:deploy
880
+ $ aio app:deploy [-v] [--version] [--skip-static] [--skip-web-assets] [--skip-actions] [--actions | -a
881
+ <value>] [--web-assets] [--force-build | ] [--content-hash] [--web-optimize] [-e <value> | ] [--skip-build]
882
+ [--skip-deploy] [--build] [--open] [--force-publish | | [--publish | ]] [--log-forwarding-update]
523
883
 
524
- OPTIONS
525
- -a, --action=action Deploy only a specific action, the flags can be specified multiple times, this will set
884
+ FLAGS
885
+ -a, --action=<value>... Deploy only a specific action, the flags can be specified multiple times, this will set
526
886
  --no-publish
527
-
528
- -e, --extension=extension Deploy only a specific extension, the flags can be specified multiple times
529
-
887
+ -e, --extension=<value>... Deploy only a specific extension, the flags can be specified multiple times
530
888
  -v, --verbose Verbose output
531
-
532
889
  --[no-]actions [default: true] Deploy actions if any
533
-
534
890
  --[no-]build [default: true] Run the build phase before deployment
535
-
536
891
  --[no-]content-hash [default: true] Enable content hashing in browser code
537
-
538
892
  --[no-]force-build [default: true] Force a build even if one already exists
539
-
540
893
  --force-publish Force publish extension(s) to Exchange, delete previously published extension points
541
-
542
894
  --[no-]log-forwarding-update [default: true] Update log forwarding configuration on server
543
-
544
895
  --open Open the default web browser after a successful deploy, only valid if your app has a
545
896
  front-end
546
-
547
897
  --[no-]publish [default: true] Publish extension(s) to Exchange
548
-
549
898
  --skip-actions [deprecated] Please use --no-actions
550
-
551
899
  --skip-build [deprecated] Please use --no-build
552
-
553
900
  --skip-deploy [deprecated] Please use 'aio app build'
554
-
555
901
  --skip-static [deprecated] Please use --no-web-assets
556
-
557
902
  --skip-web-assets [deprecated] Please use --no-web-assets
558
-
559
903
  --version Show version
560
-
561
904
  --[no-]web-assets [default: true] Deploy web-assets if any
562
-
563
905
  --web-optimize [default: false] Enable optimization (minification) of web js/css/html
564
906
 
565
907
  DESCRIPTION
908
+ Build and deploy an Adobe I/O App
909
+
566
910
  This will always force a rebuild unless --no-force-build is set.
567
911
  ```
568
912
 
569
- _See code: [src/commands/app/deploy.ts](https://github.com/adobe/aio-cli-plugin-app/blob/8.5.1/src/commands/app/deploy.ts)_
913
+ _See code: [src/commands/app/deploy.js](https://github.com/adobe/aio-cli-plugin-app/blob/8.6.1-pre.2022-08-17.163d3a3a/src/commands/app/deploy.js)_
570
914
 
571
915
  ## `aio app:get-url [ACTION]`
572
916
 
@@ -574,18 +918,22 @@ Get action URLs
574
918
 
575
919
  ```
576
920
  USAGE
577
- $ aio app:get-url [ACTION]
921
+ $ aio app:get-url [ACTION] [-v] [--version] [--cdn] [-j] [-h] [-y] [--local]
578
922
 
579
- OPTIONS
923
+ FLAGS
580
924
  -h, --hson Output human readable json
581
925
  -j, --json Output json
582
926
  -v, --verbose Verbose output
583
927
  -y, --yml Output yml
584
928
  --cdn Display CDN based action URLs
929
+ --local Display locally based action URLs
585
930
  --version Show version
931
+
932
+ DESCRIPTION
933
+ Get action URLs
586
934
  ```
587
935
 
588
- _See code: [src/commands/app/get-url.ts](https://github.com/adobe/aio-cli-plugin-app/blob/8.5.1/src/commands/app/get-url.ts)_
936
+ _See code: [src/commands/app/get-url.js](https://github.com/adobe/aio-cli-plugin-app/blob/8.6.1-pre.2022-08-17.163d3a3a/src/commands/app/get-url.js)_
589
937
 
590
938
  ## `aio app:info`
591
939
 
@@ -593,18 +941,21 @@ Display settings/configuration in use by an Adobe I/O App
593
941
 
594
942
  ```
595
943
  USAGE
596
- $ aio app:info
944
+ $ aio app:info [-v] [--version] [-j | -h | -y] [--mask]
597
945
 
598
- OPTIONS
946
+ FLAGS
599
947
  -h, --hson Output human readable json
600
948
  -j, --json Output json
601
949
  -v, --verbose Verbose output
602
950
  -y, --yml Output yml
603
951
  --[no-]mask Hide known private info
604
952
  --version Show version
953
+
954
+ DESCRIPTION
955
+ Display settings/configuration in use by an Adobe I/O App
605
956
  ```
606
957
 
607
- _See code: [src/commands/app/info.ts](https://github.com/adobe/aio-cli-plugin-app/blob/8.5.1/src/commands/app/info.ts)_
958
+ _See code: [src/commands/app/info.js](https://github.com/adobe/aio-cli-plugin-app/blob/8.6.1-pre.2022-08-17.163d3a3a/src/commands/app/info.js)_
608
959
 
609
960
  ## `aio app:init [PATH]`
610
961
 
@@ -612,49 +963,93 @@ Create a new Adobe I/O App
612
963
 
613
964
  ```
614
965
  USAGE
615
- $ aio app:init [PATH]
966
+ $ aio app:init [PATH] [-v] [--version] [-s] [--install] [-y] [--login] [-e <value> | --extensions] [-w
967
+ <value> | -i <value>] [--confirm-new-workspace]
616
968
 
617
969
  ARGUMENTS
618
970
  PATH [default: .] Path to the app directory
619
971
 
620
- OPTIONS
621
- -e, --extension=extension Extension point(s) to implement
622
- -i, --import=import Import an Adobe I/O Developer Console configuration file
623
- -s, --skip-install [deprecated] Please use --no-install
624
- -v, --verbose Verbose output
972
+ FLAGS
973
+ -e, --extension=<value>... Extension point(s) to implement
974
+ -i, --import=<value> Import an Adobe I/O Developer Console configuration file
975
+ -s, --skip-install [deprecated] Please use --no-install
976
+ -v, --verbose Verbose output
977
+ -w, --workspace=<value> [default: Stage] Specify the Adobe Developer Console Workspace to init from, defaults to
978
+ Stage
979
+ -y, --yes Skip questions, and use all default values
980
+ --confirm-new-workspace Skip and confirm prompt for creating a new workspace
981
+ --[no-]extensions Use --no-extensions to create a blank application that does not integrate with Exchange
982
+ --[no-]install [default: true] Run npm installation after files are created
983
+ --[no-]login Login using your Adobe ID for interacting with Adobe I/O Developer Console
984
+ --version Show version
625
985
 
626
- -w, --workspace=workspace [default: Stage] Specify the Adobe Developer Console Workspace to init from, defaults to
627
- Stage
986
+ DESCRIPTION
987
+ Create a new Adobe I/O App
988
+ ```
628
989
 
629
- -y, --yes Skip questions, and use all default values
990
+ _See code: [src/commands/app/init.js](https://github.com/adobe/aio-cli-plugin-app/blob/8.6.1-pre.2022-08-17.163d3a3a/src/commands/app/init.js)_
630
991
 
631
- --confirm-new-workspace Skip and confirm prompt for creating a new workspace
992
+ ## `aio app:list`
632
993
 
633
- --[no-]extensions Use --no-extensions to create a blank application that does not integrate with Exchange
994
+ List components for Adobe I/O App
634
995
 
635
- --[no-]install [default: true] Run npm installation after files are created
996
+ ```
997
+ USAGE
998
+ $ aio app:list [-v] [--version]
636
999
 
637
- --[no-]login Login using your Adobe ID for interacting with Adobe I/O Developer Console
1000
+ FLAGS
1001
+ -v, --verbose Verbose output
1002
+ --version Show version
638
1003
 
639
- --version Show version
1004
+ DESCRIPTION
1005
+ List components for Adobe I/O App
640
1006
  ```
641
1007
 
642
- _See code: [src/commands/app/init.ts](https://github.com/adobe/aio-cli-plugin-app/blob/8.5.1/src/commands/app/init.ts)_
1008
+ _See code: [src/commands/app/list/index.js](https://github.com/adobe/aio-cli-plugin-app/blob/8.6.1-pre.2022-08-17.163d3a3a/src/commands/app/list/index.js)_
643
1009
 
644
- ## `aio app:list`
1010
+ ## `aio app:list:ext`
645
1011
 
646
- List components for Adobe I/O App
1012
+ List implemented extensions
647
1013
 
648
1014
  ```
649
1015
  USAGE
650
- $ aio app:list
1016
+ $ aio app:list:ext [-v] [--version] [-j] [-y]
651
1017
 
652
- OPTIONS
1018
+ FLAGS
1019
+ -j, --json Output json
653
1020
  -v, --verbose Verbose output
1021
+ -y, --yml Output yml
654
1022
  --version Show version
1023
+
1024
+ DESCRIPTION
1025
+ List implemented extensions
1026
+
1027
+ ALIASES
1028
+ $ aio app:list:ext
1029
+ $ aio app:list:extensions
1030
+ ```
1031
+
1032
+ ## `aio app:list:ext-points`
1033
+
1034
+ List all extension points for the selected org
1035
+
655
1036
  ```
1037
+ USAGE
1038
+ $ aio app:list:ext-points [-v] [--version] [-j] [-y]
656
1039
 
657
- _See code: [src/commands/app/list/index.ts](https://github.com/adobe/aio-cli-plugin-app/blob/8.5.1/src/commands/app/list/index.ts)_
1040
+ FLAGS
1041
+ -j, --json Output json
1042
+ -v, --verbose Verbose output
1043
+ -y, --yml Output yml
1044
+ --version Show version
1045
+
1046
+ DESCRIPTION
1047
+ List all extension points for the selected org
1048
+
1049
+ ALIASES
1050
+ $ aio app:list:ext-points
1051
+ $ aio app:list:extension-points
1052
+ ```
658
1053
 
659
1054
  ## `aio app:list:extension`
660
1055
 
@@ -662,20 +1057,23 @@ List implemented extensions
662
1057
 
663
1058
  ```
664
1059
  USAGE
665
- $ aio app:list:extension
1060
+ $ aio app:list:extension [-v] [--version] [-j] [-y]
666
1061
 
667
- OPTIONS
1062
+ FLAGS
668
1063
  -j, --json Output json
669
1064
  -v, --verbose Verbose output
670
1065
  -y, --yml Output yml
671
1066
  --version Show version
672
1067
 
1068
+ DESCRIPTION
1069
+ List implemented extensions
1070
+
673
1071
  ALIASES
674
1072
  $ aio app:list:ext
675
1073
  $ aio app:list:extensions
676
1074
  ```
677
1075
 
678
- _See code: [src/commands/app/list/extension.ts](https://github.com/adobe/aio-cli-plugin-app/blob/8.5.1/src/commands/app/list/extension.ts)_
1076
+ _See code: [src/commands/app/list/extension.js](https://github.com/adobe/aio-cli-plugin-app/blob/8.6.1-pre.2022-08-17.163d3a3a/src/commands/app/list/extension.js)_
679
1077
 
680
1078
  ## `aio app:list:extension-points`
681
1079
 
@@ -683,20 +1081,45 @@ List all extension points for the selected org
683
1081
 
684
1082
  ```
685
1083
  USAGE
686
- $ aio app:list:extension-points
1084
+ $ aio app:list:extension-points [-v] [--version] [-j] [-y]
687
1085
 
688
- OPTIONS
1086
+ FLAGS
689
1087
  -j, --json Output json
690
1088
  -v, --verbose Verbose output
691
1089
  -y, --yml Output yml
692
1090
  --version Show version
693
1091
 
1092
+ DESCRIPTION
1093
+ List all extension points for the selected org
1094
+
694
1095
  ALIASES
695
1096
  $ aio app:list:ext-points
696
1097
  $ aio app:list:extension-points
697
1098
  ```
698
1099
 
699
- _See code: [src/commands/app/list/extension-points.ts](https://github.com/adobe/aio-cli-plugin-app/blob/8.5.1/src/commands/app/list/extension-points.ts)_
1100
+ _See code: [src/commands/app/list/extension-points.js](https://github.com/adobe/aio-cli-plugin-app/blob/8.6.1-pre.2022-08-17.163d3a3a/src/commands/app/list/extension-points.js)_
1101
+
1102
+ ## `aio app:list:extensions`
1103
+
1104
+ List implemented extensions
1105
+
1106
+ ```
1107
+ USAGE
1108
+ $ aio app:list:extensions [-v] [--version] [-j] [-y]
1109
+
1110
+ FLAGS
1111
+ -j, --json Output json
1112
+ -v, --verbose Verbose output
1113
+ -y, --yml Output yml
1114
+ --version Show version
1115
+
1116
+ DESCRIPTION
1117
+ List implemented extensions
1118
+
1119
+ ALIASES
1120
+ $ aio app:list:ext
1121
+ $ aio app:list:extensions
1122
+ ```
700
1123
 
701
1124
  ## `aio app:logs`
702
1125
 
@@ -704,20 +1127,23 @@ Fetch logs for an Adobe I/O App
704
1127
 
705
1128
  ```
706
1129
  USAGE
707
- $ aio app:logs
1130
+ $ aio app:logs [-v] [--version] [-l <value>] [-a <value>] [-r] [-t | -w | -o]
1131
+
1132
+ FLAGS
1133
+ -a, --action=<value>... Fetch logs for a specific action
1134
+ -l, --limit=<value> [default: 1] Limit number of activations to fetch logs from ( 1-50 )
1135
+ -o, --poll Fetch logs continuously
1136
+ -r, --strip strip timestamp information and output first line only
1137
+ -t, --tail Fetch logs continuously
1138
+ -v, --verbose Verbose output
1139
+ -w, --watch Fetch logs continuously
1140
+ --version Show version
708
1141
 
709
- OPTIONS
710
- -a, --action=action Fetch logs for a specific action
711
- -l, --limit=limit [default: 1] Limit number of activations to fetch logs from ( 1-50 )
712
- -o, --poll Fetch logs continuously
713
- -r, --strip strip timestamp information and output first line only
714
- -t, --tail Fetch logs continuously
715
- -v, --verbose Verbose output
716
- -w, --watch Fetch logs continuously
717
- --version Show version
1142
+ DESCRIPTION
1143
+ Fetch logs for an Adobe I/O App
718
1144
  ```
719
1145
 
720
- _See code: [src/commands/app/logs.ts](https://github.com/adobe/aio-cli-plugin-app/blob/8.5.1/src/commands/app/logs.ts)_
1146
+ _See code: [src/commands/app/logs.js](https://github.com/adobe/aio-cli-plugin-app/blob/8.6.1-pre.2022-08-17.163d3a3a/src/commands/app/logs.js)_
721
1147
 
722
1148
  ## `aio app:run`
723
1149
 
@@ -725,20 +1151,23 @@ Run an Adobe I/O App
725
1151
 
726
1152
  ```
727
1153
  USAGE
728
- $ aio app:run
1154
+ $ aio app:run [-v] [--version] [--serve] [--actions | [--local | --skip-actions]] [--open] [-e <value>]
1155
+
1156
+ FLAGS
1157
+ -e, --extension=<value> Run only a specific extension, this flag can only be specified once
1158
+ -v, --verbose Verbose output
1159
+ --[no-]actions [default: true] Run actions, defaults to true, to skip actions use --no-actions
1160
+ --local Run/debug actions locally ( requires Docker running )
1161
+ --open Open the default web browser after a successful run, only valid if your app has a front-end
1162
+ --[no-]serve [default: true] Start frontend server (experimental)
1163
+ --skip-actions [deprecated] Please use --no-actions
1164
+ --version Show version
729
1165
 
730
- OPTIONS
731
- -e, --extension=extension Run only a specific extension, this flag can only be specified once
732
- -v, --verbose Verbose output
733
- --[no-]actions [default: true] Run actions, defaults to true, to skip actions use --no-actions
734
- --local Run/debug actions locally ( requires Docker running )
735
- --open Open the default web browser after a successful run, only valid if your app has a front-end
736
- --[no-]serve [default: true] Start frontend server (experimental)
737
- --skip-actions [deprecated] Please use --no-actions
738
- --version Show version
1166
+ DESCRIPTION
1167
+ Run an Adobe I/O App
739
1168
  ```
740
1169
 
741
- _See code: [src/commands/app/run.ts](https://github.com/adobe/aio-cli-plugin-app/blob/8.5.1/src/commands/app/run.ts)_
1170
+ _See code: [src/commands/app/run.js](https://github.com/adobe/aio-cli-plugin-app/blob/8.6.1-pre.2022-08-17.163d3a3a/src/commands/app/run.js)_
742
1171
 
743
1172
  ## `aio app:test`
744
1173
 
@@ -746,24 +1175,30 @@ Run tests for an Adobe I/O App
746
1175
 
747
1176
  ```
748
1177
  USAGE
749
- $ aio app:test
1178
+ $ aio app:test [-v] [--version] [-e <value> | -a <value>] [--all] [--e2e] [--unit]
750
1179
 
751
- OPTIONS
752
- -a, --action=action the action(s) to test
753
- -e, --extension=extension the extension(s) to test
754
- --all run both unit and e2e tests
755
- --e2e run e2e tests
756
- --unit run unit tests
1180
+ FLAGS
1181
+ -a, --action=<value>... the action(s) to test
1182
+ -e, --extension=<value>... the extension(s) to test
1183
+ -v, --verbose Verbose output
1184
+ --all run both unit and e2e tests
1185
+ --e2e run e2e tests
1186
+ --unit run unit tests
1187
+ --version Show version
757
1188
 
758
1189
  DESCRIPTION
1190
+ Run tests for an Adobe I/O App
1191
+
759
1192
  If no flags are specified, by default only unit-tests are run.
760
1193
 
761
1194
  For the --action flag, it tries a substring search on the 'package-name/action-name' pair for an action.
1195
+
762
1196
  For the --extension flag, it tries a substring search on the 'extension-name' only.
1197
+
763
1198
  If the extension has a hook called 'test' in its 'ext.config.yaml', the script specified will be run instead.
764
1199
  ```
765
1200
 
766
- _See code: [src/commands/app/test.ts](https://github.com/adobe/aio-cli-plugin-app/blob/8.5.1/src/commands/app/test.ts)_
1201
+ _See code: [src/commands/app/test.js](https://github.com/adobe/aio-cli-plugin-app/blob/8.6.1-pre.2022-08-17.163d3a3a/src/commands/app/test.js)_
767
1202
 
768
1203
  ## `aio app:undeploy`
769
1204
 
@@ -771,22 +1206,26 @@ Undeploys an Adobe I/O App
771
1206
 
772
1207
  ```
773
1208
  USAGE
774
- $ aio app:undeploy
1209
+ $ aio app:undeploy [-v] [--version] [--skip-static] [--skip-web-assets] [--skip-actions] [--actions]
1210
+ [--web-assets] [-e <value>] [--force-unpublish | --unpublish]
1211
+
1212
+ FLAGS
1213
+ -e, --extension=<value>... Undeploy only a specific extension, the flags can be specified multiple times
1214
+ -v, --verbose Verbose output
1215
+ --[no-]actions [default: true] Undeploy actions if any
1216
+ --force-unpublish Force unpublish extension(s) from Exchange, will delete all extension points
1217
+ --skip-actions [deprecated] Please use --no-actions
1218
+ --skip-static [deprecated] Please use --no-web-assets
1219
+ --skip-web-assets [deprecated] Please use --no-web-assets
1220
+ --[no-]unpublish [default: true] Unpublish selected extension(s) from Exchange
1221
+ --version Show version
1222
+ --[no-]web-assets [default: true] Undeploy web-assets if any
775
1223
 
776
- OPTIONS
777
- -e, --extension=extension Undeploy only a specific extension, the flags can be specified multiple times
778
- -v, --verbose Verbose output
779
- --[no-]actions [default: true] Undeploy actions if any
780
- --force-unpublish Force unpublish extension(s) from Exchange, will delete all extension points
781
- --skip-actions [deprecated] Please use --no-actions
782
- --skip-static [deprecated] Please use --no-web-assets
783
- --skip-web-assets [deprecated] Please use --no-web-assets
784
- --[no-]unpublish [default: true] Unpublish selected extension(s) from Exchange
785
- --version Show version
786
- --[no-]web-assets [default: true] Undeploy web-assets if any
1224
+ DESCRIPTION
1225
+ Undeploys an Adobe I/O App
787
1226
  ```
788
1227
 
789
- _See code: [src/commands/app/undeploy.ts](https://github.com/adobe/aio-cli-plugin-app/blob/8.5.1/src/commands/app/undeploy.ts)_
1228
+ _See code: [src/commands/app/undeploy.js](https://github.com/adobe/aio-cli-plugin-app/blob/8.6.1-pre.2022-08-17.163d3a3a/src/commands/app/undeploy.js)_
790
1229
 
791
1230
  ## `aio app:use [CONFIG_FILE_PATH]`
792
1231
 
@@ -794,50 +1233,43 @@ Import an Adobe Developer Console configuration file.
794
1233
 
795
1234
  ```
796
1235
  USAGE
797
- $ aio app:use [CONFIG_FILE_PATH]
1236
+ $ aio app:use [CONFIG_FILE_PATH] [-v] [--version] [--overwrite | --merge] [--confirm-new-workspace] [-w
1237
+ <value> | [-g | -w <value>] | ] [--no-service-sync | --confirm-service-sync] [--no-input]
798
1238
 
799
1239
  ARGUMENTS
800
1240
  CONFIG_FILE_PATH path to an Adobe I/O Developer Console configuration file
801
1241
 
802
- OPTIONS
803
- -g, --global Use the global Adobe Developer Console Org / Project / Workspace configuration,
804
- which can be set via `aio console` commands
805
-
806
- -v, --verbose Verbose output
807
-
808
- -w, --workspace=workspace Specify the Adobe Developer Console Workspace name or Workspace id to import the
809
- configuration from
810
-
811
- -w, --workspace-name=workspace-name [DEPRECATED]: please use --workspace instead
812
-
813
- --confirm-new-workspace Skip and confirm prompt for creating a new workspace
814
-
815
- --confirm-service-sync Skip the Service sync prompt and overwrite Service subscriptions in the new
816
- Workspace with current subscriptions
817
-
818
- --merge Merge any .aio and .env files during import of the Adobe Developer Console
819
- configuration file
820
-
821
- --no-input Skip user prompts by setting --no-service-sync and --merge. Requires one of
822
- config_file_path or --global or --workspace
823
-
824
- --no-service-sync Skip the Service sync prompt and do not attach current Service subscriptions to
825
- the new Workspace
826
-
827
- --overwrite Overwrite any .aio and .env files during import of the Adobe Developer Console
828
- configuration file
829
-
830
- --version Show version
1242
+ FLAGS
1243
+ -g, --global Use the global Adobe Developer Console Org / Project / Workspace configuration, which
1244
+ can be set via `aio console` commands
1245
+ -v, --verbose Verbose output
1246
+ -w, --workspace=<value> Specify the Adobe Developer Console Workspace name or Workspace id to import the
1247
+ configuration from
1248
+ -w, --workspace-name=<value> [DEPRECATED]: please use --workspace instead
1249
+ --confirm-new-workspace Skip and confirm prompt for creating a new workspace
1250
+ --confirm-service-sync Skip the Service sync prompt and overwrite Service subscriptions in the new Workspace
1251
+ with current subscriptions
1252
+ --merge Merge any .aio and .env files during import of the Adobe Developer Console configuration
1253
+ file
1254
+ --no-input Skip user prompts by setting --no-service-sync and --merge. Requires one of
1255
+ config_file_path or --global or --workspace
1256
+ --no-service-sync Skip the Service sync prompt and do not attach current Service subscriptions to the new
1257
+ Workspace
1258
+ --overwrite Overwrite any .aio and .env files during import of the Adobe Developer Console
1259
+ configuration file
1260
+ --version Show version
831
1261
 
832
1262
  DESCRIPTION
833
- If the optional configuration file is not set, this command will retrieve the console org, project, and workspace
1263
+ Import an Adobe Developer Console configuration file.
1264
+
1265
+ If the optional configuration file is not set, this command will retrieve the console org, project, and workspace
834
1266
  settings from the global config.
835
1267
 
836
1268
  To set these global config values, see the help text for 'aio console --help'.
837
1269
 
838
- To download the configuration file for your project, select the 'Download' button in the toolbar of your project's
1270
+ To download the configuration file for your project, select the 'Download' button in the toolbar of your project's
839
1271
  page in https://console.adobe.io
840
1272
  ```
841
1273
 
842
- _See code: [src/commands/app/use.ts](https://github.com/adobe/aio-cli-plugin-app/blob/8.5.1/src/commands/app/use.ts)_
1274
+ _See code: [src/commands/app/use.js](https://github.com/adobe/aio-cli-plugin-app/blob/8.6.1-pre.2022-08-17.163d3a3a/src/commands/app/use.js)_
843
1275
  <!-- commandsstop -->