@akinon/next 1.59.0-rc.4 → 1.59.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.
Files changed (63) hide show
  1. package/CHANGELOG.md +2 -669
  2. package/api/client.ts +2 -23
  3. package/assets/styles/index.scss +26 -50
  4. package/bin/pz-prebuild.js +0 -1
  5. package/bin/pz-predev.js +0 -1
  6. package/components/index.ts +0 -1
  7. package/components/input.tsx +17 -32
  8. package/components/link.tsx +13 -17
  9. package/components/plugin-module.tsx +3 -8
  10. package/components/price.tsx +4 -11
  11. package/components/pz-root.tsx +3 -15
  12. package/components/selected-payment-option-view.tsx +1 -2
  13. package/data/client/api.ts +1 -1
  14. package/data/client/b2b.ts +2 -35
  15. package/data/client/basket.ts +5 -6
  16. package/data/client/checkout.ts +10 -55
  17. package/data/client/user.ts +2 -3
  18. package/data/server/category.ts +19 -43
  19. package/data/server/flatpage.ts +7 -29
  20. package/data/server/form.ts +11 -29
  21. package/data/server/landingpage.ts +7 -26
  22. package/data/server/list.ts +6 -16
  23. package/data/server/menu.ts +2 -15
  24. package/data/server/product.ts +13 -33
  25. package/data/server/seo.ts +24 -17
  26. package/data/server/special-page.ts +5 -15
  27. package/data/server/widget.ts +7 -14
  28. package/data/urls.ts +1 -8
  29. package/hocs/server/with-segment-defaults.tsx +1 -4
  30. package/hooks/index.ts +1 -2
  31. package/hooks/use-pagination.ts +2 -2
  32. package/hooks/use-payment-options.ts +1 -2
  33. package/lib/cache.ts +6 -8
  34. package/middlewares/currency.ts +1 -2
  35. package/middlewares/default.ts +152 -226
  36. package/middlewares/index.ts +1 -3
  37. package/middlewares/pretty-url.ts +1 -11
  38. package/middlewares/url-redirection.ts +0 -4
  39. package/package.json +3 -4
  40. package/plugins.d.ts +0 -6
  41. package/plugins.js +1 -2
  42. package/redux/middlewares/checkout.ts +14 -78
  43. package/redux/reducers/checkout.ts +3 -23
  44. package/redux/reducers/index.ts +1 -3
  45. package/types/commerce/address.ts +1 -1
  46. package/types/commerce/b2b.ts +2 -12
  47. package/types/commerce/checkout.ts +0 -30
  48. package/types/commerce/order.ts +0 -1
  49. package/types/index.ts +2 -17
  50. package/utils/app-fetch.ts +8 -16
  51. package/utils/generate-commerce-search-params.ts +1 -3
  52. package/utils/index.ts +6 -27
  53. package/utils/server-translation.ts +1 -11
  54. package/with-pz-config.js +2 -13
  55. package/assets/styles/index.css +0 -49
  56. package/assets/styles/index.css.map +0 -1
  57. package/bin/pz-generate-translations.js +0 -41
  58. package/components/file-input.tsx +0 -8
  59. package/hooks/use-message-listener.ts +0 -24
  60. package/lib/cache-handler.mjs +0 -33
  61. package/middlewares/saved-card-redirection.ts +0 -179
  62. package/routes/pretty-url.tsx +0 -192
  63. package/utils/redirection-iframe.ts +0 -85
package/CHANGELOG.md CHANGED
@@ -1,71 +1,10 @@
1
1
  # @akinon/next
2
2
 
3
- ## 1.59.0-rc.4
3
+ ## 1.59.0
4
4
 
5
5
  ### Minor Changes
6
6
 
7
- - 3be7462: ZERO-2934: fix reset basket on redirection payment complete
8
-
9
- ## 1.59.0-rc.3
10
-
11
- ## 1.59.0-rc.2
12
-
13
- ### Minor Changes
14
-
15
- - c873740: ZERO-2903: add types
16
- - 034b813: ZERO-2903: create saved card plugin
17
-
18
- ## 1.59.0-rc.1
19
-
20
- ### Minor Changes
21
-
22
- - 907813c: ZERO-2934: add payment-gateway/<gateway> redirect in middleware
23
-
24
- ## 1.59.0-rc.0
25
-
26
- ### Minor Changes
27
-
28
- - c416d18: ZERO-2915: Add delivery option null check for setAddress
29
- - 572d2e84: ZERO-2667: Add iframe support for redirection payment methods
30
- - 5dfeea04: ZERO-2801: Revert ZERO-2801
31
- - a4c8d6a9: ZERO-2663: Fix the image url for gif and svgs and return them without options
32
- - fda5b927: ZERO-2725: fix invalid import
33
- - 2d9b2b2c: ZERO-2816: Add segment to headers
34
- - c53ea3e6: ZERO-2609: Reset additional form fields when selectedFormType is not company
35
- - 6c25f666: ZERO-2551: Check CACHE_HOST variable
36
- - bc2b4117: ZERO-2825: Add attribute-based shipping options to checkout page
37
- - 3bf2dd94: ZERO-2551: Fix search page
38
- - e9541a13: ZERO-2816: Add headers to url
39
- - c53ef7b9: ZERO-2668: The Link component has been updated to improve the logic for handling href values. Previously, if the href was not a string or started with 'http', it would return the href as is. Now, if the href is not provided, it will default to '#' to prevent any potential errors. Additionally, if the href is a string and does not start with 'http', it will be formatted with the locale and pathname, based on the localeUrlStrategy and defaultLocaleValue. This ensures that the correct href is generated based on the localization settings.
40
- - 2e6104d0: ZERO-2888:Edit the numbering in the pagination and the visibility of the prev and next buttons
41
- - 64699d3f: ZERO-2761: Fix invalid import for plugin module
42
- - 0d3a913e: ZERO-2725: Update decimal scale in Price component
43
- - 7b05522: ZERO-2905: Fix resend and close button in otp package
44
- - d6edb1d0: ZERO-2551: Fix searchparams handling for list and other routes
45
- - d3474c64: ZERO-2655: Add data source shipping option
46
- - 17f87524: ZERO-2816: Make the incoming currency lowercase
47
- - 29ead87: ZERO-2905: Fix resend and close button in otp package
48
- - c45b62c9: ZERO-2818: Add upload and download support for b2b package
49
- - 91265bba: ZERO-2551: Improve pretty url and caching performance
50
- - bbe18b9f: ZERO-2575: Fix build error
51
- - d4099960: ZERO-2781: Refactor buildClientRequestUrl function to support caching and options
52
- - 4920742c: Disable getCachedTranslations
53
- - 12a873e7: ZERO-2846:Edit the siteKey regex in the response from GetCaptcha
54
- - 7e56d6b6: ZERO-2841: Update api tagTypes
55
- - 94b69285: ZERO-2551: Add cache handler check in url-redirection middleware
56
- - 98bb8dcd: ZERO-2706: Cache getTranlations method
57
- - dcc8a150: ZERO-2694: added build step to RC branch pipeline
58
- - 8f47ccae: ZERO-2829: fix and add nested JSON support for useFormData in api/client route
59
- - fdd0b418: ZERO-2706: Add optimized translation support
60
- - f2c325c1: ZERO-2838: Move file input component into @akinon/next
61
- - 9e25a64b: ZERO-2835: Update category page layout with breadcrumb
62
- - beb499e6: ZERO-2551: Add new tsconfig paths
63
- - f2c92d5c: ZERO-2816: Update cookie name
64
- - 7bd3d992: ZERO-2801: Refactor locale middleware to handle single locale configuration
65
- - f046f8e0: ZERO-2575: update version for react-number-format
66
- - 49eeebf: ZERO-2909: Add deleteCollectionItem query to wishlistApi
67
- - 86d25315: ZERO-2693: resolve dependency collision warning for eslint-config-next
68
- - 3f9b8d7e: ZERO-2761: Update plugins.js for akinon-next
7
+ - 50f3c60: ZERO-2936: Fix Input component styling for floating labels
69
8
 
