@scayle/storefront-nuxt 8.59.4 → 8.59.5

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 CHANGED
@@ -1,5 +1,17 @@
1
1
  # @scayle/storefront-nuxt
2
2
 
3
+ ## 8.59.5
4
+
5
+ ### Patch Changes
6
+
7
+ **Dependencies**
8
+
9
+ - Updated dependency to @scayle/unstorage-compression-driver@1.3.0
10
+
11
+ **@scayle/storefront-core v8.59.5**
12
+
13
+ - No changes in this release.
14
+
3
15
  ## 8.59.4
4
16
 
5
17
  ### Patch Changes
package/dist/module.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@scayle/storefront-nuxt",
3
- "version": "8.59.4",
3
+ "version": "8.59.5",
4
4
  "configKey": "storefront",
5
5
  "compatibility": {
6
6
  "nuxt": ">=3.13"
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.59.4";
57
+ const PACKAGE_VERSION = "8.59.5";
58
58
  const logger = createConsola({
59
59
  fancy: true,
60
60
  formatOptions: {
@@ -1,6 +1,6 @@
1
1
  import type { MaybeRefOrGetter } from 'vue';
2
2
  import type { RpcMethodParameters } from '@scayle/storefront-core';
3
- import type { UseRpcReturn, UseRpcCacheKey } from '../core/useRpc.js';
3
+ import type { UseRpcReturn, UseRpcCacheKey } from './useRpc.js';
4
4
  /**
5
5
  * The shape of the data returned by the `getExternalIdpRedirect` RPC call.
6
6
  */
@@ -1,4 +1,4 @@
1
- import { useRpc } from "../core/useRpc.js";
1
+ import { useRpc } from "./useRpc.js";
2
2
  import { extendPromise } from "../../utils/promise.js";
3
3
  export function useIDP(params = {}, key) {
4
4
  const useRpcPromise = useRpc(
@@ -1,4 +1,4 @@
1
- import { useRpcCall } from "../core/useRpcCall.js";
1
+ import { useRpcCall } from "./useRpcCall.js";
2
2
  export function useSession() {
3
3
  return {
4
4
  login: useRpcCall("oauthLogin"),
@@ -3,7 +3,7 @@ import { useCoreLog } from "../useCoreLog.js";
3
3
  import { extendPromise } from "../../utils/promise.js";
4
4
  import { useRpc } from "./useRpc.js";
5
5
  import { toValue, computed } from "vue";
6
- import { useRpcCall } from "../core/useRpcCall.js";
6
+ import { useRpcCall } from "./useRpcCall.js";
7
7
  export function useUser(options = {}) {
8
8
  const nuxtApp = useNuxtApp();
9
9
  const log = useCoreLog("useUser");
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@scayle/storefront-nuxt",
3
3
  "type": "module",
4
- "version": "8.59.4",
4
+ "version": "8.59.5",
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
  "vue-router": "^4.4.0",
91
91
  "zod": "^4.0.0",
92
92
  "@scayle/h3-session": "0.6.3",
93
- "@scayle/storefront-core": "8.59.4",
94
- "@scayle/unstorage-compression-driver": "1.2.5"
93
+ "@scayle/unstorage-compression-driver": "1.3.0",
94
+ "@scayle/storefront-core": "8.59.5"
95
95
  },
96
96
  "devDependencies": {
97
97
  "@arethetypeswrong/cli": "0.18.2",
@@ -100,8 +100,8 @@
100
100
  "@nuxt/kit": "^3.20.2",
101
101
  "@nuxt/module-builder": "1.0.2",
102
102
  "@nuxt/schema": "^3.20.2",
103
- "@nuxt/test-utils": "3.23.0",
104
- "@types/node": "22.19.7",
103
+ "@nuxt/test-utils": "4.0.0",
104
+ "@types/node": "22.19.10",
105
105
  "@vitest/coverage-v8": "4.0.18",
106
106
  "dprint": "0.51.1",
107
107
  "eslint-formatter-gitlab": "7.0.1",
@@ -116,8 +116,8 @@
116
116
  "typescript": "5.9.3",
117
117
  "unbuild": "3.6.1",
118
118
  "vitest": "4.0.18",
119
- "vue-tsc": "3.2.3",
120
- "happy-dom": "20.3.7",
119
+ "vue-tsc": "3.2.4",
120
+ "happy-dom": "20.5.3",
121
121
  "@scayle/eslint-config-storefront": "4.7.22",
122
122
  "@scayle/eslint-plugin-vue-composable": "0.2.3",
123
123
  "@scayle/vitest-config-storefront": "1.0.0",