@scayle/storefront-nuxt 7.71.2 → 7.72.1

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.
@@ -0,0 +1,1170 @@
1
+ import { z } from 'zod';
2
+ export declare const runtimeConfigSchema: z.ZodObject<{
3
+ storefront: z.ZodObject<{
4
+ publicShopData: z.ZodArray<z.ZodString, "many">;
5
+ redirects: z.ZodOptional<z.ZodObject<{
6
+ enabled: z.ZodBoolean;
7
+ queryParamWhitelist: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
8
+ }, "strip", z.ZodTypeAny, {
9
+ enabled: boolean;
10
+ queryParamWhitelist?: string[] | undefined;
11
+ }, {
12
+ enabled: boolean;
13
+ queryParamWhitelist?: string[] | undefined;
14
+ }>>;
15
+ session: z.ZodOptional<z.ZodObject<{
16
+ sameSite: z.ZodOptional<z.ZodEnum<["lax", "strict", "none"]>>;
17
+ maxAge: z.ZodOptional<z.ZodNumber>;
18
+ cookieName: z.ZodOptional<z.ZodString>;
19
+ secret: z.ZodOptional<z.ZodString>;
20
+ domain: z.ZodOptional<z.ZodString>;
21
+ }, "strip", z.ZodTypeAny, {
22
+ domain?: string | undefined;
23
+ secret?: string | undefined;
24
+ cookieName?: string | undefined;
25
+ sameSite?: "none" | "lax" | "strict" | undefined;
26
+ maxAge?: number | undefined;
27
+ }, {
28
+ domain?: string | undefined;
29
+ secret?: string | undefined;
30
+ cookieName?: string | undefined;
31
+ sameSite?: "none" | "lax" | "strict" | undefined;
32
+ maxAge?: number | undefined;
33
+ }>>;
34
+ bapi: z.ZodObject<{
35
+ host: z.ZodString;
36
+ token: z.ZodString;
37
+ }, "strip", z.ZodTypeAny, {
38
+ host: string;
39
+ token: string;
40
+ }, {
41
+ host: string;
42
+ token: string;
43
+ }>;
44
+ oauth: z.ZodObject<{
45
+ apiHost: z.ZodString;
46
+ clientId: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
47
+ clientSecret: z.ZodString;
48
+ }, "strip", z.ZodTypeAny, {
49
+ apiHost: string;
50
+ clientId: string | number;
51
+ clientSecret: string;
52
+ }, {
53
+ apiHost: string;
54
+ clientId: string | number;
55
+ clientSecret: string;
56
+ }>;
57
+ idp: z.ZodOptional<z.ZodObject<{
58
+ enabled: z.ZodBoolean;
59
+ idpKeys: z.ZodArray<z.ZodString, "many">;
60
+ idpRedirectURL: z.ZodString;
61
+ }, "strip", z.ZodTypeAny, {
62
+ enabled: boolean;
63
+ idpRedirectURL: string;
64
+ idpKeys: string[];
65
+ }, {
66
+ enabled: boolean;
67
+ idpRedirectURL: string;
68
+ idpKeys: string[];
69
+ }>>;
70
+ shopSelector: z.ZodEnum<["path", "domain", "path_or_default"]>;
71
+ stores: z.ZodRecord<z.ZodString, z.ZodObject<{
72
+ idp: z.ZodOptional<z.ZodObject<{
73
+ enabled: z.ZodBoolean;
74
+ idpKeys: z.ZodArray<z.ZodString, "many">;
75
+ idpRedirectURL: z.ZodString;
76
+ }, "strip", z.ZodTypeAny, {
77
+ enabled: boolean;
78
+ idpRedirectURL: string;
79
+ idpKeys: string[];
80
+ }, {
81
+ enabled: boolean;
82
+ idpRedirectURL: string;
83
+ idpKeys: string[];
84
+ }>>;
85
+ shopId: z.ZodNumber;
86
+ path: z.ZodOptional<z.ZodString>;
87
+ apiBasePath: z.ZodOptional<z.ZodString>;
88
+ domain: z.ZodString;
89
+ locale: z.ZodString;
90
+ auth: z.ZodObject<{
91
+ resetPasswordUrl: z.ZodString;
92
+ }, "strip", z.ZodTypeAny, {
93
+ resetPasswordUrl: string;
94
+ }, {
95
+ resetPasswordUrl: string;
96
+ }>;
97
+ storeCampaignKeyword: z.ZodOptional<z.ZodString>;
98
+ currency: z.ZodString;
99
+ checkout: z.ZodObject<{
100
+ token: z.ZodString;
101
+ secret: z.ZodString;
102
+ host: z.ZodString;
103
+ user: z.ZodUnion<[z.ZodString, z.ZodNumber]>;
104
+ cbdExpiration: z.ZodOptional<z.ZodNumber>;
105
+ }, "strip", z.ZodTypeAny, {
106
+ user: string | number;
107
+ host: string;
108
+ token: string;
109
+ secret: string;
110
+ cbdExpiration?: number | undefined;
111
+ }, {
112
+ user: string | number;
113
+ host: string;
114
+ token: string;
115
+ secret: string;
116
+ cbdExpiration?: number | undefined;
117
+ }>;
118
+ appKeys: z.ZodOptional<z.ZodObject<{
119
+ wishlistKey: z.ZodString;
120
+ basketKey: z.ZodString;
121
+ hashAlgorithm: z.ZodEnum<[string, ...string[]]>;
122
+ }, "strip", z.ZodTypeAny, {
123
+ wishlistKey: string;
124
+ basketKey: string;
125
+ hashAlgorithm: string;
126
+ }, {
127
+ wishlistKey: string;
128
+ basketKey: string;
129
+ hashAlgorithm: string;
130
+ }>>;
131
+ currencyFractionDigits: z.ZodOptional<z.ZodString>;
132
+ isEnabled: z.ZodOptional<z.ZodBoolean>;
133
+ sessionConfig: z.ZodOptional<z.ZodObject<{
134
+ sameSite: z.ZodOptional<z.ZodEnum<["lax", "strict", "none"]>>;
135
+ maxAge: z.ZodOptional<z.ZodNumber>;
136
+ cookieName: z.ZodOptional<z.ZodString>;
137
+ secret: z.ZodOptional<z.ZodString>;
138
+ domain: z.ZodOptional<z.ZodString>;
139
+ }, "strip", z.ZodTypeAny, {
140
+ domain?: string | undefined;
141
+ secret?: string | undefined;
142
+ cookieName?: string | undefined;
143
+ sameSite?: "none" | "lax" | "strict" | undefined;
144
+ maxAge?: number | undefined;
145
+ }, {
146
+ domain?: string | undefined;
147
+ secret?: string | undefined;
148
+ cookieName?: string | undefined;
149
+ sameSite?: "none" | "lax" | "strict" | undefined;
150
+ maxAge?: number | undefined;
151
+ }>>;
152
+ bapi: z.ZodOptional<z.ZodObject<{
153
+ host: z.ZodString;
154
+ token: z.ZodString;
155
+ }, "strip", z.ZodTypeAny, {
156
+ host: string;
157
+ token: string;
158
+ }, {
159
+ host: string;
160
+ token: string;
161
+ }>>;
162
+ storage: z.ZodOptional<z.ZodObject<{
163
+ session: z.ZodObject<{
164
+ driver: z.ZodEnum<[string, ...string[]]>;
165
+ compression: z.ZodOptional<z.ZodEnum<["deflate", "gzip", "brotli", "none"]>>;
166
+ url: z.ZodOptional<z.ZodString>;
167
+ token: z.ZodOptional<z.ZodString>;
168
+ host: z.ZodOptional<z.ZodString>;
169
+ port: z.ZodOptional<z.ZodNumber>;
170
+ username: z.ZodOptional<z.ZodString>;
171
+ password: z.ZodOptional<z.ZodString>;
172
+ tls: z.ZodOptional<z.ZodBoolean>;
173
+ ttl: z.ZodOptional<z.ZodNumber>;
174
+ }, "strip", z.ZodTypeAny, {
175
+ driver: string;
176
+ ttl?: number | undefined;
177
+ host?: string | undefined;
178
+ token?: string | undefined;
179
+ url?: string | undefined;
180
+ compression?: "none" | "gzip" | "brotli" | "deflate" | undefined;
181
+ port?: number | undefined;
182
+ password?: string | undefined;
183
+ username?: string | undefined;
184
+ tls?: boolean | undefined;
185
+ }, {
186
+ driver: string;
187
+ ttl?: number | undefined;
188
+ host?: string | undefined;
189
+ token?: string | undefined;
190
+ url?: string | undefined;
191
+ compression?: "none" | "gzip" | "brotli" | "deflate" | undefined;
192
+ port?: number | undefined;
193
+ password?: string | undefined;
194
+ username?: string | undefined;
195
+ tls?: boolean | undefined;
196
+ }>;
197
+ cache: z.ZodObject<{
198
+ driver: z.ZodEnum<[string, ...string[]]>;
199
+ compression: z.ZodOptional<z.ZodEnum<["deflate", "gzip", "brotli", "none"]>>;
200
+ url: z.ZodOptional<z.ZodString>;
201
+ token: z.ZodOptional<z.ZodString>;
202
+ host: z.ZodOptional<z.ZodString>;
203
+ port: z.ZodOptional<z.ZodNumber>;
204
+ username: z.ZodOptional<z.ZodString>;
205
+ password: z.ZodOptional<z.ZodString>;
206
+ tls: z.ZodOptional<z.ZodBoolean>;
207
+ ttl: z.ZodOptional<z.ZodNumber>;
208
+ }, "strip", z.ZodTypeAny, {
209
+ driver: string;
210
+ ttl?: number | undefined;
211
+ host?: string | undefined;
212
+ token?: string | undefined;
213
+ url?: string | undefined;
214
+ compression?: "none" | "gzip" | "brotli" | "deflate" | undefined;
215
+ port?: number | undefined;
216
+ password?: string | undefined;
217
+ username?: string | undefined;
218
+ tls?: boolean | undefined;
219
+ }, {
220
+ driver: string;
221
+ ttl?: number | undefined;
222
+ host?: string | undefined;
223
+ token?: string | undefined;
224
+ url?: string | undefined;
225
+ compression?: "none" | "gzip" | "brotli" | "deflate" | undefined;
226
+ port?: number | undefined;
227
+ password?: string | undefined;
228
+ username?: string | undefined;
229
+ tls?: boolean | undefined;
230
+ }>;
231
+ }, "strip", z.ZodTypeAny, {
232
+ session: {
233
+ driver: string;
234
+ ttl?: number | undefined;
235
+ host?: string | undefined;
236
+ token?: string | undefined;
237
+ url?: string | undefined;
238
+ compression?: "none" | "gzip" | "brotli" | "deflate" | undefined;
239
+ port?: number | undefined;
240
+ password?: string | undefined;
241
+ username?: string | undefined;
242
+ tls?: boolean | undefined;
243
+ };
244
+ cache: {
245
+ driver: string;
246
+ ttl?: number | undefined;
247
+ host?: string | undefined;
248
+ token?: string | undefined;
249
+ url?: string | undefined;
250
+ compression?: "none" | "gzip" | "brotli" | "deflate" | undefined;
251
+ port?: number | undefined;
252
+ password?: string | undefined;
253
+ username?: string | undefined;
254
+ tls?: boolean | undefined;
255
+ };
256
+ }, {
257
+ session: {
258
+ driver: string;
259
+ ttl?: number | undefined;
260
+ host?: string | undefined;
261
+ token?: string | undefined;
262
+ url?: string | undefined;
263
+ compression?: "none" | "gzip" | "brotli" | "deflate" | undefined;
264
+ port?: number | undefined;
265
+ password?: string | undefined;
266
+ username?: string | undefined;
267
+ tls?: boolean | undefined;
268
+ };
269
+ cache: {
270
+ driver: string;
271
+ ttl?: number | undefined;
272
+ host?: string | undefined;
273
+ token?: string | undefined;
274
+ url?: string | undefined;
275
+ compression?: "none" | "gzip" | "brotli" | "deflate" | undefined;
276
+ port?: number | undefined;
277
+ password?: string | undefined;
278
+ username?: string | undefined;
279
+ tls?: boolean | undefined;
280
+ };
281
+ }>>;
282
+ }, "strip", z.ZodTypeAny, {
283
+ locale: string;
284
+ checkout: {
285
+ user: string | number;
286
+ host: string;
287
+ token: string;
288
+ secret: string;
289
+ cbdExpiration?: number | undefined;
290
+ };
291
+ shopId: number;
292
+ domain: string;
293
+ auth: {
294
+ resetPasswordUrl: string;
295
+ };
296
+ currency: string;
297
+ storeCampaignKeyword?: string | undefined;
298
+ idp?: {
299
+ enabled: boolean;
300
+ idpRedirectURL: string;
301
+ idpKeys: string[];
302
+ } | undefined;
303
+ path?: string | undefined;
304
+ currencyFractionDigits?: string | undefined;
305
+ apiBasePath?: string | undefined;
306
+ isEnabled?: boolean | undefined;
307
+ sessionConfig?: {
308
+ domain?: string | undefined;
309
+ secret?: string | undefined;
310
+ cookieName?: string | undefined;
311
+ sameSite?: "none" | "lax" | "strict" | undefined;
312
+ maxAge?: number | undefined;
313
+ } | undefined;
314
+ bapi?: {
315
+ host: string;
316
+ token: string;
317
+ } | undefined;
318
+ appKeys?: {
319
+ wishlistKey: string;
320
+ basketKey: string;
321
+ hashAlgorithm: string;
322
+ } | undefined;
323
+ storage?: {
324
+ session: {
325
+ driver: string;
326
+ ttl?: number | undefined;
327
+ host?: string | undefined;
328
+ token?: string | undefined;
329
+ url?: string | undefined;
330
+ compression?: "none" | "gzip" | "brotli" | "deflate" | undefined;
331
+ port?: number | undefined;
332
+ password?: string | undefined;
333
+ username?: string | undefined;
334
+ tls?: boolean | undefined;
335
+ };
336
+ cache: {
337
+ driver: string;
338
+ ttl?: number | undefined;
339
+ host?: string | undefined;
340
+ token?: string | undefined;
341
+ url?: string | undefined;
342
+ compression?: "none" | "gzip" | "brotli" | "deflate" | undefined;
343
+ port?: number | undefined;
344
+ password?: string | undefined;
345
+ username?: string | undefined;
346
+ tls?: boolean | undefined;
347
+ };
348
+ } | undefined;
349
+ }, {
350
+ locale: string;
351
+ checkout: {
352
+ user: string | number;
353
+ host: string;
354
+ token: string;
355
+ secret: string;
356
+ cbdExpiration?: number | undefined;
357
+ };
358
+ shopId: number;
359
+ domain: string;
360
+ auth: {
361
+ resetPasswordUrl: string;
362
+ };
363
+ currency: string;
364
+ storeCampaignKeyword?: string | undefined;
365
+ idp?: {
366
+ enabled: boolean;
367
+ idpRedirectURL: string;
368
+ idpKeys: string[];
369
+ } | undefined;
370
+ path?: string | undefined;
371
+ currencyFractionDigits?: string | undefined;
372
+ apiBasePath?: string | undefined;
373
+ isEnabled?: boolean | undefined;
374
+ sessionConfig?: {
375
+ domain?: string | undefined;
376
+ secret?: string | undefined;
377
+ cookieName?: string | undefined;
378
+ sameSite?: "none" | "lax" | "strict" | undefined;
379
+ maxAge?: number | undefined;
380
+ } | undefined;
381
+ bapi?: {
382
+ host: string;
383
+ token: string;
384
+ } | undefined;
385
+ appKeys?: {
386
+ wishlistKey: string;
387
+ basketKey: string;
388
+ hashAlgorithm: string;
389
+ } | undefined;
390
+ storage?: {
391
+ session: {
392
+ driver: string;
393
+ ttl?: number | undefined;
394
+ host?: string | undefined;
395
+ token?: string | undefined;
396
+ url?: string | undefined;
397
+ compression?: "none" | "gzip" | "brotli" | "deflate" | undefined;
398
+ port?: number | undefined;
399
+ password?: string | undefined;
400
+ username?: string | undefined;
401
+ tls?: boolean | undefined;
402
+ };
403
+ cache: {
404
+ driver: string;
405
+ ttl?: number | undefined;
406
+ host?: string | undefined;
407
+ token?: string | undefined;
408
+ url?: string | undefined;
409
+ compression?: "none" | "gzip" | "brotli" | "deflate" | undefined;
410
+ port?: number | undefined;
411
+ password?: string | undefined;
412
+ username?: string | undefined;
413
+ tls?: boolean | undefined;
414
+ };
415
+ } | undefined;
416
+ }>>;
417
+ storage: z.ZodObject<{
418
+ session: z.ZodObject<{
419
+ driver: z.ZodEnum<[string, ...string[]]>;
420
+ compression: z.ZodOptional<z.ZodEnum<["deflate", "gzip", "brotli", "none"]>>;
421
+ url: z.ZodOptional<z.ZodString>;
422
+ token: z.ZodOptional<z.ZodString>;
423
+ host: z.ZodOptional<z.ZodString>;
424
+ port: z.ZodOptional<z.ZodNumber>;
425
+ username: z.ZodOptional<z.ZodString>;
426
+ password: z.ZodOptional<z.ZodString>;
427
+ tls: z.ZodOptional<z.ZodBoolean>;
428
+ ttl: z.ZodOptional<z.ZodNumber>;
429
+ }, "strip", z.ZodTypeAny, {
430
+ driver: string;
431
+ ttl?: number | undefined;
432
+ host?: string | undefined;
433
+ token?: string | undefined;
434
+ url?: string | undefined;
435
+ compression?: "none" | "gzip" | "brotli" | "deflate" | undefined;
436
+ port?: number | undefined;
437
+ password?: string | undefined;
438
+ username?: string | undefined;
439
+ tls?: boolean | undefined;
440
+ }, {
441
+ driver: string;
442
+ ttl?: number | undefined;
443
+ host?: string | undefined;
444
+ token?: string | undefined;
445
+ url?: string | undefined;
446
+ compression?: "none" | "gzip" | "brotli" | "deflate" | undefined;
447
+ port?: number | undefined;
448
+ password?: string | undefined;
449
+ username?: string | undefined;
450
+ tls?: boolean | undefined;
451
+ }>;
452
+ cache: z.ZodObject<{
453
+ driver: z.ZodEnum<[string, ...string[]]>;
454
+ compression: z.ZodOptional<z.ZodEnum<["deflate", "gzip", "brotli", "none"]>>;
455
+ url: z.ZodOptional<z.ZodString>;
456
+ token: z.ZodOptional<z.ZodString>;
457
+ host: z.ZodOptional<z.ZodString>;
458
+ port: z.ZodOptional<z.ZodNumber>;
459
+ username: z.ZodOptional<z.ZodString>;
460
+ password: z.ZodOptional<z.ZodString>;
461
+ tls: z.ZodOptional<z.ZodBoolean>;
462
+ ttl: z.ZodOptional<z.ZodNumber>;
463
+ }, "strip", z.ZodTypeAny, {
464
+ driver: string;
465
+ ttl?: number | undefined;
466
+ host?: string | undefined;
467
+ token?: string | undefined;
468
+ url?: string | undefined;
469
+ compression?: "none" | "gzip" | "brotli" | "deflate" | undefined;
470
+ port?: number | undefined;
471
+ password?: string | undefined;
472
+ username?: string | undefined;
473
+ tls?: boolean | undefined;
474
+ }, {
475
+ driver: string;
476
+ ttl?: number | undefined;
477
+ host?: string | undefined;
478
+ token?: string | undefined;
479
+ url?: string | undefined;
480
+ compression?: "none" | "gzip" | "brotli" | "deflate" | undefined;
481
+ port?: number | undefined;
482
+ password?: string | undefined;
483
+ username?: string | undefined;
484
+ tls?: boolean | undefined;
485
+ }>;
486
+ }, "strip", z.ZodTypeAny, {
487
+ session: {
488
+ driver: string;
489
+ ttl?: number | undefined;
490
+ host?: string | undefined;
491
+ token?: string | undefined;
492
+ url?: string | undefined;
493
+ compression?: "none" | "gzip" | "brotli" | "deflate" | undefined;
494
+ port?: number | undefined;
495
+ password?: string | undefined;
496
+ username?: string | undefined;
497
+ tls?: boolean | undefined;
498
+ };
499
+ cache: {
500
+ driver: string;
501
+ ttl?: number | undefined;
502
+ host?: string | undefined;
503
+ token?: string | undefined;
504
+ url?: string | undefined;
505
+ compression?: "none" | "gzip" | "brotli" | "deflate" | undefined;
506
+ port?: number | undefined;
507
+ password?: string | undefined;
508
+ username?: string | undefined;
509
+ tls?: boolean | undefined;
510
+ };
511
+ }, {
512
+ session: {
513
+ driver: string;
514
+ ttl?: number | undefined;
515
+ host?: string | undefined;
516
+ token?: string | undefined;
517
+ url?: string | undefined;
518
+ compression?: "none" | "gzip" | "brotli" | "deflate" | undefined;
519
+ port?: number | undefined;
520
+ password?: string | undefined;
521
+ username?: string | undefined;
522
+ tls?: boolean | undefined;
523
+ };
524
+ cache: {
525
+ driver: string;
526
+ ttl?: number | undefined;
527
+ host?: string | undefined;
528
+ token?: string | undefined;
529
+ url?: string | undefined;
530
+ compression?: "none" | "gzip" | "brotli" | "deflate" | undefined;
531
+ port?: number | undefined;
532
+ password?: string | undefined;
533
+ username?: string | undefined;
534
+ tls?: boolean | undefined;
535
+ };
536
+ }>;
537
+ cache: z.ZodOptional<z.ZodObject<{
538
+ auth: z.ZodObject<{
539
+ username: z.ZodString;
540
+ password: z.ZodString;
541
+ }, "strip", z.ZodTypeAny, {
542
+ password: string;
543
+ username: string;
544
+ }, {
545
+ password: string;
546
+ username: string;
547
+ }>;
548
+ enabled: z.ZodBoolean;
549
+ }, "strip", z.ZodTypeAny, {
550
+ auth: {
551
+ password: string;
552
+ username: string;
553
+ };
554
+ enabled: boolean;
555
+ }, {
556
+ auth: {
557
+ password: string;
558
+ username: string;
559
+ };
560
+ enabled: boolean;
561
+ }>>;
562
+ appKeys: z.ZodObject<{
563
+ wishlistKey: z.ZodString;
564
+ basketKey: z.ZodString;
565
+ hashAlgorithm: z.ZodEnum<[string, ...string[]]>;
566
+ }, "strip", z.ZodTypeAny, {
567
+ wishlistKey: string;
568
+ basketKey: string;
569
+ hashAlgorithm: string;
570
+ }, {
571
+ wishlistKey: string;
572
+ basketKey: string;
573
+ hashAlgorithm: string;
574
+ }>;
575
+ }, "strip", z.ZodTypeAny, {
576
+ oauth: {
577
+ apiHost: string;
578
+ clientId: string | number;
579
+ clientSecret: string;
580
+ };
581
+ bapi: {
582
+ host: string;
583
+ token: string;
584
+ };
585
+ appKeys: {
586
+ wishlistKey: string;
587
+ basketKey: string;
588
+ hashAlgorithm: string;
589
+ };
590
+ storage: {
591
+ session: {
592
+ driver: string;
593
+ ttl?: number | undefined;
594
+ host?: string | undefined;
595
+ token?: string | undefined;
596
+ url?: string | undefined;
597
+ compression?: "none" | "gzip" | "brotli" | "deflate" | undefined;
598
+ port?: number | undefined;
599
+ password?: string | undefined;
600
+ username?: string | undefined;
601
+ tls?: boolean | undefined;
602
+ };
603
+ cache: {
604
+ driver: string;
605
+ ttl?: number | undefined;
606
+ host?: string | undefined;
607
+ token?: string | undefined;
608
+ url?: string | undefined;
609
+ compression?: "none" | "gzip" | "brotli" | "deflate" | undefined;
610
+ port?: number | undefined;
611
+ password?: string | undefined;
612
+ username?: string | undefined;
613
+ tls?: boolean | undefined;
614
+ };
615
+ };
616
+ stores: Record<string, {
617
+ locale: string;
618
+ checkout: {
619
+ user: string | number;
620
+ host: string;
621
+ token: string;
622
+ secret: string;
623
+ cbdExpiration?: number | undefined;
624
+ };
625
+ shopId: number;
626
+ domain: string;
627
+ auth: {
628
+ resetPasswordUrl: string;
629
+ };
630
+ currency: string;
631
+ storeCampaignKeyword?: string | undefined;
632
+ idp?: {
633
+ enabled: boolean;
634
+ idpRedirectURL: string;
635
+ idpKeys: string[];
636
+ } | undefined;
637
+ path?: string | undefined;
638
+ currencyFractionDigits?: string | undefined;
639
+ apiBasePath?: string | undefined;
640
+ isEnabled?: boolean | undefined;
641
+ sessionConfig?: {
642
+ domain?: string | undefined;
643
+ secret?: string | undefined;
644
+ cookieName?: string | undefined;
645
+ sameSite?: "none" | "lax" | "strict" | undefined;
646
+ maxAge?: number | undefined;
647
+ } | undefined;
648
+ bapi?: {
649
+ host: string;
650
+ token: string;
651
+ } | undefined;
652
+ appKeys?: {
653
+ wishlistKey: string;
654
+ basketKey: string;
655
+ hashAlgorithm: string;
656
+ } | undefined;
657
+ storage?: {
658
+ session: {
659
+ driver: string;
660
+ ttl?: number | undefined;
661
+ host?: string | undefined;
662
+ token?: string | undefined;
663
+ url?: string | undefined;
664
+ compression?: "none" | "gzip" | "brotli" | "deflate" | undefined;
665
+ port?: number | undefined;
666
+ password?: string | undefined;
667
+ username?: string | undefined;
668
+ tls?: boolean | undefined;
669
+ };
670
+ cache: {
671
+ driver: string;
672
+ ttl?: number | undefined;
673
+ host?: string | undefined;
674
+ token?: string | undefined;
675
+ url?: string | undefined;
676
+ compression?: "none" | "gzip" | "brotli" | "deflate" | undefined;
677
+ port?: number | undefined;
678
+ password?: string | undefined;
679
+ username?: string | undefined;
680
+ tls?: boolean | undefined;
681
+ };
682
+ } | undefined;
683
+ }>;
684
+ shopSelector: "domain" | "path" | "path_or_default";
685
+ publicShopData: string[];
686
+ idp?: {
687
+ enabled: boolean;
688
+ idpRedirectURL: string;
689
+ idpKeys: string[];
690
+ } | undefined;
691
+ redirects?: {
692
+ enabled: boolean;
693
+ queryParamWhitelist?: string[] | undefined;
694
+ } | undefined;
695
+ session?: {
696
+ domain?: string | undefined;
697
+ secret?: string | undefined;
698
+ cookieName?: string | undefined;
699
+ sameSite?: "none" | "lax" | "strict" | undefined;
700
+ maxAge?: number | undefined;
701
+ } | undefined;
702
+ cache?: {
703
+ auth: {
704
+ password: string;
705
+ username: string;
706
+ };
707
+ enabled: boolean;
708
+ } | undefined;
709
+ }, {
710
+ oauth: {
711
+ apiHost: string;
712
+ clientId: string | number;
713
+ clientSecret: string;
714
+ };
715
+ bapi: {
716
+ host: string;
717
+ token: string;
718
+ };
719
+ appKeys: {
720
+ wishlistKey: string;
721
+ basketKey: string;
722
+ hashAlgorithm: string;
723
+ };
724
+ storage: {
725
+ session: {
726
+ driver: string;
727
+ ttl?: number | undefined;
728
+ host?: string | undefined;
729
+ token?: string | undefined;
730
+ url?: string | undefined;
731
+ compression?: "none" | "gzip" | "brotli" | "deflate" | undefined;
732
+ port?: number | undefined;
733
+ password?: string | undefined;
734
+ username?: string | undefined;
735
+ tls?: boolean | undefined;
736
+ };
737
+ cache: {
738
+ driver: string;
739
+ ttl?: number | undefined;
740
+ host?: string | undefined;
741
+ token?: string | undefined;
742
+ url?: string | undefined;
743
+ compression?: "none" | "gzip" | "brotli" | "deflate" | undefined;
744
+ port?: number | undefined;
745
+ password?: string | undefined;
746
+ username?: string | undefined;
747
+ tls?: boolean | undefined;
748
+ };
749
+ };
750
+ stores: Record<string, {
751
+ locale: string;
752
+ checkout: {
753
+ user: string | number;
754
+ host: string;
755
+ token: string;
756
+ secret: string;
757
+ cbdExpiration?: number | undefined;
758
+ };
759
+ shopId: number;
760
+ domain: string;
761
+ auth: {
762
+ resetPasswordUrl: string;
763
+ };
764
+ currency: string;
765
+ storeCampaignKeyword?: string | undefined;
766
+ idp?: {
767
+ enabled: boolean;
768
+ idpRedirectURL: string;
769
+ idpKeys: string[];
770
+ } | undefined;
771
+ path?: string | undefined;
772
+ currencyFractionDigits?: string | undefined;
773
+ apiBasePath?: string | undefined;
774
+ isEnabled?: boolean | undefined;
775
+ sessionConfig?: {
776
+ domain?: string | undefined;
777
+ secret?: string | undefined;
778
+ cookieName?: string | undefined;
779
+ sameSite?: "none" | "lax" | "strict" | undefined;
780
+ maxAge?: number | undefined;
781
+ } | undefined;
782
+ bapi?: {
783
+ host: string;
784
+ token: string;
785
+ } | undefined;
786
+ appKeys?: {
787
+ wishlistKey: string;
788
+ basketKey: string;
789
+ hashAlgorithm: string;
790
+ } | undefined;
791
+ storage?: {
792
+ session: {
793
+ driver: string;
794
+ ttl?: number | undefined;
795
+ host?: string | undefined;
796
+ token?: string | undefined;
797
+ url?: string | undefined;
798
+ compression?: "none" | "gzip" | "brotli" | "deflate" | undefined;
799
+ port?: number | undefined;
800
+ password?: string | undefined;
801
+ username?: string | undefined;
802
+ tls?: boolean | undefined;
803
+ };
804
+ cache: {
805
+ driver: string;
806
+ ttl?: number | undefined;
807
+ host?: string | undefined;
808
+ token?: string | undefined;
809
+ url?: string | undefined;
810
+ compression?: "none" | "gzip" | "brotli" | "deflate" | undefined;
811
+ port?: number | undefined;
812
+ password?: string | undefined;
813
+ username?: string | undefined;
814
+ tls?: boolean | undefined;
815
+ };
816
+ } | undefined;
817
+ }>;
818
+ shopSelector: "domain" | "path" | "path_or_default";
819
+ publicShopData: string[];
820
+ idp?: {
821
+ enabled: boolean;
822
+ idpRedirectURL: string;
823
+ idpKeys: string[];
824
+ } | undefined;
825
+ redirects?: {
826
+ enabled: boolean;
827
+ queryParamWhitelist?: string[] | undefined;
828
+ } | undefined;
829
+ session?: {
830
+ domain?: string | undefined;
831
+ secret?: string | undefined;
832
+ cookieName?: string | undefined;
833
+ sameSite?: "none" | "lax" | "strict" | undefined;
834
+ maxAge?: number | undefined;
835
+ } | undefined;
836
+ cache?: {
837
+ auth: {
838
+ password: string;
839
+ username: string;
840
+ };
841
+ enabled: boolean;
842
+ } | undefined;
843
+ }>;
844
+ public: z.ZodObject<{
845
+ storefront: z.ZodObject<{
846
+ log: z.ZodObject<{
847
+ name: z.ZodString;
848
+ level: z.ZodString;
849
+ }, "strip", z.ZodTypeAny, {
850
+ level: string;
851
+ name: string;
852
+ }, {
853
+ level: string;
854
+ name: string;
855
+ }>;
856
+ }, "strip", z.ZodTypeAny, {
857
+ log: {
858
+ level: string;
859
+ name: string;
860
+ };
861
+ }, {
862
+ log: {
863
+ level: string;
864
+ name: string;
865
+ };
866
+ }>;
867
+ }, "strip", z.ZodTypeAny, {
868
+ storefront: {
869
+ log: {
870
+ level: string;
871
+ name: string;
872
+ };
873
+ };
874
+ }, {
875
+ storefront: {
876
+ log: {
877
+ level: string;
878
+ name: string;
879
+ };
880
+ };
881
+ }>;
882
+ }, "strip", z.ZodTypeAny, {
883
+ storefront: {
884
+ oauth: {
885
+ apiHost: string;
886
+ clientId: string | number;
887
+ clientSecret: string;
888
+ };
889
+ bapi: {
890
+ host: string;
891
+ token: string;
892
+ };
893
+ appKeys: {
894
+ wishlistKey: string;
895
+ basketKey: string;
896
+ hashAlgorithm: string;
897
+ };
898
+ storage: {
899
+ session: {
900
+ driver: string;
901
+ ttl?: number | undefined;
902
+ host?: string | undefined;
903
+ token?: string | undefined;
904
+ url?: string | undefined;
905
+ compression?: "none" | "gzip" | "brotli" | "deflate" | undefined;
906
+ port?: number | undefined;
907
+ password?: string | undefined;
908
+ username?: string | undefined;
909
+ tls?: boolean | undefined;
910
+ };
911
+ cache: {
912
+ driver: string;
913
+ ttl?: number | undefined;
914
+ host?: string | undefined;
915
+ token?: string | undefined;
916
+ url?: string | undefined;
917
+ compression?: "none" | "gzip" | "brotli" | "deflate" | undefined;
918
+ port?: number | undefined;
919
+ password?: string | undefined;
920
+ username?: string | undefined;
921
+ tls?: boolean | undefined;
922
+ };
923
+ };
924
+ stores: Record<string, {
925
+ locale: string;
926
+ checkout: {
927
+ user: string | number;
928
+ host: string;
929
+ token: string;
930
+ secret: string;
931
+ cbdExpiration?: number | undefined;
932
+ };
933
+ shopId: number;
934
+ domain: string;
935
+ auth: {
936
+ resetPasswordUrl: string;
937
+ };
938
+ currency: string;
939
+ storeCampaignKeyword?: string | undefined;
940
+ idp?: {
941
+ enabled: boolean;
942
+ idpRedirectURL: string;
943
+ idpKeys: string[];
944
+ } | undefined;
945
+ path?: string | undefined;
946
+ currencyFractionDigits?: string | undefined;
947
+ apiBasePath?: string | undefined;
948
+ isEnabled?: boolean | undefined;
949
+ sessionConfig?: {
950
+ domain?: string | undefined;
951
+ secret?: string | undefined;
952
+ cookieName?: string | undefined;
953
+ sameSite?: "none" | "lax" | "strict" | undefined;
954
+ maxAge?: number | undefined;
955
+ } | undefined;
956
+ bapi?: {
957
+ host: string;
958
+ token: string;
959
+ } | undefined;
960
+ appKeys?: {
961
+ wishlistKey: string;
962
+ basketKey: string;
963
+ hashAlgorithm: string;
964
+ } | undefined;
965
+ storage?: {
966
+ session: {
967
+ driver: string;
968
+ ttl?: number | undefined;
969
+ host?: string | undefined;
970
+ token?: string | undefined;
971
+ url?: string | undefined;
972
+ compression?: "none" | "gzip" | "brotli" | "deflate" | undefined;
973
+ port?: number | undefined;
974
+ password?: string | undefined;
975
+ username?: string | undefined;
976
+ tls?: boolean | undefined;
977
+ };
978
+ cache: {
979
+ driver: string;
980
+ ttl?: number | undefined;
981
+ host?: string | undefined;
982
+ token?: string | undefined;
983
+ url?: string | undefined;
984
+ compression?: "none" | "gzip" | "brotli" | "deflate" | undefined;
985
+ port?: number | undefined;
986
+ password?: string | undefined;
987
+ username?: string | undefined;
988
+ tls?: boolean | undefined;
989
+ };
990
+ } | undefined;
991
+ }>;
992
+ shopSelector: "domain" | "path" | "path_or_default";
993
+ publicShopData: string[];
994
+ idp?: {
995
+ enabled: boolean;
996
+ idpRedirectURL: string;
997
+ idpKeys: string[];
998
+ } | undefined;
999
+ redirects?: {
1000
+ enabled: boolean;
1001
+ queryParamWhitelist?: string[] | undefined;
1002
+ } | undefined;
1003
+ session?: {
1004
+ domain?: string | undefined;
1005
+ secret?: string | undefined;
1006
+ cookieName?: string | undefined;
1007
+ sameSite?: "none" | "lax" | "strict" | undefined;
1008
+ maxAge?: number | undefined;
1009
+ } | undefined;
1010
+ cache?: {
1011
+ auth: {
1012
+ password: string;
1013
+ username: string;
1014
+ };
1015
+ enabled: boolean;
1016
+ } | undefined;
1017
+ };
1018
+ public: {
1019
+ storefront: {
1020
+ log: {
1021
+ level: string;
1022
+ name: string;
1023
+ };
1024
+ };
1025
+ };
1026
+ }, {
1027
+ storefront: {
1028
+ oauth: {
1029
+ apiHost: string;
1030
+ clientId: string | number;
1031
+ clientSecret: string;
1032
+ };
1033
+ bapi: {
1034
+ host: string;
1035
+ token: string;
1036
+ };
1037
+ appKeys: {
1038
+ wishlistKey: string;
1039
+ basketKey: string;
1040
+ hashAlgorithm: string;
1041
+ };
1042
+ storage: {
1043
+ session: {
1044
+ driver: string;
1045
+ ttl?: number | undefined;
1046
+ host?: string | undefined;
1047
+ token?: string | undefined;
1048
+ url?: string | undefined;
1049
+ compression?: "none" | "gzip" | "brotli" | "deflate" | undefined;
1050
+ port?: number | undefined;
1051
+ password?: string | undefined;
1052
+ username?: string | undefined;
1053
+ tls?: boolean | undefined;
1054
+ };
1055
+ cache: {
1056
+ driver: string;
1057
+ ttl?: number | undefined;
1058
+ host?: string | undefined;
1059
+ token?: string | undefined;
1060
+ url?: string | undefined;
1061
+ compression?: "none" | "gzip" | "brotli" | "deflate" | undefined;
1062
+ port?: number | undefined;
1063
+ password?: string | undefined;
1064
+ username?: string | undefined;
1065
+ tls?: boolean | undefined;
1066
+ };
1067
+ };
1068
+ stores: Record<string, {
1069
+ locale: string;
1070
+ checkout: {
1071
+ user: string | number;
1072
+ host: string;
1073
+ token: string;
1074
+ secret: string;
1075
+ cbdExpiration?: number | undefined;
1076
+ };
1077
+ shopId: number;
1078
+ domain: string;
1079
+ auth: {
1080
+ resetPasswordUrl: string;
1081
+ };
1082
+ currency: string;
1083
+ storeCampaignKeyword?: string | undefined;
1084
+ idp?: {
1085
+ enabled: boolean;
1086
+ idpRedirectURL: string;
1087
+ idpKeys: string[];
1088
+ } | undefined;
1089
+ path?: string | undefined;
1090
+ currencyFractionDigits?: string | undefined;
1091
+ apiBasePath?: string | undefined;
1092
+ isEnabled?: boolean | undefined;
1093
+ sessionConfig?: {
1094
+ domain?: string | undefined;
1095
+ secret?: string | undefined;
1096
+ cookieName?: string | undefined;
1097
+ sameSite?: "none" | "lax" | "strict" | undefined;
1098
+ maxAge?: number | undefined;
1099
+ } | undefined;
1100
+ bapi?: {
1101
+ host: string;
1102
+ token: string;
1103
+ } | undefined;
1104
+ appKeys?: {
1105
+ wishlistKey: string;
1106
+ basketKey: string;
1107
+ hashAlgorithm: string;
1108
+ } | undefined;
1109
+ storage?: {
1110
+ session: {
1111
+ driver: string;
1112
+ ttl?: number | undefined;
1113
+ host?: string | undefined;
1114
+ token?: string | undefined;
1115
+ url?: string | undefined;
1116
+ compression?: "none" | "gzip" | "brotli" | "deflate" | undefined;
1117
+ port?: number | undefined;
1118
+ password?: string | undefined;
1119
+ username?: string | undefined;
1120
+ tls?: boolean | undefined;
1121
+ };
1122
+ cache: {
1123
+ driver: string;
1124
+ ttl?: number | undefined;
1125
+ host?: string | undefined;
1126
+ token?: string | undefined;
1127
+ url?: string | undefined;
1128
+ compression?: "none" | "gzip" | "brotli" | "deflate" | undefined;
1129
+ port?: number | undefined;
1130
+ password?: string | undefined;
1131
+ username?: string | undefined;
1132
+ tls?: boolean | undefined;
1133
+ };
1134
+ } | undefined;
1135
+ }>;
1136
+ shopSelector: "domain" | "path" | "path_or_default";
1137
+ publicShopData: string[];
1138
+ idp?: {
1139
+ enabled: boolean;
1140
+ idpRedirectURL: string;
1141
+ idpKeys: string[];
1142
+ } | undefined;
1143
+ redirects?: {
1144
+ enabled: boolean;
1145
+ queryParamWhitelist?: string[] | undefined;
1146
+ } | undefined;
1147
+ session?: {
1148
+ domain?: string | undefined;
1149
+ secret?: string | undefined;
1150
+ cookieName?: string | undefined;
1151
+ sameSite?: "none" | "lax" | "strict" | undefined;
1152
+ maxAge?: number | undefined;
1153
+ } | undefined;
1154
+ cache?: {
1155
+ auth: {
1156
+ password: string;
1157
+ username: string;
1158
+ };
1159
+ enabled: boolean;
1160
+ } | undefined;
1161
+ };
1162
+ public: {
1163
+ storefront: {
1164
+ log: {
1165
+ level: string;
1166
+ name: string;
1167
+ };
1168
+ };
1169
+ };
1170
+ }>;