70
9
  ## 1.58.0
71
10
 
@@ -84,183 +23,11 @@
84
23
 
85
24
  ### Minor Changes
86
25
 
87
- - c416d18: ZERO-2915: Add delivery option null check for setAddress
88
- - 572d2e84: ZERO-2667: Add iframe support for redirection payment methods
89
- - 5dfeea0: ZERO-2801: Revert ZERO-2801
90
- - a4c8d6a9: ZERO-2663: Fix the image url for gif and svgs and return them without options
91
- - fda5b927: ZERO-2725: fix invalid import
92
- - 2d9b2b2c: ZERO-2816: Add segment to headers
93
- - c53ea3e6: ZERO-2609: Reset additional form fields when selectedFormType is not company
94
- - 6c25f66: ZERO-2551: Check CACHE_HOST variable
95
- - bc2b4117: ZERO-2825: Add attribute-based shipping options to checkout page
96
- - 3bf2dd9: ZERO-2551: Fix search page
97
- - e9541a13: ZERO-2816: Add headers to url
98
- - c53ef7b9: ZERO-2668: The Link component has been updated to improve the logic for handling href values. Previously, if the href was not a string or started with 'http', it would return the href as is. Now, if the href is not provided, it will default to '#' to prevent any potential errors. Additionally, if the href is a string and does not start with 'http', it will be formatted with the locale and pathname, based on the localeUrlStrategy and defaultLocaleValue. This ensures that the correct href is generated based on the localization settings.
99
- - 2e6104d: ZERO-2888:Edit the numbering in the pagination and the visibility of the prev and next buttons
100
- - 64699d3f: ZERO-2761: Fix invalid import for plugin module
101
- - 0d3a913e: ZERO-2725: Update decimal scale in Price component
102
- - 7b05522: ZERO-2905: Fix resend and close button in otp package
103
- - d6edb1d: ZERO-2551: Fix searchparams handling for list and other routes
104
- - d3474c64: ZERO-2655: Add data source shipping option
105
- - 17f87524: ZERO-2816: Make the incoming currency lowercase
106
- - 29ead87: ZERO-2905: Fix resend and close button in otp package
107
- - c45b62c: ZERO-2818: Add upload and download support for b2b package
108
- - 91265bba: ZERO-2551: Improve pretty url and caching performance
109
- - bbe18b9f: ZERO-2575: Fix build error
110
- - d4099960: ZERO-2781: Refactor buildClientRequestUrl function to support caching and options
111
- - 4920742: Disable getCachedTranslations
112
- - 12a873e: ZERO-2846:Edit the siteKey regex in the response from GetCaptcha
113
- - 7e56d6b: ZERO-2841: Update api tagTypes
114
- - 94b69285: ZERO-2551: Add cache handler check in url-redirection middleware
115
- - 98bb8dcd: ZERO-2706: Cache getTranlations method
116
- - dcc8a150: ZERO-2694: added build step to RC branch pipeline
117
- - 8f47cca: ZERO-2829: fix and add nested JSON support for useFormData in api/client route
118
- - fad27689: ZERO-2739: add gpay to payment plugin map
119
- - dff0d595: ZERO-2659: add formData support to proxy api requests
120
- - fdd0b41: ZERO-2706: Add optimized translation support
121
- - f2c325c: ZERO-2838: Move file input component into @akinon/next
122
- - 9e25a64: ZERO-2835: Update category page layout with breadcrumb
123
- - beb499e6: ZERO-2551: Add new tsconfig paths
124
- - f2c92d5c: ZERO-2816: Update cookie name
125
- - 7bd3d992: ZERO-2801: Refactor locale middleware to handle single locale configuration
126
- - f3d076b: ZERO-2864: create tabby extension plugin
127
- - f046f8e0: ZERO-2575: update version for react-number-format
128
- - 49eeebf: ZERO-2909: Add deleteCollectionItem query to wishlistApi
129
- - 86d25315: ZERO-2693: resolve dependency collision warning for eslint-config-next
130
- - 3f9b8d7e: ZERO-2761: Update plugins.js for akinon-next
131
-
132
- ## 1.56.0-rc.7
133
-
134
- ## 1.56.0-rc.6
135
-
136
- ### Minor Changes
137
-
138
- - f3d076b: ZERO-2864: create tabby extension plugin
139
-
140
- ## 1.56.0-rc.5
141
-
142
- ### Minor Changes
143
-
144
- - c416d18: ZERO-2915: Add delivery option null check for setAddress
145
-
146
- ## 1.56.0-rc.4
147
-
148
- ### Minor Changes
149
-
150
- - 572d2e84: ZERO-2667: Add iframe support for redirection payment methods
151
- - 5dfeea0: ZERO-2801: Revert ZERO-2801
152
- - a4c8d6a9: ZERO-2663: Fix the image url for gif and svgs and return them without options
153
- - fda5b927: ZERO-2725: fix invalid import
154
- - 2d9b2b2c: ZERO-2816: Add segment to headers
155
- - c53ea3e6: ZERO-2609: Reset additional form fields when selectedFormType is not company
156
26
  - d93a507: ZERO-2900: Fix pretty url rewrite
