@@ -43,7 +43,7 @@ declare module 'fastly:kv-store' {
43
43
* @param key The key to retrieve from within the KV Store. A key cannot:
44
44
* - Be any of the strings "", ".", or ".."
45
45
* - Start with the string ".well-known/acme-challenge/""
46
- * - Contain any of the characters "#?*[] \n\r"
46
+ * - Contain any of the characters "#;?^| \n\r"
47
47
* - Be longer than 1024 characters
48
48
*/
49
49
delete ( key : string ) : Promise < undefined > ;
@@ -55,7 +55,7 @@ declare module 'fastly:kv-store' {
55
55
* @param key The key to retrieve from within the KV Store. A key cannot:
56
56
* - Be any of the strings "", ".", or ".."
57
57
* - Start with the string ".well-known/acme-challenge/""
58
- * - Contain any of the characters "#?*[] \n\r"
58
+ * - Contain any of the characters "#;?^| \n\r"
59
59
* - Be longer than 1024 characters
60
60
*/
61
61
get ( key : string ) : Promise < KVStoreEntry | null > ;
@@ -69,7 +69,7 @@ declare module 'fastly:kv-store' {
69
69
* @param key The key to associate with the value. A key cannot:
70
70
* - Be any of the strings "", ".", or ".."
71
71
* - Start with the string ".well-known/acme-challenge/""
72
- * - Contain any of the characters "#?*[] \n\r"
72
+ * - Contain any of the characters "#;?^| \n\r"
73
73
* - Be longer than 1024 characters
74
74
* @param value The value to store within the KV Store.
75
75
*/
0 commit comments