@adobe/aio-cli-plugin-app 8.6.1 → 9.1.0

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 (44) hide show
  1. package/README.md +687 -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 +46 -47
  6. package/schema/config.schema.json +12 -3
  7. package/src/AddCommand.js +3 -3
  8. package/src/BaseCommand.js +5 -6
  9. package/src/commands/app/add/action.js +8 -8
  10. package/src/commands/app/add/ci.js +4 -5
  11. package/src/commands/app/add/event.js +7 -7
  12. package/src/commands/app/add/extension.js +7 -7
  13. package/src/commands/app/add/index.js +3 -3
  14. package/src/commands/app/add/service.js +3 -3
  15. package/src/commands/app/add/web-assets.js +8 -8
  16. package/src/commands/app/build.js +14 -14
  17. package/src/commands/app/config/get/index.js +3 -3
  18. package/src/commands/app/config/index.js +3 -3
  19. package/src/commands/app/config/set/index.js +3 -3
  20. package/src/commands/app/create.js +3 -3
  21. package/src/commands/app/delete/action.js +3 -3
  22. package/src/commands/app/delete/ci.js +6 -6
  23. package/src/commands/app/delete/event.js +3 -3
  24. package/src/commands/app/delete/extension.js +6 -6
  25. package/src/commands/app/delete/index.js +3 -3
  26. package/src/commands/app/delete/web-assets.js +3 -3
  27. package/src/commands/app/deploy.js +19 -21
  28. package/src/commands/app/get-url.js +8 -8
  29. package/src/commands/app/index.js +3 -3
  30. package/src/commands/app/info.js +7 -7
  31. package/src/commands/app/init.js +17 -16
  32. package/src/commands/app/list/extension-points.js +5 -5
  33. package/src/commands/app/list/extension.js +5 -5
  34. package/src/commands/app/list/index.js +3 -3
  35. package/src/commands/app/logs.js +9 -9
  36. package/src/commands/app/run.js +10 -11
  37. package/src/commands/app/test.js +7 -7
  38. package/src/commands/app/undeploy.js +10 -10
  39. package/src/commands/app/use.js +11 -11
  40. package/src/lib/app-helper.js +2 -2
  41. package/src/lib/build-actions.js +3 -2
  42. package/src/lib/import.js +3 -6
  43. package/src/lib/run-dev.js +4 -4
  44. 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.6.1/src/commands/app/index.ts)_