157
- - 6c25f66: ZERO-2551: Check CACHE_HOST variable
158
- - bc2b411: ZERO-2825: Add attribute-based shipping options to checkout page
159
- - 3bf2dd9: ZERO-2551: Fix search page
160
- - e9541a13: ZERO-2816: Add headers to url
161
- - c53ef7b9: ZERO-2668: The Link component has been updated to improve the logic for handling href values. Previously, if the href was not a string or started with 'http', it would return the href as is. Now, if the href is not provided, it will default to '#' to prevent any potential errors. Additionally, if the href is a string and does not start with 'http', it will be formatted with the locale and pathname, based on the localeUrlStrategy and defaultLocaleValue. This ensures that the correct href is generated based on the localization settings.
162
- - 2e6104d: ZERO-2888:Edit the numbering in the pagination and the visibility of the prev and next buttons
163
- - 64699d3: ZERO-2761: Fix invalid import for plugin module
164
- - 0d3a913e: ZERO-2725: Update decimal scale in Price component
165
- - 7b05522: ZERO-2905: Fix resend and close button in otp package
166
- - d6edb1d: ZERO-2551: Fix searchparams handling for list and other routes
167
- - d3474c64: ZERO-2655: Add data source shipping option
168
- - 17f8752: ZERO-2816: Make the incoming currency lowercase
169
- - 29ead87: ZERO-2905: Fix resend and close button in otp package
170
- - c45b62c: ZERO-2818: Add upload and download support for b2b package
171
- - 91265bba: ZERO-2551: Improve pretty url and caching performance
172
- - bbe18b9f: ZERO-2575: Fix build error
173
- - d4099960: ZERO-2781: Refactor buildClientRequestUrl function to support caching and options
174
- - 4920742: Disable getCachedTranslations
175
- - 12a873e: ZERO-2846:Edit the siteKey regex in the response from GetCaptcha
176
27
  - 674badc: ZERO-2912: Fix selected payment option view to handle null values
177
- - 7e56d6b: ZERO-2841: Update api tagTypes
178
- - 94b69285: ZERO-2551: Add cache handler check in url-redirection middleware
179
- - 98bb8dcd: ZERO-2706: Cache getTranlations method
180
28
  - 207ac6e: ZERO-2917: Add OrderSelectionPage endpoint
181
- - dcc8a150: ZERO-2694: added build step to RC branch pipeline
182
- - 8f47cca: ZERO-2829: fix and add nested JSON support for useFormData in api/client route
183
- - fad27689: ZERO-2739: add gpay to payment plugin map
184
- - dff0d595: ZERO-2659: add formData support to proxy api requests
185
- - fdd0b41: ZERO-2706: Add optimized translation support
186
- - f2c325c: ZERO-2838: Move file input component into @akinon/next
187
- - 9e25a64: ZERO-2835: Update category page layout with breadcrumb
188
- - beb499e6: ZERO-2551: Add new tsconfig paths
189
- - f2c92d5c: ZERO-2816: Update cookie name
190
- - 7bd3d99: ZERO-2801: Refactor locale middleware to handle single locale configuration
191
- - f046f8e0: ZERO-2575: update version for react-number-format
192
29
  - b9273fd: ZERO-2889: add host headers to requests
193
- - 49eeebf: ZERO-2909: Add deleteCollectionItem query to wishlistApi
194
- - 86d25315: ZERO-2693: resolve dependency collision warning for eslint-config-next
195
30
  - c670bd4: ZERO-2900: Add middleware rewrite functionality
196
- - 3f9b8d7: ZERO-2761: Update plugins.js for akinon-next
197
-
198
- ## 1.56.0-rc.3
199
-
200
- ### Minor Changes
201
-
202
- - 674badc: ZERO-2912: Fix selected payment option view to handle null values
203
-
204
- ## 1.56.0-rc.2
205
-
206
- ### Minor Changes
207
-
208
- - 7b05522: ZERO-2905: Fix resend and close button in otp package
209
- - 29ead87: ZERO-2905: Fix resend and close button in otp package
210
-
211
- ## 1.56.0-rc.1
212
-
213
- ### Minor Changes
214
-
215
- - 207ac6e: ZERO-2917: Add OrderSelectionPage endpoint
216
-
217
- ## 1.56.0-rc.0
218
-
219
- ### Minor Changes
220
-
221
- - 572d2e84: ZERO-2667: Add iframe support for redirection payment methods
222
- - 5dfeea0: ZERO-2801: Revert ZERO-2801
223
- - a4c8d6a9: ZERO-2663: Fix the image url for gif and svgs and return them without options
224
- - fda5b927: ZERO-2725: fix invalid import
225
- - 2d9b2b2c: ZERO-2816: Add segment to headers
226
- - c53ea3e6: ZERO-2609: Reset additional form fields when selectedFormType is not company
227
- - d93a507: ZERO-2900: Fix pretty url rewrite
228
- - 6c25f666: ZERO-2551: Check CACHE_HOST variable
229
- - bc2b4117: ZERO-2825: Add attribute-based shipping options to checkout page
230
- - 3bf2dd94: ZERO-2551: Fix search page
231
- - e9541a13: ZERO-2816: Add headers to url
232
- - c53ef7b9: ZERO-2668: The Link component has been updated to improve the logic for handling href values. Previously, if the href was not a string or started with 'http', it would return the href as is. Now, if the href is not provided, it will default to '#' to prevent any potential errors. Additionally, if the href is a string and does not start with 'http', it will be formatted with the locale and pathname, based on the localeUrlStrategy and defaultLocaleValue. This ensures that the correct href is generated based on the localization settings.
233
- - 2e6104d: ZERO-2888:Edit the numbering in the pagination and the visibility of the prev and next buttons
234
- - 64699d3f: ZERO-2761: Fix invalid import for plugin module
235
- - 0d3a913e: ZERO-2725: Update decimal scale in Price component
236
- - d6edb1d0: ZERO-2551: Fix searchparams handling for list and other routes
237
- - d3474c64: ZERO-2655: Add data source shipping option
238
- - 17f87524: ZERO-2816: Make the incoming currency lowercase
239
- - c45b62c9: ZERO-2818: Add upload and download support for b2b package
240
- - 91265bba: ZERO-2551: Improve pretty url and caching performance
241
- - bbe18b9f: ZERO-2575: Fix build error
242
- - d4099960: ZERO-2781: Refactor buildClientRequestUrl function to support caching and options
243
- - 4920742c: Disable getCachedTranslations
244
- - 12a873e: ZERO-2846:Edit the siteKey regex in the response from GetCaptcha
245
- - 7e56d6b6: ZERO-2841: Update api tagTypes
246
- - 94b69285: ZERO-2551: Add cache handler check in url-redirection middleware
247
- - 98bb8dcd: ZERO-2706: Cache getTranlations method
248
- - dcc8a150: ZERO-2694: added build step to RC branch pipeline
249
- - 8f47ccae: ZERO-2829: fix and add nested JSON support for useFormData in api/client route
250
- - fad27689: ZERO-2739: add gpay to payment plugin map
251
- - dff0d595: ZERO-2659: add formData support to proxy api requests
252
- - fdd0b41: ZERO-2706: Add optimized translation support
253
- - f2c325c1: ZERO-2838: Move file input component into @akinon/next
254
- - 9e25a64b: ZERO-2835: Update category page layout with breadcrumb
255
- - beb499e6: ZERO-2551: Add new tsconfig paths
256
- - f2c92d5c: ZERO-2816: Update cookie name
257
- - 7bd3d992: ZERO-2801: Refactor locale middleware to handle single locale configuration
258
- - f046f8e0: ZERO-2575: update version for react-number-format
259
- - b9273fd3: ZERO-2889: add host headers to requests
260
- - 49eeebf: ZERO-2909: Add deleteCollectionItem query to wishlistApi
261
- - 86d25315: ZERO-2693: resolve dependency collision warning for eslint-config-next
262
- - c670bd48: ZERO-2900: Add middleware rewrite functionality
263
- - 3f9b8d7e: ZERO-2761: Update plugins.js for akinon-next
264
31
 
