@scayle/storefront-nuxt 8.59.4 → 8.59.6
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 +24 -0
- package/dist/module.json +1 -1
- package/dist/module.mjs +1 -1
- package/dist/runtime/composables/core/useIDP.d.ts +1 -1
- package/dist/runtime/composables/core/useIDP.js +1 -1
- package/dist/runtime/composables/core/useSession.js +1 -1
- package/dist/runtime/composables/core/useUser.js +1 -1
- package/package.json +14 -15
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,29 @@
|
|
|
1
1
|
# @scayle/storefront-nuxt
|
|
2
2
|
|
|
3
|
+
## 8.59.6
|
|
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.6**
|
|
12
|
+
|
|
13
|
+
- No changes in this release.
|
|
14
|
+
|
|
15
|
+
## 8.59.5
|
|
16
|
+
|
|
17
|
+
### Patch Changes
|
|
18
|
+
|
|
19
|
+
**Dependencies**
|
|
20
|
+
|
|
21
|
+
- Updated dependency to @scayle/unstorage-compression-driver@1.3.0
|
|
22
|
+
|
|
23
|
+
**@scayle/storefront-core v8.59.5**
|
|
24
|
+
|
|
25
|
+
- No changes in this release.
|
|
26
|
+
|
|
3
27
|
## 8.59.4
|
|
4
28
|
|
|
5
29
|
### Patch Changes
|
package/dist/module.json
CHANGED
package/dist/module.mjs
CHANGED
|
@@ -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 '
|
|
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
|
*/
|
|
@@ -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 "
|
|
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
|
+
"version": "8.59.6",
|
|
5
5
|
"description": "Nuxt integration for the SCAYLE Commerce Engine and Storefront API",
|
|
6
6
|
"author": "SCAYLE Commerce Engine",
|
|
7
7
|
"license": "MIT",
|
|
@@ -73,8 +73,8 @@
|
|
|
73
73
|
},
|
|
74
74
|
"dependencies": {
|
|
75
75
|
"@opentelemetry/api": "^1.9.0",
|
|
76
|
-
"@vercel/nft": "1.3.
|
|
77
|
-
"@vueuse/core": "14.1
|
|
76
|
+
"@vercel/nft": "1.3.1",
|
|
77
|
+
"@vueuse/core": "14.2.1",
|
|
78
78
|
"consola": "^3.4.2",
|
|
79
79
|
"core-js": "^3.37.1",
|
|
80
80
|
"defu": "^6.1.4",
|
|
@@ -90,25 +90,24 @@
|
|
|
90
90
|
"vue-router": "^4.4.0",
|
|
91
91
|
"zod": "^4.0.0",
|
|
92
92
|
"@scayle/h3-session": "0.6.3",
|
|
93
|
-
"@scayle/
|
|
94
|
-
"@scayle/
|
|
93
|
+
"@scayle/unstorage-compression-driver": "1.3.0",
|
|
94
|
+
"@scayle/storefront-core": "8.59.6"
|
|
95
95
|
},
|
|
96
96
|
"devDependencies": {
|
|
97
97
|
"@arethetypeswrong/cli": "0.18.2",
|
|
98
|
-
"@eslint
|
|
99
|
-
"@nuxt/eslint-config": "1.13.0",
|
|
98
|
+
"@nuxt/eslint-config": "1.15.1",
|
|
100
99
|
"@nuxt/kit": "^3.20.2",
|
|
101
100
|
"@nuxt/module-builder": "1.0.2",
|
|
102
101
|
"@nuxt/schema": "^3.20.2",
|
|
103
|
-
"@nuxt/test-utils": "
|
|
104
|
-
"@types/node": "22.19.
|
|
102
|
+
"@nuxt/test-utils": "4.0.0",
|
|
103
|
+
"@types/node": "22.19.11",
|
|
105
104
|
"@vitest/coverage-v8": "4.0.18",
|
|
106
105
|
"dprint": "0.51.1",
|
|
107
106
|
"eslint-formatter-gitlab": "7.0.1",
|
|
108
|
-
"eslint": "
|
|
107
|
+
"eslint": "10.0.1",
|
|
109
108
|
"fishery": "2.4.0",
|
|
110
109
|
"h3": "1.15.5",
|
|
111
|
-
"nitro-test-utils": "0.
|
|
110
|
+
"nitro-test-utils": "0.11.2",
|
|
112
111
|
"nitropack": "2.13.1",
|
|
113
112
|
"node-mocks-http": "1.17.2",
|
|
114
113
|
"nuxt": "^3.20.2",
|
|
@@ -116,10 +115,10 @@
|
|
|
116
115
|
"typescript": "5.9.3",
|
|
117
116
|
"unbuild": "3.6.1",
|
|
118
117
|
"vitest": "4.0.18",
|
|
119
|
-
"vue-tsc": "3.2.
|
|
120
|
-
"happy-dom": "20.
|
|
121
|
-
"@scayle/eslint-config-storefront": "4.7.
|
|
122
|
-
"@scayle/eslint-plugin-vue-composable": "0.
|
|
118
|
+
"vue-tsc": "3.2.5",
|
|
119
|
+
"happy-dom": "20.7.0",
|
|
120
|
+
"@scayle/eslint-config-storefront": "4.7.23",
|
|
121
|
+
"@scayle/eslint-plugin-vue-composable": "1.0.0",
|
|
123
122
|
"@scayle/vitest-config-storefront": "1.0.0",
|
|
124
123
|
"@scayle/unstorage-scayle-kv-driver": "2.0.10"
|
|
125
124
|
},
|