@vue-storefront/nuxt 6.2.0-rc.0 → 6.2.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/dist/module.d.mts CHANGED
@@ -27,9 +27,9 @@ interface MultistoreConfig {
27
27
  */
28
28
  enabled: boolean;
29
29
  }
30
- type LogLevel = "emergency" | "alert" | "critical" | "error" | "warning" | "notice" | "info" | "debug";
30
+ type LogVerbosity = "emergency" | "alert" | "critical" | "error" | "warning" | "notice" | "info" | "debug";
31
31
  type LoggerOptions = Partial<{
32
- level: LogLevel;
32
+ verbosity: LogVerbosity;
33
33
  includeStackTrace: boolean;
34
34
  }>;
35
35
  interface AlokaiModuleOptions {
package/dist/module.d.ts CHANGED
@@ -27,9 +27,9 @@ interface MultistoreConfig {
27
27
  */
28
28
  enabled: boolean;
29
29
  }
30
- type LogLevel = "emergency" | "alert" | "critical" | "error" | "warning" | "notice" | "info" | "debug";
30
+ type LogVerbosity = "emergency" | "alert" | "critical" | "error" | "warning" | "notice" | "info" | "debug";
31
31
  type LoggerOptions = Partial<{
32
- level: LogLevel;
32
+ verbosity: LogVerbosity;
33
33
  includeStackTrace: boolean;
34
34
  }>;
35
35
  interface AlokaiModuleOptions {
package/dist/module.json CHANGED
@@ -4,7 +4,7 @@
4
4
  "compatibility": {
5
5
  "nuxt": "^3.0.0"
6
6
  },
7
- "version": "6.2.0-rc.0",
7
+ "version": "6.2.0",
8
8
  "builder": {
9
9
  "@nuxt/module-builder": "0.7.1",
10
10
  "unbuild": "2.0.0"
package/dist/module.mjs CHANGED
@@ -20,7 +20,7 @@ const module = defineNuxtModule({
20
20
  },
21
21
  logger: {
22
22
  includeStackTrace: false,
23
- level: "debug"
23
+ verbosity: "debug"
24
24
  }
25
25
  },
26
26
  async setup(options, nuxt) {
@@ -27,7 +27,7 @@ export interface MultistoreConfig {
27
27
  enabled: boolean;
28
28
  }
29
29
 
30
- type LogLevel =
30
+ type LogVerbosity =
31
31
  | "emergency"
32
32
  | "alert"
33
33
  | "critical"
@@ -38,7 +38,7 @@ type LogLevel =
38
38
  | "debug";
39
39
 
40
40
  export type LoggerOptions = Partial<{
41
- level: LogLevel;
41
+ verbosity: LogVerbosity;
42
42
  includeStackTrace: boolean;
43
43
  }>;
44
44
 
package/dist/types.d.mts CHANGED
@@ -20,7 +20,7 @@ import type { } from './module.js'
20
20
  includeStackTrace: boolean,
21
21
 
22
22
  /** @default "debug" */
23
- level: string,
23
+ verbosity: string,
24
24
  },
25
25
  }
26
26
 
package/dist/types.d.ts CHANGED
@@ -20,7 +20,7 @@ import type { } from './module'
20
20
  includeStackTrace: boolean,
21
21
 
22
22
  /** @default "debug" */
23
- level: string,
23
+ verbosity: string,
24
24
  },
25
25
  }
26
26
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@vue-storefront/nuxt",
3
- "version": "6.2.0-rc.0",
3
+ "version": "6.2.0",
4
4
  "description": "Alokai dedicated features for Nuxt",
5
5
  "license": "MIT",
6
6
  "type": "module",
@@ -29,19 +29,19 @@
29
29
  "defu": "^6.0.0",
30
30
  "knitwork": "^1.0.0",
31
31
  "pinia": "^2.1.7",
32
- "@vue-storefront/logger": "1.0.0-rc.4"
32
+ "@vue-storefront/logger": "1.0.0"
33
33
  },
34
34
  "devDependencies": {
35
35
  "@types/node": "^18.11.17",
36
36
  "@nuxt/devtools": "1.3.8",
37
37
  "@nuxt/module-builder": "0.7.1",
38
- "@vue-storefront/sdk": "3.3.0-rc.3",
39
- "@vue-storefront/unified-data-model": "2.2.0-rc.0",
38
+ "@vue-storefront/sdk": "3.3.0",
39
+ "@vue-storefront/unified-data-model": "*",
40
40
  "@biomejs/biome": "1.9.2",
41
41
  "nuxt": "3.12.2"
42
42
  },
43
43
  "peerDependencies": {
44
- "@vue-storefront/sdk": "3.3.0-rc.3"
44
+ "@vue-storefront/sdk": "3.3.0"
45
45
  },
46
46
  "publishConfig": {
47
47
  "access": "public"