265
32
  ## 1.55.0
266
33
 
@@ -306,128 +73,7 @@
306
73
 
307
74
  ### Minor Changes
308
75
 
309
- - 90282b53: ZERO-2729: Audit packages for yarn and npm and also update app-template
310
- - 572d2e84: ZERO-2667: Add iframe support for redirection payment methods
311
- - 5dfeea0: ZERO-2801: Revert ZERO-2801
312
- - a4c8d6a9: ZERO-2663: Fix the image url for gif and svgs and return them without options
313
- - fda5b927: ZERO-2725: fix invalid import
314
- - 2d9b2b2: ZERO-2816: Add segment to headers
315
- - c53ea3e6: ZERO-2609: Reset additional form fields when selectedFormType is not company
316
- - d93a507: ZERO-2900: Fix pretty url rewrite
317
- - 8d9ac9a: ZERO-2794: Add field to order type
318
- - 70279e7: ZERO-2817: Add metrics endpoint in default middleware
319
- - 6c25f66: ZERO-2551: Check CACHE_HOST variable
320
- - bc2b411: ZERO-2825: Add attribute-based shipping options to checkout page
321
- - 3bf2dd9: ZERO-2551: Fix search page
322
- - e9541a1: ZERO-2816: Add headers to url
323
- - c53ef7b9: ZERO-2668: The Link component has been updated to improve the logic for handling href values. Previously, if the href was not a string or started with 'http', it would return the href as is. Now, if the href is not provided, it will default to '#' to prevent any potential errors. Additionally, if the href is a string and does not start with 'http', it will be formatted with the locale and pathname, based on the localeUrlStrategy and defaultLocaleValue. This ensures that the correct href is generated based on the localization settings.
324
- - 9d94f7e: ZERO-2820: update parent pk usage for menu generator
325
- - 2e6104d: ZERO-2888:Edit the numbering in the pagination and the visibility of the prev and next buttons
326
- - 64699d3: ZERO-2761: Fix invalid import for plugin module
327
- - 0d3a913e: ZERO-2725: Update decimal scale in Price component
328
- - 1448a96e: ZERO-2612: add errors type in CheckoutState
329
- - 1ec2e9d: ZERO-2895: Update app-fetch to include cookies in headers
330
- - d6edb1d: ZERO-2551: Fix searchparams handling for list and other routes
331
- - d3474c64: ZERO-2655: Add data source shipping option
332
- - 75080fd6: ZERO-2630: Add max limit to postcode area
333
- - 17f8752: ZERO-2816: Make the incoming currency lowercase
334
- - c45b62c: ZERO-2818: Add upload and download support for b2b package
335
- - 91265bba: ZERO-2551: Improve pretty url and caching performance
336
- - bbe18b9f: ZERO-2575: Fix build error
337
- - d4099960: ZERO-2781: Refactor buildClientRequestUrl function to support caching and options
338
- - 4920742: Disable getCachedTranslations
339
- - 12a873e: ZERO-2846:Edit the siteKey regex in the response from GetCaptcha
340
- - 7e56d6b: ZERO-2841: Update api tagTypes
341
- - 94b6928: ZERO-2551: Add cache handler check in url-redirection middleware
342
- - 98bb8dcd: ZERO-2706: Cache getTranlations method
343
- - 46b7aad7: ZERO-2775: Add condition and logger for menuitemmodel data
344
- - dcc8a150: ZERO-2694: added build step to RC branch pipeline
345
- - 8f47cca: ZERO-2829: fix and add nested JSON support for useFormData in api/client route
346
- - fad27689: ZERO-2739: add gpay to payment plugin map
347
- - dff0d595: ZERO-2659: add formData support to proxy api requests
348
- - fdd0b41: ZERO-2706: Add optimized translation support
349
- - eecb282: ZERO-2607: Update address-related functions to include invalidateTag option
350
- - f2c325c: ZERO-2838: Move file input component into @akinon/next
351
- - 9e25a64: ZERO-2835: Update category page layout with breadcrumb
352
- - beb499e6: ZERO-2551: Add new tsconfig paths
353
- - 146ea391: ZERO-2774: Update imports
354
- - f2c92d5: ZERO-2816: Update cookie name
355
- - 7bd3d99: ZERO-2801: Refactor locale middleware to handle single locale configuration
356
- - c47be30d: ZERO-2744: Update Order and OrderItem types
357
- - e9a46acb: ZERO-2738: add CVC input to registered cards in Masterpass
358
- - f046f8e0: ZERO-2575: update version for react-number-format
359
- - b9273fd: ZERO-2889: add host headers to requests
360
- - 49eeebf: ZERO-2909: Add deleteCollectionItem query to wishlistApi
361
- - 86d25315: ZERO-2693: resolve dependency collision warning for eslint-config-next
362
- - c670bd4: ZERO-2900: Add middleware rewrite functionality
363
- - 3f9b8d7: ZERO-2761: Update plugins.js for akinon-next
364
- - 3d35f70: ZERO-2908: Add cookie to redirect url
365
-
366
- ## 1.50.0-rc.1
367
-
368
- ### Minor Changes
369
-
370
- - 49eeebf: ZERO-2909: Add deleteCollectionItem query to wishlistApi
371
-
372
- ## 1.50.0-rc.0
373
-
374
- ### Minor Changes
375
-
376
- - 90282b53: ZERO-2729: Audit packages for yarn and npm and also update app-template
377
- - 572d2e84: ZERO-2667: Add iframe support for redirection payment methods
378
- - 5dfeea0: ZERO-2801: Revert ZERO-2801
379
- - a4c8d6a9: ZERO-2663: Fix the image url for gif and svgs and return them without options
380
- - fda5b927: ZERO-2725: fix invalid import
381
- - 2d9b2b2: ZERO-2816: Add segment to headers
382
- - c53ea3e6: ZERO-2609: Reset additional form fields when selectedFormType is not company
383
- - d93a507: ZERO-2900: Fix pretty url rewrite
384
- - 8d9ac9a: ZERO-2794: Add field to order type
385
76
  - eaf97d6: ZERO-2909: Add deleteCollectionItem query to wishlistApi
