@scayle/storefront-nuxt 7.40.5 → 7.41.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
CHANGED
|
@@ -1,5 +1,18 @@
|
|
|
1
1
|
# @scayle/storefront-nuxt
|
|
2
2
|
|
|
3
|
+
## 7.41.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- Add `campaignKey` to the RPC context
|
|
8
|
+
|
|
9
|
+
## 7.40.6
|
|
10
|
+
|
|
11
|
+
### Patch Changes
|
|
12
|
+
|
|
13
|
+
- Updated dependencies
|
|
14
|
+
- @scayle/storefront-core@7.28.1
|
|
15
|
+
|
|
3
16
|
## 7.40.5
|
|
4
17
|
|
|
5
18
|
### Patch Changes
|
package/dist/module.json
CHANGED
|
@@ -11,5 +11,5 @@ export declare function useSession(): {
|
|
|
11
11
|
forgetPassword: (params: import("@scayle/storefront-core").SendResetPasswordEmailRequest) => Promise<{
|
|
12
12
|
success: boolean;
|
|
13
13
|
}>;
|
|
14
|
-
resetPasswordByHash: (params: import("@scayle/storefront-core").UpdatePasswordByHashRequest) => Promise<undefined>;
|
|
14
|
+
resetPasswordByHash: (params: import("utility-types").Optional<import("@scayle/storefront-core").UpdatePasswordByHashRequest, "shop_id">) => Promise<undefined>;
|
|
15
15
|
};
|
package/dist/runtime/context.mjs
CHANGED
|
@@ -80,6 +80,7 @@ export const buildContext = async (context) => {
|
|
|
80
80
|
shopId: $shopConfig.shopId,
|
|
81
81
|
domain: $shopConfig.domain,
|
|
82
82
|
withParams: $storefront.withParams,
|
|
83
|
+
campaignKey: $shopConfig.storeCampaignKeyword,
|
|
83
84
|
updateUser: async (user) => {
|
|
84
85
|
session.data.user = user;
|
|
85
86
|
await session.save();
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@scayle/storefront-nuxt",
|
|
3
3
|
"type": "module",
|
|
4
|
-
"version": "7.
|
|
4
|
+
"version": "7.41.0",
|
|
5
5
|
"description": "Nuxt integration for the SCAYLE Commerce Engine and Storefront API",
|
|
6
6
|
"author": "SCAYLE Commerce Engine",
|
|
7
7
|
"license": "MIT",
|
|
@@ -62,7 +62,7 @@
|
|
|
62
62
|
"dependencies": {
|
|
63
63
|
"@nuxt/kit": "3.8.1",
|
|
64
64
|
"@scayle/h3-session": "0.3.4",
|
|
65
|
-
"@scayle/storefront-core": "7.28.
|
|
65
|
+
"@scayle/storefront-core": "7.28.1",
|
|
66
66
|
"@vueuse/core": "10.6.1",
|
|
67
67
|
"consola": "3.2.3",
|
|
68
68
|
"core-js": "3.33.3",
|
|
@@ -82,7 +82,7 @@
|
|
|
82
82
|
"@nuxt/test-utils": "3.8.1",
|
|
83
83
|
"@scayle/eslint-config-storefront": "3.2.5",
|
|
84
84
|
"@scayle/prettier-config-storefront": "2.0.2",
|
|
85
|
-
"@types/node": "20.
|
|
85
|
+
"@types/node": "20.10.0",
|
|
86
86
|
"eslint": "8.54.0",
|
|
87
87
|
"eslint-formatter-gitlab": "5.1.0",
|
|
88
88
|
"node-mocks-http": "1.13.0",
|
|
@@ -111,6 +111,6 @@
|
|
|
111
111
|
"@vue/server-renderer": "3.3.8"
|
|
112
112
|
},
|
|
113
113
|
"volta": {
|
|
114
|
-
"node": "20.
|
|
114
|
+
"node": "20.10.0"
|
|
115
115
|
}
|
|
116
116
|
}
|