@scayle/storefront-nuxt 7.84.0 → 7.84.1
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 +6 -0
- package/dist/module.json +1 -1
- package/dist/module.mjs +1 -1
- package/dist/runtime/server/middleware/bootstrap.d.ts +11 -1
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
package/dist/module.json
CHANGED
package/dist/module.mjs
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import type { RpcContext, Cache } from '@scayle/storefront-core';
|
|
1
|
+
import type { RpcContext, Cache, ShopUser } from '@scayle/storefront-core';
|
|
2
2
|
import type { PublicShopConfig } from '../../../module';
|
|
3
3
|
declare module 'h3' {
|
|
4
4
|
interface H3EventContext {
|
|
@@ -8,5 +8,15 @@ declare module 'h3' {
|
|
|
8
8
|
$availableShops: PublicShopConfig[];
|
|
9
9
|
}
|
|
10
10
|
}
|
|
11
|
+
export interface ShopSessionData {
|
|
12
|
+
user?: ShopUser;
|
|
13
|
+
accessToken?: string;
|
|
14
|
+
refreshToken?: string;
|
|
15
|
+
shopId?: number;
|
|
16
|
+
}
|
|
17
|
+
declare module '@scayle/h3-session' {
|
|
18
|
+
interface SessionDataT extends ShopSessionData {
|
|
19
|
+
}
|
|
20
|
+
}
|
|
11
21
|
declare const _default: import("h3").EventHandler<import("h3").EventHandlerRequest, Promise<void>>;
|
|
12
22
|
export default _default;
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@scayle/storefront-nuxt",
|
|
3
3
|
"type": "module",
|
|
4
|
-
"version": "7.84.
|
|
4
|
+
"version": "7.84.1",
|
|
5
5
|
"description": "Nuxt integration for the SCAYLE Commerce Engine and Storefront API",
|
|
6
6
|
"author": "SCAYLE Commerce Engine",
|
|
7
7
|
"license": "MIT",
|
|
@@ -86,7 +86,7 @@
|
|
|
86
86
|
"@nuxt/test-utils": "3.14.0",
|
|
87
87
|
"@scayle/eslint-config-storefront": "4.3.0",
|
|
88
88
|
"@scayle/eslint-plugin-vue-composable": "0.2.0",
|
|
89
|
-
"@types/node": "20.14.
|
|
89
|
+
"@types/node": "20.14.14",
|
|
90
90
|
"dprint": "0.47.2",
|
|
91
91
|
"eslint": "9.8.0",
|
|
92
92
|
"eslint-formatter-gitlab": "5.1.0",
|