386
- - 70279e7: ZERO-2817: Add metrics endpoint in default middleware
387
- - 6c25f66: ZERO-2551: Check CACHE_HOST variable
388
- - bc2b411: ZERO-2825: Add attribute-based shipping options to checkout page
389
- - 3bf2dd9: ZERO-2551: Fix search page
390
- - e9541a1: ZERO-2816: Add headers to url
391
- - c53ef7b9: ZERO-2668: The Link component has been updated to improve the logic for handling href values. Previously, if the href was not a string or started with 'http', it would return the href as is. Now, if the href is not provided, it will default to '#' to prevent any potential errors. Additionally, if the href is a string and does not start with 'http', it will be formatted with the locale and pathname, based on the localeUrlStrategy and defaultLocaleValue. This ensures that the correct href is generated based on the localization settings.
392
- - 9d94f7e: ZERO-2820: update parent pk usage for menu generator
393
- - 2e6104d: ZERO-2888:Edit the numbering in the pagination and the visibility of the prev and next buttons
394
- - 64699d3: ZERO-2761: Fix invalid import for plugin module
395
- - 0d3a913e: ZERO-2725: Update decimal scale in Price component
396
- - 1448a96e: ZERO-2612: add errors type in CheckoutState
397
- - 1ec2e9d: ZERO-2895: Update app-fetch to include cookies in headers
398
- - d6edb1d: ZERO-2551: Fix searchparams handling for list and other routes
399
- - d3474c64: ZERO-2655: Add data source shipping option
400
- - 75080fd6: ZERO-2630: Add max limit to postcode area
401
- - 17f8752: ZERO-2816: Make the incoming currency lowercase
402
- - c45b62c: ZERO-2818: Add upload and download support for b2b package
403
- - 91265bba: ZERO-2551: Improve pretty url and caching performance
404
- - bbe18b9f: ZERO-2575: Fix build error
405
- - d4099960: ZERO-2781: Refactor buildClientRequestUrl function to support caching and options
406
- - 4920742: Disable getCachedTranslations
407
- - 12a873e: ZERO-2846:Edit the siteKey regex in the response from GetCaptcha
408
- - 7e56d6b: ZERO-2841: Update api tagTypes
409
- - 94b6928: ZERO-2551: Add cache handler check in url-redirection middleware
410
- - 98bb8dcd: ZERO-2706: Cache getTranlations method
411
- - 46b7aad7: ZERO-2775: Add condition and logger for menuitemmodel data
412
- - dcc8a150: ZERO-2694: added build step to RC branch pipeline
413
- - 8f47cca: ZERO-2829: fix and add nested JSON support for useFormData in api/client route
414
- - fad27689: ZERO-2739: add gpay to payment plugin map
415
- - dff0d595: ZERO-2659: add formData support to proxy api requests
416
- - fdd0b41: ZERO-2706: Add optimized translation support
417
- - eecb282: ZERO-2607: Update address-related functions to include invalidateTag option
418
- - f2c325c: ZERO-2838: Move file input component into @akinon/next
419
- - 9e25a64: ZERO-2835: Update category page layout with breadcrumb
420
- - beb499e6: ZERO-2551: Add new tsconfig paths
421
- - 146ea391: ZERO-2774: Update imports
422
- - f2c92d5: ZERO-2816: Update cookie name
423
- - 7bd3d99: ZERO-2801: Refactor locale middleware to handle single locale configuration
424
- - c47be30d: ZERO-2744: Update Order and OrderItem types
425
- - e9a46acb: ZERO-2738: add CVC input to registered cards in Masterpass
426
- - f046f8e0: ZERO-2575: update version for react-number-format
427
- - b9273fd: ZERO-2889: add host headers to requests
428
- - 86d25315: ZERO-2693: resolve dependency collision warning for eslint-config-next
429
- - c670bd4: ZERO-2900: Add middleware rewrite functionality
430
- - 3f9b8d7: ZERO-2761: Update plugins.js for akinon-next
431
77
 
432
78
  ## 1.49.0
433
79
 
@@ -453,126 +99,7 @@
453
99
 
454
100
  ### Minor Changes
455
101
 
