@akinon/next 1.108.0-rc.9 → 1.109.0-rc.11

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,48 +1,24 @@
1
1
  # @akinon/next
2
2
 
3
- ## 1.108.0-rc.9
3
+ ## 1.109.0-rc.11
4
4
 
5
5
  ### Minor Changes
6
6
 
7
+ - d2c0e759: ZERO-3684: Handle cross-origin iframe access in iframeURLChange function
7
8
  - b55acb76: ZERO-2577: Fix pagination bug and update usePagination hook and ensure pagination controls rendering correctly
8
9
  - 143be2b9: ZERO-3457: Crop styles are customizable and logic improved for rendering similar products modal
9
10
  - 9f8cd3bc: ZERO-3449: AI Search Active Filters & Crop Style changes have been implemented
10
11
  - d99a6a7d: ZERO-3457_1: Fixed the settings prop and made sure everything is customizable.
11
12
  - 4de5303c: ZERO-2504: add cookie filter to api client request
13
+ - fcbbea79: ZERO-3648: Add virtual try-on feature with localization support
12
14
 
13
- ## 1.108.0-rc.8
14
-
15
- ## 1.108.0-rc.7
16
-
17
- ### Minor Changes
18
-
19
- - d2c0e759: ZERO-3684: Handle cross-origin iframe access in iframeURLChange function
20
-
21
- ## 1.108.0-rc.6
22
-
23
- ## 1.108.0-rc.5
24
-
25
- ### Minor Changes
26
-
27
- - 31a2d35: ZERO-3640: Refactor checkout API call to include useFormData option; update FlowPayment component for improved error handling and code readability
28
-
29
- ## 1.108.0-rc.4
30
-
31
- ### Minor Changes
32
-
33
- - d8883ce: ZERO-3640: Refactor wallet completion handling to accept additional parameters; update related API calls
34
-
35
- ## 1.108.0-rc.3
36
-
37
- ## 1.108.0-rc.2
15
+ ## 1.108.0
38
16
 
39
17
  ### Minor Changes
40
18
 
41
- - fcbbea79: ZERO-3648: Add virtual try-on feature with localization support
42
-
43
- ## 1.108.0-rc.1
44
-
45
- ## 1.108.0-rc.0
19
+ - d8883ce6: ZERO-3640: Refactor wallet completion handling to accept additional parameters; update related API calls
20
+ - 59ed7a7e: ZERO-3640: Add order number state and update FlowPayment component for wallet payment response handling
21
+ - 31a2d35a: ZERO-3640: Refactor checkout API call to include useFormData option; update FlowPayment component for improved error handling and code readability
46
22
 
47
23
  ## 1.107.0
48
24
 
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.108.0-rc.9",
4
+ "version": "1.109.0-rc.11",
5
5
  "private": false,
6
6
  "license": "MIT",
7
7
  "bin": {
@@ -35,7 +35,7 @@
35
35
  "set-cookie-parser": "2.6.0"
36
36
  },
37
37
  "devDependencies": {
38
- "@akinon/eslint-plugin-projectzero": "1.108.0-rc.9",
38
+ "@akinon/eslint-plugin-projectzero": "1.109.0-rc.11",
39
39
  "@babel/core": "7.26.10",
40
40
  "@babel/preset-env": "7.26.9",
41
41
  "@babel/preset-typescript": "7.27.0",
@@ -108,6 +108,7 @@ export interface PreOrder {
108
108
  token?: string;
109
109
  agreement_confirmed?: boolean;
110
110
  phone_number?: string;
111
+ number?: string;
111
112
  }
112
113
 
113
114
  export type ExtraField = Record<string, any>;