@scayle/storefront-nuxt 8.48.1 → 8.50.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 +48 -0
- package/dist/module.json +1 -1
- package/dist/module.mjs +9 -1
- package/dist/runtime/api/rpcHandler.d.ts +1 -1
- package/dist/runtime/error/handler.d.ts +1 -1
- package/dist/runtime/nitro/plugins/validateDomainConfig.d.ts +2 -0
- package/dist/runtime/nitro/plugins/validateDomainConfig.js +18 -0
- package/dist/runtime/plugin/log.client.d.ts +2 -2
- package/dist/runtime/plugin/log.server.d.ts +2 -2
- package/dist/runtime/plugin/shop.d.ts +2 -2
- package/dist/runtime/utils/domainConfigValidation.d.ts +21 -0
- package/dist/runtime/utils/domainConfigValidation.js +68 -0
- package/dist/runtime/utils/zodSchema.d.ts +223 -223
- package/package.json +8 -8
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,53 @@
|
|
|
1
1
|
# @scayle/storefront-nuxt
|
|
2
2
|
|
|
3
|
+
## 8.50.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- Introduced validation for domain configuration when `shopSelector: 'domain'` is enabled. This ensures that any domain-related misconfigurations are detected early during development. The validation requires the use of `@nuxtjs/i18n` and includes the following checks:
|
|
8
|
+
|
|
9
|
+
- Ensures every shop has a domain property configured
|
|
10
|
+
- Verifies that domains configured in the shop config are also present in the `@nuxtjs/i18n` configuration
|
|
11
|
+
- Checks that all domains in the i18n configuration are unique (no duplicates)
|
|
12
|
+
|
|
13
|
+
This validation can be disabled by setting the environment variable `SFC_PLUGIN_DOMAIN_CONFIG_VALIDATION_ENABLED` to `false` when building the application.
|
|
14
|
+
|
|
15
|
+
### Patch Changes
|
|
16
|
+
|
|
17
|
+
**Dependencies**
|
|
18
|
+
|
|
19
|
+
- Updated dependency to @scayle/unstorage-compression-driver@1.2.3
|
|
20
|
+
|
|
21
|
+
**@scayle/storefront-core v8.50.0**
|
|
22
|
+
|
|
23
|
+
- No changes in this release.
|
|
24
|
+
|
|
25
|
+
## 8.49.0
|
|
26
|
+
|
|
27
|
+
### Patch Changes
|
|
28
|
+
|
|
29
|
+
**Dependencies**
|
|
30
|
+
|
|
31
|
+
- Updated dependency to @scayle/unstorage-compression-driver@1.2.2
|
|
32
|
+
|
|
33
|
+
**@scayle/storefront-core v8.49.0**
|
|
34
|
+
|
|
35
|
+
- Minor
|
|
36
|
+
|
|
37
|
+
- Exported the `sha256` utility function as part of the public API.
|
|
38
|
+
|
|
39
|
+
This function provides a convenient way to calculate SHA256 hashes of strings using the Web Crypto API, returning hexadecimal strings.
|
|
40
|
+
Developers can now use this utility directly instead of implementing their own hashing logic or importing external cryptographic libraries.
|
|
41
|
+
|
|
42
|
+
Example:
|
|
43
|
+
|
|
44
|
+
```ts
|
|
45
|
+
import { sha256 } from '@scayle/storefront-core'
|
|
46
|
+
|
|
47
|
+
const hash = await sha256('hello')
|
|
48
|
+
console.log(hash) // '2cf24dba5fb0a30e26e83b2ac5b9e29e1b161e5c1fa7425e73043362938b9824'
|
|
49
|
+
```
|
|
50
|
+
|
|
3
51
|
## 8.48.1
|
|
4
52
|
|
|
5
53
|
### Patch Changes
|
package/dist/module.json
CHANGED
package/dist/module.mjs
CHANGED
|
@@ -54,7 +54,7 @@ export default {
|
|
|
54
54
|
}`;
|
|
55
55
|
}
|
|
56
56
|
const PACKAGE_NAME = "@scayle/storefront-nuxt";
|
|
57
|
-
const PACKAGE_VERSION = "8.
|
|
57
|
+
const PACKAGE_VERSION = "8.50.0";
|
|
58
58
|
const logger = createConsola({
|
|
59
59
|
fancy: true,
|
|
60
60
|
formatOptions: {
|
|
@@ -155,6 +155,14 @@ async function nitroSetup(nitroConfig, config, moduleOptions) {
|
|
|
155
155
|
resolve("./runtime/nitro/plugins/configValidation")
|
|
156
156
|
);
|
|
157
157
|
}
|
|
158
|
+
if (stringToBoolean(
|
|
159
|
+
process.env.SFC_PLUGIN_DOMAIN_CONFIG_VALIDATION_ENABLED,
|
|
160
|
+
true
|
|
161
|
+
) && moduleOptions.shopSelector === "domain") {
|
|
162
|
+
nitroConfig.plugins.push(
|
|
163
|
+
resolve("./runtime/nitro/plugins/validateDomainConfig")
|
|
164
|
+
);
|
|
165
|
+
}
|
|
158
166
|
if (stringToBoolean(process.env.SFC_PLUGIN_POWERED_BY_ENABLED, true)) {
|
|
159
167
|
logger.debug("Installing X-Powered-By plugin");
|
|
160
168
|
nitroConfig.plugins.push(
|
|
@@ -10,7 +10,7 @@
|
|
|
10
10
|
*
|
|
11
11
|
* @returns The result of the RPC call or a `Response` object with an error status.
|
|
12
12
|
*/
|
|
13
|
-
declare const _default: import("h3").EventHandler<import("h3").EventHandlerRequest, Promise<string | boolean | void | string[] | import("@scayle/storefront-api").Campaign | Record<string, unknown> | import("@scayle/storefront-core").ShopUser |
|
|
13
|
+
declare const _default: import("h3").EventHandler<import("h3").EventHandlerRequest, Promise<string | boolean | void | string[] | Response | import("@scayle/storefront-api").Campaign | Record<string, unknown> | import("@scayle/storefront-core").ShopUser | import("@scayle/storefront-api").Product | import("@scayle/storefront-api").Product[] | import("@scayle/storefront-core").FetchProductsCountResponse | import("@scayle/storefront-core").FetchFiltersResponse | import("@scayle/storefront-core").FetchProductsByCategoryResponse | {
|
|
14
14
|
success: boolean;
|
|
15
15
|
} | {
|
|
16
16
|
result: boolean;
|
|
@@ -6,7 +6,7 @@
|
|
|
6
6
|
* @returns A standardized error object with statusCode, statusMessage, and name.
|
|
7
7
|
*/
|
|
8
8
|
declare const resolveError: (error: Error | unknown) => {
|
|
9
|
-
statusCode: 100 | 101 | 102 |
|
|
9
|
+
statusCode: 404 | 204 | 200 | 100 | 101 | 102 | 201 | 202 | 203 | 205 | 206 | 207 | 208 | 226 | 300 | 301 | 302 | 303 | 304 | 305 | 307 | 308 | 400 | 401 | 402 | 403 | 405 | 406 | 407 | 408 | 409 | 410 | 411 | 412 | 413 | 414 | 415 | 416 | 417 | 418 | 421 | 422 | 423 | 424 | 426 | 428 | 429 | 431 | 451 | 500 | 501 | 502 | 503 | 504 | 506 | 507 | 508 | 510 | 511 | 306 | 505;
|
|
10
10
|
statusMessage: string;
|
|
11
11
|
name: string;
|
|
12
12
|
};
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
import consola from "consola";
|
|
2
|
+
import { validateDomainConfig } from "../../utils/domainConfigValidation.js";
|
|
3
|
+
import { defineNitroPlugin } from "nitropack/runtime/plugin";
|
|
4
|
+
import { useRuntimeConfig } from "#imports";
|
|
5
|
+
export default defineNitroPlugin(() => {
|
|
6
|
+
const runtimeConfig = useRuntimeConfig();
|
|
7
|
+
const shops = runtimeConfig.storefront.shops;
|
|
8
|
+
const i18nConfig = runtimeConfig.public.i18n;
|
|
9
|
+
const errors = validateDomainConfig(shops, i18nConfig);
|
|
10
|
+
if (errors.length > 0) {
|
|
11
|
+
consola.error("Domain config is invalid", errors);
|
|
12
|
+
throw new Error("Domain config is invalid", {
|
|
13
|
+
cause: errors
|
|
14
|
+
});
|
|
15
|
+
} else {
|
|
16
|
+
consola.success("Domain config is valid");
|
|
17
|
+
}
|
|
18
|
+
});
|
|
@@ -11,10 +11,10 @@ import type { Log } from '@scayle/storefront-core';
|
|
|
11
11
|
*
|
|
12
12
|
* @returns helper on the `NuxtApp` containing the 'log' and 'coreLog' instances.
|
|
13
13
|
*/
|
|
14
|
-
declare const _default: import("
|
|
14
|
+
declare const _default: import("#app").Plugin<{
|
|
15
15
|
log: Log;
|
|
16
16
|
coreLog: Log;
|
|
17
|
-
}> & import("
|
|
17
|
+
}> & import("#app").ObjectPlugin<{
|
|
18
18
|
log: Log;
|
|
19
19
|
coreLog: Log;
|
|
20
20
|
}>;
|
|
@@ -10,10 +10,10 @@
|
|
|
10
10
|
* @returns A helper on the `NuxtApp` containing the `log` and
|
|
11
11
|
* `coreLog`instances, or undefined if ssrContext is missing.
|
|
12
12
|
*/
|
|
13
|
-
declare const _default: import("
|
|
13
|
+
declare const _default: import("#app").Plugin<{
|
|
14
14
|
log: import("@scayle/storefront-core").Log;
|
|
15
15
|
coreLog: import("@scayle/storefront-core").Log;
|
|
16
|
-
}> & import("
|
|
16
|
+
}> & import("#app").ObjectPlugin<{
|
|
17
17
|
log: import("@scayle/storefront-core").Log;
|
|
18
18
|
coreLog: import("@scayle/storefront-core").Log;
|
|
19
19
|
}>;
|
|
@@ -13,10 +13,10 @@
|
|
|
13
13
|
* const { currentShop, availableShop } = useNuxtApp()
|
|
14
14
|
* ```
|
|
15
15
|
*/
|
|
16
|
-
declare const _default: import("
|
|
16
|
+
declare const _default: import("#app").Plugin<{
|
|
17
17
|
currentShop: import("../../index.js").PublicShopConfig;
|
|
18
18
|
availableShops: import("../../index.js").PublicShopConfig[];
|
|
19
|
-
}> & import("
|
|
19
|
+
}> & import("#app").ObjectPlugin<{
|
|
20
20
|
currentShop: import("../../index.js").PublicShopConfig;
|
|
21
21
|
availableShops: import("../../index.js").PublicShopConfig[];
|
|
22
22
|
}>;
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
import type { I18nPublicRuntimeConfig } from '@nuxtjs/i18n';
|
|
2
|
+
import type { ShopConfigIndexed } from '@scayle/storefront-nuxt';
|
|
3
|
+
interface RuntimeDomainValidationError {
|
|
4
|
+
type: 'missing_domain' | 'duplicate_domain';
|
|
5
|
+
shopId: number | undefined;
|
|
6
|
+
locale: string;
|
|
7
|
+
domain?: string;
|
|
8
|
+
message: string;
|
|
9
|
+
}
|
|
10
|
+
/**
|
|
11
|
+
* Validates shop an @nuxtjs/i18n configuration for domain based shop switching.
|
|
12
|
+
* - Checks that every shop has a domain property configured
|
|
13
|
+
* - Checks that the domain configured in the shop config is also configured in the i18n config
|
|
14
|
+
* - Checks that all domains in the i18nConfig are different
|
|
15
|
+
*
|
|
16
|
+
* @param shops - The shops configuration.
|
|
17
|
+
* @param i18nConfig - The @nuxtjs/i18n configuration.
|
|
18
|
+
* @returns An array of errors.
|
|
19
|
+
*/
|
|
20
|
+
export declare const validateDomainConfig: (shops: ShopConfigIndexed, i18nConfig: I18nPublicRuntimeConfig) => RuntimeDomainValidationError[];
|
|
21
|
+
export {};
|
|
@@ -0,0 +1,68 @@
|
|
|
1
|
+
export const validateDomainConfig = (shops, i18nConfig) => {
|
|
2
|
+
const errors = [];
|
|
3
|
+
const createError = (type, shopId, locale, message, domain) => ({
|
|
4
|
+
type,
|
|
5
|
+
shopId,
|
|
6
|
+
locale,
|
|
7
|
+
message,
|
|
8
|
+
...domain && { domain }
|
|
9
|
+
});
|
|
10
|
+
for (const [shopId, shop] of Object.entries(shops)) {
|
|
11
|
+
const numericShopId = Number(shopId);
|
|
12
|
+
if (!shop.domain) {
|
|
13
|
+
errors.push(
|
|
14
|
+
createError(
|
|
15
|
+
"missing_domain",
|
|
16
|
+
numericShopId,
|
|
17
|
+
shop.locale,
|
|
18
|
+
"Domain is required in shop config"
|
|
19
|
+
)
|
|
20
|
+
);
|
|
21
|
+
continue;
|
|
22
|
+
}
|
|
23
|
+
if (!Object.values(i18nConfig.domainLocales).some(
|
|
24
|
+
({ domain }) => domain === shop.domain
|
|
25
|
+
)) {
|
|
26
|
+
errors.push(
|
|
27
|
+
createError(
|
|
28
|
+
"missing_domain",
|
|
29
|
+
numericShopId,
|
|
30
|
+
shop.locale,
|
|
31
|
+
`'${shop.domain}' was not found in i18n config`,
|
|
32
|
+
shop.domain
|
|
33
|
+
)
|
|
34
|
+
);
|
|
35
|
+
}
|
|
36
|
+
}
|
|
37
|
+
const seenDomains = /* @__PURE__ */ new Set();
|
|
38
|
+
for (const [locale, config] of Object.entries(i18nConfig.domainLocales)) {
|
|
39
|
+
if (!config?.domain) {
|
|
40
|
+
continue;
|
|
41
|
+
}
|
|
42
|
+
if (!Object.values(shops).some((shop) => shop.domain === config.domain)) {
|
|
43
|
+
errors.push(
|
|
44
|
+
createError(
|
|
45
|
+
"missing_domain",
|
|
46
|
+
void 0,
|
|
47
|
+
locale,
|
|
48
|
+
`'${config.domain}' is configured in i18nConfig but not in shop config`
|
|
49
|
+
)
|
|
50
|
+
);
|
|
51
|
+
}
|
|
52
|
+
if (seenDomains.has(config?.domain)) {
|
|
53
|
+
const shop = Object.values(shops).find((shop2) => {
|
|
54
|
+
return shop2.domain === config.domain;
|
|
55
|
+
});
|
|
56
|
+
errors.push(
|
|
57
|
+
createError(
|
|
58
|
+
"duplicate_domain",
|
|
59
|
+
Number(shop?.shopId),
|
|
60
|
+
locale,
|
|
61
|
+
`Duplicate domain found in i18nConfig: ${config.domain}`
|
|
62
|
+
)
|
|
63
|
+
);
|
|
64
|
+
}
|
|
65
|
+
seenDomains.add(config.domain);
|
|
66
|
+
}
|
|
67
|
+
return errors;
|
|
68
|
+
};
|
|
@@ -46,56 +46,56 @@ declare const IdpSchema: z.ZodMiniObject<{
|
|
|
46
46
|
}, z.core.$strip>;
|
|
47
47
|
declare const StorageSchema: z.ZodMiniDiscriminatedUnion<[z.ZodMiniObject<{
|
|
48
48
|
driver: z.ZodMiniEnum<{
|
|
49
|
-
null: "null";
|
|
50
49
|
"azure-app-configuration": "azure-app-configuration";
|
|
51
|
-
azureAppConfiguration: "azureAppConfiguration";
|
|
52
50
|
"azure-cosmos": "azure-cosmos";
|
|
53
|
-
azureCosmos: "azureCosmos";
|
|
54
51
|
"azure-key-vault": "azure-key-vault";
|
|
55
|
-
azureKeyVault: "azureKeyVault";
|
|
56
52
|
"azure-storage-blob": "azure-storage-blob";
|
|
57
|
-
azureStorageBlob: "azureStorageBlob";
|
|
58
53
|
"azure-storage-table": "azure-storage-table";
|
|
59
|
-
azureStorageTable: "azureStorageTable";
|
|
60
54
|
"capacitor-preferences": "capacitor-preferences";
|
|
61
|
-
capacitorPreferences: "capacitorPreferences";
|
|
62
55
|
"cloudflare-kv-binding": "cloudflare-kv-binding";
|
|
63
|
-
cloudflareKVBinding: "cloudflareKVBinding";
|
|
64
56
|
"cloudflare-kv-http": "cloudflare-kv-http";
|
|
65
|
-
cloudflareKVHttp: "cloudflareKVHttp";
|
|
66
57
|
"cloudflare-r2-binding": "cloudflare-r2-binding";
|
|
67
|
-
cloudflareR2Binding: "cloudflareR2Binding";
|
|
68
58
|
db0: "db0";
|
|
69
59
|
"deno-kv-node": "deno-kv-node";
|
|
70
|
-
denoKVNode: "denoKVNode";
|
|
71
60
|
"deno-kv": "deno-kv";
|
|
72
|
-
denoKV: "denoKV";
|
|
73
61
|
"fs-lite": "fs-lite";
|
|
74
|
-
fsLite: "fsLite";
|
|
75
62
|
fs: "fs";
|
|
76
63
|
github: "github";
|
|
77
64
|
http: "http";
|
|
78
|
-
indexedb: "indexedb";
|
|
79
65
|
localstorage: "localstorage";
|
|
66
|
+
sessionStorage: "sessionStorage";
|
|
80
67
|
"lru-cache": "lru-cache";
|
|
81
|
-
lruCache: "lruCache";
|
|
82
|
-
memory: "memory";
|
|
83
68
|
mongodb: "mongodb";
|
|
84
69
|
"netlify-blobs": "netlify-blobs";
|
|
85
|
-
netlifyBlobs: "netlifyBlobs";
|
|
86
70
|
overlay: "overlay";
|
|
87
71
|
planetscale: "planetscale";
|
|
88
72
|
redis: "redis";
|
|
89
73
|
s3: "s3";
|
|
90
74
|
"session-storage": "session-storage";
|
|
91
|
-
sessionStorage: "sessionStorage";
|
|
92
75
|
uploadthing: "uploadthing";
|
|
93
76
|
upstash: "upstash";
|
|
94
77
|
"vercel-blob": "vercel-blob";
|
|
95
|
-
vercelBlob: "vercelBlob";
|
|
96
78
|
"vercel-kv": "vercel-kv";
|
|
97
|
-
vercelKV: "vercelKV";
|
|
98
79
|
"vercel-runtime-cache": "vercel-runtime-cache";
|
|
80
|
+
null: "null";
|
|
81
|
+
azureAppConfiguration: "azureAppConfiguration";
|
|
82
|
+
azureCosmos: "azureCosmos";
|
|
83
|
+
azureKeyVault: "azureKeyVault";
|
|
84
|
+
azureStorageBlob: "azureStorageBlob";
|
|
85
|
+
azureStorageTable: "azureStorageTable";
|
|
86
|
+
capacitorPreferences: "capacitorPreferences";
|
|
87
|
+
cloudflareKVBinding: "cloudflareKVBinding";
|
|
88
|
+
cloudflareKVHttp: "cloudflareKVHttp";
|
|
89
|
+
cloudflareR2Binding: "cloudflareR2Binding";
|
|
90
|
+
denoKVNode: "denoKVNode";
|
|
91
|
+
denoKV: "denoKV";
|
|
92
|
+
fsLite: "fsLite";
|
|
93
|
+
indexedb: "indexedb";
|
|
94
|
+
lruCache: "lruCache";
|
|
95
|
+
memory: "memory";
|
|
96
|
+
netlifyBlobs: "netlifyBlobs";
|
|
97
|
+
vercelBlob: "vercelBlob";
|
|
98
|
+
vercelKV: "vercelKV";
|
|
99
99
|
vercelRuntimeCache: "vercelRuntimeCache";
|
|
100
100
|
}>;
|
|
101
101
|
compression: z.ZodMiniOptional<z.ZodMiniEnum<{
|
|
@@ -201,56 +201,56 @@ declare const ShopConfigSchema: z.ZodMiniObject<{
|
|
|
201
201
|
storage: z.ZodMiniOptional<z.ZodMiniObject<{
|
|
202
202
|
session: z.ZodMiniOptional<z.ZodMiniDiscriminatedUnion<[z.ZodMiniObject<{
|
|
203
203
|
driver: z.ZodMiniEnum<{
|
|
204
|
-
null: "null";
|
|
205
204
|
"azure-app-configuration": "azure-app-configuration";
|
|
206
|
-
azureAppConfiguration: "azureAppConfiguration";
|
|
207
205
|
"azure-cosmos": "azure-cosmos";
|
|
208
|
-
azureCosmos: "azureCosmos";
|
|
209
206
|
"azure-key-vault": "azure-key-vault";
|
|
210
|
-
azureKeyVault: "azureKeyVault";
|
|
211
207
|
"azure-storage-blob": "azure-storage-blob";
|
|
212
|
-
azureStorageBlob: "azureStorageBlob";
|
|
213
208
|
"azure-storage-table": "azure-storage-table";
|
|
214
|
-
azureStorageTable: "azureStorageTable";
|
|
215
209
|
"capacitor-preferences": "capacitor-preferences";
|
|
216
|
-
capacitorPreferences: "capacitorPreferences";
|
|
217
210
|
"cloudflare-kv-binding": "cloudflare-kv-binding";
|
|
218
|
-
cloudflareKVBinding: "cloudflareKVBinding";
|
|
219
211
|
"cloudflare-kv-http": "cloudflare-kv-http";
|
|
220
|
-
cloudflareKVHttp: "cloudflareKVHttp";
|
|
221
212
|
"cloudflare-r2-binding": "cloudflare-r2-binding";
|
|
222
|
-
cloudflareR2Binding: "cloudflareR2Binding";
|
|
223
213
|
db0: "db0";
|
|
224
214
|
"deno-kv-node": "deno-kv-node";
|
|
225
|
-
denoKVNode: "denoKVNode";
|
|
226
215
|
"deno-kv": "deno-kv";
|
|
227
|
-
denoKV: "denoKV";
|
|
228
216
|
"fs-lite": "fs-lite";
|
|
229
|
-
fsLite: "fsLite";
|
|
230
217
|
fs: "fs";
|
|
231
218
|
github: "github";
|
|
232
219
|
http: "http";
|
|
233
|
-
indexedb: "indexedb";
|
|
234
220
|
localstorage: "localstorage";
|
|
221
|
+
sessionStorage: "sessionStorage";
|
|
235
222
|
"lru-cache": "lru-cache";
|
|
236
|
-
lruCache: "lruCache";
|
|
237
|
-
memory: "memory";
|
|
238
223
|
mongodb: "mongodb";
|
|
239
224
|
"netlify-blobs": "netlify-blobs";
|
|
240
|
-
netlifyBlobs: "netlifyBlobs";
|
|
241
225
|
overlay: "overlay";
|
|
242
226
|
planetscale: "planetscale";
|
|
243
227
|
redis: "redis";
|
|
244
228
|
s3: "s3";
|
|
245
229
|
"session-storage": "session-storage";
|
|
246
|
-
sessionStorage: "sessionStorage";
|
|
247
230
|
uploadthing: "uploadthing";
|
|
248
231
|
upstash: "upstash";
|
|
249
232
|
"vercel-blob": "vercel-blob";
|
|
250
|
-
vercelBlob: "vercelBlob";
|
|
251
233
|
"vercel-kv": "vercel-kv";
|
|
252
|
-
vercelKV: "vercelKV";
|
|
253
234
|
"vercel-runtime-cache": "vercel-runtime-cache";
|
|
235
|
+
null: "null";
|
|
236
|
+
azureAppConfiguration: "azureAppConfiguration";
|
|
237
|
+
azureCosmos: "azureCosmos";
|
|
238
|
+
azureKeyVault: "azureKeyVault";
|
|
239
|
+
azureStorageBlob: "azureStorageBlob";
|
|
240
|
+
azureStorageTable: "azureStorageTable";
|
|
241
|
+
capacitorPreferences: "capacitorPreferences";
|
|
242
|
+
cloudflareKVBinding: "cloudflareKVBinding";
|
|
243
|
+
cloudflareKVHttp: "cloudflareKVHttp";
|
|
244
|
+
cloudflareR2Binding: "cloudflareR2Binding";
|
|
245
|
+
denoKVNode: "denoKVNode";
|
|
246
|
+
denoKV: "denoKV";
|
|
247
|
+
fsLite: "fsLite";
|
|
248
|
+
indexedb: "indexedb";
|
|
249
|
+
lruCache: "lruCache";
|
|
250
|
+
memory: "memory";
|
|
251
|
+
netlifyBlobs: "netlifyBlobs";
|
|
252
|
+
vercelBlob: "vercelBlob";
|
|
253
|
+
vercelKV: "vercelKV";
|
|
254
254
|
vercelRuntimeCache: "vercelRuntimeCache";
|
|
255
255
|
}>;
|
|
256
256
|
compression: z.ZodMiniOptional<z.ZodMiniEnum<{
|
|
@@ -280,56 +280,56 @@ declare const ShopConfigSchema: z.ZodMiniObject<{
|
|
|
280
280
|
}, z.core.$strip>], "driver">>;
|
|
281
281
|
cache: z.ZodMiniOptional<z.ZodMiniDiscriminatedUnion<[z.ZodMiniObject<{
|
|
282
282
|
driver: z.ZodMiniEnum<{
|
|
283
|
-
null: "null";
|
|
284
283
|
"azure-app-configuration": "azure-app-configuration";
|
|
285
|
-
azureAppConfiguration: "azureAppConfiguration";
|
|
286
284
|
"azure-cosmos": "azure-cosmos";
|
|
287
|
-
azureCosmos: "azureCosmos";
|
|
288
285
|
"azure-key-vault": "azure-key-vault";
|
|
289
|
-
azureKeyVault: "azureKeyVault";
|
|
290
286
|
"azure-storage-blob": "azure-storage-blob";
|
|
291
|
-
azureStorageBlob: "azureStorageBlob";
|
|
292
287
|
"azure-storage-table": "azure-storage-table";
|
|
293
|
-
azureStorageTable: "azureStorageTable";
|
|
294
288
|
"capacitor-preferences": "capacitor-preferences";
|
|
295
|
-
capacitorPreferences: "capacitorPreferences";
|
|
296
289
|
"cloudflare-kv-binding": "cloudflare-kv-binding";
|
|
297
|
-
cloudflareKVBinding: "cloudflareKVBinding";
|
|
298
290
|
"cloudflare-kv-http": "cloudflare-kv-http";
|
|
299
|
-
cloudflareKVHttp: "cloudflareKVHttp";
|
|
300
291
|
"cloudflare-r2-binding": "cloudflare-r2-binding";
|
|
301
|
-
cloudflareR2Binding: "cloudflareR2Binding";
|
|
302
292
|
db0: "db0";
|
|
303
293
|
"deno-kv-node": "deno-kv-node";
|
|
304
|
-
denoKVNode: "denoKVNode";
|
|
305
294
|
"deno-kv": "deno-kv";
|
|
306
|
-
denoKV: "denoKV";
|
|
307
295
|
"fs-lite": "fs-lite";
|
|
308
|
-
fsLite: "fsLite";
|
|
309
296
|
fs: "fs";
|
|
310
297
|
github: "github";
|
|
311
298
|
http: "http";
|
|
312
|
-
indexedb: "indexedb";
|
|
313
299
|
localstorage: "localstorage";
|
|
300
|
+
sessionStorage: "sessionStorage";
|
|
314
301
|
"lru-cache": "lru-cache";
|
|
315
|
-
lruCache: "lruCache";
|
|
316
|
-
memory: "memory";
|
|
317
302
|
mongodb: "mongodb";
|
|
318
303
|
"netlify-blobs": "netlify-blobs";
|
|
319
|
-
netlifyBlobs: "netlifyBlobs";
|
|
320
304
|
overlay: "overlay";
|
|
321
305
|
planetscale: "planetscale";
|
|
322
306
|
redis: "redis";
|
|
323
307
|
s3: "s3";
|
|
324
308
|
"session-storage": "session-storage";
|
|
325
|
-
sessionStorage: "sessionStorage";
|
|
326
309
|
uploadthing: "uploadthing";
|
|
327
310
|
upstash: "upstash";
|
|
328
311
|
"vercel-blob": "vercel-blob";
|
|
329
|
-
vercelBlob: "vercelBlob";
|
|
330
312
|
"vercel-kv": "vercel-kv";
|
|
331
|
-
vercelKV: "vercelKV";
|
|
332
313
|
"vercel-runtime-cache": "vercel-runtime-cache";
|
|
314
|
+
null: "null";
|
|
315
|
+
azureAppConfiguration: "azureAppConfiguration";
|
|
316
|
+
azureCosmos: "azureCosmos";
|
|
317
|
+
azureKeyVault: "azureKeyVault";
|
|
318
|
+
azureStorageBlob: "azureStorageBlob";
|
|
319
|
+
azureStorageTable: "azureStorageTable";
|
|
320
|
+
capacitorPreferences: "capacitorPreferences";
|
|
321
|
+
cloudflareKVBinding: "cloudflareKVBinding";
|
|
322
|
+
cloudflareKVHttp: "cloudflareKVHttp";
|
|
323
|
+
cloudflareR2Binding: "cloudflareR2Binding";
|
|
324
|
+
denoKVNode: "denoKVNode";
|
|
325
|
+
denoKV: "denoKV";
|
|
326
|
+
fsLite: "fsLite";
|
|
327
|
+
indexedb: "indexedb";
|
|
328
|
+
lruCache: "lruCache";
|
|
329
|
+
memory: "memory";
|
|
330
|
+
netlifyBlobs: "netlifyBlobs";
|
|
331
|
+
vercelBlob: "vercelBlob";
|
|
332
|
+
vercelKV: "vercelKV";
|
|
333
333
|
vercelRuntimeCache: "vercelRuntimeCache";
|
|
334
334
|
}>;
|
|
335
335
|
compression: z.ZodMiniOptional<z.ZodMiniEnum<{
|
|
@@ -361,8 +361,8 @@ declare const ShopConfigSchema: z.ZodMiniObject<{
|
|
|
361
361
|
isDefault: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniBoolean<boolean>, z.ZodMiniString<string>]>>;
|
|
362
362
|
}, z.core.$strip>;
|
|
363
363
|
declare const ShopSelectorSchema: z.ZodMiniEnum<{
|
|
364
|
-
domain: "domain";
|
|
365
364
|
path: "path";
|
|
365
|
+
domain: "domain";
|
|
366
366
|
path_or_default: "path_or_default";
|
|
367
367
|
}>;
|
|
368
368
|
type ShopConfigType = z.infer<typeof ShopConfigSchema>;
|
|
@@ -374,8 +374,8 @@ declare const StorefrontRuntimeConfigSchema: z.ZodMiniObject<{
|
|
|
374
374
|
* @see https://scayle.dev/en/core-documentation/storefront-guide/storefront-application/features/internationalization/configuration#routing-configuration
|
|
375
375
|
*/
|
|
376
376
|
shopSelector: z.ZodMiniEnum<{
|
|
377
|
-
domain: "domain";
|
|
378
377
|
path: "path";
|
|
378
|
+
domain: "domain";
|
|
379
379
|
path_or_default: "path_or_default";
|
|
380
380
|
}>;
|
|
381
381
|
/**
|
|
@@ -472,56 +472,56 @@ declare const StorefrontRuntimeConfigSchema: z.ZodMiniObject<{
|
|
|
472
472
|
storage: z.ZodMiniOptional<z.ZodMiniObject<{
|
|
473
473
|
session: z.ZodMiniOptional<z.ZodMiniDiscriminatedUnion<[z.ZodMiniObject<{
|
|
474
474
|
driver: z.ZodMiniEnum<{
|
|
475
|
-
null: "null";
|
|
476
475
|
"azure-app-configuration": "azure-app-configuration";
|
|
477
|
-
azureAppConfiguration: "azureAppConfiguration";
|
|
478
476
|
"azure-cosmos": "azure-cosmos";
|
|
479
|
-
azureCosmos: "azureCosmos";
|
|
480
477
|
"azure-key-vault": "azure-key-vault";
|
|
481
|
-
azureKeyVault: "azureKeyVault";
|
|
482
478
|
"azure-storage-blob": "azure-storage-blob";
|
|
483
|
-
azureStorageBlob: "azureStorageBlob";
|
|
484
479
|
"azure-storage-table": "azure-storage-table";
|
|
485
|
-
azureStorageTable: "azureStorageTable";
|
|
486
480
|
"capacitor-preferences": "capacitor-preferences";
|
|
487
|
-
capacitorPreferences: "capacitorPreferences";
|
|
488
481
|
"cloudflare-kv-binding": "cloudflare-kv-binding";
|
|
489
|
-
cloudflareKVBinding: "cloudflareKVBinding";
|
|
490
482
|
"cloudflare-kv-http": "cloudflare-kv-http";
|
|
491
|
-
cloudflareKVHttp: "cloudflareKVHttp";
|
|
492
483
|
"cloudflare-r2-binding": "cloudflare-r2-binding";
|
|
493
|
-
cloudflareR2Binding: "cloudflareR2Binding";
|
|
494
484
|
db0: "db0";
|
|
495
485
|
"deno-kv-node": "deno-kv-node";
|
|
496
|
-
denoKVNode: "denoKVNode";
|
|
497
486
|
"deno-kv": "deno-kv";
|
|
498
|
-
denoKV: "denoKV";
|
|
499
487
|
"fs-lite": "fs-lite";
|
|
500
|
-
fsLite: "fsLite";
|
|
501
488
|
fs: "fs";
|
|
502
489
|
github: "github";
|
|
503
490
|
http: "http";
|
|
504
|
-
indexedb: "indexedb";
|
|
505
491
|
localstorage: "localstorage";
|
|
492
|
+
sessionStorage: "sessionStorage";
|
|
506
493
|
"lru-cache": "lru-cache";
|
|
507
|
-
lruCache: "lruCache";
|
|
508
|
-
memory: "memory";
|
|
509
494
|
mongodb: "mongodb";
|
|
510
495
|
"netlify-blobs": "netlify-blobs";
|
|
511
|
-
netlifyBlobs: "netlifyBlobs";
|
|
512
496
|
overlay: "overlay";
|
|
513
497
|
planetscale: "planetscale";
|
|
514
498
|
redis: "redis";
|
|
515
499
|
s3: "s3";
|
|
516
500
|
"session-storage": "session-storage";
|
|
517
|
-
sessionStorage: "sessionStorage";
|
|
518
501
|
uploadthing: "uploadthing";
|
|
519
502
|
upstash: "upstash";
|
|
520
503
|
"vercel-blob": "vercel-blob";
|
|
521
|
-
vercelBlob: "vercelBlob";
|
|
522
504
|
"vercel-kv": "vercel-kv";
|
|
523
|
-
vercelKV: "vercelKV";
|
|
524
505
|
"vercel-runtime-cache": "vercel-runtime-cache";
|
|
506
|
+
null: "null";
|
|
507
|
+
azureAppConfiguration: "azureAppConfiguration";
|
|
508
|
+
azureCosmos: "azureCosmos";
|
|
509
|
+
azureKeyVault: "azureKeyVault";
|
|
510
|
+
azureStorageBlob: "azureStorageBlob";
|
|
511
|
+
azureStorageTable: "azureStorageTable";
|
|
512
|
+
capacitorPreferences: "capacitorPreferences";
|
|
513
|
+
cloudflareKVBinding: "cloudflareKVBinding";
|
|
514
|
+
cloudflareKVHttp: "cloudflareKVHttp";
|
|
515
|
+
cloudflareR2Binding: "cloudflareR2Binding";
|
|
516
|
+
denoKVNode: "denoKVNode";
|
|
517
|
+
denoKV: "denoKV";
|
|
518
|
+
fsLite: "fsLite";
|
|
519
|
+
indexedb: "indexedb";
|
|
520
|
+
lruCache: "lruCache";
|
|
521
|
+
memory: "memory";
|
|
522
|
+
netlifyBlobs: "netlifyBlobs";
|
|
523
|
+
vercelBlob: "vercelBlob";
|
|
524
|
+
vercelKV: "vercelKV";
|
|
525
525
|
vercelRuntimeCache: "vercelRuntimeCache";
|
|
526
526
|
}>;
|
|
527
527
|
compression: z.ZodMiniOptional<z.ZodMiniEnum<{
|
|
@@ -551,56 +551,56 @@ declare const StorefrontRuntimeConfigSchema: z.ZodMiniObject<{
|
|
|
551
551
|
}, z.core.$strip>], "driver">>;
|
|
552
552
|
cache: z.ZodMiniOptional<z.ZodMiniDiscriminatedUnion<[z.ZodMiniObject<{
|
|
553
553
|
driver: z.ZodMiniEnum<{
|
|
554
|
-
null: "null";
|
|
555
554
|
"azure-app-configuration": "azure-app-configuration";
|
|
556
|
-
azureAppConfiguration: "azureAppConfiguration";
|
|
557
555
|
"azure-cosmos": "azure-cosmos";
|
|
558
|
-
azureCosmos: "azureCosmos";
|
|
559
556
|
"azure-key-vault": "azure-key-vault";
|
|
560
|
-
azureKeyVault: "azureKeyVault";
|
|
561
557
|
"azure-storage-blob": "azure-storage-blob";
|
|
562
|
-
azureStorageBlob: "azureStorageBlob";
|
|
563
558
|
"azure-storage-table": "azure-storage-table";
|
|
564
|
-
azureStorageTable: "azureStorageTable";
|
|
565
559
|
"capacitor-preferences": "capacitor-preferences";
|
|
566
|
-
capacitorPreferences: "capacitorPreferences";
|
|
567
560
|
"cloudflare-kv-binding": "cloudflare-kv-binding";
|
|
568
|
-
cloudflareKVBinding: "cloudflareKVBinding";
|
|
569
561
|
"cloudflare-kv-http": "cloudflare-kv-http";
|
|
570
|
-
cloudflareKVHttp: "cloudflareKVHttp";
|
|
571
562
|
"cloudflare-r2-binding": "cloudflare-r2-binding";
|
|
572
|
-
cloudflareR2Binding: "cloudflareR2Binding";
|
|
573
563
|
db0: "db0";
|
|
574
564
|
"deno-kv-node": "deno-kv-node";
|
|
575
|
-
denoKVNode: "denoKVNode";
|
|
576
565
|
"deno-kv": "deno-kv";
|
|
577
|
-
denoKV: "denoKV";
|
|
578
566
|
"fs-lite": "fs-lite";
|
|
579
|
-
fsLite: "fsLite";
|
|
580
567
|
fs: "fs";
|
|
581
568
|
github: "github";
|
|
582
569
|
http: "http";
|
|
583
|
-
indexedb: "indexedb";
|
|
584
570
|
localstorage: "localstorage";
|
|
571
|
+
sessionStorage: "sessionStorage";
|
|
585
572
|
"lru-cache": "lru-cache";
|
|
586
|
-
lruCache: "lruCache";
|
|
587
|
-
memory: "memory";
|
|
588
573
|
mongodb: "mongodb";
|
|
589
574
|
"netlify-blobs": "netlify-blobs";
|
|
590
|
-
netlifyBlobs: "netlifyBlobs";
|
|
591
575
|
overlay: "overlay";
|
|
592
576
|
planetscale: "planetscale";
|
|
593
577
|
redis: "redis";
|
|
594
578
|
s3: "s3";
|
|
595
579
|
"session-storage": "session-storage";
|
|
596
|
-
sessionStorage: "sessionStorage";
|
|
597
580
|
uploadthing: "uploadthing";
|
|
598
581
|
upstash: "upstash";
|
|
599
582
|
"vercel-blob": "vercel-blob";
|
|
600
|
-
vercelBlob: "vercelBlob";
|
|
601
583
|
"vercel-kv": "vercel-kv";
|
|
602
|
-
vercelKV: "vercelKV";
|
|
603
584
|
"vercel-runtime-cache": "vercel-runtime-cache";
|
|
585
|
+
null: "null";
|
|
586
|
+
azureAppConfiguration: "azureAppConfiguration";
|
|
587
|
+
azureCosmos: "azureCosmos";
|
|
588
|
+
azureKeyVault: "azureKeyVault";
|
|
589
|
+
azureStorageBlob: "azureStorageBlob";
|
|
590
|
+
azureStorageTable: "azureStorageTable";
|
|
591
|
+
capacitorPreferences: "capacitorPreferences";
|
|
592
|
+
cloudflareKVBinding: "cloudflareKVBinding";
|
|
593
|
+
cloudflareKVHttp: "cloudflareKVHttp";
|
|
594
|
+
cloudflareR2Binding: "cloudflareR2Binding";
|
|
595
|
+
denoKVNode: "denoKVNode";
|
|
596
|
+
denoKV: "denoKV";
|
|
597
|
+
fsLite: "fsLite";
|
|
598
|
+
indexedb: "indexedb";
|
|
599
|
+
lruCache: "lruCache";
|
|
600
|
+
memory: "memory";
|
|
601
|
+
netlifyBlobs: "netlifyBlobs";
|
|
602
|
+
vercelBlob: "vercelBlob";
|
|
603
|
+
vercelKV: "vercelKV";
|
|
604
604
|
vercelRuntimeCache: "vercelRuntimeCache";
|
|
605
605
|
}>;
|
|
606
606
|
compression: z.ZodMiniOptional<z.ZodMiniEnum<{
|
|
@@ -664,56 +664,56 @@ declare const StorefrontRuntimeConfigSchema: z.ZodMiniObject<{
|
|
|
664
664
|
storage: z.ZodMiniOptional<z.ZodMiniObject<{
|
|
665
665
|
session: z.ZodMiniOptional<z.ZodMiniDiscriminatedUnion<[z.ZodMiniObject<{
|
|
666
666
|
driver: z.ZodMiniEnum<{
|
|
667
|
-
null: "null";
|
|
668
667
|
"azure-app-configuration": "azure-app-configuration";
|
|
669
|
-
azureAppConfiguration: "azureAppConfiguration";
|
|
670
668
|
"azure-cosmos": "azure-cosmos";
|
|
671
|
-
azureCosmos: "azureCosmos";
|
|
672
669
|
"azure-key-vault": "azure-key-vault";
|
|
673
|
-
azureKeyVault: "azureKeyVault";
|
|
674
670
|
"azure-storage-blob": "azure-storage-blob";
|
|
675
|
-
azureStorageBlob: "azureStorageBlob";
|
|
676
671
|
"azure-storage-table": "azure-storage-table";
|
|
677
|
-
azureStorageTable: "azureStorageTable";
|
|
678
672
|
"capacitor-preferences": "capacitor-preferences";
|
|
679
|
-
capacitorPreferences: "capacitorPreferences";
|
|
680
673
|
"cloudflare-kv-binding": "cloudflare-kv-binding";
|
|
681
|
-
cloudflareKVBinding: "cloudflareKVBinding";
|
|
682
674
|
"cloudflare-kv-http": "cloudflare-kv-http";
|
|
683
|
-
cloudflareKVHttp: "cloudflareKVHttp";
|
|
684
675
|
"cloudflare-r2-binding": "cloudflare-r2-binding";
|
|
685
|
-
cloudflareR2Binding: "cloudflareR2Binding";
|
|
686
676
|
db0: "db0";
|
|
687
677
|
"deno-kv-node": "deno-kv-node";
|
|
688
|
-
denoKVNode: "denoKVNode";
|
|
689
678
|
"deno-kv": "deno-kv";
|
|
690
|
-
denoKV: "denoKV";
|
|
691
679
|
"fs-lite": "fs-lite";
|
|
692
|
-
fsLite: "fsLite";
|
|
693
680
|
fs: "fs";
|
|
694
681
|
github: "github";
|
|
695
682
|
http: "http";
|
|
696
|
-
indexedb: "indexedb";
|
|
697
683
|
localstorage: "localstorage";
|
|
684
|
+
sessionStorage: "sessionStorage";
|
|
698
685
|
"lru-cache": "lru-cache";
|
|
699
|
-
lruCache: "lruCache";
|
|
700
|
-
memory: "memory";
|
|
701
686
|
mongodb: "mongodb";
|
|
702
687
|
"netlify-blobs": "netlify-blobs";
|
|
703
|
-
netlifyBlobs: "netlifyBlobs";
|
|
704
688
|
overlay: "overlay";
|
|
705
689
|
planetscale: "planetscale";
|
|
706
690
|
redis: "redis";
|
|
707
691
|
s3: "s3";
|
|
708
692
|
"session-storage": "session-storage";
|
|
709
|
-
sessionStorage: "sessionStorage";
|
|
710
693
|
uploadthing: "uploadthing";
|
|
711
694
|
upstash: "upstash";
|
|
712
695
|
"vercel-blob": "vercel-blob";
|
|
713
|
-
vercelBlob: "vercelBlob";
|
|
714
696
|
"vercel-kv": "vercel-kv";
|
|
715
|
-
vercelKV: "vercelKV";
|
|
716
697
|
"vercel-runtime-cache": "vercel-runtime-cache";
|
|
698
|
+
null: "null";
|
|
699
|
+
azureAppConfiguration: "azureAppConfiguration";
|
|
700
|
+
azureCosmos: "azureCosmos";
|
|
701
|
+
azureKeyVault: "azureKeyVault";
|
|
702
|
+
azureStorageBlob: "azureStorageBlob";
|
|
703
|
+
azureStorageTable: "azureStorageTable";
|
|
704
|
+
capacitorPreferences: "capacitorPreferences";
|
|
705
|
+
cloudflareKVBinding: "cloudflareKVBinding";
|
|
706
|
+
cloudflareKVHttp: "cloudflareKVHttp";
|
|
707
|
+
cloudflareR2Binding: "cloudflareR2Binding";
|
|
708
|
+
denoKVNode: "denoKVNode";
|
|
709
|
+
denoKV: "denoKV";
|
|
710
|
+
fsLite: "fsLite";
|
|
711
|
+
indexedb: "indexedb";
|
|
712
|
+
lruCache: "lruCache";
|
|
713
|
+
memory: "memory";
|
|
714
|
+
netlifyBlobs: "netlifyBlobs";
|
|
715
|
+
vercelBlob: "vercelBlob";
|
|
716
|
+
vercelKV: "vercelKV";
|
|
717
717
|
vercelRuntimeCache: "vercelRuntimeCache";
|
|
718
718
|
}>;
|
|
719
719
|
compression: z.ZodMiniOptional<z.ZodMiniEnum<{
|
|
@@ -743,56 +743,56 @@ declare const StorefrontRuntimeConfigSchema: z.ZodMiniObject<{
|
|
|
743
743
|
}, z.core.$strip>], "driver">>;
|
|
744
744
|
cache: z.ZodMiniOptional<z.ZodMiniDiscriminatedUnion<[z.ZodMiniObject<{
|
|
745
745
|
driver: z.ZodMiniEnum<{
|
|
746
|
-
null: "null";
|
|
747
746
|
"azure-app-configuration": "azure-app-configuration";
|
|
748
|
-
azureAppConfiguration: "azureAppConfiguration";
|
|
749
747
|
"azure-cosmos": "azure-cosmos";
|
|
750
|
-
azureCosmos: "azureCosmos";
|
|
751
748
|
"azure-key-vault": "azure-key-vault";
|
|
752
|
-
azureKeyVault: "azureKeyVault";
|
|
753
749
|
"azure-storage-blob": "azure-storage-blob";
|
|
754
|
-
azureStorageBlob: "azureStorageBlob";
|
|
755
750
|
"azure-storage-table": "azure-storage-table";
|
|
756
|
-
azureStorageTable: "azureStorageTable";
|
|
757
751
|
"capacitor-preferences": "capacitor-preferences";
|
|
758
|
-
capacitorPreferences: "capacitorPreferences";
|
|
759
752
|
"cloudflare-kv-binding": "cloudflare-kv-binding";
|
|
760
|
-
cloudflareKVBinding: "cloudflareKVBinding";
|
|
761
753
|
"cloudflare-kv-http": "cloudflare-kv-http";
|
|
762
|
-
cloudflareKVHttp: "cloudflareKVHttp";
|
|
763
754
|
"cloudflare-r2-binding": "cloudflare-r2-binding";
|
|
764
|
-
cloudflareR2Binding: "cloudflareR2Binding";
|
|
765
755
|
db0: "db0";
|
|
766
756
|
"deno-kv-node": "deno-kv-node";
|
|
767
|
-
denoKVNode: "denoKVNode";
|
|
768
757
|
"deno-kv": "deno-kv";
|
|
769
|
-
denoKV: "denoKV";
|
|
770
758
|
"fs-lite": "fs-lite";
|
|
771
|
-
fsLite: "fsLite";
|
|
772
759
|
fs: "fs";
|
|
773
760
|
github: "github";
|
|
774
761
|
http: "http";
|
|
775
|
-
indexedb: "indexedb";
|
|
776
762
|
localstorage: "localstorage";
|
|
763
|
+
sessionStorage: "sessionStorage";
|
|
777
764
|
"lru-cache": "lru-cache";
|
|
778
|
-
lruCache: "lruCache";
|
|
779
|
-
memory: "memory";
|
|
780
765
|
mongodb: "mongodb";
|
|
781
766
|
"netlify-blobs": "netlify-blobs";
|
|
782
|
-
netlifyBlobs: "netlifyBlobs";
|
|
783
767
|
overlay: "overlay";
|
|
784
768
|
planetscale: "planetscale";
|
|
785
769
|
redis: "redis";
|
|
786
770
|
s3: "s3";
|
|
787
771
|
"session-storage": "session-storage";
|
|
788
|
-
sessionStorage: "sessionStorage";
|
|
789
772
|
uploadthing: "uploadthing";
|
|
790
773
|
upstash: "upstash";
|
|
791
774
|
"vercel-blob": "vercel-blob";
|
|
792
|
-
vercelBlob: "vercelBlob";
|
|
793
775
|
"vercel-kv": "vercel-kv";
|
|
794
|
-
vercelKV: "vercelKV";
|
|
795
776
|
"vercel-runtime-cache": "vercel-runtime-cache";
|
|
777
|
+
null: "null";
|
|
778
|
+
azureAppConfiguration: "azureAppConfiguration";
|
|
779
|
+
azureCosmos: "azureCosmos";
|
|
780
|
+
azureKeyVault: "azureKeyVault";
|
|
781
|
+
azureStorageBlob: "azureStorageBlob";
|
|
782
|
+
azureStorageTable: "azureStorageTable";
|
|
783
|
+
capacitorPreferences: "capacitorPreferences";
|
|
784
|
+
cloudflareKVBinding: "cloudflareKVBinding";
|
|
785
|
+
cloudflareKVHttp: "cloudflareKVHttp";
|
|
786
|
+
cloudflareR2Binding: "cloudflareR2Binding";
|
|
787
|
+
denoKVNode: "denoKVNode";
|
|
788
|
+
denoKV: "denoKV";
|
|
789
|
+
fsLite: "fsLite";
|
|
790
|
+
indexedb: "indexedb";
|
|
791
|
+
lruCache: "lruCache";
|
|
792
|
+
memory: "memory";
|
|
793
|
+
netlifyBlobs: "netlifyBlobs";
|
|
794
|
+
vercelBlob: "vercelBlob";
|
|
795
|
+
vercelKV: "vercelKV";
|
|
796
796
|
vercelRuntimeCache: "vercelRuntimeCache";
|
|
797
797
|
}>;
|
|
798
798
|
compression: z.ZodMiniOptional<z.ZodMiniEnum<{
|
|
@@ -889,8 +889,8 @@ export declare const RuntimeConfigSchema: z.ZodMiniObject<{
|
|
|
889
889
|
* @see https://scayle.dev/en/core-documentation/storefront-guide/storefront-application/features/internationalization/configuration#routing-configuration
|
|
890
890
|
*/
|
|
891
891
|
shopSelector: z.ZodMiniEnum<{
|
|
892
|
-
domain: "domain";
|
|
893
892
|
path: "path";
|
|
893
|
+
domain: "domain";
|
|
894
894
|
path_or_default: "path_or_default";
|
|
895
895
|
}>;
|
|
896
896
|
/**
|
|
@@ -987,56 +987,56 @@ export declare const RuntimeConfigSchema: z.ZodMiniObject<{
|
|
|
987
987
|
storage: z.ZodMiniOptional<z.ZodMiniObject<{
|
|
988
988
|
session: z.ZodMiniOptional<z.ZodMiniDiscriminatedUnion<[z.ZodMiniObject<{
|
|
989
989
|
driver: z.ZodMiniEnum<{
|
|
990
|
-
null: "null";
|
|
991
990
|
"azure-app-configuration": "azure-app-configuration";
|
|
992
|
-
azureAppConfiguration: "azureAppConfiguration";
|
|
993
991
|
"azure-cosmos": "azure-cosmos";
|
|
994
|
-
azureCosmos: "azureCosmos";
|
|
995
992
|
"azure-key-vault": "azure-key-vault";
|
|
996
|
-
azureKeyVault: "azureKeyVault";
|
|
997
993
|
"azure-storage-blob": "azure-storage-blob";
|
|
998
|
-
azureStorageBlob: "azureStorageBlob";
|
|
999
994
|
"azure-storage-table": "azure-storage-table";
|
|
1000
|
-
azureStorageTable: "azureStorageTable";
|
|
1001
995
|
"capacitor-preferences": "capacitor-preferences";
|
|
1002
|
-
capacitorPreferences: "capacitorPreferences";
|
|
1003
996
|
"cloudflare-kv-binding": "cloudflare-kv-binding";
|
|
1004
|
-
cloudflareKVBinding: "cloudflareKVBinding";
|
|
1005
997
|
"cloudflare-kv-http": "cloudflare-kv-http";
|
|
1006
|
-
cloudflareKVHttp: "cloudflareKVHttp";
|
|
1007
998
|
"cloudflare-r2-binding": "cloudflare-r2-binding";
|
|
1008
|
-
cloudflareR2Binding: "cloudflareR2Binding";
|
|
1009
999
|
db0: "db0";
|
|
1010
1000
|
"deno-kv-node": "deno-kv-node";
|
|
1011
|
-
denoKVNode: "denoKVNode";
|
|
1012
1001
|
"deno-kv": "deno-kv";
|
|
1013
|
-
denoKV: "denoKV";
|
|
1014
1002
|
"fs-lite": "fs-lite";
|
|
1015
|
-
fsLite: "fsLite";
|
|
1016
1003
|
fs: "fs";
|
|
1017
1004
|
github: "github";
|
|
1018
1005
|
http: "http";
|
|
1019
|
-
indexedb: "indexedb";
|
|
1020
1006
|
localstorage: "localstorage";
|
|
1007
|
+
sessionStorage: "sessionStorage";
|
|
1021
1008
|
"lru-cache": "lru-cache";
|
|
1022
|
-
lruCache: "lruCache";
|
|
1023
|
-
memory: "memory";
|
|
1024
1009
|
mongodb: "mongodb";
|
|
1025
1010
|
"netlify-blobs": "netlify-blobs";
|
|
1026
|
-
netlifyBlobs: "netlifyBlobs";
|
|
1027
1011
|
overlay: "overlay";
|
|
1028
1012
|
planetscale: "planetscale";
|
|
1029
1013
|
redis: "redis";
|
|
1030
1014
|
s3: "s3";
|
|
1031
1015
|
"session-storage": "session-storage";
|
|
1032
|
-
sessionStorage: "sessionStorage";
|
|
1033
1016
|
uploadthing: "uploadthing";
|
|
1034
1017
|
upstash: "upstash";
|
|
1035
1018
|
"vercel-blob": "vercel-blob";
|
|
1036
|
-
vercelBlob: "vercelBlob";
|
|
1037
1019
|
"vercel-kv": "vercel-kv";
|
|
1038
|
-
vercelKV: "vercelKV";
|
|
1039
1020
|
"vercel-runtime-cache": "vercel-runtime-cache";
|
|
1021
|
+
null: "null";
|
|
1022
|
+
azureAppConfiguration: "azureAppConfiguration";
|
|
1023
|
+
azureCosmos: "azureCosmos";
|
|
1024
|
+
azureKeyVault: "azureKeyVault";
|
|
1025
|
+
azureStorageBlob: "azureStorageBlob";
|
|
1026
|
+
azureStorageTable: "azureStorageTable";
|
|
1027
|
+
capacitorPreferences: "capacitorPreferences";
|
|
1028
|
+
cloudflareKVBinding: "cloudflareKVBinding";
|
|
1029
|
+
cloudflareKVHttp: "cloudflareKVHttp";
|
|
1030
|
+
cloudflareR2Binding: "cloudflareR2Binding";
|
|
1031
|
+
denoKVNode: "denoKVNode";
|
|
1032
|
+
denoKV: "denoKV";
|
|
1033
|
+
fsLite: "fsLite";
|
|
1034
|
+
indexedb: "indexedb";
|
|
1035
|
+
lruCache: "lruCache";
|
|
1036
|
+
memory: "memory";
|
|
1037
|
+
netlifyBlobs: "netlifyBlobs";
|
|
1038
|
+
vercelBlob: "vercelBlob";
|
|
1039
|
+
vercelKV: "vercelKV";
|
|
1040
1040
|
vercelRuntimeCache: "vercelRuntimeCache";
|
|
1041
1041
|
}>;
|
|
1042
1042
|
compression: z.ZodMiniOptional<z.ZodMiniEnum<{
|
|
@@ -1066,56 +1066,56 @@ export declare const RuntimeConfigSchema: z.ZodMiniObject<{
|
|
|
1066
1066
|
}, z.core.$strip>], "driver">>;
|
|
1067
1067
|
cache: z.ZodMiniOptional<z.ZodMiniDiscriminatedUnion<[z.ZodMiniObject<{
|
|
1068
1068
|
driver: z.ZodMiniEnum<{
|
|
1069
|
-
null: "null";
|
|
1070
1069
|
"azure-app-configuration": "azure-app-configuration";
|
|
1071
|
-
azureAppConfiguration: "azureAppConfiguration";
|
|
1072
1070
|
"azure-cosmos": "azure-cosmos";
|
|
1073
|
-
azureCosmos: "azureCosmos";
|
|
1074
1071
|
"azure-key-vault": "azure-key-vault";
|
|
1075
|
-
azureKeyVault: "azureKeyVault";
|
|
1076
1072
|
"azure-storage-blob": "azure-storage-blob";
|
|
1077
|
-
azureStorageBlob: "azureStorageBlob";
|
|
1078
1073
|
"azure-storage-table": "azure-storage-table";
|
|
1079
|
-
azureStorageTable: "azureStorageTable";
|
|
1080
1074
|
"capacitor-preferences": "capacitor-preferences";
|
|
1081
|
-
capacitorPreferences: "capacitorPreferences";
|
|
1082
1075
|
"cloudflare-kv-binding": "cloudflare-kv-binding";
|
|
1083
|
-
cloudflareKVBinding: "cloudflareKVBinding";
|
|
1084
1076
|
"cloudflare-kv-http": "cloudflare-kv-http";
|
|
1085
|
-
cloudflareKVHttp: "cloudflareKVHttp";
|
|
1086
1077
|
"cloudflare-r2-binding": "cloudflare-r2-binding";
|
|
1087
|
-
cloudflareR2Binding: "cloudflareR2Binding";
|
|
1088
1078
|
db0: "db0";
|
|
1089
1079
|
"deno-kv-node": "deno-kv-node";
|
|
1090
|
-
denoKVNode: "denoKVNode";
|
|
1091
1080
|
"deno-kv": "deno-kv";
|
|
1092
|
-
denoKV: "denoKV";
|
|
1093
1081
|
"fs-lite": "fs-lite";
|
|
1094
|
-
fsLite: "fsLite";
|
|
1095
1082
|
fs: "fs";
|
|
1096
1083
|
github: "github";
|
|
1097
1084
|
http: "http";
|
|
1098
|
-
indexedb: "indexedb";
|
|
1099
1085
|
localstorage: "localstorage";
|
|
1086
|
+
sessionStorage: "sessionStorage";
|
|
1100
1087
|
"lru-cache": "lru-cache";
|
|
1101
|
-
lruCache: "lruCache";
|
|
1102
|
-
memory: "memory";
|
|
1103
1088
|
mongodb: "mongodb";
|
|
1104
1089
|
"netlify-blobs": "netlify-blobs";
|
|
1105
|
-
netlifyBlobs: "netlifyBlobs";
|
|
1106
1090
|
overlay: "overlay";
|
|
1107
1091
|
planetscale: "planetscale";
|
|
1108
1092
|
redis: "redis";
|
|
1109
1093
|
s3: "s3";
|
|
1110
1094
|
"session-storage": "session-storage";
|
|
1111
|
-
sessionStorage: "sessionStorage";
|
|
1112
1095
|
uploadthing: "uploadthing";
|
|
1113
1096
|
upstash: "upstash";
|
|
1114
1097
|
"vercel-blob": "vercel-blob";
|
|
1115
|
-
vercelBlob: "vercelBlob";
|
|
1116
1098
|
"vercel-kv": "vercel-kv";
|
|
1117
|
-
vercelKV: "vercelKV";
|
|
1118
1099
|
"vercel-runtime-cache": "vercel-runtime-cache";
|
|
1100
|
+
null: "null";
|
|
1101
|
+
azureAppConfiguration: "azureAppConfiguration";
|
|
1102
|
+
azureCosmos: "azureCosmos";
|
|
1103
|
+
azureKeyVault: "azureKeyVault";
|
|
1104
|
+
azureStorageBlob: "azureStorageBlob";
|
|
1105
|
+
azureStorageTable: "azureStorageTable";
|
|
1106
|
+
capacitorPreferences: "capacitorPreferences";
|
|
1107
|
+
cloudflareKVBinding: "cloudflareKVBinding";
|
|
1108
|
+
cloudflareKVHttp: "cloudflareKVHttp";
|
|
1109
|
+
cloudflareR2Binding: "cloudflareR2Binding";
|
|
1110
|
+
denoKVNode: "denoKVNode";
|
|
1111
|
+
denoKV: "denoKV";
|
|
1112
|
+
fsLite: "fsLite";
|
|
1113
|
+
indexedb: "indexedb";
|
|
1114
|
+
lruCache: "lruCache";
|
|
1115
|
+
memory: "memory";
|
|
1116
|
+
netlifyBlobs: "netlifyBlobs";
|
|
1117
|
+
vercelBlob: "vercelBlob";
|
|
1118
|
+
vercelKV: "vercelKV";
|
|
1119
1119
|
vercelRuntimeCache: "vercelRuntimeCache";
|
|
1120
1120
|
}>;
|
|
1121
1121
|
compression: z.ZodMiniOptional<z.ZodMiniEnum<{
|
|
@@ -1179,56 +1179,56 @@ export declare const RuntimeConfigSchema: z.ZodMiniObject<{
|
|
|
1179
1179
|
storage: z.ZodMiniOptional<z.ZodMiniObject<{
|
|
1180
1180
|
session: z.ZodMiniOptional<z.ZodMiniDiscriminatedUnion<[z.ZodMiniObject<{
|
|
1181
1181
|
driver: z.ZodMiniEnum<{
|
|
1182
|
-
null: "null";
|
|
1183
1182
|
"azure-app-configuration": "azure-app-configuration";
|
|
1184
|
-
azureAppConfiguration: "azureAppConfiguration";
|
|
1185
1183
|
"azure-cosmos": "azure-cosmos";
|
|
1186
|
-
azureCosmos: "azureCosmos";
|
|
1187
1184
|
"azure-key-vault": "azure-key-vault";
|
|
1188
|
-
azureKeyVault: "azureKeyVault";
|
|
1189
1185
|
"azure-storage-blob": "azure-storage-blob";
|
|
1190
|
-
azureStorageBlob: "azureStorageBlob";
|
|
1191
1186
|
"azure-storage-table": "azure-storage-table";
|
|
1192
|
-
azureStorageTable: "azureStorageTable";
|
|
1193
1187
|
"capacitor-preferences": "capacitor-preferences";
|
|
1194
|
-
capacitorPreferences: "capacitorPreferences";
|
|
1195
1188
|
"cloudflare-kv-binding": "cloudflare-kv-binding";
|
|
1196
|
-
cloudflareKVBinding: "cloudflareKVBinding";
|
|
1197
1189
|
"cloudflare-kv-http": "cloudflare-kv-http";
|
|
1198
|
-
cloudflareKVHttp: "cloudflareKVHttp";
|
|
1199
1190
|
"cloudflare-r2-binding": "cloudflare-r2-binding";
|
|
1200
|
-
cloudflareR2Binding: "cloudflareR2Binding";
|
|
1201
1191
|
db0: "db0";
|
|
1202
1192
|
"deno-kv-node": "deno-kv-node";
|
|
1203
|
-
denoKVNode: "denoKVNode";
|
|
1204
1193
|
"deno-kv": "deno-kv";
|
|
1205
|
-
denoKV: "denoKV";
|
|
1206
1194
|
"fs-lite": "fs-lite";
|
|
1207
|
-
fsLite: "fsLite";
|
|
1208
1195
|
fs: "fs";
|
|
1209
1196
|
github: "github";
|
|
1210
1197
|
http: "http";
|
|
1211
|
-
indexedb: "indexedb";
|
|
1212
1198
|
localstorage: "localstorage";
|
|
1199
|
+
sessionStorage: "sessionStorage";
|
|
1213
1200
|
"lru-cache": "lru-cache";
|
|
1214
|
-
lruCache: "lruCache";
|
|
1215
|
-
memory: "memory";
|
|
1216
1201
|
mongodb: "mongodb";
|
|
1217
1202
|
"netlify-blobs": "netlify-blobs";
|
|
1218
|
-
netlifyBlobs: "netlifyBlobs";
|
|
1219
1203
|
overlay: "overlay";
|
|
1220
1204
|
planetscale: "planetscale";
|
|
1221
1205
|
redis: "redis";
|
|
1222
1206
|
s3: "s3";
|
|
1223
1207
|
"session-storage": "session-storage";
|
|
1224
|
-
sessionStorage: "sessionStorage";
|
|
1225
1208
|
uploadthing: "uploadthing";
|
|
1226
1209
|
upstash: "upstash";
|
|
1227
1210
|
"vercel-blob": "vercel-blob";
|
|
1228
|
-
vercelBlob: "vercelBlob";
|
|
1229
1211
|
"vercel-kv": "vercel-kv";
|
|
1230
|
-
vercelKV: "vercelKV";
|
|
1231
1212
|
"vercel-runtime-cache": "vercel-runtime-cache";
|
|
1213
|
+
null: "null";
|
|
1214
|
+
azureAppConfiguration: "azureAppConfiguration";
|
|
1215
|
+
azureCosmos: "azureCosmos";
|
|
1216
|
+
azureKeyVault: "azureKeyVault";
|
|
1217
|
+
azureStorageBlob: "azureStorageBlob";
|
|
1218
|
+
azureStorageTable: "azureStorageTable";
|
|
1219
|
+
capacitorPreferences: "capacitorPreferences";
|
|
1220
|
+
cloudflareKVBinding: "cloudflareKVBinding";
|
|
1221
|
+
cloudflareKVHttp: "cloudflareKVHttp";
|
|
1222
|
+
cloudflareR2Binding: "cloudflareR2Binding";
|
|
1223
|
+
denoKVNode: "denoKVNode";
|
|
1224
|
+
denoKV: "denoKV";
|
|
1225
|
+
fsLite: "fsLite";
|
|
1226
|
+
indexedb: "indexedb";
|
|
1227
|
+
lruCache: "lruCache";
|
|
1228
|
+
memory: "memory";
|
|
1229
|
+
netlifyBlobs: "netlifyBlobs";
|
|
1230
|
+
vercelBlob: "vercelBlob";
|
|
1231
|
+
vercelKV: "vercelKV";
|
|
1232
1232
|
vercelRuntimeCache: "vercelRuntimeCache";
|
|
1233
1233
|
}>;
|
|
1234
1234
|
compression: z.ZodMiniOptional<z.ZodMiniEnum<{
|
|
@@ -1258,56 +1258,56 @@ export declare const RuntimeConfigSchema: z.ZodMiniObject<{
|
|
|
1258
1258
|
}, z.core.$strip>], "driver">>;
|
|
1259
1259
|
cache: z.ZodMiniOptional<z.ZodMiniDiscriminatedUnion<[z.ZodMiniObject<{
|
|
1260
1260
|
driver: z.ZodMiniEnum<{
|
|
1261
|
-
null: "null";
|
|
1262
1261
|
"azure-app-configuration": "azure-app-configuration";
|
|
1263
|
-
azureAppConfiguration: "azureAppConfiguration";
|
|
1264
1262
|
"azure-cosmos": "azure-cosmos";
|
|
1265
|
-
azureCosmos: "azureCosmos";
|
|
1266
1263
|
"azure-key-vault": "azure-key-vault";
|
|
1267
|
-
azureKeyVault: "azureKeyVault";
|
|
1268
1264
|
"azure-storage-blob": "azure-storage-blob";
|
|
1269
|
-
azureStorageBlob: "azureStorageBlob";
|
|
1270
1265
|
"azure-storage-table": "azure-storage-table";
|
|
1271
|
-
azureStorageTable: "azureStorageTable";
|
|
1272
1266
|
"capacitor-preferences": "capacitor-preferences";
|
|
1273
|
-
capacitorPreferences: "capacitorPreferences";
|
|
1274
1267
|
"cloudflare-kv-binding": "cloudflare-kv-binding";
|
|
1275
|
-
cloudflareKVBinding: "cloudflareKVBinding";
|
|
1276
1268
|
"cloudflare-kv-http": "cloudflare-kv-http";
|
|
1277
|
-
cloudflareKVHttp: "cloudflareKVHttp";
|
|
1278
1269
|
"cloudflare-r2-binding": "cloudflare-r2-binding";
|
|
1279
|
-
cloudflareR2Binding: "cloudflareR2Binding";
|
|
1280
1270
|
db0: "db0";
|
|
1281
1271
|
"deno-kv-node": "deno-kv-node";
|
|
1282
|
-
denoKVNode: "denoKVNode";
|
|
1283
1272
|
"deno-kv": "deno-kv";
|
|
1284
|
-
denoKV: "denoKV";
|
|
1285
1273
|
"fs-lite": "fs-lite";
|
|
1286
|
-
fsLite: "fsLite";
|
|
1287
1274
|
fs: "fs";
|
|
1288
1275
|
github: "github";
|
|
1289
1276
|
http: "http";
|
|
1290
|
-
indexedb: "indexedb";
|
|
1291
1277
|
localstorage: "localstorage";
|
|
1278
|
+
sessionStorage: "sessionStorage";
|
|
1292
1279
|
"lru-cache": "lru-cache";
|
|
1293
|
-
lruCache: "lruCache";
|
|
1294
|
-
memory: "memory";
|
|
1295
1280
|
mongodb: "mongodb";
|
|
1296
1281
|
"netlify-blobs": "netlify-blobs";
|
|
1297
|
-
netlifyBlobs: "netlifyBlobs";
|
|
1298
1282
|
overlay: "overlay";
|
|
1299
1283
|
planetscale: "planetscale";
|
|
1300
1284
|
redis: "redis";
|
|
1301
1285
|
s3: "s3";
|
|
1302
1286
|
"session-storage": "session-storage";
|
|
1303
|
-
sessionStorage: "sessionStorage";
|
|
1304
1287
|
uploadthing: "uploadthing";
|
|
1305
1288
|
upstash: "upstash";
|
|
1306
1289
|
"vercel-blob": "vercel-blob";
|
|
1307
|
-
vercelBlob: "vercelBlob";
|
|
1308
1290
|
"vercel-kv": "vercel-kv";
|
|
1309
|
-
vercelKV: "vercelKV";
|
|
1310
1291
|
"vercel-runtime-cache": "vercel-runtime-cache";
|
|
1292
|
+
null: "null";
|
|
1293
|
+
azureAppConfiguration: "azureAppConfiguration";
|
|
1294
|
+
azureCosmos: "azureCosmos";
|
|
1295
|
+
azureKeyVault: "azureKeyVault";
|
|
1296
|
+
azureStorageBlob: "azureStorageBlob";
|
|
1297
|
+
azureStorageTable: "azureStorageTable";
|
|
1298
|
+
capacitorPreferences: "capacitorPreferences";
|
|
1299
|
+
cloudflareKVBinding: "cloudflareKVBinding";
|
|
1300
|
+
cloudflareKVHttp: "cloudflareKVHttp";
|
|
1301
|
+
cloudflareR2Binding: "cloudflareR2Binding";
|
|
1302
|
+
denoKVNode: "denoKVNode";
|
|
1303
|
+
denoKV: "denoKV";
|
|
1304
|
+
fsLite: "fsLite";
|
|
1305
|
+
indexedb: "indexedb";
|
|
1306
|
+
lruCache: "lruCache";
|
|
1307
|
+
memory: "memory";
|
|
1308
|
+
netlifyBlobs: "netlifyBlobs";
|
|
1309
|
+
vercelBlob: "vercelBlob";
|
|
1310
|
+
vercelKV: "vercelKV";
|
|
1311
1311
|
vercelRuntimeCache: "vercelRuntimeCache";
|
|
1312
1312
|
}>;
|
|
1313
1313
|
compression: z.ZodMiniOptional<z.ZodMiniEnum<{
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@scayle/storefront-nuxt",
|
|
3
3
|
"type": "module",
|
|
4
|
-
"version": "8.
|
|
4
|
+
"version": "8.50.0",
|
|
5
5
|
"description": "Nuxt integration for the SCAYLE Commerce Engine and Storefront API",
|
|
6
6
|
"author": "SCAYLE Commerce Engine",
|
|
7
7
|
"license": "MIT",
|
|
@@ -90,8 +90,8 @@
|
|
|
90
90
|
"utility-types": "^3.11.0",
|
|
91
91
|
"vue-router": "^4.4.0",
|
|
92
92
|
"zod": "^4.0.0",
|
|
93
|
-
"@scayle/
|
|
94
|
-
"@scayle/
|
|
93
|
+
"@scayle/unstorage-compression-driver": "1.2.3",
|
|
94
|
+
"@scayle/storefront-core": "8.50.0"
|
|
95
95
|
},
|
|
96
96
|
"devDependencies": {
|
|
97
97
|
"@arethetypeswrong/cli": "0.18.2",
|
|
@@ -102,11 +102,11 @@
|
|
|
102
102
|
"@nuxt/module-builder": "1.0.2",
|
|
103
103
|
"@nuxt/schema": "3.20.0",
|
|
104
104
|
"@nuxt/test-utils": "3.20.1",
|
|
105
|
-
"@types/node": "22.
|
|
105
|
+
"@types/node": "22.19.0",
|
|
106
106
|
"@vitest/coverage-v8": "3.2.4",
|
|
107
107
|
"dprint": "0.50.2",
|
|
108
108
|
"eslint-formatter-gitlab": "6.0.1",
|
|
109
|
-
"eslint": "9.
|
|
109
|
+
"eslint": "9.39.1",
|
|
110
110
|
"fishery": "2.3.1",
|
|
111
111
|
"h3": "1.15.4",
|
|
112
112
|
"nitro-test-utils": "0.10.1",
|
|
@@ -119,13 +119,13 @@
|
|
|
119
119
|
"vitest": "3.2.4",
|
|
120
120
|
"vue-tsc": "3.1.3",
|
|
121
121
|
"happy-dom": "20.0.10",
|
|
122
|
-
"@scayle/eslint-config-storefront": "4.7.
|
|
122
|
+
"@scayle/eslint-config-storefront": "4.7.12",
|
|
123
123
|
"@scayle/eslint-plugin-vue-composable": "0.2.2",
|
|
124
124
|
"@scayle/vitest-config-storefront": "1.0.0",
|
|
125
|
-
"@scayle/unstorage-scayle-kv-driver": "2.0.
|
|
125
|
+
"@scayle/unstorage-scayle-kv-driver": "2.0.8"
|
|
126
126
|
},
|
|
127
127
|
"volta": {
|
|
128
|
-
"node": "22.21.
|
|
128
|
+
"node": "22.21.1"
|
|
129
129
|
},
|
|
130
130
|
"scripts": {
|
|
131
131
|
"build": "nuxt-module-build build",
|