@scayle/storefront-nuxt 7.80.0 → 7.81.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -23,13 +23,13 @@ declare const RedisConfigSchema: z.ZodUnion<[z.ZodObject<{
23
23
  prefix: z.ZodOptional<z.ZodString>;
24
24
  sslTransit: z.ZodOptional<z.ZodBoolean>;
25
25
  }, "strip", z.ZodTypeAny, {
26
- host?: string | undefined;
27
26
  port?: number | undefined;
27
+ host?: string | undefined;
28
28
  prefix?: string | undefined;
29
29
  sslTransit?: boolean | undefined;
30
30
  }, {
31
- host?: string | undefined;
32
31
  port?: number | undefined;
32
+ host?: string | undefined;
33
33
  prefix?: string | undefined;
34
34
  sslTransit?: boolean | undefined;
35
35
  }>, z.ZodObject<{
@@ -42,15 +42,15 @@ declare const RedisConfigSchema: z.ZodUnion<[z.ZodObject<{
42
42
  }, "strip", z.ZodTypeAny, {
43
43
  user: string;
44
44
  password: string;
45
- host?: string | undefined;
46
45
  port?: number | undefined;
46
+ host?: string | undefined;
47
47
  prefix?: string | undefined;
48
48
  sslTransit?: boolean | undefined;
49
49
  }, {
50
50
  user: string;
51
51
  password: string;
52
- host?: string | undefined;
53
52
  port?: number | undefined;
53
+ host?: string | undefined;
54
54
  prefix?: string | undefined;
55
55
  sslTransit?: boolean | undefined;
56
56
  }>]>;
@@ -77,27 +77,27 @@ declare const SessionSchema: z.ZodObject<{
77
77
  */
78
78
  domain: z.ZodOptional<z.ZodString>;
79
79
  }, "strip", z.ZodTypeAny, {
80
- domain?: string | undefined;
81
- secret?: string | string[] | undefined;
82
80
  sameSite?: "lax" | "strict" | "none" | undefined;
83
81
  maxAge?: number | undefined;
84
82
  cookieName?: string | undefined;
85
- }, {
86
- domain?: string | undefined;
87
83
  secret?: string | string[] | undefined;
84
+ domain?: string | undefined;
85
+ }, {
88
86
  sameSite?: "lax" | "strict" | "none" | undefined;
89
87
  maxAge?: number | undefined;
90
88
  cookieName?: string | undefined;
89
+ secret?: string | string[] | undefined;
90
+ domain?: string | undefined;
91
91
  }>;
92
92
  declare const BapiSchema: z.ZodObject<{
93
93
  host: z.ZodString;
94
94
  token: z.ZodString;
95
95
  }, "strip", z.ZodTypeAny, {
96
- token: string;
97
96
  host: string;
98
- }, {
99
97
  token: string;
98
+ }, {
100
99
  host: string;
100
+ token: string;
101
101
  }>;
102
102
  declare const IdpSchema: z.ZodObject<{
103
103
  enabled: z.ZodBoolean;
@@ -125,24 +125,24 @@ declare const StorageSchema: z.ZodObject<{
125
125
  ttl: z.ZodOptional<z.ZodNumber>;
126
126
  }, "strip", z.ZodTypeAny, {
127
127
  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";
128
- url?: string | undefined;
129
- token?: string | undefined;
128
+ port?: number | undefined;
130
129
  host?: string | undefined;
130
+ password?: string | undefined;
131
+ token?: string | undefined;
131
132
  compression?: "none" | "deflate" | "gzip" | "brotli" | undefined;
132
- port?: number | undefined;
133
+ url?: string | undefined;
133
134
  username?: string | undefined;
134
- password?: string | undefined;
135
135
  tls?: boolean | undefined;
136
136
  ttl?: number | undefined;
137
137
  }, {
138
138
  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";
139
- url?: string | undefined;
140
- token?: string | undefined;
139
+ port?: number | undefined;
141
140
  host?: string | undefined;
141
+ password?: string | undefined;
142
+ token?: string | undefined;
142
143
  compression?: "none" | "deflate" | "gzip" | "brotli" | undefined;
143
- port?: number | undefined;
144
+ url?: string | undefined;
144
145
  username?: string | undefined;
145
- password?: string | undefined;
146
146
  tls?: boolean | undefined;
147
147
  ttl?: number | undefined;
148
148
  }>;
@@ -153,16 +153,16 @@ declare const CheckoutShopConfigSchema: z.ZodObject<{
153
153
  user: z.ZodUnion<[z.ZodString, z.ZodNumber]>;
154
154
  cbdExpiration: z.ZodOptional<z.ZodNumber>;
155
155
  }, "strip", z.ZodTypeAny, {
156
- token: string;
157
- secret: string;
158
156
  host: string;
159
157
  user: string | number;
158
+ secret: string;
159
+ token: string;
160
160
  cbdExpiration?: number | undefined;
161
161
  }, {
162
- token: string;
163
- secret: string;
164
162
  host: string;
165
163
  user: string | number;
164
+ secret: string;
165
+ token: string;
166
166
  cbdExpiration?: number | undefined;
167
167
  }>;
168
168
  declare const ShopConfigSchema: z.ZodObject<{
@@ -200,16 +200,16 @@ declare const ShopConfigSchema: z.ZodObject<{
200
200
  user: z.ZodUnion<[z.ZodString, z.ZodNumber]>;
201
201
  cbdExpiration: z.ZodOptional<z.ZodNumber>;
202
202
  }, "strip", z.ZodTypeAny, {
203
- token: string;
204
- secret: string;
205
203
  host: string;
206
204
  user: string | number;
205
+ secret: string;
206
+ token: string;
207
207
  cbdExpiration?: number | undefined;
208
208
  }, {
209
- token: string;
210
- secret: string;
211
209
  host: string;
212
210
  user: string | number;
211
+ secret: string;
212
+ token: string;
213
213
  cbdExpiration?: number | undefined;
214
214
  }>;
215
215
  appKeys: z.ZodOptional<z.ZodObject<{
@@ -250,27 +250,27 @@ declare const ShopConfigSchema: z.ZodObject<{
250
250
  */
251
251
  domain: z.ZodOptional<z.ZodString>;
252
252
  }, "strip", z.ZodTypeAny, {
253
- domain?: string | undefined;
254
- secret?: string | string[] | undefined;
255
253
  sameSite?: "lax" | "strict" | "none" | undefined;
256
254
  maxAge?: number | undefined;
257
255
  cookieName?: string | undefined;
258
- }, {
259
- domain?: string | undefined;
260
256
  secret?: string | string[] | undefined;
257
+ domain?: string | undefined;
258
+ }, {
261
259
  sameSite?: "lax" | "strict" | "none" | undefined;
262
260
  maxAge?: number | undefined;
263
261
  cookieName?: string | undefined;
262
+ secret?: string | string[] | undefined;
263
+ domain?: string | undefined;
264
264
  }>>;
265
265
  bapi: z.ZodOptional<z.ZodObject<{
266
266
  host: z.ZodString;
267
267
  token: z.ZodString;
268
268
  }, "strip", z.ZodTypeAny, {
269
- token: string;
270
269
  host: string;
271
- }, {
272
270
  token: string;
271
+ }, {
273
272
  host: string;
273
+ token: string;
274
274
  }>>;
275
275
  storage: z.ZodOptional<z.ZodObject<{
276
276
  session: z.ZodOptional<z.ZodObject<{
@@ -286,24 +286,24 @@ declare const ShopConfigSchema: z.ZodObject<{
286
286
  ttl: z.ZodOptional<z.ZodNumber>;
287
287
  }, "strip", z.ZodTypeAny, {
288
288
  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";
289
- url?: string | undefined;
290
- token?: string | undefined;
289
+ port?: number | undefined;
291
290
  host?: string | undefined;
291
+ password?: string | undefined;
292
+ token?: string | undefined;
292
293
  compression?: "none" | "deflate" | "gzip" | "brotli" | undefined;
293
- port?: number | undefined;
294
+ url?: string | undefined;
294
295
  username?: string | undefined;
295
- password?: string | undefined;
296
296
  tls?: boolean | undefined;
297
297
  ttl?: number | undefined;
298
298
  }, {
299
299
  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";
300
- url?: string | undefined;
301
- token?: string | undefined;
300
+ port?: number | undefined;
302
301
  host?: string | undefined;
302
+ password?: string | undefined;
303
+ token?: string | undefined;
303
304
  compression?: "none" | "deflate" | "gzip" | "brotli" | undefined;
304
- port?: number | undefined;
305
+ url?: string | undefined;
305
306
  username?: string | undefined;
306
- password?: string | undefined;
307
307
  tls?: boolean | undefined;
308
308
  ttl?: number | undefined;
309
309
  }>>;
@@ -320,74 +320,74 @@ declare const ShopConfigSchema: z.ZodObject<{
320
320
  ttl: z.ZodOptional<z.ZodNumber>;
321
321
  }, "strip", z.ZodTypeAny, {
322
322
  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";
323
- url?: string | undefined;
324
- token?: string | undefined;
323
+ port?: number | undefined;
325
324
  host?: string | undefined;
325
+ password?: string | undefined;
326
+ token?: string | undefined;
326
327
  compression?: "none" | "deflate" | "gzip" | "brotli" | undefined;
327
- port?: number | undefined;
328
+ url?: string | undefined;
328
329
  username?: string | undefined;
329
- password?: string | undefined;
330
330
  tls?: boolean | undefined;
331
331
  ttl?: number | undefined;
332
332
  }, {
333
333
  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";
334
- url?: string | undefined;
335
- token?: string | undefined;
334
+ port?: number | undefined;
336
335
  host?: string | undefined;
336
+ password?: string | undefined;
337
+ token?: string | undefined;
337
338
  compression?: "none" | "deflate" | "gzip" | "brotli" | undefined;
338
- port?: number | undefined;
339
+ url?: string | undefined;
339
340
  username?: string | undefined;
340
- password?: string | undefined;
341
341
  tls?: boolean | undefined;
342
342
  ttl?: number | undefined;
343
343
  }>>;
344
344
  }, "strip", z.ZodTypeAny, {
345
345
  session?: {
346
346
  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
- url?: string | undefined;
348
- token?: string | undefined;
347
+ port?: number | undefined;
349
348
  host?: string | undefined;
349
+ password?: string | undefined;
350
+ token?: string | undefined;
350
351
  compression?: "none" | "deflate" | "gzip" | "brotli" | undefined;
351
- port?: number | undefined;
352
+ url?: string | undefined;
352
353
  username?: string | undefined;
353
- password?: string | undefined;
354
354
  tls?: boolean | undefined;
355
355
  ttl?: number | undefined;
356
356
  } | undefined;
357
357
  cache?: {
358
358
  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";
359
- url?: string | undefined;
360
- token?: string | undefined;
359
+ port?: number | undefined;
361
360
  host?: string | undefined;
361
+ password?: string | undefined;
362
+ token?: string | undefined;
362
363
  compression?: "none" | "deflate" | "gzip" | "brotli" | undefined;
363
- port?: number | undefined;
364
+ url?: string | undefined;
364
365
  username?: string | undefined;
365
- password?: string | undefined;
366
366
  tls?: boolean | undefined;
367
367
  ttl?: number | undefined;
368
368
  } | undefined;
369
369
  }, {
370
370
  session?: {
371
371
  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";
372
- url?: string | undefined;
373
- token?: string | undefined;
372
+ port?: number | undefined;
374
373
  host?: string | undefined;
374
+ password?: string | undefined;
375
+ token?: string | undefined;
375
376
  compression?: "none" | "deflate" | "gzip" | "brotli" | undefined;
376
- port?: number | undefined;
377
+ url?: string | undefined;
377
378
  username?: string | undefined;
378
- password?: string | undefined;
379
379
  tls?: boolean | undefined;
380
380
  ttl?: number | undefined;
381
381
  } | undefined;
382
382
  cache?: {
383
383
  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";
384
- url?: string | undefined;
385
- token?: string | undefined;
384
+ port?: number | undefined;
386
385
  host?: string | undefined;
386
+ password?: string | undefined;
387
+ token?: string | undefined;
387
388
  compression?: "none" | "deflate" | "gzip" | "brotli" | undefined;
388
- port?: number | undefined;
389
+ url?: string | undefined;
389
390
  username?: string | undefined;
390
- password?: string | undefined;
391
391
  tls?: boolean | undefined;
392
392
  ttl?: number | undefined;
393
393
  } | undefined;
@@ -400,13 +400,13 @@ declare const ShopConfigSchema: z.ZodObject<{
400
400
  prefix: z.ZodOptional<z.ZodString>;
401
401
  sslTransit: z.ZodOptional<z.ZodBoolean>;
402
402
  }, "strip", z.ZodTypeAny, {
403
- host?: string | undefined;
404
403
  port?: number | undefined;
404
+ host?: string | undefined;
405
405
  prefix?: string | undefined;
406
406
  sslTransit?: boolean | undefined;
407
407
  }, {
408
- host?: string | undefined;
409
408
  port?: number | undefined;
409
+ host?: string | undefined;
410
410
  prefix?: string | undefined;
411
411
  sslTransit?: boolean | undefined;
412
412
  }>, z.ZodObject<{
@@ -419,15 +419,15 @@ declare const ShopConfigSchema: z.ZodObject<{
419
419
  }, "strip", z.ZodTypeAny, {
420
420
  user: string;
421
421
  password: string;
422
- host?: string | undefined;
423
422
  port?: number | undefined;
423
+ host?: string | undefined;
424
424
  prefix?: string | undefined;
425
425
  sslTransit?: boolean | undefined;
426
426
  }, {
427
427
  user: string;
428
428
  password: string;
429
- host?: string | undefined;
430
429
  port?: number | undefined;
430
+ host?: string | undefined;
431
431
  prefix?: string | undefined;
432
432
  sslTransit?: boolean | undefined;
433
433
  }>]>>;
@@ -439,20 +439,33 @@ declare const ShopConfigSchema: z.ZodObject<{
439
439
  };
440
440
  currency: string;
441
441
  checkout: {
442
- token: string;
443
- secret: string;
444
442
  host: string;
445
443
  user: string | number;
444
+ secret: string;
445
+ token: string;
446
446
  cbdExpiration?: number | undefined;
447
447
  };
448
448
  path?: string | string[] | undefined;
449
+ domain?: string | undefined;
450
+ redis?: {
451
+ port?: number | undefined;
452
+ host?: string | undefined;
453
+ prefix?: string | undefined;
454
+ sslTransit?: boolean | undefined;
455
+ } | {
456
+ user: string;
457
+ password: string;
458
+ port?: number | undefined;
459
+ host?: string | undefined;
460
+ prefix?: string | undefined;
461
+ sslTransit?: boolean | undefined;
462
+ } | undefined;
449
463
  idp?: {
450
464
  enabled: boolean;
451
465
  idpKeys: string[];
452
466
  idpRedirectURL: string;
453
467
  } | undefined;
454
468
  apiBasePath?: string | undefined;
455
- domain?: string | undefined;
456
469
  storeCampaignKeyword?: string | undefined;
457
470
  appKeys?: {
458
471
  wishlistKey: string;
@@ -462,51 +475,38 @@ declare const ShopConfigSchema: z.ZodObject<{
462
475
  currencyFractionDigits?: number | undefined;
463
476
  isEnabled?: boolean | undefined;
464
477
  sessionConfig?: {
465
- domain?: string | undefined;
466
- secret?: string | string[] | undefined;
467
478
  sameSite?: "lax" | "strict" | "none" | undefined;
468
479
  maxAge?: number | undefined;
469
480
  cookieName?: string | undefined;
481
+ secret?: string | string[] | undefined;
482
+ domain?: string | undefined;
470
483
  } | undefined;
471
484
  bapi?: {
472
- token: string;
473
485
  host: string;
474
- } | undefined;
475
- redis?: {
476
- host?: string | undefined;
477
- port?: number | undefined;
478
- prefix?: string | undefined;
479
- sslTransit?: boolean | undefined;
480
- } | {
481
- user: string;
482
- password: string;
483
- host?: string | undefined;
484
- port?: number | undefined;
485
- prefix?: string | undefined;
486
- sslTransit?: boolean | undefined;
486
+ token: string;
487
487
  } | undefined;
488
488
  storage?: {
489
489
  session?: {
490
490
  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";
491
- url?: string | undefined;
492
- token?: string | undefined;
491
+ port?: number | undefined;
493
492
  host?: string | undefined;
493
+ password?: string | undefined;
494
+ token?: string | undefined;
494
495
  compression?: "none" | "deflate" | "gzip" | "brotli" | undefined;
495
- port?: number | undefined;
496
+ url?: string | undefined;
496
497
  username?: string | undefined;
497
- password?: string | undefined;
498
498
  tls?: boolean | undefined;
499
499
  ttl?: number | undefined;
500
500
  } | undefined;
501
501
  cache?: {
502
502
  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";
503
- url?: string | undefined;
504
- token?: string | undefined;
503
+ port?: number | undefined;
505
504
  host?: string | undefined;
505
+ password?: string | undefined;
506
+ token?: string | undefined;
506
507
  compression?: "none" | "deflate" | "gzip" | "brotli" | undefined;
507
- port?: number | undefined;
508
+ url?: string | undefined;
508
509
  username?: string | undefined;
509
- password?: string | undefined;
510
510
  tls?: boolean | undefined;
511
511
  ttl?: number | undefined;
512
512
  } | undefined;
@@ -520,20 +520,33 @@ declare const ShopConfigSchema: z.ZodObject<{
520
520
  };
521
521
  currency: string;
522
522
  checkout: {
523
- token: string;
524
- secret: string;
525
523
  host: string;
526
524
  user: string | number;
525
+ secret: string;
526
+ token: string;
527
527
  cbdExpiration?: number | undefined;
528
528
  };
529
529
  path?: string | string[] | undefined;
530
+ domain?: string | undefined;
531
+ redis?: {
532
+ port?: number | undefined;
533
+ host?: string | undefined;
534
+ prefix?: string | undefined;
535
+ sslTransit?: boolean | undefined;
536
+ } | {
537
+ user: string;
538
+ password: string;
539
+ port?: number | undefined;
540
+ host?: string | undefined;
541
+ prefix?: string | undefined;
542
+ sslTransit?: boolean | undefined;
543
+ } | undefined;
530
544
  idp?: {
531
545
  enabled: boolean;
532
546
  idpKeys: string[];
533
547
  idpRedirectURL: string;
534
548
  } | undefined;
535
549
  apiBasePath?: string | undefined;
536
- domain?: string | undefined;
537
550
  storeCampaignKeyword?: string | undefined;
538
551
  appKeys?: {
539
552
  wishlistKey: string;
@@ -543,51 +556,38 @@ declare const ShopConfigSchema: z.ZodObject<{
543
556
  currencyFractionDigits?: number | undefined;
544
557
  isEnabled?: boolean | undefined;
545
558
  sessionConfig?: {
546
- domain?: string | undefined;
547
- secret?: string | string[] | undefined;
548
559
  sameSite?: "lax" | "strict" | "none" | undefined;
549
560
  maxAge?: number | undefined;
550
561
  cookieName?: string | undefined;
562
+ secret?: string | string[] | undefined;
563
+ domain?: string | undefined;
551
564
  } | undefined;
552
565
  bapi?: {
553
- token: string;
554
566
  host: string;
555
- } | undefined;
556
- redis?: {
557
- host?: string | undefined;
558
- port?: number | undefined;
559
- prefix?: string | undefined;
560
- sslTransit?: boolean | undefined;
561
- } | {
562
- user: string;
563
- password: string;
564
- host?: string | undefined;
565
- port?: number | undefined;
566
- prefix?: string | undefined;
567
- sslTransit?: boolean | undefined;
567
+ token: string;
568
568
  } | undefined;
569
569
  storage?: {
570
570
  session?: {
571
571
  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";
572
- url?: string | undefined;
573
- token?: string | undefined;
572
+ port?: number | undefined;
574
573
  host?: string | undefined;
574
+ password?: string | undefined;
575
+ token?: string | undefined;
575
576
  compression?: "none" | "deflate" | "gzip" | "brotli" | undefined;
576
- port?: number | undefined;
577
+ url?: string | undefined;
577
578
  username?: string | undefined;
578
- password?: string | undefined;
579
579
  tls?: boolean | undefined;
580
580
  ttl?: number | undefined;
581
581
  } | undefined;
582
582
  cache?: {
583
583
  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";
584
- url?: string | undefined;
585
- token?: string | undefined;
584
+ port?: number | undefined;
586
585
  host?: string | undefined;
586
+ password?: string | undefined;
587
+ token?: string | undefined;
587
588
  compression?: "none" | "deflate" | "gzip" | "brotli" | undefined;
588
- port?: number | undefined;
589
+ url?: string | undefined;
589
590
  username?: string | undefined;
590
- password?: string | undefined;
591
591
  tls?: boolean | undefined;
592
592
  ttl?: number | undefined;
593
593
  } | undefined;
@@ -620,27 +620,27 @@ declare const StorefrontConfigSchema: z.ZodObject<{
620
620
  */
621
621
  domain: z.ZodOptional<z.ZodString>;
622
622
  }, "strip", z.ZodTypeAny, {
623
- domain?: string | undefined;
624
- secret?: string | string[] | undefined;
625
623
  sameSite?: "lax" | "strict" | "none" | undefined;
626
624
  maxAge?: number | undefined;
627
625
  cookieName?: string | undefined;
628
- }, {
629
- domain?: string | undefined;
630
626
  secret?: string | string[] | undefined;
627
+ domain?: string | undefined;
628
+ }, {
631
629
  sameSite?: "lax" | "strict" | "none" | undefined;
632
630
  maxAge?: number | undefined;
633
631
  cookieName?: string | undefined;
632
+ secret?: string | string[] | undefined;
633
+ domain?: string | undefined;
634
634
  }>>;
635
635
  bapi: z.ZodObject<{
636
636
  host: z.ZodString;
637
637
  token: z.ZodString;
638
638
  }, "strip", z.ZodTypeAny, {
639
- token: string;
640
639
  host: string;
641
- }, {
642
640
  token: string;
641
+ }, {
643
642
  host: string;
643
+ token: string;
644
644
  }>;
645
645
  storage: z.ZodOptional<z.ZodObject<{
646
646
  session: z.ZodOptional<z.ZodObject<{
@@ -656,24 +656,24 @@ declare const StorefrontConfigSchema: z.ZodObject<{
656
656
  ttl: z.ZodOptional<z.ZodNumber>;
657
657
  }, "strip", z.ZodTypeAny, {
658
658
  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";
659
- url?: string | undefined;
660
- token?: string | undefined;
659
+ port?: number | undefined;
661
660
  host?: string | undefined;
661
+ password?: string | undefined;
662
+ token?: string | undefined;
662
663
  compression?: "none" | "deflate" | "gzip" | "brotli" | undefined;
663
- port?: number | undefined;
664
+ url?: string | undefined;
664
665
  username?: string | undefined;
665
- password?: string | undefined;
666
666
  tls?: boolean | undefined;
667
667
  ttl?: number | undefined;
668
668
  }, {
669
669
  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";
670
- url?: string | undefined;
671
- token?: string | undefined;
670
+ port?: number | undefined;
672
671
  host?: string | undefined;
672
+ password?: string | undefined;
673
+ token?: string | undefined;
673
674
  compression?: "none" | "deflate" | "gzip" | "brotli" | undefined;
674
- port?: number | undefined;
675
+ url?: string | undefined;
675
676
  username?: string | undefined;
676
- password?: string | undefined;
677
677
  tls?: boolean | undefined;
678
678
  ttl?: number | undefined;
679
679
  }>>;
@@ -690,74 +690,74 @@ declare const StorefrontConfigSchema: z.ZodObject<{
690
690
  ttl: z.ZodOptional<z.ZodNumber>;
691
691
  }, "strip", z.ZodTypeAny, {
692
692
  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";
693
- url?: string | undefined;
694
- token?: string | undefined;
693
+ port?: number | undefined;
695
694
  host?: string | undefined;
695
+ password?: string | undefined;
696
+ token?: string | undefined;
696
697
  compression?: "none" | "deflate" | "gzip" | "brotli" | undefined;
697
- port?: number | undefined;
698
+ url?: string | undefined;
698
699
  username?: string | undefined;
699
- password?: string | undefined;
700
700
  tls?: boolean | undefined;
701
701
  ttl?: number | undefined;
702
702
  }, {
703
703
  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";
704
- url?: string | undefined;
705
- token?: string | undefined;
704
+ port?: number | undefined;
706
705
  host?: string | undefined;
706
+ password?: string | undefined;
707
+ token?: string | undefined;
707
708
  compression?: "none" | "deflate" | "gzip" | "brotli" | undefined;
708
- port?: number | undefined;
709
+ url?: string | undefined;
709
710
  username?: string | undefined;
710
- password?: string | undefined;
711
711
  tls?: boolean | undefined;
712
712
  ttl?: number | undefined;
713
713
  }>>;
714
714
  }, "strip", z.ZodTypeAny, {
715
715
  session?: {
716
716
  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";
717
- url?: string | undefined;
718
- token?: string | undefined;
717
+ port?: number | undefined;
719
718
  host?: string | undefined;
719
+ password?: string | undefined;
720
+ token?: string | undefined;
720
721
  compression?: "none" | "deflate" | "gzip" | "brotli" | undefined;
721
- port?: number | undefined;
722
+ url?: string | undefined;
722
723
  username?: string | undefined;
723
- password?: string | undefined;
724
724
  tls?: boolean | undefined;
725
725
  ttl?: number | undefined;
726
726
  } | undefined;
727
727
  cache?: {
728
728
  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";
729
- url?: string | undefined;
730
- token?: string | undefined;
729
+ port?: number | undefined;
731
730
  host?: string | undefined;
731
+ password?: string | undefined;
732
+ token?: string | undefined;
732
733
  compression?: "none" | "deflate" | "gzip" | "brotli" | undefined;
733
- port?: number | undefined;
734
+ url?: string | undefined;
734
735
  username?: string | undefined;
735
- password?: string | undefined;
736
736
  tls?: boolean | undefined;
737
737
  ttl?: number | undefined;
738
738
  } | undefined;
739
739
  }, {
740
740
  session?: {
741
741
  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";
742
- url?: string | undefined;
743
- token?: string | undefined;
742
+ port?: number | undefined;
744
743
  host?: string | undefined;
744
+ password?: string | undefined;
745
+ token?: string | undefined;
745
746
  compression?: "none" | "deflate" | "gzip" | "brotli" | undefined;
746
- port?: number | undefined;
747
+ url?: string | undefined;
747
748
  username?: string | undefined;
748
- password?: string | undefined;
749
749
  tls?: boolean | undefined;
750
750
  ttl?: number | undefined;
751
751
  } | undefined;
752
752
  cache?: {
753
753
  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
- url?: string | undefined;
755
- token?: string | undefined;
754
+ port?: number | undefined;
756
755
  host?: string | undefined;
756
+ password?: string | undefined;
757
+ token?: string | undefined;
757
758
  compression?: "none" | "deflate" | "gzip" | "brotli" | undefined;
758
- port?: number | undefined;
759
+ url?: string | undefined;
759
760
  username?: string | undefined;
760
- password?: string | undefined;
761
761
  tls?: boolean | undefined;
762
762
  ttl?: number | undefined;
763
763
  } | undefined;
@@ -794,27 +794,27 @@ declare const StorefrontConfigSchema: z.ZodObject<{
794
794
  username: z.ZodString;
795
795
  password: z.ZodString;
796
796
  }, "strip", z.ZodTypeAny, {
797
- username: string;
798
797
  password: string;
799
- }, {
800
798
  username: string;
799
+ }, {
801
800
  password: string;
801
+ username: string;
802
802
  }>;
803
803
  enabled: z.ZodOptional<z.ZodBoolean>;
804
804
  }, "strip", z.ZodTypeAny, {
805
805
  auth: {
806
- username: string;
807
806
  password: string;
807
+ username: string;
808
808
  };
809
809
  enabled?: boolean | undefined;
810
810
  }, {
811
811
  auth: {
812
- username: string;
813
812
  password: string;
813
+ username: string;
814
814
  };
815
815
  enabled?: boolean | undefined;
816
816
  }>>;
817
- publicShopData: z.ZodOptional<z.ZodArray<z.ZodType<("shopId" | "locale" | "auth" | "currency" | "checkout") | ("path" | "idp" | "apiBasePath" | "domain" | "storeCampaignKeyword" | "appKeys" | "currencyFractionDigits" | "isEnabled" | "sessionConfig" | "bapi" | "redis" | "storage" | "isDefault"), z.ZodTypeDef, ("shopId" | "locale" | "auth" | "currency" | "checkout") | ("path" | "idp" | "apiBasePath" | "domain" | "storeCampaignKeyword" | "appKeys" | "currencyFractionDigits" | "isEnabled" | "sessionConfig" | "bapi" | "redis" | "storage" | "isDefault")>, "many">>;
817
+ publicShopData: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
818
818
  idp: z.ZodOptional<z.ZodObject<{
819
819
  enabled: z.ZodBoolean;
820
820
  idpKeys: z.ZodArray<z.ZodString, "many">;
@@ -835,13 +835,13 @@ declare const StorefrontConfigSchema: z.ZodObject<{
835
835
  prefix: z.ZodOptional<z.ZodString>;
836
836
  sslTransit: z.ZodOptional<z.ZodBoolean>;
837
837
  }, "strip", z.ZodTypeAny, {
838
- host?: string | undefined;
839
838
  port?: number | undefined;
839
+ host?: string | undefined;
840
840
  prefix?: string | undefined;
841
841
  sslTransit?: boolean | undefined;
842
842
  }, {
843
- host?: string | undefined;
844
843
  port?: number | undefined;
844
+ host?: string | undefined;
845
845
  prefix?: string | undefined;
846
846
  sslTransit?: boolean | undefined;
847
847
  }>, z.ZodObject<{
@@ -854,15 +854,15 @@ declare const StorefrontConfigSchema: z.ZodObject<{
854
854
  }, "strip", z.ZodTypeAny, {
855
855
  user: string;
856
856
  password: string;
857
- host?: string | undefined;
858
857
  port?: number | undefined;
858
+ host?: string | undefined;
859
859
  prefix?: string | undefined;
860
860
  sslTransit?: boolean | undefined;
861
861
  }, {
862
862
  user: string;
863
863
  password: string;
864
- host?: string | undefined;
865
864
  port?: number | undefined;
865
+ host?: string | undefined;
866
866
  prefix?: string | undefined;
867
867
  sslTransit?: boolean | undefined;
868
868
  }>]>>;
@@ -873,74 +873,74 @@ declare const StorefrontConfigSchema: z.ZodObject<{
873
873
  hashAlgorithm: string;
874
874
  };
875
875
  bapi: {
876
- token: string;
877
876
  host: string;
877
+ token: string;
878
878
  };
879
879
  oauth: {
880
880
  apiHost: string;
881
881
  clientId: string | number;
882
882
  clientSecret: string;
883
883
  };
884
- idp?: {
885
- enabled: boolean;
886
- idpKeys: string[];
887
- idpRedirectURL: string;
888
- } | undefined;
889
- apiBasePath?: string | undefined;
890
884
  redis?: {
891
- host?: string | undefined;
892
885
  port?: number | undefined;
886
+ host?: string | undefined;
893
887
  prefix?: string | undefined;
894
888
  sslTransit?: boolean | undefined;
895
889
  } | {
896
890
  user: string;
897
891
  password: string;
898
- host?: string | undefined;
899
892
  port?: number | undefined;
893
+ host?: string | undefined;
900
894
  prefix?: string | undefined;
901
895
  sslTransit?: boolean | undefined;
902
896
  } | undefined;
897
+ idp?: {
898
+ enabled: boolean;
899
+ idpKeys: string[];
900
+ idpRedirectURL: string;
901
+ } | undefined;
902
+ apiBasePath?: string | undefined;
903
903
  session?: {
904
- domain?: string | undefined;
905
- secret?: string | string[] | undefined;
906
904
  sameSite?: "lax" | "strict" | "none" | undefined;
907
905
  maxAge?: number | undefined;
908
906
  cookieName?: string | undefined;
907
+ secret?: string | string[] | undefined;
908
+ domain?: string | undefined;
909
909
  } | undefined;
910
910
  cache?: {
911
911
  auth: {
912
- username: string;
913
912
  password: string;
913
+ username: string;
914
914
  };
915
915
  enabled?: boolean | undefined;
916
916
  } | undefined;
917
917
  storage?: {
918
918
  session?: {
919
919
  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";
920
- url?: string | undefined;
921
- token?: string | undefined;
920
+ port?: number | undefined;
922
921
  host?: string | undefined;
922
+ password?: string | undefined;
923
+ token?: string | undefined;
923
924
  compression?: "none" | "deflate" | "gzip" | "brotli" | undefined;
924
- port?: number | undefined;
925
+ url?: string | undefined;
925
926
  username?: string | undefined;
926
- password?: string | undefined;
927
927
  tls?: boolean | undefined;
928
928
  ttl?: number | undefined;
929
929
  } | undefined;
930
930
  cache?: {
931
931
  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";
932
- url?: string | undefined;
933
- token?: string | undefined;
932
+ port?: number | undefined;
934
933
  host?: string | undefined;
934
+ password?: string | undefined;
935
+ token?: string | undefined;
935
936
  compression?: "none" | "deflate" | "gzip" | "brotli" | undefined;
936
- port?: number | undefined;
937
+ url?: string | undefined;
937
938
  username?: string | undefined;
938
- password?: string | undefined;
939
939
  tls?: boolean | undefined;
940
940
  ttl?: number | undefined;
941
941
  } | undefined;
942
942
  } | undefined;
943
- publicShopData?: (("shopId" | "locale" | "auth" | "currency" | "checkout") | ("path" | "idp" | "apiBasePath" | "domain" | "storeCampaignKeyword" | "appKeys" | "currencyFractionDigits" | "isEnabled" | "sessionConfig" | "bapi" | "redis" | "storage" | "isDefault"))[] | undefined;
943
+ publicShopData?: string[] | undefined;
944
944
  }, {
945
945
  appKeys: {
946
946
  wishlistKey: string;
@@ -948,95 +948,95 @@ declare const StorefrontConfigSchema: z.ZodObject<{
948
948
  hashAlgorithm: string;
949
949
  };
950
950
  bapi: {
951
- token: string;
952
951
  host: string;
952
+ token: string;
953
953
  };
954
954
  oauth: {
955
955
  apiHost: string;
956
956
  clientId: string | number;
957
957
  clientSecret: string;
958
958
  };
959
- idp?: {
960
- enabled: boolean;
961
- idpKeys: string[];
962
- idpRedirectURL: string;
963
- } | undefined;
964
- apiBasePath?: string | undefined;
965
959
  redis?: {
966
- host?: string | undefined;
967
960
  port?: number | undefined;
961
+ host?: string | undefined;
968
962
  prefix?: string | undefined;
969
963
  sslTransit?: boolean | undefined;
970
964
  } | {
971
965
  user: string;
972
966
  password: string;
973
- host?: string | undefined;
974
967
  port?: number | undefined;
968
+ host?: string | undefined;
975
969
  prefix?: string | undefined;
976
970
  sslTransit?: boolean | undefined;
977
971
  } | undefined;
972
+ idp?: {
973
+ enabled: boolean;
974
+ idpKeys: string[];
975
+ idpRedirectURL: string;
976
+ } | undefined;
977
+ apiBasePath?: string | undefined;
978
978
  session?: {
979
- domain?: string | undefined;
980
- secret?: string | string[] | undefined;
981
979
  sameSite?: "lax" | "strict" | "none" | undefined;
982
980
  maxAge?: number | undefined;
983
981
  cookieName?: string | undefined;
982
+ secret?: string | string[] | undefined;
983
+ domain?: string | undefined;
984
984
  } | undefined;
985
985
  cache?: {
986
986
  auth: {
987
- username: string;
988
987
  password: string;
988
+ username: string;
989
989
  };
990
990
  enabled?: boolean | undefined;
991
991
  } | undefined;
992
992
  storage?: {
993
993
  session?: {
994
994
  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";
995
- url?: string | undefined;
996
- token?: string | undefined;
995
+ port?: number | undefined;
997
996
  host?: string | undefined;
997
+ password?: string | undefined;
998
+ token?: string | undefined;
998
999
  compression?: "none" | "deflate" | "gzip" | "brotli" | undefined;
999
- port?: number | undefined;
1000
+ url?: string | undefined;
1000
1001
  username?: string | undefined;
1001
- password?: string | undefined;
1002
1002
  tls?: boolean | undefined;
1003
1003
  ttl?: number | undefined;
1004
1004
  } | undefined;
1005
1005
  cache?: {
1006
1006
  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";
1007
- url?: string | undefined;
1008
- token?: string | undefined;
1007
+ port?: number | undefined;
1009
1008
  host?: string | undefined;
1009
+ password?: string | undefined;
1010
+ token?: string | undefined;
1010
1011
  compression?: "none" | "deflate" | "gzip" | "brotli" | undefined;
1011
- port?: number | undefined;
1012
+ url?: string | undefined;
1012
1013
  username?: string | undefined;
1013
- password?: string | undefined;
1014
1014
  tls?: boolean | undefined;
1015
1015
  ttl?: number | undefined;
1016
1016
  } | undefined;
1017
1017
  } | undefined;
1018
- publicShopData?: (("shopId" | "locale" | "auth" | "currency" | "checkout") | ("path" | "idp" | "apiBasePath" | "domain" | "storeCampaignKeyword" | "appKeys" | "currencyFractionDigits" | "isEnabled" | "sessionConfig" | "bapi" | "redis" | "storage" | "isDefault"))[] | undefined;
1018
+ publicShopData?: string[] | undefined;
1019
1019
  }>;
1020
1020
  declare const PublicRuntimeConfigSchema: z.ZodObject<{
1021
1021
  log: z.ZodObject<{
1022
1022
  name: z.ZodString;
1023
1023
  level: z.ZodType<LogLevel, z.ZodTypeDef, LogLevel>;
1024
1024
  }, "strip", z.ZodTypeAny, {
1025
- level: LogLevel;
1026
1025
  name: string;
1027
- }, {
1028
1026
  level: LogLevel;
1027
+ }, {
1029
1028
  name: string;
1029
+ level: LogLevel;
1030
1030
  }>;
1031
1031
  }, "strip", z.ZodTypeAny, {
1032
1032
  log: {
1033
- level: LogLevel;
1034
1033
  name: string;
1034
+ level: LogLevel;
1035
1035
  };
1036
1036
  }, {
1037
1037
  log: {
1038
- level: LogLevel;
1039
1038
  name: string;
1039
+ level: LogLevel;
1040
1040
  };
1041
1041
  }>;
1042
1042
  type CheckoutShopConfigType = z.infer<typeof CheckoutShopConfigSchema>;