@@ -96,7 +96,7 @@ $ npm install -g @adobe/aio-cli
96
96
$ aio COMMAND
97
97
running command...
98
98
$ 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
100
100
$ aio --help [COMMAND]
101
101
USAGE
102
102
$ aio COMMAND
@@ -156,10 +156,14 @@ USAGE
156
156
* [ ` aio app logs ` ] ( #aio-app-logs )
157
157
* [ ` aio app pack [PATH] ` ] ( #aio-app-pack-path )
158
158
* [ ` aio app run ` ] ( #aio-app-run )
159
+ * [ ` aio app state del [KEYS] ` ] ( #aio-app-state-del-keys )
159
160
* [ ` aio app state delete [KEYS] ` ] ( #aio-app-state-delete-keys )
160
161
* [ ` aio app state get KEY ` ] ( #aio-app-state-get-key )
161
162
* [ ` aio app state list ` ] ( #aio-app-state-list )
163
+ * [ ` aio app state ls ` ] ( #aio-app-state-ls )
162
164
* [ ` 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 )
163
167
* [ ` aio app state stats ` ] ( #aio-app-state-stats )
164
168
* [ ` aio app test ` ] ( #aio-app-test )
165
169
* [ ` aio app undeploy ` ] ( #aio-app-undeploy )
@@ -1666,6 +1670,46 @@ DESCRIPTION
1666
1670
1667
1671
_ See code: [ @adobe/aio-cli-plugin-app ] ( https://github.com/adobe/aio-cli-plugin-app/blob/13.0.0/src/commands/app/run.js ) _
1668
1672
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
+
1669
1713
## ` aio app state delete [KEYS] `
1670
1714
1671
1715
Delete key-values
@@ -1690,7 +1734,9 @@ DESCRIPTION
1690
1734
Delete key-values
1691
1735
1692
1736
ALIASES
1693
- $ aio app state delete
1737
+ $ aio app state del
1738
+ $ aio app state remove
1739
+ $ aio app state rm
1694
1740
1695
1741
EXAMPLES
1696
1742
$ aio app state delete key
@@ -1725,9 +1771,6 @@ GLOBAL FLAGS
1725
1771
DESCRIPTION
1726
1772
Get a key-value
1727
1773
1728
- ALIASES
1729
- $ aio app state get
1730
-
1731
1774
EXAMPLES
1732
1775
$ aio app state get key
1733
1776
@@ -1756,8 +1799,42 @@ DESCRIPTION
1756
1799
List key-values
1757
1800
1758
1801
ALIASES
1802
+ $ aio app state ls
1803
+
1804
+ EXAMPLES
1759
1805
$ aio app state list
1760
1806
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
+
1761
1838
EXAMPLES
1762
1839
$ aio app state list
1763
1840
@@ -1793,9 +1870,6 @@ GLOBAL FLAGS
1793
1870
DESCRIPTION
1794
1871
Put a key-value
1795
1872
1796
- ALIASES
1797
- $ aio app state put
1798
-
1799
1873
EXAMPLES
1800
1874
$ aio app state put key value
1801
1875
@@ -1806,6 +1880,86 @@ EXAMPLES
1806
1880
$ cat value/from/file | xargs -0 ./bin/run.js app state put key
1807
1881
```
1808
1882
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
+
1809
1963
## ` aio app state stats `
1810
1964
1811
1965
Display stats
@@ -1824,9 +1978,6 @@ GLOBAL FLAGS
1824
1978
DESCRIPTION
1825
1979
Display stats
1826
1980
1827
- ALIASES
1828
- $ aio app state stats
1829
-
1830
1981
EXAMPLES
1831
1982
$ aio app state stats
1832
1983
@@ -2151,7 +2302,7 @@ EXAMPLES
2151
2302
$ aio autocomplete --refresh-cache
2152
2303
```
2153
2304
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 ) _
2155
2306
2156
2307
## ` aio certificate `
2157
2308
@@ -3286,7 +3437,7 @@ ALIASES
3286
3437
$ aio plugins discover
3287
3438
```
3288
3439
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 ) _
3290
3441
3291
3442
## ` aio event `
3292
3443
@@ -3976,7 +4127,7 @@ DESCRIPTION
3976
4127
Display help for aio.
3977
4128
```
3978
4129
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 ) _
3980
4131
3981
4132
## ` aio info `
3982
4133
@@ -4117,7 +4268,7 @@ EXAMPLES
4117
4268
$ aio plugins
4118
4269
```
4119
4270
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 ) _
4121
4272
4122
4273
## ` aio plugins add PLUGIN `
4123
4274
@@ -4216,7 +4367,7 @@ EXAMPLES
4216
4367
$ aio plugins inspect myplugin
4217
4368
```
4218
4369
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 ) _
4220
4371
4221
4372
## ` aio plugins install PLUGIN `
4222
4373
@@ -4265,7 +4416,7 @@ EXAMPLES
4265
4416
$ aio plugins install someuser/someplugin
4266
4417
```
4267
4418
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 ) _
4269
4420
4270
4421
## ` aio plugins link PATH `
4271
4422
@@ -4285,6 +4436,7 @@ FLAGS
4285
4436
4286
4437
DESCRIPTION
4287
4438
Links a plugin into the CLI for development.
4439
+
4288
4440
Installation of a linked plugin will override a user-installed or core plugin.
4289
4441
4290
4442
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
4295
4447
$ aio plugins link myplugin
4296
4448
```
4297
4449
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 ) _
4299
4451
4300
4452
## ` aio plugins remove [PLUGIN] `
4301
4453
@@ -4336,7 +4488,7 @@ FLAGS
4336
4488
--reinstall Reinstall all plugins after uninstalling.
4337
4489
```
4338
4490
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 ) _
4340
4492
4341
4493
## ` aio plugins uninstall [PLUGIN] `
4342
4494
@@ -4364,7 +4516,7 @@ EXAMPLES
4364
4516
$ aio plugins uninstall myplugin
4365
4517
```
4366
4518
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 ) _
4368
4520
4369
4521
## ` aio plugins unlink [PLUGIN] `
4370
4522
@@ -4408,7 +4560,7 @@ DESCRIPTION
4408
4560
Update installed plugins.
4409
4561
```
4410
4562
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 ) _
4412
4564
4413
4565
## ` aio report `
4414
4566
@@ -4446,7 +4598,7 @@ DESCRIPTION
4446
4598
Clears all installed plugins.
4447
4599
```
4448
4600
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 ) _
4450
4602
4451
4603
## ` aio rt `
4452
4604
@@ -13692,7 +13844,7 @@ DESCRIPTION
13692
13844
- update user-installed plugins that are not core
13693
13845
```
13694
13846
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 ) _
13696
13848
13697
13849
## ` aio where `
13698
13850
0 commit comments