@akinon/next 1.32.0-rc.3 → 1.33.0-rc.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,17 +1,15 @@
1
1
  # @akinon/next
2
2
 
3
- ## 1.32.0-rc.3
4
-
5
- ## 1.32.0-rc.2
6
-
7
- ## 1.32.0-rc.1
3
+ ## 1.33.0-rc.0
8
4
 
9
5
  ### Minor Changes
10
6
 
11
7
  - d09b677: ZERO-2577: Fix pagination bug and update usePagination hook and ensure pagination controls rendering correctly
12
8
  - 6d4aadb: ZERO-2476: Auto install recommendenent extension
9
+ - ebb63ce: ZERO-2525: Fix category facet removal bug and add close icon to active filters
13
10
  - 7cebe87: ZERO-2524: Add check monorepo utility function
14
11
  - f0c23bc: ZERO-2135: add custom not found page
12
+ - 3420416: ZERO-2533: extend eslint config from @akinon/next
15
13
  - 495d155: ZERO-2505: findBaseDir function is united and move on to the utils
16
14
  - 40ad73e: ZERO-2504: add cookie filter to api client request
17
15
  - 495d155: ZERO-2524: Zero-cli dist checks for changes and renders it to the terminal.
@@ -19,12 +17,9 @@
19
17
  - 6b2972b: ZERO-2514: Fix handling of status 204 and return Commerce status code in client proxy API.
20
18
  - 3e68768: ZERO-2578: Add osessionid check in middleware
21
19
 
22
- ## 1.32.0-rc.0
23
-
24
- ### Minor Changes
20
+ ## 1.32.0
25
21
 
26
- - 7cebe87: ZERO-2524: Add check monorepo utility function
27
- - 3e68768: ZERO-2578: Add osessionid check in middleware
22
+ ## 1.31.1
28
23
 
29
24
  ## 1.31.0
30
25
 
@@ -5,7 +5,6 @@ module.exports = {
5
5
  es2021: true
6
6
  },
7
7
  extends: [
8
- 'eslint:recommended',
9
8
  'next/core-web-vitals',
10
9
  'eslint:recommended',
11
10
  'plugin:@typescript-eslint/recommended',
@@ -18,7 +17,7 @@ module.exports = {
18
17
  env: {
19
18
  node: true
20
19
  },
21
- files: ['.eslintrc.{js,cjs}', 'middlewares/default.ts'],
20
+ files: ['eslint.config.{js,cjs}', 'middlewares/default.ts'],
22
21
  rules: {
23
22
  '@akinon/projectzero/check-middleware-order': 'error'
24
23
  },
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@akinon/next",
3
3
  "description": "Core package for Project Zero Next",
4
- "version": "1.32.0-rc.3",
4
+ "version": "1.33.0-rc.0",
5
5
  "private": false,
6
6
  "license": "MIT",
7
7
  "bin": {
@@ -34,7 +34,7 @@
34
34
  "@typescript-eslint/eslint-plugin": "6.7.4",
35
35
  "@typescript-eslint/parser": "6.7.4",
36
36
  "eslint": "^8.14.0",
37
- "@akinon/eslint-plugin-projectzero": "1.32.0-rc.3",
37
+ "@akinon/eslint-plugin-projectzero": "1.33.0-rc.0",
38
38
  "eslint-config-prettier": "8.5.0"
39
39
  }
40
40
  }
@@ -36,6 +36,7 @@ export type FacetChoice = {
36
36
  quantity: number;
37
37
  is_selected: boolean;
38
38
  url?: string;
39
+ real_depth?: string;
39
40
  [key: string]: any;
40
41
  };
41
42