@adobe/aio-cli-plugin-app-storage 1.0.3 → 1.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.
- package/README.md +11 -11
- package/oclif.manifest.json +11 -6
- package/package.json +1 -1
- package/src/BaseCommand.js +1 -1
package/README.md
CHANGED
|
@@ -36,7 +36,7 @@ Delete key-values
|
|
|
36
36
|
|
|
37
37
|
```
|
|
38
38
|
USAGE
|
|
39
|
-
$ aio app state delete [KEYS...] [--json] [--region amer|emea] [--match <value>] [--force]
|
|
39
|
+
$ aio app state delete [KEYS...] [--json] [--region amer|emea|apac] [--match <value>] [--force]
|
|
40
40
|
|
|
41
41
|
ARGUMENTS
|
|
42
42
|
KEYS... keys to delete. Above 5 keys, you will be prompted for confirmation
|
|
@@ -45,7 +45,7 @@ FLAGS
|
|
|
45
45
|
--force [use with caution!] force delete, no safety prompt
|
|
46
46
|
--match=<value> [use with caution!] deletes ALL key-values matching the provided glob-like pattern
|
|
47
47
|
--region=<option> State region. Defaults to 'AIO_STATE_REGION' env or 'amer' if neither is set.
|
|
48
|
-
<options: amer|emea>
|
|
48
|
+
<options: amer|emea|apac>
|
|
49
49
|
|
|
50
50
|
GLOBAL FLAGS
|
|
51
51
|
--json Format output as json.
|
|
@@ -76,14 +76,14 @@ Get a key-value
|
|
|
76
76
|
|
|
77
77
|
```
|
|
78
78
|
USAGE
|
|
79
|
-
$ aio app state get KEY [--json] [--region amer|emea]
|
|
79
|
+
$ aio app state get KEY [--json] [--region amer|emea|apac]
|
|
80
80
|
|
|
81
81
|
ARGUMENTS
|
|
82
82
|
KEY State key
|
|
83
83
|
|
|
84
84
|
FLAGS
|
|
85
85
|
--region=<option> State region. Defaults to 'AIO_STATE_REGION' env or 'amer' if neither is set.
|
|
86
|
-
<options: amer|emea>
|
|
86
|
+
<options: amer|emea|apac>
|
|
87
87
|
|
|
88
88
|
GLOBAL FLAGS
|
|
89
89
|
--json Format output as json.
|
|
@@ -105,12 +105,12 @@ List key-values
|
|
|
105
105
|
|
|
106
106
|
```
|
|
107
107
|
USAGE
|
|
108
|
-
$ aio app state list [--json] [--region amer|emea] [-m <value>]
|
|
108
|
+
$ aio app state list [--json] [--region amer|emea|apac] [-m <value>]
|
|
109
109
|
|
|
110
110
|
FLAGS
|
|
111
111
|
-m, --match=<value> [default: *] Glob-like pattern to filter keys
|
|
112
112
|
--region=<option> State region. Defaults to 'AIO_STATE_REGION' env or 'amer' if neither is set.
|
|
113
|
-
<options: amer|emea>
|
|
113
|
+
<options: amer|emea|apac>
|
|
114
114
|
|
|
115
115
|
GLOBAL FLAGS
|
|
116
116
|
--json Format output as json.
|
|
@@ -139,7 +139,7 @@ Put a key-value
|
|
|
139
139
|
|
|
140
140
|
```
|
|
141
141
|
USAGE
|
|
142
|
-
$ aio app state put KEY VALUE [--json] [--region amer|emea] [-t <value>]
|
|
142
|
+
$ aio app state put KEY VALUE [--json] [--region amer|emea|apac] [-t <value>]
|
|
143
143
|
|
|
144
144
|
ARGUMENTS
|
|
145
145
|
KEY State key
|
|
@@ -148,7 +148,7 @@ ARGUMENTS
|
|
|
148
148
|
FLAGS
|
|
149
149
|
-t, --ttl=<value> Time to live in seconds. Default is 86400 (24 hours), max is 31536000 (1 year).
|
|
150
150
|
--region=<option> State region. Defaults to 'AIO_STATE_REGION' env or 'amer' if neither is set.
|
|
151
|
-
<options: amer|emea>
|
|
151
|
+
<options: amer|emea|apac>
|
|
152
152
|
|
|
153
153
|
GLOBAL FLAGS
|
|
154
154
|
--json Format output as json.
|
|
@@ -172,11 +172,11 @@ Display stats
|
|
|
172
172
|
|
|
173
173
|
```
|
|
174
174
|
USAGE
|
|
175
|
-
$ aio app state stats [--json] [--region amer|emea]
|
|
175
|
+
$ aio app state stats [--json] [--region amer|emea|apac]
|
|
176
176
|
|
|
177
177
|
FLAGS
|
|
178
178
|
--region=<option> State region. Defaults to 'AIO_STATE_REGION' env or 'amer' if neither is set.
|
|
179
|
-
<options: amer|emea>
|
|
179
|
+
<options: amer|emea|apac>
|
|
180
180
|
|
|
181
181
|
GLOBAL FLAGS
|
|
182
182
|
--json Format output as json.
|
|
@@ -208,7 +208,7 @@ DESCRIPTION
|
|
|
208
208
|
Display help for aio.
|
|
209
209
|
```
|
|
210
210
|
|
|
211
|
-
_See code: [@oclif/plugin-help](https://github.com/oclif/plugin-help/blob/v6.2.
|
|
211
|
+
_See code: [@oclif/plugin-help](https://github.com/oclif/plugin-help/blob/v6.2.16/src/commands/help.ts)_
|
|
212
212
|
<!-- commandsstop -->
|
|
213
213
|
|
|
214
214
|
## Contributing
|
package/oclif.manifest.json
CHANGED
|
@@ -37,7 +37,8 @@
|
|
|
37
37
|
"multiple": false,
|
|
38
38
|
"options": [
|
|
39
39
|
"amer",
|
|
40
|
-
"emea"
|
|
40
|
+
"emea",
|
|
41
|
+
"apac"
|
|
41
42
|
],
|
|
42
43
|
"type": "option"
|
|
43
44
|
},
|
|
@@ -104,7 +105,8 @@
|
|
|
104
105
|
"multiple": false,
|
|
105
106
|
"options": [
|
|
106
107
|
"amer",
|
|
107
|
-
"emea"
|
|
108
|
+
"emea",
|
|
109
|
+
"apac"
|
|
108
110
|
],
|
|
109
111
|
"type": "option"
|
|
110
112
|
}
|
|
@@ -155,7 +157,8 @@
|
|
|
155
157
|
"multiple": false,
|
|
156
158
|
"options": [
|
|
157
159
|
"amer",
|
|
158
|
-
"emea"
|
|
160
|
+
"emea",
|
|
161
|
+
"apac"
|
|
159
162
|
],
|
|
160
163
|
"type": "option"
|
|
161
164
|
},
|
|
@@ -224,7 +227,8 @@
|
|
|
224
227
|
"multiple": false,
|
|
225
228
|
"options": [
|
|
226
229
|
"amer",
|
|
227
|
-
"emea"
|
|
230
|
+
"emea",
|
|
231
|
+
"apac"
|
|
228
232
|
],
|
|
229
233
|
"type": "option"
|
|
230
234
|
},
|
|
@@ -279,7 +283,8 @@
|
|
|
279
283
|
"multiple": false,
|
|
280
284
|
"options": [
|
|
281
285
|
"amer",
|
|
282
|
-
"emea"
|
|
286
|
+
"emea",
|
|
287
|
+
"apac"
|
|
283
288
|
],
|
|
284
289
|
"type": "option"
|
|
285
290
|
}
|
|
@@ -302,5 +307,5 @@
|
|
|
302
307
|
]
|
|
303
308
|
}
|
|
304
309
|
},
|
|
305
|
-
"version": "1.0
|
|
310
|
+
"version": "1.1.0"
|
|
306
311
|
}
|
package/package.json
CHANGED
package/src/BaseCommand.js
CHANGED
|
@@ -109,7 +109,7 @@ BaseCommand.flags = {
|
|
|
109
109
|
region: Flags.string({
|
|
110
110
|
description: 'State region. Defaults to \'AIO_STATE_REGION\' env or \'amer\' if neither is set.',
|
|
111
111
|
required: false,
|
|
112
|
-
options: ['amer', 'emea']
|
|
112
|
+
options: ['amer', 'emea', 'apac']
|
|
113
113
|
})
|
|
114
114
|
}
|
|
115
115
|
|