@@ -43,7 +43,7 @@ declare module 'fastly:kv-store' {
4343 * @param key The key to retrieve from within the KV Store. A key cannot:
4444 * - Be any of the strings "", ".", or ".."
4545 * - Start with the string ".well-known/acme-challenge/""
46- * - Contain any of the characters "#?*[] \n\r"
46+ * - Contain any of the characters "#;?^| \n\r"
4747 * - Be longer than 1024 characters
4848 */
4949 delete ( key : string ) : Promise < undefined > ;
@@ -55,7 +55,7 @@ declare module 'fastly:kv-store' {
5555 * @param key The key to retrieve from within the KV Store. A key cannot:
5656 * - Be any of the strings "", ".", or ".."
5757 * - Start with the string ".well-known/acme-challenge/""
58- * - Contain any of the characters "#?*[] \n\r"
58+ * - Contain any of the characters "#;?^| \n\r"
5959 * - Be longer than 1024 characters
6060 */
6161 get ( key : string ) : Promise < KVStoreEntry | null > ;
@@ -69,7 +69,7 @@ declare module 'fastly:kv-store' {
6969 * @param key The key to associate with the value. A key cannot:
7070 * - Be any of the strings "", ".", or ".."
7171 * - Start with the string ".well-known/acme-challenge/""
72- * - Contain any of the characters "#?*[] \n\r"
72+ * - Contain any of the characters "#;?^| \n\r"
7373 * - Be longer than 1024 characters
7474 * @param value The value to store within the KV Store.
7575 */
0 commit comments