@scayle/storefront-core 8.57.0 → 8.57.2
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 +18 -0
- package/dist/rpc/methods/checkout/checkout.mjs +1 -1
- package/package.json +7 -10
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,23 @@
|
|
|
1
1
|
# @scayle/storefront-core
|
|
2
2
|
|
|
3
|
+
## 8.57.2
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- Updated dependency `hookable@^5.5.3` to `hookable@catalog:`
|
|
8
|
+
- Updated dependency `jose@^6.0.8` to `jose@catalog:`
|
|
9
|
+
- Updated dependency `ufo@^1.5.3` to `ufo@catalog:`
|
|
10
|
+
- Updated dependency `uncrypto@^0.1.3` to `uncrypto@catalog:`
|
|
11
|
+
- Updated dependency `utility-types@^3.11.0` to `utility-types@catalog:`
|
|
12
|
+
- This is an internal change only. The packages now use the PNPM catalog feature to ensure dependencies use the identical version across packages.
|
|
13
|
+
|
|
14
|
+
**Dependencies**
|
|
15
|
+
|
|
16
|
+
- Updated dependency to @scayle/storefront-api@18.20.1
|
|
17
|
+
- Updated dependency to @scayle/unstorage-scayle-kv-driver@2.0.10
|
|
18
|
+
|
|
19
|
+
## 8.57.1
|
|
20
|
+
|
|
3
21
|
## 8.57.0
|
|
4
22
|
|
|
5
23
|
### Minor Changes
|
|
@@ -40,7 +40,7 @@ export const getCheckoutToken = defineRpcHandler(async (jwtPayload = {}, context
|
|
|
40
40
|
...customData,
|
|
41
41
|
...orderCustomData
|
|
42
42
|
}
|
|
43
|
-
}).setIssuedAt(now).setNotBefore(now).setExpirationTime("1h").setIssuer(`${"@scayle/storefront-core"}@${"8.57.
|
|
43
|
+
}).setIssuedAt(now).setNotBefore(now).setExpirationTime("1h").setIssuer(`${"@scayle/storefront-core"}@${"8.57.2"}`).setProtectedHeader({ alg: "HS256", typ: "JWT" }).sign(secret);
|
|
44
44
|
return {
|
|
45
45
|
accessToken: refreshedAccessToken,
|
|
46
46
|
checkoutJwt
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@scayle/storefront-core",
|
|
3
|
-
"version": "8.57.
|
|
3
|
+
"version": "8.57.2",
|
|
4
4
|
"description": "Collection of essential utilities to work with the Storefront API",
|
|
5
5
|
"author": "SCAYLE Commerce Engine",
|
|
6
6
|
"license": "MIT",
|
|
@@ -45,17 +45,17 @@
|
|
|
45
45
|
"hookable": "^5.5.3",
|
|
46
46
|
"jose": "^6.0.8",
|
|
47
47
|
"slugify": "^1.6.6",
|
|
48
|
-
"ufo": "^1.5.
|
|
48
|
+
"ufo": "^1.5.4",
|
|
49
49
|
"uncrypto": "^0.1.3",
|
|
50
50
|
"utility-types": "^3.11.0",
|
|
51
|
-
"@scayle/storefront-api": "18.20.
|
|
52
|
-
"@scayle/unstorage-scayle-kv-driver": "2.0.
|
|
51
|
+
"@scayle/storefront-api": "18.20.1",
|
|
52
|
+
"@scayle/unstorage-scayle-kv-driver": "2.0.10"
|
|
53
53
|
},
|
|
54
54
|
"devDependencies": {
|
|
55
55
|
"@types/crypto-js": "4.2.2",
|
|
56
56
|
"@types/node": "22.19.3",
|
|
57
57
|
"@types/webpack-env": "1.18.8",
|
|
58
|
-
"@vitest/coverage-v8": "4.0.
|
|
58
|
+
"@vitest/coverage-v8": "4.0.16",
|
|
59
59
|
"dprint": "0.50.2",
|
|
60
60
|
"eslint-formatter-gitlab": "7.0.1",
|
|
61
61
|
"eslint": "9.39.2",
|
|
@@ -65,13 +65,10 @@
|
|
|
65
65
|
"typescript": "5.9.3",
|
|
66
66
|
"unbuild": "3.6.1",
|
|
67
67
|
"unstorage": "1.17.3",
|
|
68
|
-
"vitest": "4.0.
|
|
69
|
-
"@scayle/eslint-config-storefront": "4.7.
|
|
68
|
+
"vitest": "4.0.16",
|
|
69
|
+
"@scayle/eslint-config-storefront": "4.7.18",
|
|
70
70
|
"@scayle/vitest-config-storefront": "1.0.0"
|
|
71
71
|
},
|
|
72
|
-
"volta": {
|
|
73
|
-
"node": "22.21.1"
|
|
74
|
-
},
|
|
75
72
|
"scripts": {
|
|
76
73
|
"clean": "rimraf ./dist",
|
|
77
74
|
"build:legacy": "tsc -p tsconfig.legacy.json",
|