97
+ _See code: [src/commands/app/index.ts](https://github.com/adobe/aio-cli-plugin-app/blob/9.1.0/src/commands/app/index.ts)_
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.6.1/src/commands/app/add/index.ts)_
115
+ _See code: [src/commands/app/add/index.ts](https://github.com/adobe/aio-cli-plugin-app/blob/9.1.0/src/commands/app/add/index.ts)_
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.6.1/src/commands/app/add/action.ts)_
140
+ _See code: [src/commands/app/add/action.ts](https://github.com/adobe/aio-cli-plugin-app/blob/9.1.0/src/commands/app/add/action.ts)_
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.6.1/src/commands/app/add/ci.ts)_
181
+ _See code: [src/commands/app/add/ci.ts](https://github.com/adobe/aio-cli-plugin-app/blob/9.1.0/src/commands/app/add/ci.ts)_
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.6.1/src/commands/app/add/event.ts)_
206
+ _See code: [src/commands/app/add/event.ts](https://github.com/adobe/aio-cli-plugin-app/blob/9.1.0/src/commands/app/add/event.ts)_
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.6.1/src/commands/app/add/extension.ts)_
279
+ _See code: [src/commands/app/add/extension.ts](https://github.com/adobe/aio-cli-plugin-app/blob/9.1.0/src/commands/app/add/extension.ts)_
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.6.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.6.1/src/commands/app/add/web-assets.ts)_
324
+ _See code: [src/commands/app/add/service.ts](https://github.com/adobe/aio-cli-plugin-app/blob/9.1.0/src/commands/app/add/service.ts)_
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.ts](https://github.com/adobe/aio-cli-plugin-app/blob/9.1.0/src/commands/app/add/web-assets.ts)_
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.6.1/src/commands/app/build.ts)_
397
+ _See code: [src/commands/app/build.ts](https://github.com/adobe/aio-cli-plugin-app/blob/9.1.0/src/commands/app/build.ts)_
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.6.1/src/commands/app/config/index.ts)_
419
+ _See code: [src/commands/app/config/index.ts](https://github.com/adobe/aio-cli-plugin-app/blob/9.1.0/src/commands/app/config/index.ts)_
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.6.1/src/commands/app/config/get/index.ts)_
440
+ _See code: [src/commands/app/config/get/index.ts](https://github.com/adobe/aio-cli-plugin-app/blob/9.1.0/src/commands/app/config/get/index.ts)_
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.6.1/src/commands/app/config/get/log-forwarding.ts)_
502
+ _See code: [src/commands/app/config/get/log-forwarding.ts](https://github.com/adobe/aio-cli-plugin-app/blob/9.1.0/src/commands/app/config/get/log-forwarding.ts)_
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.6.1/src/commands/app/config/get/log-forwarding/errors.ts)_
524
+ _See code: [src/commands/app/config/get/log-forwarding/errors.ts](https://github.com/adobe/aio-cli-plugin-app/blob/9.1.0/src/commands/app/config/get/log-forwarding/errors.ts)_
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.6.1/src/commands/app/config/set/index.ts)_
545
+ _See code: [src/commands/app/config/set/index.ts](https://github.com/adobe/aio-cli-plugin-app/blob/9.1.0/src/commands/app/config/set/index.ts)_
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.6.1/src/commands/app/config/set/log-forwarding.ts)_
587
+ _See code: [src/commands/app/config/set/log-forwarding.ts](https://github.com/adobe/aio-cli-plugin-app/blob/9.1.0/src/commands/app/config/set/log-forwarding.ts)_
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.6.1/src/commands/app/create.ts)_
609
+ _See code: [src/commands/app/create.ts](https://github.com/adobe/aio-cli-plugin-app/blob/9.1.0/src/commands/app/create.ts)_
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.6.1/src/commands/app/delete/index.ts)_
627
+ _See code: [src/commands/app/delete/index.ts](https://github.com/adobe/aio-cli-plugin-app/blob/9.1.0/src/commands/app/delete/index.ts)_
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.6.1/src/commands/app/delete/action.ts)_
652
+ _See code: [src/commands/app/delete/action.ts](https://github.com/adobe/aio-cli-plugin-app/blob/9.1.0/src/commands/app/delete/action.ts)_
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.6.1/src/commands/app/delete/ci.ts)_
694
+ _See code: [src/commands/app/delete/ci.ts](https://github.com/adobe/aio-cli-plugin-app/blob/9.1.0/src/commands/app/delete/ci.ts)_
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.6.1/src/commands/app/delete/event.ts)_
719
+ _See code: [src/commands/app/delete/event.ts](https://github.com/adobe/aio-cli-plugin-app/blob/9.1.0/src/commands/app/delete/event.ts)_
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.6.1/src/commands/app/delete/extension.ts)_
790
+ _See code: [src/commands/app/delete/extension.ts](https://github.com/adobe/aio-cli-plugin-app/blob/9.1.0/src/commands/app/delete/extension.ts)_
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.6.1/src/commands/app/delete/service.ts)_
834
+ _See code: [src/commands/app/delete/service.ts](https://github.com/adobe/aio-cli-plugin-app/blob/9.1.0/src/commands/app/delete/service.ts)_
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.6.1/src/commands/app/delete/web-assets.ts)_
872
+ _See code: [src/commands/app/delete/web-assets.ts](https://github.com/adobe/aio-cli-plugin-app/blob/9.1.0/src/commands/app/delete/web-assets.ts)_
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.6.1/src/commands/app/deploy.ts)_
913
+ _See code: [src/commands/app/deploy.ts](https://github.com/adobe/aio-cli-plugin-app/blob/9.1.0/src/commands/app/deploy.ts)_
570
914
 
571
915
  ## `aio app:get-url [ACTION]`
572
916
 
@@ -574,9 +918,9 @@ 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
@@ -584,9 +928,12 @@ OPTIONS
584
928
  --cdn Display CDN based action URLs
585
929
  --local Display locally based action URLs
586
930
  --version Show version
931
+
932
+ DESCRIPTION
933
+ Get action URLs
587
934
  ```
588
935
 
589
- _See code: [src/commands/app/get-url.ts](https://github.com/adobe/aio-cli-plugin-app/blob/8.6.1/src/commands/app/get-url.ts)_
936
+ _See code: [src/commands/app/get-url.ts](https://github.com/adobe/aio-cli-plugin-app/blob/9.1.0/src/commands/app/get-url.ts)_
590
937
 
591
938
  ## `aio app:info`
592
939
 
@@ -594,18 +941,21 @@ Display settings/configuration in use by an Adobe I/O App
594
941
 
595
942
  ```
596
943
  USAGE
597
- $ aio app:info
944
+ $ aio app:info [-v] [--version] [-j | -h | -y] [--mask]
598
945
 
599
- OPTIONS
946
+ FLAGS
600
947
  -h, --hson Output human readable json
601
948
  -j, --json Output json
602
949
  -v, --verbose Verbose output
603
950
  -y, --yml Output yml
604
951
  --[no-]mask Hide known private info
605
952
  --version Show version
953
+
954
+ DESCRIPTION
955
+ Display settings/configuration in use by an Adobe I/O App
606
956
  ```
607
957
 
608
- _See code: [src/commands/app/info.ts](https://github.com/adobe/aio-cli-plugin-app/blob/8.6.1/src/commands/app/info.ts)_
958
+ _See code: [src/commands/app/info.ts](https://github.com/adobe/aio-cli-plugin-app/blob/9.1.0/src/commands/app/info.ts)_
609
959
 
610
960
  ## `aio app:init [PATH]`
611
961
 
@@ -613,49 +963,93 @@ Create a new Adobe I/O App
613
963
 
614
964
  ```
615
965
  USAGE
616
- $ 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]
617
968
 
