@@ -96,7 +96,7 @@ $ npm install -g @adobe/aio-cli
9696$ aio COMMAND
9797running command...
9898$ aio (--version| -v)
99- @adobe/aio-cli/10.3.0 darwin-arm64 node-v18.20.4
99+ @adobe/aio-cli/10.3.1 darwin-arm64 node-v18.20.4
100100$ aio --help [COMMAND]
101101USAGE
102102 $ aio COMMAND
@@ -156,10 +156,14 @@ USAGE
156156* [ ` aio app logs ` ] ( #aio-app-logs )
157157* [ ` aio app pack [PATH] ` ] ( #aio-app-pack-path )
158158* [ ` aio app run ` ] ( #aio-app-run )
159+ * [ ` aio app state del [KEYS] ` ] ( #aio-app-state-del-keys )
159160* [ ` aio app state delete [KEYS] ` ] ( #aio-app-state-delete-keys )
160161* [ ` aio app state get KEY ` ] ( #aio-app-state-get-key )
161162* [ ` aio app state list ` ] ( #aio-app-state-list )
163+ * [ ` aio app state ls ` ] ( #aio-app-state-ls )
162164* [ ` aio app state put KEY VALUE ` ] ( #aio-app-state-put-key-value )
165+ * [ ` aio app state remove [KEYS] ` ] ( #aio-app-state-remove-keys )
166+ * [ ` aio app state rm [KEYS] ` ] ( #aio-app-state-rm-keys )
163167* [ ` aio app state stats ` ] ( #aio-app-state-stats )
164168* [ ` aio app test ` ] ( #aio-app-test )
165169* [ ` aio app undeploy ` ] ( #aio-app-undeploy )
@@ -1666,6 +1670,46 @@ DESCRIPTION
16661670
16671671_ See code: [ @adobe/aio-cli-plugin-app ] ( https://github.com/adobe/aio-cli-plugin-app/blob/13.0.0/src/commands/app/run.js ) _
16681672
1673+ ## ` aio app state del [KEYS] `
1674+
1675+ Delete key-values
1676+
1677+ ```
1678+ USAGE
1679+ $ aio app state del [KEYS...] [--json] [--region amer|emea] [--match <value>] [--force]
1680+
1681+ ARGUMENTS
1682+ KEYS... keys to delete. Above 5 keys, you will be prompted for confirmation
1683+
1684+ FLAGS
1685+ --force [use with caution!] force delete, no safety prompt
1686+ --match=<value> [use with caution!] deletes ALL key-values matching the provided glob-like pattern
1687+ --region=<option> State region. Defaults to 'AIO_STATE_REGION' env or 'amer' if neither is set.
1688+ <options: amer|emea>
1689+
1690+ GLOBAL FLAGS
1691+ --json Format output as json.
1692+
1693+ DESCRIPTION
1694+ Delete key-values
1695+
1696+ ALIASES
1697+ $ aio app state del
1698+ $ aio app state remove
1699+ $ aio app state rm
1700+
1701+ EXAMPLES
1702+ $ aio app state delete key
1703+
1704+ $ aio app state delete key1 key2 key3
1705+
1706+ $ aio app state delete --match 'gl*b'
1707+
1708+ $ aio app state delete --match 'gl*b' --json
1709+
1710+ $ aio app state delete --match 'be-carreful*' --force
1711+ ```
1712+
16691713## ` aio app state delete [KEYS] `
16701714
16711715Delete key-values
@@ -1690,7 +1734,9 @@ DESCRIPTION
16901734 Delete key-values
16911735
16921736ALIASES
1693- $ aio app state delete
1737+ $ aio app state del
1738+ $ aio app state remove
1739+ $ aio app state rm
16941740
16951741EXAMPLES
16961742 $ aio app state delete key
@@ -1725,9 +1771,6 @@ GLOBAL FLAGS
17251771DESCRIPTION
17261772 Get a key-value
17271773
1728- ALIASES
1729- $ aio app state get
1730-
17311774EXAMPLES
17321775 $ aio app state get key
17331776
@@ -1756,8 +1799,42 @@ DESCRIPTION
17561799 List key-values
17571800
17581801ALIASES
1802+ $ aio app state ls
1803+
1804+ EXAMPLES
17591805 $ aio app state list
17601806
1807+ $ aio app state list --match 'gl*b'
1808+
1809+ $ aio app state list --json
1810+
1811+ $ aio app state list | less
1812+
1813+ $ aio app state list | wc -l
1814+ ```
1815+
1816+ ## ` aio app state ls `
1817+
1818+ List key-values
1819+
1820+ ```
1821+ USAGE
1822+ $ aio app state ls [--json] [--region amer|emea] [-m <value>]
1823+
1824+ FLAGS
1825+ -m, --match=<value> [default: *] Glob-like pattern to filter keys
1826+ --region=<option> State region. Defaults to 'AIO_STATE_REGION' env or 'amer' if neither is set.
1827+ <options: amer|emea>
1828+
1829+ GLOBAL FLAGS
1830+ --json Format output as json.
1831+
1832+ DESCRIPTION
1833+ List key-values
1834+
1835+ ALIASES
1836+ $ aio app state ls
1837+
17611838EXAMPLES
17621839 $ aio app state list
17631840
@@ -1793,9 +1870,6 @@ GLOBAL FLAGS
17931870DESCRIPTION
17941871 Put a key-value
17951872
1796- ALIASES
1797- $ aio app state put
1798-
17991873EXAMPLES
18001874 $ aio app state put key value
18011875
@@ -1806,6 +1880,86 @@ EXAMPLES
18061880 $ cat value/from/file | xargs -0 ./bin/run.js app state put key
18071881```
18081882
1883+ ## ` aio app state remove [KEYS] `
1884+
1885+ Delete key-values
1886+
1887+ ```
1888+ USAGE
1889+ $ aio app state remove [KEYS...] [--json] [--region amer|emea] [--match <value>] [--force]
1890+
1891+ ARGUMENTS
1892+ KEYS... keys to delete. Above 5 keys, you will be prompted for confirmation
1893+
1894+ FLAGS
1895+ --force [use with caution!] force delete, no safety prompt
1896+ --match=<value> [use with caution!] deletes ALL key-values matching the provided glob-like pattern
1897+ --region=<option> State region. Defaults to 'AIO_STATE_REGION' env or 'amer' if neither is set.
1898+ <options: amer|emea>
1899+
1900+ GLOBAL FLAGS
1901+ --json Format output as json.
1902+
1903+ DESCRIPTION
1904+ Delete key-values
1905+
1906+ ALIASES
1907+ $ aio app state del
1908+ $ aio app state remove
1909+ $ aio app state rm
1910+
1911+ EXAMPLES
1912+ $ aio app state delete key
1913+
1914+ $ aio app state delete key1 key2 key3
1915+
1916+ $ aio app state delete --match 'gl*b'
1917+
1918+ $ aio app state delete --match 'gl*b' --json
1919+
1920+ $ aio app state delete --match 'be-carreful*' --force
1921+ ```
1922+
1923+ ## ` aio app state rm [KEYS] `
1924+
1925+ Delete key-values
1926+
1927+ ```
1928+ USAGE
1929+ $ aio app state rm [KEYS...] [--json] [--region amer|emea] [--match <value>] [--force]
1930+
1931+ ARGUMENTS
1932+ KEYS... keys to delete. Above 5 keys, you will be prompted for confirmation
1933+
1934+ FLAGS
1935+ --force [use with caution!] force delete, no safety prompt
1936+ --match=<value> [use with caution!] deletes ALL key-values matching the provided glob-like pattern
1937+ --region=<option> State region. Defaults to 'AIO_STATE_REGION' env or 'amer' if neither is set.
1938+ <options: amer|emea>
1939+
1940+ GLOBAL FLAGS
1941+ --json Format output as json.
1942+
1943+ DESCRIPTION
1944+ Delete key-values
1945+
1946+ ALIASES
1947+ $ aio app state del
1948+ $ aio app state remove
1949+ $ aio app state rm
1950+
1951+ EXAMPLES
1952+ $ aio app state delete key
1953+
1954+ $ aio app state delete key1 key2 key3
1955+
1956+ $ aio app state delete --match 'gl*b'
1957+
1958+ $ aio app state delete --match 'gl*b' --json
1959+
1960+ $ aio app state delete --match 'be-carreful*' --force
1961+ ```
1962+
18091963## ` aio app state stats `
18101964
18111965Display stats
@@ -1824,9 +1978,6 @@ GLOBAL FLAGS
18241978DESCRIPTION
18251979 Display stats
18261980
1827- ALIASES
1828- $ aio app state stats
1829-
18301981EXAMPLES
18311982 $ aio app state stats
18321983
@@ -2151,7 +2302,7 @@ EXAMPLES
21512302 $ aio autocomplete --refresh-cache
21522303```
21532304
2154- _ See code: [ @oclif/plugin-autocomplete ] ( https://github.com/oclif/plugin-autocomplete/blob/v3.1.4 /src/commands/autocomplete/index.ts ) _
2305+ _ See code: [ @oclif/plugin-autocomplete ] ( https://github.com/oclif/plugin-autocomplete/blob/v3.2.6 /src/commands/autocomplete/index.ts ) _
21552306
21562307## ` aio certificate `
21572308
@@ -3286,7 +3437,7 @@ ALIASES
32863437 $ aio plugins discover
32873438```
32883439
3289- _ See code: [ src/commands/discover.ts] ( https://github.com/adobe/aio-cli/blob/10.3.0 /src/commands/discover.ts ) _
3440+ _ See code: [ src/commands/discover.ts] ( https://github.com/adobe/aio-cli/blob/10.3.1 /src/commands/discover.ts ) _
32903441
32913442## ` aio event `
32923443
@@ -3976,7 +4127,7 @@ DESCRIPTION
39764127 Display help for aio.
39774128```
39784129
3979- _ See code: [ @oclif/plugin-help ] ( https://github.com/oclif/plugin-help/blob/v6.2.3 /src/commands/help.ts ) _
4130+ _ See code: [ @oclif/plugin-help ] ( https://github.com/oclif/plugin-help/blob/v6.2.15 /src/commands/help.ts ) _
39804131
39814132## ` aio info `
39824133
@@ -4117,7 +4268,7 @@ EXAMPLES
41174268 $ aio plugins
41184269```
41194270
4120- _ See code: [ @oclif/plugin-plugins ] ( https://github.com/oclif/plugin-plugins/blob/v5.3.2 /src/commands/plugins/index.ts ) _
4271+ _ See code: [ @oclif/plugin-plugins ] ( https://github.com/oclif/plugin-plugins/blob/v5.4.15 /src/commands/plugins/index.ts ) _
41214272
41224273## ` aio plugins add PLUGIN `
41234274
@@ -4216,7 +4367,7 @@ EXAMPLES
42164367 $ aio plugins inspect myplugin
42174368```
42184369
4219- _ See code: [ @oclif/plugin-plugins ] ( https://github.com/oclif/plugin-plugins/blob/v5.3.2 /src/commands/plugins/inspect.ts ) _
4370+ _ See code: [ @oclif/plugin-plugins ] ( https://github.com/oclif/plugin-plugins/blob/v5.4.15 /src/commands/plugins/inspect.ts ) _
42204371
42214372## ` aio plugins install PLUGIN `
42224373
@@ -4265,7 +4416,7 @@ EXAMPLES
42654416 $ aio plugins install someuser/someplugin
42664417```
42674418
4268- _ See code: [ @oclif/plugin-plugins ] ( https://github.com/oclif/plugin-plugins/blob/v5.3.2 /src/commands/plugins/install.ts ) _
4419+ _ See code: [ @oclif/plugin-plugins ] ( https://github.com/oclif/plugin-plugins/blob/v5.4.15 /src/commands/plugins/install.ts ) _
42694420
42704421## ` aio plugins link PATH `
42714422
@@ -4285,6 +4436,7 @@ FLAGS
42854436
42864437DESCRIPTION
42874438 Links a plugin into the CLI for development.
4439+
42884440 Installation of a linked plugin will override a user-installed or core plugin.
42894441
42904442 e.g. If you have a user-installed or core plugin that has a 'hello' command, installing a linked plugin with a 'hello'
@@ -4295,7 +4447,7 @@ EXAMPLES
42954447 $ aio plugins link myplugin
42964448```
42974449
4298- _ See code: [ @oclif/plugin-plugins ] ( https://github.com/oclif/plugin-plugins/blob/v5.3.2 /src/commands/plugins/link.ts ) _
4450+ _ See code: [ @oclif/plugin-plugins ] ( https://github.com/oclif/plugin-plugins/blob/v5.4.15 /src/commands/plugins/link.ts ) _
42994451
43004452## ` aio plugins remove [PLUGIN] `
43014453
@@ -4336,7 +4488,7 @@ FLAGS
43364488 --reinstall Reinstall all plugins after uninstalling.
43374489```
43384490
4339- _ See code: [ @oclif/plugin-plugins ] ( https://github.com/oclif/plugin-plugins/blob/v5.3.2 /src/commands/plugins/reset.ts ) _
4491+ _ See code: [ @oclif/plugin-plugins ] ( https://github.com/oclif/plugin-plugins/blob/v5.4.15 /src/commands/plugins/reset.ts ) _
43404492
43414493## ` aio plugins uninstall [PLUGIN] `
43424494
@@ -4364,7 +4516,7 @@ EXAMPLES
43644516 $ aio plugins uninstall myplugin
43654517```
43664518
4367- _ See code: [ @oclif/plugin-plugins ] ( https://github.com/oclif/plugin-plugins/blob/v5.3.2 /src/commands/plugins/uninstall.ts ) _
4519+ _ See code: [ @oclif/plugin-plugins ] ( https://github.com/oclif/plugin-plugins/blob/v5.4.15 /src/commands/plugins/uninstall.ts ) _
43684520
43694521## ` aio plugins unlink [PLUGIN] `
43704522
@@ -4408,7 +4560,7 @@ DESCRIPTION
44084560 Update installed plugins.
44094561```
44104562
4411- _ See code: [ @oclif/plugin-plugins ] ( https://github.com/oclif/plugin-plugins/blob/v5.3.2 /src/commands/plugins/update.ts ) _
4563+ _ See code: [ @oclif/plugin-plugins ] ( https://github.com/oclif/plugin-plugins/blob/v5.4.15 /src/commands/plugins/update.ts ) _
44124564
44134565## ` aio report `
44144566
@@ -4446,7 +4598,7 @@ DESCRIPTION
44464598 Clears all installed plugins.
44474599```
44484600
4449- _ See code: [ src/commands/rollback.ts] ( https://github.com/adobe/aio-cli/blob/10.3.0 /src/commands/rollback.ts ) _
4601+ _ See code: [ src/commands/rollback.ts] ( https://github.com/adobe/aio-cli/blob/10.3.1 /src/commands/rollback.ts ) _
44504602
44514603## ` aio rt `
44524604
@@ -13692,7 +13844,7 @@ DESCRIPTION
1369213844 - update user-installed plugins that are not core
1369313845```
1369413846
13695- _ See code: [ src/commands/update.ts] ( https://github.com/adobe/aio-cli/blob/10.3.0 /src/commands/update.ts ) _
13847+ _ See code: [ src/commands/update.ts] ( https://github.com/adobe/aio-cli/blob/10.3.1 /src/commands/update.ts ) _
1369613848
1369713849## ` aio where `
1369813850
0 commit comments