@scayle/storefront-nuxt 7.91.0 → 7.93.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +30 -0
- package/dist/index.d.mts +31 -2
- package/dist/index.d.ts +31 -2
- package/dist/index.mjs +240 -0
- package/dist/module.json +1 -1
- package/dist/module.mjs +1 -1
- package/dist/runtime/api/rpcHandler.d.ts +2 -2
- package/dist/runtime/plugin/shop.d.ts +4 -4
- package/dist/runtime/utils/zodSchema.d.ts +415 -415
- package/package.json +8 -11
- package/dist/test-factories/category.d.ts +0 -3
- package/dist/test-factories/category.mjs +0 -18
- package/dist/test-factories/index.d.ts +0 -4
- package/dist/test-factories/index.mjs +0 -4
- package/dist/test-factories/moduleOptions.d.ts +0 -7
- package/dist/test-factories/moduleOptions.mjs +0 -27
- package/dist/test-factories/rpcContext.d.ts +0 -7
- package/dist/test-factories/rpcContext.mjs +0 -57
- package/dist/test-factories/shopConfig.d.ts +0 -3
- package/dist/test-factories/shopConfig.mjs +0 -19
|
@@ -78,18 +78,18 @@ declare const SessionSchema: z.ZodObject<{
|
|
|
78
78
|
*/
|
|
79
79
|
provider: z.ZodOptional<z.ZodEnum<["redis", "memory"]>>;
|
|
80
80
|
}, "strip", z.ZodTypeAny, {
|
|
81
|
+
domain?: string | undefined;
|
|
81
82
|
sameSite?: "lax" | "strict" | "none" | undefined;
|
|
82
83
|
maxAge?: number | undefined;
|
|
83
84
|
cookieName?: string | undefined;
|
|
84
85
|
secret?: string | string[] | undefined;
|
|
85
|
-
domain?: string | undefined;
|
|
86
86
|
provider?: "redis" | "memory" | undefined;
|
|
87
87
|
}, {
|
|
88
|
+
domain?: string | undefined;
|
|
88
89
|
sameSite?: "lax" | "strict" | "none" | undefined;
|
|
89
90
|
maxAge?: number | undefined;
|
|
90
91
|
cookieName?: string | undefined;
|
|
91
92
|
secret?: string | string[] | undefined;
|
|
92
|
-
domain?: string | undefined;
|
|
93
93
|
provider?: "redis" | "memory" | undefined;
|
|
94
94
|
}>;
|
|
95
95
|
declare const SapiSchema: z.ZodObject<{
|
|
@@ -128,6 +128,7 @@ declare const StorageSchema: z.ZodObject<{
|
|
|
128
128
|
ttl: z.ZodOptional<z.ZodNumber>;
|
|
129
129
|
}, "strip", z.ZodTypeAny, {
|
|
130
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";
|
|
131
|
+
ttl?: number | undefined;
|
|
131
132
|
port?: number | undefined;
|
|
132
133
|
host?: string | undefined;
|
|
133
134
|
password?: string | undefined;
|
|
@@ -136,9 +137,9 @@ declare const StorageSchema: z.ZodObject<{
|
|
|
136
137
|
url?: string | undefined;
|
|
137
138
|
username?: string | undefined;
|
|
138
139
|
tls?: boolean | undefined;
|
|
139
|
-
ttl?: number | undefined;
|
|
140
140
|
}, {
|
|
141
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";
|
|
142
|
+
ttl?: number | undefined;
|
|
142
143
|
port?: number | undefined;
|
|
143
144
|
host?: string | undefined;
|
|
144
145
|
password?: string | undefined;
|
|
@@ -147,7 +148,6 @@ declare const StorageSchema: z.ZodObject<{
|
|
|
147
148
|
url?: string | undefined;
|
|
148
149
|
username?: string | undefined;
|
|
149
150
|
tls?: boolean | undefined;
|
|
150
|
-
ttl?: number | undefined;
|
|
151
151
|
}>;
|
|
152
152
|
declare const CheckoutShopConfigSchema: z.ZodObject<{
|
|
153
153
|
token: z.ZodString;
|
|
@@ -157,19 +157,19 @@ declare const CheckoutShopConfigSchema: z.ZodObject<{
|
|
|
157
157
|
cbdExpiration: z.ZodOptional<z.ZodNumber>;
|
|
158
158
|
shopId: z.ZodOptional<z.ZodNumber>;
|
|
159
159
|
}, "strip", z.ZodTypeAny, {
|
|
160
|
-
host: string;
|
|
161
160
|
user: string | number;
|
|
161
|
+
host: string;
|
|
162
162
|
secret: string;
|
|
163
163
|
token: string;
|
|
164
|
-
cbdExpiration?: number | undefined;
|
|
165
164
|
shopId?: number | undefined;
|
|
165
|
+
cbdExpiration?: number | undefined;
|
|
166
166
|
}, {
|
|
167
|
-
host: string;
|
|
168
167
|
user: string | number;
|
|
168
|
+
host: string;
|
|
169
169
|
secret: string;
|
|
170
170
|
token: string;
|
|
171
|
-
cbdExpiration?: number | undefined;
|
|
172
171
|
shopId?: number | undefined;
|
|
172
|
+
cbdExpiration?: number | undefined;
|
|
173
173
|
}>;
|
|
174
174
|
declare const ShopConfigSchema: z.ZodObject<{
|
|
175
175
|
idp: z.ZodOptional<z.ZodObject<{
|
|
@@ -206,19 +206,19 @@ declare const ShopConfigSchema: z.ZodObject<{
|
|
|
206
206
|
cbdExpiration: z.ZodOptional<z.ZodNumber>;
|
|
207
207
|
shopId: z.ZodOptional<z.ZodNumber>;
|
|
208
208
|
}, "strip", z.ZodTypeAny, {
|
|
209
|
-
host: string;
|
|
210
209
|
user: string | number;
|
|
210
|
+
host: string;
|
|
211
211
|
secret: string;
|
|
212
212
|
token: string;
|
|
213
|
-
cbdExpiration?: number | undefined;
|
|
214
213
|
shopId?: number | undefined;
|
|
214
|
+
cbdExpiration?: number | undefined;
|
|
215
215
|
}, {
|
|
216
|
-
host: string;
|
|
217
216
|
user: string | number;
|
|
217
|
+
host: string;
|
|
218
218
|
secret: string;
|
|
219
219
|
token: string;
|
|
220
|
-
cbdExpiration?: number | undefined;
|
|
221
220
|
shopId?: number | undefined;
|
|
221
|
+
cbdExpiration?: number | undefined;
|
|
222
222
|
}>;
|
|
223
223
|
appKeys: z.ZodOptional<z.ZodObject<{
|
|
224
224
|
wishlistKey: z.ZodString;
|
|
@@ -263,18 +263,18 @@ declare const ShopConfigSchema: z.ZodObject<{
|
|
|
263
263
|
*/
|
|
264
264
|
provider: z.ZodOptional<z.ZodEnum<["redis", "memory"]>>;
|
|
265
265
|
}, "strip", z.ZodTypeAny, {
|
|
266
|
+
domain?: string | undefined;
|
|
266
267
|
sameSite?: "lax" | "strict" | "none" | undefined;
|
|
267
268
|
maxAge?: number | undefined;
|
|
268
269
|
cookieName?: string | undefined;
|
|
269
270
|
secret?: string | string[] | undefined;
|
|
270
|
-
domain?: string | undefined;
|
|
271
271
|
provider?: "redis" | "memory" | undefined;
|
|
272
272
|
}, {
|
|
273
|
+
domain?: string | undefined;
|
|
273
274
|
sameSite?: "lax" | "strict" | "none" | undefined;
|
|
274
275
|
maxAge?: number | undefined;
|
|
275
276
|
cookieName?: string | undefined;
|
|
276
277
|
secret?: string | string[] | undefined;
|
|
277
|
-
domain?: string | undefined;
|
|
278
278
|
provider?: "redis" | "memory" | undefined;
|
|
279
279
|
}>>;
|
|
280
280
|
sapi: z.ZodOptional<z.ZodObject<{
|
|
@@ -311,6 +311,7 @@ declare const ShopConfigSchema: z.ZodObject<{
|
|
|
311
311
|
ttl: z.ZodOptional<z.ZodNumber>;
|
|
312
312
|
}, "strip", z.ZodTypeAny, {
|
|
313
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";
|
|
314
|
+
ttl?: number | undefined;
|
|
314
315
|
port?: number | undefined;
|
|
315
316
|
host?: string | undefined;
|
|
316
317
|
password?: string | undefined;
|
|
@@ -319,9 +320,9 @@ declare const ShopConfigSchema: z.ZodObject<{
|
|
|
319
320
|
url?: string | undefined;
|
|
320
321
|
username?: string | undefined;
|
|
321
322
|
tls?: boolean | undefined;
|
|
322
|
-
ttl?: number | undefined;
|
|
323
323
|
}, {
|
|
324
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";
|
|
325
|
+
ttl?: number | undefined;
|
|
325
326
|
port?: number | undefined;
|
|
326
327
|
host?: string | undefined;
|
|
327
328
|
password?: string | undefined;
|
|
@@ -330,7 +331,6 @@ declare const ShopConfigSchema: z.ZodObject<{
|
|
|
330
331
|
url?: string | undefined;
|
|
331
332
|
username?: string | undefined;
|
|
332
333
|
tls?: boolean | undefined;
|
|
333
|
-
ttl?: number | undefined;
|
|
334
334
|
}>>;
|
|
335
335
|
cache: z.ZodOptional<z.ZodObject<{
|
|
336
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")[]]>;
|
|
@@ -345,6 +345,7 @@ declare const ShopConfigSchema: z.ZodObject<{
|
|
|
345
345
|
ttl: z.ZodOptional<z.ZodNumber>;
|
|
346
346
|
}, "strip", z.ZodTypeAny, {
|
|
347
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";
|
|
348
|
+
ttl?: number | undefined;
|
|
348
349
|
port?: number | undefined;
|
|
349
350
|
host?: string | undefined;
|
|
350
351
|
password?: string | undefined;
|
|
@@ -353,9 +354,9 @@ declare const ShopConfigSchema: z.ZodObject<{
|
|
|
353
354
|
url?: string | undefined;
|
|
354
355
|
username?: string | undefined;
|
|
355
356
|
tls?: boolean | undefined;
|
|
356
|
-
ttl?: number | undefined;
|
|
357
357
|
}, {
|
|
358
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";
|
|
359
|
+
ttl?: number | undefined;
|
|
359
360
|
port?: number | undefined;
|
|
360
361
|
host?: string | undefined;
|
|
361
362
|
password?: string | undefined;
|
|
@@ -364,11 +365,11 @@ declare const ShopConfigSchema: z.ZodObject<{
|
|
|
364
365
|
url?: string | undefined;
|
|
365
366
|
username?: string | undefined;
|
|
366
367
|
tls?: boolean | undefined;
|
|
367
|
-
ttl?: number | undefined;
|
|
368
368
|
}>>;
|
|
369
369
|
}, "strip", z.ZodTypeAny, {
|
|
370
370
|
session?: {
|
|
371
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";
|
|
372
|
+
ttl?: number | undefined;
|
|
372
373
|
port?: number | undefined;
|
|
373
374
|
host?: string | undefined;
|
|
374
375
|
password?: string | undefined;
|
|
@@ -377,10 +378,10 @@ declare const ShopConfigSchema: z.ZodObject<{
|
|
|
377
378
|
url?: string | undefined;
|
|
378
379
|
username?: string | undefined;
|
|
379
380
|
tls?: boolean | undefined;
|
|
380
|
-
ttl?: number | undefined;
|
|
381
381
|
} | undefined;
|
|
382
382
|
cache?: {
|
|
383
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";
|
|
384
|
+
ttl?: number | undefined;
|
|
384
385
|
port?: number | undefined;
|
|
385
386
|
host?: string | undefined;
|
|
386
387
|
password?: string | undefined;
|
|
@@ -389,11 +390,11 @@ declare const ShopConfigSchema: z.ZodObject<{
|
|
|
389
390
|
url?: string | undefined;
|
|
390
391
|
username?: string | undefined;
|
|
391
392
|
tls?: boolean | undefined;
|
|
392
|
-
ttl?: number | undefined;
|
|
393
393
|
} | undefined;
|
|
394
394
|
}, {
|
|
395
395
|
session?: {
|
|
396
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";
|
|
397
|
+
ttl?: number | undefined;
|
|
397
398
|
port?: number | undefined;
|
|
398
399
|
host?: string | undefined;
|
|
399
400
|
password?: string | undefined;
|
|
@@ -402,10 +403,10 @@ declare const ShopConfigSchema: z.ZodObject<{
|
|
|
402
403
|
url?: string | undefined;
|
|
403
404
|
username?: string | undefined;
|
|
404
405
|
tls?: boolean | undefined;
|
|
405
|
-
ttl?: number | undefined;
|
|
406
406
|
} | undefined;
|
|
407
407
|
cache?: {
|
|
408
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";
|
|
409
|
+
ttl?: number | undefined;
|
|
409
410
|
port?: number | undefined;
|
|
410
411
|
host?: string | undefined;
|
|
411
412
|
password?: string | undefined;
|
|
@@ -414,7 +415,6 @@ declare const ShopConfigSchema: z.ZodObject<{
|
|
|
414
415
|
url?: string | undefined;
|
|
415
416
|
username?: string | undefined;
|
|
416
417
|
tls?: boolean | undefined;
|
|
417
|
-
ttl?: number | undefined;
|
|
418
418
|
} | undefined;
|
|
419
419
|
}>>;
|
|
420
420
|
isDefault: z.ZodUnion<[z.ZodOptional<z.ZodBoolean>, z.ZodEffects<z.ZodString, "", string>]>;
|
|
@@ -461,22 +461,28 @@ declare const ShopConfigSchema: z.ZodObject<{
|
|
|
461
461
|
*/
|
|
462
462
|
storeCampaignKeyword: z.ZodOptional<z.ZodString>;
|
|
463
463
|
}, "strip", z.ZodTypeAny, {
|
|
464
|
-
shopId: number;
|
|
465
464
|
locale: string;
|
|
466
|
-
auth: {
|
|
467
|
-
resetPasswordUrl: string;
|
|
468
|
-
};
|
|
469
|
-
currency: string;
|
|
470
465
|
checkout: {
|
|
471
|
-
host: string;
|
|
472
466
|
user: string | number;
|
|
467
|
+
host: string;
|
|
473
468
|
secret: string;
|
|
474
469
|
token: string;
|
|
475
|
-
cbdExpiration?: number | undefined;
|
|
476
470
|
shopId?: number | undefined;
|
|
471
|
+
cbdExpiration?: number | undefined;
|
|
477
472
|
};
|
|
478
|
-
|
|
473
|
+
shopId: number;
|
|
474
|
+
auth: {
|
|
475
|
+
resetPasswordUrl: string;
|
|
476
|
+
};
|
|
477
|
+
currency: string;
|
|
479
478
|
domain?: string | undefined;
|
|
479
|
+
storeCampaignKeyword?: string | undefined;
|
|
480
|
+
idp?: {
|
|
481
|
+
enabled: boolean;
|
|
482
|
+
idpKeys: string[];
|
|
483
|
+
idpRedirectURL: string;
|
|
484
|
+
} | undefined;
|
|
485
|
+
path?: string | string[] | undefined;
|
|
480
486
|
redis?: {
|
|
481
487
|
port?: number | undefined;
|
|
482
488
|
host?: string | undefined;
|
|
@@ -490,11 +496,6 @@ declare const ShopConfigSchema: z.ZodObject<{
|
|
|
490
496
|
prefix?: string | undefined;
|
|
491
497
|
sslTransit?: boolean | undefined;
|
|
492
498
|
} | undefined;
|
|
493
|
-
idp?: {
|
|
494
|
-
enabled: boolean;
|
|
495
|
-
idpKeys: string[];
|
|
496
|
-
idpRedirectURL: string;
|
|
497
|
-
} | undefined;
|
|
498
499
|
apiBasePath?: string | undefined;
|
|
499
500
|
appKeys?: {
|
|
500
501
|
wishlistKey: string;
|
|
@@ -504,11 +505,11 @@ declare const ShopConfigSchema: z.ZodObject<{
|
|
|
504
505
|
currencyFractionDigits?: number | undefined;
|
|
505
506
|
isEnabled?: boolean | undefined;
|
|
506
507
|
sessionConfig?: {
|
|
508
|
+
domain?: string | undefined;
|
|
507
509
|
sameSite?: "lax" | "strict" | "none" | undefined;
|
|
508
510
|
maxAge?: number | undefined;
|
|
509
511
|
cookieName?: string | undefined;
|
|
510
512
|
secret?: string | string[] | undefined;
|
|
511
|
-
domain?: string | undefined;
|
|
512
513
|
provider?: "redis" | "memory" | undefined;
|
|
513
514
|
} | undefined;
|
|
514
515
|
sapi?: {
|
|
@@ -522,6 +523,7 @@ declare const ShopConfigSchema: z.ZodObject<{
|
|
|
522
523
|
storage?: {
|
|
523
524
|
session?: {
|
|
524
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";
|
|
526
|
+
ttl?: number | undefined;
|
|
525
527
|
port?: number | undefined;
|
|
526
528
|
host?: string | undefined;
|
|
527
529
|
password?: string | undefined;
|
|
@@ -530,10 +532,10 @@ declare const ShopConfigSchema: z.ZodObject<{
|
|
|
530
532
|
url?: string | undefined;
|
|
531
533
|
username?: string | undefined;
|
|
532
534
|
tls?: boolean | undefined;
|
|
533
|
-
ttl?: number | undefined;
|
|
534
535
|
} | undefined;
|
|
535
536
|
cache?: {
|
|
536
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";
|
|
538
|
+
ttl?: number | undefined;
|
|
537
539
|
port?: number | undefined;
|
|
538
540
|
host?: string | undefined;
|
|
539
541
|
password?: string | undefined;
|
|
@@ -542,28 +544,32 @@ declare const ShopConfigSchema: z.ZodObject<{
|
|
|
542
544
|
url?: string | undefined;
|
|
543
545
|
username?: string | undefined;
|
|
544
546
|
tls?: boolean | undefined;
|
|
545
|
-
ttl?: number | undefined;
|
|
546
547
|
} | undefined;
|
|
547
548
|
} | undefined;
|
|
548
549
|
isDefault?: boolean | "" | undefined;
|
|
549
|
-
storeCampaignKeyword?: string | undefined;
|
|
550
550
|
}, {
|
|
551
|
-
shopId: number;
|
|
552
551
|
locale: string;
|
|
553
|
-
auth: {
|
|
554
|
-
resetPasswordUrl: string;
|
|
555
|
-
};
|
|
556
|
-
currency: string;
|
|
557
552
|
checkout: {
|
|
558
|
-
host: string;
|
|
559
553
|
user: string | number;
|
|
554
|
+
host: string;
|
|
560
555
|
secret: string;
|
|
561
556
|
token: string;
|
|
562
|
-
cbdExpiration?: number | undefined;
|
|
563
557
|
shopId?: number | undefined;
|
|
558
|
+
cbdExpiration?: number | undefined;
|
|
564
559
|
};
|
|
565
|
-
|
|
560
|
+
shopId: number;
|
|
561
|
+
auth: {
|
|
562
|
+
resetPasswordUrl: string;
|
|
563
|
+
};
|
|
564
|
+
currency: string;
|
|
566
565
|
domain?: string | undefined;
|
|
566
|
+
storeCampaignKeyword?: string | undefined;
|
|
567
|
+
idp?: {
|
|
568
|
+
enabled: boolean;
|
|
569
|
+
idpKeys: string[];
|
|
570
|
+
idpRedirectURL: string;
|
|
571
|
+
} | undefined;
|
|
572
|
+
path?: string | string[] | undefined;
|
|
567
573
|
redis?: {
|
|
568
574
|
port?: number | undefined;
|
|
569
575
|
host?: string | undefined;
|
|
@@ -577,11 +583,6 @@ declare const ShopConfigSchema: z.ZodObject<{
|
|
|
577
583
|
prefix?: string | undefined;
|
|
578
584
|
sslTransit?: boolean | undefined;
|
|
579
585
|
} | undefined;
|
|
580
|
-
idp?: {
|
|
581
|
-
enabled: boolean;
|
|
582
|
-
idpKeys: string[];
|
|
583
|
-
idpRedirectURL: string;
|
|
584
|
-
} | undefined;
|
|
585
586
|
apiBasePath?: string | undefined;
|
|
586
587
|
appKeys?: {
|
|
587
588
|
wishlistKey: string;
|
|
@@ -591,11 +592,11 @@ declare const ShopConfigSchema: z.ZodObject<{
|
|
|
591
592
|
currencyFractionDigits?: number | undefined;
|
|
592
593
|
isEnabled?: boolean | undefined;
|
|
593
594
|
sessionConfig?: {
|
|
595
|
+
domain?: string | undefined;
|
|
594
596
|
sameSite?: "lax" | "strict" | "none" | undefined;
|
|
595
597
|
maxAge?: number | undefined;
|
|
596
598
|
cookieName?: string | undefined;
|
|
597
599
|
secret?: string | string[] | undefined;
|
|
598
|
-
domain?: string | undefined;
|
|
599
600
|
provider?: "redis" | "memory" | undefined;
|
|
600
601
|
} | undefined;
|
|
601
602
|
sapi?: {
|
|
@@ -609,6 +610,7 @@ declare const ShopConfigSchema: z.ZodObject<{
|
|
|
609
610
|
storage?: {
|
|
610
611
|
session?: {
|
|
611
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";
|
|
613
|
+
ttl?: number | undefined;
|
|
612
614
|
port?: number | undefined;
|
|
613
615
|
host?: string | undefined;
|
|
614
616
|
password?: string | undefined;
|
|
@@ -617,10 +619,10 @@ declare const ShopConfigSchema: z.ZodObject<{
|
|
|
617
619
|
url?: string | undefined;
|
|
618
620
|
username?: string | undefined;
|
|
619
621
|
tls?: boolean | undefined;
|
|
620
|
-
ttl?: number | undefined;
|
|
621
622
|
} | undefined;
|
|
622
623
|
cache?: {
|
|
623
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";
|
|
625
|
+
ttl?: number | undefined;
|
|
624
626
|
port?: number | undefined;
|
|
625
627
|
host?: string | undefined;
|
|
626
628
|
password?: string | undefined;
|
|
@@ -629,11 +631,9 @@ declare const ShopConfigSchema: z.ZodObject<{
|
|
|
629
631
|
url?: string | undefined;
|
|
630
632
|
username?: string | undefined;
|
|
631
633
|
tls?: boolean | undefined;
|
|
632
|
-
ttl?: number | undefined;
|
|
633
634
|
} | undefined;
|
|
634
635
|
} | undefined;
|
|
635
636
|
isDefault?: string | boolean | undefined;
|
|
636
|
-
storeCampaignKeyword?: string | undefined;
|
|
637
637
|
}>;
|
|
638
638
|
declare const ShopSelectorSchema: z.ZodEnum<["path", "domain", "path_or_default"]>;
|
|
639
639
|
type ShopConfigType = z.infer<typeof ShopConfigSchema>;
|
|
@@ -666,18 +666,18 @@ declare const StorefrontConfigSchema: z.ZodIntersection<z.ZodObject<{
|
|
|
666
666
|
*/
|
|
667
667
|
provider: z.ZodOptional<z.ZodEnum<["redis", "memory"]>>;
|
|
668
668
|
}, "strip", z.ZodTypeAny, {
|
|
669
|
+
domain?: string | undefined;
|
|
669
670
|
sameSite?: "lax" | "strict" | "none" | undefined;
|
|
670
671
|
maxAge?: number | undefined;
|
|
671
672
|
cookieName?: string | undefined;
|
|
672
673
|
secret?: string | string[] | undefined;
|
|
673
|
-
domain?: string | undefined;
|
|
674
674
|
provider?: "redis" | "memory" | undefined;
|
|
675
675
|
}, {
|
|
676
|
+
domain?: string | undefined;
|
|
676
677
|
sameSite?: "lax" | "strict" | "none" | undefined;
|
|
677
678
|
maxAge?: number | undefined;
|
|
678
679
|
cookieName?: string | undefined;
|
|
679
680
|
secret?: string | string[] | undefined;
|
|
680
|
-
domain?: string | undefined;
|
|
681
681
|
provider?: "redis" | "memory" | undefined;
|
|
682
682
|
}>>;
|
|
683
683
|
storage: z.ZodOptional<z.ZodObject<{
|
|
@@ -694,6 +694,7 @@ declare const StorefrontConfigSchema: z.ZodIntersection<z.ZodObject<{
|
|
|
694
694
|
ttl: z.ZodOptional<z.ZodNumber>;
|
|
695
695
|
}, "strip", z.ZodTypeAny, {
|
|
696
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";
|
|
697
|
+
ttl?: number | undefined;
|
|
697
698
|
port?: number | undefined;
|
|
698
699
|
host?: string | undefined;
|
|
699
700
|
password?: string | undefined;
|
|
@@ -702,9 +703,9 @@ declare const StorefrontConfigSchema: z.ZodIntersection<z.ZodObject<{
|
|
|
702
703
|
url?: string | undefined;
|
|
703
704
|
username?: string | undefined;
|
|
704
705
|
tls?: boolean | undefined;
|
|
705
|
-
ttl?: number | undefined;
|
|
706
706
|
}, {
|
|
707
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";
|
|
708
|
+
ttl?: number | undefined;
|
|
708
709
|
port?: number | undefined;
|
|
709
710
|
host?: string | undefined;
|
|
710
711
|
password?: string | undefined;
|
|
@@ -713,7 +714,6 @@ declare const StorefrontConfigSchema: z.ZodIntersection<z.ZodObject<{
|
|
|
713
714
|
url?: string | undefined;
|
|
714
715
|
username?: string | undefined;
|
|
715
716
|
tls?: boolean | undefined;
|
|
716
|
-
ttl?: number | undefined;
|
|
717
717
|
}>>;
|
|
718
718
|
cache: z.ZodOptional<z.ZodObject<{
|
|
719
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")[]]>;
|
|
@@ -728,6 +728,7 @@ declare const StorefrontConfigSchema: z.ZodIntersection<z.ZodObject<{
|
|
|
728
728
|
ttl: z.ZodOptional<z.ZodNumber>;
|
|
729
729
|
}, "strip", z.ZodTypeAny, {
|
|
730
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";
|
|
731
|
+
ttl?: number | undefined;
|
|
731
732
|
port?: number | undefined;
|
|
732
733
|
host?: string | undefined;
|
|
733
734
|
password?: string | undefined;
|
|
@@ -736,9 +737,9 @@ declare const StorefrontConfigSchema: z.ZodIntersection<z.ZodObject<{
|
|
|
736
737
|
url?: string | undefined;
|
|
737
738
|
username?: string | undefined;
|
|
738
739
|
tls?: boolean | undefined;
|
|
739
|
-
ttl?: number | undefined;
|
|
740
740
|
}, {
|
|
741
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";
|
|
742
|
+
ttl?: number | undefined;
|
|
742
743
|
port?: number | undefined;
|
|
743
744
|
host?: string | undefined;
|
|
744
745
|
password?: string | undefined;
|
|
@@ -747,11 +748,11 @@ declare const StorefrontConfigSchema: z.ZodIntersection<z.ZodObject<{
|
|
|
747
748
|
url?: string | undefined;
|
|
748
749
|
username?: string | undefined;
|
|
749
750
|
tls?: boolean | undefined;
|
|
750
|
-
ttl?: number | undefined;
|
|
751
751
|
}>>;
|
|
752
752
|
}, "strip", z.ZodTypeAny, {
|
|
753
753
|
session?: {
|
|
754
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";
|
|
755
|
+
ttl?: number | undefined;
|
|
755
756
|
port?: number | undefined;
|
|
756
757
|
host?: string | undefined;
|
|
757
758
|
password?: string | undefined;
|
|
@@ -760,10 +761,10 @@ declare const StorefrontConfigSchema: z.ZodIntersection<z.ZodObject<{
|
|
|
760
761
|
url?: string | undefined;
|
|
761
762
|
username?: string | undefined;
|
|
762
763
|
tls?: boolean | undefined;
|
|
763
|
-
ttl?: number | undefined;
|
|
764
764
|
} | undefined;
|
|
765
765
|
cache?: {
|
|
766
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";
|
|
767
|
+
ttl?: number | undefined;
|
|
767
768
|
port?: number | undefined;
|
|
768
769
|
host?: string | undefined;
|
|
769
770
|
password?: string | undefined;
|
|
@@ -772,11 +773,11 @@ declare const StorefrontConfigSchema: z.ZodIntersection<z.ZodObject<{
|
|
|
772
773
|
url?: string | undefined;
|
|
773
774
|
username?: string | undefined;
|
|
774
775
|
tls?: boolean | undefined;
|
|
775
|
-
ttl?: number | undefined;
|
|
776
776
|
} | undefined;
|
|
777
777
|
}, {
|
|
778
778
|
session?: {
|
|
779
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";
|
|
780
|
+
ttl?: number | undefined;
|
|
780
781
|
port?: number | undefined;
|
|
781
782
|
host?: string | undefined;
|
|
782
783
|
password?: string | undefined;
|
|
@@ -785,10 +786,10 @@ declare const StorefrontConfigSchema: z.ZodIntersection<z.ZodObject<{
|
|
|
785
786
|
url?: string | undefined;
|
|
786
787
|
username?: string | undefined;
|
|
787
788
|
tls?: boolean | undefined;
|
|
788
|
-
ttl?: number | undefined;
|
|
789
789
|
} | undefined;
|
|
790
790
|
cache?: {
|
|
791
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";
|
|
792
|
+
ttl?: number | undefined;
|
|
792
793
|
port?: number | undefined;
|
|
793
794
|
host?: string | undefined;
|
|
794
795
|
password?: string | undefined;
|
|
@@ -797,7 +798,6 @@ declare const StorefrontConfigSchema: z.ZodIntersection<z.ZodObject<{
|
|
|
797
798
|
url?: string | undefined;
|
|
798
799
|
username?: string | undefined;
|
|
799
800
|
tls?: boolean | undefined;
|
|
800
|
-
ttl?: number | undefined;
|
|
801
801
|
} | undefined;
|
|
802
802
|
}>>;
|
|
803
803
|
oauth: z.ZodObject<{
|
|
@@ -845,19 +845,19 @@ declare const StorefrontConfigSchema: z.ZodIntersection<z.ZodObject<{
|
|
|
845
845
|
*/
|
|
846
846
|
provider: z.ZodOptional<z.ZodEnum<["redis", "memory"]>>;
|
|
847
847
|
}, "strip", z.ZodTypeAny, {
|
|
848
|
-
enabled?: boolean | undefined;
|
|
849
|
-
provider?: "redis" | "memory" | undefined;
|
|
850
848
|
auth?: {
|
|
851
849
|
password: string;
|
|
852
850
|
username: string;
|
|
853
851
|
} | undefined;
|
|
854
|
-
}, {
|
|
855
852
|
enabled?: boolean | undefined;
|
|
856
853
|
provider?: "redis" | "memory" | undefined;
|
|
854
|
+
}, {
|
|
857
855
|
auth?: {
|
|
858
856
|
password: string;
|
|
859
857
|
username: string;
|
|
860
858
|
} | undefined;
|
|
859
|
+
enabled?: boolean | undefined;
|
|
860
|
+
provider?: "redis" | "memory" | undefined;
|
|
861
861
|
}>>;
|
|
862
862
|
publicShopData: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
863
863
|
idp: z.ZodOptional<z.ZodObject<{
|
|
@@ -914,16 +914,22 @@ declare const StorefrontConfigSchema: z.ZodIntersection<z.ZodObject<{
|
|
|
914
914
|
/** Undocumented property intended for internal usage only */
|
|
915
915
|
internalAccessHeader: z.ZodOptional<z.ZodString>;
|
|
916
916
|
}, "strip", z.ZodTypeAny, {
|
|
917
|
-
appKeys: {
|
|
918
|
-
wishlistKey: string;
|
|
919
|
-
basketKey: string;
|
|
920
|
-
hashAlgorithm: "none" | "md5" | "sha256";
|
|
921
|
-
};
|
|
922
917
|
oauth: {
|
|
923
918
|
apiHost: string;
|
|
924
919
|
clientId: string | number;
|
|
925
920
|
clientSecret: string;
|
|
926
921
|
};
|
|
922
|
+
appKeys: {
|
|
923
|
+
wishlistKey: string;
|
|
924
|
+
basketKey: string;
|
|
925
|
+
hashAlgorithm: "none" | "md5" | "sha256";
|
|
926
|
+
};
|
|
927
|
+
idp?: {
|
|
928
|
+
enabled: boolean;
|
|
929
|
+
idpKeys: string[];
|
|
930
|
+
idpRedirectURL: string;
|
|
931
|
+
} | undefined;
|
|
932
|
+
internalAccessHeader?: string | undefined;
|
|
927
933
|
redis?: {
|
|
928
934
|
port?: number | undefined;
|
|
929
935
|
host?: string | undefined;
|
|
@@ -937,31 +943,27 @@ declare const StorefrontConfigSchema: z.ZodIntersection<z.ZodObject<{
|
|
|
937
943
|
prefix?: string | undefined;
|
|
938
944
|
sslTransit?: boolean | undefined;
|
|
939
945
|
} | undefined;
|
|
940
|
-
idp?: {
|
|
941
|
-
enabled: boolean;
|
|
942
|
-
idpKeys: string[];
|
|
943
|
-
idpRedirectURL: string;
|
|
944
|
-
} | undefined;
|
|
945
946
|
apiBasePath?: string | undefined;
|
|
946
947
|
session?: {
|
|
948
|
+
domain?: string | undefined;
|
|
947
949
|
sameSite?: "lax" | "strict" | "none" | undefined;
|
|
948
950
|
maxAge?: number | undefined;
|
|
949
951
|
cookieName?: string | undefined;
|
|
950
952
|
secret?: string | string[] | undefined;
|
|
951
|
-
domain?: string | undefined;
|
|
952
953
|
provider?: "redis" | "memory" | undefined;
|
|
953
954
|
} | undefined;
|
|
954
955
|
cache?: {
|
|
955
|
-
enabled?: boolean | undefined;
|
|
956
|
-
provider?: "redis" | "memory" | undefined;
|
|
957
956
|
auth?: {
|
|
958
957
|
password: string;
|
|
959
958
|
username: string;
|
|
960
959
|
} | undefined;
|
|
960
|
+
enabled?: boolean | undefined;
|
|
961
|
+
provider?: "redis" | "memory" | undefined;
|
|
961
962
|
} | undefined;
|
|
962
963
|
storage?: {
|
|
963
964
|
session?: {
|
|
964
965
|
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";
|
|
966
|
+
ttl?: number | undefined;
|
|
965
967
|
port?: number | undefined;
|
|
966
968
|
host?: string | undefined;
|
|
967
969
|
password?: string | undefined;
|
|
@@ -970,10 +972,10 @@ declare const StorefrontConfigSchema: z.ZodIntersection<z.ZodObject<{
|
|
|
970
972
|
url?: string | undefined;
|
|
971
973
|
username?: string | undefined;
|
|
972
974
|
tls?: boolean | undefined;
|
|
973
|
-
ttl?: number | undefined;
|
|
974
975
|
} | undefined;
|
|
975
976
|
cache?: {
|
|
976
977
|
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";
|
|
978
|
+
ttl?: number | undefined;
|
|
977
979
|
port?: number | undefined;
|
|
978
980
|
host?: string | undefined;
|
|
979
981
|
password?: string | undefined;
|
|
@@ -982,22 +984,26 @@ declare const StorefrontConfigSchema: z.ZodIntersection<z.ZodObject<{
|
|
|
982
984
|
url?: string | undefined;
|
|
983
985
|
username?: string | undefined;
|
|
984
986
|
tls?: boolean | undefined;
|
|
985
|
-
ttl?: number | undefined;
|
|
986
987
|
} | undefined;
|
|
987
988
|
} | undefined;
|
|
988
989
|
publicShopData?: string[] | undefined;
|
|
989
|
-
internalAccessHeader?: string | undefined;
|
|
990
990
|
}, {
|
|
991
|
-
appKeys: {
|
|
992
|
-
wishlistKey: string;
|
|
993
|
-
basketKey: string;
|
|
994
|
-
hashAlgorithm: "none" | "md5" | "sha256";
|
|
995
|
-
};
|
|
996
991
|
oauth: {
|
|
997
992
|
apiHost: string;
|
|
998
993
|
clientId: string | number;
|
|
999
994
|
clientSecret: string;
|
|
1000
995
|
};
|
|
996
|
+
appKeys: {
|
|
997
|
+
wishlistKey: string;
|
|
998
|
+
basketKey: string;
|
|
999
|
+
hashAlgorithm: "none" | "md5" | "sha256";
|
|
1000
|
+
};
|
|
1001
|
+
idp?: {
|
|
1002
|
+
enabled: boolean;
|
|
1003
|
+
idpKeys: string[];
|
|
1004
|
+
idpRedirectURL: string;
|
|
1005
|
+
} | undefined;
|
|
1006
|
+
internalAccessHeader?: string | undefined;
|
|
1001
1007
|
redis?: {
|
|
1002
1008
|
port?: number | undefined;
|
|
1003
1009
|
host?: string | undefined;
|
|
@@ -1011,31 +1017,27 @@ declare const StorefrontConfigSchema: z.ZodIntersection<z.ZodObject<{
|
|
|
1011
1017
|
prefix?: string | undefined;
|
|
1012
1018
|
sslTransit?: boolean | undefined;
|
|
1013
1019
|
} | undefined;
|
|
1014
|
-
idp?: {
|
|
1015
|
-
enabled: boolean;
|
|
1016
|
-
idpKeys: string[];
|
|
1017
|
-
idpRedirectURL: string;
|
|
1018
|
-
} | undefined;
|
|
1019
1020
|
apiBasePath?: string | undefined;
|
|
1020
1021
|
session?: {
|
|
1022
|
+
domain?: string | undefined;
|
|
1021
1023
|
sameSite?: "lax" | "strict" | "none" | undefined;
|
|
1022
1024
|
maxAge?: number | undefined;
|
|
1023
1025
|
cookieName?: string | undefined;
|
|
1024
1026
|
secret?: string | string[] | undefined;
|
|
1025
|
-
domain?: string | undefined;
|
|
1026
1027
|
provider?: "redis" | "memory" | undefined;
|
|
1027
1028
|
} | undefined;
|
|
1028
1029
|
cache?: {
|
|
1029
|
-
enabled?: boolean | undefined;
|
|
1030
|
-
provider?: "redis" | "memory" | undefined;
|
|
1031
1030
|
auth?: {
|
|
1032
1031
|
password: string;
|
|
1033
1032
|
username: string;
|
|
1034
1033
|
} | undefined;
|
|
1034
|
+
enabled?: boolean | undefined;
|
|
1035
|
+
provider?: "redis" | "memory" | undefined;
|
|
1035
1036
|
} | undefined;
|
|
1036
1037
|
storage?: {
|
|
1037
1038
|
session?: {
|
|
1038
1039
|
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";
|
|
1040
|
+
ttl?: number | undefined;
|
|
1039
1041
|
port?: number | undefined;
|
|
1040
1042
|
host?: string | undefined;
|
|
1041
1043
|
password?: string | undefined;
|
|
@@ -1044,10 +1046,10 @@ declare const StorefrontConfigSchema: z.ZodIntersection<z.ZodObject<{
|
|
|
1044
1046
|
url?: string | undefined;
|
|
1045
1047
|
username?: string | undefined;
|
|
1046
1048
|
tls?: boolean | undefined;
|
|
1047
|
-
ttl?: number | undefined;
|
|
1048
1049
|
} | undefined;
|
|
1049
1050
|
cache?: {
|
|
1050
1051
|
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";
|
|
1052
|
+
ttl?: number | undefined;
|
|
1051
1053
|
port?: number | undefined;
|
|
1052
1054
|
host?: string | undefined;
|
|
1053
1055
|
password?: string | undefined;
|
|
@@ -1056,11 +1058,9 @@ declare const StorefrontConfigSchema: z.ZodIntersection<z.ZodObject<{
|
|
|
1056
1058
|
url?: string | undefined;
|
|
1057
1059
|
username?: string | undefined;
|
|
1058
1060
|
tls?: boolean | undefined;
|
|
1059
|
-
ttl?: number | undefined;
|
|
1060
1061
|
} | undefined;
|
|
1061
1062
|
} | undefined;
|
|
1062
1063
|
publicShopData?: string[] | undefined;
|
|
1063
|
-
internalAccessHeader?: string | undefined;
|
|
1064
1064
|
}>, z.ZodUnion<[z.ZodObject<{
|
|
1065
1065
|
sapi: z.ZodObject<{
|
|
1066
1066
|
host: z.ZodString;
|
|
@@ -1152,13 +1152,13 @@ export declare const RuntimeConfigSchema: z.ZodObject<{
|
|
|
1152
1152
|
queryParamWhitelist?: string[] | undefined;
|
|
1153
1153
|
}>>;
|
|
1154
1154
|
}, "strip", z.ZodTypeAny, {
|
|
1155
|
-
shopSelector: "
|
|
1155
|
+
shopSelector: "domain" | "path" | "path_or_default";
|
|
1156
1156
|
redirects?: {
|
|
1157
1157
|
enabled: boolean;
|
|
1158
1158
|
queryParamWhitelist?: string[] | undefined;
|
|
1159
1159
|
} | undefined;
|
|
1160
1160
|
}, {
|
|
1161
|
-
shopSelector: "
|
|
1161
|
+
shopSelector: "domain" | "path" | "path_or_default";
|
|
1162
1162
|
redirects?: {
|
|
1163
1163
|
enabled: boolean;
|
|
1164
1164
|
queryParamWhitelist?: string[] | undefined;
|
|
@@ -1202,19 +1202,19 @@ export declare const RuntimeConfigSchema: z.ZodObject<{
|
|
|
1202
1202
|
cbdExpiration: z.ZodOptional<z.ZodNumber>;
|
|
1203
1203
|
shopId: z.ZodOptional<z.ZodNumber>;
|
|
1204
1204
|
}, "strip", z.ZodTypeAny, {
|
|
1205
|
-
host: string;
|
|
1206
1205
|
user: string | number;
|
|
1206
|
+
host: string;
|
|
1207
1207
|
secret: string;
|
|
1208
1208
|
token: string;
|
|
1209
|
-
cbdExpiration?: number | undefined;
|
|
1210
1209
|
shopId?: number | undefined;
|
|
1210
|
+
cbdExpiration?: number | undefined;
|
|
1211
1211
|
}, {
|
|
1212
|
-
host: string;
|
|
1213
1212
|
user: string | number;
|
|
1213
|
+
host: string;
|
|
1214
1214
|
secret: string;
|
|
1215
1215
|
token: string;
|
|
1216
|
-
cbdExpiration?: number | undefined;
|
|
1217
1216
|
shopId?: number | undefined;
|
|
1217
|
+
cbdExpiration?: number | undefined;
|
|
1218
1218
|
}>;
|
|
1219
1219
|
appKeys: z.ZodOptional<z.ZodObject<{
|
|
1220
1220
|
wishlistKey: z.ZodString;
|
|
@@ -1259,18 +1259,18 @@ export declare const RuntimeConfigSchema: z.ZodObject<{
|
|
|
1259
1259
|
*/
|
|
1260
1260
|
provider: z.ZodOptional<z.ZodEnum<["redis", "memory"]>>;
|
|
1261
1261
|
}, "strip", z.ZodTypeAny, {
|
|
1262
|
+
domain?: string | undefined;
|
|
1262
1263
|
sameSite?: "lax" | "strict" | "none" | undefined;
|
|
1263
1264
|
maxAge?: number | undefined;
|
|
1264
1265
|
cookieName?: string | undefined;
|
|
1265
1266
|
secret?: string | string[] | undefined;
|
|
1266
|
-
domain?: string | undefined;
|
|
1267
1267
|
provider?: "redis" | "memory" | undefined;
|
|
1268
1268
|
}, {
|
|
1269
|
+
domain?: string | undefined;
|
|
1269
1270
|
sameSite?: "lax" | "strict" | "none" | undefined;
|
|
1270
1271
|
maxAge?: number | undefined;
|
|
1271
1272
|
cookieName?: string | undefined;
|
|
1272
1273
|
secret?: string | string[] | undefined;
|
|
1273
|
-
domain?: string | undefined;
|
|
1274
1274
|
provider?: "redis" | "memory" | undefined;
|
|
1275
1275
|
}>>;
|
|
1276
1276
|
sapi: z.ZodOptional<z.ZodObject<{
|
|
@@ -1307,6 +1307,7 @@ export declare const RuntimeConfigSchema: z.ZodObject<{
|
|
|
1307
1307
|
ttl: z.ZodOptional<z.ZodNumber>;
|
|
1308
1308
|
}, "strip", z.ZodTypeAny, {
|
|
1309
1309
|
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";
|
|
1310
|
+
ttl?: number | undefined;
|
|
1310
1311
|
port?: number | undefined;
|
|
1311
1312
|
host?: string | undefined;
|
|
1312
1313
|
password?: string | undefined;
|
|
@@ -1315,9 +1316,9 @@ export declare const RuntimeConfigSchema: z.ZodObject<{
|
|
|
1315
1316
|
url?: string | undefined;
|
|
1316
1317
|
username?: string | undefined;
|
|
1317
1318
|
tls?: boolean | undefined;
|
|
1318
|
-
ttl?: number | undefined;
|
|
1319
1319
|
}, {
|
|
1320
1320
|
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";
|
|
1321
|
+
ttl?: number | undefined;
|
|
1321
1322
|
port?: number | undefined;
|
|
1322
1323
|
host?: string | undefined;
|
|
1323
1324
|
password?: string | undefined;
|
|
@@ -1326,7 +1327,6 @@ export declare const RuntimeConfigSchema: z.ZodObject<{
|
|
|
1326
1327
|
url?: string | undefined;
|
|
1327
1328
|
username?: string | undefined;
|
|
1328
1329
|
tls?: boolean | undefined;
|
|
1329
|
-
ttl?: number | undefined;
|
|
1330
1330
|
}>>;
|
|
1331
1331
|
cache: z.ZodOptional<z.ZodObject<{
|
|
1332
1332
|
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")[]]>;
|
|
@@ -1341,6 +1341,7 @@ export declare const RuntimeConfigSchema: z.ZodObject<{
|
|
|
1341
1341
|
ttl: z.ZodOptional<z.ZodNumber>;
|
|
1342
1342
|
}, "strip", z.ZodTypeAny, {
|
|
1343
1343
|
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";
|
|
1344
|
+
ttl?: number | undefined;
|
|
1344
1345
|
port?: number | undefined;
|
|
1345
1346
|
host?: string | undefined;
|
|
1346
1347
|
password?: string | undefined;
|
|
@@ -1349,9 +1350,9 @@ export declare const RuntimeConfigSchema: z.ZodObject<{
|
|
|
1349
1350
|
url?: string | undefined;
|
|
1350
1351
|
username?: string | undefined;
|
|
1351
1352
|
tls?: boolean | undefined;
|
|
1352
|
-
ttl?: number | undefined;
|
|
1353
1353
|
}, {
|
|
1354
1354
|
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";
|
|
1355
|
+
ttl?: number | undefined;
|
|
1355
1356
|
port?: number | undefined;
|
|
1356
1357
|
host?: string | undefined;
|
|
1357
1358
|
password?: string | undefined;
|
|
@@ -1360,11 +1361,11 @@ export declare const RuntimeConfigSchema: z.ZodObject<{
|
|
|
1360
1361
|
url?: string | undefined;
|
|
1361
1362
|
username?: string | undefined;
|
|
1362
1363
|
tls?: boolean | undefined;
|
|
1363
|
-
ttl?: number | undefined;
|
|
1364
1364
|
}>>;
|
|
1365
1365
|
}, "strip", z.ZodTypeAny, {
|
|
1366
1366
|
session?: {
|
|
1367
1367
|
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";
|
|
1368
|
+
ttl?: number | undefined;
|
|
1368
1369
|
port?: number | undefined;
|
|
1369
1370
|
host?: string | undefined;
|
|
1370
1371
|
password?: string | undefined;
|
|
@@ -1373,10 +1374,10 @@ export declare const RuntimeConfigSchema: z.ZodObject<{
|
|
|
1373
1374
|
url?: string | undefined;
|
|
1374
1375
|
username?: string | undefined;
|
|
1375
1376
|
tls?: boolean | undefined;
|
|
1376
|
-
ttl?: number | undefined;
|
|
1377
1377
|
} | undefined;
|
|
1378
1378
|
cache?: {
|
|
1379
1379
|
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";
|
|
1380
|
+
ttl?: number | undefined;
|
|
1380
1381
|
port?: number | undefined;
|
|
1381
1382
|
host?: string | undefined;
|
|
1382
1383
|
password?: string | undefined;
|
|
@@ -1385,11 +1386,11 @@ export declare const RuntimeConfigSchema: z.ZodObject<{
|
|
|
1385
1386
|
url?: string | undefined;
|
|
1386
1387
|
username?: string | undefined;
|
|
1387
1388
|
tls?: boolean | undefined;
|
|
1388
|
-
ttl?: number | undefined;
|
|
1389
1389
|
} | undefined;
|
|
1390
1390
|
}, {
|
|
1391
1391
|
session?: {
|
|
1392
1392
|
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";
|
|
1393
|
+
ttl?: number | undefined;
|
|
1393
1394
|
port?: number | undefined;
|
|
1394
1395
|
host?: string | undefined;
|
|
1395
1396
|
password?: string | undefined;
|
|
@@ -1398,10 +1399,10 @@ export declare const RuntimeConfigSchema: z.ZodObject<{
|
|
|
1398
1399
|
url?: string | undefined;
|
|
1399
1400
|
username?: string | undefined;
|
|
1400
1401
|
tls?: boolean | undefined;
|
|
1401
|
-
ttl?: number | undefined;
|
|
1402
1402
|
} | undefined;
|
|
1403
1403
|
cache?: {
|
|
1404
1404
|
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";
|
|
1405
|
+
ttl?: number | undefined;
|
|
1405
1406
|
port?: number | undefined;
|
|
1406
1407
|
host?: string | undefined;
|
|
1407
1408
|
password?: string | undefined;
|
|
@@ -1410,7 +1411,6 @@ export declare const RuntimeConfigSchema: z.ZodObject<{
|
|
|
1410
1411
|
url?: string | undefined;
|
|
1411
1412
|
username?: string | undefined;
|
|
1412
1413
|
tls?: boolean | undefined;
|
|
1413
|
-
ttl?: number | undefined;
|
|
1414
1414
|
} | undefined;
|
|
1415
1415
|
}>>;
|
|
1416
1416
|
isDefault: z.ZodUnion<[z.ZodOptional<z.ZodBoolean>, z.ZodEffects<z.ZodString, "", string>]>;
|
|
@@ -1457,22 +1457,28 @@ export declare const RuntimeConfigSchema: z.ZodObject<{
|
|
|
1457
1457
|
*/
|
|
1458
1458
|
storeCampaignKeyword: z.ZodOptional<z.ZodString>;
|
|
1459
1459
|
}, "strip", z.ZodTypeAny, {
|
|
1460
|
-
shopId: number;
|
|
1461
1460
|
locale: string;
|
|
1462
|
-
auth: {
|
|
1463
|
-
resetPasswordUrl: string;
|
|
1464
|
-
};
|
|
1465
|
-
currency: string;
|
|
1466
1461
|
checkout: {
|
|
1467
|
-
host: string;
|
|
1468
1462
|
user: string | number;
|
|
1463
|
+
host: string;
|
|
1469
1464
|
secret: string;
|
|
1470
1465
|
token: string;
|
|
1471
|
-
cbdExpiration?: number | undefined;
|
|
1472
1466
|
shopId?: number | undefined;
|
|
1467
|
+
cbdExpiration?: number | undefined;
|
|
1473
1468
|
};
|
|
1474
|
-
|
|
1469
|
+
shopId: number;
|
|
1470
|
+
auth: {
|
|
1471
|
+
resetPasswordUrl: string;
|
|
1472
|
+
};
|
|
1473
|
+
currency: string;
|
|
1475
1474
|
domain?: string | undefined;
|
|
1475
|
+
storeCampaignKeyword?: string | undefined;
|
|
1476
|
+
idp?: {
|
|
1477
|
+
enabled: boolean;
|
|
1478
|
+
idpKeys: string[];
|
|
1479
|
+
idpRedirectURL: string;
|
|
1480
|
+
} | undefined;
|
|
1481
|
+
path?: string | string[] | undefined;
|
|
1476
1482
|
redis?: {
|
|
1477
1483
|
port?: number | undefined;
|
|
1478
1484
|
host?: string | undefined;
|
|
@@ -1486,11 +1492,6 @@ export declare const RuntimeConfigSchema: z.ZodObject<{
|
|
|
1486
1492
|
prefix?: string | undefined;
|
|
1487
1493
|
sslTransit?: boolean | undefined;
|
|
1488
1494
|
} | undefined;
|
|
1489
|
-
idp?: {
|
|
1490
|
-
enabled: boolean;
|
|
1491
|
-
idpKeys: string[];
|
|
1492
|
-
idpRedirectURL: string;
|
|
1493
|
-
} | undefined;
|
|
1494
1495
|
apiBasePath?: string | undefined;
|
|
1495
1496
|
appKeys?: {
|
|
1496
1497
|
wishlistKey: string;
|
|
@@ -1500,11 +1501,11 @@ export declare const RuntimeConfigSchema: z.ZodObject<{
|
|
|
1500
1501
|
currencyFractionDigits?: number | undefined;
|
|
1501
1502
|
isEnabled?: boolean | undefined;
|
|
1502
1503
|
sessionConfig?: {
|
|
1504
|
+
domain?: string | undefined;
|
|
1503
1505
|
sameSite?: "lax" | "strict" | "none" | undefined;
|
|
1504
1506
|
maxAge?: number | undefined;
|
|
1505
1507
|
cookieName?: string | undefined;
|
|
1506
1508
|
secret?: string | string[] | undefined;
|
|
1507
|
-
domain?: string | undefined;
|
|
1508
1509
|
provider?: "redis" | "memory" | undefined;
|
|
1509
1510
|
} | undefined;
|
|
1510
1511
|
sapi?: {
|
|
@@ -1518,6 +1519,7 @@ export declare const RuntimeConfigSchema: z.ZodObject<{
|
|
|
1518
1519
|
storage?: {
|
|
1519
1520
|
session?: {
|
|
1520
1521
|
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";
|
|
1522
|
+
ttl?: number | undefined;
|
|
1521
1523
|
port?: number | undefined;
|
|
1522
1524
|
host?: string | undefined;
|
|
1523
1525
|
password?: string | undefined;
|
|
@@ -1526,10 +1528,10 @@ export declare const RuntimeConfigSchema: z.ZodObject<{
|
|
|
1526
1528
|
url?: string | undefined;
|
|
1527
1529
|
username?: string | undefined;
|
|
1528
1530
|
tls?: boolean | undefined;
|
|
1529
|
-
ttl?: number | undefined;
|
|
1530
1531
|
} | undefined;
|
|
1531
1532
|
cache?: {
|
|
1532
1533
|
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";
|
|
1534
|
+
ttl?: number | undefined;
|
|
1533
1535
|
port?: number | undefined;
|
|
1534
1536
|
host?: string | undefined;
|
|
1535
1537
|
password?: string | undefined;
|
|
@@ -1538,28 +1540,32 @@ export declare const RuntimeConfigSchema: z.ZodObject<{
|
|
|
1538
1540
|
url?: string | undefined;
|
|
1539
1541
|
username?: string | undefined;
|
|
1540
1542
|
tls?: boolean | undefined;
|
|
1541
|
-
ttl?: number | undefined;
|
|
1542
1543
|
} | undefined;
|
|
1543
1544
|
} | undefined;
|
|
1544
1545
|
isDefault?: boolean | "" | undefined;
|
|
1545
|
-
storeCampaignKeyword?: string | undefined;
|
|
1546
1546
|
}, {
|
|
1547
|
-
shopId: number;
|
|
1548
1547
|
locale: string;
|
|
1549
|
-
auth: {
|
|
1550
|
-
resetPasswordUrl: string;
|
|
1551
|
-
};
|
|
1552
|
-
currency: string;
|
|
1553
1548
|
checkout: {
|
|
1554
|
-
host: string;
|
|
1555
1549
|
user: string | number;
|
|
1550
|
+
host: string;
|
|
1556
1551
|
secret: string;
|
|
1557
1552
|
token: string;
|
|
1558
|
-
cbdExpiration?: number | undefined;
|
|
1559
1553
|
shopId?: number | undefined;
|
|
1554
|
+
cbdExpiration?: number | undefined;
|
|
1560
1555
|
};
|
|
1561
|
-
|
|
1556
|
+
shopId: number;
|
|
1557
|
+
auth: {
|
|
1558
|
+
resetPasswordUrl: string;
|
|
1559
|
+
};
|
|
1560
|
+
currency: string;
|
|
1562
1561
|
domain?: string | undefined;
|
|
1562
|
+
storeCampaignKeyword?: string | undefined;
|
|
1563
|
+
idp?: {
|
|
1564
|
+
enabled: boolean;
|
|
1565
|
+
idpKeys: string[];
|
|
1566
|
+
idpRedirectURL: string;
|
|
1567
|
+
} | undefined;
|
|
1568
|
+
path?: string | string[] | undefined;
|
|
1563
1569
|
redis?: {
|
|
1564
1570
|
port?: number | undefined;
|
|
1565
1571
|
host?: string | undefined;
|
|
@@ -1573,11 +1579,6 @@ export declare const RuntimeConfigSchema: z.ZodObject<{
|
|
|
1573
1579
|
prefix?: string | undefined;
|
|
1574
1580
|
sslTransit?: boolean | undefined;
|
|
1575
1581
|
} | undefined;
|
|
1576
|
-
idp?: {
|
|
1577
|
-
enabled: boolean;
|
|
1578
|
-
idpKeys: string[];
|
|
1579
|
-
idpRedirectURL: string;
|
|
1580
|
-
} | undefined;
|
|
1581
1582
|
apiBasePath?: string | undefined;
|
|
1582
1583
|
appKeys?: {
|
|
1583
1584
|
wishlistKey: string;
|
|
@@ -1587,11 +1588,11 @@ export declare const RuntimeConfigSchema: z.ZodObject<{
|
|
|
1587
1588
|
currencyFractionDigits?: number | undefined;
|
|
1588
1589
|
isEnabled?: boolean | undefined;
|
|
1589
1590
|
sessionConfig?: {
|
|
1591
|
+
domain?: string | undefined;
|
|
1590
1592
|
sameSite?: "lax" | "strict" | "none" | undefined;
|
|
1591
1593
|
maxAge?: number | undefined;
|
|
1592
1594
|
cookieName?: string | undefined;
|
|
1593
1595
|
secret?: string | string[] | undefined;
|
|
1594
|
-
domain?: string | undefined;
|
|
1595
1596
|
provider?: "redis" | "memory" | undefined;
|
|
1596
1597
|
} | undefined;
|
|
1597
1598
|
sapi?: {
|
|
@@ -1605,6 +1606,7 @@ export declare const RuntimeConfigSchema: z.ZodObject<{
|
|
|
1605
1606
|
storage?: {
|
|
1606
1607
|
session?: {
|
|
1607
1608
|
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";
|
|
1609
|
+
ttl?: number | undefined;
|
|
1608
1610
|
port?: number | undefined;
|
|
1609
1611
|
host?: string | undefined;
|
|
1610
1612
|
password?: string | undefined;
|
|
@@ -1613,10 +1615,10 @@ export declare const RuntimeConfigSchema: z.ZodObject<{
|
|
|
1613
1615
|
url?: string | undefined;
|
|
1614
1616
|
username?: string | undefined;
|
|
1615
1617
|
tls?: boolean | undefined;
|
|
1616
|
-
ttl?: number | undefined;
|
|
1617
1618
|
} | undefined;
|
|
1618
1619
|
cache?: {
|
|
1619
1620
|
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";
|
|
1621
|
+
ttl?: number | undefined;
|
|
1620
1622
|
port?: number | undefined;
|
|
1621
1623
|
host?: string | undefined;
|
|
1622
1624
|
password?: string | undefined;
|
|
@@ -1625,31 +1627,35 @@ export declare const RuntimeConfigSchema: z.ZodObject<{
|
|
|
1625
1627
|
url?: string | undefined;
|
|
1626
1628
|
username?: string | undefined;
|
|
1627
1629
|
tls?: boolean | undefined;
|
|
1628
|
-
ttl?: number | undefined;
|
|
1629
1630
|
} | undefined;
|
|
1630
1631
|
} | undefined;
|
|
1631
1632
|
isDefault?: string | boolean | undefined;
|
|
1632
|
-
storeCampaignKeyword?: string | undefined;
|
|
1633
1633
|
}>>;
|
|
1634
1634
|
shops: z.ZodUndefined;
|
|
1635
1635
|
}, "strip", z.ZodTypeAny, {
|
|
1636
1636
|
stores: Record<string, {
|
|
1637
|
-
shopId: number;
|
|
1638
1637
|
locale: string;
|
|
1639
|
-
auth: {
|
|
1640
|
-
resetPasswordUrl: string;
|
|
1641
|
-
};
|
|
1642
|
-
currency: string;
|
|
1643
1638
|
checkout: {
|
|
1644
|
-
host: string;
|
|
1645
1639
|
user: string | number;
|
|
1640
|
+
host: string;
|
|
1646
1641
|
secret: string;
|
|
1647
1642
|
token: string;
|
|
1648
|
-
cbdExpiration?: number | undefined;
|
|
1649
1643
|
shopId?: number | undefined;
|
|
1644
|
+
cbdExpiration?: number | undefined;
|
|
1650
1645
|
};
|
|
1651
|
-
|
|
1646
|
+
shopId: number;
|
|
1647
|
+
auth: {
|
|
1648
|
+
resetPasswordUrl: string;
|
|
1649
|
+
};
|
|
1650
|
+
currency: string;
|
|
1652
1651
|
domain?: string | undefined;
|
|
1652
|
+
storeCampaignKeyword?: string | undefined;
|
|
1653
|
+
idp?: {
|
|
1654
|
+
enabled: boolean;
|
|
1655
|
+
idpKeys: string[];
|
|
1656
|
+
idpRedirectURL: string;
|
|
1657
|
+
} | undefined;
|
|
1658
|
+
path?: string | string[] | undefined;
|
|
1653
1659
|
redis?: {
|
|
1654
1660
|
port?: number | undefined;
|
|
1655
1661
|
host?: string | undefined;
|
|
@@ -1663,11 +1669,6 @@ export declare const RuntimeConfigSchema: z.ZodObject<{
|
|
|
1663
1669
|
prefix?: string | undefined;
|
|
1664
1670
|
sslTransit?: boolean | undefined;
|
|
1665
1671
|
} | undefined;
|
|
1666
|
-
idp?: {
|
|
1667
|
-
enabled: boolean;
|
|
1668
|
-
idpKeys: string[];
|
|
1669
|
-
idpRedirectURL: string;
|
|
1670
|
-
} | undefined;
|
|
1671
1672
|
apiBasePath?: string | undefined;
|
|
1672
1673
|
appKeys?: {
|
|
1673
1674
|
wishlistKey: string;
|
|
@@ -1677,11 +1678,11 @@ export declare const RuntimeConfigSchema: z.ZodObject<{
|
|
|
1677
1678
|
currencyFractionDigits?: number | undefined;
|
|
1678
1679
|
isEnabled?: boolean | undefined;
|
|
1679
1680
|
sessionConfig?: {
|
|
1681
|
+
domain?: string | undefined;
|
|
1680
1682
|
sameSite?: "lax" | "strict" | "none" | undefined;
|
|
1681
1683
|
maxAge?: number | undefined;
|
|
1682
1684
|
cookieName?: string | undefined;
|
|
1683
1685
|
secret?: string | string[] | undefined;
|
|
1684
|
-
domain?: string | undefined;
|
|
1685
1686
|
provider?: "redis" | "memory" | undefined;
|
|
1686
1687
|
} | undefined;
|
|
1687
1688
|
sapi?: {
|
|
@@ -1695,6 +1696,7 @@ export declare const RuntimeConfigSchema: z.ZodObject<{
|
|
|
1695
1696
|
storage?: {
|
|
1696
1697
|
session?: {
|
|
1697
1698
|
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";
|
|
1699
|
+
ttl?: number | undefined;
|
|
1698
1700
|
port?: number | undefined;
|
|
1699
1701
|
host?: string | undefined;
|
|
1700
1702
|
password?: string | undefined;
|
|
@@ -1703,10 +1705,10 @@ export declare const RuntimeConfigSchema: z.ZodObject<{
|
|
|
1703
1705
|
url?: string | undefined;
|
|
1704
1706
|
username?: string | undefined;
|
|
1705
1707
|
tls?: boolean | undefined;
|
|
1706
|
-
ttl?: number | undefined;
|
|
1707
1708
|
} | undefined;
|
|
1708
1709
|
cache?: {
|
|
1709
1710
|
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";
|
|
1711
|
+
ttl?: number | undefined;
|
|
1710
1712
|
port?: number | undefined;
|
|
1711
1713
|
host?: string | undefined;
|
|
1712
1714
|
password?: string | undefined;
|
|
@@ -1715,31 +1717,35 @@ export declare const RuntimeConfigSchema: z.ZodObject<{
|
|
|
1715
1717
|
url?: string | undefined;
|
|
1716
1718
|
username?: string | undefined;
|
|
1717
1719
|
tls?: boolean | undefined;
|
|
1718
|
-
ttl?: number | undefined;
|
|
1719
1720
|
} | undefined;
|
|
1720
1721
|
} | undefined;
|
|
1721
1722
|
isDefault?: boolean | "" | undefined;
|
|
1722
|
-
storeCampaignKeyword?: string | undefined;
|
|
1723
1723
|
}>;
|
|
1724
1724
|
shops?: undefined;
|
|
1725
1725
|
}, {
|
|
1726
1726
|
stores: Record<string, {
|
|
1727
|
-
shopId: number;
|
|
1728
1727
|
locale: string;
|
|
1729
|
-
auth: {
|
|
1730
|
-
resetPasswordUrl: string;
|
|
1731
|
-
};
|
|
1732
|
-
currency: string;
|
|
1733
1728
|
checkout: {
|
|
1734
|
-
host: string;
|
|
1735
1729
|
user: string | number;
|
|
1730
|
+
host: string;
|
|
1736
1731
|
secret: string;
|
|
1737
1732
|
token: string;
|
|
1738
|
-
cbdExpiration?: number | undefined;
|
|
1739
1733
|
shopId?: number | undefined;
|
|
1734
|
+
cbdExpiration?: number | undefined;
|
|
1740
1735
|
};
|
|
1741
|
-
|
|
1736
|
+
shopId: number;
|
|
1737
|
+
auth: {
|
|
1738
|
+
resetPasswordUrl: string;
|
|
1739
|
+
};
|
|
1740
|
+
currency: string;
|
|
1742
1741
|
domain?: string | undefined;
|
|
1742
|
+
storeCampaignKeyword?: string | undefined;
|
|
1743
|
+
idp?: {
|
|
1744
|
+
enabled: boolean;
|
|
1745
|
+
idpKeys: string[];
|
|
1746
|
+
idpRedirectURL: string;
|
|
1747
|
+
} | undefined;
|
|
1748
|
+
path?: string | string[] | undefined;
|
|
1743
1749
|
redis?: {
|
|
1744
1750
|
port?: number | undefined;
|
|
1745
1751
|
host?: string | undefined;
|
|
@@ -1753,11 +1759,6 @@ export declare const RuntimeConfigSchema: z.ZodObject<{
|
|
|
1753
1759
|
prefix?: string | undefined;
|
|
1754
1760
|
sslTransit?: boolean | undefined;
|
|
1755
1761
|
} | undefined;
|
|
1756
|
-
idp?: {
|
|
1757
|
-
enabled: boolean;
|
|
1758
|
-
idpKeys: string[];
|
|
1759
|
-
idpRedirectURL: string;
|
|
1760
|
-
} | undefined;
|
|
1761
1762
|
apiBasePath?: string | undefined;
|
|
1762
1763
|
appKeys?: {
|
|
1763
1764
|
wishlistKey: string;
|
|
@@ -1767,11 +1768,11 @@ export declare const RuntimeConfigSchema: z.ZodObject<{
|
|
|
1767
1768
|
currencyFractionDigits?: number | undefined;
|
|
1768
1769
|
isEnabled?: boolean | undefined;
|
|
1769
1770
|
sessionConfig?: {
|
|
1771
|
+
domain?: string | undefined;
|
|
1770
1772
|
sameSite?: "lax" | "strict" | "none" | undefined;
|
|
1771
1773
|
maxAge?: number | undefined;
|
|
1772
1774
|
cookieName?: string | undefined;
|
|
1773
1775
|
secret?: string | string[] | undefined;
|
|
1774
|
-
domain?: string | undefined;
|
|
1775
1776
|
provider?: "redis" | "memory" | undefined;
|
|
1776
1777
|
} | undefined;
|
|
1777
1778
|
sapi?: {
|
|
@@ -1785,6 +1786,7 @@ export declare const RuntimeConfigSchema: z.ZodObject<{
|
|
|
1785
1786
|
storage?: {
|
|
1786
1787
|
session?: {
|
|
1787
1788
|
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";
|
|
1789
|
+
ttl?: number | undefined;
|
|
1788
1790
|
port?: number | undefined;
|
|
1789
1791
|
host?: string | undefined;
|
|
1790
1792
|
password?: string | undefined;
|
|
@@ -1793,10 +1795,10 @@ export declare const RuntimeConfigSchema: z.ZodObject<{
|
|
|
1793
1795
|
url?: string | undefined;
|
|
1794
1796
|
username?: string | undefined;
|
|
1795
1797
|
tls?: boolean | undefined;
|
|
1796
|
-
ttl?: number | undefined;
|
|
1797
1798
|
} | undefined;
|
|
1798
1799
|
cache?: {
|
|
1799
1800
|
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";
|
|
1801
|
+
ttl?: number | undefined;
|
|
1800
1802
|
port?: number | undefined;
|
|
1801
1803
|
host?: string | undefined;
|
|
1802
1804
|
password?: string | undefined;
|
|
@@ -1805,11 +1807,9 @@ export declare const RuntimeConfigSchema: z.ZodObject<{
|
|
|
1805
1807
|
url?: string | undefined;
|
|
1806
1808
|
username?: string | undefined;
|
|
1807
1809
|
tls?: boolean | undefined;
|
|
1808
|
-
ttl?: number | undefined;
|
|
1809
1810
|
} | undefined;
|
|
1810
1811
|
} | undefined;
|
|
1811
1812
|
isDefault?: string | boolean | undefined;
|
|
1812
|
-
storeCampaignKeyword?: string | undefined;
|
|
1813
1813
|
}>;
|
|
1814
1814
|
shops?: undefined;
|
|
1815
1815
|
}>, z.ZodObject<{
|
|
@@ -1849,19 +1849,19 @@ export declare const RuntimeConfigSchema: z.ZodObject<{
|
|
|
1849
1849
|
cbdExpiration: z.ZodOptional<z.ZodNumber>;
|
|
1850
1850
|
shopId: z.ZodOptional<z.ZodNumber>;
|
|
1851
1851
|
}, "strip", z.ZodTypeAny, {
|
|
1852
|
-
host: string;
|
|
1853
1852
|
user: string | number;
|
|
1853
|
+
host: string;
|
|
1854
1854
|
secret: string;
|
|
1855
1855
|
token: string;
|
|
1856
|
-
cbdExpiration?: number | undefined;
|
|
1857
1856
|
shopId?: number | undefined;
|
|
1857
|
+
cbdExpiration?: number | undefined;
|
|
1858
1858
|
}, {
|
|
1859
|
-
host: string;
|
|
1860
1859
|
user: string | number;
|
|
1860
|
+
host: string;
|
|
1861
1861
|
secret: string;
|
|
1862
1862
|
token: string;
|
|
1863
|
-
cbdExpiration?: number | undefined;
|
|
1864
1863
|
shopId?: number | undefined;
|
|
1864
|
+
cbdExpiration?: number | undefined;
|
|
1865
1865
|
}>;
|
|
1866
1866
|
appKeys: z.ZodOptional<z.ZodObject<{
|
|
1867
1867
|
wishlistKey: z.ZodString;
|
|
@@ -1906,18 +1906,18 @@ export declare const RuntimeConfigSchema: z.ZodObject<{
|
|
|
1906
1906
|
*/
|
|
1907
1907
|
provider: z.ZodOptional<z.ZodEnum<["redis", "memory"]>>;
|
|
1908
1908
|
}, "strip", z.ZodTypeAny, {
|
|
1909
|
+
domain?: string | undefined;
|
|
1909
1910
|
sameSite?: "lax" | "strict" | "none" | undefined;
|
|
1910
1911
|
maxAge?: number | undefined;
|
|
1911
1912
|
cookieName?: string | undefined;
|
|
1912
1913
|
secret?: string | string[] | undefined;
|
|
1913
|
-
domain?: string | undefined;
|
|
1914
1914
|
provider?: "redis" | "memory" | undefined;
|
|
1915
1915
|
}, {
|
|
1916
|
+
domain?: string | undefined;
|
|
1916
1917
|
sameSite?: "lax" | "strict" | "none" | undefined;
|
|
1917
1918
|
maxAge?: number | undefined;
|
|
1918
1919
|
cookieName?: string | undefined;
|
|
1919
1920
|
secret?: string | string[] | undefined;
|
|
1920
|
-
domain?: string | undefined;
|
|
1921
1921
|
provider?: "redis" | "memory" | undefined;
|
|
1922
1922
|
}>>;
|
|
1923
1923
|
sapi: z.ZodOptional<z.ZodObject<{
|
|
@@ -1954,6 +1954,7 @@ export declare const RuntimeConfigSchema: z.ZodObject<{
|
|
|
1954
1954
|
ttl: z.ZodOptional<z.ZodNumber>;
|
|
1955
1955
|
}, "strip", z.ZodTypeAny, {
|
|
1956
1956
|
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";
|
|
1957
|
+
ttl?: number | undefined;
|
|
1957
1958
|
port?: number | undefined;
|
|
1958
1959
|
host?: string | undefined;
|
|
1959
1960
|
password?: string | undefined;
|
|
@@ -1962,9 +1963,9 @@ export declare const RuntimeConfigSchema: z.ZodObject<{
|
|
|
1962
1963
|
url?: string | undefined;
|
|
1963
1964
|
username?: string | undefined;
|
|
1964
1965
|
tls?: boolean | undefined;
|
|
1965
|
-
ttl?: number | undefined;
|
|
1966
1966
|
}, {
|
|
1967
1967
|
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";
|
|
1968
|
+
ttl?: number | undefined;
|
|
1968
1969
|
port?: number | undefined;
|
|
1969
1970
|
host?: string | undefined;
|
|
1970
1971
|
password?: string | undefined;
|
|
@@ -1973,7 +1974,6 @@ export declare const RuntimeConfigSchema: z.ZodObject<{
|
|
|
1973
1974
|
url?: string | undefined;
|
|
1974
1975
|
username?: string | undefined;
|
|
1975
1976
|
tls?: boolean | undefined;
|
|
1976
|
-
ttl?: number | undefined;
|
|
1977
1977
|
}>>;
|
|
1978
1978
|
cache: z.ZodOptional<z.ZodObject<{
|
|
1979
1979
|
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")[]]>;
|
|
@@ -1988,6 +1988,7 @@ export declare const RuntimeConfigSchema: z.ZodObject<{
|
|
|
1988
1988
|
ttl: z.ZodOptional<z.ZodNumber>;
|
|
1989
1989
|
}, "strip", z.ZodTypeAny, {
|
|
1990
1990
|
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";
|
|
1991
|
+
ttl?: number | undefined;
|
|
1991
1992
|
port?: number | undefined;
|
|
1992
1993
|
host?: string | undefined;
|
|
1993
1994
|
password?: string | undefined;
|
|
@@ -1996,9 +1997,9 @@ export declare const RuntimeConfigSchema: z.ZodObject<{
|
|
|
1996
1997
|
url?: string | undefined;
|
|
1997
1998
|
username?: string | undefined;
|
|
1998
1999
|
tls?: boolean | undefined;
|
|
1999
|
-
ttl?: number | undefined;
|
|
2000
2000
|
}, {
|
|
2001
2001
|
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";
|
|
2002
|
+
ttl?: number | undefined;
|
|
2002
2003
|
port?: number | undefined;
|
|
2003
2004
|
host?: string | undefined;
|
|
2004
2005
|
password?: string | undefined;
|
|
@@ -2007,11 +2008,11 @@ export declare const RuntimeConfigSchema: z.ZodObject<{
|
|
|
2007
2008
|
url?: string | undefined;
|
|
2008
2009
|
username?: string | undefined;
|
|
2009
2010
|
tls?: boolean | undefined;
|
|
2010
|
-
ttl?: number | undefined;
|
|
2011
2011
|
}>>;
|
|
2012
2012
|
}, "strip", z.ZodTypeAny, {
|
|
2013
2013
|
session?: {
|
|
2014
2014
|
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";
|
|
2015
|
+
ttl?: number | undefined;
|
|
2015
2016
|
port?: number | undefined;
|
|
2016
2017
|
host?: string | undefined;
|
|
2017
2018
|
password?: string | undefined;
|
|
@@ -2020,10 +2021,10 @@ export declare const RuntimeConfigSchema: z.ZodObject<{
|
|
|
2020
2021
|
url?: string | undefined;
|
|
2021
2022
|
username?: string | undefined;
|
|
2022
2023
|
tls?: boolean | undefined;
|
|
2023
|
-
ttl?: number | undefined;
|
|
2024
2024
|
} | undefined;
|
|
2025
2025
|
cache?: {
|
|
2026
2026
|
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";
|
|
2027
|
+
ttl?: number | undefined;
|
|
2027
2028
|
port?: number | undefined;
|
|
2028
2029
|
host?: string | undefined;
|
|
2029
2030
|
password?: string | undefined;
|
|
@@ -2032,11 +2033,11 @@ export declare const RuntimeConfigSchema: z.ZodObject<{
|
|
|
2032
2033
|
url?: string | undefined;
|
|
2033
2034
|
username?: string | undefined;
|
|
2034
2035
|
tls?: boolean | undefined;
|
|
2035
|
-
ttl?: number | undefined;
|
|
2036
2036
|
} | undefined;
|
|
2037
2037
|
}, {
|
|
2038
2038
|
session?: {
|
|
2039
2039
|
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";
|
|
2040
|
+
ttl?: number | undefined;
|
|
2040
2041
|
port?: number | undefined;
|
|
2041
2042
|
host?: string | undefined;
|
|
2042
2043
|
password?: string | undefined;
|
|
@@ -2045,10 +2046,10 @@ export declare const RuntimeConfigSchema: z.ZodObject<{
|
|
|
2045
2046
|
url?: string | undefined;
|
|
2046
2047
|
username?: string | undefined;
|
|
2047
2048
|
tls?: boolean | undefined;
|
|
2048
|
-
ttl?: number | undefined;
|
|
2049
2049
|
} | undefined;
|
|
2050
2050
|
cache?: {
|
|
2051
2051
|
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";
|
|
2052
|
+
ttl?: number | undefined;
|
|
2052
2053
|
port?: number | undefined;
|
|
2053
2054
|
host?: string | undefined;
|
|
2054
2055
|
password?: string | undefined;
|
|
@@ -2057,7 +2058,6 @@ export declare const RuntimeConfigSchema: z.ZodObject<{
|
|
|
2057
2058
|
url?: string | undefined;
|
|
2058
2059
|
username?: string | undefined;
|
|
2059
2060
|
tls?: boolean | undefined;
|
|
2060
|
-
ttl?: number | undefined;
|
|
2061
2061
|
} | undefined;
|
|
2062
2062
|
}>>;
|
|
2063
2063
|
isDefault: z.ZodUnion<[z.ZodOptional<z.ZodBoolean>, z.ZodEffects<z.ZodString, "", string>]>;
|
|
@@ -2104,22 +2104,28 @@ export declare const RuntimeConfigSchema: z.ZodObject<{
|
|
|
2104
2104
|
*/
|
|
2105
2105
|
storeCampaignKeyword: z.ZodOptional<z.ZodString>;
|
|
2106
2106
|
}, "strip", z.ZodTypeAny, {
|
|
2107
|
-
shopId: number;
|
|
2108
2107
|
locale: string;
|
|
2109
|
-
auth: {
|
|
2110
|
-
resetPasswordUrl: string;
|
|
2111
|
-
};
|
|
2112
|
-
currency: string;
|
|
2113
2108
|
checkout: {
|
|
2114
|
-
host: string;
|
|
2115
2109
|
user: string | number;
|
|
2110
|
+
host: string;
|
|
2116
2111
|
secret: string;
|
|
2117
2112
|
token: string;
|
|
2118
|
-
cbdExpiration?: number | undefined;
|
|
2119
2113
|
shopId?: number | undefined;
|
|
2114
|
+
cbdExpiration?: number | undefined;
|
|
2120
2115
|
};
|
|
2121
|
-
|
|
2116
|
+
shopId: number;
|
|
2117
|
+
auth: {
|
|
2118
|
+
resetPasswordUrl: string;
|
|
2119
|
+
};
|
|
2120
|
+
currency: string;
|
|
2122
2121
|
domain?: string | undefined;
|
|
2122
|
+
storeCampaignKeyword?: string | undefined;
|
|
2123
|
+
idp?: {
|
|
2124
|
+
enabled: boolean;
|
|
2125
|
+
idpKeys: string[];
|
|
2126
|
+
idpRedirectURL: string;
|
|
2127
|
+
} | undefined;
|
|
2128
|
+
path?: string | string[] | undefined;
|
|
2123
2129
|
redis?: {
|
|
2124
2130
|
port?: number | undefined;
|
|
2125
2131
|
host?: string | undefined;
|
|
@@ -2133,11 +2139,6 @@ export declare const RuntimeConfigSchema: z.ZodObject<{
|
|
|
2133
2139
|
prefix?: string | undefined;
|
|
2134
2140
|
sslTransit?: boolean | undefined;
|
|
2135
2141
|
} | undefined;
|
|
2136
|
-
idp?: {
|
|
2137
|
-
enabled: boolean;
|
|
2138
|
-
idpKeys: string[];
|
|
2139
|
-
idpRedirectURL: string;
|
|
2140
|
-
} | undefined;
|
|
2141
2142
|
apiBasePath?: string | undefined;
|
|
2142
2143
|
appKeys?: {
|
|
2143
2144
|
wishlistKey: string;
|
|
@@ -2147,11 +2148,11 @@ export declare const RuntimeConfigSchema: z.ZodObject<{
|
|
|
2147
2148
|
currencyFractionDigits?: number | undefined;
|
|
2148
2149
|
isEnabled?: boolean | undefined;
|
|
2149
2150
|
sessionConfig?: {
|
|
2151
|
+
domain?: string | undefined;
|
|
2150
2152
|
sameSite?: "lax" | "strict" | "none" | undefined;
|
|
2151
2153
|
maxAge?: number | undefined;
|
|
2152
2154
|
cookieName?: string | undefined;
|
|
2153
2155
|
secret?: string | string[] | undefined;
|
|
2154
|
-
domain?: string | undefined;
|
|
2155
2156
|
provider?: "redis" | "memory" | undefined;
|
|
2156
2157
|
} | undefined;
|
|
2157
2158
|
sapi?: {
|
|
@@ -2165,6 +2166,7 @@ export declare const RuntimeConfigSchema: z.ZodObject<{
|
|
|
2165
2166
|
storage?: {
|
|
2166
2167
|
session?: {
|
|
2167
2168
|
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";
|
|
2169
|
+
ttl?: number | undefined;
|
|
2168
2170
|
port?: number | undefined;
|
|
2169
2171
|
host?: string | undefined;
|
|
2170
2172
|
password?: string | undefined;
|
|
@@ -2173,10 +2175,10 @@ export declare const RuntimeConfigSchema: z.ZodObject<{
|
|
|
2173
2175
|
url?: string | undefined;
|
|
2174
2176
|
username?: string | undefined;
|
|
2175
2177
|
tls?: boolean | undefined;
|
|
2176
|
-
ttl?: number | undefined;
|
|
2177
2178
|
} | undefined;
|
|
2178
2179
|
cache?: {
|
|
2179
2180
|
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";
|
|
2181
|
+
ttl?: number | undefined;
|
|
2180
2182
|
port?: number | undefined;
|
|
2181
2183
|
host?: string | undefined;
|
|
2182
2184
|
password?: string | undefined;
|
|
@@ -2185,28 +2187,32 @@ export declare const RuntimeConfigSchema: z.ZodObject<{
|
|
|
2185
2187
|
url?: string | undefined;
|
|
2186
2188
|
username?: string | undefined;
|
|
2187
2189
|
tls?: boolean | undefined;
|
|
2188
|
-
ttl?: number | undefined;
|
|
2189
2190
|
} | undefined;
|
|
2190
2191
|
} | undefined;
|
|
2191
2192
|
isDefault?: boolean | "" | undefined;
|
|
2192
|
-
storeCampaignKeyword?: string | undefined;
|
|
2193
2193
|
}, {
|
|
2194
|
-
shopId: number;
|
|
2195
2194
|
locale: string;
|
|
2196
|
-
auth: {
|
|
2197
|
-
resetPasswordUrl: string;
|
|
2198
|
-
};
|
|
2199
|
-
currency: string;
|
|
2200
2195
|
checkout: {
|
|
2201
|
-
host: string;
|
|
2202
2196
|
user: string | number;
|
|
2197
|
+
host: string;
|
|
2203
2198
|
secret: string;
|
|
2204
2199
|
token: string;
|
|
2205
|
-
cbdExpiration?: number | undefined;
|
|
2206
2200
|
shopId?: number | undefined;
|
|
2201
|
+
cbdExpiration?: number | undefined;
|
|
2207
2202
|
};
|
|
2208
|
-
|
|
2203
|
+
shopId: number;
|
|
2204
|
+
auth: {
|
|
2205
|
+
resetPasswordUrl: string;
|
|
2206
|
+
};
|
|
2207
|
+
currency: string;
|
|
2209
2208
|
domain?: string | undefined;
|
|
2209
|
+
storeCampaignKeyword?: string | undefined;
|
|
2210
|
+
idp?: {
|
|
2211
|
+
enabled: boolean;
|
|
2212
|
+
idpKeys: string[];
|
|
2213
|
+
idpRedirectURL: string;
|
|
2214
|
+
} | undefined;
|
|
2215
|
+
path?: string | string[] | undefined;
|
|
2210
2216
|
redis?: {
|
|
2211
2217
|
port?: number | undefined;
|
|
2212
2218
|
host?: string | undefined;
|
|
@@ -2220,11 +2226,6 @@ export declare const RuntimeConfigSchema: z.ZodObject<{
|
|
|
2220
2226
|
prefix?: string | undefined;
|
|
2221
2227
|
sslTransit?: boolean | undefined;
|
|
2222
2228
|
} | undefined;
|
|
2223
|
-
idp?: {
|
|
2224
|
-
enabled: boolean;
|
|
2225
|
-
idpKeys: string[];
|
|
2226
|
-
idpRedirectURL: string;
|
|
2227
|
-
} | undefined;
|
|
2228
2229
|
apiBasePath?: string | undefined;
|
|
2229
2230
|
appKeys?: {
|
|
2230
2231
|
wishlistKey: string;
|
|
@@ -2234,11 +2235,11 @@ export declare const RuntimeConfigSchema: z.ZodObject<{
|
|
|
2234
2235
|
currencyFractionDigits?: number | undefined;
|
|
2235
2236
|
isEnabled?: boolean | undefined;
|
|
2236
2237
|
sessionConfig?: {
|
|
2238
|
+
domain?: string | undefined;
|
|
2237
2239
|
sameSite?: "lax" | "strict" | "none" | undefined;
|
|
2238
2240
|
maxAge?: number | undefined;
|
|
2239
2241
|
cookieName?: string | undefined;
|
|
2240
2242
|
secret?: string | string[] | undefined;
|
|
2241
|
-
domain?: string | undefined;
|
|
2242
2243
|
provider?: "redis" | "memory" | undefined;
|
|
2243
2244
|
} | undefined;
|
|
2244
2245
|
sapi?: {
|
|
@@ -2252,6 +2253,7 @@ export declare const RuntimeConfigSchema: z.ZodObject<{
|
|
|
2252
2253
|
storage?: {
|
|
2253
2254
|
session?: {
|
|
2254
2255
|
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";
|
|
2256
|
+
ttl?: number | undefined;
|
|
2255
2257
|
port?: number | undefined;
|
|
2256
2258
|
host?: string | undefined;
|
|
2257
2259
|
password?: string | undefined;
|
|
@@ -2260,10 +2262,10 @@ export declare const RuntimeConfigSchema: z.ZodObject<{
|
|
|
2260
2262
|
url?: string | undefined;
|
|
2261
2263
|
username?: string | undefined;
|
|
2262
2264
|
tls?: boolean | undefined;
|
|
2263
|
-
ttl?: number | undefined;
|
|
2264
2265
|
} | undefined;
|
|
2265
2266
|
cache?: {
|
|
2266
2267
|
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";
|
|
2268
|
+
ttl?: number | undefined;
|
|
2267
2269
|
port?: number | undefined;
|
|
2268
2270
|
host?: string | undefined;
|
|
2269
2271
|
password?: string | undefined;
|
|
@@ -2272,30 +2274,34 @@ export declare const RuntimeConfigSchema: z.ZodObject<{
|
|
|
2272
2274
|
url?: string | undefined;
|
|
2273
2275
|
username?: string | undefined;
|
|
2274
2276
|
tls?: boolean | undefined;
|
|
2275
|
-
ttl?: number | undefined;
|
|
2276
2277
|
} | undefined;
|
|
2277
2278
|
} | undefined;
|
|
2278
2279
|
isDefault?: string | boolean | undefined;
|
|
2279
|
-
storeCampaignKeyword?: string | undefined;
|
|
2280
2280
|
}>>;
|
|
2281
2281
|
}, "strip", z.ZodTypeAny, {
|
|
2282
2282
|
shops: Record<string, {
|
|
2283
|
-
shopId: number;
|
|
2284
2283
|
locale: string;
|
|
2285
|
-
auth: {
|
|
2286
|
-
resetPasswordUrl: string;
|
|
2287
|
-
};
|
|
2288
|
-
currency: string;
|
|
2289
2284
|
checkout: {
|
|
2290
|
-
host: string;
|
|
2291
2285
|
user: string | number;
|
|
2286
|
+
host: string;
|
|
2292
2287
|
secret: string;
|
|
2293
2288
|
token: string;
|
|
2294
|
-
cbdExpiration?: number | undefined;
|
|
2295
2289
|
shopId?: number | undefined;
|
|
2290
|
+
cbdExpiration?: number | undefined;
|
|
2296
2291
|
};
|
|
2297
|
-
|
|
2292
|
+
shopId: number;
|
|
2293
|
+
auth: {
|
|
2294
|
+
resetPasswordUrl: string;
|
|
2295
|
+
};
|
|
2296
|
+
currency: string;
|
|
2298
2297
|
domain?: string | undefined;
|
|
2298
|
+
storeCampaignKeyword?: string | undefined;
|
|
2299
|
+
idp?: {
|
|
2300
|
+
enabled: boolean;
|
|
2301
|
+
idpKeys: string[];
|
|
2302
|
+
idpRedirectURL: string;
|
|
2303
|
+
} | undefined;
|
|
2304
|
+
path?: string | string[] | undefined;
|
|
2299
2305
|
redis?: {
|
|
2300
2306
|
port?: number | undefined;
|
|
2301
2307
|
host?: string | undefined;
|
|
@@ -2309,11 +2315,6 @@ export declare const RuntimeConfigSchema: z.ZodObject<{
|
|
|
2309
2315
|
prefix?: string | undefined;
|
|
2310
2316
|
sslTransit?: boolean | undefined;
|
|
2311
2317
|
} | undefined;
|
|
2312
|
-
idp?: {
|
|
2313
|
-
enabled: boolean;
|
|
2314
|
-
idpKeys: string[];
|
|
2315
|
-
idpRedirectURL: string;
|
|
2316
|
-
} | undefined;
|
|
2317
2318
|
apiBasePath?: string | undefined;
|
|
2318
2319
|
appKeys?: {
|
|
2319
2320
|
wishlistKey: string;
|
|
@@ -2323,11 +2324,11 @@ export declare const RuntimeConfigSchema: z.ZodObject<{
|
|
|
2323
2324
|
currencyFractionDigits?: number | undefined;
|
|
2324
2325
|
isEnabled?: boolean | undefined;
|
|
2325
2326
|
sessionConfig?: {
|
|
2327
|
+
domain?: string | undefined;
|
|
2326
2328
|
sameSite?: "lax" | "strict" | "none" | undefined;
|
|
2327
2329
|
maxAge?: number | undefined;
|
|
2328
2330
|
cookieName?: string | undefined;
|
|
2329
2331
|
secret?: string | string[] | undefined;
|
|
2330
|
-
domain?: string | undefined;
|
|
2331
2332
|
provider?: "redis" | "memory" | undefined;
|
|
2332
2333
|
} | undefined;
|
|
2333
2334
|
sapi?: {
|
|
@@ -2341,6 +2342,7 @@ export declare const RuntimeConfigSchema: z.ZodObject<{
|
|
|
2341
2342
|
storage?: {
|
|
2342
2343
|
session?: {
|
|
2343
2344
|
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";
|
|
2345
|
+
ttl?: number | undefined;
|
|
2344
2346
|
port?: number | undefined;
|
|
2345
2347
|
host?: string | undefined;
|
|
2346
2348
|
password?: string | undefined;
|
|
@@ -2349,10 +2351,10 @@ export declare const RuntimeConfigSchema: z.ZodObject<{
|
|
|
2349
2351
|
url?: string | undefined;
|
|
2350
2352
|
username?: string | undefined;
|
|
2351
2353
|
tls?: boolean | undefined;
|
|
2352
|
-
ttl?: number | undefined;
|
|
2353
2354
|
} | undefined;
|
|
2354
2355
|
cache?: {
|
|
2355
2356
|
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";
|
|
2357
|
+
ttl?: number | undefined;
|
|
2356
2358
|
port?: number | undefined;
|
|
2357
2359
|
host?: string | undefined;
|
|
2358
2360
|
password?: string | undefined;
|
|
@@ -2361,32 +2363,36 @@ export declare const RuntimeConfigSchema: z.ZodObject<{
|
|
|
2361
2363
|
url?: string | undefined;
|
|
2362
2364
|
username?: string | undefined;
|
|
2363
2365
|
tls?: boolean | undefined;
|
|
2364
|
-
ttl?: number | undefined;
|
|
2365
2366
|
} | undefined;
|
|
2366
2367
|
} | undefined;
|
|
2367
2368
|
isDefault?: boolean | "" | undefined;
|
|
2368
|
-
storeCampaignKeyword?: string | undefined;
|
|
2369
2369
|
}>;
|
|
2370
2370
|
stores?: undefined;
|
|
2371
2371
|
}, {
|
|
2372
2372
|
shops: Record<string, {
|
|
2373
|
-
shopId: number;
|
|
2374
2373
|
locale: string;
|
|
2375
|
-
auth: {
|
|
2376
|
-
resetPasswordUrl: string;
|
|
2377
|
-
};
|
|
2378
|
-
currency: string;
|
|
2379
2374
|
checkout: {
|
|
2380
|
-
host: string;
|
|
2381
2375
|
user: string | number;
|
|
2376
|
+
host: string;
|
|
2382
2377
|
secret: string;
|
|
2383
2378
|
token: string;
|
|
2384
|
-
cbdExpiration?: number | undefined;
|
|
2385
2379
|
shopId?: number | undefined;
|
|
2380
|
+
cbdExpiration?: number | undefined;
|
|
2386
2381
|
};
|
|
2387
|
-
|
|
2382
|
+
shopId: number;
|
|
2383
|
+
auth: {
|
|
2384
|
+
resetPasswordUrl: string;
|
|
2385
|
+
};
|
|
2386
|
+
currency: string;
|
|
2388
2387
|
domain?: string | undefined;
|
|
2389
|
-
|
|
2388
|
+
storeCampaignKeyword?: string | undefined;
|
|
2389
|
+
idp?: {
|
|
2390
|
+
enabled: boolean;
|
|
2391
|
+
idpKeys: string[];
|
|
2392
|
+
idpRedirectURL: string;
|
|
2393
|
+
} | undefined;
|
|
2394
|
+
path?: string | string[] | undefined;
|
|
2395
|
+
redis?: {
|
|
2390
2396
|
port?: number | undefined;
|
|
2391
2397
|
host?: string | undefined;
|
|
2392
2398
|
prefix?: string | undefined;
|
|
@@ -2399,11 +2405,6 @@ export declare const RuntimeConfigSchema: z.ZodObject<{
|
|
|
2399
2405
|
prefix?: string | undefined;
|
|
2400
2406
|
sslTransit?: boolean | undefined;
|
|
2401
2407
|
} | undefined;
|
|
2402
|
-
idp?: {
|
|
2403
|
-
enabled: boolean;
|
|
2404
|
-
idpKeys: string[];
|
|
2405
|
-
idpRedirectURL: string;
|
|
2406
|
-
} | undefined;
|
|
2407
2408
|
apiBasePath?: string | undefined;
|
|
2408
2409
|
appKeys?: {
|
|
2409
2410
|
wishlistKey: string;
|
|
@@ -2413,11 +2414,11 @@ export declare const RuntimeConfigSchema: z.ZodObject<{
|
|
|
2413
2414
|
currencyFractionDigits?: number | undefined;
|
|
2414
2415
|
isEnabled?: boolean | undefined;
|
|
2415
2416
|
sessionConfig?: {
|
|
2417
|
+
domain?: string | undefined;
|
|
2416
2418
|
sameSite?: "lax" | "strict" | "none" | undefined;
|
|
2417
2419
|
maxAge?: number | undefined;
|
|
2418
2420
|
cookieName?: string | undefined;
|
|
2419
2421
|
secret?: string | string[] | undefined;
|
|
2420
|
-
domain?: string | undefined;
|
|
2421
2422
|
provider?: "redis" | "memory" | undefined;
|
|
2422
2423
|
} | undefined;
|
|
2423
2424
|
sapi?: {
|
|
@@ -2431,6 +2432,7 @@ export declare const RuntimeConfigSchema: z.ZodObject<{
|
|
|
2431
2432
|
storage?: {
|
|
2432
2433
|
session?: {
|
|
2433
2434
|
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";
|
|
2435
|
+
ttl?: number | undefined;
|
|
2434
2436
|
port?: number | undefined;
|
|
2435
2437
|
host?: string | undefined;
|
|
2436
2438
|
password?: string | undefined;
|
|
@@ -2439,10 +2441,10 @@ export declare const RuntimeConfigSchema: z.ZodObject<{
|
|
|
2439
2441
|
url?: string | undefined;
|
|
2440
2442
|
username?: string | undefined;
|
|
2441
2443
|
tls?: boolean | undefined;
|
|
2442
|
-
ttl?: number | undefined;
|
|
2443
2444
|
} | undefined;
|
|
2444
2445
|
cache?: {
|
|
2445
2446
|
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";
|
|
2447
|
+
ttl?: number | undefined;
|
|
2446
2448
|
port?: number | undefined;
|
|
2447
2449
|
host?: string | undefined;
|
|
2448
2450
|
password?: string | undefined;
|
|
@@ -2451,11 +2453,9 @@ export declare const RuntimeConfigSchema: z.ZodObject<{
|
|
|
2451
2453
|
url?: string | undefined;
|
|
2452
2454
|
username?: string | undefined;
|
|
2453
2455
|
tls?: boolean | undefined;
|
|
2454
|
-
ttl?: number | undefined;
|
|
2455
2456
|
} | undefined;
|
|
2456
2457
|
} | undefined;
|
|
2457
2458
|
isDefault?: string | boolean | undefined;
|
|
2458
|
-
storeCampaignKeyword?: string | undefined;
|
|
2459
2459
|
}>;
|
|
2460
2460
|
stores?: undefined;
|
|
2461
2461
|
}>]>>, z.ZodIntersection<z.ZodObject<{
|
|
@@ -2487,18 +2487,18 @@ export declare const RuntimeConfigSchema: z.ZodObject<{
|
|
|
2487
2487
|
*/
|
|
2488
2488
|
provider: z.ZodOptional<z.ZodEnum<["redis", "memory"]>>;
|
|
2489
2489
|
}, "strip", z.ZodTypeAny, {
|
|
2490
|
+
domain?: string | undefined;
|
|
2490
2491
|
sameSite?: "lax" | "strict" | "none" | undefined;
|
|
2491
2492
|
maxAge?: number | undefined;
|
|
2492
2493
|
cookieName?: string | undefined;
|
|
2493
2494
|
secret?: string | string[] | undefined;
|
|
2494
|
-
domain?: string | undefined;
|
|
2495
2495
|
provider?: "redis" | "memory" | undefined;
|
|
2496
2496
|
}, {
|
|
2497
|
+
domain?: string | undefined;
|
|
2497
2498
|
sameSite?: "lax" | "strict" | "none" | undefined;
|
|
2498
2499
|
maxAge?: number | undefined;
|
|
2499
2500
|
cookieName?: string | undefined;
|
|
2500
2501
|
secret?: string | string[] | undefined;
|
|
2501
|
-
domain?: string | undefined;
|
|
2502
2502
|
provider?: "redis" | "memory" | undefined;
|
|
2503
2503
|
}>>;
|
|
2504
2504
|
storage: z.ZodOptional<z.ZodObject<{
|
|
@@ -2515,6 +2515,7 @@ export declare const RuntimeConfigSchema: z.ZodObject<{
|
|
|
2515
2515
|
ttl: z.ZodOptional<z.ZodNumber>;
|
|
2516
2516
|
}, "strip", z.ZodTypeAny, {
|
|
2517
2517
|
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";
|
|
2518
|
+
ttl?: number | undefined;
|
|
2518
2519
|
port?: number | undefined;
|
|
2519
2520
|
host?: string | undefined;
|
|
2520
2521
|
password?: string | undefined;
|
|
@@ -2523,9 +2524,9 @@ export declare const RuntimeConfigSchema: z.ZodObject<{
|
|
|
2523
2524
|
url?: string | undefined;
|
|
2524
2525
|
username?: string | undefined;
|
|
2525
2526
|
tls?: boolean | undefined;
|
|
2526
|
-
ttl?: number | undefined;
|
|
2527
2527
|
}, {
|
|
2528
2528
|
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";
|
|
2529
|
+
ttl?: number | undefined;
|
|
2529
2530
|
port?: number | undefined;
|
|
2530
2531
|
host?: string | undefined;
|
|
2531
2532
|
password?: string | undefined;
|
|
@@ -2534,7 +2535,6 @@ export declare const RuntimeConfigSchema: z.ZodObject<{
|
|
|
2534
2535
|
url?: string | undefined;
|
|
2535
2536
|
username?: string | undefined;
|
|
2536
2537
|
tls?: boolean | undefined;
|
|
2537
|
-
ttl?: number | undefined;
|
|
2538
2538
|
}>>;
|
|
2539
2539
|
cache: z.ZodOptional<z.ZodObject<{
|
|
2540
2540
|
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")[]]>;
|
|
@@ -2549,6 +2549,7 @@ export declare const RuntimeConfigSchema: z.ZodObject<{
|
|
|
2549
2549
|
ttl: z.ZodOptional<z.ZodNumber>;
|
|
2550
2550
|
}, "strip", z.ZodTypeAny, {
|
|
2551
2551
|
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";
|
|
2552
|
+
ttl?: number | undefined;
|
|
2552
2553
|
port?: number | undefined;
|
|
2553
2554
|
host?: string | undefined;
|
|
2554
2555
|
password?: string | undefined;
|
|
@@ -2557,9 +2558,9 @@ export declare const RuntimeConfigSchema: z.ZodObject<{
|
|
|
2557
2558
|
url?: string | undefined;
|
|
2558
2559
|
username?: string | undefined;
|
|
2559
2560
|
tls?: boolean | undefined;
|
|
2560
|
-
ttl?: number | undefined;
|
|
2561
2561
|
}, {
|
|
2562
2562
|
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";
|
|
2563
|
+
ttl?: number | undefined;
|
|
2563
2564
|
port?: number | undefined;
|
|
2564
2565
|
host?: string | undefined;
|
|
2565
2566
|
password?: string | undefined;
|
|
@@ -2568,11 +2569,11 @@ export declare const RuntimeConfigSchema: z.ZodObject<{
|
|
|
2568
2569
|
url?: string | undefined;
|
|
2569
2570
|
username?: string | undefined;
|
|
2570
2571
|
tls?: boolean | undefined;
|
|
2571
|
-
ttl?: number | undefined;
|
|
2572
2572
|
}>>;
|
|
2573
2573
|
}, "strip", z.ZodTypeAny, {
|
|
2574
2574
|
session?: {
|
|
2575
2575
|
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";
|
|
2576
|
+
ttl?: number | undefined;
|
|
2576
2577
|
port?: number | undefined;
|
|
2577
2578
|
host?: string | undefined;
|
|
2578
2579
|
password?: string | undefined;
|
|
@@ -2581,10 +2582,10 @@ export declare const RuntimeConfigSchema: z.ZodObject<{
|
|
|
2581
2582
|
url?: string | undefined;
|
|
2582
2583
|
username?: string | undefined;
|
|
2583
2584
|
tls?: boolean | undefined;
|
|
2584
|
-
ttl?: number | undefined;
|
|
2585
2585
|
} | undefined;
|
|
2586
2586
|
cache?: {
|
|
2587
2587
|
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";
|
|
2588
|
+
ttl?: number | undefined;
|
|
2588
2589
|
port?: number | undefined;
|
|
2589
2590
|
host?: string | undefined;
|
|
2590
2591
|
password?: string | undefined;
|
|
@@ -2593,11 +2594,11 @@ export declare const RuntimeConfigSchema: z.ZodObject<{
|
|
|
2593
2594
|
url?: string | undefined;
|
|
2594
2595
|
username?: string | undefined;
|
|
2595
2596
|
tls?: boolean | undefined;
|
|
2596
|
-
ttl?: number | undefined;
|
|
2597
2597
|
} | undefined;
|
|
2598
2598
|
}, {
|
|
2599
2599
|
session?: {
|
|
2600
2600
|
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";
|
|
2601
|
+
ttl?: number | undefined;
|
|
2601
2602
|
port?: number | undefined;
|
|
2602
2603
|
host?: string | undefined;
|
|
2603
2604
|
password?: string | undefined;
|
|
@@ -2606,10 +2607,10 @@ export declare const RuntimeConfigSchema: z.ZodObject<{
|
|
|
2606
2607
|
url?: string | undefined;
|
|
2607
2608
|
username?: string | undefined;
|
|
2608
2609
|
tls?: boolean | undefined;
|
|
2609
|
-
ttl?: number | undefined;
|
|
2610
2610
|
} | undefined;
|
|
2611
2611
|
cache?: {
|
|
2612
2612
|
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";
|
|
2613
|
+
ttl?: number | undefined;
|
|
2613
2614
|
port?: number | undefined;
|
|
2614
2615
|
host?: string | undefined;
|
|
2615
2616
|
password?: string | undefined;
|
|
@@ -2618,7 +2619,6 @@ export declare const RuntimeConfigSchema: z.ZodObject<{
|
|
|
2618
2619
|
url?: string | undefined;
|
|
2619
2620
|
username?: string | undefined;
|
|
2620
2621
|
tls?: boolean | undefined;
|
|
2621
|
-
ttl?: number | undefined;
|
|
2622
2622
|
} | undefined;
|
|
2623
2623
|
}>>;
|
|
2624
2624
|
oauth: z.ZodObject<{
|
|
@@ -2666,19 +2666,19 @@ export declare const RuntimeConfigSchema: z.ZodObject<{
|
|
|
2666
2666
|
*/
|
|
2667
2667
|
provider: z.ZodOptional<z.ZodEnum<["redis", "memory"]>>;
|
|
2668
2668
|
}, "strip", z.ZodTypeAny, {
|
|
2669
|
-
enabled?: boolean | undefined;
|
|
2670
|
-
provider?: "redis" | "memory" | undefined;
|
|
2671
2669
|
auth?: {
|
|
2672
2670
|
password: string;
|
|
2673
2671
|
username: string;
|
|
2674
2672
|
} | undefined;
|
|
2675
|
-
}, {
|
|
2676
2673
|
enabled?: boolean | undefined;
|
|
2677
2674
|
provider?: "redis" | "memory" | undefined;
|
|
2675
|
+
}, {
|
|
2678
2676
|
auth?: {
|
|
2679
2677
|
password: string;
|
|
2680
2678
|
username: string;
|
|
2681
2679
|
} | undefined;
|
|
2680
|
+
enabled?: boolean | undefined;
|
|
2681
|
+
provider?: "redis" | "memory" | undefined;
|
|
2682
2682
|
}>>;
|
|
2683
2683
|
publicShopData: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
2684
2684
|
idp: z.ZodOptional<z.ZodObject<{
|
|
@@ -2735,16 +2735,22 @@ export declare const RuntimeConfigSchema: z.ZodObject<{
|
|
|
2735
2735
|
/** Undocumented property intended for internal usage only */
|
|
2736
2736
|
internalAccessHeader: z.ZodOptional<z.ZodString>;
|
|
2737
2737
|
}, "strip", z.ZodTypeAny, {
|
|
2738
|
-
appKeys: {
|
|
2739
|
-
wishlistKey: string;
|
|
2740
|
-
basketKey: string;
|
|
2741
|
-
hashAlgorithm: "none" | "md5" | "sha256";
|
|
2742
|
-
};
|
|
2743
2738
|
oauth: {
|
|
2744
2739
|
apiHost: string;
|
|
2745
2740
|
clientId: string | number;
|
|
2746
2741
|
clientSecret: string;
|
|
2747
2742
|
};
|
|
2743
|
+
appKeys: {
|
|
2744
|
+
wishlistKey: string;
|
|
2745
|
+
basketKey: string;
|
|
2746
|
+
hashAlgorithm: "none" | "md5" | "sha256";
|
|
2747
|
+
};
|
|
2748
|
+
idp?: {
|
|
2749
|
+
enabled: boolean;
|
|
2750
|
+
idpKeys: string[];
|
|
2751
|
+
idpRedirectURL: string;
|
|
2752
|
+
} | undefined;
|
|
2753
|
+
internalAccessHeader?: string | undefined;
|
|
2748
2754
|
redis?: {
|
|
2749
2755
|
port?: number | undefined;
|
|
2750
2756
|
host?: string | undefined;
|
|
@@ -2758,31 +2764,27 @@ export declare const RuntimeConfigSchema: z.ZodObject<{
|
|
|
2758
2764
|
prefix?: string | undefined;
|
|
2759
2765
|
sslTransit?: boolean | undefined;
|
|
2760
2766
|
} | undefined;
|
|
2761
|
-
idp?: {
|
|
2762
|
-
enabled: boolean;
|
|
2763
|
-
idpKeys: string[];
|
|
2764
|
-
idpRedirectURL: string;
|
|
2765
|
-
} | undefined;
|
|
2766
2767
|
apiBasePath?: string | undefined;
|
|
2767
2768
|
session?: {
|
|
2769
|
+
domain?: string | undefined;
|
|
2768
2770
|
sameSite?: "lax" | "strict" | "none" | undefined;
|
|
2769
2771
|
maxAge?: number | undefined;
|
|
2770
2772
|
cookieName?: string | undefined;
|
|
2771
2773
|
secret?: string | string[] | undefined;
|
|
2772
|
-
domain?: string | undefined;
|
|
2773
2774
|
provider?: "redis" | "memory" | undefined;
|
|
2774
2775
|
} | undefined;
|
|
2775
2776
|
cache?: {
|
|
2776
|
-
enabled?: boolean | undefined;
|
|
2777
|
-
provider?: "redis" | "memory" | undefined;
|
|
2778
2777
|
auth?: {
|
|
2779
2778
|
password: string;
|
|
2780
2779
|
username: string;
|
|
2781
2780
|
} | undefined;
|
|
2781
|
+
enabled?: boolean | undefined;
|
|
2782
|
+
provider?: "redis" | "memory" | undefined;
|
|
2782
2783
|
} | undefined;
|
|
2783
2784
|
storage?: {
|
|
2784
2785
|
session?: {
|
|
2785
2786
|
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";
|
|
2787
|
+
ttl?: number | undefined;
|
|
2786
2788
|
port?: number | undefined;
|
|
2787
2789
|
host?: string | undefined;
|
|
2788
2790
|
password?: string | undefined;
|
|
@@ -2791,10 +2793,10 @@ export declare const RuntimeConfigSchema: z.ZodObject<{
|
|
|
2791
2793
|
url?: string | undefined;
|
|
2792
2794
|
username?: string | undefined;
|
|
2793
2795
|
tls?: boolean | undefined;
|
|
2794
|
-
ttl?: number | undefined;
|
|
2795
2796
|
} | undefined;
|
|
2796
2797
|
cache?: {
|
|
2797
2798
|
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";
|
|
2799
|
+
ttl?: number | undefined;
|
|
2798
2800
|
port?: number | undefined;
|
|
2799
2801
|
host?: string | undefined;
|
|
2800
2802
|
password?: string | undefined;
|
|
@@ -2803,22 +2805,26 @@ export declare const RuntimeConfigSchema: z.ZodObject<{
|
|
|
2803
2805
|
url?: string | undefined;
|
|
2804
2806
|
username?: string | undefined;
|
|
2805
2807
|
tls?: boolean | undefined;
|
|
2806
|
-
ttl?: number | undefined;
|
|
2807
2808
|
} | undefined;
|
|
2808
2809
|
} | undefined;
|
|
2809
2810
|
publicShopData?: string[] | undefined;
|
|
2810
|
-
internalAccessHeader?: string | undefined;
|
|
2811
2811
|
}, {
|
|
2812
|
-
appKeys: {
|
|
2813
|
-
wishlistKey: string;
|
|
2814
|
-
basketKey: string;
|
|
2815
|
-
hashAlgorithm: "none" | "md5" | "sha256";
|
|
2816
|
-
};
|
|
2817
2812
|
oauth: {
|
|
2818
2813
|
apiHost: string;
|
|
2819
2814
|
clientId: string | number;
|
|
2820
2815
|
clientSecret: string;
|
|
2821
2816
|
};
|
|
2817
|
+
appKeys: {
|
|
2818
|
+
wishlistKey: string;
|
|
2819
|
+
basketKey: string;
|
|
2820
|
+
hashAlgorithm: "none" | "md5" | "sha256";
|
|
2821
|
+
};
|
|
2822
|
+
idp?: {
|
|
2823
|
+
enabled: boolean;
|
|
2824
|
+
idpKeys: string[];
|
|
2825
|
+
idpRedirectURL: string;
|
|
2826
|
+
} | undefined;
|
|
2827
|
+
internalAccessHeader?: string | undefined;
|
|
2822
2828
|
redis?: {
|
|
2823
2829
|
port?: number | undefined;
|
|
2824
2830
|
host?: string | undefined;
|
|
@@ -2832,31 +2838,27 @@ export declare const RuntimeConfigSchema: z.ZodObject<{
|
|
|
2832
2838
|
prefix?: string | undefined;
|
|
2833
2839
|
sslTransit?: boolean | undefined;
|
|
2834
2840
|
} | undefined;
|
|
2835
|
-
idp?: {
|
|
2836
|
-
enabled: boolean;
|
|
2837
|
-
idpKeys: string[];
|
|
2838
|
-
idpRedirectURL: string;
|
|
2839
|
-
} | undefined;
|
|
2840
2841
|
apiBasePath?: string | undefined;
|
|
2841
2842
|
session?: {
|
|
2843
|
+
domain?: string | undefined;
|
|
2842
2844
|
sameSite?: "lax" | "strict" | "none" | undefined;
|
|
2843
2845
|
maxAge?: number | undefined;
|
|
2844
2846
|
cookieName?: string | undefined;
|
|
2845
2847
|
secret?: string | string[] | undefined;
|
|
2846
|
-
domain?: string | undefined;
|
|
2847
2848
|
provider?: "redis" | "memory" | undefined;
|
|
2848
2849
|
} | undefined;
|
|
2849
2850
|
cache?: {
|
|
2850
|
-
enabled?: boolean | undefined;
|
|
2851
|
-
provider?: "redis" | "memory" | undefined;
|
|
2852
2851
|
auth?: {
|
|
2853
2852
|
password: string;
|
|
2854
2853
|
username: string;
|
|
2855
2854
|
} | undefined;
|
|
2855
|
+
enabled?: boolean | undefined;
|
|
2856
|
+
provider?: "redis" | "memory" | undefined;
|
|
2856
2857
|
} | undefined;
|
|
2857
2858
|
storage?: {
|
|
2858
2859
|
session?: {
|
|
2859
2860
|
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";
|
|
2861
|
+
ttl?: number | undefined;
|
|
2860
2862
|
port?: number | undefined;
|
|
2861
2863
|
host?: string | undefined;
|
|
2862
2864
|
password?: string | undefined;
|
|
@@ -2865,10 +2867,10 @@ export declare const RuntimeConfigSchema: z.ZodObject<{
|
|
|
2865
2867
|
url?: string | undefined;
|
|
2866
2868
|
username?: string | undefined;
|
|
2867
2869
|
tls?: boolean | undefined;
|
|
2868
|
-
ttl?: number | undefined;
|
|
2869
2870
|
} | undefined;
|
|
2870
2871
|
cache?: {
|
|
2871
2872
|
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";
|
|
2873
|
+
ttl?: number | undefined;
|
|
2872
2874
|
port?: number | undefined;
|
|
2873
2875
|
host?: string | undefined;
|
|
2874
2876
|
password?: string | undefined;
|
|
@@ -2877,11 +2879,9 @@ export declare const RuntimeConfigSchema: z.ZodObject<{
|
|
|
2877
2879
|
url?: string | undefined;
|
|
2878
2880
|
username?: string | undefined;
|
|
2879
2881
|
tls?: boolean | undefined;
|
|
2880
|
-
ttl?: number | undefined;
|
|
2881
2882
|
} | undefined;
|
|
2882
2883
|
} | undefined;
|
|
2883
2884
|
publicShopData?: string[] | undefined;
|
|
2884
|
-
internalAccessHeader?: string | undefined;
|
|
2885
2885
|
}>, z.ZodUnion<[z.ZodObject<{
|
|
2886
2886
|
sapi: z.ZodObject<{
|
|
2887
2887
|
host: z.ZodString;
|
|
@@ -2979,29 +2979,35 @@ export declare const RuntimeConfigSchema: z.ZodObject<{
|
|
|
2979
2979
|
}>;
|
|
2980
2980
|
}, "strip", z.ZodTypeAny, {
|
|
2981
2981
|
storefront: ({
|
|
2982
|
-
shopSelector: "
|
|
2982
|
+
shopSelector: "domain" | "path" | "path_or_default";
|
|
2983
2983
|
redirects?: {
|
|
2984
2984
|
enabled: boolean;
|
|
2985
2985
|
queryParamWhitelist?: string[] | undefined;
|
|
2986
2986
|
} | undefined;
|
|
2987
2987
|
} & ({
|
|
2988
2988
|
stores: Record<string, {
|
|
2989
|
-
shopId: number;
|
|
2990
2989
|
locale: string;
|
|
2991
|
-
auth: {
|
|
2992
|
-
resetPasswordUrl: string;
|
|
2993
|
-
};
|
|
2994
|
-
currency: string;
|
|
2995
2990
|
checkout: {
|
|
2996
|
-
host: string;
|
|
2997
2991
|
user: string | number;
|
|
2992
|
+
host: string;
|
|
2998
2993
|
secret: string;
|
|
2999
2994
|
token: string;
|
|
3000
|
-
cbdExpiration?: number | undefined;
|
|
3001
2995
|
shopId?: number | undefined;
|
|
2996
|
+
cbdExpiration?: number | undefined;
|
|
3002
2997
|
};
|
|
3003
|
-
|
|
2998
|
+
shopId: number;
|
|
2999
|
+
auth: {
|
|
3000
|
+
resetPasswordUrl: string;
|
|
3001
|
+
};
|
|
3002
|
+
currency: string;
|
|
3004
3003
|
domain?: string | undefined;
|
|
3004
|
+
storeCampaignKeyword?: string | undefined;
|
|
3005
|
+
idp?: {
|
|
3006
|
+
enabled: boolean;
|
|
3007
|
+
idpKeys: string[];
|
|
3008
|
+
idpRedirectURL: string;
|
|
3009
|
+
} | undefined;
|
|
3010
|
+
path?: string | string[] | undefined;
|
|
3005
3011
|
redis?: {
|
|
3006
3012
|
port?: number | undefined;
|
|
3007
3013
|
host?: string | undefined;
|
|
@@ -3015,11 +3021,6 @@ export declare const RuntimeConfigSchema: z.ZodObject<{
|
|
|
3015
3021
|
prefix?: string | undefined;
|
|
3016
3022
|
sslTransit?: boolean | undefined;
|
|
3017
3023
|
} | undefined;
|
|
3018
|
-
idp?: {
|
|
3019
|
-
enabled: boolean;
|
|
3020
|
-
idpKeys: string[];
|
|
3021
|
-
idpRedirectURL: string;
|
|
3022
|
-
} | undefined;
|
|
3023
3024
|
apiBasePath?: string | undefined;
|
|
3024
3025
|
appKeys?: {
|
|
3025
3026
|
wishlistKey: string;
|
|
@@ -3029,11 +3030,11 @@ export declare const RuntimeConfigSchema: z.ZodObject<{
|
|
|
3029
3030
|
currencyFractionDigits?: number | undefined;
|
|
3030
3031
|
isEnabled?: boolean | undefined;
|
|
3031
3032
|
sessionConfig?: {
|
|
3033
|
+
domain?: string | undefined;
|
|
3032
3034
|
sameSite?: "lax" | "strict" | "none" | undefined;
|
|
3033
3035
|
maxAge?: number | undefined;
|
|
3034
3036
|
cookieName?: string | undefined;
|
|
3035
3037
|
secret?: string | string[] | undefined;
|
|
3036
|
-
domain?: string | undefined;
|
|
3037
3038
|
provider?: "redis" | "memory" | undefined;
|
|
3038
3039
|
} | undefined;
|
|
3039
3040
|
sapi?: {
|
|
@@ -3047,6 +3048,7 @@ export declare const RuntimeConfigSchema: z.ZodObject<{
|
|
|
3047
3048
|
storage?: {
|
|
3048
3049
|
session?: {
|
|
3049
3050
|
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";
|
|
3051
|
+
ttl?: number | undefined;
|
|
3050
3052
|
port?: number | undefined;
|
|
3051
3053
|
host?: string | undefined;
|
|
3052
3054
|
password?: string | undefined;
|
|
@@ -3055,10 +3057,10 @@ export declare const RuntimeConfigSchema: z.ZodObject<{
|
|
|
3055
3057
|
url?: string | undefined;
|
|
3056
3058
|
username?: string | undefined;
|
|
3057
3059
|
tls?: boolean | undefined;
|
|
3058
|
-
ttl?: number | undefined;
|
|
3059
3060
|
} | undefined;
|
|
3060
3061
|
cache?: {
|
|
3061
3062
|
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";
|
|
3063
|
+
ttl?: number | undefined;
|
|
3062
3064
|
port?: number | undefined;
|
|
3063
3065
|
host?: string | undefined;
|
|
3064
3066
|
password?: string | undefined;
|
|
@@ -3067,31 +3069,35 @@ export declare const RuntimeConfigSchema: z.ZodObject<{
|
|
|
3067
3069
|
url?: string | undefined;
|
|
3068
3070
|
username?: string | undefined;
|
|
3069
3071
|
tls?: boolean | undefined;
|
|
3070
|
-
ttl?: number | undefined;
|
|
3071
3072
|
} | undefined;
|
|
3072
3073
|
} | undefined;
|
|
3073
3074
|
isDefault?: boolean | "" | undefined;
|
|
3074
|
-
storeCampaignKeyword?: string | undefined;
|
|
3075
3075
|
}>;
|
|
3076
3076
|
shops?: undefined;
|
|
3077
3077
|
} | {
|
|
3078
3078
|
shops: Record<string, {
|
|
3079
|
-
shopId: number;
|
|
3080
3079
|
locale: string;
|
|
3081
|
-
auth: {
|
|
3082
|
-
resetPasswordUrl: string;
|
|
3083
|
-
};
|
|
3084
|
-
currency: string;
|
|
3085
3080
|
checkout: {
|
|
3086
|
-
host: string;
|
|
3087
3081
|
user: string | number;
|
|
3082
|
+
host: string;
|
|
3088
3083
|
secret: string;
|
|
3089
3084
|
token: string;
|
|
3090
|
-
cbdExpiration?: number | undefined;
|
|
3091
3085
|
shopId?: number | undefined;
|
|
3086
|
+
cbdExpiration?: number | undefined;
|
|
3092
3087
|
};
|
|
3093
|
-
|
|
3088
|
+
shopId: number;
|
|
3089
|
+
auth: {
|
|
3090
|
+
resetPasswordUrl: string;
|
|
3091
|
+
};
|
|
3092
|
+
currency: string;
|
|
3094
3093
|
domain?: string | undefined;
|
|
3094
|
+
storeCampaignKeyword?: string | undefined;
|
|
3095
|
+
idp?: {
|
|
3096
|
+
enabled: boolean;
|
|
3097
|
+
idpKeys: string[];
|
|
3098
|
+
idpRedirectURL: string;
|
|
3099
|
+
} | undefined;
|
|
3100
|
+
path?: string | string[] | undefined;
|
|
3095
3101
|
redis?: {
|
|
3096
3102
|
port?: number | undefined;
|
|
3097
3103
|
host?: string | undefined;
|
|
@@ -3105,11 +3111,6 @@ export declare const RuntimeConfigSchema: z.ZodObject<{
|
|
|
3105
3111
|
prefix?: string | undefined;
|
|
3106
3112
|
sslTransit?: boolean | undefined;
|
|
3107
3113
|
} | undefined;
|
|
3108
|
-
idp?: {
|
|
3109
|
-
enabled: boolean;
|
|
3110
|
-
idpKeys: string[];
|
|
3111
|
-
idpRedirectURL: string;
|
|
3112
|
-
} | undefined;
|
|
3113
3114
|
apiBasePath?: string | undefined;
|
|
3114
3115
|
appKeys?: {
|
|
3115
3116
|
wishlistKey: string;
|
|
@@ -3119,11 +3120,11 @@ export declare const RuntimeConfigSchema: z.ZodObject<{
|
|
|
3119
3120
|
currencyFractionDigits?: number | undefined;
|
|
3120
3121
|
isEnabled?: boolean | undefined;
|
|
3121
3122
|
sessionConfig?: {
|
|
3123
|
+
domain?: string | undefined;
|
|
3122
3124
|
sameSite?: "lax" | "strict" | "none" | undefined;
|
|
3123
3125
|
maxAge?: number | undefined;
|
|
3124
3126
|
cookieName?: string | undefined;
|
|
3125
3127
|
secret?: string | string[] | undefined;
|
|
3126
|
-
domain?: string | undefined;
|
|
3127
3128
|
provider?: "redis" | "memory" | undefined;
|
|
3128
3129
|
} | undefined;
|
|
3129
3130
|
sapi?: {
|
|
@@ -3137,6 +3138,7 @@ export declare const RuntimeConfigSchema: z.ZodObject<{
|
|
|
3137
3138
|
storage?: {
|
|
3138
3139
|
session?: {
|
|
3139
3140
|
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";
|
|
3141
|
+
ttl?: number | undefined;
|
|
3140
3142
|
port?: number | undefined;
|
|
3141
3143
|
host?: string | undefined;
|
|
3142
3144
|
password?: string | undefined;
|
|
@@ -3145,10 +3147,10 @@ export declare const RuntimeConfigSchema: z.ZodObject<{
|
|
|
3145
3147
|
url?: string | undefined;
|
|
3146
3148
|
username?: string | undefined;
|
|
3147
3149
|
tls?: boolean | undefined;
|
|
3148
|
-
ttl?: number | undefined;
|
|
3149
3150
|
} | undefined;
|
|
3150
3151
|
cache?: {
|
|
3151
3152
|
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";
|
|
3153
|
+
ttl?: number | undefined;
|
|
3152
3154
|
port?: number | undefined;
|
|
3153
3155
|
host?: string | undefined;
|
|
3154
3156
|
password?: string | undefined;
|
|
@@ -3157,24 +3159,28 @@ export declare const RuntimeConfigSchema: z.ZodObject<{
|
|
|
3157
3159
|
url?: string | undefined;
|
|
3158
3160
|
username?: string | undefined;
|
|
3159
3161
|
tls?: boolean | undefined;
|
|
3160
|
-
ttl?: number | undefined;
|
|
3161
3162
|
} | undefined;
|
|
3162
3163
|
} | undefined;
|
|
3163
3164
|
isDefault?: boolean | "" | undefined;
|
|
3164
|
-
storeCampaignKeyword?: string | undefined;
|
|
3165
3165
|
}>;
|
|
3166
3166
|
stores?: undefined;
|
|
3167
3167
|
})) & ({
|
|
3168
|
-
appKeys: {
|
|
3169
|
-
wishlistKey: string;
|
|
3170
|
-
basketKey: string;
|
|
3171
|
-
hashAlgorithm: "none" | "md5" | "sha256";
|
|
3172
|
-
};
|
|
3173
3168
|
oauth: {
|
|
3174
3169
|
apiHost: string;
|
|
3175
3170
|
clientId: string | number;
|
|
3176
3171
|
clientSecret: string;
|
|
3177
3172
|
};
|
|
3173
|
+
appKeys: {
|
|
3174
|
+
wishlistKey: string;
|
|
3175
|
+
basketKey: string;
|
|
3176
|
+
hashAlgorithm: "none" | "md5" | "sha256";
|
|
3177
|
+
};
|
|
3178
|
+
idp?: {
|
|
3179
|
+
enabled: boolean;
|
|
3180
|
+
idpKeys: string[];
|
|
3181
|
+
idpRedirectURL: string;
|
|
3182
|
+
} | undefined;
|
|
3183
|
+
internalAccessHeader?: string | undefined;
|
|
3178
3184
|
redis?: {
|
|
3179
3185
|
port?: number | undefined;
|
|
3180
3186
|
host?: string | undefined;
|
|
@@ -3188,31 +3194,27 @@ export declare const RuntimeConfigSchema: z.ZodObject<{
|
|
|
3188
3194
|
prefix?: string | undefined;
|
|
3189
3195
|
sslTransit?: boolean | undefined;
|
|
3190
3196
|
} | undefined;
|
|
3191
|
-
idp?: {
|
|
3192
|
-
enabled: boolean;
|
|
3193
|
-
idpKeys: string[];
|
|
3194
|
-
idpRedirectURL: string;
|
|
3195
|
-
} | undefined;
|
|
3196
3197
|
apiBasePath?: string | undefined;
|
|
3197
3198
|
session?: {
|
|
3199
|
+
domain?: string | undefined;
|
|
3198
3200
|
sameSite?: "lax" | "strict" | "none" | undefined;
|
|
3199
3201
|
maxAge?: number | undefined;
|
|
3200
3202
|
cookieName?: string | undefined;
|
|
3201
3203
|
secret?: string | string[] | undefined;
|
|
3202
|
-
domain?: string | undefined;
|
|
3203
3204
|
provider?: "redis" | "memory" | undefined;
|
|
3204
3205
|
} | undefined;
|
|
3205
3206
|
cache?: {
|
|
3206
|
-
enabled?: boolean | undefined;
|
|
3207
|
-
provider?: "redis" | "memory" | undefined;
|
|
3208
3207
|
auth?: {
|
|
3209
3208
|
password: string;
|
|
3210
3209
|
username: string;
|
|
3211
3210
|
} | undefined;
|
|
3211
|
+
enabled?: boolean | undefined;
|
|
3212
|
+
provider?: "redis" | "memory" | undefined;
|
|
3212
3213
|
} | undefined;
|
|
3213
3214
|
storage?: {
|
|
3214
3215
|
session?: {
|
|
3215
3216
|
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";
|
|
3217
|
+
ttl?: number | undefined;
|
|
3216
3218
|
port?: number | undefined;
|
|
3217
3219
|
host?: string | undefined;
|
|
3218
3220
|
password?: string | undefined;
|
|
@@ -3221,10 +3223,10 @@ export declare const RuntimeConfigSchema: z.ZodObject<{
|
|
|
3221
3223
|
url?: string | undefined;
|
|
3222
3224
|
username?: string | undefined;
|
|
3223
3225
|
tls?: boolean | undefined;
|
|
3224
|
-
ttl?: number | undefined;
|
|
3225
3226
|
} | undefined;
|
|
3226
3227
|
cache?: {
|
|
3227
3228
|
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";
|
|
3229
|
+
ttl?: number | undefined;
|
|
3228
3230
|
port?: number | undefined;
|
|
3229
3231
|
host?: string | undefined;
|
|
3230
3232
|
password?: string | undefined;
|
|
@@ -3233,11 +3235,9 @@ export declare const RuntimeConfigSchema: z.ZodObject<{
|
|
|
3233
3235
|
url?: string | undefined;
|
|
3234
3236
|
username?: string | undefined;
|
|
3235
3237
|
tls?: boolean | undefined;
|
|
3236
|
-
ttl?: number | undefined;
|
|
3237
3238
|
} | undefined;
|
|
3238
3239
|
} | undefined;
|
|
3239
3240
|
publicShopData?: string[] | undefined;
|
|
3240
|
-
internalAccessHeader?: string | undefined;
|
|
3241
3241
|
} & ({
|
|
3242
3242
|
sapi: {
|
|
3243
3243
|
host: string;
|
|
@@ -3262,29 +3262,35 @@ export declare const RuntimeConfigSchema: z.ZodObject<{
|
|
|
3262
3262
|
};
|
|
3263
3263
|
}, {
|
|
3264
3264
|
storefront: ({
|
|
3265
|
-
shopSelector: "
|
|
3265
|
+
shopSelector: "domain" | "path" | "path_or_default";
|
|
3266
3266
|
redirects?: {
|
|
3267
3267
|
enabled: boolean;
|
|
3268
3268
|
queryParamWhitelist?: string[] | undefined;
|
|
3269
3269
|
} | undefined;
|
|
3270
3270
|
} & ({
|
|
3271
3271
|
stores: Record<string, {
|
|
3272
|
-
shopId: number;
|
|
3273
3272
|
locale: string;
|
|
3274
|
-
auth: {
|
|
3275
|
-
resetPasswordUrl: string;
|
|
3276
|
-
};
|
|
3277
|
-
currency: string;
|
|
3278
3273
|
checkout: {
|
|
3279
|
-
host: string;
|
|
3280
3274
|
user: string | number;
|
|
3275
|
+
host: string;
|
|
3281
3276
|
secret: string;
|
|
3282
3277
|
token: string;
|
|
3283
|
-
cbdExpiration?: number | undefined;
|
|
3284
3278
|
shopId?: number | undefined;
|
|
3279
|
+
cbdExpiration?: number | undefined;
|
|
3285
3280
|
};
|
|
3286
|
-
|
|
3281
|
+
shopId: number;
|
|
3282
|
+
auth: {
|
|
3283
|
+
resetPasswordUrl: string;
|
|
3284
|
+
};
|
|
3285
|
+
currency: string;
|
|
3287
3286
|
domain?: string | undefined;
|
|
3287
|
+
storeCampaignKeyword?: string | undefined;
|
|
3288
|
+
idp?: {
|
|
3289
|
+
enabled: boolean;
|
|
3290
|
+
idpKeys: string[];
|
|
3291
|
+
idpRedirectURL: string;
|
|
3292
|
+
} | undefined;
|
|
3293
|
+
path?: string | string[] | undefined;
|
|
3288
3294
|
redis?: {
|
|
3289
3295
|
port?: number | undefined;
|
|
3290
3296
|
host?: string | undefined;
|
|
@@ -3298,11 +3304,6 @@ export declare const RuntimeConfigSchema: z.ZodObject<{
|
|
|
3298
3304
|
prefix?: string | undefined;
|
|
3299
3305
|
sslTransit?: boolean | undefined;
|
|
3300
3306
|
} | undefined;
|
|
3301
|
-
idp?: {
|
|
3302
|
-
enabled: boolean;
|
|
3303
|
-
idpKeys: string[];
|
|
3304
|
-
idpRedirectURL: string;
|
|
3305
|
-
} | undefined;
|
|
3306
3307
|
apiBasePath?: string | undefined;
|
|
3307
3308
|
appKeys?: {
|
|
3308
3309
|
wishlistKey: string;
|
|
@@ -3312,11 +3313,11 @@ export declare const RuntimeConfigSchema: z.ZodObject<{
|
|
|
3312
3313
|
currencyFractionDigits?: number | undefined;
|
|
3313
3314
|
isEnabled?: boolean | undefined;
|
|
3314
3315
|
sessionConfig?: {
|
|
3316
|
+
domain?: string | undefined;
|
|
3315
3317
|
sameSite?: "lax" | "strict" | "none" | undefined;
|
|
3316
3318
|
maxAge?: number | undefined;
|
|
3317
3319
|
cookieName?: string | undefined;
|
|
3318
3320
|
secret?: string | string[] | undefined;
|
|
3319
|
-
domain?: string | undefined;
|
|
3320
3321
|
provider?: "redis" | "memory" | undefined;
|
|
3321
3322
|
} | undefined;
|
|
3322
3323
|
sapi?: {
|
|
@@ -3330,6 +3331,7 @@ export declare const RuntimeConfigSchema: z.ZodObject<{
|
|
|
3330
3331
|
storage?: {
|
|
3331
3332
|
session?: {
|
|
3332
3333
|
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";
|
|
3334
|
+
ttl?: number | undefined;
|
|
3333
3335
|
port?: number | undefined;
|
|
3334
3336
|
host?: string | undefined;
|
|
3335
3337
|
password?: string | undefined;
|
|
@@ -3338,10 +3340,10 @@ export declare const RuntimeConfigSchema: z.ZodObject<{
|
|
|
3338
3340
|
url?: string | undefined;
|
|
3339
3341
|
username?: string | undefined;
|
|
3340
3342
|
tls?: boolean | undefined;
|
|
3341
|
-
ttl?: number | undefined;
|
|
3342
3343
|
} | undefined;
|
|
3343
3344
|
cache?: {
|
|
3344
3345
|
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";
|
|
3346
|
+
ttl?: number | undefined;
|
|
3345
3347
|
port?: number | undefined;
|
|
3346
3348
|
host?: string | undefined;
|
|
3347
3349
|
password?: string | undefined;
|
|
@@ -3350,31 +3352,35 @@ export declare const RuntimeConfigSchema: z.ZodObject<{
|
|
|
3350
3352
|
url?: string | undefined;
|
|
3351
3353
|
username?: string | undefined;
|
|
3352
3354
|
tls?: boolean | undefined;
|
|
3353
|
-
ttl?: number | undefined;
|
|
3354
3355
|
} | undefined;
|
|
3355
3356
|
} | undefined;
|
|
3356
3357
|
isDefault?: string | boolean | undefined;
|
|
3357
|
-
storeCampaignKeyword?: string | undefined;
|
|
3358
3358
|
}>;
|
|
3359
3359
|
shops?: undefined;
|
|
3360
3360
|
} | {
|
|
3361
3361
|
shops: Record<string, {
|
|
3362
|
-
shopId: number;
|
|
3363
3362
|
locale: string;
|
|
3364
|
-
auth: {
|
|
3365
|
-
resetPasswordUrl: string;
|
|
3366
|
-
};
|
|
3367
|
-
currency: string;
|
|
3368
3363
|
checkout: {
|
|
3369
|
-
host: string;
|
|
3370
3364
|
user: string | number;
|
|
3365
|
+
host: string;
|
|
3371
3366
|
secret: string;
|
|
3372
3367
|
token: string;
|
|
3373
|
-
cbdExpiration?: number | undefined;
|
|
3374
3368
|
shopId?: number | undefined;
|
|
3369
|
+
cbdExpiration?: number | undefined;
|
|
3375
3370
|
};
|
|
3376
|
-
|
|
3371
|
+
shopId: number;
|
|
3372
|
+
auth: {
|
|
3373
|
+
resetPasswordUrl: string;
|
|
3374
|
+
};
|
|
3375
|
+
currency: string;
|
|
3377
3376
|
domain?: string | undefined;
|
|
3377
|
+
storeCampaignKeyword?: string | undefined;
|
|
3378
|
+
idp?: {
|
|
3379
|
+
enabled: boolean;
|
|
3380
|
+
idpKeys: string[];
|
|
3381
|
+
idpRedirectURL: string;
|
|
3382
|
+
} | undefined;
|
|
3383
|
+
path?: string | string[] | undefined;
|
|
3378
3384
|
redis?: {
|
|
3379
3385
|
port?: number | undefined;
|
|
3380
3386
|
host?: string | undefined;
|
|
@@ -3388,11 +3394,6 @@ export declare const RuntimeConfigSchema: z.ZodObject<{
|
|
|
3388
3394
|
prefix?: string | undefined;
|
|
3389
3395
|
sslTransit?: boolean | undefined;
|
|
3390
3396
|
} | undefined;
|
|
3391
|
-
idp?: {
|
|
3392
|
-
enabled: boolean;
|
|
3393
|
-
idpKeys: string[];
|
|
3394
|
-
idpRedirectURL: string;
|
|
3395
|
-
} | undefined;
|
|
3396
3397
|
apiBasePath?: string | undefined;
|
|
3397
3398
|
appKeys?: {
|
|
3398
3399
|
wishlistKey: string;
|
|
@@ -3402,11 +3403,11 @@ export declare const RuntimeConfigSchema: z.ZodObject<{
|
|
|
3402
3403
|
currencyFractionDigits?: number | undefined;
|
|
3403
3404
|
isEnabled?: boolean | undefined;
|
|
3404
3405
|
sessionConfig?: {
|
|
3406
|
+
domain?: string | undefined;
|
|
3405
3407
|
sameSite?: "lax" | "strict" | "none" | undefined;
|
|
3406
3408
|
maxAge?: number | undefined;
|
|
3407
3409
|
cookieName?: string | undefined;
|
|
3408
3410
|
secret?: string | string[] | undefined;
|
|
3409
|
-
domain?: string | undefined;
|
|
3410
3411
|
provider?: "redis" | "memory" | undefined;
|
|
3411
3412
|
} | undefined;
|
|
3412
3413
|
sapi?: {
|
|
@@ -3420,6 +3421,7 @@ export declare const RuntimeConfigSchema: z.ZodObject<{
|
|
|
3420
3421
|
storage?: {
|
|
3421
3422
|
session?: {
|
|
3422
3423
|
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";
|
|
3424
|
+
ttl?: number | undefined;
|
|
3423
3425
|
port?: number | undefined;
|
|
3424
3426
|
host?: string | undefined;
|
|
3425
3427
|
password?: string | undefined;
|
|
@@ -3428,10 +3430,10 @@ export declare const RuntimeConfigSchema: z.ZodObject<{
|
|
|
3428
3430
|
url?: string | undefined;
|
|
3429
3431
|
username?: string | undefined;
|
|
3430
3432
|
tls?: boolean | undefined;
|
|
3431
|
-
ttl?: number | undefined;
|
|
3432
3433
|
} | undefined;
|
|
3433
3434
|
cache?: {
|
|
3434
3435
|
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";
|
|
3436
|
+
ttl?: number | undefined;
|
|
3435
3437
|
port?: number | undefined;
|
|
3436
3438
|
host?: string | undefined;
|
|
3437
3439
|
password?: string | undefined;
|
|
@@ -3440,24 +3442,28 @@ export declare const RuntimeConfigSchema: z.ZodObject<{
|
|
|
3440
3442
|
url?: string | undefined;
|
|
3441
3443
|
username?: string | undefined;
|
|
3442
3444
|
tls?: boolean | undefined;
|
|
3443
|
-
ttl?: number | undefined;
|
|
3444
3445
|
} | undefined;
|
|
3445
3446
|
} | undefined;
|
|
3446
3447
|
isDefault?: string | boolean | undefined;
|
|
3447
|
-
storeCampaignKeyword?: string | undefined;
|
|
3448
3448
|
}>;
|
|
3449
3449
|
stores?: undefined;
|
|
3450
3450
|
})) & ({
|
|
3451
|
-
appKeys: {
|
|
3452
|
-
wishlistKey: string;
|
|
3453
|
-
basketKey: string;
|
|
3454
|
-
hashAlgorithm: "none" | "md5" | "sha256";
|
|
3455
|
-
};
|
|
3456
3451
|
oauth: {
|
|
3457
3452
|
apiHost: string;
|
|
3458
3453
|
clientId: string | number;
|
|
3459
3454
|
clientSecret: string;
|
|
3460
3455
|
};
|
|
3456
|
+
appKeys: {
|
|
3457
|
+
wishlistKey: string;
|
|
3458
|
+
basketKey: string;
|
|
3459
|
+
hashAlgorithm: "none" | "md5" | "sha256";
|
|
3460
|
+
};
|
|
3461
|
+
idp?: {
|
|
3462
|
+
enabled: boolean;
|
|
3463
|
+
idpKeys: string[];
|
|
3464
|
+
idpRedirectURL: string;
|
|
3465
|
+
} | undefined;
|
|
3466
|
+
internalAccessHeader?: string | undefined;
|
|
3461
3467
|
redis?: {
|
|
3462
3468
|
port?: number | undefined;
|
|
3463
3469
|
host?: string | undefined;
|
|
@@ -3471,31 +3477,27 @@ export declare const RuntimeConfigSchema: z.ZodObject<{
|
|
|
3471
3477
|
prefix?: string | undefined;
|
|
3472
3478
|
sslTransit?: boolean | undefined;
|
|
3473
3479
|
} | undefined;
|
|
3474
|
-
idp?: {
|
|
3475
|
-
enabled: boolean;
|
|
3476
|
-
idpKeys: string[];
|
|
3477
|
-
idpRedirectURL: string;
|
|
3478
|
-
} | undefined;
|
|
3479
3480
|
apiBasePath?: string | undefined;
|
|
3480
3481
|
session?: {
|
|
3482
|
+
domain?: string | undefined;
|
|
3481
3483
|
sameSite?: "lax" | "strict" | "none" | undefined;
|
|
3482
3484
|
maxAge?: number | undefined;
|
|
3483
3485
|
cookieName?: string | undefined;
|
|
3484
3486
|
secret?: string | string[] | undefined;
|
|
3485
|
-
domain?: string | undefined;
|
|
3486
3487
|
provider?: "redis" | "memory" | undefined;
|
|
3487
3488
|
} | undefined;
|
|
3488
3489
|
cache?: {
|
|
3489
|
-
enabled?: boolean | undefined;
|
|
3490
|
-
provider?: "redis" | "memory" | undefined;
|
|
3491
3490
|
auth?: {
|
|
3492
3491
|
password: string;
|
|
3493
3492
|
username: string;
|
|
3494
3493
|
} | undefined;
|
|
3494
|
+
enabled?: boolean | undefined;
|
|
3495
|
+
provider?: "redis" | "memory" | undefined;
|
|
3495
3496
|
} | undefined;
|
|
3496
3497
|
storage?: {
|
|
3497
3498
|
session?: {
|
|
3498
3499
|
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";
|
|
3500
|
+
ttl?: number | undefined;
|
|
3499
3501
|
port?: number | undefined;
|
|
3500
3502
|
host?: string | undefined;
|
|
3501
3503
|
password?: string | undefined;
|
|
@@ -3504,10 +3506,10 @@ export declare const RuntimeConfigSchema: z.ZodObject<{
|
|
|
3504
3506
|
url?: string | undefined;
|
|
3505
3507
|
username?: string | undefined;
|
|
3506
3508
|
tls?: boolean | undefined;
|
|
3507
|
-
ttl?: number | undefined;
|
|
3508
3509
|
} | undefined;
|
|
3509
3510
|
cache?: {
|
|
3510
3511
|
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";
|
|
3512
|
+
ttl?: number | undefined;
|
|
3511
3513
|
port?: number | undefined;
|
|
3512
3514
|
host?: string | undefined;
|
|
3513
3515
|
password?: string | undefined;
|
|
@@ -3516,11 +3518,9 @@ export declare const RuntimeConfigSchema: z.ZodObject<{
|
|
|
3516
3518
|
url?: string | undefined;
|
|
3517
3519
|
username?: string | undefined;
|
|
3518
3520
|
tls?: boolean | undefined;
|
|
3519
|
-
ttl?: number | undefined;
|
|
3520
3521
|
} | undefined;
|
|
3521
3522
|
} | undefined;
|
|
3522
3523
|
publicShopData?: string[] | undefined;
|
|
3523
|
-
internalAccessHeader?: string | undefined;
|
|
3524
3524
|
} & ({
|
|
3525
3525
|
sapi: {
|
|
3526
3526
|
host: string;
|