@scayle/storefront-nuxt 7.85.8 → 7.85.9

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.
Files changed (42) hide show
  1. package/CHANGELOG.md +6 -0
  2. package/dist/index.d.mts +5 -15
  3. package/dist/index.d.ts +5 -15
  4. package/dist/index.mjs +2 -16
  5. package/dist/module.d.mts +4 -4
  6. package/dist/module.d.ts +4 -4
  7. package/dist/module.mjs +5 -25
  8. package/dist/rpc.d.mts +1 -16
  9. package/dist/rpc.d.ts +1 -16
  10. package/dist/rpc.mjs +1 -20
  11. package/dist/runtime/api/rpcHandler.d.ts +55 -1
  12. package/dist/runtime/api/rpcHandler.mjs +1 -1
  13. package/dist/runtime/composables/core/useAvailableShops.d.ts +1 -1
  14. package/dist/runtime/composables/storefront/useFacet.d.ts +28 -24
  15. package/dist/runtime/composables/storefront/useSearch.d.ts +3 -3
  16. package/dist/runtime/composables/storefront/useStorefrontSearch.d.ts +2 -2
  17. package/dist/runtime/context.mjs +1 -1
  18. package/dist/runtime/error/handler.d.ts +1 -1
  19. package/dist/runtime/nitro/plugins/cacheRuntimeConfig.d.ts +1 -1
  20. package/dist/runtime/nitro/plugins/cacheRuntimeConfig.mjs +2 -1
  21. package/dist/runtime/nitro/plugins/configValidation.d.ts +8 -3
  22. package/dist/runtime/nitro/plugins/configValidation.mjs +7 -5
  23. package/dist/runtime/nitro/plugins/nitroLogger.d.ts +1 -1
  24. package/dist/runtime/nitro/plugins/nitroLogger.mjs +2 -1
  25. package/dist/runtime/nitro/plugins/nitroRuntimeStorageConfig.d.ts +1 -1
  26. package/dist/runtime/nitro/plugins/nitroRuntimeStorageConfig.mjs +7 -5
  27. package/dist/runtime/nitro/plugins/nitroSetXPoweredByHeader.d.ts +1 -1
  28. package/dist/runtime/nitro/plugins/nitroSetXPoweredByHeader.mjs +1 -1
  29. package/dist/runtime/server/middleware/bootstrap.mjs +1 -1
  30. package/dist/runtime/server/middleware/bootstrap.utils.d.ts +6 -2
  31. package/dist/runtime/server/middleware/bootstrap.utils.mjs +2 -2
  32. package/dist/runtime/server/tsconfig.json +1 -1
  33. package/dist/runtime/utils/zodSchema.d.ts +261 -153
  34. package/dist/runtime/utils/zodSchema.mjs +16 -7
  35. package/dist/shared/storefront-nuxt.77c99ba5.d.mts +102 -0
  36. package/dist/shared/storefront-nuxt.77c99ba5.d.ts +102 -0
  37. package/package.json +11 -11
  38. package/dist/module.json +0 -8
  39. package/dist/shared/storefront-nuxt.891170da.d.mts +0 -1205
  40. package/dist/shared/storefront-nuxt.891170da.d.ts +0 -1205
  41. package/dist/types.d.mts +0 -14
  42. package/dist/types.d.ts +0 -14
@@ -1,5 +1,5 @@
1
1
  import { z } from 'zod';
