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