@scayle/storefront-nuxt 8.3.4 → 8.4.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/CHANGELOG.md CHANGED
@@ -1,5 +1,15 @@
1
1
  # @scayle/storefront-nuxt
2
2
 
3
+ ## 8.4.0
4
+
5
+ ### Minor Changes
6
+
7
+ - Do not save empty sessions by default. This should significantly reduce the usage of the session database, especially in scenarios with many unique anonymous visitors.
8
+
9
+ ### Patch Changes
10
+
11
+ - Use `consola` for config validation output to align with overall usage across Storefront and Nuxt.
12
+
3
13
  ## 8.3.4
4
14
 
5
15
  ### Patch Changes
package/dist/module.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@scayle/storefront-nuxt",
3
- "version": "8.3.4",
3
+ "version": "8.4.0",
4
4
  "configKey": "storefront",
5
5
  "compatibility": {
6
6
  "nuxt": "^3.9.0"
package/dist/module.mjs CHANGED
@@ -45,7 +45,7 @@ export default {
45
45
  }`;
46
46
  }
47
47
  const PACKAGE_NAME = "@scayle/storefront-nuxt";
48
- const PACKAGE_VERSION = "8.3.4";
48
+ const PACKAGE_VERSION = "8.4.0";
49
49
  const logger = createConsola({
50
50
  fancy: true,
51
51
  formatOptions: {
@@ -2,6 +2,7 @@ import { defineNitroPlugin } from "nitropack/runtime/plugin";
2
2
  import { useRuntimeConfig } from "#imports";
3
3
  import { RuntimeConfigSchema } from "../../utils/zodSchema.js";
4
4
  import { purifySensitiveValue } from "@scayle/storefront-core";
5
+ import consola from "consola";
5
6
  export const sensitiveKeys = [
6
7
  "token",
7
8
  "password",
@@ -47,8 +48,8 @@ export default defineNitroPlugin(() => {
47
48
  const { success, error } = RuntimeConfigSchema.safeParse(runtimeConfig);
48
49
  if (!success) {
49
50
  const errorMessages = formatZodError(error.errors, runtimeConfig);
50
- console.error("[storefront-nuxt] configValidation:", errorMessages);
51
+ consola.error("[storefront-nuxt] configValidation:", errorMessages);
51
52
  throw Error("[storefront-nuxt] configValidation: Runtime config invalid");
52
53
  }
53
- console.log("[storefront-nuxt] configValidation: Runtime config valid");
54
+ consola.success("[storefront-nuxt] configValidation: Runtime config valid");
54
55
  });
@@ -85,7 +85,7 @@ async function bootstrap(event, $shopConfig, $storefrontConfig, apiBasePath, con
85
85
  ...sessionConfig,
86
86
  store: sessionStorage,
87
87
  genid: generateSessionId,
88
- saveUninitialized: true,
88
+ saveUninitialized: false,
89
89
  cookie: {
90
90
  maxAge: sessionConfig?.maxAge,
91
91
  // secure: sessionConfig.isHttps, TODO
@@ -1,5 +1,6 @@
1
1
  import { z } from 'zod';
2
2
  import type { LogLevel } from '@scayle/storefront-core';
3
+ import { type BuiltinDriverName } from 'unstorage';
3
4
  export declare const RedirectsSchema: z.ZodObject<{
4
5
  enabled: z.ZodBoolean;
5
6
  queryParamWhitelist: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
@@ -69,7 +70,7 @@ declare const IdpSchema: z.ZodObject<{
69
70
  idpRedirectURL: string;
70
71
  }>;
71
72
  declare const StorageSchema: z.ZodObject<{
72
- driver: z.ZodEnum<["null" | "azureAppConfiguration" | "azureCosmos" | "azureKeyVault" | "azureStorageBlob" | "azureStorageTable" | "cloudflareKVBinding" | "cloudflareKVHTTP" | "cloudflareR2Binding" | "fs" | "fsLite" | "github" | "http" | "indexedb" | "localStorage" | "lruCache" | "memory" | "mongodb" | "netlifyBlobs" | "overlay" | "planetscale" | "redis" | "sessionStorage" | "vercelKV" | "cloudflare-kv-binding" | "cloudflare-kv-http", ...("null" | "azureAppConfiguration" | "azureCosmos" | "azureKeyVault" | "azureStorageBlob" | "azureStorageTable" | "cloudflareKVBinding" | "cloudflareKVHTTP" | "cloudflareR2Binding" | "fs" | "fsLite" | "github" | "http" | "indexedb" | "localStorage" | "lruCache" | "memory" | "mongodb" | "netlifyBlobs" | "overlay" | "planetscale" | "redis" | "sessionStorage" | "vercelKV" | "cloudflare-kv-binding" | "cloudflare-kv-http")[]]>;
73
+ driver: z.ZodEnum<[BuiltinDriverName, ...BuiltinDriverName[]]>;
73
74
  compression: z.ZodOptional<z.ZodEnum<["deflate", "gzip", "brotli", "none"]>>;
74
75
  url: z.ZodOptional<z.ZodString>;
75
76
  token: z.ZodOptional<z.ZodString>;
@@ -80,7 +81,7 @@ declare const StorageSchema: z.ZodObject<{
80
81
  tls: z.ZodOptional<z.ZodBoolean>;
81
82
  ttl: z.ZodOptional<z.ZodNumber>;
82
83
  }, "strip", z.ZodTypeAny, {
83
- driver: "null" | "azureAppConfiguration" | "azureCosmos" | "azureKeyVault" | "azureStorageBlob" | "azureStorageTable" | "cloudflareKVBinding" | "cloudflareKVHTTP" | "cloudflareR2Binding" | "fs" | "fsLite" | "github" | "http" | "indexedb" | "localStorage" | "lruCache" | "memory" | "mongodb" | "netlifyBlobs" | "overlay" | "planetscale" | "redis" | "sessionStorage" | "vercelKV" | "cloudflare-kv-binding" | "cloudflare-kv-http";
84
+ driver: BuiltinDriverName;
84
85
  ttl?: number | undefined;
85
86
  host?: string | undefined;
86
87
  token?: string | undefined;
@@ -91,7 +92,7 @@ declare const StorageSchema: z.ZodObject<{
91
92
  password?: string | undefined;
92
93
  tls?: boolean | undefined;
93
94
  }, {
94
- driver: "null" | "azureAppConfiguration" | "azureCosmos" | "azureKeyVault" | "azureStorageBlob" | "azureStorageTable" | "cloudflareKVBinding" | "cloudflareKVHTTP" | "cloudflareR2Binding" | "fs" | "fsLite" | "github" | "http" | "indexedb" | "localStorage" | "lruCache" | "memory" | "mongodb" | "netlifyBlobs" | "overlay" | "planetscale" | "redis" | "sessionStorage" | "vercelKV" | "cloudflare-kv-binding" | "cloudflare-kv-http";
95
+ driver: BuiltinDriverName;
95
96
  ttl?: number | undefined;
96
97
  host?: string | undefined;
97
98
  token?: string | undefined;
@@ -234,7 +235,7 @@ declare const ShopConfigSchema: z.ZodObject<{
234
235
  }>>;
235
236
  storage: z.ZodOptional<z.ZodObject<{
236
237
  session: z.ZodOptional<z.ZodObject<{
237
- driver: z.ZodEnum<["null" | "azureAppConfiguration" | "azureCosmos" | "azureKeyVault" | "azureStorageBlob" | "azureStorageTable" | "cloudflareKVBinding" | "cloudflareKVHTTP" | "cloudflareR2Binding" | "fs" | "fsLite" | "github" | "http" | "indexedb" | "localStorage" | "lruCache" | "memory" | "mongodb" | "netlifyBlobs" | "overlay" | "planetscale" | "redis" | "sessionStorage" | "vercelKV" | "cloudflare-kv-binding" | "cloudflare-kv-http", ...("null" | "azureAppConfiguration" | "azureCosmos" | "azureKeyVault" | "azureStorageBlob" | "azureStorageTable" | "cloudflareKVBinding" | "cloudflareKVHTTP" | "cloudflareR2Binding" | "fs" | "fsLite" | "github" | "http" | "indexedb" | "localStorage" | "lruCache" | "memory" | "mongodb" | "netlifyBlobs" | "overlay" | "planetscale" | "redis" | "sessionStorage" | "vercelKV" | "cloudflare-kv-binding" | "cloudflare-kv-http")[]]>;
238
+ driver: z.ZodEnum<[BuiltinDriverName, ...BuiltinDriverName[]]>;
238
239
  compression: z.ZodOptional<z.ZodEnum<["deflate", "gzip", "brotli", "none"]>>;
239
240
  url: z.ZodOptional<z.ZodString>;
240
241
  token: z.ZodOptional<z.ZodString>;
@@ -245,7 +246,7 @@ declare const ShopConfigSchema: z.ZodObject<{
245
246
  tls: z.ZodOptional<z.ZodBoolean>;
246
247
  ttl: z.ZodOptional<z.ZodNumber>;
247
248
  }, "strip", z.ZodTypeAny, {
248
- driver: "null" | "azureAppConfiguration" | "azureCosmos" | "azureKeyVault" | "azureStorageBlob" | "azureStorageTable" | "cloudflareKVBinding" | "cloudflareKVHTTP" | "cloudflareR2Binding" | "fs" | "fsLite" | "github" | "http" | "indexedb" | "localStorage" | "lruCache" | "memory" | "mongodb" | "netlifyBlobs" | "overlay" | "planetscale" | "redis" | "sessionStorage" | "vercelKV" | "cloudflare-kv-binding" | "cloudflare-kv-http";
249
+ driver: BuiltinDriverName;
249
250
  ttl?: number | undefined;
250
251
  host?: string | undefined;
251
252
  token?: string | undefined;
@@ -256,7 +257,7 @@ declare const ShopConfigSchema: z.ZodObject<{
256
257
  password?: string | undefined;
257
258
  tls?: boolean | undefined;
258
259
  }, {
259
- driver: "null" | "azureAppConfiguration" | "azureCosmos" | "azureKeyVault" | "azureStorageBlob" | "azureStorageTable" | "cloudflareKVBinding" | "cloudflareKVHTTP" | "cloudflareR2Binding" | "fs" | "fsLite" | "github" | "http" | "indexedb" | "localStorage" | "lruCache" | "memory" | "mongodb" | "netlifyBlobs" | "overlay" | "planetscale" | "redis" | "sessionStorage" | "vercelKV" | "cloudflare-kv-binding" | "cloudflare-kv-http";
260
+ driver: BuiltinDriverName;
260
261
  ttl?: number | undefined;
261
262
  host?: string | undefined;
262
263
  token?: string | undefined;
@@ -268,7 +269,7 @@ declare const ShopConfigSchema: z.ZodObject<{
268
269
  tls?: boolean | undefined;
269
270
  }>>;
270
271
  cache: z.ZodOptional<z.ZodObject<{
271
- driver: z.ZodEnum<["null" | "azureAppConfiguration" | "azureCosmos" | "azureKeyVault" | "azureStorageBlob" | "azureStorageTable" | "cloudflareKVBinding" | "cloudflareKVHTTP" | "cloudflareR2Binding" | "fs" | "fsLite" | "github" | "http" | "indexedb" | "localStorage" | "lruCache" | "memory" | "mongodb" | "netlifyBlobs" | "overlay" | "planetscale" | "redis" | "sessionStorage" | "vercelKV" | "cloudflare-kv-binding" | "cloudflare-kv-http", ...("null" | "azureAppConfiguration" | "azureCosmos" | "azureKeyVault" | "azureStorageBlob" | "azureStorageTable" | "cloudflareKVBinding" | "cloudflareKVHTTP" | "cloudflareR2Binding" | "fs" | "fsLite" | "github" | "http" | "indexedb" | "localStorage" | "lruCache" | "memory" | "mongodb" | "netlifyBlobs" | "overlay" | "planetscale" | "redis" | "sessionStorage" | "vercelKV" | "cloudflare-kv-binding" | "cloudflare-kv-http")[]]>;
272
+ driver: z.ZodEnum<[BuiltinDriverName, ...BuiltinDriverName[]]>;
272
273
  compression: z.ZodOptional<z.ZodEnum<["deflate", "gzip", "brotli", "none"]>>;
273
274
  url: z.ZodOptional<z.ZodString>;
274
275
  token: z.ZodOptional<z.ZodString>;
@@ -279,7 +280,7 @@ declare const ShopConfigSchema: z.ZodObject<{
279
280
  tls: z.ZodOptional<z.ZodBoolean>;
280
281
  ttl: z.ZodOptional<z.ZodNumber>;
281
282
  }, "strip", z.ZodTypeAny, {
282
- driver: "null" | "azureAppConfiguration" | "azureCosmos" | "azureKeyVault" | "azureStorageBlob" | "azureStorageTable" | "cloudflareKVBinding" | "cloudflareKVHTTP" | "cloudflareR2Binding" | "fs" | "fsLite" | "github" | "http" | "indexedb" | "localStorage" | "lruCache" | "memory" | "mongodb" | "netlifyBlobs" | "overlay" | "planetscale" | "redis" | "sessionStorage" | "vercelKV" | "cloudflare-kv-binding" | "cloudflare-kv-http";
283
+ driver: BuiltinDriverName;
283
284
  ttl?: number | undefined;
284
285
  host?: string | undefined;
285
286
  token?: string | undefined;
@@ -290,7 +291,7 @@ declare const ShopConfigSchema: z.ZodObject<{
290
291
  password?: string | undefined;
291
292
  tls?: boolean | undefined;
292
293
  }, {
293
- driver: "null" | "azureAppConfiguration" | "azureCosmos" | "azureKeyVault" | "azureStorageBlob" | "azureStorageTable" | "cloudflareKVBinding" | "cloudflareKVHTTP" | "cloudflareR2Binding" | "fs" | "fsLite" | "github" | "http" | "indexedb" | "localStorage" | "lruCache" | "memory" | "mongodb" | "netlifyBlobs" | "overlay" | "planetscale" | "redis" | "sessionStorage" | "vercelKV" | "cloudflare-kv-binding" | "cloudflare-kv-http";
294
+ driver: BuiltinDriverName;
294
295
  ttl?: number | undefined;
295
296
  host?: string | undefined;
296
297
  token?: string | undefined;
@@ -303,7 +304,7 @@ declare const ShopConfigSchema: z.ZodObject<{
303
304
  }>>;
304
305
  }, "strip", z.ZodTypeAny, {
305
306
  session?: {
306
- driver: "null" | "azureAppConfiguration" | "azureCosmos" | "azureKeyVault" | "azureStorageBlob" | "azureStorageTable" | "cloudflareKVBinding" | "cloudflareKVHTTP" | "cloudflareR2Binding" | "fs" | "fsLite" | "github" | "http" | "indexedb" | "localStorage" | "lruCache" | "memory" | "mongodb" | "netlifyBlobs" | "overlay" | "planetscale" | "redis" | "sessionStorage" | "vercelKV" | "cloudflare-kv-binding" | "cloudflare-kv-http";
307
+ driver: BuiltinDriverName;
307
308
  ttl?: number | undefined;
308
309
  host?: string | undefined;
309
310
  token?: string | undefined;
@@ -315,7 +316,7 @@ declare const ShopConfigSchema: z.ZodObject<{
315
316
  tls?: boolean | undefined;
316
317
  } | undefined;
317
318
  cache?: {
318
- driver: "null" | "azureAppConfiguration" | "azureCosmos" | "azureKeyVault" | "azureStorageBlob" | "azureStorageTable" | "cloudflareKVBinding" | "cloudflareKVHTTP" | "cloudflareR2Binding" | "fs" | "fsLite" | "github" | "http" | "indexedb" | "localStorage" | "lruCache" | "memory" | "mongodb" | "netlifyBlobs" | "overlay" | "planetscale" | "redis" | "sessionStorage" | "vercelKV" | "cloudflare-kv-binding" | "cloudflare-kv-http";
319
+ driver: BuiltinDriverName;
319
320
  ttl?: number | undefined;
320
321
  host?: string | undefined;
321
322
  token?: string | undefined;
@@ -328,7 +329,7 @@ declare const ShopConfigSchema: z.ZodObject<{
328
329
  } | undefined;
329
330
  }, {
330
331
  session?: {
331
- driver: "null" | "azureAppConfiguration" | "azureCosmos" | "azureKeyVault" | "azureStorageBlob" | "azureStorageTable" | "cloudflareKVBinding" | "cloudflareKVHTTP" | "cloudflareR2Binding" | "fs" | "fsLite" | "github" | "http" | "indexedb" | "localStorage" | "lruCache" | "memory" | "mongodb" | "netlifyBlobs" | "overlay" | "planetscale" | "redis" | "sessionStorage" | "vercelKV" | "cloudflare-kv-binding" | "cloudflare-kv-http";
332
+ driver: BuiltinDriverName;
332
333
  ttl?: number | undefined;
333
334
  host?: string | undefined;
334
335
  token?: string | undefined;
@@ -340,7 +341,7 @@ declare const ShopConfigSchema: z.ZodObject<{
340
341
  tls?: boolean | undefined;
341
342
  } | undefined;
342
343
  cache?: {
343
- driver: "null" | "azureAppConfiguration" | "azureCosmos" | "azureKeyVault" | "azureStorageBlob" | "azureStorageTable" | "cloudflareKVBinding" | "cloudflareKVHTTP" | "cloudflareR2Binding" | "fs" | "fsLite" | "github" | "http" | "indexedb" | "localStorage" | "lruCache" | "memory" | "mongodb" | "netlifyBlobs" | "overlay" | "planetscale" | "redis" | "sessionStorage" | "vercelKV" | "cloudflare-kv-binding" | "cloudflare-kv-http";
344
+ driver: BuiltinDriverName;
344
345
  ttl?: number | undefined;
345
346
  host?: string | undefined;
346
347
  token?: string | undefined;
@@ -395,7 +396,7 @@ declare const ShopConfigSchema: z.ZodObject<{
395
396
  } | undefined;
396
397
  storage?: {
397
398
  session?: {
398
- driver: "null" | "azureAppConfiguration" | "azureCosmos" | "azureKeyVault" | "azureStorageBlob" | "azureStorageTable" | "cloudflareKVBinding" | "cloudflareKVHTTP" | "cloudflareR2Binding" | "fs" | "fsLite" | "github" | "http" | "indexedb" | "localStorage" | "lruCache" | "memory" | "mongodb" | "netlifyBlobs" | "overlay" | "planetscale" | "redis" | "sessionStorage" | "vercelKV" | "cloudflare-kv-binding" | "cloudflare-kv-http";
399
+ driver: BuiltinDriverName;
399
400
  ttl?: number | undefined;
400
401
  host?: string | undefined;
401
402
  token?: string | undefined;
@@ -407,7 +408,7 @@ declare const ShopConfigSchema: z.ZodObject<{
407
408
  tls?: boolean | undefined;
408
409
  } | undefined;
409
410
  cache?: {
410
- driver: "null" | "azureAppConfiguration" | "azureCosmos" | "azureKeyVault" | "azureStorageBlob" | "azureStorageTable" | "cloudflareKVBinding" | "cloudflareKVHTTP" | "cloudflareR2Binding" | "fs" | "fsLite" | "github" | "http" | "indexedb" | "localStorage" | "lruCache" | "memory" | "mongodb" | "netlifyBlobs" | "overlay" | "planetscale" | "redis" | "sessionStorage" | "vercelKV" | "cloudflare-kv-binding" | "cloudflare-kv-http";
411
+ driver: BuiltinDriverName;
411
412
  ttl?: number | undefined;
412
413
  host?: string | undefined;
413
414
  token?: string | undefined;
@@ -462,7 +463,7 @@ declare const ShopConfigSchema: z.ZodObject<{
462
463
  } | undefined;
463
464
  storage?: {
464
465
  session?: {
465
- driver: "null" | "azureAppConfiguration" | "azureCosmos" | "azureKeyVault" | "azureStorageBlob" | "azureStorageTable" | "cloudflareKVBinding" | "cloudflareKVHTTP" | "cloudflareR2Binding" | "fs" | "fsLite" | "github" | "http" | "indexedb" | "localStorage" | "lruCache" | "memory" | "mongodb" | "netlifyBlobs" | "overlay" | "planetscale" | "redis" | "sessionStorage" | "vercelKV" | "cloudflare-kv-binding" | "cloudflare-kv-http";
466
+ driver: BuiltinDriverName;
466
467
  ttl?: number | undefined;
467
468
  host?: string | undefined;
468
469
  token?: string | undefined;
@@ -474,7 +475,7 @@ declare const ShopConfigSchema: z.ZodObject<{
474
475
  tls?: boolean | undefined;
475
476
  } | undefined;
476
477
  cache?: {
477
- driver: "null" | "azureAppConfiguration" | "azureCosmos" | "azureKeyVault" | "azureStorageBlob" | "azureStorageTable" | "cloudflareKVBinding" | "cloudflareKVHTTP" | "cloudflareR2Binding" | "fs" | "fsLite" | "github" | "http" | "indexedb" | "localStorage" | "lruCache" | "memory" | "mongodb" | "netlifyBlobs" | "overlay" | "planetscale" | "redis" | "sessionStorage" | "vercelKV" | "cloudflare-kv-binding" | "cloudflare-kv-http";
478
+ driver: BuiltinDriverName;
478
479
  ttl?: number | undefined;
479
480
  host?: string | undefined;
480
481
  token?: string | undefined;
@@ -528,7 +529,7 @@ declare const StorefrontConfigSchema: z.ZodObject<{
528
529
  }>>;
529
530
  storage: z.ZodOptional<z.ZodObject<{
530
531
  session: z.ZodOptional<z.ZodObject<{
531
- driver: z.ZodEnum<["null" | "azureAppConfiguration" | "azureCosmos" | "azureKeyVault" | "azureStorageBlob" | "azureStorageTable" | "cloudflareKVBinding" | "cloudflareKVHTTP" | "cloudflareR2Binding" | "fs" | "fsLite" | "github" | "http" | "indexedb" | "localStorage" | "lruCache" | "memory" | "mongodb" | "netlifyBlobs" | "overlay" | "planetscale" | "redis" | "sessionStorage" | "vercelKV" | "cloudflare-kv-binding" | "cloudflare-kv-http", ...("null" | "azureAppConfiguration" | "azureCosmos" | "azureKeyVault" | "azureStorageBlob" | "azureStorageTable" | "cloudflareKVBinding" | "cloudflareKVHTTP" | "cloudflareR2Binding" | "fs" | "fsLite" | "github" | "http" | "indexedb" | "localStorage" | "lruCache" | "memory" | "mongodb" | "netlifyBlobs" | "overlay" | "planetscale" | "redis" | "sessionStorage" | "vercelKV" | "cloudflare-kv-binding" | "cloudflare-kv-http")[]]>;
532
+ driver: z.ZodEnum<[BuiltinDriverName, ...BuiltinDriverName[]]>;
532
533
  compression: z.ZodOptional<z.ZodEnum<["deflate", "gzip", "brotli", "none"]>>;
533
534
  url: z.ZodOptional<z.ZodString>;
534
535
  token: z.ZodOptional<z.ZodString>;
@@ -539,7 +540,7 @@ declare const StorefrontConfigSchema: z.ZodObject<{
539
540
  tls: z.ZodOptional<z.ZodBoolean>;
540
541
  ttl: z.ZodOptional<z.ZodNumber>;
541
542
  }, "strip", z.ZodTypeAny, {
542
- driver: "null" | "azureAppConfiguration" | "azureCosmos" | "azureKeyVault" | "azureStorageBlob" | "azureStorageTable" | "cloudflareKVBinding" | "cloudflareKVHTTP" | "cloudflareR2Binding" | "fs" | "fsLite" | "github" | "http" | "indexedb" | "localStorage" | "lruCache" | "memory" | "mongodb" | "netlifyBlobs" | "overlay" | "planetscale" | "redis" | "sessionStorage" | "vercelKV" | "cloudflare-kv-binding" | "cloudflare-kv-http";
543
+ driver: BuiltinDriverName;
543
544
  ttl?: number | undefined;
544
545
  host?: string | undefined;
545
546
  token?: string | undefined;
@@ -550,7 +551,7 @@ declare const StorefrontConfigSchema: z.ZodObject<{
550
551
  password?: string | undefined;
551
552
  tls?: boolean | undefined;
552
553
  }, {
553
- driver: "null" | "azureAppConfiguration" | "azureCosmos" | "azureKeyVault" | "azureStorageBlob" | "azureStorageTable" | "cloudflareKVBinding" | "cloudflareKVHTTP" | "cloudflareR2Binding" | "fs" | "fsLite" | "github" | "http" | "indexedb" | "localStorage" | "lruCache" | "memory" | "mongodb" | "netlifyBlobs" | "overlay" | "planetscale" | "redis" | "sessionStorage" | "vercelKV" | "cloudflare-kv-binding" | "cloudflare-kv-http";
554
+ driver: BuiltinDriverName;
554
555
  ttl?: number | undefined;
555
556
  host?: string | undefined;
556
557
  token?: string | undefined;
@@ -562,7 +563,7 @@ declare const StorefrontConfigSchema: z.ZodObject<{
562
563
  tls?: boolean | undefined;
563
564
  }>>;
564
565
  cache: z.ZodOptional<z.ZodObject<{
565
- driver: z.ZodEnum<["null" | "azureAppConfiguration" | "azureCosmos" | "azureKeyVault" | "azureStorageBlob" | "azureStorageTable" | "cloudflareKVBinding" | "cloudflareKVHTTP" | "cloudflareR2Binding" | "fs" | "fsLite" | "github" | "http" | "indexedb" | "localStorage" | "lruCache" | "memory" | "mongodb" | "netlifyBlobs" | "overlay" | "planetscale" | "redis" | "sessionStorage" | "vercelKV" | "cloudflare-kv-binding" | "cloudflare-kv-http", ...("null" | "azureAppConfiguration" | "azureCosmos" | "azureKeyVault" | "azureStorageBlob" | "azureStorageTable" | "cloudflareKVBinding" | "cloudflareKVHTTP" | "cloudflareR2Binding" | "fs" | "fsLite" | "github" | "http" | "indexedb" | "localStorage" | "lruCache" | "memory" | "mongodb" | "netlifyBlobs" | "overlay" | "planetscale" | "redis" | "sessionStorage" | "vercelKV" | "cloudflare-kv-binding" | "cloudflare-kv-http")[]]>;
566
+ driver: z.ZodEnum<[BuiltinDriverName, ...BuiltinDriverName[]]>;
566
567
  compression: z.ZodOptional<z.ZodEnum<["deflate", "gzip", "brotli", "none"]>>;
567
568
  url: z.ZodOptional<z.ZodString>;
568
569
  token: z.ZodOptional<z.ZodString>;
@@ -573,7 +574,7 @@ declare const StorefrontConfigSchema: z.ZodObject<{
573
574
  tls: z.ZodOptional<z.ZodBoolean>;
574
575
  ttl: z.ZodOptional<z.ZodNumber>;
575
576
  }, "strip", z.ZodTypeAny, {
576
- driver: "null" | "azureAppConfiguration" | "azureCosmos" | "azureKeyVault" | "azureStorageBlob" | "azureStorageTable" | "cloudflareKVBinding" | "cloudflareKVHTTP" | "cloudflareR2Binding" | "fs" | "fsLite" | "github" | "http" | "indexedb" | "localStorage" | "lruCache" | "memory" | "mongodb" | "netlifyBlobs" | "overlay" | "planetscale" | "redis" | "sessionStorage" | "vercelKV" | "cloudflare-kv-binding" | "cloudflare-kv-http";
577
+ driver: BuiltinDriverName;
577
578
  ttl?: number | undefined;
578
579
  host?: string | undefined;
579
580
  token?: string | undefined;
@@ -584,7 +585,7 @@ declare const StorefrontConfigSchema: z.ZodObject<{
584
585
  password?: string | undefined;
585
586
  tls?: boolean | undefined;
586
587
  }, {
587
- driver: "null" | "azureAppConfiguration" | "azureCosmos" | "azureKeyVault" | "azureStorageBlob" | "azureStorageTable" | "cloudflareKVBinding" | "cloudflareKVHTTP" | "cloudflareR2Binding" | "fs" | "fsLite" | "github" | "http" | "indexedb" | "localStorage" | "lruCache" | "memory" | "mongodb" | "netlifyBlobs" | "overlay" | "planetscale" | "redis" | "sessionStorage" | "vercelKV" | "cloudflare-kv-binding" | "cloudflare-kv-http";
588
+ driver: BuiltinDriverName;
588
589
  ttl?: number | undefined;
589
590
  host?: string | undefined;
590
591
  token?: string | undefined;
@@ -597,7 +598,7 @@ declare const StorefrontConfigSchema: z.ZodObject<{
597
598
  }>>;
598
599
  }, "strip", z.ZodTypeAny, {
599
600
  session?: {
600
- driver: "null" | "azureAppConfiguration" | "azureCosmos" | "azureKeyVault" | "azureStorageBlob" | "azureStorageTable" | "cloudflareKVBinding" | "cloudflareKVHTTP" | "cloudflareR2Binding" | "fs" | "fsLite" | "github" | "http" | "indexedb" | "localStorage" | "lruCache" | "memory" | "mongodb" | "netlifyBlobs" | "overlay" | "planetscale" | "redis" | "sessionStorage" | "vercelKV" | "cloudflare-kv-binding" | "cloudflare-kv-http";
601
+ driver: BuiltinDriverName;
601
602
  ttl?: number | undefined;
602
603
  host?: string | undefined;
603
604
  token?: string | undefined;
@@ -609,7 +610,7 @@ declare const StorefrontConfigSchema: z.ZodObject<{
609
610
  tls?: boolean | undefined;
610
611
  } | undefined;
611
612
  cache?: {
612
- driver: "null" | "azureAppConfiguration" | "azureCosmos" | "azureKeyVault" | "azureStorageBlob" | "azureStorageTable" | "cloudflareKVBinding" | "cloudflareKVHTTP" | "cloudflareR2Binding" | "fs" | "fsLite" | "github" | "http" | "indexedb" | "localStorage" | "lruCache" | "memory" | "mongodb" | "netlifyBlobs" | "overlay" | "planetscale" | "redis" | "sessionStorage" | "vercelKV" | "cloudflare-kv-binding" | "cloudflare-kv-http";
613
+ driver: BuiltinDriverName;
613
614
  ttl?: number | undefined;
614
615
  host?: string | undefined;
615
616
  token?: string | undefined;
@@ -622,7 +623,7 @@ declare const StorefrontConfigSchema: z.ZodObject<{
622
623
  } | undefined;
623
624
  }, {
624
625
  session?: {
625
- driver: "null" | "azureAppConfiguration" | "azureCosmos" | "azureKeyVault" | "azureStorageBlob" | "azureStorageTable" | "cloudflareKVBinding" | "cloudflareKVHTTP" | "cloudflareR2Binding" | "fs" | "fsLite" | "github" | "http" | "indexedb" | "localStorage" | "lruCache" | "memory" | "mongodb" | "netlifyBlobs" | "overlay" | "planetscale" | "redis" | "sessionStorage" | "vercelKV" | "cloudflare-kv-binding" | "cloudflare-kv-http";
626
+ driver: BuiltinDriverName;
626
627
  ttl?: number | undefined;
627
628
  host?: string | undefined;
628
629
  token?: string | undefined;
@@ -634,7 +635,7 @@ declare const StorefrontConfigSchema: z.ZodObject<{
634
635
  tls?: boolean | undefined;
635
636
  } | undefined;
636
637
  cache?: {
637
- driver: "null" | "azureAppConfiguration" | "azureCosmos" | "azureKeyVault" | "azureStorageBlob" | "azureStorageTable" | "cloudflareKVBinding" | "cloudflareKVHTTP" | "cloudflareR2Binding" | "fs" | "fsLite" | "github" | "http" | "indexedb" | "localStorage" | "lruCache" | "memory" | "mongodb" | "netlifyBlobs" | "overlay" | "planetscale" | "redis" | "sessionStorage" | "vercelKV" | "cloudflare-kv-binding" | "cloudflare-kv-http";
638
+ driver: BuiltinDriverName;
638
639
  ttl?: number | undefined;
639
640
  host?: string | undefined;
640
641
  token?: string | undefined;
@@ -769,7 +770,7 @@ declare const StorefrontConfigSchema: z.ZodObject<{
769
770
  } | undefined;
770
771
  storage?: {
771
772
  session?: {
772
- driver: "null" | "azureAppConfiguration" | "azureCosmos" | "azureKeyVault" | "azureStorageBlob" | "azureStorageTable" | "cloudflareKVBinding" | "cloudflareKVHTTP" | "cloudflareR2Binding" | "fs" | "fsLite" | "github" | "http" | "indexedb" | "localStorage" | "lruCache" | "memory" | "mongodb" | "netlifyBlobs" | "overlay" | "planetscale" | "redis" | "sessionStorage" | "vercelKV" | "cloudflare-kv-binding" | "cloudflare-kv-http";
773
+ driver: BuiltinDriverName;
773
774
  ttl?: number | undefined;
774
775
  host?: string | undefined;
775
776
  token?: string | undefined;
@@ -781,7 +782,7 @@ declare const StorefrontConfigSchema: z.ZodObject<{
781
782
  tls?: boolean | undefined;
782
783
  } | undefined;
783
784
  cache?: {
784
- driver: "null" | "azureAppConfiguration" | "azureCosmos" | "azureKeyVault" | "azureStorageBlob" | "azureStorageTable" | "cloudflareKVBinding" | "cloudflareKVHTTP" | "cloudflareR2Binding" | "fs" | "fsLite" | "github" | "http" | "indexedb" | "localStorage" | "lruCache" | "memory" | "mongodb" | "netlifyBlobs" | "overlay" | "planetscale" | "redis" | "sessionStorage" | "vercelKV" | "cloudflare-kv-binding" | "cloudflare-kv-http";
785
+ driver: BuiltinDriverName;
785
786
  ttl?: number | undefined;
786
787
  host?: string | undefined;
787
788
  token?: string | undefined;
@@ -835,7 +836,7 @@ declare const StorefrontConfigSchema: z.ZodObject<{
835
836
  } | undefined;
836
837
  storage?: {
837
838
  session?: {
838
- driver: "null" | "azureAppConfiguration" | "azureCosmos" | "azureKeyVault" | "azureStorageBlob" | "azureStorageTable" | "cloudflareKVBinding" | "cloudflareKVHTTP" | "cloudflareR2Binding" | "fs" | "fsLite" | "github" | "http" | "indexedb" | "localStorage" | "lruCache" | "memory" | "mongodb" | "netlifyBlobs" | "overlay" | "planetscale" | "redis" | "sessionStorage" | "vercelKV" | "cloudflare-kv-binding" | "cloudflare-kv-http";
839
+ driver: BuiltinDriverName;
839
840
  ttl?: number | undefined;
840
841
  host?: string | undefined;
841
842
  token?: string | undefined;
@@ -847,7 +848,7 @@ declare const StorefrontConfigSchema: z.ZodObject<{
847
848
  tls?: boolean | undefined;
848
849
  } | undefined;
849
850
  cache?: {
850
- driver: "null" | "azureAppConfiguration" | "azureCosmos" | "azureKeyVault" | "azureStorageBlob" | "azureStorageTable" | "cloudflareKVBinding" | "cloudflareKVHTTP" | "cloudflareR2Binding" | "fs" | "fsLite" | "github" | "http" | "indexedb" | "localStorage" | "lruCache" | "memory" | "mongodb" | "netlifyBlobs" | "overlay" | "planetscale" | "redis" | "sessionStorage" | "vercelKV" | "cloudflare-kv-binding" | "cloudflare-kv-http";
851
+ driver: BuiltinDriverName;
851
852
  ttl?: number | undefined;
852
853
  host?: string | undefined;
853
854
  token?: string | undefined;
@@ -1024,7 +1025,7 @@ export declare const RuntimeConfigSchema: z.ZodObject<{
1024
1025
  }>>;
1025
1026
  storage: z.ZodOptional<z.ZodObject<{
1026
1027
  session: z.ZodOptional<z.ZodObject<{
1027
- driver: z.ZodEnum<["null" | "azureAppConfiguration" | "azureCosmos" | "azureKeyVault" | "azureStorageBlob" | "azureStorageTable" | "cloudflareKVBinding" | "cloudflareKVHTTP" | "cloudflareR2Binding" | "fs" | "fsLite" | "github" | "http" | "indexedb" | "localStorage" | "lruCache" | "memory" | "mongodb" | "netlifyBlobs" | "overlay" | "planetscale" | "redis" | "sessionStorage" | "vercelKV" | "cloudflare-kv-binding" | "cloudflare-kv-http", ...("null" | "azureAppConfiguration" | "azureCosmos" | "azureKeyVault" | "azureStorageBlob" | "azureStorageTable" | "cloudflareKVBinding" | "cloudflareKVHTTP" | "cloudflareR2Binding" | "fs" | "fsLite" | "github" | "http" | "indexedb" | "localStorage" | "lruCache" | "memory" | "mongodb" | "netlifyBlobs" | "overlay" | "planetscale" | "redis" | "sessionStorage" | "vercelKV" | "cloudflare-kv-binding" | "cloudflare-kv-http")[]]>;
1028
+ driver: z.ZodEnum<[BuiltinDriverName, ...BuiltinDriverName[]]>;
1028
1029
  compression: z.ZodOptional<z.ZodEnum<["deflate", "gzip", "brotli", "none"]>>;
1029
1030
  url: z.ZodOptional<z.ZodString>;
1030
1031
  token: z.ZodOptional<z.ZodString>;
@@ -1035,7 +1036,7 @@ export declare const RuntimeConfigSchema: z.ZodObject<{
1035
1036
  tls: z.ZodOptional<z.ZodBoolean>;
1036
1037
  ttl: z.ZodOptional<z.ZodNumber>;
1037
1038
  }, "strip", z.ZodTypeAny, {
1038
- driver: "null" | "azureAppConfiguration" | "azureCosmos" | "azureKeyVault" | "azureStorageBlob" | "azureStorageTable" | "cloudflareKVBinding" | "cloudflareKVHTTP" | "cloudflareR2Binding" | "fs" | "fsLite" | "github" | "http" | "indexedb" | "localStorage" | "lruCache" | "memory" | "mongodb" | "netlifyBlobs" | "overlay" | "planetscale" | "redis" | "sessionStorage" | "vercelKV" | "cloudflare-kv-binding" | "cloudflare-kv-http";
1039
+ driver: BuiltinDriverName;
1039
1040
  ttl?: number | undefined;
1040
1041
  host?: string | undefined;
1041
1042
  token?: string | undefined;
@@ -1046,7 +1047,7 @@ export declare const RuntimeConfigSchema: z.ZodObject<{
1046
1047
  password?: string | undefined;
1047
1048
  tls?: boolean | undefined;
1048
1049
  }, {
1049
- driver: "null" | "azureAppConfiguration" | "azureCosmos" | "azureKeyVault" | "azureStorageBlob" | "azureStorageTable" | "cloudflareKVBinding" | "cloudflareKVHTTP" | "cloudflareR2Binding" | "fs" | "fsLite" | "github" | "http" | "indexedb" | "localStorage" | "lruCache" | "memory" | "mongodb" | "netlifyBlobs" | "overlay" | "planetscale" | "redis" | "sessionStorage" | "vercelKV" | "cloudflare-kv-binding" | "cloudflare-kv-http";
1050
+ driver: BuiltinDriverName;
1050
1051
  ttl?: number | undefined;
1051
1052
  host?: string | undefined;
1052
1053
  token?: string | undefined;
@@ -1058,7 +1059,7 @@ export declare const RuntimeConfigSchema: z.ZodObject<{
1058
1059
  tls?: boolean | undefined;
1059
1060
  }>>;
1060
1061
  cache: z.ZodOptional<z.ZodObject<{
1061
- driver: z.ZodEnum<["null" | "azureAppConfiguration" | "azureCosmos" | "azureKeyVault" | "azureStorageBlob" | "azureStorageTable" | "cloudflareKVBinding" | "cloudflareKVHTTP" | "cloudflareR2Binding" | "fs" | "fsLite" | "github" | "http" | "indexedb" | "localStorage" | "lruCache" | "memory" | "mongodb" | "netlifyBlobs" | "overlay" | "planetscale" | "redis" | "sessionStorage" | "vercelKV" | "cloudflare-kv-binding" | "cloudflare-kv-http", ...("null" | "azureAppConfiguration" | "azureCosmos" | "azureKeyVault" | "azureStorageBlob" | "azureStorageTable" | "cloudflareKVBinding" | "cloudflareKVHTTP" | "cloudflareR2Binding" | "fs" | "fsLite" | "github" | "http" | "indexedb" | "localStorage" | "lruCache" | "memory" | "mongodb" | "netlifyBlobs" | "overlay" | "planetscale" | "redis" | "sessionStorage" | "vercelKV" | "cloudflare-kv-binding" | "cloudflare-kv-http")[]]>;
1062
+ driver: z.ZodEnum<[BuiltinDriverName, ...BuiltinDriverName[]]>;
1062
1063
  compression: z.ZodOptional<z.ZodEnum<["deflate", "gzip", "brotli", "none"]>>;
1063
1064
  url: z.ZodOptional<z.ZodString>;
1064
1065
  token: z.ZodOptional<z.ZodString>;
@@ -1069,7 +1070,7 @@ export declare const RuntimeConfigSchema: z.ZodObject<{
1069
1070
  tls: z.ZodOptional<z.ZodBoolean>;
1070
1071
  ttl: z.ZodOptional<z.ZodNumber>;
1071
1072
  }, "strip", z.ZodTypeAny, {
1072
- driver: "null" | "azureAppConfiguration" | "azureCosmos" | "azureKeyVault" | "azureStorageBlob" | "azureStorageTable" | "cloudflareKVBinding" | "cloudflareKVHTTP" | "cloudflareR2Binding" | "fs" | "fsLite" | "github" | "http" | "indexedb" | "localStorage" | "lruCache" | "memory" | "mongodb" | "netlifyBlobs" | "overlay" | "planetscale" | "redis" | "sessionStorage" | "vercelKV" | "cloudflare-kv-binding" | "cloudflare-kv-http";
1073
+ driver: BuiltinDriverName;
1073
1074
  ttl?: number | undefined;
1074
1075
  host?: string | undefined;
1075
1076
  token?: string | undefined;
@@ -1080,7 +1081,7 @@ export declare const RuntimeConfigSchema: z.ZodObject<{
1080
1081
  password?: string | undefined;
1081
1082
  tls?: boolean | undefined;
1082
1083
  }, {
1083
- driver: "null" | "azureAppConfiguration" | "azureCosmos" | "azureKeyVault" | "azureStorageBlob" | "azureStorageTable" | "cloudflareKVBinding" | "cloudflareKVHTTP" | "cloudflareR2Binding" | "fs" | "fsLite" | "github" | "http" | "indexedb" | "localStorage" | "lruCache" | "memory" | "mongodb" | "netlifyBlobs" | "overlay" | "planetscale" | "redis" | "sessionStorage" | "vercelKV" | "cloudflare-kv-binding" | "cloudflare-kv-http";
1084
+ driver: BuiltinDriverName;
1084
1085
  ttl?: number | undefined;
1085
1086
  host?: string | undefined;
1086
1087
  token?: string | undefined;
@@ -1093,7 +1094,7 @@ export declare const RuntimeConfigSchema: z.ZodObject<{
1093
1094
  }>>;
1094
1095
  }, "strip", z.ZodTypeAny, {
1095
1096
  session?: {
1096
- driver: "null" | "azureAppConfiguration" | "azureCosmos" | "azureKeyVault" | "azureStorageBlob" | "azureStorageTable" | "cloudflareKVBinding" | "cloudflareKVHTTP" | "cloudflareR2Binding" | "fs" | "fsLite" | "github" | "http" | "indexedb" | "localStorage" | "lruCache" | "memory" | "mongodb" | "netlifyBlobs" | "overlay" | "planetscale" | "redis" | "sessionStorage" | "vercelKV" | "cloudflare-kv-binding" | "cloudflare-kv-http";
1097
+ driver: BuiltinDriverName;
1097
1098
  ttl?: number | undefined;
1098
1099
  host?: string | undefined;
1099
1100
  token?: string | undefined;
@@ -1105,7 +1106,7 @@ export declare const RuntimeConfigSchema: z.ZodObject<{
1105
1106
  tls?: boolean | undefined;
1106
1107
  } | undefined;
1107
1108
  cache?: {
1108
- driver: "null" | "azureAppConfiguration" | "azureCosmos" | "azureKeyVault" | "azureStorageBlob" | "azureStorageTable" | "cloudflareKVBinding" | "cloudflareKVHTTP" | "cloudflareR2Binding" | "fs" | "fsLite" | "github" | "http" | "indexedb" | "localStorage" | "lruCache" | "memory" | "mongodb" | "netlifyBlobs" | "overlay" | "planetscale" | "redis" | "sessionStorage" | "vercelKV" | "cloudflare-kv-binding" | "cloudflare-kv-http";
1109
+ driver: BuiltinDriverName;
1109
1110
  ttl?: number | undefined;
1110
1111
  host?: string | undefined;
1111
1112
  token?: string | undefined;
@@ -1118,7 +1119,7 @@ export declare const RuntimeConfigSchema: z.ZodObject<{
1118
1119
  } | undefined;
1119
1120
  }, {
1120
1121
  session?: {
1121
- driver: "null" | "azureAppConfiguration" | "azureCosmos" | "azureKeyVault" | "azureStorageBlob" | "azureStorageTable" | "cloudflareKVBinding" | "cloudflareKVHTTP" | "cloudflareR2Binding" | "fs" | "fsLite" | "github" | "http" | "indexedb" | "localStorage" | "lruCache" | "memory" | "mongodb" | "netlifyBlobs" | "overlay" | "planetscale" | "redis" | "sessionStorage" | "vercelKV" | "cloudflare-kv-binding" | "cloudflare-kv-http";
1122
+ driver: BuiltinDriverName;
1122
1123
  ttl?: number | undefined;
1123
1124
  host?: string | undefined;
1124
1125
  token?: string | undefined;
@@ -1130,7 +1131,7 @@ export declare const RuntimeConfigSchema: z.ZodObject<{
1130
1131
  tls?: boolean | undefined;
1131
1132
  } | undefined;
1132
1133
  cache?: {
1133
- driver: "null" | "azureAppConfiguration" | "azureCosmos" | "azureKeyVault" | "azureStorageBlob" | "azureStorageTable" | "cloudflareKVBinding" | "cloudflareKVHTTP" | "cloudflareR2Binding" | "fs" | "fsLite" | "github" | "http" | "indexedb" | "localStorage" | "lruCache" | "memory" | "mongodb" | "netlifyBlobs" | "overlay" | "planetscale" | "redis" | "sessionStorage" | "vercelKV" | "cloudflare-kv-binding" | "cloudflare-kv-http";
1134
+ driver: BuiltinDriverName;
1134
1135
  ttl?: number | undefined;
1135
1136
  host?: string | undefined;
1136
1137
  token?: string | undefined;
@@ -1185,7 +1186,7 @@ export declare const RuntimeConfigSchema: z.ZodObject<{
1185
1186
  } | undefined;
1186
1187
  storage?: {
1187
1188
  session?: {
1188
- driver: "null" | "azureAppConfiguration" | "azureCosmos" | "azureKeyVault" | "azureStorageBlob" | "azureStorageTable" | "cloudflareKVBinding" | "cloudflareKVHTTP" | "cloudflareR2Binding" | "fs" | "fsLite" | "github" | "http" | "indexedb" | "localStorage" | "lruCache" | "memory" | "mongodb" | "netlifyBlobs" | "overlay" | "planetscale" | "redis" | "sessionStorage" | "vercelKV" | "cloudflare-kv-binding" | "cloudflare-kv-http";
1189
+ driver: BuiltinDriverName;
1189
1190
  ttl?: number | undefined;
1190
1191
  host?: string | undefined;
1191
1192
  token?: string | undefined;
@@ -1197,7 +1198,7 @@ export declare const RuntimeConfigSchema: z.ZodObject<{
1197
1198
  tls?: boolean | undefined;
1198
1199
  } | undefined;
1199
1200
  cache?: {
1200
- driver: "null" | "azureAppConfiguration" | "azureCosmos" | "azureKeyVault" | "azureStorageBlob" | "azureStorageTable" | "cloudflareKVBinding" | "cloudflareKVHTTP" | "cloudflareR2Binding" | "fs" | "fsLite" | "github" | "http" | "indexedb" | "localStorage" | "lruCache" | "memory" | "mongodb" | "netlifyBlobs" | "overlay" | "planetscale" | "redis" | "sessionStorage" | "vercelKV" | "cloudflare-kv-binding" | "cloudflare-kv-http";
1201
+ driver: BuiltinDriverName;
1201
1202
  ttl?: number | undefined;
1202
1203
  host?: string | undefined;
1203
1204
  token?: string | undefined;
@@ -1252,7 +1253,7 @@ export declare const RuntimeConfigSchema: z.ZodObject<{
1252
1253
  } | undefined;
1253
1254
  storage?: {
1254
1255
  session?: {
1255
- driver: "null" | "azureAppConfiguration" | "azureCosmos" | "azureKeyVault" | "azureStorageBlob" | "azureStorageTable" | "cloudflareKVBinding" | "cloudflareKVHTTP" | "cloudflareR2Binding" | "fs" | "fsLite" | "github" | "http" | "indexedb" | "localStorage" | "lruCache" | "memory" | "mongodb" | "netlifyBlobs" | "overlay" | "planetscale" | "redis" | "sessionStorage" | "vercelKV" | "cloudflare-kv-binding" | "cloudflare-kv-http";
1256
+ driver: BuiltinDriverName;
1256
1257
  ttl?: number | undefined;
1257
1258
  host?: string | undefined;
1258
1259
  token?: string | undefined;
@@ -1264,7 +1265,7 @@ export declare const RuntimeConfigSchema: z.ZodObject<{
1264
1265
  tls?: boolean | undefined;
1265
1266
  } | undefined;
1266
1267
  cache?: {
1267
- driver: "null" | "azureAppConfiguration" | "azureCosmos" | "azureKeyVault" | "azureStorageBlob" | "azureStorageTable" | "cloudflareKVBinding" | "cloudflareKVHTTP" | "cloudflareR2Binding" | "fs" | "fsLite" | "github" | "http" | "indexedb" | "localStorage" | "lruCache" | "memory" | "mongodb" | "netlifyBlobs" | "overlay" | "planetscale" | "redis" | "sessionStorage" | "vercelKV" | "cloudflare-kv-binding" | "cloudflare-kv-http";
1268
+ driver: BuiltinDriverName;
1268
1269
  ttl?: number | undefined;
1269
1270
  host?: string | undefined;
1270
1271
  token?: string | undefined;
@@ -1322,7 +1323,7 @@ export declare const RuntimeConfigSchema: z.ZodObject<{
1322
1323
  } | undefined;
1323
1324
  storage?: {
1324
1325
  session?: {
1325
- driver: "null" | "azureAppConfiguration" | "azureCosmos" | "azureKeyVault" | "azureStorageBlob" | "azureStorageTable" | "cloudflareKVBinding" | "cloudflareKVHTTP" | "cloudflareR2Binding" | "fs" | "fsLite" | "github" | "http" | "indexedb" | "localStorage" | "lruCache" | "memory" | "mongodb" | "netlifyBlobs" | "overlay" | "planetscale" | "redis" | "sessionStorage" | "vercelKV" | "cloudflare-kv-binding" | "cloudflare-kv-http";
1326
+ driver: BuiltinDriverName;
1326
1327
  ttl?: number | undefined;
1327
1328
  host?: string | undefined;
1328
1329
  token?: string | undefined;
@@ -1334,7 +1335,7 @@ export declare const RuntimeConfigSchema: z.ZodObject<{
1334
1335
  tls?: boolean | undefined;
1335
1336
  } | undefined;
1336
1337
  cache?: {
1337
- driver: "null" | "azureAppConfiguration" | "azureCosmos" | "azureKeyVault" | "azureStorageBlob" | "azureStorageTable" | "cloudflareKVBinding" | "cloudflareKVHTTP" | "cloudflareR2Binding" | "fs" | "fsLite" | "github" | "http" | "indexedb" | "localStorage" | "lruCache" | "memory" | "mongodb" | "netlifyBlobs" | "overlay" | "planetscale" | "redis" | "sessionStorage" | "vercelKV" | "cloudflare-kv-binding" | "cloudflare-kv-http";
1338
+ driver: BuiltinDriverName;
1338
1339
  ttl?: number | undefined;
1339
1340
  host?: string | undefined;
1340
1341
  token?: string | undefined;
@@ -1396,7 +1397,7 @@ export declare const RuntimeConfigSchema: z.ZodObject<{
1396
1397
  } | undefined;
1397
1398
  storage?: {
1398
1399
  session?: {
1399
- driver: "null" | "azureAppConfiguration" | "azureCosmos" | "azureKeyVault" | "azureStorageBlob" | "azureStorageTable" | "cloudflareKVBinding" | "cloudflareKVHTTP" | "cloudflareR2Binding" | "fs" | "fsLite" | "github" | "http" | "indexedb" | "localStorage" | "lruCache" | "memory" | "mongodb" | "netlifyBlobs" | "overlay" | "planetscale" | "redis" | "sessionStorage" | "vercelKV" | "cloudflare-kv-binding" | "cloudflare-kv-http";
1400
+ driver: BuiltinDriverName;
1400
1401
  ttl?: number | undefined;
1401
1402
  host?: string | undefined;
1402
1403
  token?: string | undefined;
@@ -1408,7 +1409,7 @@ export declare const RuntimeConfigSchema: z.ZodObject<{
1408
1409
  tls?: boolean | undefined;
1409
1410
  } | undefined;
1410
1411
  cache?: {
1411
- driver: "null" | "azureAppConfiguration" | "azureCosmos" | "azureKeyVault" | "azureStorageBlob" | "azureStorageTable" | "cloudflareKVBinding" | "cloudflareKVHTTP" | "cloudflareR2Binding" | "fs" | "fsLite" | "github" | "http" | "indexedb" | "localStorage" | "lruCache" | "memory" | "mongodb" | "netlifyBlobs" | "overlay" | "planetscale" | "redis" | "sessionStorage" | "vercelKV" | "cloudflare-kv-binding" | "cloudflare-kv-http";
1412
+ driver: BuiltinDriverName;
1412
1413
  ttl?: number | undefined;
1413
1414
  host?: string | undefined;
1414
1415
  token?: string | undefined;
@@ -1464,7 +1465,7 @@ export declare const RuntimeConfigSchema: z.ZodObject<{
1464
1465
  }>>;
1465
1466
  storage: z.ZodOptional<z.ZodObject<{
1466
1467
  session: z.ZodOptional<z.ZodObject<{
1467
- driver: z.ZodEnum<["null" | "azureAppConfiguration" | "azureCosmos" | "azureKeyVault" | "azureStorageBlob" | "azureStorageTable" | "cloudflareKVBinding" | "cloudflareKVHTTP" | "cloudflareR2Binding" | "fs" | "fsLite" | "github" | "http" | "indexedb" | "localStorage" | "lruCache" | "memory" | "mongodb" | "netlifyBlobs" | "overlay" | "planetscale" | "redis" | "sessionStorage" | "vercelKV" | "cloudflare-kv-binding" | "cloudflare-kv-http", ...("null" | "azureAppConfiguration" | "azureCosmos" | "azureKeyVault" | "azureStorageBlob" | "azureStorageTable" | "cloudflareKVBinding" | "cloudflareKVHTTP" | "cloudflareR2Binding" | "fs" | "fsLite" | "github" | "http" | "indexedb" | "localStorage" | "lruCache" | "memory" | "mongodb" | "netlifyBlobs" | "overlay" | "planetscale" | "redis" | "sessionStorage" | "vercelKV" | "cloudflare-kv-binding" | "cloudflare-kv-http")[]]>;
1468
+ driver: z.ZodEnum<[BuiltinDriverName, ...BuiltinDriverName[]]>;
1468
1469
  compression: z.ZodOptional<z.ZodEnum<["deflate", "gzip", "brotli", "none"]>>;
1469
1470
  url: z.ZodOptional<z.ZodString>;
1470
1471
  token: z.ZodOptional<z.ZodString>;
@@ -1475,7 +1476,7 @@ export declare const RuntimeConfigSchema: z.ZodObject<{
1475
1476
  tls: z.ZodOptional<z.ZodBoolean>;
1476
1477
  ttl: z.ZodOptional<z.ZodNumber>;
1477
1478
  }, "strip", z.ZodTypeAny, {
1478
- driver: "null" | "azureAppConfiguration" | "azureCosmos" | "azureKeyVault" | "azureStorageBlob" | "azureStorageTable" | "cloudflareKVBinding" | "cloudflareKVHTTP" | "cloudflareR2Binding" | "fs" | "fsLite" | "github" | "http" | "indexedb" | "localStorage" | "lruCache" | "memory" | "mongodb" | "netlifyBlobs" | "overlay" | "planetscale" | "redis" | "sessionStorage" | "vercelKV" | "cloudflare-kv-binding" | "cloudflare-kv-http";
1479
+ driver: BuiltinDriverName;
1479
1480
  ttl?: number | undefined;
1480
1481
  host?: string | undefined;
1481
1482
  token?: string | undefined;
@@ -1486,7 +1487,7 @@ export declare const RuntimeConfigSchema: z.ZodObject<{
1486
1487
  password?: string | undefined;
1487
1488
  tls?: boolean | undefined;
1488
1489
  }, {
1489
- driver: "null" | "azureAppConfiguration" | "azureCosmos" | "azureKeyVault" | "azureStorageBlob" | "azureStorageTable" | "cloudflareKVBinding" | "cloudflareKVHTTP" | "cloudflareR2Binding" | "fs" | "fsLite" | "github" | "http" | "indexedb" | "localStorage" | "lruCache" | "memory" | "mongodb" | "netlifyBlobs" | "overlay" | "planetscale" | "redis" | "sessionStorage" | "vercelKV" | "cloudflare-kv-binding" | "cloudflare-kv-http";
1490
+ driver: BuiltinDriverName;
1490
1491
  ttl?: number | undefined;
1491
1492
  host?: string | undefined;
1492
1493
  token?: string | undefined;
@@ -1498,7 +1499,7 @@ export declare const RuntimeConfigSchema: z.ZodObject<{
1498
1499
  tls?: boolean | undefined;
1499
1500
  }>>;
1500
1501
  cache: z.ZodOptional<z.ZodObject<{
1501
- driver: z.ZodEnum<["null" | "azureAppConfiguration" | "azureCosmos" | "azureKeyVault" | "azureStorageBlob" | "azureStorageTable" | "cloudflareKVBinding" | "cloudflareKVHTTP" | "cloudflareR2Binding" | "fs" | "fsLite" | "github" | "http" | "indexedb" | "localStorage" | "lruCache" | "memory" | "mongodb" | "netlifyBlobs" | "overlay" | "planetscale" | "redis" | "sessionStorage" | "vercelKV" | "cloudflare-kv-binding" | "cloudflare-kv-http", ...("null" | "azureAppConfiguration" | "azureCosmos" | "azureKeyVault" | "azureStorageBlob" | "azureStorageTable" | "cloudflareKVBinding" | "cloudflareKVHTTP" | "cloudflareR2Binding" | "fs" | "fsLite" | "github" | "http" | "indexedb" | "localStorage" | "lruCache" | "memory" | "mongodb" | "netlifyBlobs" | "overlay" | "planetscale" | "redis" | "sessionStorage" | "vercelKV" | "cloudflare-kv-binding" | "cloudflare-kv-http")[]]>;
1502
+ driver: z.ZodEnum<[BuiltinDriverName, ...BuiltinDriverName[]]>;
1502
1503
  compression: z.ZodOptional<z.ZodEnum<["deflate", "gzip", "brotli", "none"]>>;
1503
1504
  url: z.ZodOptional<z.ZodString>;
1504
1505
  token: z.ZodOptional<z.ZodString>;
@@ -1509,7 +1510,7 @@ export declare const RuntimeConfigSchema: z.ZodObject<{
1509
1510
  tls: z.ZodOptional<z.ZodBoolean>;
1510
1511
  ttl: z.ZodOptional<z.ZodNumber>;
1511
1512
  }, "strip", z.ZodTypeAny, {
1512
- driver: "null" | "azureAppConfiguration" | "azureCosmos" | "azureKeyVault" | "azureStorageBlob" | "azureStorageTable" | "cloudflareKVBinding" | "cloudflareKVHTTP" | "cloudflareR2Binding" | "fs" | "fsLite" | "github" | "http" | "indexedb" | "localStorage" | "lruCache" | "memory" | "mongodb" | "netlifyBlobs" | "overlay" | "planetscale" | "redis" | "sessionStorage" | "vercelKV" | "cloudflare-kv-binding" | "cloudflare-kv-http";
1513
+ driver: BuiltinDriverName;
1513
1514
  ttl?: number | undefined;
1514
1515
  host?: string | undefined;
1515
1516
  token?: string | undefined;
@@ -1520,7 +1521,7 @@ export declare const RuntimeConfigSchema: z.ZodObject<{
1520
1521
  password?: string | undefined;
1521
1522
  tls?: boolean | undefined;
1522
1523
  }, {
1523
- driver: "null" | "azureAppConfiguration" | "azureCosmos" | "azureKeyVault" | "azureStorageBlob" | "azureStorageTable" | "cloudflareKVBinding" | "cloudflareKVHTTP" | "cloudflareR2Binding" | "fs" | "fsLite" | "github" | "http" | "indexedb" | "localStorage" | "lruCache" | "memory" | "mongodb" | "netlifyBlobs" | "overlay" | "planetscale" | "redis" | "sessionStorage" | "vercelKV" | "cloudflare-kv-binding" | "cloudflare-kv-http";
1524
+ driver: BuiltinDriverName;
1524
1525
  ttl?: number | undefined;
1525
1526
  host?: string | undefined;
1526
1527
  token?: string | undefined;
@@ -1533,7 +1534,7 @@ export declare const RuntimeConfigSchema: z.ZodObject<{
1533
1534
  }>>;
1534
1535
  }, "strip", z.ZodTypeAny, {
1535
1536
  session?: {
1536
- driver: "null" | "azureAppConfiguration" | "azureCosmos" | "azureKeyVault" | "azureStorageBlob" | "azureStorageTable" | "cloudflareKVBinding" | "cloudflareKVHTTP" | "cloudflareR2Binding" | "fs" | "fsLite" | "github" | "http" | "indexedb" | "localStorage" | "lruCache" | "memory" | "mongodb" | "netlifyBlobs" | "overlay" | "planetscale" | "redis" | "sessionStorage" | "vercelKV" | "cloudflare-kv-binding" | "cloudflare-kv-http";
1537
+ driver: BuiltinDriverName;
1537
1538
  ttl?: number | undefined;
1538
1539
  host?: string | undefined;
1539
1540
  token?: string | undefined;
@@ -1545,7 +1546,7 @@ export declare const RuntimeConfigSchema: z.ZodObject<{
1545
1546
  tls?: boolean | undefined;
1546
1547
  } | undefined;
1547
1548
  cache?: {
1548
- driver: "null" | "azureAppConfiguration" | "azureCosmos" | "azureKeyVault" | "azureStorageBlob" | "azureStorageTable" | "cloudflareKVBinding" | "cloudflareKVHTTP" | "cloudflareR2Binding" | "fs" | "fsLite" | "github" | "http" | "indexedb" | "localStorage" | "lruCache" | "memory" | "mongodb" | "netlifyBlobs" | "overlay" | "planetscale" | "redis" | "sessionStorage" | "vercelKV" | "cloudflare-kv-binding" | "cloudflare-kv-http";
1549
+ driver: BuiltinDriverName;
1549
1550
  ttl?: number | undefined;
1550
1551
  host?: string | undefined;
1551
1552
  token?: string | undefined;
@@ -1558,7 +1559,7 @@ export declare const RuntimeConfigSchema: z.ZodObject<{
1558
1559
  } | undefined;
1559
1560
  }, {
1560
1561
  session?: {
1561
- driver: "null" | "azureAppConfiguration" | "azureCosmos" | "azureKeyVault" | "azureStorageBlob" | "azureStorageTable" | "cloudflareKVBinding" | "cloudflareKVHTTP" | "cloudflareR2Binding" | "fs" | "fsLite" | "github" | "http" | "indexedb" | "localStorage" | "lruCache" | "memory" | "mongodb" | "netlifyBlobs" | "overlay" | "planetscale" | "redis" | "sessionStorage" | "vercelKV" | "cloudflare-kv-binding" | "cloudflare-kv-http";
1562
+ driver: BuiltinDriverName;
1562
1563
  ttl?: number | undefined;
1563
1564
  host?: string | undefined;
1564
1565
  token?: string | undefined;
@@ -1570,7 +1571,7 @@ export declare const RuntimeConfigSchema: z.ZodObject<{
1570
1571
  tls?: boolean | undefined;
1571
1572
  } | undefined;
1572
1573
  cache?: {
1573
- driver: "null" | "azureAppConfiguration" | "azureCosmos" | "azureKeyVault" | "azureStorageBlob" | "azureStorageTable" | "cloudflareKVBinding" | "cloudflareKVHTTP" | "cloudflareR2Binding" | "fs" | "fsLite" | "github" | "http" | "indexedb" | "localStorage" | "lruCache" | "memory" | "mongodb" | "netlifyBlobs" | "overlay" | "planetscale" | "redis" | "sessionStorage" | "vercelKV" | "cloudflare-kv-binding" | "cloudflare-kv-http";
1574
+ driver: BuiltinDriverName;
1574
1575
  ttl?: number | undefined;
1575
1576
  host?: string | undefined;
1576
1577
  token?: string | undefined;
@@ -1705,7 +1706,7 @@ export declare const RuntimeConfigSchema: z.ZodObject<{
1705
1706
  } | undefined;
1706
1707
  storage?: {
1707
1708
  session?: {
1708
- driver: "null" | "azureAppConfiguration" | "azureCosmos" | "azureKeyVault" | "azureStorageBlob" | "azureStorageTable" | "cloudflareKVBinding" | "cloudflareKVHTTP" | "cloudflareR2Binding" | "fs" | "fsLite" | "github" | "http" | "indexedb" | "localStorage" | "lruCache" | "memory" | "mongodb" | "netlifyBlobs" | "overlay" | "planetscale" | "redis" | "sessionStorage" | "vercelKV" | "cloudflare-kv-binding" | "cloudflare-kv-http";
1709
+ driver: BuiltinDriverName;
1709
1710
  ttl?: number | undefined;
1710
1711
  host?: string | undefined;
1711
1712
  token?: string | undefined;
@@ -1717,7 +1718,7 @@ export declare const RuntimeConfigSchema: z.ZodObject<{
1717
1718
  tls?: boolean | undefined;
1718
1719
  } | undefined;
1719
1720
  cache?: {
1720
- driver: "null" | "azureAppConfiguration" | "azureCosmos" | "azureKeyVault" | "azureStorageBlob" | "azureStorageTable" | "cloudflareKVBinding" | "cloudflareKVHTTP" | "cloudflareR2Binding" | "fs" | "fsLite" | "github" | "http" | "indexedb" | "localStorage" | "lruCache" | "memory" | "mongodb" | "netlifyBlobs" | "overlay" | "planetscale" | "redis" | "sessionStorage" | "vercelKV" | "cloudflare-kv-binding" | "cloudflare-kv-http";
1721
+ driver: BuiltinDriverName;
1721
1722
  ttl?: number | undefined;
1722
1723
  host?: string | undefined;
1723
1724
  token?: string | undefined;
@@ -1771,7 +1772,7 @@ export declare const RuntimeConfigSchema: z.ZodObject<{
1771
1772
  } | undefined;
1772
1773
  storage?: {
1773
1774
  session?: {
1774
- driver: "null" | "azureAppConfiguration" | "azureCosmos" | "azureKeyVault" | "azureStorageBlob" | "azureStorageTable" | "cloudflareKVBinding" | "cloudflareKVHTTP" | "cloudflareR2Binding" | "fs" | "fsLite" | "github" | "http" | "indexedb" | "localStorage" | "lruCache" | "memory" | "mongodb" | "netlifyBlobs" | "overlay" | "planetscale" | "redis" | "sessionStorage" | "vercelKV" | "cloudflare-kv-binding" | "cloudflare-kv-http";
1775
+ driver: BuiltinDriverName;
1775
1776
  ttl?: number | undefined;
1776
1777
  host?: string | undefined;
1777
1778
  token?: string | undefined;
@@ -1783,7 +1784,7 @@ export declare const RuntimeConfigSchema: z.ZodObject<{
1783
1784
  tls?: boolean | undefined;
1784
1785
  } | undefined;
1785
1786
  cache?: {
1786
- driver: "null" | "azureAppConfiguration" | "azureCosmos" | "azureKeyVault" | "azureStorageBlob" | "azureStorageTable" | "cloudflareKVBinding" | "cloudflareKVHTTP" | "cloudflareR2Binding" | "fs" | "fsLite" | "github" | "http" | "indexedb" | "localStorage" | "lruCache" | "memory" | "mongodb" | "netlifyBlobs" | "overlay" | "planetscale" | "redis" | "sessionStorage" | "vercelKV" | "cloudflare-kv-binding" | "cloudflare-kv-http";
1787
+ driver: BuiltinDriverName;
1787
1788
  ttl?: number | undefined;
1788
1789
  host?: string | undefined;
1789
1790
  token?: string | undefined;
@@ -1904,7 +1905,7 @@ export declare const RuntimeConfigSchema: z.ZodObject<{
1904
1905
  } | undefined;
1905
1906
  storage?: {
1906
1907
  session?: {
1907
- driver: "null" | "azureAppConfiguration" | "azureCosmos" | "azureKeyVault" | "azureStorageBlob" | "azureStorageTable" | "cloudflareKVBinding" | "cloudflareKVHTTP" | "cloudflareR2Binding" | "fs" | "fsLite" | "github" | "http" | "indexedb" | "localStorage" | "lruCache" | "memory" | "mongodb" | "netlifyBlobs" | "overlay" | "planetscale" | "redis" | "sessionStorage" | "vercelKV" | "cloudflare-kv-binding" | "cloudflare-kv-http";
1908
+ driver: BuiltinDriverName;
1908
1909
  ttl?: number | undefined;
1909
1910
  host?: string | undefined;
1910
1911
  token?: string | undefined;
@@ -1916,7 +1917,7 @@ export declare const RuntimeConfigSchema: z.ZodObject<{
1916
1917
  tls?: boolean | undefined;
1917
1918
  } | undefined;
1918
1919
  cache?: {
1919
- driver: "null" | "azureAppConfiguration" | "azureCosmos" | "azureKeyVault" | "azureStorageBlob" | "azureStorageTable" | "cloudflareKVBinding" | "cloudflareKVHTTP" | "cloudflareR2Binding" | "fs" | "fsLite" | "github" | "http" | "indexedb" | "localStorage" | "lruCache" | "memory" | "mongodb" | "netlifyBlobs" | "overlay" | "planetscale" | "redis" | "sessionStorage" | "vercelKV" | "cloudflare-kv-binding" | "cloudflare-kv-http";
1920
+ driver: BuiltinDriverName;
1920
1921
  ttl?: number | undefined;
1921
1922
  host?: string | undefined;
1922
1923
  token?: string | undefined;
@@ -1971,7 +1972,7 @@ export declare const RuntimeConfigSchema: z.ZodObject<{
1971
1972
  } | undefined;
1972
1973
  storage?: {
1973
1974
  session?: {
1974
- driver: "null" | "azureAppConfiguration" | "azureCosmos" | "azureKeyVault" | "azureStorageBlob" | "azureStorageTable" | "cloudflareKVBinding" | "cloudflareKVHTTP" | "cloudflareR2Binding" | "fs" | "fsLite" | "github" | "http" | "indexedb" | "localStorage" | "lruCache" | "memory" | "mongodb" | "netlifyBlobs" | "overlay" | "planetscale" | "redis" | "sessionStorage" | "vercelKV" | "cloudflare-kv-binding" | "cloudflare-kv-http";
1975
+ driver: BuiltinDriverName;
1975
1976
  ttl?: number | undefined;
1976
1977
  host?: string | undefined;
1977
1978
  token?: string | undefined;
@@ -1983,7 +1984,7 @@ export declare const RuntimeConfigSchema: z.ZodObject<{
1983
1984
  tls?: boolean | undefined;
1984
1985
  } | undefined;
1985
1986
  cache?: {
1986
- driver: "null" | "azureAppConfiguration" | "azureCosmos" | "azureKeyVault" | "azureStorageBlob" | "azureStorageTable" | "cloudflareKVBinding" | "cloudflareKVHTTP" | "cloudflareR2Binding" | "fs" | "fsLite" | "github" | "http" | "indexedb" | "localStorage" | "lruCache" | "memory" | "mongodb" | "netlifyBlobs" | "overlay" | "planetscale" | "redis" | "sessionStorage" | "vercelKV" | "cloudflare-kv-binding" | "cloudflare-kv-http";
1987
+ driver: BuiltinDriverName;
1987
1988
  ttl?: number | undefined;
1988
1989
  host?: string | undefined;
1989
1990
  token?: string | undefined;
@@ -2057,7 +2058,7 @@ export declare const RuntimeConfigSchema: z.ZodObject<{
2057
2058
  } | undefined;
2058
2059
  storage?: {
2059
2060
  session?: {
2060
- driver: "null" | "azureAppConfiguration" | "azureCosmos" | "azureKeyVault" | "azureStorageBlob" | "azureStorageTable" | "cloudflareKVBinding" | "cloudflareKVHTTP" | "cloudflareR2Binding" | "fs" | "fsLite" | "github" | "http" | "indexedb" | "localStorage" | "lruCache" | "memory" | "mongodb" | "netlifyBlobs" | "overlay" | "planetscale" | "redis" | "sessionStorage" | "vercelKV" | "cloudflare-kv-binding" | "cloudflare-kv-http";
2061
+ driver: BuiltinDriverName;
2061
2062
  ttl?: number | undefined;
2062
2063
  host?: string | undefined;
2063
2064
  token?: string | undefined;
@@ -2069,7 +2070,7 @@ export declare const RuntimeConfigSchema: z.ZodObject<{
2069
2070
  tls?: boolean | undefined;
2070
2071
  } | undefined;
2071
2072
  cache?: {
2072
- driver: "null" | "azureAppConfiguration" | "azureCosmos" | "azureKeyVault" | "azureStorageBlob" | "azureStorageTable" | "cloudflareKVBinding" | "cloudflareKVHTTP" | "cloudflareR2Binding" | "fs" | "fsLite" | "github" | "http" | "indexedb" | "localStorage" | "lruCache" | "memory" | "mongodb" | "netlifyBlobs" | "overlay" | "planetscale" | "redis" | "sessionStorage" | "vercelKV" | "cloudflare-kv-binding" | "cloudflare-kv-http";
2073
+ driver: BuiltinDriverName;
2073
2074
  ttl?: number | undefined;
2074
2075
  host?: string | undefined;
2075
2076
  token?: string | undefined;
@@ -2124,7 +2125,7 @@ export declare const RuntimeConfigSchema: z.ZodObject<{
2124
2125
  } | undefined;
2125
2126
  storage?: {
2126
2127
  session?: {
2127
- driver: "null" | "azureAppConfiguration" | "azureCosmos" | "azureKeyVault" | "azureStorageBlob" | "azureStorageTable" | "cloudflareKVBinding" | "cloudflareKVHTTP" | "cloudflareR2Binding" | "fs" | "fsLite" | "github" | "http" | "indexedb" | "localStorage" | "lruCache" | "memory" | "mongodb" | "netlifyBlobs" | "overlay" | "planetscale" | "redis" | "sessionStorage" | "vercelKV" | "cloudflare-kv-binding" | "cloudflare-kv-http";
2128
+ driver: BuiltinDriverName;
2128
2129
  ttl?: number | undefined;
2129
2130
  host?: string | undefined;
2130
2131
  token?: string | undefined;
@@ -2136,7 +2137,7 @@ export declare const RuntimeConfigSchema: z.ZodObject<{
2136
2137
  tls?: boolean | undefined;
2137
2138
  } | undefined;
2138
2139
  cache?: {
2139
- driver: "null" | "azureAppConfiguration" | "azureCosmos" | "azureKeyVault" | "azureStorageBlob" | "azureStorageTable" | "cloudflareKVBinding" | "cloudflareKVHTTP" | "cloudflareR2Binding" | "fs" | "fsLite" | "github" | "http" | "indexedb" | "localStorage" | "lruCache" | "memory" | "mongodb" | "netlifyBlobs" | "overlay" | "planetscale" | "redis" | "sessionStorage" | "vercelKV" | "cloudflare-kv-binding" | "cloudflare-kv-http";
2140
+ driver: BuiltinDriverName;
2140
2141
  ttl?: number | undefined;
2141
2142
  host?: string | undefined;
2142
2143
  token?: string | undefined;
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@scayle/storefront-nuxt",
3
3
  "type": "module",
4
- "version": "8.3.4",
4
+ "version": "8.4.0",
5
5
  "description": "Nuxt integration for the SCAYLE Commerce Engine and Storefront API",
6
6
  "author": "SCAYLE Commerce Engine",
7
7
  "license": "MIT",