2
- import { type LogLevel } from '@scayle/storefront-core';
2
+ import type { LogLevel } from '@scayle/storefront-core';
3
3
  export declare const RedirectsSchema: z.ZodObject<{
4
4
  enabled: z.ZodBoolean;
5
5
  queryParamWhitelist: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
@@ -72,18 +72,25 @@ declare const SessionSchema: z.ZodObject<{
72
72
  * Controls the domain option on the session cookie
73
73
  */
74
74
  domain: z.ZodOptional<z.ZodString>;
75
+ /**
76
+ * The provider to use for the persistent storage.
77
+ * @deprecated Storefront Core is now relying on a unified cache configuration. Use the storage option instead.
78
+ */
79
+ provider: z.ZodOptional<z.ZodEnum<["redis", "memory"]>>;
75
80
  }, "strip", z.ZodTypeAny, {
76
81
  domain?: string | undefined;
77
82
  sameSite?: "lax" | "strict" | "none" | undefined;
78
83
  maxAge?: number | undefined;
79
84
  cookieName?: string | undefined;
80
85
  secret?: string | string[] | undefined;
86
+ provider?: "redis" | "memory" | undefined;
81
87
  }, {
82
88
  domain?: string | undefined;
83
89
  sameSite?: "lax" | "strict" | "none" | undefined;
84
90
  maxAge?: number | undefined;
85
91
  cookieName?: string | undefined;
86
92
  secret?: string | string[] | undefined;
93
+ provider?: "redis" | "memory" | undefined;
87
94
  }>;
88
95
  declare const SapiSchema: z.ZodObject<{
89
96
  host: z.ZodString;
@@ -109,7 +116,7 @@ declare const IdpSchema: z.ZodObject<{
109
116
  idpRedirectURL: string;
110
117
  }>;
111
118
  declare const StorageSchema: z.ZodObject<{
112
- driver: z.ZodEnum<["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", ...("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")[]]>;
119
+ driver: z.ZodEnum<["redis" | "memory" | "azureAppConfiguration" | "azureCosmos" | "azureKeyVault" | "azureStorageBlob" | "azureStorageTable" | "cloudflareKVBinding" | "cloudflareKVHTTP" | "cloudflareR2Binding" | "fs" | "fsLite" | "github" | "http" | "indexedb" | "localStorage" | "lruCache" | "mongodb" | "netlifyBlobs" | "overlay" | "planetscale" | "sessionStorage" | "vercelKV" | "cloudflare-kv-binding" | "cloudflare-kv-http", ...("redis" | "memory" | "azureAppConfiguration" | "azureCosmos" | "azureKeyVault" | "azureStorageBlob" | "azureStorageTable" | "cloudflareKVBinding" | "cloudflareKVHTTP" | "cloudflareR2Binding" | "fs" | "fsLite" | "github" | "http" | "indexedb" | "localStorage" | "lruCache" | "mongodb" | "netlifyBlobs" | "overlay" | "planetscale" | "sessionStorage" | "vercelKV" | "cloudflare-kv-binding" | "cloudflare-kv-http")[]]>;
113
120
  compression: z.ZodOptional<z.ZodEnum<["deflate", "gzip", "brotli", "none"]>>;
114
121
  url: z.ZodOptional<z.ZodString>;
115
122
  token: z.ZodOptional<z.ZodString>;
@@ -120,7 +127,7 @@ declare const StorageSchema: z.ZodObject<{
120
127
  tls: z.ZodOptional<z.ZodBoolean>;
121
128
  ttl: z.ZodOptional<z.ZodNumber>;
122
129
  }, "strip", z.ZodTypeAny, {
123
- driver: "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";
130
+ driver: "redis" | "memory" | "azureAppConfiguration" | "azureCosmos" | "azureKeyVault" | "azureStorageBlob" | "azureStorageTable" | "cloudflareKVBinding" | "cloudflareKVHTTP" | "cloudflareR2Binding" | "fs" | "fsLite" | "github" | "http" | "indexedb" | "localStorage" | "lruCache" | "mongodb" | "netlifyBlobs" | "overlay" | "planetscale" | "sessionStorage" | "vercelKV" | "cloudflare-kv-binding" | "cloudflare-kv-http";
124
131
  ttl?: number | undefined;
125
132
  port?: number | undefined;
126
133
  host?: string | undefined;
@@ -131,7 +138,7 @@ declare const StorageSchema: z.ZodObject<{
131
138
  username?: string | undefined;
132
139
  tls?: boolean | undefined;
133
140
  }, {
134
- driver: "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";
141
+ driver: "redis" | "memory" | "azureAppConfiguration" | "azureCosmos" | "azureKeyVault" | "azureStorageBlob" | "azureStorageTable" | "cloudflareKVBinding" | "cloudflareKVHTTP" | "cloudflareR2Binding" | "fs" | "fsLite" | "github" | "http" | "indexedb" | "localStorage" | "lruCache" | "mongodb" | "netlifyBlobs" | "overlay" | "planetscale" | "sessionStorage" | "vercelKV" | "cloudflare-kv-binding" | "cloudflare-kv-http";
135
142
  ttl?: number | undefined;
136
143
  port?: number | undefined;
137
144
  host?: string | undefined;
@@ -148,17 +155,20 @@ declare const CheckoutShopConfigSchema: z.ZodObject<{
148
155
  host: z.ZodString;
149
156
  user: z.ZodUnion<[z.ZodString, z.ZodNumber]>;
150
157
  cbdExpiration: z.ZodOptional<z.ZodNumber>;
158
+ shopId: z.ZodOptional<z.ZodNumber>;
151
159
  }, "strip", z.ZodTypeAny, {
152
160
  user: string | number;
153
161
  host: string;
154
162
  secret: string;
155
163
  token: string;
164
+ shopId?: number | undefined;
156
165
  cbdExpiration?: number | undefined;
157
166
  }, {
158
167
  user: string | number;
159
168
  host: string;
160
169
  secret: string;
161
170
  token: string;
171
+ shopId?: number | undefined;
162
172
  cbdExpiration?: number | undefined;
163
173
  }>;
164
174
  declare const ShopConfigSchema: z.ZodObject<{
@@ -194,31 +204,34 @@ declare const ShopConfigSchema: z.ZodObject<{
194
204
  host: z.ZodString;
195
205
  user: z.ZodUnion<[z.ZodString, z.ZodNumber]>;
196
206
  cbdExpiration: z.ZodOptional<z.ZodNumber>;
207
+ shopId: z.ZodOptional<z.ZodNumber>;
197
208
  }, "strip", z.ZodTypeAny, {
198
209
  user: string | number;
199
210
  host: string;
200
211
  secret: string;
201
212
  token: string;
213
+ shopId?: number | undefined;
202
214
  cbdExpiration?: number | undefined;
203
215
  }, {
204
216
  user: string | number;
205
217
  host: string;
206
218
  secret: string;
207
219
  token: string;
220
+ shopId?: number | undefined;
208
221
  cbdExpiration?: number | undefined;
209
222
  }>;
210
223
  appKeys: z.ZodOptional<z.ZodObject<{
211
224
  wishlistKey: z.ZodString;
212
225
  basketKey: z.ZodString;
213
- hashAlgorithm: z.ZodEnum<[string, ...string[]]>;
226
+ hashAlgorithm: z.ZodEnum<["md5", "sha256", "none"]>;
214
227
  }, "strip", z.ZodTypeAny, {
215
228
  wishlistKey: string;
216
229
  basketKey: string;
217
- hashAlgorithm: string;
230
+ hashAlgorithm: "none" | "md5" | "sha256";
218
231
  }, {
219
232
  wishlistKey: string;
220
233
  basketKey: string;
221
- hashAlgorithm: string;
234
+ hashAlgorithm: "none" | "md5" | "sha256";
222
235
  }>>;
223
236
  currencyFractionDigits: z.ZodOptional<z.ZodNumber>;
224
237
  isEnabled: z.ZodOptional<z.ZodBoolean>;
@@ -244,18 +257,25 @@ declare const ShopConfigSchema: z.ZodObject<{
244
257
  * Controls the domain option on the session cookie
245
258
  */
246
259
  domain: z.ZodOptional<z.ZodString>;
260
+ /**
261
+ * The provider to use for the persistent storage.
262
+ * @deprecated Storefront Core is now relying on a unified cache configuration. Use the storage option instead.
263
+ */
264
+ provider: z.ZodOptional<z.ZodEnum<["redis", "memory"]>>;
247
265
  }, "strip", z.ZodTypeAny, {
248
266
  domain?: string | undefined;
249
267
  sameSite?: "lax" | "strict" | "none" | undefined;
250
268
  maxAge?: number | undefined;
251
269
  cookieName?: string | undefined;
252
270
  secret?: string | string[] | undefined;
271
+ provider?: "redis" | "memory" | undefined;
253
272
  }, {
254
273
  domain?: string | undefined;
255
274
  sameSite?: "lax" | "strict" | "none" | undefined;
256
275
  maxAge?: number | undefined;
257
276
  cookieName?: string | undefined;
258
277
  secret?: string | string[] | undefined;
278
+ provider?: "redis" | "memory" | undefined;
259
279
  }>>;
260
280
  sapi: z.ZodOptional<z.ZodObject<{
261
281
  host: z.ZodString;
@@ -279,7 +299,7 @@ declare const ShopConfigSchema: z.ZodObject<{
279
299
  }>>;
280
300
  storage: z.ZodOptional<z.ZodObject<{
281
301
  session: z.ZodOptional<z.ZodObject<{
282
- driver: z.ZodEnum<["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", ...("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")[]]>;
302
+ driver: z.ZodEnum<["redis" | "memory" | "azureAppConfiguration" | "azureCosmos" | "azureKeyVault" | "azureStorageBlob" | "azureStorageTable" | "cloudflareKVBinding" | "cloudflareKVHTTP" | "cloudflareR2Binding" | "fs" | "fsLite" | "github" | "http" | "indexedb" | "localStorage" | "lruCache" | "mongodb" | "netlifyBlobs" | "overlay" | "planetscale" | "sessionStorage" | "vercelKV" | "cloudflare-kv-binding" | "cloudflare-kv-http", ...("redis" | "memory" | "azureAppConfiguration" | "azureCosmos" | "azureKeyVault" | "azureStorageBlob" | "azureStorageTable" | "cloudflareKVBinding" | "cloudflareKVHTTP" | "cloudflareR2Binding" | "fs" | "fsLite" | "github" | "http" | "indexedb" | "localStorage" | "lruCache" | "mongodb" | "netlifyBlobs" | "overlay" | "planetscale" | "sessionStorage" | "vercelKV" | "cloudflare-kv-binding" | "cloudflare-kv-http")[]]>;
283
303
  compression: z.ZodOptional<z.ZodEnum<["deflate", "gzip", "brotli", "none"]>>;
284
304
  url: z.ZodOptional<z.ZodString>;
285
305
  token: z.ZodOptional<z.ZodString>;
@@ -290,7 +310,7 @@ declare const ShopConfigSchema: z.ZodObject<{
290
310
  tls: z.ZodOptional<z.ZodBoolean>;
291
311
  ttl: z.ZodOptional<z.ZodNumber>;
292
312
  }, "strip", z.ZodTypeAny, {
293
- driver: "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";
313
+ driver: "redis" | "memory" | "azureAppConfiguration" | "azureCosmos" | "azureKeyVault" | "azureStorageBlob" | "azureStorageTable" | "cloudflareKVBinding" | "cloudflareKVHTTP" | "cloudflareR2Binding" | "fs" | "fsLite" | "github" | "http" | "indexedb" | "localStorage" | "lruCache" | "mongodb" | "netlifyBlobs" | "overlay" | "planetscale" | "sessionStorage" | "vercelKV" | "cloudflare-kv-binding" | "cloudflare-kv-http";
294
314
  ttl?: number | undefined;
295
315
  port?: number | undefined;
296
316
  host?: string | undefined;
@@ -301,7 +321,7 @@ declare const ShopConfigSchema: z.ZodObject<{
301
321
  username?: string | undefined;
302
322
  tls?: boolean | undefined;
303
323
  }, {
304
- driver: "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";
324
+ driver: "redis" | "memory" | "azureAppConfiguration" | "azureCosmos" | "azureKeyVault" | "azureStorageBlob" | "azureStorageTable" | "cloudflareKVBinding" | "cloudflareKVHTTP" | "cloudflareR2Binding" | "fs" | "fsLite" | "github" | "http" | "indexedb" | "localStorage" | "lruCache" | "mongodb" | "netlifyBlobs" | "overlay" | "planetscale" | "sessionStorage" | "vercelKV" | "cloudflare-kv-binding" | "cloudflare-kv-http";
305
325
  ttl?: number | undefined;
306
326
  port?: number | undefined;
307
327
  host?: string | undefined;
@@ -313,7 +333,7 @@ declare const ShopConfigSchema: z.ZodObject<{
313
333
  tls?: boolean | undefined;
314
334
  }>>;
315
335
  cache: z.ZodOptional<z.ZodObject<{
316
- driver: z.ZodEnum<["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", ...("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")[]]>;
336
+ driver: z.ZodEnum<["redis" | "memory" | "azureAppConfiguration" | "azureCosmos" | "azureKeyVault" | "azureStorageBlob" | "azureStorageTable" | "cloudflareKVBinding" | "cloudflareKVHTTP" | "cloudflareR2Binding" | "fs" | "fsLite" | "github" | "http" | "indexedb" | "localStorage" | "lruCache" | "mongodb" | "netlifyBlobs" | "overlay" | "planetscale" | "sessionStorage" | "vercelKV" | "cloudflare-kv-binding" | "cloudflare-kv-http", ...("redis" | "memory" | "azureAppConfiguration" | "azureCosmos" | "azureKeyVault" | "azureStorageBlob" | "azureStorageTable" | "cloudflareKVBinding" | "cloudflareKVHTTP" | "cloudflareR2Binding" | "fs" | "fsLite" | "github" | "http" | "indexedb" | "localStorage" | "lruCache" | "mongodb" | "netlifyBlobs" | "overlay" | "planetscale" | "sessionStorage" | "vercelKV" | "cloudflare-kv-binding" | "cloudflare-kv-http")[]]>;
317
337
  compression: z.ZodOptional<z.ZodEnum<["deflate", "gzip", "brotli", "none"]>>;
318
338
  url: z.ZodOptional<z.ZodString>;
319
339
  token: z.ZodOptional<z.ZodString>;
@@ -324,7 +344,7 @@ declare const ShopConfigSchema: z.ZodObject<{
324
344
  tls: z.ZodOptional<z.ZodBoolean>;
325
345
  ttl: z.ZodOptional<z.ZodNumber>;
326
346
  }, "strip", z.ZodTypeAny, {
327
- driver: "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";
347
+ driver: "redis" | "memory" | "azureAppConfiguration" | "azureCosmos" | "azureKeyVault" | "azureStorageBlob" | "azureStorageTable" | "cloudflareKVBinding" | "cloudflareKVHTTP" | "cloudflareR2Binding" | "fs" | "fsLite" | "github" | "http" | "indexedb" | "localStorage" | "lruCache" | "mongodb" | "netlifyBlobs" | "overlay" | "planetscale" | "sessionStorage" | "vercelKV" | "cloudflare-kv-binding" | "cloudflare-kv-http";
328
348
  ttl?: number | undefined;
329
349
  port?: number | undefined;
330
350
  host?: string | undefined;
@@ -335,7 +355,7 @@ declare const ShopConfigSchema: z.ZodObject<{
335
355
  username?: string | undefined;
336
356
  tls?: boolean | undefined;
337
357
  }, {
338
- driver: "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";
358
+ driver: "redis" | "memory" | "azureAppConfiguration" | "azureCosmos" | "azureKeyVault" | "azureStorageBlob" | "azureStorageTable" | "cloudflareKVBinding" | "cloudflareKVHTTP" | "cloudflareR2Binding" | "fs" | "fsLite" | "github" | "http" | "indexedb" | "localStorage" | "lruCache" | "mongodb" | "netlifyBlobs" | "overlay" | "planetscale" | "sessionStorage" | "vercelKV" | "cloudflare-kv-binding" | "cloudflare-kv-http";
339
359
  ttl?: number | undefined;
340
360
  port?: number | undefined;
341
361
  host?: string | undefined;
@@ -348,7 +368,7 @@ declare const ShopConfigSchema: z.ZodObject<{
348
368
  }>>;
349
369
  }, "strip", z.ZodTypeAny, {
350
370
  session?: {
351
- driver: "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";
371
+ driver: "redis" | "memory" | "azureAppConfiguration" | "azureCosmos" | "azureKeyVault" | "azureStorageBlob" | "azureStorageTable" | "cloudflareKVBinding" | "cloudflareKVHTTP" | "cloudflareR2Binding" | "fs" | "fsLite" | "github" | "http" | "indexedb" | "localStorage" | "lruCache" | "mongodb" | "netlifyBlobs" | "overlay" | "planetscale" | "sessionStorage" | "vercelKV" | "cloudflare-kv-binding" | "cloudflare-kv-http";
352
372
  ttl?: number | undefined;
353
373
  port?: number | undefined;
354
374
  host?: string | undefined;
@@ -360,7 +380,7 @@ declare const ShopConfigSchema: z.ZodObject<{
360
380
  tls?: boolean | undefined;
361
381
  } | undefined;
362
382
  cache?: {
363
- driver: "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";
383
+ driver: "redis" | "memory" | "azureAppConfiguration" | "azureCosmos" | "azureKeyVault" | "azureStorageBlob" | "azureStorageTable" | "cloudflareKVBinding" | "cloudflareKVHTTP" | "cloudflareR2Binding" | "fs" | "fsLite" | "github" | "http" | "indexedb" | "localStorage" | "lruCache" | "mongodb" | "netlifyBlobs" | "overlay" | "planetscale" | "sessionStorage" | "vercelKV" | "cloudflare-kv-binding" | "cloudflare-kv-http";
364
384
  ttl?: number | undefined;
365
385
  port?: number | undefined;
366
386
  host?: string | undefined;
@@ -373,7 +393,7 @@ declare const ShopConfigSchema: z.ZodObject<{
373
393
  } | undefined;
374
394
  }, {
375
395
  session?: {
376
- driver: "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";
396
+ driver: "redis" | "memory" | "azureAppConfiguration" | "azureCosmos" | "azureKeyVault" | "azureStorageBlob" | "azureStorageTable" | "cloudflareKVBinding" | "cloudflareKVHTTP" | "cloudflareR2Binding" | "fs" | "fsLite" | "github" | "http" | "indexedb" | "localStorage" | "lruCache" | "mongodb" | "netlifyBlobs" | "overlay" | "planetscale" | "sessionStorage" | "vercelKV" | "cloudflare-kv-binding" | "cloudflare-kv-http";
377
397
  ttl?: number | undefined;
378
398
  port?: number | undefined;
379
399
  host?: string | undefined;
@@ -385,7 +405,7 @@ declare const ShopConfigSchema: z.ZodObject<{
385
405
  tls?: boolean | undefined;
386
406
  } | undefined;
387
407
  cache?: {
388
- driver: "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";
408
+ driver: "redis" | "memory" | "azureAppConfiguration" | "azureCosmos" | "azureKeyVault" | "azureStorageBlob" | "azureStorageTable" | "cloudflareKVBinding" | "cloudflareKVHTTP" | "cloudflareR2Binding" | "fs" | "fsLite" | "github" | "http" | "indexedb" | "localStorage" | "lruCache" | "mongodb" | "netlifyBlobs" | "overlay" | "planetscale" | "sessionStorage" | "vercelKV" | "cloudflare-kv-binding" | "cloudflare-kv-http";
389
409
  ttl?: number | undefined;
390
410
  port?: number | undefined;
391
411
  host?: string | undefined;
@@ -447,6 +467,7 @@ declare const ShopConfigSchema: z.ZodObject<{
447
467
  host: string;
448
468
  secret: string;
449
469
  token: string;
470
+ shopId?: number | undefined;
450
471
  cbdExpiration?: number | undefined;
451
472
  };
452
473
  shopId: number;
@@ -479,7 +500,7 @@ declare const ShopConfigSchema: z.ZodObject<{
479
500
  appKeys?: {
480
501
  wishlistKey: string;
481
502
  basketKey: string;
482
- hashAlgorithm: string;
503
+ hashAlgorithm: "none" | "md5" | "sha256";
483
504
  } | undefined;
484
505
  currencyFractionDigits?: number | undefined;
485
506
  isEnabled?: boolean | undefined;
@@ -489,6 +510,7 @@ declare const ShopConfigSchema: z.ZodObject<{
489
510
  maxAge?: number | undefined;
490
511
  cookieName?: string | undefined;
491
512
  secret?: string | string[] | undefined;
513
+ provider?: "redis" | "memory" | undefined;
492
514
  } | undefined;
493
515
  sapi?: {
494
516
  host: string;
@@ -500,7 +522,7 @@ declare const ShopConfigSchema: z.ZodObject<{
500
522
  } | undefined;
501
523
  storage?: {
502
524
  session?: {
503
- driver: "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";
525
+ driver: "redis" | "memory" | "azureAppConfiguration" | "azureCosmos" | "azureKeyVault" | "azureStorageBlob" | "azureStorageTable" | "cloudflareKVBinding" | "cloudflareKVHTTP" | "cloudflareR2Binding" | "fs" | "fsLite" | "github" | "http" | "indexedb" | "localStorage" | "lruCache" | "mongodb" | "netlifyBlobs" | "overlay" | "planetscale" | "sessionStorage" | "vercelKV" | "cloudflare-kv-binding" | "cloudflare-kv-http";
504
526
  ttl?: number | undefined;
505
527
  port?: number | undefined;
506
528
  host?: string | undefined;
@@ -512,7 +534,7 @@ declare const ShopConfigSchema: z.ZodObject<{
512
534
  tls?: boolean | undefined;
513
535
  } | undefined;
514
536
  cache?: {
515
- driver: "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";
537
+ driver: "redis" | "memory" | "azureAppConfiguration" | "azureCosmos" | "azureKeyVault" | "azureStorageBlob" | "azureStorageTable" | "cloudflareKVBinding" | "cloudflareKVHTTP" | "cloudflareR2Binding" | "fs" | "fsLite" | "github" | "http" | "indexedb" | "localStorage" | "lruCache" | "mongodb" | "netlifyBlobs" | "overlay" | "planetscale" | "sessionStorage" | "vercelKV" | "cloudflare-kv-binding" | "cloudflare-kv-http";
516
538
  ttl?: number | undefined;
517
539
  port?: number | undefined;
518
540
  host?: string | undefined;
@@ -532,6 +554,7 @@ declare const ShopConfigSchema: z.ZodObject<{
532
554
  host: string;
533
555
  secret: string;
534
556
  token: string;
557
+ shopId?: number | undefined;
535
558
  cbdExpiration?: number | undefined;
536
559
  };
537
560
  shopId: number;
@@ -564,7 +587,7 @@ declare const ShopConfigSchema: z.ZodObject<{
564
587
  appKeys?: {
565
588
  wishlistKey: string;
566
589
  basketKey: string;
567
- hashAlgorithm: string;
590
+ hashAlgorithm: "none" | "md5" | "sha256";
568
591
  } | undefined;
569
592
  currencyFractionDigits?: number | undefined;
570
593
  isEnabled?: boolean | undefined;
@@ -574,6 +597,7 @@ declare const ShopConfigSchema: z.ZodObject<{
574
597
  maxAge?: number | undefined;
575
598
  cookieName?: string | undefined;
576
599
  secret?: string | string[] | undefined;
600
+ provider?: "redis" | "memory" | undefined;
577
601
  } | undefined;
578
602
  sapi?: {
579
603
  host: string;
@@ -585,7 +609,7 @@ declare const ShopConfigSchema: z.ZodObject<{
585
609
  } | undefined;
586
610
  storage?: {
587
611
  session?: {
588
- driver: "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";
612
+ driver: "redis" | "memory" | "azureAppConfiguration" | "azureCosmos" | "azureKeyVault" | "azureStorageBlob" | "azureStorageTable" | "cloudflareKVBinding" | "cloudflareKVHTTP" | "cloudflareR2Binding" | "fs" | "fsLite" | "github" | "http" | "indexedb" | "localStorage" | "lruCache" | "mongodb" | "netlifyBlobs" | "overlay" | "planetscale" | "sessionStorage" | "vercelKV" | "cloudflare-kv-binding" | "cloudflare-kv-http";
589
613
  ttl?: number | undefined;
590
614
  port?: number | undefined;
591
615
  host?: string | undefined;
@@ -597,7 +621,7 @@ declare const ShopConfigSchema: z.ZodObject<{
597
621
  tls?: boolean | undefined;
598
622
  } | undefined;
599
623
  cache?: {
600
- driver: "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";
624
+ driver: "redis" | "memory" | "azureAppConfiguration" | "azureCosmos" | "azureKeyVault" | "azureStorageBlob" | "azureStorageTable" | "cloudflareKVBinding" | "cloudflareKVHTTP" | "cloudflareR2Binding" | "fs" | "fsLite" | "github" | "http" | "indexedb" | "localStorage" | "lruCache" | "mongodb" | "netlifyBlobs" | "overlay" | "planetscale" | "sessionStorage" | "vercelKV" | "cloudflare-kv-binding" | "cloudflare-kv-http";
601
625
  ttl?: number | undefined;
602
626
  port?: number | undefined;
603
627
  host?: string | undefined;
@@ -636,22 +660,29 @@ declare const StorefrontConfigSchema: z.ZodIntersection<z.ZodObject<{
636
660
  * Controls the domain option on the session cookie
637
661
  */
638
662
  domain: z.ZodOptional<z.ZodString>;
663
+ /**
664
+ * The provider to use for the persistent storage.
665
+ * @deprecated Storefront Core is now relying on a unified cache configuration. Use the storage option instead.
666
+ */
667
+ provider: z.ZodOptional<z.ZodEnum<["redis", "memory"]>>;
639
668
  }, "strip", z.ZodTypeAny, {
640
669
  domain?: string | undefined;
641
670
  sameSite?: "lax" | "strict" | "none" | undefined;
642
671
  maxAge?: number | undefined;
643
672
  cookieName?: string | undefined;
644
673
  secret?: string | string[] | undefined;
674
+ provider?: "redis" | "memory" | undefined;
645
675
  }, {
646
676
  domain?: string | undefined;
647
677
  sameSite?: "lax" | "strict" | "none" | undefined;
648
678
  maxAge?: number | undefined;
649
679
  cookieName?: string | undefined;
650
680
  secret?: string | string[] | undefined;
681
+ provider?: "redis" | "memory" | undefined;
651
682
  }>>;
652
683
  storage: z.ZodOptional<z.ZodObject<{
653
684
  session: z.ZodOptional<z.ZodObject<{
654
- driver: z.ZodEnum<["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", ...("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")[]]>;
685
+ driver: z.ZodEnum<["redis" | "memory" | "azureAppConfiguration" | "azureCosmos" | "azureKeyVault" | "azureStorageBlob" | "azureStorageTable" | "cloudflareKVBinding" | "cloudflareKVHTTP" | "cloudflareR2Binding" | "fs" | "fsLite" | "github" | "http" | "indexedb" | "localStorage" | "lruCache" | "mongodb" | "netlifyBlobs" | "overlay" | "planetscale" | "sessionStorage" | "vercelKV" | "cloudflare-kv-binding" | "cloudflare-kv-http", ...("redis" | "memory" | "azureAppConfiguration" | "azureCosmos" | "azureKeyVault" | "azureStorageBlob" | "azureStorageTable" | "cloudflareKVBinding" | "cloudflareKVHTTP" | "cloudflareR2Binding" | "fs" | "fsLite" | "github" | "http" | "indexedb" | "localStorage" | "lruCache" | "mongodb" | "netlifyBlobs" | "overlay" | "planetscale" | "sessionStorage" | "vercelKV" | "cloudflare-kv-binding" | "cloudflare-kv-http")[]]>;
655
686
  compression: z.ZodOptional<z.ZodEnum<["deflate", "gzip", "brotli", "none"]>>;
656
687
  url: z.ZodOptional<z.ZodString>;
657
688
  token: z.ZodOptional<z.ZodString>;
@@ -662,7 +693,7 @@ declare const StorefrontConfigSchema: z.ZodIntersection<z.ZodObject<{
662
693
  tls: z.ZodOptional<z.ZodBoolean>;
663
694
  ttl: z.ZodOptional<z.ZodNumber>;
664
695
  }, "strip", z.ZodTypeAny, {
665
- driver: "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";
696
+ driver: "redis" | "memory" | "azureAppConfiguration" | "azureCosmos" | "azureKeyVault" | "azureStorageBlob" | "azureStorageTable" | "cloudflareKVBinding" | "cloudflareKVHTTP" | "cloudflareR2Binding" | "fs" | "fsLite" | "github" | "http" | "indexedb" | "localStorage" | "lruCache" | "mongodb" | "netlifyBlobs" | "overlay" | "planetscale" | "sessionStorage" | "vercelKV" | "cloudflare-kv-binding" | "cloudflare-kv-http";
666
697
  ttl?: number | undefined;
667
698
  port?: number | undefined;
668
699
  host?: string | undefined;
@@ -673,7 +704,7 @@ declare const StorefrontConfigSchema: z.ZodIntersection<z.ZodObject<{
673
704
  username?: string | undefined;
674
705
  tls?: boolean | undefined;
675
706
  }, {
676
- driver: "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";
707
+ driver: "redis" | "memory" | "azureAppConfiguration" | "azureCosmos" | "azureKeyVault" | "azureStorageBlob" | "azureStorageTable" | "cloudflareKVBinding" | "cloudflareKVHTTP" | "cloudflareR2Binding" | "fs" | "fsLite" | "github" | "http" | "indexedb" | "localStorage" | "lruCache" | "mongodb" | "netlifyBlobs" | "overlay" | "planetscale" | "sessionStorage" | "vercelKV" | "cloudflare-kv-binding" | "cloudflare-kv-http";
677
708
  ttl?: number | undefined;
678
709
  port?: number | undefined;
679
710
  host?: string | undefined;
@@ -685,7 +716,7 @@ declare const StorefrontConfigSchema: z.ZodIntersection<z.ZodObject<{
685
716
  tls?: boolean | undefined;
686
717
  }>>;
687
718
  cache: z.ZodOptional<z.ZodObject<{
688
- driver: z.ZodEnum<["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", ...("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")[]]>;
719
+ driver: z.ZodEnum<["redis" | "memory" | "azureAppConfiguration" | "azureCosmos" | "azureKeyVault" | "azureStorageBlob" | "azureStorageTable" | "cloudflareKVBinding" | "cloudflareKVHTTP" | "cloudflareR2Binding" | "fs" | "fsLite" | "github" | "http" | "indexedb" | "localStorage" | "lruCache" | "mongodb" | "netlifyBlobs" | "overlay" | "planetscale" | "sessionStorage" | "vercelKV" | "cloudflare-kv-binding" | "cloudflare-kv-http", ...("redis" | "memory" | "azureAppConfiguration" | "azureCosmos" | "azureKeyVault" | "azureStorageBlob" | "azureStorageTable" | "cloudflareKVBinding" | "cloudflareKVHTTP" | "cloudflareR2Binding" | "fs" | "fsLite" | "github" | "http" | "indexedb" | "localStorage" | "lruCache" | "mongodb" | "netlifyBlobs" | "overlay" | "planetscale" | "sessionStorage" | "vercelKV" | "cloudflare-kv-binding" | "cloudflare-kv-http")[]]>;
689
720
  compression: z.ZodOptional<z.ZodEnum<["deflate", "gzip", "brotli", "none"]>>;
690
721
  url: z.ZodOptional<z.ZodString>;
691
722
  token: z.ZodOptional<z.ZodString>;
@@ -696,7 +727,7 @@ declare const StorefrontConfigSchema: z.ZodIntersection<z.ZodObject<{
696
727
  tls: z.ZodOptional<z.ZodBoolean>;
697
728
  ttl: z.ZodOptional<z.ZodNumber>;
698
729
  }, "strip", z.ZodTypeAny, {
699
- driver: "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";
730
+ driver: "redis" | "memory" | "azureAppConfiguration" | "azureCosmos" | "azureKeyVault" | "azureStorageBlob" | "azureStorageTable" | "cloudflareKVBinding" | "cloudflareKVHTTP" | "cloudflareR2Binding" | "fs" | "fsLite" | "github" | "http" | "indexedb" | "localStorage" | "lruCache" | "mongodb" | "netlifyBlobs" | "overlay" | "planetscale" | "sessionStorage" | "vercelKV" | "cloudflare-kv-binding" | "cloudflare-kv-http";
700
731
  ttl?: number | undefined;
701
732
  port?: number | undefined;
702
733
  host?: string | undefined;
@@ -707,7 +738,7 @@ declare const StorefrontConfigSchema: z.ZodIntersection<z.ZodObject<{
707
738
  username?: string | undefined;
708
739
  tls?: boolean | undefined;
709
740
  }, {
710
- driver: "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";
741
+ driver: "redis" | "memory" | "azureAppConfiguration" | "azureCosmos" | "azureKeyVault" | "azureStorageBlob" | "azureStorageTable" | "cloudflareKVBinding" | "cloudflareKVHTTP" | "cloudflareR2Binding" | "fs" | "fsLite" | "github" | "http" | "indexedb" | "localStorage" | "lruCache" | "mongodb" | "netlifyBlobs" | "overlay" | "planetscale" | "sessionStorage" | "vercelKV" | "cloudflare-kv-binding" | "cloudflare-kv-http";
711
742
  ttl?: number | undefined;
712
743
  port?: number | undefined;
713
744
  host?: string | undefined;
@@ -720,7 +751,7 @@ declare const StorefrontConfigSchema: z.ZodIntersection<z.ZodObject<{
720
751
  }>>;
721
752
  }, "strip", z.ZodTypeAny, {
722
753
  session?: {
723
- driver: "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";
754
+ driver: "redis" | "memory" | "azureAppConfiguration" | "azureCosmos" | "azureKeyVault" | "azureStorageBlob" | "azureStorageTable" | "cloudflareKVBinding" | "cloudflareKVHTTP" | "cloudflareR2Binding" | "fs" | "fsLite" | "github" | "http" | "indexedb" | "localStorage" | "lruCache" | "mongodb" | "netlifyBlobs" | "overlay" | "planetscale" | "sessionStorage" | "vercelKV" | "cloudflare-kv-binding" | "cloudflare-kv-http";
724
755
  ttl?: number | undefined;
725
756
  port?: number | undefined;
726
757
  host?: string | undefined;
@@ -732,7 +763,7 @@ declare const StorefrontConfigSchema: z.ZodIntersection<z.ZodObject<{
732
763
  tls?: boolean | undefined;
733
764
  } | undefined;
734
765
  cache?: {
735
- driver: "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";
766
+ driver: "redis" | "memory" | "azureAppConfiguration" | "azureCosmos" | "azureKeyVault" | "azureStorageBlob" | "azureStorageTable" | "cloudflareKVBinding" | "cloudflareKVHTTP" | "cloudflareR2Binding" | "fs" | "fsLite" | "github" | "http" | "indexedb" | "localStorage" | "lruCache" | "mongodb" | "netlifyBlobs" | "overlay" | "planetscale" | "sessionStorage" | "vercelKV" | "cloudflare-kv-binding" | "cloudflare-kv-http";
736
767
  ttl?: number | undefined;
737
768
  port?: number | undefined;
738
769
  host?: string | undefined;
@@ -745,7 +776,7 @@ declare const StorefrontConfigSchema: z.ZodIntersection<z.ZodObject<{
745
776
  } | undefined;
746
777
  }, {
747
778
  session?: {
748
- driver: "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";
779
+ driver: "redis" | "memory" | "azureAppConfiguration" | "azureCosmos" | "azureKeyVault" | "azureStorageBlob" | "azureStorageTable" | "cloudflareKVBinding" | "cloudflareKVHTTP" | "cloudflareR2Binding" | "fs" | "fsLite" | "github" | "http" | "indexedb" | "localStorage" | "lruCache" | "mongodb" | "netlifyBlobs" | "overlay" | "planetscale" | "sessionStorage" | "vercelKV" | "cloudflare-kv-binding" | "cloudflare-kv-http";
749
780
  ttl?: number | undefined;
750
781
  port?: number | undefined;
751
782
  host?: string | undefined;
@@ -757,7 +788,7 @@ declare const StorefrontConfigSchema: z.ZodIntersection<z.ZodObject<{
757
788
  tls?: boolean | undefined;
758
789
  } | undefined;
759
790
  cache?: {
760
- driver: "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";
791
+ driver: "redis" | "memory" | "azureAppConfiguration" | "azureCosmos" | "azureKeyVault" | "azureStorageBlob" | "azureStorageTable" | "cloudflareKVBinding" | "cloudflareKVHTTP" | "cloudflareR2Binding" | "fs" | "fsLite" | "github" | "http" | "indexedb" | "localStorage" | "lruCache" | "mongodb" | "netlifyBlobs" | "overlay" | "planetscale" | "sessionStorage" | "vercelKV" | "cloudflare-kv-binding" | "cloudflare-kv-http";
761
792
  ttl?: number | undefined;
762
793
  port?: number | undefined;
763
794
  host?: string | undefined;
@@ -785,19 +816,19 @@ declare const StorefrontConfigSchema: z.ZodIntersection<z.ZodObject<{
785
816
  appKeys: z.ZodObject<{
786
817
  wishlistKey: z.ZodString;
787
818
  basketKey: z.ZodString;
788
- hashAlgorithm: z.ZodEnum<[string, ...string[]]>;
819
+ hashAlgorithm: z.ZodEnum<["md5", "sha256", "none"]>;
789
820
  }, "strip", z.ZodTypeAny, {
790
821
  wishlistKey: string;
791
822
  basketKey: string;
792
- hashAlgorithm: string;
823
+ hashAlgorithm: "none" | "md5" | "sha256";
793
824
  }, {
794
825
  wishlistKey: string;
795
826
  basketKey: string;
796
- hashAlgorithm: string;
827
+ hashAlgorithm: "none" | "md5" | "sha256";
797
828
  }>;
798
829
  apiBasePath: z.ZodOptional<z.ZodString>;
799
830
  cache: z.ZodOptional<z.ZodObject<{
800
- auth: z.ZodObject<{
831
+ auth: z.ZodOptional<z.ZodObject<{
801
832
  username: z.ZodString;
802
833
  password: z.ZodString;
803
834
  }, "strip", z.ZodTypeAny, {
@@ -806,20 +837,27 @@ declare const StorefrontConfigSchema: z.ZodIntersection<z.ZodObject<{
806
837
  }, {
807
838
  password: string;
808
839
  username: string;
809
- }>;
840
+ }>>;
810
841
  enabled: z.ZodOptional<z.ZodBoolean>;
842
+ /**
843
+ * The provider to use for the persistent storage.
844
+ * @deprecated Storefront Core is now relying on a unified cache configuration. Use the storage option instead.
845
+ */
846
+ provider: z.ZodOptional<z.ZodEnum<["redis", "memory"]>>;
811
847
  }, "strip", z.ZodTypeAny, {
812
- auth: {
848
+ auth?: {
813
849
  password: string;
814
850
  username: string;
815
- };
851
+ } | undefined;
816
852
  enabled?: boolean | undefined;
853
+ provider?: "redis" | "memory" | undefined;
817
854
  }, {
818
- auth: {
855
+ auth?: {
819
856
  password: string;
820
857
  username: string;
821
- };
858
+ } | undefined;
822
859
  enabled?: boolean | undefined;
860
+ provider?: "redis" | "memory" | undefined;
823
861
  }>>;
824
862
  publicShopData: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
825
863
  idp: z.ZodOptional<z.ZodObject<{
@@ -882,7 +920,7 @@ declare const StorefrontConfigSchema: z.ZodIntersection<z.ZodObject<{
882
920
  appKeys: {
883
921
  wishlistKey: string;
884
922
  basketKey: string;
885
- hashAlgorithm: string;
923
+ hashAlgorithm: "none" | "md5" | "sha256";
886
924
  };
887
925
  idp?: {
888
926
  enabled: boolean;
@@ -909,17 +947,19 @@ declare const StorefrontConfigSchema: z.ZodIntersection<z.ZodObject<{
909
947
  maxAge?: number | undefined;
910
948
  cookieName?: string | undefined;
911
949
  secret?: string | string[] | undefined;
950
+ provider?: "redis" | "memory" | undefined;
912
951
  } | undefined;
913
952
  cache?: {
914
- auth: {
953
+ auth?: {
915
954
  password: string;
916
955
  username: string;
917
- };
956
+ } | undefined;
918
957
  enabled?: boolean | undefined;
958
+ provider?: "redis" | "memory" | undefined;
919
959
  } | undefined;
920
960
  storage?: {
921
961
  session?: {
922
- driver: "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";
962
+ driver: "redis" | "memory" | "azureAppConfiguration" | "azureCosmos" | "azureKeyVault" | "azureStorageBlob" | "azureStorageTable" | "cloudflareKVBinding" | "cloudflareKVHTTP" | "cloudflareR2Binding" | "fs" | "fsLite" | "github" | "http" | "indexedb" | "localStorage" | "lruCache" | "mongodb" | "netlifyBlobs" | "overlay" | "planetscale" | "sessionStorage" | "vercelKV" | "cloudflare-kv-binding" | "cloudflare-kv-http";
923
963
  ttl?: number | undefined;
924
964
  port?: number | undefined;
925
965
  host?: string | undefined;
@@ -931,7 +971,7 @@ declare const StorefrontConfigSchema: z.ZodIntersection<z.ZodObject<{
931
971
  tls?: boolean | undefined;
932
972
  } | undefined;
933
973
  cache?: {
934
- driver: "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";
974
+ driver: "redis" | "memory" | "azureAppConfiguration" | "azureCosmos" | "azureKeyVault" | "azureStorageBlob" | "azureStorageTable" | "cloudflareKVBinding" | "cloudflareKVHTTP" | "cloudflareR2Binding" | "fs" | "fsLite" | "github" | "http" | "indexedb" | "localStorage" | "lruCache" | "mongodb" | "netlifyBlobs" | "overlay" | "planetscale" | "sessionStorage" | "vercelKV" | "cloudflare-kv-binding" | "cloudflare-kv-http";
935
975
  ttl?: number | undefined;
936
976
  port?: number | undefined;
937
977
  host?: string | undefined;
@@ -953,7 +993,7 @@ declare const StorefrontConfigSchema: z.ZodIntersection<z.ZodObject<{
953
993
  appKeys: {
954
994
  wishlistKey: string;
955
995
  basketKey: string;
956
- hashAlgorithm: string;
996
+ hashAlgorithm: "none" | "md5" | "sha256";
957
997
  };
958
998
  idp?: {
959
999
  enabled: boolean;
@@ -980,17 +1020,19 @@ declare const StorefrontConfigSchema: z.ZodIntersection<z.ZodObject<{
980
1020
  maxAge?: number | undefined;
981
1021
  cookieName?: string | undefined;
982
1022
  secret?: string | string[] | undefined;
1023
+ provider?: "redis" | "memory" | undefined;
983
1024
  } | undefined;
984
1025
  cache?: {
985
- auth: {
1026
+ auth?: {
986
1027
  password: string;
987
1028
  username: string;
988
- };
1029
+ } | undefined;
989
1030
  enabled?: boolean | undefined;
1031
+ provider?: "redis" | "memory" | undefined;
990
1032
  } | undefined;
991
1033
  storage?: {
992
1034
  session?: {
993
- driver: "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";
1035
+ driver: "redis" | "memory" | "azureAppConfiguration" | "azureCosmos" | "azureKeyVault" | "azureStorageBlob" | "azureStorageTable" | "cloudflareKVBinding" | "cloudflareKVHTTP" | "cloudflareR2Binding" | "fs" | "fsLite" | "github" | "http" | "indexedb" | "localStorage" | "lruCache" | "mongodb" | "netlifyBlobs" | "overlay" | "planetscale" | "sessionStorage" | "vercelKV" | "cloudflare-kv-binding" | "cloudflare-kv-http";
994
1036
  ttl?: number | undefined;
995
1037
  port?: number | undefined;
996
1038
  host?: string | undefined;
@@ -1002,7 +1044,7 @@ declare const StorefrontConfigSchema: z.ZodIntersection<z.ZodObject<{
1002
1044
  tls?: boolean | undefined;
1003
1045
  } | undefined;
1004
1046
  cache?: {
1005
- driver: "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";
1047
+ driver: "redis" | "memory" | "azureAppConfiguration" | "azureCosmos" | "azureKeyVault" | "azureStorageBlob" | "azureStorageTable" | "cloudflareKVBinding" | "cloudflareKVHTTP" | "cloudflareR2Binding" | "fs" | "fsLite" | "github" | "http" | "indexedb" | "localStorage" | "lruCache" | "mongodb" | "netlifyBlobs" | "overlay" | "planetscale" | "sessionStorage" | "vercelKV" | "cloudflare-kv-binding" | "cloudflare-kv-http";
1006
1048
  ttl?: number | undefined;
1007
1049
  port?: number | undefined;
1008
1050
  host?: string | undefined;
@@ -1154,31 +1196,34 @@ export declare const RuntimeConfigSchema: z.ZodObject<{
1154
1196
  host: z.ZodString;
1155
1197
  user: z.ZodUnion<[z.ZodString, z.ZodNumber]>;
1156
1198
  cbdExpiration: z.ZodOptional<z.ZodNumber>;
1199
+ shopId: z.ZodOptional<z.ZodNumber>;
1157
1200
  }, "strip", z.ZodTypeAny, {
1158
1201
  user: string | number;
1159
1202
  host: string;
1160
1203
  secret: string;
1161
1204
  token: string;
1205
+ shopId?: number | undefined;
1162
1206
  cbdExpiration?: number | undefined;
1163
1207
  }, {
1164
1208
  user: string | number;
1165
1209
  host: string;
1166
1210
  secret: string;
1167
1211
  token: string;
1212
+ shopId?: number | undefined;
1168
1213
  cbdExpiration?: number | undefined;
1169
1214
  }>;
1170
1215
  appKeys: z.ZodOptional<z.ZodObject<{
1171
1216
  wishlistKey: z.ZodString;
1172
1217
  basketKey: z.ZodString;
1173
- hashAlgorithm: z.ZodEnum<[string, ...string[]]>;
1218
+ hashAlgorithm: z.ZodEnum<["md5", "sha256", "none"]>;
1174
1219
  }, "strip", z.ZodTypeAny, {
1175
1220
  wishlistKey: string;
1176
1221
  basketKey: string;
1177
- hashAlgorithm: string;
1222
+ hashAlgorithm: "none" | "md5" | "sha256";
1178
1223
  }, {
1179
1224
  wishlistKey: string;
1180
1225
  basketKey: string;
1181
- hashAlgorithm: string;
1226
+ hashAlgorithm: "none" | "md5" | "sha256";
1182
1227
  }>>;
1183
1228
  currencyFractionDigits: z.ZodOptional<z.ZodNumber>;
1184
1229
  isEnabled: z.ZodOptional<z.ZodBoolean>;
@@ -1204,18 +1249,25 @@ export declare const RuntimeConfigSchema: z.ZodObject<{
1204
1249
  * Controls the domain option on the session cookie
1205
1250
  */
1206
1251
  domain: z.ZodOptional<z.ZodString>;
1252
+ /**
1253
+ * The provider to use for the persistent storage.
1254
+ * @deprecated Storefront Core is now relying on a unified cache configuration. Use the storage option instead.
1255
+ */
1256
+ provider: z.ZodOptional<z.ZodEnum<["redis", "memory"]>>;
1207
1257
  }, "strip", z.ZodTypeAny, {
1208
1258
  domain?: string | undefined;
1209
1259
  sameSite?: "lax" | "strict" | "none" | undefined;
1210
1260
  maxAge?: number | undefined;
1211
1261
  cookieName?: string | undefined;
1212
1262
  secret?: string | string[] | undefined;
1263
+ provider?: "redis" | "memory" | undefined;
1213
1264
  }, {
1214
1265
  domain?: string | undefined;
1215
1266
  sameSite?: "lax" | "strict" | "none" | undefined;
1216
1267
  maxAge?: number | undefined;
1217
1268
  cookieName?: string | undefined;
1218
1269
  secret?: string | string[] | undefined;
1270
+ provider?: "redis" | "memory" | undefined;
1219
1271
  }>>;
1220
1272
  sapi: z.ZodOptional<z.ZodObject<{
1221
1273
  host: z.ZodString;
@@ -1239,7 +1291,7 @@ export declare const RuntimeConfigSchema: z.ZodObject<{
1239
1291
  }>>;
1240
1292
  storage: z.ZodOptional<z.ZodObject<{
1241
1293
  session: z.ZodOptional<z.ZodObject<{
1242
- driver: z.ZodEnum<["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", ...("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")[]]>;
1294
+ driver: z.ZodEnum<["redis" | "memory" | "azureAppConfiguration" | "azureCosmos" | "azureKeyVault" | "azureStorageBlob" | "azureStorageTable" | "cloudflareKVBinding" | "cloudflareKVHTTP" | "cloudflareR2Binding" | "fs" | "fsLite" | "github" | "http" | "indexedb" | "localStorage" | "lruCache" | "mongodb" | "netlifyBlobs" | "overlay" | "planetscale" | "sessionStorage" | "vercelKV" | "cloudflare-kv-binding" | "cloudflare-kv-http", ...("redis" | "memory" | "azureAppConfiguration" | "azureCosmos" | "azureKeyVault" | "azureStorageBlob" | "azureStorageTable" | "cloudflareKVBinding" | "cloudflareKVHTTP" | "cloudflareR2Binding" | "fs" | "fsLite" | "github" | "http" | "indexedb" | "localStorage" | "lruCache" | "mongodb" | "netlifyBlobs" | "overlay" | "planetscale" | "sessionStorage" | "vercelKV" | "cloudflare-kv-binding" | "cloudflare-kv-http")[]]>;
1243
1295
  compression: z.ZodOptional<z.ZodEnum<["deflate", "gzip", "brotli", "none"]>>;
1244
1296
  url: z.ZodOptional<z.ZodString>;
1245
1297
  token: z.ZodOptional<z.ZodString>;
@@ -1250,7 +1302,7 @@ export declare const RuntimeConfigSchema: z.ZodObject<{
1250
1302
  tls: z.ZodOptional<z.ZodBoolean>;
1251
1303
  ttl: z.ZodOptional<z.ZodNumber>;
1252
1304
  }, "strip", z.ZodTypeAny, {
1253
- driver: "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";
1305
+ driver: "redis" | "memory" | "azureAppConfiguration" | "azureCosmos" | "azureKeyVault" | "azureStorageBlob" | "azureStorageTable" | "cloudflareKVBinding" | "cloudflareKVHTTP" | "cloudflareR2Binding" | "fs" | "fsLite" | "github" | "http" | "indexedb" | "localStorage" | "lruCache" | "mongodb" | "netlifyBlobs" | "overlay" | "planetscale" | "sessionStorage" | "vercelKV" | "cloudflare-kv-binding" | "cloudflare-kv-http";
1254
1306
  ttl?: number | undefined;
1255
1307
  port?: number | undefined;
1256
1308
  host?: string | undefined;
@@ -1261,7 +1313,7 @@ export declare const RuntimeConfigSchema: z.ZodObject<{
1261
1313
  username?: string | undefined;
1262
1314
  tls?: boolean | undefined;
1263
1315
  }, {
1264
- driver: "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";
1316
+ driver: "redis" | "memory" | "azureAppConfiguration" | "azureCosmos" | "azureKeyVault" | "azureStorageBlob" | "azureStorageTable" | "cloudflareKVBinding" | "cloudflareKVHTTP" | "cloudflareR2Binding" | "fs" | "fsLite" | "github" | "http" | "indexedb" | "localStorage" | "lruCache" | "mongodb" | "netlifyBlobs" | "overlay" | "planetscale" | "sessionStorage" | "vercelKV" | "cloudflare-kv-binding" | "cloudflare-kv-http";
1265
1317
  ttl?: number | undefined;
1266
1318
  port?: number | undefined;
1267
1319
  host?: string | undefined;
@@ -1273,7 +1325,7 @@ export declare const RuntimeConfigSchema: z.ZodObject<{
1273
1325
  tls?: boolean | undefined;
1274
1326
  }>>;
1275
1327
  cache: z.ZodOptional<z.ZodObject<{
1276
- driver: z.ZodEnum<["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", ...("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")[]]>;
1328
+ driver: z.ZodEnum<["redis" | "memory" | "azureAppConfiguration" | "azureCosmos" | "azureKeyVault" | "azureStorageBlob" | "azureStorageTable" | "cloudflareKVBinding" | "cloudflareKVHTTP" | "cloudflareR2Binding" | "fs" | "fsLite" | "github" | "http" | "indexedb" | "localStorage" | "lruCache" | "mongodb" | "netlifyBlobs" | "overlay" | "planetscale" | "sessionStorage" | "vercelKV" | "cloudflare-kv-binding" | "cloudflare-kv-http", ...("redis" | "memory" | "azureAppConfiguration" | "azureCosmos" | "azureKeyVault" | "azureStorageBlob" | "azureStorageTable" | "cloudflareKVBinding" | "cloudflareKVHTTP" | "cloudflareR2Binding" | "fs" | "fsLite" | "github" | "http" | "indexedb" | "localStorage" | "lruCache" | "mongodb" | "netlifyBlobs" | "overlay" | "planetscale" | "sessionStorage" | "vercelKV" | "cloudflare-kv-binding" | "cloudflare-kv-http")[]]>;
1277
1329
  compression: z.ZodOptional<z.ZodEnum<["deflate", "gzip", "brotli", "none"]>>;
1278
1330
  url: z.ZodOptional<z.ZodString>;
1279
1331
  token: z.ZodOptional<z.ZodString>;
@@ -1284,7 +1336,7 @@ export declare const RuntimeConfigSchema: z.ZodObject<{
1284
1336
  tls: z.ZodOptional<z.ZodBoolean>;
1285
1337
  ttl: z.ZodOptional<z.ZodNumber>;
1286
1338
  }, "strip", z.ZodTypeAny, {
1287
- driver: "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";
1339
+ driver: "redis" | "memory" | "azureAppConfiguration" | "azureCosmos" | "azureKeyVault" | "azureStorageBlob" | "azureStorageTable" | "cloudflareKVBinding" | "cloudflareKVHTTP" | "cloudflareR2Binding" | "fs" | "fsLite" | "github" | "http" | "indexedb" | "localStorage" | "lruCache" | "mongodb" | "netlifyBlobs" | "overlay" | "planetscale" | "sessionStorage" | "vercelKV" | "cloudflare-kv-binding" | "cloudflare-kv-http";
1288
1340
  ttl?: number | undefined;
1289
1341
  port?: number | undefined;
1290
1342
  host?: string | undefined;
@@ -1295,7 +1347,7 @@ export declare const RuntimeConfigSchema: z.ZodObject<{
1295
1347
  username?: string | undefined;
1296
1348
  tls?: boolean | undefined;
1297
1349
  }, {
1298
- driver: "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";
1350
+ driver: "redis" | "memory" | "azureAppConfiguration" | "azureCosmos" | "azureKeyVault" | "azureStorageBlob" | "azureStorageTable" | "cloudflareKVBinding" | "cloudflareKVHTTP" | "cloudflareR2Binding" | "fs" | "fsLite" | "github" | "http" | "indexedb" | "localStorage" | "lruCache" | "mongodb" | "netlifyBlobs" | "overlay" | "planetscale" | "sessionStorage" | "vercelKV" | "cloudflare-kv-binding" | "cloudflare-kv-http";
1299
1351
  ttl?: number | undefined;
1300
1352
  port?: number | undefined;
1301
1353
  host?: string | undefined;
@@ -1308,7 +1360,7 @@ export declare const RuntimeConfigSchema: z.ZodObject<{
1308
1360
  }>>;
1309
1361
  }, "strip", z.ZodTypeAny, {
1310
1362
  session?: {
1311
- driver: "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";
1363
+ driver: "redis" | "memory" | "azureAppConfiguration" | "azureCosmos" | "azureKeyVault" | "azureStorageBlob" | "azureStorageTable" | "cloudflareKVBinding" | "cloudflareKVHTTP" | "cloudflareR2Binding" | "fs" | "fsLite" | "github" | "http" | "indexedb" | "localStorage" | "lruCache" | "mongodb" | "netlifyBlobs" | "overlay" | "planetscale" | "sessionStorage" | "vercelKV" | "cloudflare-kv-binding" | "cloudflare-kv-http";
1312
1364
  ttl?: number | undefined;
1313
1365
  port?: number | undefined;
1314
1366
  host?: string | undefined;
@@ -1320,7 +1372,7 @@ export declare const RuntimeConfigSchema: z.ZodObject<{
1320
1372
  tls?: boolean | undefined;
1321
1373
  } | undefined;
1322
1374
  cache?: {
1323
- driver: "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";
1375
+ driver: "redis" | "memory" | "azureAppConfiguration" | "azureCosmos" | "azureKeyVault" | "azureStorageBlob" | "azureStorageTable" | "cloudflareKVBinding" | "cloudflareKVHTTP" | "cloudflareR2Binding" | "fs" | "fsLite" | "github" | "http" | "indexedb" | "localStorage" | "lruCache" | "mongodb" | "netlifyBlobs" | "overlay" | "planetscale" | "sessionStorage" | "vercelKV" | "cloudflare-kv-binding" | "cloudflare-kv-http";
1324
1376
  ttl?: number | undefined;
1325
1377
  port?: number | undefined;
1326
1378
  host?: string | undefined;
@@ -1333,7 +1385,7 @@ export declare const RuntimeConfigSchema: z.ZodObject<{
1333
1385
  } | undefined;
1334
1386
  }, {
1335
1387
  session?: {
1336
- driver: "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";
1388
+ driver: "redis" | "memory" | "azureAppConfiguration" | "azureCosmos" | "azureKeyVault" | "azureStorageBlob" | "azureStorageTable" | "cloudflareKVBinding" | "cloudflareKVHTTP" | "cloudflareR2Binding" | "fs" | "fsLite" | "github" | "http" | "indexedb" | "localStorage" | "lruCache" | "mongodb" | "netlifyBlobs" | "overlay" | "planetscale" | "sessionStorage" | "vercelKV" | "cloudflare-kv-binding" | "cloudflare-kv-http";
1337
1389
  ttl?: number | undefined;
1338
1390
  port?: number | undefined;
1339
1391
  host?: string | undefined;
@@ -1345,7 +1397,7 @@ export declare const RuntimeConfigSchema: z.ZodObject<{
1345
1397
  tls?: boolean | undefined;
1346
1398
  } | undefined;
1347
1399
  cache?: {
1348
- driver: "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: "redis" | "memory" | "azureAppConfiguration" | "azureCosmos" | "azureKeyVault" | "azureStorageBlob" | "azureStorageTable" | "cloudflareKVBinding" | "cloudflareKVHTTP" | "cloudflareR2Binding" | "fs" | "fsLite" | "github" | "http" | "indexedb" | "localStorage" | "lruCache" | "mongodb" | "netlifyBlobs" | "overlay" | "planetscale" | "sessionStorage" | "vercelKV" | "cloudflare-kv-binding" | "cloudflare-kv-http";
1349
1401
  ttl?: number | undefined;
1350
1402
  port?: number | undefined;
1351
1403
  host?: string | undefined;
@@ -1407,6 +1459,7 @@ export declare const RuntimeConfigSchema: z.ZodObject<{
1407
1459
  host: string;
1408
1460
  secret: string;
1409
1461
  token: string;
1462
+ shopId?: number | undefined;
1410
1463
  cbdExpiration?: number | undefined;
1411
1464
  };
1412
1465
  shopId: number;
@@ -1439,7 +1492,7 @@ export declare const RuntimeConfigSchema: z.ZodObject<{
1439
1492
  appKeys?: {
1440
1493
  wishlistKey: string;
1441
1494
  basketKey: string;
1442
- hashAlgorithm: string;
1495
+ hashAlgorithm: "none" | "md5" | "sha256";
1443
1496
  } | undefined;
1444
1497
  currencyFractionDigits?: number | undefined;
1445
1498
  isEnabled?: boolean | undefined;
@@ -1449,6 +1502,7 @@ export declare const RuntimeConfigSchema: z.ZodObject<{
1449
1502
  maxAge?: number | undefined;
1450
1503
  cookieName?: string | undefined;
1451
1504
  secret?: string | string[] | undefined;
1505
+ provider?: "redis" | "memory" | undefined;
1452
1506
  } | undefined;
1453
1507
  sapi?: {
1454
1508
  host: string;
@@ -1460,7 +1514,7 @@ export declare const RuntimeConfigSchema: z.ZodObject<{
1460
1514
  } | undefined;
1461
1515
  storage?: {
1462
1516
  session?: {
1463
- driver: "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";
1517
+ driver: "redis" | "memory" | "azureAppConfiguration" | "azureCosmos" | "azureKeyVault" | "azureStorageBlob" | "azureStorageTable" | "cloudflareKVBinding" | "cloudflareKVHTTP" | "cloudflareR2Binding" | "fs" | "fsLite" | "github" | "http" | "indexedb" | "localStorage" | "lruCache" | "mongodb" | "netlifyBlobs" | "overlay" | "planetscale" | "sessionStorage" | "vercelKV" | "cloudflare-kv-binding" | "cloudflare-kv-http";
1464
1518
  ttl?: number | undefined;
1465
1519
  port?: number | undefined;
1466
1520
  host?: string | undefined;
@@ -1472,7 +1526,7 @@ export declare const RuntimeConfigSchema: z.ZodObject<{
1472
1526
  tls?: boolean | undefined;
1473
1527
  } | undefined;
1474
1528
  cache?: {
1475
- driver: "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";
1529
+ driver: "redis" | "memory" | "azureAppConfiguration" | "azureCosmos" | "azureKeyVault" | "azureStorageBlob" | "azureStorageTable" | "cloudflareKVBinding" | "cloudflareKVHTTP" | "cloudflareR2Binding" | "fs" | "fsLite" | "github" | "http" | "indexedb" | "localStorage" | "lruCache" | "mongodb" | "netlifyBlobs" | "overlay" | "planetscale" | "sessionStorage" | "vercelKV" | "cloudflare-kv-binding" | "cloudflare-kv-http";
1476
1530
  ttl?: number | undefined;
1477
1531
  port?: number | undefined;
1478
1532
  host?: string | undefined;
@@ -1492,6 +1546,7 @@ export declare const RuntimeConfigSchema: z.ZodObject<{
1492
1546
  host: string;
1493
1547
  secret: string;
1494
1548
  token: string;
1549
+ shopId?: number | undefined;
1495
1550
  cbdExpiration?: number | undefined;
1496
1551
  };
1497
1552
  shopId: number;
@@ -1524,7 +1579,7 @@ export declare const RuntimeConfigSchema: z.ZodObject<{
1524
1579
  appKeys?: {
1525
1580
  wishlistKey: string;
1526
1581
  basketKey: string;
1527
- hashAlgorithm: string;
1582
+ hashAlgorithm: "none" | "md5" | "sha256";
1528
1583
  } | undefined;
1529
1584
  currencyFractionDigits?: number | undefined;
1530
1585
  isEnabled?: boolean | undefined;
@@ -1534,6 +1589,7 @@ export declare const RuntimeConfigSchema: z.ZodObject<{
1534
1589
  maxAge?: number | undefined;
1535
1590
  cookieName?: string | undefined;
1536
1591
  secret?: string | string[] | undefined;
1592
+ provider?: "redis" | "memory" | undefined;
1537
1593
  } | undefined;
1538
1594
  sapi?: {
1539
1595
  host: string;
@@ -1545,7 +1601,7 @@ export declare const RuntimeConfigSchema: z.ZodObject<{
1545
1601
  } | undefined;
1546
1602
  storage?: {
1547
1603
  session?: {
1548
- driver: "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";
1604
+ driver: "redis" | "memory" | "azureAppConfiguration" | "azureCosmos" | "azureKeyVault" | "azureStorageBlob" | "azureStorageTable" | "cloudflareKVBinding" | "cloudflareKVHTTP" | "cloudflareR2Binding" | "fs" | "fsLite" | "github" | "http" | "indexedb" | "localStorage" | "lruCache" | "mongodb" | "netlifyBlobs" | "overlay" | "planetscale" | "sessionStorage" | "vercelKV" | "cloudflare-kv-binding" | "cloudflare-kv-http";
1549
1605
  ttl?: number | undefined;
1550
1606
  port?: number | undefined;
1551
1607
  host?: string | undefined;
@@ -1557,7 +1613,7 @@ export declare const RuntimeConfigSchema: z.ZodObject<{
1557
1613
  tls?: boolean | undefined;
1558
1614
  } | undefined;
1559
1615
  cache?: {
1560
- driver: "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";
1616
+ driver: "redis" | "memory" | "azureAppConfiguration" | "azureCosmos" | "azureKeyVault" | "azureStorageBlob" | "azureStorageTable" | "cloudflareKVBinding" | "cloudflareKVHTTP" | "cloudflareR2Binding" | "fs" | "fsLite" | "github" | "http" | "indexedb" | "localStorage" | "lruCache" | "mongodb" | "netlifyBlobs" | "overlay" | "planetscale" | "sessionStorage" | "vercelKV" | "cloudflare-kv-binding" | "cloudflare-kv-http";
1561
1617
  ttl?: number | undefined;
1562
1618
  port?: number | undefined;
1563
1619
  host?: string | undefined;
@@ -1580,6 +1636,7 @@ export declare const RuntimeConfigSchema: z.ZodObject<{
1580
1636
  host: string;
1581
1637
  secret: string;
1582
1638
  token: string;
1639
+ shopId?: number | undefined;
1583
1640
  cbdExpiration?: number | undefined;
1584
1641
  };
1585
1642
  shopId: number;
@@ -1612,7 +1669,7 @@ export declare const RuntimeConfigSchema: z.ZodObject<{
1612
1669
  appKeys?: {
1613
1670
  wishlistKey: string;
1614
1671
  basketKey: string;
1615
- hashAlgorithm: string;
1672
+ hashAlgorithm: "none" | "md5" | "sha256";
1616
1673
  } | undefined;
1617
1674
  currencyFractionDigits?: number | undefined;
1618
1675
  isEnabled?: boolean | undefined;
@@ -1622,6 +1679,7 @@ export declare const RuntimeConfigSchema: z.ZodObject<{
1622
1679
  maxAge?: number | undefined;
1623
1680
  cookieName?: string | undefined;
1624
1681
  secret?: string | string[] | undefined;
1682
+ provider?: "redis" | "memory" | undefined;
1625
1683
  } | undefined;
1626
1684
  sapi?: {
1627
1685
  host: string;
@@ -1633,7 +1691,7 @@ export declare const RuntimeConfigSchema: z.ZodObject<{
1633
1691
  } | undefined;
1634
1692
  storage?: {
1635
1693
  session?: {
1636
- driver: "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";
1694
+ driver: "redis" | "memory" | "azureAppConfiguration" | "azureCosmos" | "azureKeyVault" | "azureStorageBlob" | "azureStorageTable" | "cloudflareKVBinding" | "cloudflareKVHTTP" | "cloudflareR2Binding" | "fs" | "fsLite" | "github" | "http" | "indexedb" | "localStorage" | "lruCache" | "mongodb" | "netlifyBlobs" | "overlay" | "planetscale" | "sessionStorage" | "vercelKV" | "cloudflare-kv-binding" | "cloudflare-kv-http";
1637
1695
  ttl?: number | undefined;
1638
1696
  port?: number | undefined;
1639
1697
  host?: string | undefined;
@@ -1645,7 +1703,7 @@ export declare const RuntimeConfigSchema: z.ZodObject<{
1645
1703
  tls?: boolean | undefined;
1646
1704
  } | undefined;
1647
1705
  cache?: {
1648
- driver: "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";
1706
+ driver: "redis" | "memory" | "azureAppConfiguration" | "azureCosmos" | "azureKeyVault" | "azureStorageBlob" | "azureStorageTable" | "cloudflareKVBinding" | "cloudflareKVHTTP" | "cloudflareR2Binding" | "fs" | "fsLite" | "github" | "http" | "indexedb" | "localStorage" | "lruCache" | "mongodb" | "netlifyBlobs" | "overlay" | "planetscale" | "sessionStorage" | "vercelKV" | "cloudflare-kv-binding" | "cloudflare-kv-http";
1649
1707
  ttl?: number | undefined;
1650
1708
  port?: number | undefined;
1651
1709
  host?: string | undefined;
@@ -1668,6 +1726,7 @@ export declare const RuntimeConfigSchema: z.ZodObject<{
1668
1726
  host: string;
1669
1727
  secret: string;
1670
1728
  token: string;
1729
+ shopId?: number | undefined;
1671
1730
  cbdExpiration?: number | undefined;
1672
1731
  };
1673
1732
  shopId: number;
@@ -1700,7 +1759,7 @@ export declare const RuntimeConfigSchema: z.ZodObject<{
1700
1759
  appKeys?: {
1701
1760
  wishlistKey: string;
1702
1761
  basketKey: string;
1703
- hashAlgorithm: string;
1762
+ hashAlgorithm: "none" | "md5" | "sha256";
1704
1763
  } | undefined;
1705
1764
  currencyFractionDigits?: number | undefined;
1706
1765
  isEnabled?: boolean | undefined;
@@ -1710,6 +1769,7 @@ export declare const RuntimeConfigSchema: z.ZodObject<{
1710
1769
  maxAge?: number | undefined;
1711
1770
  cookieName?: string | undefined;
1712
1771
  secret?: string | string[] | undefined;
1772
+ provider?: "redis" | "memory" | undefined;
1713
1773
  } | undefined;
1714
1774
  sapi?: {
1715
1775
  host: string;
@@ -1721,7 +1781,7 @@ export declare const RuntimeConfigSchema: z.ZodObject<{
1721
1781
  } | undefined;
1722
1782
  storage?: {
1723
1783
  session?: {
1724
- driver: "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";
1784
+ driver: "redis" | "memory" | "azureAppConfiguration" | "azureCosmos" | "azureKeyVault" | "azureStorageBlob" | "azureStorageTable" | "cloudflareKVBinding" | "cloudflareKVHTTP" | "cloudflareR2Binding" | "fs" | "fsLite" | "github" | "http" | "indexedb" | "localStorage" | "lruCache" | "mongodb" | "netlifyBlobs" | "overlay" | "planetscale" | "sessionStorage" | "vercelKV" | "cloudflare-kv-binding" | "cloudflare-kv-http";
1725
1785
  ttl?: number | undefined;
1726
1786
  port?: number | undefined;
1727
1787
  host?: string | undefined;
@@ -1733,7 +1793,7 @@ export declare const RuntimeConfigSchema: z.ZodObject<{
1733
1793
  tls?: boolean | undefined;
1734
1794
  } | undefined;
1735
1795
  cache?: {
1736
- driver: "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";
1796
+ driver: "redis" | "memory" | "azureAppConfiguration" | "azureCosmos" | "azureKeyVault" | "azureStorageBlob" | "azureStorageTable" | "cloudflareKVBinding" | "cloudflareKVHTTP" | "cloudflareR2Binding" | "fs" | "fsLite" | "github" | "http" | "indexedb" | "localStorage" | "lruCache" | "mongodb" | "netlifyBlobs" | "overlay" | "planetscale" | "sessionStorage" | "vercelKV" | "cloudflare-kv-binding" | "cloudflare-kv-http";
1737
1797
  ttl?: number | undefined;
1738
1798
  port?: number | undefined;
1739
1799
  host?: string | undefined;
@@ -1783,31 +1843,34 @@ export declare const RuntimeConfigSchema: z.ZodObject<{
1783
1843
  host: z.ZodString;
1784
1844
  user: z.ZodUnion<[z.ZodString, z.ZodNumber]>;
1785
1845
  cbdExpiration: z.ZodOptional<z.ZodNumber>;
1846
+ shopId: z.ZodOptional<z.ZodNumber>;
1786
1847
  }, "strip", z.ZodTypeAny, {
1787
1848
  user: string | number;
1788
1849
  host: string;
1789
1850
  secret: string;
1790
1851
  token: string;
1852
+ shopId?: number | undefined;
1791
1853
  cbdExpiration?: number | undefined;
1792
1854
  }, {
1793
1855
  user: string | number;
1794
1856
  host: string;
1795
1857
  secret: string;
1796
1858
  token: string;
1859
+ shopId?: number | undefined;
1797
1860
  cbdExpiration?: number | undefined;
1798
1861
  }>;
1799
1862
  appKeys: z.ZodOptional<z.ZodObject<{
1800
1863
  wishlistKey: z.ZodString;
1801
1864
  basketKey: z.ZodString;
1802
- hashAlgorithm: z.ZodEnum<[string, ...string[]]>;
1865
+ hashAlgorithm: z.ZodEnum<["md5", "sha256", "none"]>;
1803
1866
  }, "strip", z.ZodTypeAny, {
1804
1867
  wishlistKey: string;
1805
1868
  basketKey: string;
1806
- hashAlgorithm: string;
1869
+ hashAlgorithm: "none" | "md5" | "sha256";
1807
1870
  }, {
1808
1871
  wishlistKey: string;
1809
1872
  basketKey: string;
1810
- hashAlgorithm: string;
1873
+ hashAlgorithm: "none" | "md5" | "sha256";
1811
1874
  }>>;
1812
1875
  currencyFractionDigits: z.ZodOptional<z.ZodNumber>;
1813
1876
  isEnabled: z.ZodOptional<z.ZodBoolean>;
@@ -1833,18 +1896,25 @@ export declare const RuntimeConfigSchema: z.ZodObject<{
1833
1896
  * Controls the domain option on the session cookie
1834
1897
  */
1835
1898
  domain: z.ZodOptional<z.ZodString>;
1899
+ /**
1900
+ * The provider to use for the persistent storage.
1901
+ * @deprecated Storefront Core is now relying on a unified cache configuration. Use the storage option instead.
1902
+ */
1903
+ provider: z.ZodOptional<z.ZodEnum<["redis", "memory"]>>;
1836
1904
  }, "strip", z.ZodTypeAny, {
1837
1905
  domain?: string | undefined;
1838
1906
  sameSite?: "lax" | "strict" | "none" | undefined;
1839
1907
  maxAge?: number | undefined;
1840
1908
  cookieName?: string | undefined;
1841
1909
  secret?: string | string[] | undefined;
1910
+ provider?: "redis" | "memory" | undefined;
1842
1911
  }, {
1843
1912
  domain?: string | undefined;
1844
1913
  sameSite?: "lax" | "strict" | "none" | undefined;
1845
1914
  maxAge?: number | undefined;
1846
1915
  cookieName?: string | undefined;
1847
1916
  secret?: string | string[] | undefined;
1917
+ provider?: "redis" | "memory" | undefined;
1848
1918
  }>>;
1849
1919
  sapi: z.ZodOptional<z.ZodObject<{
1850
1920
  host: z.ZodString;
@@ -1868,7 +1938,7 @@ export declare const RuntimeConfigSchema: z.ZodObject<{
1868
1938
  }>>;
1869
1939
  storage: z.ZodOptional<z.ZodObject<{
1870
1940
  session: z.ZodOptional<z.ZodObject<{
1871
- driver: z.ZodEnum<["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", ...("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")[]]>;
1941
+ driver: z.ZodEnum<["redis" | "memory" | "azureAppConfiguration" | "azureCosmos" | "azureKeyVault" | "azureStorageBlob" | "azureStorageTable" | "cloudflareKVBinding" | "cloudflareKVHTTP" | "cloudflareR2Binding" | "fs" | "fsLite" | "github" | "http" | "indexedb" | "localStorage" | "lruCache" | "mongodb" | "netlifyBlobs" | "overlay" | "planetscale" | "sessionStorage" | "vercelKV" | "cloudflare-kv-binding" | "cloudflare-kv-http", ...("redis" | "memory" | "azureAppConfiguration" | "azureCosmos" | "azureKeyVault" | "azureStorageBlob" | "azureStorageTable" | "cloudflareKVBinding" | "cloudflareKVHTTP" | "cloudflareR2Binding" | "fs" | "fsLite" | "github" | "http" | "indexedb" | "localStorage" | "lruCache" | "mongodb" | "netlifyBlobs" | "overlay" | "planetscale" | "sessionStorage" | "vercelKV" | "cloudflare-kv-binding" | "cloudflare-kv-http")[]]>;
1872
1942
  compression: z.ZodOptional<z.ZodEnum<["deflate", "gzip", "brotli", "none"]>>;
1873
1943
  url: z.ZodOptional<z.ZodString>;
1874
1944
  token: z.ZodOptional<z.ZodString>;
@@ -1879,7 +1949,7 @@ export declare const RuntimeConfigSchema: z.ZodObject<{
1879
1949
  tls: z.ZodOptional<z.ZodBoolean>;
1880
1950
  ttl: z.ZodOptional<z.ZodNumber>;
1881
1951
  }, "strip", z.ZodTypeAny, {
1882
- driver: "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";
1952
+ driver: "redis" | "memory" | "azureAppConfiguration" | "azureCosmos" | "azureKeyVault" | "azureStorageBlob" | "azureStorageTable" | "cloudflareKVBinding" | "cloudflareKVHTTP" | "cloudflareR2Binding" | "fs" | "fsLite" | "github" | "http" | "indexedb" | "localStorage" | "lruCache" | "mongodb" | "netlifyBlobs" | "overlay" | "planetscale" | "sessionStorage" | "vercelKV" | "cloudflare-kv-binding" | "cloudflare-kv-http";
1883
1953
  ttl?: number | undefined;
1884
1954
  port?: number | undefined;
1885
1955
  host?: string | undefined;
@@ -1890,7 +1960,7 @@ export declare const RuntimeConfigSchema: z.ZodObject<{
1890
1960
  username?: string | undefined;
1891
1961
  tls?: boolean | undefined;
1892
1962
  }, {
1893
- driver: "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";
1963
+ driver: "redis" | "memory" | "azureAppConfiguration" | "azureCosmos" | "azureKeyVault" | "azureStorageBlob" | "azureStorageTable" | "cloudflareKVBinding" | "cloudflareKVHTTP" | "cloudflareR2Binding" | "fs" | "fsLite" | "github" | "http" | "indexedb" | "localStorage" | "lruCache" | "mongodb" | "netlifyBlobs" | "overlay" | "planetscale" | "sessionStorage" | "vercelKV" | "cloudflare-kv-binding" | "cloudflare-kv-http";
1894
1964
  ttl?: number | undefined;
1895
1965
  port?: number | undefined;
1896
1966
  host?: string | undefined;
@@ -1902,7 +1972,7 @@ export declare const RuntimeConfigSchema: z.ZodObject<{
1902
1972
  tls?: boolean | undefined;
1903
1973
  }>>;
1904
1974
  cache: z.ZodOptional<z.ZodObject<{
1905
- driver: z.ZodEnum<["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", ...("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: z.ZodEnum<["redis" | "memory" | "azureAppConfiguration" | "azureCosmos" | "azureKeyVault" | "azureStorageBlob" | "azureStorageTable" | "cloudflareKVBinding" | "cloudflareKVHTTP" | "cloudflareR2Binding" | "fs" | "fsLite" | "github" | "http" | "indexedb" | "localStorage" | "lruCache" | "mongodb" | "netlifyBlobs" | "overlay" | "planetscale" | "sessionStorage" | "vercelKV" | "cloudflare-kv-binding" | "cloudflare-kv-http", ...("redis" | "memory" | "azureAppConfiguration" | "azureCosmos" | "azureKeyVault" | "azureStorageBlob" | "azureStorageTable" | "cloudflareKVBinding" | "cloudflareKVHTTP" | "cloudflareR2Binding" | "fs" | "fsLite" | "github" | "http" | "indexedb" | "localStorage" | "lruCache" | "mongodb" | "netlifyBlobs" | "overlay" | "planetscale" | "sessionStorage" | "vercelKV" | "cloudflare-kv-binding" | "cloudflare-kv-http")[]]>;
1906
1976
  compression: z.ZodOptional<z.ZodEnum<["deflate", "gzip", "brotli", "none"]>>;
1907
1977
  url: z.ZodOptional<z.ZodString>;
1908
1978
  token: z.ZodOptional<z.ZodString>;
@@ -1913,7 +1983,7 @@ export declare const RuntimeConfigSchema: z.ZodObject<{
1913
1983
  tls: z.ZodOptional<z.ZodBoolean>;
1914
1984
  ttl: z.ZodOptional<z.ZodNumber>;
1915
1985
  }, "strip", z.ZodTypeAny, {
1916
- driver: "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";
1986
+ driver: "redis" | "memory" | "azureAppConfiguration" | "azureCosmos" | "azureKeyVault" | "azureStorageBlob" | "azureStorageTable" | "cloudflareKVBinding" | "cloudflareKVHTTP" | "cloudflareR2Binding" | "fs" | "fsLite" | "github" | "http" | "indexedb" | "localStorage" | "lruCache" | "mongodb" | "netlifyBlobs" | "overlay" | "planetscale" | "sessionStorage" | "vercelKV" | "cloudflare-kv-binding" | "cloudflare-kv-http";
1917
1987
  ttl?: number | undefined;
1918
1988
  port?: number | undefined;
1919
1989
  host?: string | undefined;
@@ -1924,7 +1994,7 @@ export declare const RuntimeConfigSchema: z.ZodObject<{
1924
1994
  username?: string | undefined;
1925
1995
  tls?: boolean | undefined;
1926
1996
  }, {
1927
- driver: "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";
1997
+ driver: "redis" | "memory" | "azureAppConfiguration" | "azureCosmos" | "azureKeyVault" | "azureStorageBlob" | "azureStorageTable" | "cloudflareKVBinding" | "cloudflareKVHTTP" | "cloudflareR2Binding" | "fs" | "fsLite" | "github" | "http" | "indexedb" | "localStorage" | "lruCache" | "mongodb" | "netlifyBlobs" | "overlay" | "planetscale" | "sessionStorage" | "vercelKV" | "cloudflare-kv-binding" | "cloudflare-kv-http";
1928
1998
  ttl?: number | undefined;
1929
1999
  port?: number | undefined;
1930
2000
  host?: string | undefined;
@@ -1937,7 +2007,7 @@ export declare const RuntimeConfigSchema: z.ZodObject<{
1937
2007
  }>>;
1938
2008
  }, "strip", z.ZodTypeAny, {
1939
2009
  session?: {
1940
- driver: "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";
2010
+ driver: "redis" | "memory" | "azureAppConfiguration" | "azureCosmos" | "azureKeyVault" | "azureStorageBlob" | "azureStorageTable" | "cloudflareKVBinding" | "cloudflareKVHTTP" | "cloudflareR2Binding" | "fs" | "fsLite" | "github" | "http" | "indexedb" | "localStorage" | "lruCache" | "mongodb" | "netlifyBlobs" | "overlay" | "planetscale" | "sessionStorage" | "vercelKV" | "cloudflare-kv-binding" | "cloudflare-kv-http";
1941
2011
  ttl?: number | undefined;
1942
2012
  port?: number | undefined;
1943
2013
  host?: string | undefined;
@@ -1949,7 +2019,7 @@ export declare const RuntimeConfigSchema: z.ZodObject<{
1949
2019
  tls?: boolean | undefined;
1950
2020
  } | undefined;
1951
2021
  cache?: {
1952
- driver: "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";
2022
+ driver: "redis" | "memory" | "azureAppConfiguration" | "azureCosmos" | "azureKeyVault" | "azureStorageBlob" | "azureStorageTable" | "cloudflareKVBinding" | "cloudflareKVHTTP" | "cloudflareR2Binding" | "fs" | "fsLite" | "github" | "http" | "indexedb" | "localStorage" | "lruCache" | "mongodb" | "netlifyBlobs" | "overlay" | "planetscale" | "sessionStorage" | "vercelKV" | "cloudflare-kv-binding" | "cloudflare-kv-http";
1953
2023
  ttl?: number | undefined;
1954
2024
  port?: number | undefined;
1955
2025
  host?: string | undefined;
@@ -1962,7 +2032,7 @@ export declare const RuntimeConfigSchema: z.ZodObject<{
1962
2032
  } | undefined;
1963
2033
  }, {
1964
2034
  session?: {
1965
- driver: "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";
2035
+ driver: "redis" | "memory" | "azureAppConfiguration" | "azureCosmos" | "azureKeyVault" | "azureStorageBlob" | "azureStorageTable" | "cloudflareKVBinding" | "cloudflareKVHTTP" | "cloudflareR2Binding" | "fs" | "fsLite" | "github" | "http" | "indexedb" | "localStorage" | "lruCache" | "mongodb" | "netlifyBlobs" | "overlay" | "planetscale" | "sessionStorage" | "vercelKV" | "cloudflare-kv-binding" | "cloudflare-kv-http";
1966
2036
  ttl?: number | undefined;
1967
2037
  port?: number | undefined;
1968
2038
  host?: string | undefined;
@@ -1974,7 +2044,7 @@ export declare const RuntimeConfigSchema: z.ZodObject<{
1974
2044
  tls?: boolean | undefined;
1975
2045
  } | undefined;
1976
2046
  cache?: {
1977
- driver: "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";
2047
+ driver: "redis" | "memory" | "azureAppConfiguration" | "azureCosmos" | "azureKeyVault" | "azureStorageBlob" | "azureStorageTable" | "cloudflareKVBinding" | "cloudflareKVHTTP" | "cloudflareR2Binding" | "fs" | "fsLite" | "github" | "http" | "indexedb" | "localStorage" | "lruCache" | "mongodb" | "netlifyBlobs" | "overlay" | "planetscale" | "sessionStorage" | "vercelKV" | "cloudflare-kv-binding" | "cloudflare-kv-http";
1978
2048
  ttl?: number | undefined;
1979
2049
  port?: number | undefined;
1980
2050
  host?: string | undefined;
@@ -2036,6 +2106,7 @@ export declare const RuntimeConfigSchema: z.ZodObject<{
2036
2106
  host: string;
2037
2107
  secret: string;
2038
2108
  token: string;
2109
+ shopId?: number | undefined;
2039
2110
  cbdExpiration?: number | undefined;
2040
2111
  };
2041
2112
  shopId: number;
@@ -2068,7 +2139,7 @@ export declare const RuntimeConfigSchema: z.ZodObject<{
2068
2139
  appKeys?: {
2069
2140
  wishlistKey: string;
2070
2141
  basketKey: string;
2071
- hashAlgorithm: string;
2142
+ hashAlgorithm: "none" | "md5" | "sha256";
2072
2143
  } | undefined;
2073
2144
  currencyFractionDigits?: number | undefined;
2074
2145
  isEnabled?: boolean | undefined;
@@ -2078,6 +2149,7 @@ export declare const RuntimeConfigSchema: z.ZodObject<{
2078
2149
  maxAge?: number | undefined;
2079
2150
  cookieName?: string | undefined;
2080
2151
  secret?: string | string[] | undefined;
2152
+ provider?: "redis" | "memory" | undefined;
2081
2153
  } | undefined;
2082
2154
  sapi?: {
2083
2155
  host: string;
@@ -2089,7 +2161,7 @@ export declare const RuntimeConfigSchema: z.ZodObject<{
2089
2161
  } | undefined;
2090
2162
  storage?: {
2091
2163
  session?: {
2092
- driver: "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";
2164
+ driver: "redis" | "memory" | "azureAppConfiguration" | "azureCosmos" | "azureKeyVault" | "azureStorageBlob" | "azureStorageTable" | "cloudflareKVBinding" | "cloudflareKVHTTP" | "cloudflareR2Binding" | "fs" | "fsLite" | "github" | "http" | "indexedb" | "localStorage" | "lruCache" | "mongodb" | "netlifyBlobs" | "overlay" | "planetscale" | "sessionStorage" | "vercelKV" | "cloudflare-kv-binding" | "cloudflare-kv-http";
2093
2165
  ttl?: number | undefined;
2094
2166
  port?: number | undefined;
2095
2167
  host?: string | undefined;
@@ -2101,7 +2173,7 @@ export declare const RuntimeConfigSchema: z.ZodObject<{
2101
2173
  tls?: boolean | undefined;
2102
2174
  } | undefined;
2103
2175
  cache?: {
2104
- driver: "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";
2176
+ driver: "redis" | "memory" | "azureAppConfiguration" | "azureCosmos" | "azureKeyVault" | "azureStorageBlob" | "azureStorageTable" | "cloudflareKVBinding" | "cloudflareKVHTTP" | "cloudflareR2Binding" | "fs" | "fsLite" | "github" | "http" | "indexedb" | "localStorage" | "lruCache" | "mongodb" | "netlifyBlobs" | "overlay" | "planetscale" | "sessionStorage" | "vercelKV" | "cloudflare-kv-binding" | "cloudflare-kv-http";
2105
2177
  ttl?: number | undefined;
2106
2178
  port?: number | undefined;
2107
2179
  host?: string | undefined;
@@ -2121,6 +2193,7 @@ export declare const RuntimeConfigSchema: z.ZodObject<{
2121
2193
  host: string;
2122
2194
  secret: string;
2123
2195
  token: string;
2196
+ shopId?: number | undefined;
2124
2197
  cbdExpiration?: number | undefined;
2125
2198
  };
2126
2199
  shopId: number;
@@ -2153,7 +2226,7 @@ export declare const RuntimeConfigSchema: z.ZodObject<{
2153
2226
  appKeys?: {
2154
2227
  wishlistKey: string;
2155
2228
  basketKey: string;
2156
- hashAlgorithm: string;
2229
+ hashAlgorithm: "none" | "md5" | "sha256";
2157
2230
  } | undefined;
2158
2231
  currencyFractionDigits?: number | undefined;
2159
2232
  isEnabled?: boolean | undefined;
@@ -2163,6 +2236,7 @@ export declare const RuntimeConfigSchema: z.ZodObject<{
2163
2236
  maxAge?: number | undefined;
2164
2237
  cookieName?: string | undefined;
2165
2238
  secret?: string | string[] | undefined;
2239
+ provider?: "redis" | "memory" | undefined;
2166
2240
  } | undefined;
2167
2241
  sapi?: {
2168
2242
  host: string;
@@ -2174,7 +2248,7 @@ export declare const RuntimeConfigSchema: z.ZodObject<{
2174
2248
  } | undefined;
2175
2249
  storage?: {
2176
2250
  session?: {
2177
- driver: "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";
2251
+ driver: "redis" | "memory" | "azureAppConfiguration" | "azureCosmos" | "azureKeyVault" | "azureStorageBlob" | "azureStorageTable" | "cloudflareKVBinding" | "cloudflareKVHTTP" | "cloudflareR2Binding" | "fs" | "fsLite" | "github" | "http" | "indexedb" | "localStorage" | "lruCache" | "mongodb" | "netlifyBlobs" | "overlay" | "planetscale" | "sessionStorage" | "vercelKV" | "cloudflare-kv-binding" | "cloudflare-kv-http";
2178
2252
  ttl?: number | undefined;
2179
2253
  port?: number | undefined;
2180
2254
  host?: string | undefined;
@@ -2186,7 +2260,7 @@ export declare const RuntimeConfigSchema: z.ZodObject<{
2186
2260
  tls?: boolean | undefined;
2187
2261
  } | undefined;
2188
2262
  cache?: {
2189
- driver: "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";
2263
+ driver: "redis" | "memory" | "azureAppConfiguration" | "azureCosmos" | "azureKeyVault" | "azureStorageBlob" | "azureStorageTable" | "cloudflareKVBinding" | "cloudflareKVHTTP" | "cloudflareR2Binding" | "fs" | "fsLite" | "github" | "http" | "indexedb" | "localStorage" | "lruCache" | "mongodb" | "netlifyBlobs" | "overlay" | "planetscale" | "sessionStorage" | "vercelKV" | "cloudflare-kv-binding" | "cloudflare-kv-http";
2190
2264
  ttl?: number | undefined;
2191
2265
  port?: number | undefined;
2192
2266
  host?: string | undefined;
@@ -2208,6 +2282,7 @@ export declare const RuntimeConfigSchema: z.ZodObject<{
2208
2282
  host: string;
2209
2283
  secret: string;
2210
2284
  token: string;
2285
+ shopId?: number | undefined;
2211
2286
  cbdExpiration?: number | undefined;
2212
2287
  };
2213
2288
  shopId: number;
@@ -2240,7 +2315,7 @@ export declare const RuntimeConfigSchema: z.ZodObject<{
2240
2315
  appKeys?: {
2241
2316
  wishlistKey: string;
2242
2317
  basketKey: string;
2243
- hashAlgorithm: string;
2318
+ hashAlgorithm: "none" | "md5" | "sha256";
2244
2319
  } | undefined;
2245
2320
  currencyFractionDigits?: number | undefined;
2246
2321
  isEnabled?: boolean | undefined;
@@ -2250,6 +2325,7 @@ export declare const RuntimeConfigSchema: z.ZodObject<{
2250
2325
  maxAge?: number | undefined;
2251
2326
  cookieName?: string | undefined;
2252
2327
  secret?: string | string[] | undefined;
2328
+ provider?: "redis" | "memory" | undefined;
2253
2329
  } | undefined;
2254
2330
  sapi?: {
2255
2331
  host: string;
@@ -2261,7 +2337,7 @@ export declare const RuntimeConfigSchema: z.ZodObject<{
2261
2337
  } | undefined;
2262
2338
  storage?: {
2263
2339
  session?: {
2264
- driver: "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";
2340
+ driver: "redis" | "memory" | "azureAppConfiguration" | "azureCosmos" | "azureKeyVault" | "azureStorageBlob" | "azureStorageTable" | "cloudflareKVBinding" | "cloudflareKVHTTP" | "cloudflareR2Binding" | "fs" | "fsLite" | "github" | "http" | "indexedb" | "localStorage" | "lruCache" | "mongodb" | "netlifyBlobs" | "overlay" | "planetscale" | "sessionStorage" | "vercelKV" | "cloudflare-kv-binding" | "cloudflare-kv-http";
2265
2341
  ttl?: number | undefined;
2266
2342
  port?: number | undefined;
2267
2343
  host?: string | undefined;
@@ -2273,7 +2349,7 @@ export declare const RuntimeConfigSchema: z.ZodObject<{
2273
2349
  tls?: boolean | undefined;
2274
2350
  } | undefined;
2275
2351
  cache?: {
2276
- driver: "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";
2352
+ driver: "redis" | "memory" | "azureAppConfiguration" | "azureCosmos" | "azureKeyVault" | "azureStorageBlob" | "azureStorageTable" | "cloudflareKVBinding" | "cloudflareKVHTTP" | "cloudflareR2Binding" | "fs" | "fsLite" | "github" | "http" | "indexedb" | "localStorage" | "lruCache" | "mongodb" | "netlifyBlobs" | "overlay" | "planetscale" | "sessionStorage" | "vercelKV" | "cloudflare-kv-binding" | "cloudflare-kv-http";
2277
2353
  ttl?: number | undefined;
2278
2354
  port?: number | undefined;
2279
2355
  host?: string | undefined;
@@ -2296,6 +2372,7 @@ export declare const RuntimeConfigSchema: z.ZodObject<{
2296
2372
  host: string;
2297
2373
  secret: string;
2298
2374
  token: string;
2375
+ shopId?: number | undefined;
2299
2376
  cbdExpiration?: number | undefined;
2300
2377
  };
2301
2378
  shopId: number;
@@ -2328,7 +2405,7 @@ export declare const RuntimeConfigSchema: z.ZodObject<{
2328
2405
  appKeys?: {
2329
2406
  wishlistKey: string;
2330
2407
  basketKey: string;
2331
- hashAlgorithm: string;
2408
+ hashAlgorithm: "none" | "md5" | "sha256";
2332
2409
  } | undefined;
2333
2410
  currencyFractionDigits?: number | undefined;
2334
2411
  isEnabled?: boolean | undefined;
@@ -2338,6 +2415,7 @@ export declare const RuntimeConfigSchema: z.ZodObject<{
2338
2415
  maxAge?: number | undefined;
2339
2416
  cookieName?: string | undefined;
2340
2417
  secret?: string | string[] | undefined;
2418
+ provider?: "redis" | "memory" | undefined;
2341
2419
  } | undefined;
2342
2420
  sapi?: {
2343
2421
  host: string;
@@ -2349,7 +2427,7 @@ export declare const RuntimeConfigSchema: z.ZodObject<{
2349
2427
  } | undefined;
2350
2428
  storage?: {
2351
2429
  session?: {
2352
- driver: "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";
2430
+ driver: "redis" | "memory" | "azureAppConfiguration" | "azureCosmos" | "azureKeyVault" | "azureStorageBlob" | "azureStorageTable" | "cloudflareKVBinding" | "cloudflareKVHTTP" | "cloudflareR2Binding" | "fs" | "fsLite" | "github" | "http" | "indexedb" | "localStorage" | "lruCache" | "mongodb" | "netlifyBlobs" | "overlay" | "planetscale" | "sessionStorage" | "vercelKV" | "cloudflare-kv-binding" | "cloudflare-kv-http";
2353
2431
  ttl?: number | undefined;
2354
2432
  port?: number | undefined;
2355
2433
  host?: string | undefined;
@@ -2361,7 +2439,7 @@ export declare const RuntimeConfigSchema: z.ZodObject<{
2361
2439
  tls?: boolean | undefined;
2362
2440
  } | undefined;
2363
2441
  cache?: {
2364
- driver: "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";
2442
+ driver: "redis" | "memory" | "azureAppConfiguration" | "azureCosmos" | "azureKeyVault" | "azureStorageBlob" | "azureStorageTable" | "cloudflareKVBinding" | "cloudflareKVHTTP" | "cloudflareR2Binding" | "fs" | "fsLite" | "github" | "http" | "indexedb" | "localStorage" | "lruCache" | "mongodb" | "netlifyBlobs" | "overlay" | "planetscale" | "sessionStorage" | "vercelKV" | "cloudflare-kv-binding" | "cloudflare-kv-http";
2365
2443
  ttl?: number | undefined;
2366
2444
  port?: number | undefined;
2367
2445
  host?: string | undefined;
@@ -2399,22 +2477,29 @@ export declare const RuntimeConfigSchema: z.ZodObject<{
2399
2477
  * Controls the domain option on the session cookie
2400
2478
  */
2401
2479
  domain: z.ZodOptional<z.ZodString>;
2480
+ /**
2481
+ * The provider to use for the persistent storage.
2482
+ * @deprecated Storefront Core is now relying on a unified cache configuration. Use the storage option instead.
2483
+ */
2484
+ provider: z.ZodOptional<z.ZodEnum<["redis", "memory"]>>;
2402
2485
  }, "strip", z.ZodTypeAny, {
2403
2486
  domain?: string | undefined;
2404
2487
  sameSite?: "lax" | "strict" | "none" | undefined;
2405
2488
  maxAge?: number | undefined;
2406
2489
  cookieName?: string | undefined;
2407
2490
  secret?: string | string[] | undefined;
2491
+ provider?: "redis" | "memory" | undefined;
2408
2492
  }, {
2409
2493
  domain?: string | undefined;
2410
2494
  sameSite?: "lax" | "strict" | "none" | undefined;
2411
2495
  maxAge?: number | undefined;
2412
2496
  cookieName?: string | undefined;
2413
2497
  secret?: string | string[] | undefined;
2498
+ provider?: "redis" | "memory" | undefined;
2414
2499
  }>>;
2415
2500
  storage: z.ZodOptional<z.ZodObject<{
2416
2501
  session: z.ZodOptional<z.ZodObject<{
2417
- driver: z.ZodEnum<["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", ...("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")[]]>;
2502
+ driver: z.ZodEnum<["redis" | "memory" | "azureAppConfiguration" | "azureCosmos" | "azureKeyVault" | "azureStorageBlob" | "azureStorageTable" | "cloudflareKVBinding" | "cloudflareKVHTTP" | "cloudflareR2Binding" | "fs" | "fsLite" | "github" | "http" | "indexedb" | "localStorage" | "lruCache" | "mongodb" | "netlifyBlobs" | "overlay" | "planetscale" | "sessionStorage" | "vercelKV" | "cloudflare-kv-binding" | "cloudflare-kv-http", ...("redis" | "memory" | "azureAppConfiguration" | "azureCosmos" | "azureKeyVault" | "azureStorageBlob" | "azureStorageTable" | "cloudflareKVBinding" | "cloudflareKVHTTP" | "cloudflareR2Binding" | "fs" | "fsLite" | "github" | "http" | "indexedb" | "localStorage" | "lruCache" | "mongodb" | "netlifyBlobs" | "overlay" | "planetscale" | "sessionStorage" | "vercelKV" | "cloudflare-kv-binding" | "cloudflare-kv-http")[]]>;
2418
2503
  compression: z.ZodOptional<z.ZodEnum<["deflate", "gzip", "brotli", "none"]>>;
2419
2504
  url: z.ZodOptional<z.ZodString>;
2420
2505
  token: z.ZodOptional<z.ZodString>;
@@ -2425,7 +2510,7 @@ export declare const RuntimeConfigSchema: z.ZodObject<{
2425
2510
  tls: z.ZodOptional<z.ZodBoolean>;
2426
2511
  ttl: z.ZodOptional<z.ZodNumber>;
2427
2512
  }, "strip", z.ZodTypeAny, {
2428
- driver: "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";
2513
+ driver: "redis" | "memory" | "azureAppConfiguration" | "azureCosmos" | "azureKeyVault" | "azureStorageBlob" | "azureStorageTable" | "cloudflareKVBinding" | "cloudflareKVHTTP" | "cloudflareR2Binding" | "fs" | "fsLite" | "github" | "http" | "indexedb" | "localStorage" | "lruCache" | "mongodb" | "netlifyBlobs" | "overlay" | "planetscale" | "sessionStorage" | "vercelKV" | "cloudflare-kv-binding" | "cloudflare-kv-http";
2429
2514
  ttl?: number | undefined;
2430
2515
  port?: number | undefined;
2431
2516
  host?: string | undefined;
@@ -2436,7 +2521,7 @@ export declare const RuntimeConfigSchema: z.ZodObject<{
2436
2521
  username?: string | undefined;
2437
2522
  tls?: boolean | undefined;
2438
2523
  }, {
2439
- driver: "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";
2524
+ driver: "redis" | "memory" | "azureAppConfiguration" | "azureCosmos" | "azureKeyVault" | "azureStorageBlob" | "azureStorageTable" | "cloudflareKVBinding" | "cloudflareKVHTTP" | "cloudflareR2Binding" | "fs" | "fsLite" | "github" | "http" | "indexedb" | "localStorage" | "lruCache" | "mongodb" | "netlifyBlobs" | "overlay" | "planetscale" | "sessionStorage" | "vercelKV" | "cloudflare-kv-binding" | "cloudflare-kv-http";
2440
2525
  ttl?: number | undefined;
2441
2526
  port?: number | undefined;
2442
2527
  host?: string | undefined;
@@ -2448,7 +2533,7 @@ export declare const RuntimeConfigSchema: z.ZodObject<{
2448
2533
  tls?: boolean | undefined;
2449
2534
  }>>;
2450
2535
  cache: z.ZodOptional<z.ZodObject<{
2451
- driver: z.ZodEnum<["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", ...("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")[]]>;
2536
+ driver: z.ZodEnum<["redis" | "memory" | "azureAppConfiguration" | "azureCosmos" | "azureKeyVault" | "azureStorageBlob" | "azureStorageTable" | "cloudflareKVBinding" | "cloudflareKVHTTP" | "cloudflareR2Binding" | "fs" | "fsLite" | "github" | "http" | "indexedb" | "localStorage" | "lruCache" | "mongodb" | "netlifyBlobs" | "overlay" | "planetscale" | "sessionStorage" | "vercelKV" | "cloudflare-kv-binding" | "cloudflare-kv-http", ...("redis" | "memory" | "azureAppConfiguration" | "azureCosmos" | "azureKeyVault" | "azureStorageBlob" | "azureStorageTable" | "cloudflareKVBinding" | "cloudflareKVHTTP" | "cloudflareR2Binding" | "fs" | "fsLite" | "github" | "http" | "indexedb" | "localStorage" | "lruCache" | "mongodb" | "netlifyBlobs" | "overlay" | "planetscale" | "sessionStorage" | "vercelKV" | "cloudflare-kv-binding" | "cloudflare-kv-http")[]]>;
2452
2537
  compression: z.ZodOptional<z.ZodEnum<["deflate", "gzip", "brotli", "none"]>>;
2453
2538
  url: z.ZodOptional<z.ZodString>;
2454
2539
  token: z.ZodOptional<z.ZodString>;
@@ -2459,7 +2544,7 @@ export declare const RuntimeConfigSchema: z.ZodObject<{
2459
2544
  tls: z.ZodOptional<z.ZodBoolean>;
2460
2545
  ttl: z.ZodOptional<z.ZodNumber>;
2461
2546
  }, "strip", z.ZodTypeAny, {
2462
- driver: "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";
2547
+ driver: "redis" | "memory" | "azureAppConfiguration" | "azureCosmos" | "azureKeyVault" | "azureStorageBlob" | "azureStorageTable" | "cloudflareKVBinding" | "cloudflareKVHTTP" | "cloudflareR2Binding" | "fs" | "fsLite" | "github" | "http" | "indexedb" | "localStorage" | "lruCache" | "mongodb" | "netlifyBlobs" | "overlay" | "planetscale" | "sessionStorage" | "vercelKV" | "cloudflare-kv-binding" | "cloudflare-kv-http";
2463
2548
  ttl?: number | undefined;
2464
2549
  port?: number | undefined;
2465
2550
  host?: string | undefined;
@@ -2470,7 +2555,7 @@ export declare const RuntimeConfigSchema: z.ZodObject<{
2470
2555
  username?: string | undefined;
2471
2556
  tls?: boolean | undefined;
2472
2557
  }, {
2473
- driver: "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";
2558
+ driver: "redis" | "memory" | "azureAppConfiguration" | "azureCosmos" | "azureKeyVault" | "azureStorageBlob" | "azureStorageTable" | "cloudflareKVBinding" | "cloudflareKVHTTP" | "cloudflareR2Binding" | "fs" | "fsLite" | "github" | "http" | "indexedb" | "localStorage" | "lruCache" | "mongodb" | "netlifyBlobs" | "overlay" | "planetscale" | "sessionStorage" | "vercelKV" | "cloudflare-kv-binding" | "cloudflare-kv-http";
2474
2559
  ttl?: number | undefined;
2475
2560
  port?: number | undefined;
2476
2561
  host?: string | undefined;
@@ -2483,7 +2568,7 @@ export declare const RuntimeConfigSchema: z.ZodObject<{
2483
2568
  }>>;
2484
2569
  }, "strip", z.ZodTypeAny, {
2485
2570
  session?: {
2486
- driver: "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";
2571
+ driver: "redis" | "memory" | "azureAppConfiguration" | "azureCosmos" | "azureKeyVault" | "azureStorageBlob" | "azureStorageTable" | "cloudflareKVBinding" | "cloudflareKVHTTP" | "cloudflareR2Binding" | "fs" | "fsLite" | "github" | "http" | "indexedb" | "localStorage" | "lruCache" | "mongodb" | "netlifyBlobs" | "overlay" | "planetscale" | "sessionStorage" | "vercelKV" | "cloudflare-kv-binding" | "cloudflare-kv-http";
2487
2572
  ttl?: number | undefined;
2488
2573
  port?: number | undefined;
2489
2574
  host?: string | undefined;
@@ -2495,7 +2580,7 @@ export declare const RuntimeConfigSchema: z.ZodObject<{
2495
2580
  tls?: boolean | undefined;
2496
2581
  } | undefined;
2497
2582
  cache?: {
2498
- driver: "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";
2583
+ driver: "redis" | "memory" | "azureAppConfiguration" | "azureCosmos" | "azureKeyVault" | "azureStorageBlob" | "azureStorageTable" | "cloudflareKVBinding" | "cloudflareKVHTTP" | "cloudflareR2Binding" | "fs" | "fsLite" | "github" | "http" | "indexedb" | "localStorage" | "lruCache" | "mongodb" | "netlifyBlobs" | "overlay" | "planetscale" | "sessionStorage" | "vercelKV" | "cloudflare-kv-binding" | "cloudflare-kv-http";
2499
2584
  ttl?: number | undefined;
2500
2585
  port?: number | undefined;
2501
2586
  host?: string | undefined;
@@ -2508,7 +2593,7 @@ export declare const RuntimeConfigSchema: z.ZodObject<{
2508
2593
  } | undefined;
2509
2594
  }, {
2510
2595
  session?: {
2511
- driver: "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";
2596
+ driver: "redis" | "memory" | "azureAppConfiguration" | "azureCosmos" | "azureKeyVault" | "azureStorageBlob" | "azureStorageTable" | "cloudflareKVBinding" | "cloudflareKVHTTP" | "cloudflareR2Binding" | "fs" | "fsLite" | "github" | "http" | "indexedb" | "localStorage" | "lruCache" | "mongodb" | "netlifyBlobs" | "overlay" | "planetscale" | "sessionStorage" | "vercelKV" | "cloudflare-kv-binding" | "cloudflare-kv-http";
2512
2597
  ttl?: number | undefined;
2513
2598
  port?: number | undefined;
2514
2599
  host?: string | undefined;
@@ -2520,7 +2605,7 @@ export declare const RuntimeConfigSchema: z.ZodObject<{
2520
2605
  tls?: boolean | undefined;
2521
2606
  } | undefined;
2522
2607
  cache?: {
2523
- driver: "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";
2608
+ driver: "redis" | "memory" | "azureAppConfiguration" | "azureCosmos" | "azureKeyVault" | "azureStorageBlob" | "azureStorageTable" | "cloudflareKVBinding" | "cloudflareKVHTTP" | "cloudflareR2Binding" | "fs" | "fsLite" | "github" | "http" | "indexedb" | "localStorage" | "lruCache" | "mongodb" | "netlifyBlobs" | "overlay" | "planetscale" | "sessionStorage" | "vercelKV" | "cloudflare-kv-binding" | "cloudflare-kv-http";
2524
2609
  ttl?: number | undefined;
2525
2610
  port?: number | undefined;
2526
2611
  host?: string | undefined;
@@ -2548,19 +2633,19 @@ export declare const RuntimeConfigSchema: z.ZodObject<{
2548
2633
  appKeys: z.ZodObject<{
2549
2634
  wishlistKey: z.ZodString;
2550
2635
  basketKey: z.ZodString;
2551
- hashAlgorithm: z.ZodEnum<[string, ...string[]]>;
2636
+ hashAlgorithm: z.ZodEnum<["md5", "sha256", "none"]>;
2552
2637
  }, "strip", z.ZodTypeAny, {
2553
2638
  wishlistKey: string;
2554
2639
  basketKey: string;
2555
- hashAlgorithm: string;
2640
+ hashAlgorithm: "none" | "md5" | "sha256";
2556
2641
  }, {
2557
2642
  wishlistKey: string;
2558
2643
  basketKey: string;
2559
- hashAlgorithm: string;
2644
+ hashAlgorithm: "none" | "md5" | "sha256";
2560
2645
  }>;
2561
2646
  apiBasePath: z.ZodOptional<z.ZodString>;
2562
2647
  cache: z.ZodOptional<z.ZodObject<{
2563
- auth: z.ZodObject<{
2648
+ auth: z.ZodOptional<z.ZodObject<{
2564
2649
  username: z.ZodString;
2565
2650
  password: z.ZodString;
2566
2651
  }, "strip", z.ZodTypeAny, {
@@ -2569,20 +2654,27 @@ export declare const RuntimeConfigSchema: z.ZodObject<{
2569
2654
  }, {
2570
2655
  password: string;
2571
2656
  username: string;
2572
- }>;
2657
+ }>>;
2573
2658
  enabled: z.ZodOptional<z.ZodBoolean>;
2659
+ /**
2660
+ * The provider to use for the persistent storage.
2661
+ * @deprecated Storefront Core is now relying on a unified cache configuration. Use the storage option instead.
2662
+ */
2663
+ provider: z.ZodOptional<z.ZodEnum<["redis", "memory"]>>;
2574
2664
  }, "strip", z.ZodTypeAny, {
2575
- auth: {
2665
+ auth?: {
2576
2666
  password: string;
2577
2667
  username: string;
2578
- };
2668
+ } | undefined;
2579
2669
  enabled?: boolean | undefined;
2670
+ provider?: "redis" | "memory" | undefined;
2580
2671
  }, {
2581
- auth: {
2672
+ auth?: {
2582
2673
  password: string;
2583
2674
  username: string;
2584
- };
2675
+ } | undefined;
2585
2676
  enabled?: boolean | undefined;
2677
+ provider?: "redis" | "memory" | undefined;
2586
2678
  }>>;
2587
2679
  publicShopData: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
2588
2680
  idp: z.ZodOptional<z.ZodObject<{
@@ -2645,7 +2737,7 @@ export declare const RuntimeConfigSchema: z.ZodObject<{
2645
2737
  appKeys: {
2646
2738
  wishlistKey: string;
2647
2739
  basketKey: string;
2648
- hashAlgorithm: string;
2740
+ hashAlgorithm: "none" | "md5" | "sha256";
2649
2741
  };
2650
2742
  idp?: {
2651
2743
  enabled: boolean;
@@ -2672,17 +2764,19 @@ export declare const RuntimeConfigSchema: z.ZodObject<{
2672
2764
  maxAge?: number | undefined;
2673
2765
  cookieName?: string | undefined;
2674
2766
  secret?: string | string[] | undefined;
2767
+ provider?: "redis" | "memory" | undefined;
2675
2768
  } | undefined;
2676
2769
  cache?: {
2677
- auth: {
2770
+ auth?: {
2678
2771
  password: string;
2679
2772
  username: string;
2680
- };
2773
+ } | undefined;
2681
2774
  enabled?: boolean | undefined;
2775
+ provider?: "redis" | "memory" | undefined;
2682
2776
  } | undefined;
2683
2777
  storage?: {
2684
2778
  session?: {
2685
- driver: "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";
2779
+ driver: "redis" | "memory" | "azureAppConfiguration" | "azureCosmos" | "azureKeyVault" | "azureStorageBlob" | "azureStorageTable" | "cloudflareKVBinding" | "cloudflareKVHTTP" | "cloudflareR2Binding" | "fs" | "fsLite" | "github" | "http" | "indexedb" | "localStorage" | "lruCache" | "mongodb" | "netlifyBlobs" | "overlay" | "planetscale" | "sessionStorage" | "vercelKV" | "cloudflare-kv-binding" | "cloudflare-kv-http";
2686
2780
  ttl?: number | undefined;
2687
2781
  port?: number | undefined;
2688
2782
  host?: string | undefined;
@@ -2694,7 +2788,7 @@ export declare const RuntimeConfigSchema: z.ZodObject<{
2694
2788
  tls?: boolean | undefined;
2695
2789
  } | undefined;
2696
2790
  cache?: {
2697
- driver: "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";
2791
+ driver: "redis" | "memory" | "azureAppConfiguration" | "azureCosmos" | "azureKeyVault" | "azureStorageBlob" | "azureStorageTable" | "cloudflareKVBinding" | "cloudflareKVHTTP" | "cloudflareR2Binding" | "fs" | "fsLite" | "github" | "http" | "indexedb" | "localStorage" | "lruCache" | "mongodb" | "netlifyBlobs" | "overlay" | "planetscale" | "sessionStorage" | "vercelKV" | "cloudflare-kv-binding" | "cloudflare-kv-http";
2698
2792
  ttl?: number | undefined;
2699
2793
  port?: number | undefined;
2700
2794
  host?: string | undefined;
@@ -2716,7 +2810,7 @@ export declare const RuntimeConfigSchema: z.ZodObject<{
2716
2810
  appKeys: {
2717
2811
  wishlistKey: string;
2718
2812
  basketKey: string;
2719
- hashAlgorithm: string;
2813
+ hashAlgorithm: "none" | "md5" | "sha256";
2720
2814
  };
2721
2815
  idp?: {
2722
2816
  enabled: boolean;
@@ -2743,17 +2837,19 @@ export declare const RuntimeConfigSchema: z.ZodObject<{
2743
2837
  maxAge?: number | undefined;
2744
2838
  cookieName?: string | undefined;
2745
2839
  secret?: string | string[] | undefined;
2840
+ provider?: "redis" | "memory" | undefined;
2746
2841
  } | undefined;
2747
2842
  cache?: {
2748
- auth: {
2843
+ auth?: {
2749
2844
  password: string;
2750
2845
  username: string;
2751
- };
2846
+ } | undefined;
2752
2847
  enabled?: boolean | undefined;
2848
+ provider?: "redis" | "memory" | undefined;
2753
2849
  } | undefined;
2754
2850
  storage?: {
2755
2851
  session?: {
2756
- driver: "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";
2852
+ driver: "redis" | "memory" | "azureAppConfiguration" | "azureCosmos" | "azureKeyVault" | "azureStorageBlob" | "azureStorageTable" | "cloudflareKVBinding" | "cloudflareKVHTTP" | "cloudflareR2Binding" | "fs" | "fsLite" | "github" | "http" | "indexedb" | "localStorage" | "lruCache" | "mongodb" | "netlifyBlobs" | "overlay" | "planetscale" | "sessionStorage" | "vercelKV" | "cloudflare-kv-binding" | "cloudflare-kv-http";
2757
2853
  ttl?: number | undefined;
2758
2854
  port?: number | undefined;
2759
2855
  host?: string | undefined;
@@ -2765,7 +2861,7 @@ export declare const RuntimeConfigSchema: z.ZodObject<{
2765
2861
  tls?: boolean | undefined;
2766
2862
  } | undefined;
2767
2863
  cache?: {
2768
- driver: "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";
2864
+ driver: "redis" | "memory" | "azureAppConfiguration" | "azureCosmos" | "azureKeyVault" | "azureStorageBlob" | "azureStorageTable" | "cloudflareKVBinding" | "cloudflareKVHTTP" | "cloudflareR2Binding" | "fs" | "fsLite" | "github" | "http" | "indexedb" | "localStorage" | "lruCache" | "mongodb" | "netlifyBlobs" | "overlay" | "planetscale" | "sessionStorage" | "vercelKV" | "cloudflare-kv-binding" | "cloudflare-kv-http";
2769
2865
  ttl?: number | undefined;
2770
2866
  port?: number | undefined;
2771
2867
  host?: string | undefined;
@@ -2888,6 +2984,7 @@ export declare const RuntimeConfigSchema: z.ZodObject<{
2888
2984
  host: string;
2889
2985
  secret: string;
2890
2986
  token: string;
2987
+ shopId?: number | undefined;
2891
2988
  cbdExpiration?: number | undefined;
2892
2989
  };
2893
2990
  shopId: number;
@@ -2920,7 +3017,7 @@ export declare const RuntimeConfigSchema: z.ZodObject<{
2920
3017
  appKeys?: {
2921
3018
  wishlistKey: string;
2922
3019
  basketKey: string;
2923
- hashAlgorithm: string;
3020
+ hashAlgorithm: "none" | "md5" | "sha256";
2924
3021
  } | undefined;
2925
3022
  currencyFractionDigits?: number | undefined;
2926
3023
  isEnabled?: boolean | undefined;
@@ -2930,6 +3027,7 @@ export declare const RuntimeConfigSchema: z.ZodObject<{
2930
3027
  maxAge?: number | undefined;
2931
3028
  cookieName?: string | undefined;
2932
3029
  secret?: string | string[] | undefined;
3030
+ provider?: "redis" | "memory" | undefined;
2933
3031
  } | undefined;
2934
3032
  sapi?: {
2935
3033
  host: string;
@@ -2941,7 +3039,7 @@ export declare const RuntimeConfigSchema: z.ZodObject<{
2941
3039
  } | undefined;
2942
3040
  storage?: {
2943
3041
  session?: {
2944
- driver: "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";
3042
+ driver: "redis" | "memory" | "azureAppConfiguration" | "azureCosmos" | "azureKeyVault" | "azureStorageBlob" | "azureStorageTable" | "cloudflareKVBinding" | "cloudflareKVHTTP" | "cloudflareR2Binding" | "fs" | "fsLite" | "github" | "http" | "indexedb" | "localStorage" | "lruCache" | "mongodb" | "netlifyBlobs" | "overlay" | "planetscale" | "sessionStorage" | "vercelKV" | "cloudflare-kv-binding" | "cloudflare-kv-http";
2945
3043
  ttl?: number | undefined;
2946
3044
  port?: number | undefined;
2947
3045
  host?: string | undefined;
@@ -2953,7 +3051,7 @@ export declare const RuntimeConfigSchema: z.ZodObject<{
2953
3051
  tls?: boolean | undefined;
2954
3052
  } | undefined;
2955
3053
  cache?: {
2956
- driver: "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";
3054
+ driver: "redis" | "memory" | "azureAppConfiguration" | "azureCosmos" | "azureKeyVault" | "azureStorageBlob" | "azureStorageTable" | "cloudflareKVBinding" | "cloudflareKVHTTP" | "cloudflareR2Binding" | "fs" | "fsLite" | "github" | "http" | "indexedb" | "localStorage" | "lruCache" | "mongodb" | "netlifyBlobs" | "overlay" | "planetscale" | "sessionStorage" | "vercelKV" | "cloudflare-kv-binding" | "cloudflare-kv-http";
2957
3055
  ttl?: number | undefined;
2958
3056
  port?: number | undefined;
2959
3057
  host?: string | undefined;
@@ -2976,6 +3074,7 @@ export declare const RuntimeConfigSchema: z.ZodObject<{
2976
3074
  host: string;
2977
3075
  secret: string;
2978
3076
  token: string;
3077
+ shopId?: number | undefined;
2979
3078
  cbdExpiration?: number | undefined;
2980
3079
  };
2981
3080
  shopId: number;
@@ -3008,7 +3107,7 @@ export declare const RuntimeConfigSchema: z.ZodObject<{
3008
3107
  appKeys?: {
3009
3108
  wishlistKey: string;
3010
3109
  basketKey: string;
3011
- hashAlgorithm: string;
3110
+ hashAlgorithm: "none" | "md5" | "sha256";
3012
3111
  } | undefined;
3013
3112
  currencyFractionDigits?: number | undefined;
3014
3113
  isEnabled?: boolean | undefined;
@@ -3018,6 +3117,7 @@ export declare const RuntimeConfigSchema: z.ZodObject<{
3018
3117
  maxAge?: number | undefined;
3019
3118
  cookieName?: string | undefined;
3020
3119
  secret?: string | string[] | undefined;
3120
+ provider?: "redis" | "memory" | undefined;
3021
3121
  } | undefined;
3022
3122
  sapi?: {
3023
3123
  host: string;
@@ -3029,7 +3129,7 @@ export declare const RuntimeConfigSchema: z.ZodObject<{
3029
3129
  } | undefined;
3030
3130
  storage?: {
3031
3131
  session?: {
3032
- driver: "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";
3132
+ driver: "redis" | "memory" | "azureAppConfiguration" | "azureCosmos" | "azureKeyVault" | "azureStorageBlob" | "azureStorageTable" | "cloudflareKVBinding" | "cloudflareKVHTTP" | "cloudflareR2Binding" | "fs" | "fsLite" | "github" | "http" | "indexedb" | "localStorage" | "lruCache" | "mongodb" | "netlifyBlobs" | "overlay" | "planetscale" | "sessionStorage" | "vercelKV" | "cloudflare-kv-binding" | "cloudflare-kv-http";
3033
3133
  ttl?: number | undefined;
3034
3134
  port?: number | undefined;
3035
3135
  host?: string | undefined;
@@ -3041,7 +3141,7 @@ export declare const RuntimeConfigSchema: z.ZodObject<{
3041
3141
  tls?: boolean | undefined;
3042
3142
  } | undefined;
3043
3143
  cache?: {
3044
- driver: "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";
3144
+ driver: "redis" | "memory" | "azureAppConfiguration" | "azureCosmos" | "azureKeyVault" | "azureStorageBlob" | "azureStorageTable" | "cloudflareKVBinding" | "cloudflareKVHTTP" | "cloudflareR2Binding" | "fs" | "fsLite" | "github" | "http" | "indexedb" | "localStorage" | "lruCache" | "mongodb" | "netlifyBlobs" | "overlay" | "planetscale" | "sessionStorage" | "vercelKV" | "cloudflare-kv-binding" | "cloudflare-kv-http";
3045
3145
  ttl?: number | undefined;
3046
3146
  port?: number | undefined;
3047
3147
  host?: string | undefined;
@@ -3065,7 +3165,7 @@ export declare const RuntimeConfigSchema: z.ZodObject<{
3065
3165
  appKeys: {
3066
3166
  wishlistKey: string;
3067
3167
  basketKey: string;
3068
- hashAlgorithm: string;
3168
+ hashAlgorithm: "none" | "md5" | "sha256";
3069
3169
  };
3070
3170
  idp?: {
3071
3171
  enabled: boolean;
@@ -3092,17 +3192,19 @@ export declare const RuntimeConfigSchema: z.ZodObject<{
3092
3192
  maxAge?: number | undefined;
3093
3193
  cookieName?: string | undefined;
3094
3194
  secret?: string | string[] | undefined;
3195
+ provider?: "redis" | "memory" | undefined;
3095
3196
  } | undefined;
3096
3197
  cache?: {
3097
- auth: {
3198
+ auth?: {
3098
3199
  password: string;
3099
3200
  username: string;
3100
- };
3201
+ } | undefined;
3101
3202
  enabled?: boolean | undefined;
3203
+ provider?: "redis" | "memory" | undefined;
3102
3204
  } | undefined;
3103
3205
  storage?: {
3104
3206
  session?: {
3105
- driver: "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";
3207
+ driver: "redis" | "memory" | "azureAppConfiguration" | "azureCosmos" | "azureKeyVault" | "azureStorageBlob" | "azureStorageTable" | "cloudflareKVBinding" | "cloudflareKVHTTP" | "cloudflareR2Binding" | "fs" | "fsLite" | "github" | "http" | "indexedb" | "localStorage" | "lruCache" | "mongodb" | "netlifyBlobs" | "overlay" | "planetscale" | "sessionStorage" | "vercelKV" | "cloudflare-kv-binding" | "cloudflare-kv-http";
3106
3208
  ttl?: number | undefined;
3107
3209
  port?: number | undefined;
3108
3210
  host?: string | undefined;
@@ -3114,7 +3216,7 @@ export declare const RuntimeConfigSchema: z.ZodObject<{
3114
3216
  tls?: boolean | undefined;
3115
3217
  } | undefined;
3116
3218
  cache?: {
3117
- driver: "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";
3219
+ driver: "redis" | "memory" | "azureAppConfiguration" | "azureCosmos" | "azureKeyVault" | "azureStorageBlob" | "azureStorageTable" | "cloudflareKVBinding" | "cloudflareKVHTTP" | "cloudflareR2Binding" | "fs" | "fsLite" | "github" | "http" | "indexedb" | "localStorage" | "lruCache" | "mongodb" | "netlifyBlobs" | "overlay" | "planetscale" | "sessionStorage" | "vercelKV" | "cloudflare-kv-binding" | "cloudflare-kv-http";
3118
3220
  ttl?: number | undefined;
3119
3221
  port?: number | undefined;
3120
3222
  host?: string | undefined;
@@ -3164,6 +3266,7 @@ export declare const RuntimeConfigSchema: z.ZodObject<{
3164
3266
  host: string;
3165
3267
  secret: string;
3166
3268
  token: string;
3269
+ shopId?: number | undefined;
3167
3270
  cbdExpiration?: number | undefined;
3168
3271
  };
3169
3272
  shopId: number;
@@ -3196,7 +3299,7 @@ export declare const RuntimeConfigSchema: z.ZodObject<{
3196
3299
  appKeys?: {
3197
3300
  wishlistKey: string;
3198
3301
  basketKey: string;
3199
- hashAlgorithm: string;
3302
+ hashAlgorithm: "none" | "md5" | "sha256";
3200
3303
  } | undefined;
3201
3304
  currencyFractionDigits?: number | undefined;
3202
3305
  isEnabled?: boolean | undefined;
@@ -3206,6 +3309,7 @@ export declare const RuntimeConfigSchema: z.ZodObject<{
3206
3309
  maxAge?: number | undefined;
3207
3310
  cookieName?: string | undefined;
3208
3311
  secret?: string | string[] | undefined;
3312
+ provider?: "redis" | "memory" | undefined;
3209
3313
  } | undefined;
3210
3314
  sapi?: {
3211
3315
  host: string;
@@ -3217,7 +3321,7 @@ export declare const RuntimeConfigSchema: z.ZodObject<{
3217
3321
  } | undefined;
3218
3322
  storage?: {
3219
3323
  session?: {
3220
- driver: "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";
3324
+ driver: "redis" | "memory" | "azureAppConfiguration" | "azureCosmos" | "azureKeyVault" | "azureStorageBlob" | "azureStorageTable" | "cloudflareKVBinding" | "cloudflareKVHTTP" | "cloudflareR2Binding" | "fs" | "fsLite" | "github" | "http" | "indexedb" | "localStorage" | "lruCache" | "mongodb" | "netlifyBlobs" | "overlay" | "planetscale" | "sessionStorage" | "vercelKV" | "cloudflare-kv-binding" | "cloudflare-kv-http";
3221
3325
  ttl?: number | undefined;
3222
3326
  port?: number | undefined;
3223
3327
  host?: string | undefined;
@@ -3229,7 +3333,7 @@ export declare const RuntimeConfigSchema: z.ZodObject<{
3229
3333
  tls?: boolean | undefined;
3230
3334
  } | undefined;
3231
3335
  cache?: {
3232
- driver: "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";
3336
+ driver: "redis" | "memory" | "azureAppConfiguration" | "azureCosmos" | "azureKeyVault" | "azureStorageBlob" | "azureStorageTable" | "cloudflareKVBinding" | "cloudflareKVHTTP" | "cloudflareR2Binding" | "fs" | "fsLite" | "github" | "http" | "indexedb" | "localStorage" | "lruCache" | "mongodb" | "netlifyBlobs" | "overlay" | "planetscale" | "sessionStorage" | "vercelKV" | "cloudflare-kv-binding" | "cloudflare-kv-http";
3233
3337
  ttl?: number | undefined;
3234
3338
  port?: number | undefined;
3235
3339
  host?: string | undefined;
@@ -3252,6 +3356,7 @@ export declare const RuntimeConfigSchema: z.ZodObject<{
3252
3356
  host: string;
3253
3357
  secret: string;
3254
3358
  token: string;
3359
+ shopId?: number | undefined;
3255
3360
  cbdExpiration?: number | undefined;
3256
3361
  };
3257
3362
  shopId: number;
@@ -3284,7 +3389,7 @@ export declare const RuntimeConfigSchema: z.ZodObject<{
3284
3389
  appKeys?: {
3285
3390
  wishlistKey: string;
3286
3391
  basketKey: string;
3287
- hashAlgorithm: string;
3392
+ hashAlgorithm: "none" | "md5" | "sha256";
3288
3393
  } | undefined;
3289
3394
  currencyFractionDigits?: number | undefined;
3290
3395
  isEnabled?: boolean | undefined;
@@ -3294,6 +3399,7 @@ export declare const RuntimeConfigSchema: z.ZodObject<{
3294
3399
  maxAge?: number | undefined;
3295
3400
  cookieName?: string | undefined;
3296
3401
  secret?: string | string[] | undefined;
3402
+ provider?: "redis" | "memory" | undefined;
3297
3403
  } | undefined;
3298
3404
  sapi?: {
3299
3405
  host: string;
@@ -3305,7 +3411,7 @@ export declare const RuntimeConfigSchema: z.ZodObject<{
3305
3411
  } | undefined;
3306
3412
  storage?: {
3307
3413
  session?: {
3308
- driver: "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";
3414
+ driver: "redis" | "memory" | "azureAppConfiguration" | "azureCosmos" | "azureKeyVault" | "azureStorageBlob" | "azureStorageTable" | "cloudflareKVBinding" | "cloudflareKVHTTP" | "cloudflareR2Binding" | "fs" | "fsLite" | "github" | "http" | "indexedb" | "localStorage" | "lruCache" | "mongodb" | "netlifyBlobs" | "overlay" | "planetscale" | "sessionStorage" | "vercelKV" | "cloudflare-kv-binding" | "cloudflare-kv-http";
3309
3415
  ttl?: number | undefined;
3310
3416
  port?: number | undefined;
3311
3417
  host?: string | undefined;
@@ -3317,7 +3423,7 @@ export declare const RuntimeConfigSchema: z.ZodObject<{
3317
3423
  tls?: boolean | undefined;
3318
3424
  } | undefined;
3319
3425
  cache?: {
3320
- driver: "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";
3426
+ driver: "redis" | "memory" | "azureAppConfiguration" | "azureCosmos" | "azureKeyVault" | "azureStorageBlob" | "azureStorageTable" | "cloudflareKVBinding" | "cloudflareKVHTTP" | "cloudflareR2Binding" | "fs" | "fsLite" | "github" | "http" | "indexedb" | "localStorage" | "lruCache" | "mongodb" | "netlifyBlobs" | "overlay" | "planetscale" | "sessionStorage" | "vercelKV" | "cloudflare-kv-binding" | "cloudflare-kv-http";
3321
3427
  ttl?: number | undefined;
3322
3428
  port?: number | undefined;
3323
3429
  host?: string | undefined;
@@ -3341,7 +3447,7 @@ export declare const RuntimeConfigSchema: z.ZodObject<{
3341
3447
  appKeys: {
3342
3448
  wishlistKey: string;
3343
3449
  basketKey: string;
3344
- hashAlgorithm: string;
3450
+ hashAlgorithm: "none" | "md5" | "sha256";
3345
3451
  };
3346
3452
  idp?: {
3347
3453
  enabled: boolean;
@@ -3368,17 +3474,19 @@ export declare const RuntimeConfigSchema: z.ZodObject<{
3368
3474
  maxAge?: number | undefined;
3369
3475
  cookieName?: string | undefined;
3370
3476
  secret?: string | string[] | undefined;
3477
+ provider?: "redis" | "memory" | undefined;
3371
3478
  } | undefined;
3372
3479
  cache?: {
3373
- auth: {
3480
+ auth?: {
3374
3481
  password: string;
3375
3482
  username: string;
3376
- };
3483
+ } | undefined;
3377
3484
  enabled?: boolean | undefined;
3485
+ provider?: "redis" | "memory" | undefined;
3378
3486
  } | undefined;
3379
3487
  storage?: {
3380
3488
  session?: {
3381
- driver: "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";
3489
+ driver: "redis" | "memory" | "azureAppConfiguration" | "azureCosmos" | "azureKeyVault" | "azureStorageBlob" | "azureStorageTable" | "cloudflareKVBinding" | "cloudflareKVHTTP" | "cloudflareR2Binding" | "fs" | "fsLite" | "github" | "http" | "indexedb" | "localStorage" | "lruCache" | "mongodb" | "netlifyBlobs" | "overlay" | "planetscale" | "sessionStorage" | "vercelKV" | "cloudflare-kv-binding" | "cloudflare-kv-http";
3382
3490
  ttl?: number | undefined;
3383
3491
  port?: number | undefined;
3384
3492
  host?: string | undefined;
@@ -3390,7 +3498,7 @@ export declare const RuntimeConfigSchema: z.ZodObject<{
3390
3498
  tls?: boolean | undefined;
3391
3499
  } | undefined;
3392
3500
  cache?: {
3393
- driver: "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";
3501
+ driver: "redis" | "memory" | "azureAppConfiguration" | "azureCosmos" | "azureKeyVault" | "azureStorageBlob" | "azureStorageTable" | "cloudflareKVBinding" | "cloudflareKVHTTP" | "cloudflareR2Binding" | "fs" | "fsLite" | "github" | "http" | "indexedb" | "localStorage" | "lruCache" | "mongodb" | "netlifyBlobs" | "overlay" | "planetscale" | "sessionStorage" | "vercelKV" | "cloudflare-kv-binding" | "cloudflare-kv-http";
3394
3502
  ttl?: number | undefined;
3395
3503
  port?: number | undefined;
3396
3504
  host?: string | undefined;