456
- - 90282b5: ZERO-2729: Audit packages for yarn and npm and also update app-template
457
- - 572d2e8: ZERO-2667: Add iframe support for redirection payment methods
458
- - a4c8d6a9: ZERO-2663: Fix the image url for gif and svgs and return them without options
459
- - fda5b92: ZERO-2725: fix invalid import
460
- - 2d9b2b2: ZERO-2816: Add segment to headers
461
- - c53ea3e: ZERO-2609: Reset additional form fields when selectedFormType is not company
462
- - 8d9ac9a: ZERO-2794: Add field to order type
463
- - 70279e7: ZERO-2817: Add metrics endpoint in default middleware
464
- - 6c25f66: ZERO-2551: Check CACHE_HOST variable
465
- - bc2b411: ZERO-2825: Add attribute-based shipping options to checkout page
466
- - 3bf2dd9: ZERO-2551: Fix search page
467
- - e9541a1: ZERO-2816: Add headers to url
468
- - c53ef7b9: ZERO-2668: The Link component has been updated to improve the logic for handling href values. Previously, if the href was not a string or started with 'http', it would return the href as is. Now, if the href is not provided, it will default to '#' to prevent any potential errors. Additionally, if the href is a string and does not start with 'http', it will be formatted with the locale and pathname, based on the localeUrlStrategy and defaultLocaleValue. This ensures that the correct href is generated based on the localization settings.
469
- - 9d94f7e: ZERO-2820: update parent pk usage for menu generator
470
- - 64699d3: ZERO-2761: Fix invalid import for plugin module
471
- - 0d3a913: ZERO-2725: Update decimal scale in Price component
472
- - 1448a96e: ZERO-2612: add errors type in CheckoutState
473
- - d6edb1d: ZERO-2551: Fix searchparams handling for list and other routes
474
- - d3474c6: ZERO-2655: Add data source shipping option
475
- - 75080fd6: ZERO-2630: Add max limit to postcode area
476
- - 17f8752: ZERO-2816: Make the incoming currency lowercase
477
- - c45b62c: ZERO-2818: Add upload and download support for b2b package
478
- - 91265bba: ZERO-2551: Improve pretty url and caching performance
479
- - bbe18b9f: ZERO-2575: Fix build error
480
- - d409996: ZERO-2781: Refactor buildClientRequestUrl function to support caching and options
481
- - 4920742: Disable getCachedTranslations
482
- - 7e56d6b: ZERO-2841: Update api tagTypes
483
- - 94b6928: ZERO-2551: Add cache handler check in url-redirection middleware
484
- - 98bb8dc: ZERO-2706: Cache getTranlations method
485
- - 46b7aad: ZERO-2775: Add condition and logger for menuitemmodel data
486
- - dcc8a15: ZERO-2694: added build step to RC branch pipeline
487
- - 8f47cca: ZERO-2829: fix and add nested JSON support for useFormData in api/client route
488
- - fad2768: ZERO-2739: add gpay to payment plugin map
489
- - dff0d595: ZERO-2659: add formData support to proxy api requests
490
- - eecb282: ZERO-2607: Update address-related functions to include invalidateTag option
491
- - f2c325c: ZERO-2838: Move file input component into @akinon/next
492
- - 9e25a64: ZERO-2835: Update category page layout with breadcrumb
493
- - beb499e6: ZERO-2551: Add new tsconfig paths
494
- - 948eb42: ZERO-2852: Add out of stock endpoints
495
- - 146ea39: ZERO-2774: Update imports
496
- - f2c92d5: ZERO-2816: Update cookie name
497
- - 7bd3d99: ZERO-2801: Refactor locale middleware to handle single locale configuration
498
- - c47be30: ZERO-2744: Update Order and OrderItem types
499
- - e9a46ac: ZERO-2738: add CVC input to registered cards in Masterpass
500
- - f046f8e0: ZERO-2575: update version for react-number-format
501
- - 86d2531: ZERO-2693: resolve dependency collision warning for eslint-config-next
502
- - 3f9b8d7: ZERO-2761: Update plugins.js for akinon-next
503
-
504
- ## 1.45.0-rc.4
505
-
506
- ### Minor Changes
507
-
508
- - 8f47cca: ZERO-2829: fix and add nested JSON support for useFormData in api/client route
509
-
510
- ## 1.45.0-rc.3
511
-
512
- ### Minor Changes
513
-
514
- - 948eb42: ZERO-2852: Add out of stock endpoints
515
-
516
- ## 1.45.0-rc.2
517
-
518
- ### Minor Changes
519
-
520
- - c45b62c: ZERO-2818: Add upload and download support for b2b package
521
- - f2c325c: ZERO-2838: Move file input component into @akinon/next
522
-
523
- ## 1.45.0-rc.1
524
-
525
- ### Minor Changes
526
-
527
- - 7e56d6b: ZERO-2841: Update api tagTypes
528
-
529
- ## 1.45.0-rc.0
530
-
531
- ### Minor Changes
532
-
533
- - 90282b5: ZERO-2729: Audit packages for yarn and npm and also update app-template
534
- - 572d2e8: ZERO-2667: Add iframe support for redirection payment methods
535
- - a4c8d6a9: ZERO-2663: Fix the image url for gif and svgs and return them without options
536
- - fda5b92: ZERO-2725: fix invalid import
537
- - 2d9b2b2: ZERO-2816: Add segment to headers
538
- - c53ea3e: ZERO-2609: Reset additional form fields when selectedFormType is not company
539
- - 8d9ac9a: ZERO-2794: Add field to order type
540
- - 70279e7: ZERO-2817: Add metrics endpoint in default middleware
541
- - 6c25f66: ZERO-2551: Check CACHE_HOST variable
542
- - bc2b411: ZERO-2825: Add attribute-based shipping options to checkout page
543
- - 3bf2dd9: ZERO-2551: Fix search page
544
- - e9541a1: ZERO-2816: Add headers to url
545
- - c53ef7b9: ZERO-2668: The Link component has been updated to improve the logic for handling href values. Previously, if the href was not a string or started with 'http', it would return the href as is. Now, if the href is not provided, it will default to '#' to prevent any potential errors. Additionally, if the href is a string and does not start with 'http', it will be formatted with the locale and pathname, based on the localeUrlStrategy and defaultLocaleValue. This ensures that the correct href is generated based on the localization settings.
546
- - 9d94f7e: ZERO-2820: update parent pk usage for menu generator
547
- - 64699d3: ZERO-2761: Fix invalid import for plugin module
548
- - 0d3a913: ZERO-2725: Update decimal scale in Price component
549
- - 1448a96: ZERO-2612: add errors type in CheckoutState
550
102
  - 2ab6e08: ZERO-2841: Update getBasketDetail query