618
969
  ARGUMENTS
619
970
  PATH [default: .] Path to the app directory
620
971
 
621
- OPTIONS
622
- -e, --extension=extension Extension point(s) to implement
623
- -i, --import=import Import an Adobe I/O Developer Console configuration file
624
- -s, --skip-install [deprecated] Please use --no-install
625
- -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
626
985
 
627
- -w, --workspace=workspace [default: Stage] Specify the Adobe Developer Console Workspace to init from, defaults to
628
- Stage
986
+ DESCRIPTION
987
+ Create a new Adobe I/O App
988
+ ```
629
989
 
630
- -y, --yes Skip questions, and use all default values
990
+ _See code: [src/commands/app/init.ts](https://github.com/adobe/aio-cli-plugin-app/blob/9.1.0/src/commands/app/init.ts)_
631
991
 
632
- --confirm-new-workspace Skip and confirm prompt for creating a new workspace
992
+ ## `aio app:list`
633
993
 
634
- --[no-]extensions Use --no-extensions to create a blank application that does not integrate with Exchange
994
+ List components for Adobe I/O App
635
995
 
636
- --[no-]install [default: true] Run npm installation after files are created
996
+ ```
997
+ USAGE
998
+ $ aio app:list [-v] [--version]
637
999
 
638
- --[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
639
1003
 
640
- --version Show version
1004
+ DESCRIPTION
1005
+ List components for Adobe I/O App
641
1006
  ```
642
1007
 
643
- _See code: [src/commands/app/init.ts](https://github.com/adobe/aio-cli-plugin-app/blob/8.6.1/src/commands/app/init.ts)_
1008
+ _See code: [src/commands/app/list/index.ts](https://github.com/adobe/aio-cli-plugin-app/blob/9.1.0/src/commands/app/list/index.ts)_
644
1009
 
645
- ## `aio app:list`
1010
+ ## `aio app:list:ext`
646
1011
 
647
- List components for Adobe I/O App
1012
+ List implemented extensions
648
1013
 
649
1014
  ```
650
1015
  USAGE
651
- $ aio app:list
1016
+ $ aio app:list:ext [-v] [--version] [-j] [-y]
652
1017
 
653
- OPTIONS
1018
+ FLAGS
1019
+ -j, --json Output json
654
1020
  -v, --verbose Verbose output
1021
+ -y, --yml Output yml
655
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
+
656
1036
  ```
1037
+ USAGE
1038
+ $ aio app:list:ext-points [-v] [--version] [-j] [-y]
657
1039
 
658
- _See code: [src/commands/app/list/index.ts](https://github.com/adobe/aio-cli-plugin-app/blob/8.6.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
+ ```
659
1053
 
660
1054
  ## `aio app:list:extension`
661
1055
 
@@ -663,20 +1057,23 @@ List implemented extensions
663
1057
 
664
1058
  ```
665
1059
  USAGE
666
- $ aio app:list:extension
1060
+ $ aio app:list:extension [-v] [--version] [-j] [-y]
667
1061
 
668
- OPTIONS
1062
+ FLAGS
669
1063
  -j, --json Output json
670
1064
  -v, --verbose Verbose output
671
1065
  -y, --yml Output yml
672
1066
  --version Show version
673
1067
 
1068
+ DESCRIPTION
1069
+ List implemented extensions
1070
+
674
1071
  ALIASES
675
1072
  $ aio app:list:ext
676
1073
  $ aio app:list:extensions
677
1074
  ```
678
1075
 
679
- _See code: [src/commands/app/list/extension.ts](https://github.com/adobe/aio-cli-plugin-app/blob/8.6.1/src/commands/app/list/extension.ts)_
1076
+ _See code: [src/commands/app/list/extension.ts](https://github.com/adobe/aio-cli-plugin-app/blob/9.1.0/src/commands/app/list/extension.ts)_
680
1077
 
681
1078
  ## `aio app:list:extension-points`
682
1079
 
@@ -684,20 +1081,45 @@ List all extension points for the selected org
684
1081
 
685
1082
  ```
686
1083
  USAGE
687
- $ aio app:list:extension-points
1084
+ $ aio app:list:extension-points [-v] [--version] [-j] [-y]
688
1085
 
689
- OPTIONS
1086
+ FLAGS
690
1087
  -j, --json Output json
691
1088
  -v, --verbose Verbose output
692
1089
  -y, --yml Output yml
693
1090
  --version Show version
694
1091
 
1092
+ DESCRIPTION
1093
+ List all extension points for the selected org
1094
+
695
1095
  ALIASES
696
1096
  $ aio app:list:ext-points
697
1097
  $ aio app:list:extension-points
698
1098
  ```
699
1099
 
700
- _See code: [src/commands/app/list/extension-points.ts](https://github.com/adobe/aio-cli-plugin-app/blob/8.6.1/src/commands/app/list/extension-points.ts)_
1100
+ _See code: [src/commands/app/list/extension-points.ts](https://github.com/adobe/aio-cli-plugin-app/blob/9.1.0/src/commands/app/list/extension-points.ts)_
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
+ ```
701
1123
 
702
1124
  ## `aio app:logs`
703
1125
 
@@ -705,20 +1127,23 @@ Fetch logs for an Adobe I/O App
705
1127
 
706
1128
  ```
707
1129
  USAGE
708
- $ 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
709
1141
 
710
- OPTIONS
711
- -a, --action=action Fetch logs for a specific action
712
- -l, --limit=limit [default: 1] Limit number of activations to fetch logs from ( 1-50 )
713
- -o, --poll Fetch logs continuously
714
- -r, --strip strip timestamp information and output first line only
715
- -t, --tail Fetch logs continuously
716
- -v, --verbose Verbose output
717
- -w, --watch Fetch logs continuously
718
- --version Show version
1142
+ DESCRIPTION
1143
+ Fetch logs for an Adobe I/O App
719
1144
  ```
720
1145
 
721
- _See code: [src/commands/app/logs.ts](https://github.com/adobe/aio-cli-plugin-app/blob/8.6.1/src/commands/app/logs.ts)_
1146
+ _See code: [src/commands/app/logs.ts](https://github.com/adobe/aio-cli-plugin-app/blob/9.1.0/src/commands/app/logs.ts)_
722
1147
 
723
1148
  ## `aio app:run`
724
1149
 
@@ -726,20 +1151,23 @@ Run an Adobe I/O App
726
1151
 
727
1152
  ```
728
1153
  USAGE
729
- $ 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
730
1165
 
731
- OPTIONS
732
- -e, --extension=extension Run only a specific extension, this flag can only be specified once
733
- -v, --verbose Verbose output
734
- --[no-]actions [default: true] Run actions, defaults to true, to skip actions use --no-actions
735
- --local Run/debug actions locally ( requires Docker running )
736
- --open Open the default web browser after a successful run, only valid if your app has a front-end
737
- --[no-]serve [default: true] Start frontend server (experimental)
738
- --skip-actions [deprecated] Please use --no-actions
739
- --version Show version
1166
+ DESCRIPTION
1167
+ Run an Adobe I/O App
740
1168
  ```
741
1169
 
742
- _See code: [src/commands/app/run.ts](https://github.com/adobe/aio-cli-plugin-app/blob/8.6.1/src/commands/app/run.ts)_
1170
+ _See code: [src/commands/app/run.ts](https://github.com/adobe/aio-cli-plugin-app/blob/9.1.0/src/commands/app/run.ts)_
743
1171
 
744
1172
  ## `aio app:test`
745
1173
 
@@ -747,24 +1175,30 @@ Run tests for an Adobe I/O App
747
1175
 
748
1176
  ```
749
1177
  USAGE
750
- $ aio app:test
1178
+ $ aio app:test [-v] [--version] [-e <value> | -a <value>] [--all] [--e2e] [--unit]
751
1179
 
752
- OPTIONS
753
- -a, --action=action the action(s) to test
754
- -e, --extension=extension the extension(s) to test
755
- --all run both unit and e2e tests
756
- --e2e run e2e tests
757
- --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
758
1188
 
759
1189
  DESCRIPTION
1190
+ Run tests for an Adobe I/O App
1191
+
760
1192
  If no flags are specified, by default only unit-tests are run.
761
1193
 
762
1194
  For the --action flag, it tries a substring search on the 'package-name/action-name' pair for an action.
1195
+
763
1196
  For the --extension flag, it tries a substring search on the 'extension-name' only.
1197
+
764
1198
  If the extension has a hook called 'test' in its 'ext.config.yaml', the script specified will be run instead.
765
1199
  ```
766
1200
 
767
- _See code: [src/commands/app/test.ts](https://github.com/adobe/aio-cli-plugin-app/blob/8.6.1/src/commands/app/test.ts)_
1201
+ _See code: [src/commands/app/test.ts](https://github.com/adobe/aio-cli-plugin-app/blob/9.1.0/src/commands/app/test.ts)_
768
1202
 
769
1203
  ## `aio app:undeploy`
770
1204
 
@@ -772,22 +1206,26 @@ Undeploys an Adobe I/O App
772
1206
 
773
1207
  ```
774
1208
  USAGE
775
- $ 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
776
1223
 
777
- OPTIONS
778
- -e, --extension=extension Undeploy only a specific extension, the flags can be specified multiple times
779
- -v, --verbose Verbose output
780
- --[no-]actions [default: true] Undeploy actions if any
781
- --force-unpublish Force unpublish extension(s) from Exchange, will delete all extension points
782
- --skip-actions [deprecated] Please use --no-actions
783
- --skip-static [deprecated] Please use --no-web-assets
784
- --skip-web-assets [deprecated] Please use --no-web-assets
785
- --[no-]unpublish [default: true] Unpublish selected extension(s) from Exchange
786
- --version Show version
787
- --[no-]web-assets [default: true] Undeploy web-assets if any
1224
+ DESCRIPTION
1225
+ Undeploys an Adobe I/O App
788
1226
  ```
789
1227
 
790
- _See code: [src/commands/app/undeploy.ts](https://github.com/adobe/aio-cli-plugin-app/blob/8.6.1/src/commands/app/undeploy.ts)_
1228
+ _See code: [src/commands/app/undeploy.ts](https://github.com/adobe/aio-cli-plugin-app/blob/9.1.0/src/commands/app/undeploy.ts)_
791
1229
 
792
1230
  ## `aio app:use [CONFIG_FILE_PATH]`
793
1231
 
@@ -795,50 +1233,43 @@ Import an Adobe Developer Console configuration file.
795
1233
 
796
1234
  ```
797
1235
  USAGE
798
- $ 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]
799
1238
 
800
1239
  ARGUMENTS
801
1240
  CONFIG_FILE_PATH path to an Adobe I/O Developer Console configuration file
802
1241
 
803
- OPTIONS
804
- -g, --global Use the global Adobe Developer Console Org / Project / Workspace configuration,
805
- which can be set via `aio console` commands
806
-
807
- -v, --verbose Verbose output
808
-
809
- -w, --workspace=workspace Specify the Adobe Developer Console Workspace name or Workspace id to import the
810
- configuration from
811
-
812
- -w, --workspace-name=workspace-name [DEPRECATED]: please use --workspace instead
813
-
814
- --confirm-new-workspace Skip and confirm prompt for creating a new workspace
815
-
816
- --confirm-service-sync Skip the Service sync prompt and overwrite Service subscriptions in the new
817
- Workspace with current subscriptions
818
-
819
- --merge Merge any .aio and .env files during import of the Adobe Developer Console
820
- configuration file
821
-
822
- --no-input Skip user prompts by setting --no-service-sync and --merge. Requires one of
823
- config_file_path or --global or --workspace
824
-
825
- --no-service-sync Skip the Service sync prompt and do not attach current Service subscriptions to
826
- the new Workspace
827
-
828
- --overwrite Overwrite any .aio and .env files during import of the Adobe Developer Console
829
- configuration file
830
-
831
- --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
832
1261
 
833
1262
  DESCRIPTION
834
- 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
835
1266
  settings from the global config.
836
1267
 
837
1268
  To set these global config values, see the help text for 'aio console --help'.
838
1269
 
839
- 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
840
1271
  page in https://console.adobe.io
841
1272
  ```
842
1273
 
843
- _See code: [src/commands/app/use.ts](https://github.com/adobe/aio-cli-plugin-app/blob/8.6.1/src/commands/app/use.ts)_
1274
+ _See code: [src/commands/app/use.ts](https://github.com/adobe/aio-cli-plugin-app/blob/9.1.0/src/commands/app/use.ts)_
844
1275
  <!-- commandsstop -->