@scayle/storefront-nuxt 8.5.0 → 8.5.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
CHANGED
|
@@ -1,5 +1,23 @@
|
|
|
1
1
|
# @scayle/storefront-nuxt
|
|
2
2
|
|
|
3
|
+
## 8.5.2
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
**Dependencies**
|
|
8
|
+
|
|
9
|
+
- Updated dependency to @scayle/storefront-core@8.2.2
|
|
10
|
+
|
|
11
|
+
## 8.5.1
|
|
12
|
+
|
|
13
|
+
### Patch Changes
|
|
14
|
+
|
|
15
|
+
- Updated dependency `@vueuse/core@12.4.0` to `@vueuse/core@12.5.0`
|
|
16
|
+
|
|
17
|
+
**Dependencies**
|
|
18
|
+
|
|
19
|
+
- Updated dependency to @scayle/storefront-core@8.2.1
|
|
20
|
+
|
|
3
21
|
## 8.5.0
|
|
4
22
|
|
|
5
23
|
### Minor Changes
|
package/dist/module.json
CHANGED
package/dist/module.mjs
CHANGED
|
@@ -1,51 +1,2 @@
|
|
|
1
|
-
declare const _default: import("h3").EventHandler<import("h3").EventHandlerRequest, Promise<
|
|
2
|
-
count: number;
|
|
3
|
-
} | {
|
|
4
|
-
filters: import("@scayle/storefront-api").FiltersEndpointResponseData;
|
|
5
|
-
unfilteredCount: number;
|
|
6
|
-
} | {
|
|
7
|
-
products: import("@scayle/storefront-api").Product[];
|
|
8
|
-
pagination: {
|
|
9
|
-
current: number;
|
|
10
|
-
total: number;
|
|
11
|
-
perPage: number;
|
|
12
|
-
page: number;
|
|
13
|
-
first: number;
|
|
14
|
-
prev: number;
|
|
15
|
-
next: number;
|
|
16
|
-
last: number;
|
|
17
|
-
};
|
|
18
|
-
} | {
|
|
19
|
-
basket: import("@scayle/storefront-api").BasketResponseData<import("@scayle/storefront-api").Product, import("@scayle/storefront-api").Variant>;
|
|
20
|
-
} | {
|
|
21
|
-
readonly type: "success";
|
|
22
|
-
readonly basket: import("@scayle/storefront-api").BasketResponseData<import("@scayle/storefront-api").Product, import("@scayle/storefront-api").Variant>;
|
|
23
|
-
} | {
|
|
24
|
-
readonly type: "failure";
|
|
25
|
-
readonly basket: import("@scayle/storefront-api").BasketResponseData<import("@scayle/storefront-api").Product, import("@scayle/storefront-api").Variant>;
|
|
26
|
-
readonly errors: import("@scayle/storefront-api").AddOrUpdateItemError[];
|
|
27
|
-
} | import("@scayle/storefront-api").BrandsEndpointResponseData | import("@scayle/storefront-api").Brand | {
|
|
28
|
-
categories: import("@scayle/storefront-api").Category[];
|
|
29
|
-
activeNode: undefined;
|
|
30
|
-
} | import("@scayle/storefront-api").Category | {
|
|
31
|
-
categories: import("@scayle/storefront-api").Category;
|
|
32
|
-
activeNode: import("@scayle/storefront-api").Category;
|
|
33
|
-
} | import("@scayle/storefront-core").Order | import("@scayle/storefront-api").SearchV2SuggestionsEndpointResponseData | import("@scayle/storefront-api").SearchEntity | import("@scayle/storefront-api").ShopConfiguration | {
|
|
34
|
-
user: import("@scayle/storefront-core").ShopUser | undefined;
|
|
35
|
-
} | import("@scayle/storefront-api").Wishlist | import("@scayle/storefront-core").ShopUserAddress[] | {
|
|
36
|
-
accessToken: string;
|
|
37
|
-
checkoutJwt: string;
|
|
38
|
-
} | import("@scayle/storefront-api").VariantDetail[] | import("@scayle/storefront-api").NavigationAllEndpointResponseData | import("@scayle/storefront-api").NavigationTree | {
|
|
39
|
-
success: true;
|
|
40
|
-
} | {
|
|
41
|
-
success: false;
|
|
42
|
-
} | {
|
|
43
|
-
result: true;
|
|
44
|
-
} | {
|
|
45
|
-
result: false;
|
|
46
|
-
} | import("@scayle/storefront-api").PromotionsEndpointResponseData | {
|
|
47
|
-
[k: string]: string;
|
|
48
|
-
} | {
|
|
49
|
-
message: string;
|
|
50
|
-
} | null | undefined>>;
|
|
1
|
+
declare const _default: import("h3").EventHandler<import("h3").EventHandlerRequest, Promise<any>>;
|
|
51
2
|
export default _default;
|
|
@@ -14,5 +14,5 @@ export declare function useStorefrontSearch(searchQuery: Ref<string>, { params }
|
|
|
14
14
|
error: Ref<unknown, unknown>;
|
|
15
15
|
resetSearch: () => void;
|
|
16
16
|
getSearchSuggestions: () => Promise<void>;
|
|
17
|
-
resolveSearch: () => Promise<
|
|
17
|
+
resolveSearch: () => Promise<any>;
|
|
18
18
|
};
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@scayle/storefront-nuxt",
|
|
3
3
|
"type": "module",
|
|
4
|
-
"version": "8.5.
|
|
4
|
+
"version": "8.5.2",
|
|
5
5
|
"description": "Nuxt integration for the SCAYLE Commerce Engine and Storefront API",
|
|
6
6
|
"author": "SCAYLE Commerce Engine",
|
|
7
7
|
"license": "MIT",
|
|
@@ -72,9 +72,9 @@
|
|
|
72
72
|
"dependencies": {
|
|
73
73
|
"@opentelemetry/api": "^1.9.0",
|
|
74
74
|
"@scayle/h3-session": "0.6.0",
|
|
75
|
-
"@scayle/storefront-core": "8.2.
|
|
75
|
+
"@scayle/storefront-core": "8.2.2",
|
|
76
76
|
"@scayle/unstorage-compression-driver": "^0.2.3",
|
|
77
|
-
"@vueuse/core": "12.
|
|
77
|
+
"@vueuse/core": "12.5.0",
|
|
78
78
|
"consola": "^3.2.3",
|
|
79
79
|
"core-js": "^3.37.1",
|
|
80
80
|
"defu": "^6.1.4",
|
|
@@ -97,12 +97,12 @@
|
|
|
97
97
|
"@nuxt/test-utils": "3.15.4",
|
|
98
98
|
"@scayle/eslint-config-storefront": "4.4.1",
|
|
99
99
|
"@scayle/eslint-plugin-vue-composable": "0.2.1",
|
|
100
|
-
"@types/node": "22.10.
|
|
100
|
+
"@types/node": "22.10.9",
|
|
101
101
|
"dprint": "0.48.0",
|
|
102
102
|
"eslint": "9.18.0",
|
|
103
103
|
"eslint-formatter-gitlab": "5.1.0",
|
|
104
104
|
"fishery": "2.2.2",
|
|
105
|
-
"h3": "1.
|
|
105
|
+
"h3": "1.14.0",
|
|
106
106
|
"nitropack": "2.9.7",
|
|
107
107
|
"node-mocks-http": "1.16.2",
|
|
108
108
|
"nuxi": "3.20.0",
|
|
@@ -122,7 +122,7 @@
|
|
|
122
122
|
"vue": ">=3.4.0"
|
|
123
123
|
},
|
|
124
124
|
"resolutions": {
|
|
125
|
-
"h3": "1.
|
|
125
|
+
"h3": "1.14.0",
|
|
126
126
|
"vue": "3.5.13",
|
|
127
127
|
"@nuxt/kit": "3.14.1592",
|
|
128
128
|
"@nuxt/schema": "3.14.1592"
|