551
- - d6edb1d: ZERO-2551: Fix searchparams handling for list and other routes
552
- - d3474c6: ZERO-2655: Add data source shipping option
553
- - 75080fd: ZERO-2630: Add max limit to postcode area
554
- - 17f8752: ZERO-2816: Make the incoming currency lowercase
555
- - 91265bb: ZERO-2551: Improve pretty url and caching performance
556
- - bbe18b9: ZERO-2575: Fix build error
557
- - d409996: ZERO-2781: Refactor buildClientRequestUrl function to support caching and options
558
- - 4920742: Disable getCachedTranslations
559
- - 94b6928: ZERO-2551: Add cache handler check in url-redirection middleware
560
- - 98bb8dc: ZERO-2706: Cache getTranlations method
561
- - 46b7aad: ZERO-2775: Add condition and logger for menuitemmodel data
562
- - dcc8a15: ZERO-2694: added build step to RC branch pipeline
563
- - fad2768: ZERO-2739: add gpay to payment plugin map
564
- - dff0d59: ZERO-2659: add formData support to proxy api requests
565
- - eecb282: ZERO-2607: Update address-related functions to include invalidateTag option
566
- - 9e25a64: ZERO-2835: Update category page layout with breadcrumb
567
- - beb499e: ZERO-2551: Add new tsconfig paths
568
- - 146ea39: ZERO-2774: Update imports
569
- - f2c92d5: ZERO-2816: Update cookie name
570
- - 7bd3d99: ZERO-2801: Refactor locale middleware to handle single locale configuration
571
- - c47be30: ZERO-2744: Update Order and OrderItem types
572
- - e9a46ac: ZERO-2738: add CVC input to registered cards in Masterpass
573
- - f046f8e0: ZERO-2575: update version for react-number-format
574
- - 86d2531: ZERO-2693: resolve dependency collision warning for eslint-config-next
575
- - 3f9b8d7: ZERO-2761: Update plugins.js for akinon-next
576
103
 
577
104
  ## 1.44.0
578
105
 
@@ -580,201 +107,7 @@
580
107
 
581
108
  ### Minor Changes
582
109
 
583
- - 90282b5: ZERO-2729: Audit packages for yarn and npm and also update app-template
584
- - 572d2e8: ZERO-2667: Add iframe support for redirection payment methods
585
- - a4c8d6a9: ZERO-2663: Fix the image url for gif and svgs and return them without options
586
- - fda5b92: ZERO-2725: fix invalid import
587
- - 2d9b2b2: ZERO-2816: Add segment to headers
588
- - c53ea3e: ZERO-2609: Reset additional form fields when selectedFormType is not company
589
- - 8d9ac9a: ZERO-2794: Add field to order type
590
- - 70279e7: ZERO-2817: Add metrics endpoint in default middleware
591
- - 6c25f66: ZERO-2551: Check CACHE_HOST variable
592
- - bc2b411: ZERO-2825: Add attribute-based shipping options to checkout page
593
- - 3bf2dd9: ZERO-2551: Fix search page
594
- - e9541a1: ZERO-2816: Add headers to url
595
- - c53ef7b9: ZERO-2668: The Link component has been updated to improve the logic for handling href values. Previously, if the href was not a string or started with 'http', it would return the href as is. Now, if the href is not provided, it will default to '#' to prevent any potential errors. Additionally, if the href is a string and does not start with 'http', it will be formatted with the locale and pathname, based on the localeUrlStrategy and defaultLocaleValue. This ensures that the correct href is generated based on the localization settings.
596
- - 9d94f7e: ZERO-2820: update parent pk usage for menu generator
597
- - 64699d3: ZERO-2761: Fix invalid import for plugin module
598
- - 0d3a913: ZERO-2725: Update decimal scale in Price component
599
- - 1448a96: ZERO-2612: add errors type in CheckoutState
600
- - d6edb1d: ZERO-2551: Fix searchparams handling for list and other routes
601
- - d3474c6: ZERO-2655: Add data source shipping option
602
- - 75080fd: ZERO-2630: Add max limit to postcode area
603
- - 17f8752: ZERO-2816: Make the incoming currency lowercase
604
- - 91265bb: ZERO-2551: Improve pretty url and caching performance
605
- - bbe18b9: ZERO-2575: Fix build error
606
- - d409996: ZERO-2781: Refactor buildClientRequestUrl function to support caching and options
607
- - 4920742: Disable getCachedTranslations
608
- - 94b6928: ZERO-2551: Add cache handler check in url-redirection middleware
609
- - 98bb8dc: ZERO-2706: Cache getTranlations method
610
- - 46b7aad: ZERO-2775: Add condition and logger for menuitemmodel data
611
- - dcc8a15: ZERO-2694: added build step to RC branch pipeline
612
- - fad2768: ZERO-2739: add gpay to payment plugin map
613
- - dff0d59: ZERO-2659: add formData support to proxy api requests
614
- - eecb282: ZERO-2607: Update address-related functions to include invalidateTag option
615
- - 9e25a64: ZERO-2835: Update category page layout with breadcrumb
616
- - beb499e: ZERO-2551: Add new tsconfig paths
617
- - 146ea39: ZERO-2774: Update imports
618
- - f2c92d5: ZERO-2816: Update cookie name
619
- - 7bd3d99: ZERO-2801: Refactor locale middleware to handle single locale configuration
620
- - c47be30: ZERO-2744: Update Order and OrderItem types
621
- - e9a46ac: ZERO-2738: add CVC input to registered cards in Masterpass
622
- - f046f8e0: ZERO-2575: update version for react-number-format
623
- - 86d2531: ZERO-2693: resolve dependency collision warning for eslint-config-next
624
- - 3f9b8d7: ZERO-2761: Update plugins.js for akinon-next
625
-
626
- ## 1.43.0-rc.15
627
-
628
- ## 1.43.0-rc.14
629
-
630
- ### Minor Changes
631
-
632
- - 3bf2dd9: ZERO-2551: Fix search page
633
-
634
- ## 1.43.0-rc.13
635
-
636
- ### Minor Changes
637
-
638
- - 9e25a64: ZERO-2835: Update category page layout with breadcrumb
639
-
640
- ## 1.43.0-rc.12
641
-
642
- ### Minor Changes
643
-
644
- - 4920742: Disable getCachedTranslations
645
-
646
- ## 1.43.0-rc.11
647
-
648
- ### Minor Changes
649
-
650
- - 6c25f66: ZERO-2551: Check CACHE_HOST variable
651
-
652
- ## 1.43.0-rc.10
653
-
654
- ### Minor Changes
655
-
656
- - d6edb1d: ZERO-2551: Fix searchparams handling for list and other routes
657
-
658
- ## 1.43.0-rc.9
659
-
660
- ### Minor Changes
661
-
662
- - bc2b411: ZERO-2825: Add attribute-based shipping options to checkout page
663
-
664
- ## 1.43.0-rc.8
665
-
666
- ### Minor Changes
667
-
668
- - 70279e7: ZERO-2817: Add metrics endpoint in default middleware
669
- - 9d94f7e: ZERO-2820: update parent pk usage for menu generator
670
-
671
- ## 1.43.0-rc.7
672
-
673
- ### Minor Changes
674
-
675
- - 7bd3d99: ZERO-2801: Refactor locale middleware to handle single locale configuration
676
-
677
- ## 1.43.0-rc.6
678
-
679
- ### Minor Changes
680
-
681
- - 90282b5: ZERO-2729: Audit packages for yarn and npm and also update app-template
682
- - 572d2e8: ZERO-2667: Add iframe support for redirection payment methods
683
- - a4c8d6a: ZERO-2663: Fix the image url for gif and svgs and return them without options
684
- - fda5b92: ZERO-2725: fix invalid import
685
- - 2d9b2b2: ZERO-2816: Add segment to headers
686
- - c53ea3e: ZERO-2609: Reset additional form fields when selectedFormType is not company
687
- - 8d9ac9a: ZERO-2794: Add field to order type
688
- - e9541a1: ZERO-2816: Add headers to url
689
- - c53ef7b: ZERO-2668: The Link component has been updated to improve the logic for handling href values. Previously, if the href was not a string or started with 'http', it would return the href as is. Now, if the href is not provided, it will default to '#' to prevent any potential errors. Additionally, if the href is a string and does not start with 'http', it will be formatted with the locale and pathname, based on the localeUrlStrategy and defaultLocaleValue. This ensures that the correct href is generated based on the localization settings.
690
- - 64699d3: ZERO-2761: Fix invalid import for plugin module
691
- - 0d3a913: ZERO-2725: Update decimal scale in Price component
692
- - 1448a96: ZERO-2612: add errors type in CheckoutState
693
- - d3474c6: ZERO-2655: Add data source shipping option
694
- - 75080fd: ZERO-2630: Add max limit to postcode area
695
- - 17f8752: ZERO-2816: Make the incoming currency lowercase
696
- - 91265bb: ZERO-2551: Improve pretty url and caching performance
697
- - bbe18b9: ZERO-2575: Fix build error
698
- - d409996: ZERO-2781: Refactor buildClientRequestUrl function to support caching and options
699
- - 94b6928: ZERO-2551: Add cache handler check in url-redirection middleware
700
- - 98bb8dc: ZERO-2706: Cache getTranlations method
701
- - 46b7aad: ZERO-2775: Add condition and logger for menuitemmodel data
702
- - dcc8a15: ZERO-2694: added build step to RC branch pipeline
703
- - fad2768: ZERO-2739: add gpay to payment plugin map
704
- - dff0d59: ZERO-2659: add formData support to proxy api requests
705
- - eecb282: ZERO-2607: Update address-related functions to include invalidateTag option
706
110
  - 4a163f2: ZERO-2761: Add condition for basket summary
