@scayle/storefront-core 8.59.6 → 8.59.7
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 +11 -0
- package/dist/rpc/methods/checkout/checkout.mjs +1 -1
- package/package.json +12 -12
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,16 @@
|
|
|
1
1
|
# @scayle/storefront-core
|
|
2
2
|
|
|
3
|
+
## 8.59.7
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- Updated dependency `slugify@^1.6.6` to `slugify@^1.6.8`
|
|
8
|
+
|
|
9
|
+
**Dependencies**
|
|
10
|
+
|
|
11
|
+
- Updated dependency to @scayle/unstorage-scayle-kv-driver@2.0.11
|
|
12
|
+
- Updated dependency to @scayle/storefront-api@18.22.0
|
|
13
|
+
|
|
3
14
|
## 8.59.6
|
|
4
15
|
|
|
5
16
|
### Patch 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.59.
|
|
43
|
+
}).setIssuedAt(now).setNotBefore(now).setExpirationTime("1h").setIssuer(`${"@scayle/storefront-core"}@${"8.59.7"}`).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.59.
|
|
3
|
+
"version": "8.59.7",
|
|
4
4
|
"description": "Collection of essential utilities to work with the Storefront API",
|
|
5
5
|
"author": "SCAYLE Commerce Engine",
|
|
6
6
|
"license": "MIT",
|
|
@@ -44,30 +44,30 @@
|
|
|
44
44
|
"crypto-js": "^4.2.0",
|
|
45
45
|
"hookable": "^5.5.3",
|
|
46
46
|
"jose": "^6.0.8",
|
|
47
|
-
"slugify": "^1.6.
|
|
47
|
+
"slugify": "^1.6.8",
|
|
48
48
|
"ufo": "^1.5.4",
|
|
49
49
|
"uncrypto": "^0.1.3",
|
|
50
50
|
"utility-types": "^3.11.0",
|
|
51
|
-
"@scayle/
|
|
52
|
-
"@scayle/
|
|
51
|
+
"@scayle/unstorage-scayle-kv-driver": "2.0.11",
|
|
52
|
+
"@scayle/storefront-api": "18.22.0"
|
|
53
53
|
},
|
|
54
54
|
"devDependencies": {
|
|
55
55
|
"@types/crypto-js": "4.2.2",
|
|
56
|
-
"@types/node": "22.19.
|
|
56
|
+
"@types/node": "22.19.17",
|
|
57
57
|
"@types/webpack-env": "1.18.8",
|
|
58
|
-
"@vitest/coverage-v8": "4.
|
|
59
|
-
"dprint": "0.
|
|
58
|
+
"@vitest/coverage-v8": "4.1.2",
|
|
59
|
+
"dprint": "0.53.2",
|
|
60
60
|
"eslint-formatter-gitlab": "7.0.1",
|
|
61
|
-
"eslint": "10.0
|
|
61
|
+
"eslint": "10.2.0",
|
|
62
62
|
"fishery": "2.4.0",
|
|
63
|
-
"publint": "0.3.
|
|
63
|
+
"publint": "0.3.18",
|
|
64
64
|
"rimraf": "6.1.3",
|
|
65
65
|
"typescript": "5.9.3",
|
|
66
66
|
"unbuild": "3.6.1",
|
|
67
|
-
"unstorage": "1.17.
|
|
68
|
-
"vitest": "4.
|
|
67
|
+
"unstorage": "1.17.5",
|
|
68
|
+
"vitest": "4.1.2",
|
|
69
69
|
"@scayle/vitest-config-storefront": "1.0.0",
|
|
70
|
-
"@scayle/eslint-config-storefront": "4.7.
|
|
70
|
+
"@scayle/eslint-config-storefront": "4.7.25"
|
|
71
71
|
},
|
|
72
72
|
"scripts": {
|
|
73
73
|
"clean": "rimraf ./dist",
|