707
- - beb499e: ZERO-2551: Add new tsconfig paths
708
- - 146ea39: ZERO-2774: Update imports
709
- - f2c92d5: ZERO-2816: Update cookie name
710
- - c47be30: ZERO-2744: Update Order and OrderItem types
711
- - e9a46ac: ZERO-2738: add CVC input to registered cards in Masterpass
712
- - f046f8e: ZERO-2575: update version for react-number-format
713
- - 86d2531: ZERO-2693: resolve dependency collision warning for eslint-config-next
714
- - 3f9b8d7: ZERO-2761: Update plugins.js for akinon-next
715
-
716
- ## 1.43.0-rc.5
717
-
718
- ### Minor Changes
719
-
720
- - 17f8752: ZERO-2816: Make the incoming currency lowercase
721
-
722
- ## 1.43.0-rc.4
723
-
724
- ### Minor Changes
725
-
726
- - 3f9b8d7: ZERO-2761: Update plugins.js for akinon-next
727
-
728
- ## 1.43.0-rc.3
729
-
730
- ### Minor Changes
731
-
732
- - 64699d3: ZERO-2761: Fix invalid import for plugin module
733
-
734
- ## 1.43.0-rc.2
735
-
736
- ### Minor Changes
737
-
738
- - f2c92d5: ZERO-2816: Update cookie name
739
-
740
- ## 1.43.0-rc.1
741
-
742
- ### Minor Changes
743
-
744
- - eecb282: ZERO-2607: Update address-related functions to include invalidateTag option
745
-
746
- ## 1.43.0-rc.0
747
-
748
- ### Minor Changes
749
-
750
- - 90282b5: ZERO-2729: Audit packages for yarn and npm and also update app-template
751
- - 572d2e8: ZERO-2667: Add iframe support for redirection payment methods
752
- - a4c8d6a: ZERO-2663: Fix the image url for gif and svgs and return them without options
753
- - fda5b92: ZERO-2725: fix invalid import
754
- - 2d9b2b2: ZERO-2816: Add segment to headers
755
- - c53ea3e: ZERO-2609: Reset additional form fields when selectedFormType is not company
756
- - 8d9ac9a: ZERO-2794: Add field to order type
757
- - e9541a1: ZERO-2816: Add headers to url
758
- - c53ef7b: ZERO-2668: The Link component has been updated to improve the logic for handling href values. Previously, if the href was not a string or started with 'http', it would return the href as is. Now, if the href is not provided, it will default to '#' to prevent any potential errors. Additionally, if the href is a string and does not start with 'http', it will be formatted with the locale and pathname, based on the localeUrlStrategy and defaultLocaleValue. This ensures that the correct href is generated based on the localization settings.
759
- - 0d3a913: ZERO-2725: Update decimal scale in Price component
760
- - 1448a96: ZERO-2612: add errors type in CheckoutState
761
- - d3474c6: ZERO-2655: Add data source shipping option
762
- - 75080fd: ZERO-2630: Add max limit to postcode area
763
- - 91265bb: ZERO-2551: Improve pretty url and caching performance
764
- - bbe18b9: ZERO-2575: Fix build error
765
- - d409996: ZERO-2781: Refactor buildClientRequestUrl function to support caching and options
766
- - 94b6928: ZERO-2551: Add cache handler check in url-redirection middleware
767
- - 98bb8dc: ZERO-2706: Cache getTranlations method
768
- - 46b7aad: ZERO-2775: Add condition and logger for menuitemmodel data
769
- - dcc8a15: ZERO-2694: added build step to RC branch pipeline
770
- - fad2768: ZERO-2739: add gpay to payment plugin map
771
- - dff0d59: ZERO-2659: add formData support to proxy api requests
772
- - beb499e: ZERO-2551: Add new tsconfig paths
773
- - 146ea39: ZERO-2774: Update imports
774
- - c47be30: ZERO-2744: Update Order and OrderItem types
775
- - e9a46ac: ZERO-2738: add CVC input to registered cards in Masterpass
776
- - f046f8e: ZERO-2575: update version for react-number-format
777
- - 86d2531: ZERO-2693: resolve dependency collision warning for eslint-config-next
778
111
 
779
112
  ## 1.42.0
780
113