@akinon/projectzero 2.0.0-beta.2 → 2.0.0-beta.20

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 (377) hide show
  1. package/CHANGELOG.md +147 -6
  2. package/app-template/.env.example +8 -0
  3. package/app-template/.github/instructions/account.instructions.md +749 -0
  4. package/app-template/.github/instructions/checkout.instructions.md +678 -0
  5. package/app-template/.github/instructions/default.instructions.md +279 -0
  6. package/app-template/.github/instructions/edge-cases.instructions.md +73 -0
  7. package/app-template/.github/instructions/routing.instructions.md +603 -0
  8. package/app-template/.github/instructions/settings.instructions.md +338 -0
  9. package/app-template/.gitignore +5 -0
  10. package/app-template/AGENTS.md +7 -0
  11. package/app-template/CHANGELOG.md +1645 -61
  12. package/app-template/Procfile +1 -1
  13. package/app-template/README.md +6 -0
  14. package/app-template/akinon.json +1 -4
  15. package/app-template/build.sh +10 -0
  16. package/app-template/config/prebuild-tests.json +5 -0
  17. package/app-template/docs/advanced-usage.md +111 -0
  18. package/app-template/docs/plugins.md +60 -25
  19. package/app-template/docs/sentry-usage.md +35 -0
  20. package/app-template/jest.config.ts +2 -2
  21. package/app-template/next-env.d.ts +1 -0
  22. package/app-template/next.config.mjs +8 -5
  23. package/app-template/package.json +60 -50
  24. package/app-template/postcss.config.mjs +5 -0
  25. package/app-template/public/amex.svg +12 -0
  26. package/app-template/public/apple-pay.svg +16 -0
  27. package/app-template/public/assets/images/product-placeholder-1.jpg +0 -0
  28. package/app-template/public/assets/images/product-placeholder-2.jpg +0 -0
  29. package/app-template/public/assets/images/product-placeholder-3.jpg +0 -0
  30. package/app-template/public/assets/images/product-placeholder-4.jpg +0 -0
  31. package/app-template/public/google-pay.svg +16 -0
  32. package/app-template/public/locales/en/account.json +13 -4
  33. package/app-template/public/locales/en/auth.json +6 -7
  34. package/app-template/public/locales/en/basket.json +6 -6
  35. package/app-template/public/locales/en/blog.json +7 -0
  36. package/app-template/public/locales/en/category.json +3 -1
  37. package/app-template/public/locales/en/checkout.json +17 -4
  38. package/app-template/public/locales/en/common.json +71 -3
  39. package/app-template/public/locales/en/forgot_password.json +6 -7
  40. package/app-template/public/locales/en/product.json +84 -4
  41. package/app-template/public/locales/tr/account.json +13 -4
  42. package/app-template/public/locales/tr/auth.json +16 -17
  43. package/app-template/public/locales/tr/basket.json +4 -4
  44. package/app-template/public/locales/tr/blog.json +7 -0
  45. package/app-template/public/locales/tr/category.json +3 -1
  46. package/app-template/public/locales/tr/checkout.json +48 -36
  47. package/app-template/public/locales/tr/common.json +70 -2
  48. package/app-template/public/locales/tr/forgot_password.json +12 -13
  49. package/app-template/public/locales/tr/product.json +82 -0
  50. package/app-template/public/logo.svg +3 -27
  51. package/app-template/public/mastercard.svg +14 -0
  52. package/app-template/public/masterpass-javascript-sdk-web.min.js +1 -0
  53. package/app-template/public/promotion-banner.jpg +0 -0
  54. package/app-template/public/shop-pay.svg +12 -0
  55. package/app-template/public/visa.svg +12 -0
  56. package/app-template/src/__tests__/middleware-matcher.test.ts +135 -0
  57. package/app-template/src/app/[commerce]/[locale]/[currency]/blog/[slug]/page.tsx +118 -0
  58. package/app-template/src/app/[commerce]/[locale]/[currency]/pages/[slug]/page.tsx +15 -0
  59. package/app-template/src/app/{[commerce]/[locale]/[currency] → [pz]}/[...prettyurl]/page.tsx +9 -9
  60. package/app-template/src/app/{[commerce]/[locale]/[currency] → [pz]}/account/layout.tsx +2 -2
  61. package/app-template/src/app/{[commerce]/[locale]/[currency] → [pz]}/account/orders/[id]/cancellation/page.tsx +105 -13
  62. package/app-template/src/app/{[commerce]/[locale]/[currency] → [pz]}/account/orders/[id]/page.tsx +136 -52
  63. package/app-template/src/app/{[commerce]/[locale]/[currency] → [pz]}/account/profile/page.tsx +2 -2
  64. package/app-template/src/app/[pz]/category/[pk]/page.tsx +27 -0
  65. package/app-template/src/app/[pz]/error.tsx +17 -0
  66. package/app-template/src/app/[pz]/flat-page/[pk]/page.tsx +23 -0
  67. package/app-template/src/app/{[commerce]/[locale]/[currency] → [pz]}/forms/[pk]/generate/page.tsx +1 -2
  68. package/app-template/src/app/[pz]/group-product/[pk]/page.tsx +93 -0
  69. package/app-template/src/app/{[commerce]/[locale]/[currency] → [pz]}/landing-page/[pk]/page.tsx +2 -4
  70. package/app-template/src/app/{[commerce]/[locale]/[currency] → [pz]}/layout.tsx +3 -10
  71. package/app-template/src/app/{[commerce]/[locale]/[currency] → [pz]}/list/page.tsx +2 -4
  72. package/app-template/src/app/{[commerce]/[locale]/[currency]/pz-not-found/page.tsx → [pz]/not-found.tsx} +5 -7
  73. package/app-template/src/app/{[commerce]/[locale]/[currency] → [pz]}/orders/checkout/page.tsx +7 -4
  74. package/app-template/src/app/{[commerce]/[locale]/[currency] → [pz]}/orders/completed/[token]/page.tsx +6 -4
  75. package/app-template/src/app/[pz]/product/[pk]/page.tsx +102 -0
  76. package/app-template/src/app/[pz]/special-page/[pk]/page.tsx +35 -0
  77. package/app-template/src/app/{[commerce]/[locale]/[currency] → [pz]}/users/email-set-primary/[[...id]]/page.tsx +3 -4
  78. package/app-template/src/app/{[commerce]/[locale]/[currency] → [pz]}/users/registration/account-confirm-email/[[...id]]/page.tsx +3 -3
  79. package/app-template/src/app/{[commerce]/[locale]/[currency] → [pz]}/users/reset/[[...id]]/page.tsx +41 -5
  80. package/app-template/src/app/[pz]/xml-sitemap/[node]/route.ts +73 -0
  81. package/app-template/src/app/api/auth/[...nextauth]/route.ts +3 -0
  82. package/app-template/src/app/api/barcode-search/route.ts +1 -0
  83. package/app-template/src/app/api/form/[...id]/route.ts +1 -7
  84. package/app-template/src/app/api/image-proxy/route.ts +1 -0
  85. package/app-template/src/app/api/product-categories/route.ts +1 -0
  86. package/app-template/src/app/api/similar-product-list/route.ts +1 -0
  87. package/app-template/src/app/api/similar-products/route.ts +1 -0
  88. package/app-template/src/app/api/theme-settings/route.ts +12 -0
  89. package/app-template/src/app/api/virtual-try-on/limited-categories/route.ts +1 -0
  90. package/app-template/src/app/api/virtual-try-on/route.ts +1 -0
  91. package/app-template/src/assets/fonts/pz-icon.css +211 -49
  92. package/app-template/src/assets/fonts/pz-icon.eot +0 -0
  93. package/app-template/src/assets/fonts/pz-icon.html +486 -0
  94. package/app-template/src/assets/fonts/pz-icon.scss +373 -49
  95. package/app-template/src/assets/fonts/pz-icon.svg +215 -53
  96. package/app-template/src/assets/fonts/pz-icon.ttf +0 -0
  97. package/app-template/src/assets/fonts/pz-icon.woff +0 -0
  98. package/app-template/src/assets/fonts/pz-icon.woff2 +0 -0
  99. package/app-template/src/assets/globals.scss +37 -34
  100. package/app-template/src/assets/icons/arrow-right.svg +3 -0
  101. package/app-template/src/assets/icons/cart.svg +4 -12
  102. package/app-template/src/assets/icons/check.svg +2 -18
  103. package/app-template/src/assets/icons/chevron-down.svg +2 -7
  104. package/app-template/src/assets/icons/delete.svg +3 -0
  105. package/app-template/src/assets/icons/facebook.svg +2 -8
  106. package/app-template/src/assets/icons/fav-off.svg +5 -0
  107. package/app-template/src/assets/icons/fav-on.svg +5 -0
  108. package/app-template/src/assets/icons/filter-and-sort.svg +3 -0
  109. package/app-template/src/assets/icons/heart.svg +3 -0
  110. package/app-template/src/assets/icons/instagram.svg +2 -13
  111. package/app-template/src/assets/icons/materials.svg +3 -0
  112. package/app-template/src/assets/icons/person.svg +4 -0
  113. package/app-template/src/assets/icons/pinterest.svg +5 -11
  114. package/app-template/src/assets/icons/ruler.svg +3 -0
  115. package/app-template/src/assets/icons/search.svg +8 -11
  116. package/app-template/src/assets/icons/share.svg +2 -9
  117. package/app-template/src/assets/icons/snapchat.svg +3 -0
  118. package/app-template/src/assets/icons/tiktok.svg +3 -0
  119. package/app-template/src/assets/icons/tumblr.svg +6 -0
  120. package/app-template/src/assets/icons/twitter.svg +2 -10
  121. package/app-template/src/assets/icons/vimeo.svg +3 -0
  122. package/app-template/src/assets/icons/youtube.svg +3 -0
  123. package/app-template/src/assets/icons/zoom.svg +8 -0
  124. package/app-template/src/auth.ts +3 -0
  125. package/app-template/src/components/__tests__/link.test.tsx +2 -0
  126. package/app-template/src/components/accordion.tsx +48 -23
  127. package/app-template/src/components/action-tooltip.tsx +160 -0
  128. package/app-template/src/components/button.tsx +50 -35
  129. package/app-template/src/components/carousel-core.tsx +4 -11
  130. package/app-template/src/components/checkbox.tsx +2 -1
  131. package/app-template/src/components/currency-select.tsx +150 -4
  132. package/app-template/src/components/file-input.tsx +64 -2
  133. package/app-template/src/components/generate-form-fields.tsx +49 -10
  134. package/app-template/src/components/icon.tsx +5 -6
  135. package/app-template/src/components/index.ts +4 -1
  136. package/app-template/src/components/input.tsx +8 -2
  137. package/app-template/src/components/language-select.tsx +88 -2
  138. package/app-template/src/components/modal.tsx +34 -16
  139. package/app-template/src/components/pagination.tsx +133 -20
  140. package/app-template/src/components/price.tsx +1 -1
  141. package/app-template/src/components/pwa-tags.tsx +1 -0
  142. package/app-template/src/components/quantity-input.tsx +63 -0
  143. package/app-template/src/components/quantity-selector.tsx +203 -0
  144. package/app-template/src/components/route-handler.tsx +50 -0
  145. package/app-template/src/components/select.tsx +86 -54
  146. package/app-template/src/components/tabs.tsx +2 -2
  147. package/app-template/src/components/types/index.ts +55 -2
  148. package/app-template/src/components/widget-content.tsx +323 -0
  149. package/app-template/src/data/server/theme.ts +70 -0
  150. package/app-template/src/hooks/use-fav-button.tsx +9 -10
  151. package/app-template/src/hooks/use-product-cart.ts +80 -0
  152. package/app-template/src/hooks/use-stock-alert.ts +74 -0
  153. package/app-template/src/hooks/use-theme-settings.ts +42 -0
  154. package/app-template/src/lib/fonts.ts +149 -0
  155. package/app-template/src/middleware.ts +1 -0
  156. package/app-template/src/plugins.js +13 -2
  157. package/app-template/src/redux/middlewares/category.ts +6 -5
  158. package/app-template/src/redux/reducers/category.ts +1 -1
  159. package/app-template/src/redux/store.ts +21 -1
  160. package/app-template/src/routes/index.ts +2 -1
  161. package/app-template/src/settings.js +5 -3
  162. package/app-template/src/types/hookform-resolvers-yup.d.ts +28 -0
  163. package/app-template/src/types/index.ts +74 -3
  164. package/app-template/src/types/next-auth.d.ts +2 -2
  165. package/app-template/src/types/widget.ts +169 -0
  166. package/app-template/src/utils/convert-facet-search-params.ts +1 -1
  167. package/app-template/src/utils/formatDate.ts +48 -0
  168. package/app-template/src/utils/styles.ts +71 -0
  169. package/app-template/src/utils/variant-validation.ts +41 -0
  170. package/app-template/src/views/account/address-form.tsx +8 -4
  171. package/app-template/src/views/account/contact-form.tsx +148 -136
  172. package/app-template/src/views/account/content-header.tsx +2 -2
  173. package/app-template/src/views/account/faq/faq-tabs.tsx +8 -2
  174. package/app-template/src/views/account/favorite-item.tsx +1 -1
  175. package/app-template/src/views/account/order.tsx +10 -8
  176. package/app-template/src/views/account/orders/order-cancellation-item.tsx +4 -3
  177. package/app-template/src/views/account/orders/order-detail-header.tsx +1 -1
  178. package/app-template/src/views/anonymous-tracking/order-detail/index.tsx +44 -37
  179. package/app-template/src/views/basket/basket-item.tsx +697 -107
  180. package/app-template/src/views/basket/basket-summary-context.tsx +560 -0
  181. package/app-template/src/views/basket/designer-context.tsx +617 -0
  182. package/app-template/src/views/basket/index.ts +2 -0
  183. package/app-template/src/views/basket/summary.tsx +497 -60
  184. package/app-template/src/views/breadcrumb/breadcrumb-client.tsx +190 -0
  185. package/app-template/src/views/breadcrumb/breadcrumb-registrar.tsx +286 -0
  186. package/app-template/src/views/breadcrumb/constants.ts +15 -0
  187. package/app-template/src/views/breadcrumb/index.tsx +127 -0
  188. package/app-template/src/views/breadcrumb.tsx +13 -38
  189. package/app-template/src/views/category/category-active-filters.tsx +1 -1
  190. package/app-template/src/views/category/category-banner.tsx +4 -23
  191. package/app-template/src/views/category/category-header.tsx +289 -60
  192. package/app-template/src/views/category/category-info.tsx +177 -27
  193. package/app-template/src/views/category/filters/filter-item.tsx +138 -42
  194. package/app-template/src/views/category/filters/index.tsx +209 -49
  195. package/app-template/src/views/category/layout.tsx +7 -4
  196. package/app-template/src/views/category/native-widget-context.tsx +257 -0
  197. package/app-template/src/views/category/product-list-registrar.tsx +665 -0
  198. package/app-template/src/views/checkout/auth.tsx +64 -40
  199. package/app-template/src/views/checkout/checkout-address-registrar.tsx +254 -0
  200. package/app-template/src/views/checkout/checkout-buttons-registrar.tsx +183 -0
  201. package/app-template/src/views/checkout/checkout-delivery-method-registrar.tsx +259 -0
  202. package/app-template/src/views/checkout/checkout-payment-options-registrar.tsx +253 -0
  203. package/app-template/src/views/checkout/checkout-summary-registrar.tsx +183 -0
  204. package/app-template/src/views/checkout/constants.ts +5 -0
  205. package/app-template/src/views/checkout/index.tsx +5 -0
  206. package/app-template/src/views/checkout/layout/header.tsx +9 -5
  207. package/app-template/src/views/checkout/steps/payment/index.tsx +5 -2
  208. package/app-template/src/views/checkout/steps/payment/options/credit-card/index.tsx +93 -6
  209. package/app-template/src/views/checkout/steps/payment/options/funds-transfer.tsx +25 -5
  210. package/app-template/src/views/checkout/steps/payment/options/loyalty.tsx +21 -2
  211. package/app-template/src/views/checkout/steps/payment/options/masterpass-rest.tsx +15 -0
  212. package/app-template/src/views/checkout/steps/payment/options/redirection.tsx +27 -5
  213. package/app-template/src/views/checkout/steps/payment/options/saved-card.tsx +18 -0
  214. package/app-template/src/views/checkout/steps/payment/options/store-credit.tsx +464 -0
  215. package/app-template/src/views/checkout/steps/payment/payment-option-buttons.tsx +171 -40
  216. package/app-template/src/views/checkout/steps/shipping/address-box.tsx +104 -29
  217. package/app-template/src/views/checkout/steps/shipping/addresses.tsx +129 -46
  218. package/app-template/src/views/checkout/steps/shipping/shipping-options.tsx +232 -27
  219. package/app-template/src/views/checkout/summary.tsx +310 -26
  220. package/app-template/src/views/find-in-store/index.tsx +2 -2
  221. package/app-template/src/views/footer/footer-app-banner-context.tsx +326 -0
  222. package/app-template/src/views/footer/footer-bottom-context.tsx +215 -0
  223. package/app-template/src/views/footer/footer-bottom-wrapper.tsx +74 -0
  224. package/app-template/src/views/footer/footer-layout-constants.ts +35 -0
  225. package/app-template/src/views/footer/footer-layout-registrar.tsx +342 -0
  226. package/app-template/src/views/footer/footer-layout-switcher.tsx +110 -0
  227. package/app-template/src/views/footer/footer-menu-context.tsx +211 -0
  228. package/app-template/src/views/footer/footer-native-widgets.tsx +60 -0
  229. package/app-template/src/views/footer/footer-social-context.tsx +254 -0
  230. package/app-template/src/views/footer/footer-subscription-context.tsx +210 -0
  231. package/app-template/src/views/footer/footer-utils.ts +43 -0
  232. package/app-template/src/views/footer/footer-value-props-context.tsx +326 -0
  233. package/app-template/src/views/footer/logo-settings.ts +183 -0
  234. package/app-template/src/views/footer/native-widget-config.ts +262 -0
  235. package/app-template/src/views/footer/subscription-settings.ts +122 -0
  236. package/app-template/src/views/footer/use-footer-logo.ts +162 -0
  237. package/app-template/src/views/footer.tsx +415 -13
  238. package/app-template/src/views/guest-login/index.tsx +62 -58
  239. package/app-template/src/views/header/action-menu.tsx +284 -49
  240. package/app-template/src/views/header/band.tsx +6 -21
  241. package/app-template/src/views/header/designer-context.tsx +261 -0
  242. package/app-template/src/views/header/header-announcement-registrar.tsx +267 -0
  243. package/app-template/src/views/header/header-client-wrapper.tsx +496 -0
  244. package/app-template/src/views/header/header-content.tsx +1026 -0
  245. package/app-template/src/views/header/header-currency-registrar.tsx +348 -0
  246. package/app-template/src/views/header/header-icons-context.tsx +262 -0
  247. package/app-template/src/views/header/header-language-registrar.tsx +348 -0
  248. package/app-template/src/views/header/header-layout-context.tsx +143 -0
  249. package/app-template/src/views/header/header-layout-registrar.tsx +658 -0
  250. package/app-template/src/views/header/header-logo-context.tsx +228 -0
  251. package/app-template/src/views/header/header-logo.tsx +118 -0
  252. package/app-template/src/views/header/header-mini-basket-context.tsx +524 -0
  253. package/app-template/src/views/header/header-search-registrar.tsx +511 -0
  254. package/app-template/src/views/header/header-text-slider-registrar.tsx +382 -0
  255. package/app-template/src/views/header/index.tsx +110 -48
  256. package/app-template/src/views/header/inline-search.tsx +262 -0
  257. package/app-template/src/views/header/mini-basket.tsx +832 -46
  258. package/app-template/src/views/header/mobile-hamburger-button.tsx +5 -8
  259. package/app-template/src/views/header/mobile-menu.tsx +12 -0
  260. package/app-template/src/views/header/navbar-menu-context.tsx +219 -0
  261. package/app-template/src/views/header/navbar.tsx +178 -111
  262. package/app-template/src/views/header/search/index.tsx +85 -24
  263. package/app-template/src/views/header/search/results.tsx +127 -65
  264. package/app-template/src/views/header/search/search-input.tsx +61 -0
  265. package/app-template/src/views/header/server-settings-parser.ts +1105 -0
  266. package/app-template/src/views/header/use-header-icons.ts +241 -0
  267. package/app-template/src/views/header/use-header-logo.ts +213 -0
  268. package/app-template/src/views/header/use-navbar-menu.ts +179 -0
  269. package/app-template/src/views/installment-options/index.tsx +1 -1
  270. package/app-template/src/views/login/index.tsx +89 -56
  271. package/app-template/src/views/otp-login/index.tsx +23 -20
  272. package/app-template/src/views/product/accordion-section.tsx +61 -0
  273. package/app-template/src/views/product/accordion-wrapper.tsx +135 -43
  274. package/app-template/src/views/product/custom-button-group.tsx +69 -0
  275. package/app-template/src/views/product/favorites-button-section.tsx +69 -0
  276. package/app-template/src/views/product/find-in-store-section.tsx +60 -0
  277. package/app-template/src/views/product/index.ts +1 -0
  278. package/app-template/src/views/product/layout.tsx +21 -6
  279. package/app-template/src/views/product/misc-buttons.tsx +339 -25
  280. package/app-template/src/views/product/price-wrapper.tsx +3 -24
  281. package/app-template/src/views/product/product-actions.tsx +294 -0
  282. package/app-template/src/views/product/product-info-section.tsx +140 -0
  283. package/app-template/src/views/product/product-info.tsx +130 -254
  284. package/app-template/src/views/product/product-share.tsx +61 -0
  285. package/app-template/src/views/product/product-variants.tsx +26 -0
  286. package/app-template/src/views/product/quantity-section.tsx +73 -0
  287. package/app-template/src/views/product/sale-tag.tsx +10 -0
  288. package/app-template/src/views/product/share-section.tsx +357 -0
  289. package/app-template/src/views/product/slider.tsx +135 -76
  290. package/app-template/src/views/product/variant.tsx +69 -41
  291. package/app-template/src/views/product/variants-section.tsx +126 -0
  292. package/app-template/src/views/product-detail/constants.ts +272 -0
  293. package/app-template/src/views/product-detail/index.ts +10 -0
  294. package/app-template/src/views/product-detail/product-detail-registrar.tsx +616 -0
  295. package/app-template/src/views/product-item/index.tsx +119 -46
  296. package/app-template/src/views/register/index.tsx +54 -44
  297. package/app-template/src/views/share/index.tsx +9 -6
  298. package/app-template/src/views/widgets/home-hero-slider-content.tsx +41 -39
  299. package/app-template/src/widgets/flatpages/about-us/index.tsx +78 -0
  300. package/app-template/src/widgets/flatpages/blog-list/index.tsx +129 -0
  301. package/app-template/src/widgets/footer-app-banner.tsx +444 -0
  302. package/app-template/src/widgets/footer-bottom.tsx +127 -0
  303. package/app-template/src/widgets/footer-menu-compact.tsx +238 -0
  304. package/app-template/src/widgets/footer-menu-two.tsx +298 -0
  305. package/app-template/src/widgets/footer-menu.tsx +6 -2
  306. package/app-template/src/widgets/footer-social-client.tsx +251 -0
  307. package/app-template/src/widgets/footer-social.tsx +47 -16
  308. package/app-template/src/widgets/footer-subscription/footer-subscription-form.tsx +17 -14
  309. package/app-template/src/widgets/footer-subscription/index.tsx +183 -17
  310. package/app-template/src/widgets/footer-value-props.tsx +201 -0
  311. package/app-template/src/widgets/home-stories-eng.tsx +42 -34
  312. package/app-template/src/widgets/index.ts +7 -0
  313. package/app-template/src/widgets/schemas/about-us.json +46 -0
  314. package/app-template/src/widgets/schemas/blog-list.json +37 -0
  315. package/app-template/src/widgets/schemas/blog.json +29 -0
  316. package/app-template/tailwind.config.js +19 -7
  317. package/app-template/tsconfig.json +29 -11
  318. package/codemods/migrate-segments/index.js +591 -0
  319. package/codemods/sentry-9/index.js +30 -0
  320. package/codemods/sentry-9/remove-sentry-configs.js +14 -0
  321. package/codemods/sentry-9/remove-sentry-dependency.js +25 -0
  322. package/codemods/sentry-9/replace-error-page.js +32 -0
  323. package/codemods/update-tailwind-config/index.js +30 -0
  324. package/codemods/update-tailwind-config/transform.js +102 -0
  325. package/commands/codemod.ts +17 -0
  326. package/commands/index.ts +3 -1
  327. package/commands/plugins.ts +115 -46
  328. package/dist/codemods/sentry-9/templates/error.js +14 -0
  329. package/dist/commands/codemod.js +15 -0
  330. package/dist/commands/index.js +3 -1
  331. package/dist/commands/plugins.js +85 -34
  332. package/package.json +3 -2
  333. package/app-template/postcss.config.js +0 -6
  334. package/app-template/sentry.client.config.ts +0 -16
  335. package/app-template/sentry.edge.config.ts +0 -3
  336. package/app-template/sentry.properties +0 -4
  337. package/app-template/sentry.server.config.ts +0 -3
  338. package/app-template/src/app/[commerce]/[locale]/[currency]/category/[pk]/page.tsx +0 -22
  339. package/app-template/src/app/[commerce]/[locale]/[currency]/error.tsx +0 -20
  340. package/app-template/src/app/[commerce]/[locale]/[currency]/flat-page/[pk]/page.tsx +0 -20
  341. package/app-template/src/app/[commerce]/[locale]/[currency]/group-product/[pk]/page.tsx +0 -74
  342. package/app-template/src/app/[commerce]/[locale]/[currency]/product/[pk]/loading.tsx +0 -67
  343. package/app-template/src/app/[commerce]/[locale]/[currency]/product/[pk]/page.tsx +0 -84
  344. package/app-template/src/app/[commerce]/[locale]/[currency]/special-page/[pk]/page.tsx +0 -27
  345. package/app-template/src/app/[commerce]/[locale]/[currency]/xml-sitemap/[node]/route.ts +0 -25
  346. package/app-template/src/pages/api/auth/[...nextauth].ts +0 -3
  347. /package/app-template/src/app/{[commerce]/[locale]/[currency] → [pz]}/account/address/page.tsx +0 -0
  348. /package/app-template/src/app/{[commerce]/[locale]/[currency] → [pz]}/account/change-email/page.tsx +0 -0
  349. /package/app-template/src/app/{[commerce]/[locale]/[currency] → [pz]}/account/change-password/page.tsx +0 -0
  350. /package/app-template/src/app/{[commerce]/[locale]/[currency] → [pz]}/account/contact/page.tsx +0 -0
  351. /package/app-template/src/app/{[commerce]/[locale]/[currency] → [pz]}/account/coupons/page.tsx +0 -0
  352. /package/app-template/src/app/{[commerce]/[locale]/[currency] → [pz]}/account/email-verification/page.tsx +0 -0
  353. /package/app-template/src/app/{[commerce]/[locale]/[currency] → [pz]}/account/faq/page.tsx +0 -0
  354. /package/app-template/src/app/{[commerce]/[locale]/[currency] → [pz]}/account/favourite-products/page.tsx +0 -0
  355. /package/app-template/src/app/{[commerce]/[locale]/[currency] → [pz]}/account/my-quotations/page.tsx +0 -0
  356. /package/app-template/src/app/{[commerce]/[locale]/[currency] → [pz]}/account/orders/[id]/layout.tsx +0 -0
  357. /package/app-template/src/app/{[commerce]/[locale]/[currency] → [pz]}/account/orders/page.tsx +0 -0
  358. /package/app-template/src/app/{[commerce]/[locale]/[currency] → [pz]}/account/page.tsx +0 -0
  359. /package/app-template/src/app/{[commerce]/[locale]/[currency] → [pz]}/address/stores/page.tsx +0 -0
  360. /package/app-template/src/app/{[commerce]/[locale]/[currency] → [pz]}/anonymous-tracking/page.tsx +0 -0
  361. /package/app-template/src/app/{[commerce]/[locale]/[currency] → [pz]}/auth/oauth-login/page.tsx +0 -0
  362. /package/app-template/src/app/{[commerce]/[locale]/[currency] → [pz]}/auth/page.tsx +0 -0
  363. /package/app-template/src/app/{[commerce]/[locale]/[currency] → [pz]}/basket/page.tsx +0 -0
  364. /package/app-template/src/app/{[commerce]/[locale]/[currency] → [pz]}/basket-b2b/page.tsx +0 -0
  365. /package/app-template/src/app/{[commerce]/[locale]/[currency] → [pz]}/category/[pk]/loading.tsx +0 -0
  366. /package/app-template/src/app/{[commerce]/[locale]/[currency] → [pz]}/client-root.tsx +0 -0
  367. /package/app-template/src/app/{[commerce]/[locale]/[currency] → [pz]}/contact-us/page.tsx +0 -0
  368. /package/app-template/src/app/{[commerce]/[locale]/[currency] → [pz]}/flat-page/[pk]/loading.tsx +0 -0
  369. /package/app-template/src/app/{[commerce]/[locale]/[currency] → [pz]}/group-product/[pk]/loading.tsx +0 -0
  370. /package/app-template/src/app/{[commerce]/[locale]/[currency] → [pz]}/landing-page/[pk]/loading.tsx +0 -0
  371. /package/app-template/src/app/{[commerce]/[locale]/[currency] → [pz]}/list/loading.tsx +0 -0
  372. /package/app-template/src/app/{[commerce]/[locale]/[currency] → [pz]}/orders/completed/[token]/layout.tsx +0 -0
  373. /package/app-template/src/app/{[commerce]/[locale]/[currency] → [pz]}/page.tsx +0 -0
  374. /package/app-template/src/app/{[commerce]/[locale]/[currency] → [pz]}/special-page/[pk]/loading.tsx +0 -0
  375. /package/app-template/src/app/{[commerce]/[locale]/[currency] → [pz]}/template.tsx +0 -0
  376. /package/app-template/src/app/{[commerce]/[locale]/[currency] → [pz]}/users/password/reset/page.tsx +0 -0
  377. /package/app-template/src/app/{[commerce]/[locale]/[currency] → [pz]}/xml-sitemap/route.ts +0 -0
@@ -1,79 +1,1663 @@
1
1
  # projectzeronext
2
2
 
3
- ## 2.0.0-beta.2
3
+ ## 2.0.0-beta.20
4
4
 
5
5
  ### Minor Changes
6
6
 
7
- - dd69cc6: ZERO-3079: Modularize pre-order middleware
7
+ - cf3a9901: ZERO-3585: Fix cookie handling for widget builder in ClientRoot component
8
+ - 9076e50e: ZERO-3136: Refactor DynamicWidgetContainer and WidgetContent for improved styling and component tagging
9
+ - d0e1ef78: ZERO-3232: Integrate widget styles generation directly in WidgetPlaceholder
10
+ - de2bce3f: ZERO-3874: Add search functionality with enhanced UI components and localization support
11
+ - 1d10dde2: ZERO-3553: Add alignment style for image components
12
+ - 74c6a237: ZERO-3060: Drag and drop functionality on the site implemented
13
+ - c3244a31: ZERO-4013: Update runtime version to node:25-alpine in project configuration
14
+
15
+ ### Patch Changes
16
+
17
+ - Updated dependencies [cf3a9901]
18
+ - Updated dependencies [9076e50e]
19
+ - Updated dependencies [d0e1ef78]
20
+ - Updated dependencies [1d10dde2]
21
+ - Updated dependencies [74c6a237]
22
+ - @akinon/next@2.0.0-beta.20
23
+ - @akinon/pz-virtual-try-on@2.0.0-beta.20
24
+ - @akinon/pz-akifast@2.0.0-beta.20
25
+ - @akinon/pz-apple-pay@2.0.0-beta.20
26
+ - @akinon/pz-b2b@2.0.0-beta.20
27
+ - @akinon/pz-basket-gift-pack@2.0.0-beta.20
28
+ - @akinon/pz-bkm@2.0.0-beta.20
29
+ - @akinon/pz-checkout-gift-pack@2.0.0-beta.20
30
+ - @akinon/pz-click-collect@2.0.0-beta.20
31
+ - @akinon/pz-credit-payment@2.0.0-beta.20
32
+ - @akinon/pz-cybersource-uc@2.0.0-beta.20
33
+ - @akinon/pz-flow-payment@2.0.0-beta.20
34
+ - @akinon/pz-google-pay@2.0.0-beta.20
35
+ - @akinon/pz-gpay@2.0.0-beta.20
36
+ - @akinon/pz-haso@2.0.0-beta.20
37
+ - @akinon/pz-hepsipay@2.0.0-beta.20
38
+ - @akinon/pz-masterpass@2.0.0-beta.20
39
+ - @akinon/pz-masterpass-rest@2.0.0-beta.20
40
+ - @akinon/pz-multi-basket@2.0.0-beta.20
41
+ - @akinon/pz-one-click-checkout@2.0.0-beta.20
42
+ - @akinon/pz-otp@2.0.0-beta.20
43
+ - @akinon/pz-pay-on-delivery@2.0.0-beta.20
44
+ - @akinon/pz-saved-card@2.0.0-beta.20
45
+ - @akinon/pz-similar-products@2.0.0-beta.20
46
+ - @akinon/pz-tabby-extension@2.0.0-beta.20
47
+ - @akinon/pz-tamara-extension@2.0.0-beta.20
48
+
49
+ ## 1.125.0
50
+
51
+ ### Patch Changes
52
+
53
+ - Updated dependencies [cd68a97a]
54
+ - @akinon/next@1.125.0
55
+ - @akinon/pz-virtual-try-on@1.125.0
56
+ - @akinon/pz-akifast@1.125.0
57
+ - @akinon/pz-apple-pay@1.125.0
58
+ - @akinon/pz-b2b@1.125.0
59
+ - @akinon/pz-basket-gift-pack@1.125.0
60
+ - @akinon/pz-bkm@1.125.0
61
+ - @akinon/pz-checkout-gift-pack@1.125.0
62
+ - @akinon/pz-click-collect@1.125.0
63
+ - @akinon/pz-credit-payment@1.125.0
64
+ - @akinon/pz-cybersource-uc@1.125.0
65
+ - @akinon/pz-flow-payment@1.125.0
66
+ - @akinon/pz-google-pay@1.125.0
67
+ - @akinon/pz-gpay@1.125.0
68
+ - @akinon/pz-haso@1.125.0
69
+ - @akinon/pz-hepsipay@1.125.0
70
+ - @akinon/pz-masterpass@1.125.0
71
+ - @akinon/pz-masterpass-rest@1.125.0
72
+ - @akinon/pz-multi-basket@1.125.0
73
+ - @akinon/pz-one-click-checkout@1.125.0
74
+ - @akinon/pz-otp@1.125.0
75
+ - @akinon/pz-pay-on-delivery@1.125.0
76
+ - @akinon/pz-saved-card@1.125.0
77
+ - @akinon/pz-similar-products@1.125.0
78
+ - @akinon/pz-tabby-extension@1.125.0
79
+ - @akinon/pz-tamara-extension@1.125.0
80
+
81
+ ## 1.124.0
82
+
83
+ ### Minor Changes
84
+
85
+ - 5721cfb4: ZERO-4165: Update the style of the close button
86
+ - 0ba92f79: ZERO-3278: revert tailwind config
87
+ - 54eac86b: ZERO-3271: add development logger system
88
+
89
+ ### Patch Changes
90
+
91
+ - Updated dependencies [929374c5]
92
+ - Updated dependencies [71f8011d]
93
+ - Updated dependencies [9be2c081]
94
+ - Updated dependencies [bd431e36]
95
+ - Updated dependencies [54eac86b]
96
+ - @akinon/next@1.124.0
97
+ - @akinon/pz-virtual-try-on@1.124.0
98
+ - @akinon/pz-akifast@1.124.0
99
+ - @akinon/pz-apple-pay@1.124.0
100
+ - @akinon/pz-b2b@1.124.0
101
+ - @akinon/pz-basket-gift-pack@1.124.0
102
+ - @akinon/pz-bkm@1.124.0
103
+ - @akinon/pz-checkout-gift-pack@1.124.0
104
+ - @akinon/pz-click-collect@1.124.0
105
+ - @akinon/pz-credit-payment@1.124.0
106
+ - @akinon/pz-cybersource-uc@1.124.0
107
+ - @akinon/pz-flow-payment@1.124.0
108
+ - @akinon/pz-google-pay@1.124.0
109
+ - @akinon/pz-gpay@1.124.0
110
+ - @akinon/pz-haso@1.124.0
111
+ - @akinon/pz-hepsipay@1.124.0
112
+ - @akinon/pz-masterpass@1.124.0
113
+ - @akinon/pz-masterpass-rest@1.124.0
114
+ - @akinon/pz-multi-basket@1.124.0
115
+ - @akinon/pz-one-click-checkout@1.124.0
116
+ - @akinon/pz-otp@1.124.0
117
+ - @akinon/pz-pay-on-delivery@1.124.0
118
+ - @akinon/pz-saved-card@1.124.0
119
+ - @akinon/pz-similar-products@1.124.0
120
+ - @akinon/pz-tabby-extension@1.124.0
121
+ - @akinon/pz-tamara-extension@1.124.0
122
+
123
+ ## 1.123.0
124
+
125
+ ### Minor Changes
126
+
127
+ - 2a8ddcf6: ZERO-4111: Add total balance field to store credit localization and update related components
128
+ - 36143125: ZERO-3987: Add barcode scanner functionality with modal and button
129
+ - f7e0f646: ZERO-4032: Add bfcache-headers middleware, integrate it into the default chain, and introduce a new environment variable for control.
130
+ - 5fb34b5c: ZERO-3955: Add aspect ratio validation and error handling for image cropping
131
+ - d76d3255: ZERO-4011: Refactor sitemap content generation to append locale suffix based on matched locale
132
+
133
+ ### Patch Changes
134
+
135
+ - Updated dependencies [4798959a]
136
+ - Updated dependencies [8218dafa]
137
+ - Updated dependencies [2a8ddcf6]
138
+ - Updated dependencies [8a7fd0f4]
139
+ - Updated dependencies [36143125]
140
+ - Updated dependencies [572f4f7b]
141
+ - Updated dependencies [f7e0f646]
142
+ - Updated dependencies [94a86fcc]
143
+ - Updated dependencies [bcaad120]
144
+ - Updated dependencies [5fb34b5c]
145
+ - Updated dependencies [88cb4f62]
146
+ - Updated dependencies [6b73b050]
147
+ - @akinon/pz-masterpass-rest@1.123.0
148
+ - @akinon/next@1.123.0
149
+ - @akinon/pz-virtual-try-on@1.123.0
150
+ - @akinon/pz-masterpass@1.123.0
151
+ - @akinon/pz-akifast@1.123.0
152
+ - @akinon/pz-apple-pay@1.123.0
153
+ - @akinon/pz-b2b@1.123.0
154
+ - @akinon/pz-basket-gift-pack@1.123.0
155
+ - @akinon/pz-bkm@1.123.0
156
+ - @akinon/pz-checkout-gift-pack@1.123.0
157
+ - @akinon/pz-click-collect@1.123.0
158
+ - @akinon/pz-credit-payment@1.123.0
159
+ - @akinon/pz-cybersource-uc@1.123.0
160
+ - @akinon/pz-flow-payment@1.123.0
161
+ - @akinon/pz-google-pay@1.123.0
162
+ - @akinon/pz-gpay@1.123.0
163
+ - @akinon/pz-haso@1.123.0
164
+ - @akinon/pz-hepsipay@1.123.0
165
+ - @akinon/pz-multi-basket@1.123.0
166
+ - @akinon/pz-one-click-checkout@1.123.0
167
+ - @akinon/pz-otp@1.123.0
168
+ - @akinon/pz-pay-on-delivery@1.123.0
169
+ - @akinon/pz-saved-card@1.123.0
170
+ - @akinon/pz-similar-products@1.123.0
171
+ - @akinon/pz-tabby-extension@1.123.0
172
+ - @akinon/pz-tamara-extension@1.123.0
173
+
174
+ ## 1.122.0
175
+
176
+ ### Minor Changes
177
+
178
+ - 4449f3a3: ZERO-3681: Add order details localization and improve order handling in AccountOrderDetail
179
+ - b87517ff: ZERO-3680: Enhance select component styling to ensure focus state is consistent
180
+
181
+ ### Patch Changes
182
+
183
+ - Updated dependencies [823d82f9]
184
+ - Updated dependencies [d2c0e759]
185
+ - Updated dependencies [d35e8ac1]
186
+ - Updated dependencies [68bbcb27]
187
+ - Updated dependencies [9b7d0de6]
188
+ - Updated dependencies [2e436c13]
189
+ - Updated dependencies [9cfbf6cd]
190
+ - Updated dependencies [187208d2]
191
+ - Updated dependencies [5ec0faf8]
192
+ - @akinon/next@1.122.0
193
+ - @akinon/pz-bkm@1.122.0
194
+ - @akinon/pz-gpay@1.122.0
195
+ - @akinon/pz-akifast@1.122.0
196
+ - @akinon/pz-virtual-try-on@1.122.0
197
+ - @akinon/pz-apple-pay@1.122.0
198
+ - @akinon/pz-b2b@1.122.0
199
+ - @akinon/pz-basket-gift-pack@1.122.0
200
+ - @akinon/pz-checkout-gift-pack@1.122.0
201
+ - @akinon/pz-click-collect@1.122.0
202
+ - @akinon/pz-credit-payment@1.122.0
203
+ - @akinon/pz-cybersource-uc@1.122.0
204
+ - @akinon/pz-flow-payment@1.122.0
205
+ - @akinon/pz-google-pay@1.122.0
206
+ - @akinon/pz-haso@1.122.0
207
+ - @akinon/pz-hepsipay@1.122.0
208
+ - @akinon/pz-masterpass@1.122.0
209
+ - @akinon/pz-masterpass-rest@1.122.0
210
+ - @akinon/pz-multi-basket@1.122.0
211
+ - @akinon/pz-one-click-checkout@1.122.0
212
+ - @akinon/pz-otp@1.122.0
213
+ - @akinon/pz-pay-on-delivery@1.122.0
214
+ - @akinon/pz-saved-card@1.122.0
215
+ - @akinon/pz-similar-products@1.122.0
216
+ - @akinon/pz-tabby-extension@1.122.0
217
+ - @akinon/pz-tamara-extension@1.122.0
218
+
219
+ ## 1.121.0
220
+
221
+ ### Minor Changes
222
+
223
+ - b59fdd1c: ZERO-4009: Add password reset token validation
224
+
225
+ ### Patch Changes
226
+
227
+ - Updated dependencies [49c82e1a]
228
+ - Updated dependencies [d7e5178b]
229
+ - Updated dependencies [b59fdd1c]
230
+ - @akinon/next@1.121.0
231
+ - @akinon/pz-virtual-try-on@1.121.0
232
+ - @akinon/pz-akifast@1.121.0
233
+ - @akinon/pz-apple-pay@1.121.0
234
+ - @akinon/pz-b2b@1.121.0
235
+ - @akinon/pz-basket-gift-pack@1.121.0
236
+ - @akinon/pz-bkm@1.121.0
237
+ - @akinon/pz-checkout-gift-pack@1.121.0
238
+ - @akinon/pz-click-collect@1.121.0
239
+ - @akinon/pz-credit-payment@1.121.0
240
+ - @akinon/pz-cybersource-uc@1.121.0
241
+ - @akinon/pz-flow-payment@1.121.0
242
+ - @akinon/pz-google-pay@1.121.0
243
+ - @akinon/pz-gpay@1.121.0
244
+ - @akinon/pz-haso@1.121.0
245
+ - @akinon/pz-hepsipay@1.121.0
246
+ - @akinon/pz-masterpass@1.121.0
247
+ - @akinon/pz-masterpass-rest@1.121.0
248
+ - @akinon/pz-multi-basket@1.121.0
249
+ - @akinon/pz-one-click-checkout@1.121.0
250
+ - @akinon/pz-otp@1.121.0
251
+ - @akinon/pz-pay-on-delivery@1.121.0
252
+ - @akinon/pz-saved-card@1.121.0
253
+ - @akinon/pz-similar-products@1.121.0
254
+ - @akinon/pz-tabby-extension@1.121.0
255
+ - @akinon/pz-tamara-extension@1.121.0
256
+
257
+ ## 1.120.0
258
+
259
+ ### Minor Changes
260
+
261
+ - 6ad72e8d: ZERO-4032: Add loading state management for payment submissions across multiple components and add safe guarding
262
+ - b12527ec: ZERO-4102: Add support for post-checkout redirect in middleware
263
+
264
+ ### Patch Changes
265
+
266
+ - Updated dependencies [6ad72e8d]
267
+ - Updated dependencies [b12527ec]
268
+ - Updated dependencies [aef81c5d]
269
+ - Updated dependencies [0754c835]
270
+ - Updated dependencies [a9f5cdb1]
271
+ - Updated dependencies [01ee41f1]
272
+ - Updated dependencies [c6c5c1cd]
273
+ - @akinon/pz-pay-on-delivery@1.120.0
274
+ - @akinon/pz-credit-payment@1.120.0
275
+ - @akinon/pz-google-pay@1.120.0
276
+ - @akinon/pz-masterpass@1.120.0
277
+ - @akinon/pz-saved-card@1.120.0
278
+ - @akinon/pz-apple-pay@1.120.0
279
+ - @akinon/pz-hepsipay@1.120.0
280
+ - @akinon/pz-gpay@1.120.0
281
+ - @akinon/pz-bkm@1.120.0
282
+ - @akinon/pz-otp@1.120.0
283
+ - @akinon/next@1.120.0
284
+ - @akinon/pz-virtual-try-on@1.120.0
285
+ - @akinon/pz-akifast@1.120.0
286
+ - @akinon/pz-b2b@1.120.0
287
+ - @akinon/pz-basket-gift-pack@1.120.0
288
+ - @akinon/pz-checkout-gift-pack@1.120.0
289
+ - @akinon/pz-click-collect@1.120.0
290
+ - @akinon/pz-cybersource-uc@1.120.0
291
+ - @akinon/pz-flow-payment@1.120.0
292
+ - @akinon/pz-haso@1.120.0
293
+ - @akinon/pz-masterpass-rest@1.120.0
294
+ - @akinon/pz-multi-basket@1.120.0
295
+ - @akinon/pz-one-click-checkout@1.120.0
296
+ - @akinon/pz-similar-products@1.120.0
297
+ - @akinon/pz-tabby-extension@1.120.0
298
+ - @akinon/pz-tamara-extension@1.120.0
299
+
300
+ ## 1.119.0
301
+
302
+ ### Minor Changes
303
+
304
+ - e989e5b5: ZERO-4084: Add support for Claude Code and add related skills and agents to the project
305
+
306
+ ### Patch Changes
307
+
308
+ - @akinon/next@1.119.0
309
+ - @akinon/pz-akifast@1.119.0
310
+ - @akinon/pz-apple-pay@1.119.0
311
+ - @akinon/pz-b2b@1.119.0
312
+ - @akinon/pz-basket-gift-pack@1.119.0
313
+ - @akinon/pz-bkm@1.119.0
314
+ - @akinon/pz-checkout-gift-pack@1.119.0
315
+ - @akinon/pz-click-collect@1.119.0
316
+ - @akinon/pz-credit-payment@1.119.0
317
+ - @akinon/pz-cybersource-uc@1.119.0
318
+ - @akinon/pz-flow-payment@1.119.0
319
+ - @akinon/pz-google-pay@1.119.0
320
+ - @akinon/pz-gpay@1.119.0
321
+ - @akinon/pz-haso@1.119.0
322
+ - @akinon/pz-hepsipay@1.119.0
323
+ - @akinon/pz-masterpass@1.119.0
324
+ - @akinon/pz-masterpass-rest@1.119.0
325
+ - @akinon/pz-multi-basket@1.119.0
326
+ - @akinon/pz-one-click-checkout@1.119.0
327
+ - @akinon/pz-otp@1.119.0
328
+ - @akinon/pz-pay-on-delivery@1.119.0
329
+ - @akinon/pz-saved-card@1.119.0
330
+ - @akinon/pz-similar-products@1.119.0
331
+ - @akinon/pz-tabby-extension@1.119.0
332
+ - @akinon/pz-tamara-extension@1.119.0
333
+ - @akinon/pz-virtual-try-on@1.119.0
334
+
335
+ ## 1.118.0
336
+
337
+ ### Patch Changes
338
+
339
+ - Updated dependencies [5514352a]
340
+ - Updated dependencies [86f2570b]
341
+ - Updated dependencies [90b1dd7a]
342
+ - Updated dependencies [5514352a]
343
+ - Updated dependencies [c706a270]
344
+ - Updated dependencies [0d33d9ac]
345
+ - Updated dependencies [644a2fa2]
346
+ - Updated dependencies [729fe756]
347
+ - Updated dependencies [ee191e6f]
348
+ - Updated dependencies [89b9d839]
349
+ - Updated dependencies [0c68cbfe]
350
+ - Updated dependencies [5978903a]
351
+ - Updated dependencies [9f346703]
352
+ - Updated dependencies [5ae86358]
353
+ - @akinon/pz-masterpass-rest@1.118.0
354
+ - @akinon/next@1.118.0
355
+ - @akinon/pz-virtual-try-on@1.118.0
356
+ - @akinon/pz-akifast@1.118.0
357
+ - @akinon/pz-apple-pay@1.118.0
358
+ - @akinon/pz-b2b@1.118.0
359
+ - @akinon/pz-basket-gift-pack@1.118.0
360
+ - @akinon/pz-bkm@1.118.0
361
+ - @akinon/pz-checkout-gift-pack@1.118.0
362
+ - @akinon/pz-click-collect@1.118.0
363
+ - @akinon/pz-credit-payment@1.118.0
364
+ - @akinon/pz-cybersource-uc@1.118.0
365
+ - @akinon/pz-flow-payment@1.118.0
366
+ - @akinon/pz-google-pay@1.118.0
367
+ - @akinon/pz-gpay@1.118.0
368
+ - @akinon/pz-haso@1.118.0
369
+ - @akinon/pz-hepsipay@1.118.0
370
+ - @akinon/pz-masterpass@1.118.0
371
+ - @akinon/pz-multi-basket@1.118.0
372
+ - @akinon/pz-one-click-checkout@1.118.0
373
+ - @akinon/pz-otp@1.118.0
374
+ - @akinon/pz-pay-on-delivery@1.118.0
375
+ - @akinon/pz-saved-card@1.118.0
376
+ - @akinon/pz-similar-products@1.118.0
377
+ - @akinon/pz-tabby-extension@1.118.0
378
+ - @akinon/pz-tamara-extension@1.118.0
379
+
380
+ ## 1.117.0
381
+
382
+ ### Minor Changes
383
+
384
+ - 4e935a7c: ZERO-3892: Update Procfile and build script for standalone server setup
385
+
386
+ ### Patch Changes
387
+
388
+ - @akinon/next@1.117.0
389
+ - @akinon/pz-akifast@1.117.0
390
+ - @akinon/pz-apple-pay@1.117.0
391
+ - @akinon/pz-b2b@1.117.0
392
+ - @akinon/pz-basket-gift-pack@1.117.0
393
+ - @akinon/pz-bkm@1.117.0
394
+ - @akinon/pz-checkout-gift-pack@1.117.0
395
+ - @akinon/pz-click-collect@1.117.0
396
+ - @akinon/pz-credit-payment@1.117.0
397
+ - @akinon/pz-cybersource-uc@1.117.0
398
+ - @akinon/pz-flow-payment@1.117.0
399
+ - @akinon/pz-google-pay@1.117.0
400
+ - @akinon/pz-gpay@1.117.0
401
+ - @akinon/pz-haso@1.117.0
402
+ - @akinon/pz-hepsipay@1.117.0
403
+ - @akinon/pz-masterpass@1.117.0
404
+ - @akinon/pz-masterpass-rest@1.117.0
405
+ - @akinon/pz-multi-basket@1.117.0
406
+ - @akinon/pz-one-click-checkout@1.117.0
407
+ - @akinon/pz-otp@1.117.0
408
+ - @akinon/pz-pay-on-delivery@1.117.0
409
+ - @akinon/pz-saved-card@1.117.0
410
+ - @akinon/pz-similar-products@1.117.0
411
+ - @akinon/pz-tabby-extension@1.117.0
412
+ - @akinon/pz-tamara-extension@1.117.0
413
+ - @akinon/pz-virtual-try-on@1.117.0
414
+
415
+ ## 1.116.0
416
+
417
+ ### Minor Changes
418
+
419
+ - 726491df: ZERO-3988: Add google pay integration
420
+
421
+ ### Patch Changes
422
+
423
+ - Updated dependencies [d7ec6b08]
424
+ - Updated dependencies [726491df]
425
+ - @akinon/next@1.116.0
426
+ - @akinon/pz-virtual-try-on@1.116.0
427
+ - @akinon/pz-akifast@1.116.0
428
+ - @akinon/pz-apple-pay@1.116.0
429
+ - @akinon/pz-b2b@1.116.0
430
+ - @akinon/pz-basket-gift-pack@1.116.0
431
+ - @akinon/pz-bkm@1.116.0
432
+ - @akinon/pz-checkout-gift-pack@1.116.0
433
+ - @akinon/pz-click-collect@1.116.0
434
+ - @akinon/pz-credit-payment@1.116.0
435
+ - @akinon/pz-cybersource-uc@1.116.0
436
+ - @akinon/pz-flow-payment@1.116.0
437
+ - @akinon/pz-gpay@1.116.0
438
+ - @akinon/pz-haso@1.116.0
439
+ - @akinon/pz-hepsipay@1.116.0
440
+ - @akinon/pz-masterpass@1.116.0
441
+ - @akinon/pz-masterpass-rest@1.116.0
442
+ - @akinon/pz-multi-basket@1.116.0
443
+ - @akinon/pz-one-click-checkout@1.116.0
444
+ - @akinon/pz-otp@1.116.0
445
+ - @akinon/pz-pay-on-delivery@1.116.0
446
+ - @akinon/pz-saved-card@1.116.0
447
+ - @akinon/pz-similar-products@1.116.0
448
+ - @akinon/pz-tabby-extension@1.116.0
449
+ - @akinon/pz-tamara-extension@1.116.0
450
+
451
+ ## 1.115.0
452
+
453
+ ### Minor Changes
454
+
455
+ - b59bed4d: ZERO-3878: Reintegrated similar products and removed localStorage checks and implemented props based showing of buttons
456
+
457
+ ### Patch Changes
458
+
459
+ - Updated dependencies [b59bed4d]
460
+ - Updated dependencies [b5f9d75c]
461
+ - Updated dependencies [cbcfdf4d]
462
+ - Updated dependencies [1880978c]
463
+ - Updated dependencies [71882722]
464
+ - Updated dependencies [7056203a]
465
+ - @akinon/next@1.115.0
466
+ - @akinon/pz-virtual-try-on@1.115.0
467
+ - @akinon/pz-akifast@1.115.0
468
+ - @akinon/pz-apple-pay@1.115.0
469
+ - @akinon/pz-b2b@1.115.0
470
+ - @akinon/pz-basket-gift-pack@1.115.0
471
+ - @akinon/pz-bkm@1.115.0
472
+ - @akinon/pz-checkout-gift-pack@1.115.0
473
+ - @akinon/pz-click-collect@1.115.0
474
+ - @akinon/pz-credit-payment@1.115.0
475
+ - @akinon/pz-cybersource-uc@1.115.0
476
+ - @akinon/pz-flow-payment@1.115.0
477
+ - @akinon/pz-gpay@1.115.0
478
+ - @akinon/pz-hepsipay@1.115.0
479
+ - @akinon/pz-masterpass@1.115.0
480
+ - @akinon/pz-masterpass-rest@1.115.0
481
+ - @akinon/pz-multi-basket@1.115.0
482
+ - @akinon/pz-one-click-checkout@1.115.0
483
+ - @akinon/pz-otp@1.115.0
484
+ - @akinon/pz-pay-on-delivery@1.115.0
485
+ - @akinon/pz-saved-card@1.115.0
486
+ - @akinon/pz-tabby-extension@1.115.0
487
+ - @akinon/pz-tamara-extension@1.115.0
488
+
489
+ ## 1.114.0
490
+
491
+ ### Patch Changes
492
+
493
+ - Updated dependencies [65d3b862]
494
+ - Updated dependencies [43c182ee]
495
+ - Updated dependencies [eeb20bea]
496
+ - Updated dependencies [fdd255ee]
497
+ - @akinon/next@1.114.0
498
+ - @akinon/pz-virtual-try-on@1.114.0
499
+ - @akinon/pz-akifast@1.114.0
500
+ - @akinon/pz-apple-pay@1.114.0
501
+ - @akinon/pz-b2b@1.114.0
502
+ - @akinon/pz-basket-gift-pack@1.114.0
503
+ - @akinon/pz-bkm@1.114.0
504
+ - @akinon/pz-checkout-gift-pack@1.114.0
505
+ - @akinon/pz-click-collect@1.114.0
506
+ - @akinon/pz-credit-payment@1.114.0
507
+ - @akinon/pz-cybersource-uc@1.114.0
508
+ - @akinon/pz-flow-payment@1.114.0
509
+ - @akinon/pz-gpay@1.114.0
510
+ - @akinon/pz-hepsipay@1.114.0
511
+ - @akinon/pz-masterpass@1.114.0
512
+ - @akinon/pz-masterpass-rest@1.114.0
513
+ - @akinon/pz-multi-basket@1.114.0
514
+ - @akinon/pz-one-click-checkout@1.114.0
515
+ - @akinon/pz-otp@1.114.0
516
+ - @akinon/pz-pay-on-delivery@1.114.0
517
+ - @akinon/pz-saved-card@1.114.0
518
+ - @akinon/pz-tabby-extension@1.114.0
519
+ - @akinon/pz-tamara-extension@1.114.0
520
+
521
+ ## 1.113.0
522
+
523
+ ### Patch Changes
524
+
525
+ - Updated dependencies [cacc627]
526
+ - Updated dependencies [10dcaae]
527
+ - Updated dependencies [78f1026]
528
+ - Updated dependencies [2862d29]
529
+ - Updated dependencies [3a25ab0]
530
+ - Updated dependencies [36c7a51]
531
+ - Updated dependencies [4412917]
532
+ - Updated dependencies [4fa9202]
533
+ - Updated dependencies [08f1f39]
534
+ - @akinon/pz-masterpass-rest@1.113.0
535
+ - @akinon/next@1.113.0
536
+ - @akinon/pz-akifast@1.113.0
537
+ - @akinon/pz-apple-pay@1.113.0
538
+ - @akinon/pz-b2b@1.113.0
539
+ - @akinon/pz-basket-gift-pack@1.113.0
540
+ - @akinon/pz-bkm@1.113.0
541
+ - @akinon/pz-checkout-gift-pack@1.113.0
542
+ - @akinon/pz-click-collect@1.113.0
543
+ - @akinon/pz-credit-payment@1.113.0
544
+ - @akinon/pz-cybersource-uc@1.113.0
545
+ - @akinon/pz-flow-payment@1.113.0
546
+ - @akinon/pz-gpay@1.113.0
547
+ - @akinon/pz-hepsipay@1.113.0
548
+ - @akinon/pz-masterpass@1.113.0
549
+ - @akinon/pz-multi-basket@1.113.0
550
+ - @akinon/pz-one-click-checkout@1.113.0
551
+ - @akinon/pz-otp@1.113.0
552
+ - @akinon/pz-pay-on-delivery@1.113.0
553
+ - @akinon/pz-saved-card@1.113.0
554
+ - @akinon/pz-tabby-extension@1.113.0
555
+ - @akinon/pz-tamara-extension@1.113.0
556
+ - @akinon/pz-virtual-try-on@1.113.0
557
+
558
+ ## 1.112.0
559
+
560
+ ### Minor Changes
561
+
562
+ - 888fdec: ZERO-3792: Virtual Try On new features are implemented and also basket support implemented.
563
+
564
+ ### Patch Changes
565
+
566
+ - Updated dependencies [888fdec]
567
+ - @akinon/pz-virtual-try-on@1.112.0
568
+ - @akinon/next@1.112.0
569
+ - @akinon/pz-akifast@1.112.0
570
+ - @akinon/pz-apple-pay@1.112.0
571
+ - @akinon/pz-b2b@1.112.0
572
+ - @akinon/pz-basket-gift-pack@1.112.0
573
+ - @akinon/pz-bkm@1.112.0
574
+ - @akinon/pz-checkout-gift-pack@1.112.0
575
+ - @akinon/pz-click-collect@1.112.0
576
+ - @akinon/pz-credit-payment@1.112.0
577
+ - @akinon/pz-cybersource-uc@1.112.0
578
+ - @akinon/pz-flow-payment@1.112.0
579
+ - @akinon/pz-gpay@1.112.0
580
+ - @akinon/pz-hepsipay@1.112.0
581
+ - @akinon/pz-masterpass@1.112.0
582
+ - @akinon/pz-masterpass-rest@1.112.0
583
+ - @akinon/pz-multi-basket@1.112.0
584
+ - @akinon/pz-one-click-checkout@1.112.0
585
+ - @akinon/pz-otp@1.112.0
586
+ - @akinon/pz-pay-on-delivery@1.112.0
587
+ - @akinon/pz-saved-card@1.112.0
588
+ - @akinon/pz-tabby-extension@1.112.0
589
+ - @akinon/pz-tamara-extension@1.112.0
590
+
591
+ ## 1.111.0
592
+
593
+ ### Minor Changes
594
+
595
+ - c026300: ZERO-3833: fix masterpass rest conflicts
596
+ - b47b9d8: ZERO-3414: create masterpass-rest package
597
+
598
+ ### Patch Changes
599
+
600
+ - Updated dependencies [c026300]
601
+ - Updated dependencies [02a1caf]
602
+ - Updated dependencies [b47b9d8]
603
+ - @akinon/pz-masterpass-rest@1.111.0
604
+ - @akinon/next@1.111.0
605
+ - @akinon/pz-virtual-try-on@1.111.0
606
+ - @akinon/pz-akifast@1.111.0
607
+ - @akinon/pz-apple-pay@1.111.0
608
+ - @akinon/pz-b2b@1.111.0
609
+ - @akinon/pz-basket-gift-pack@1.111.0
610
+ - @akinon/pz-bkm@1.111.0
611
+ - @akinon/pz-checkout-gift-pack@1.111.0
612
+ - @akinon/pz-click-collect@1.111.0
613
+ - @akinon/pz-credit-payment@1.111.0
614
+ - @akinon/pz-cybersource-uc@1.111.0
615
+ - @akinon/pz-flow-payment@1.111.0
616
+ - @akinon/pz-gpay@1.111.0
617
+ - @akinon/pz-hepsipay@1.111.0
618
+ - @akinon/pz-masterpass@1.111.0
619
+ - @akinon/pz-multi-basket@1.111.0
620
+ - @akinon/pz-one-click-checkout@1.111.0
621
+ - @akinon/pz-otp@1.111.0
622
+ - @akinon/pz-pay-on-delivery@1.111.0
623
+ - @akinon/pz-saved-card@1.111.0
624
+ - @akinon/pz-tabby-extension@1.111.0
625
+ - @akinon/pz-tamara-extension@1.111.0
626
+
627
+ ## 1.110.0
628
+
629
+ ### Patch Changes
630
+
631
+ - Updated dependencies [fc752c9]
632
+ - Updated dependencies [757af4a]
633
+ - @akinon/next@1.110.0
634
+ - @akinon/pz-virtual-try-on@1.110.0
635
+ - @akinon/pz-akifast@1.110.0
636
+ - @akinon/pz-apple-pay@1.110.0
637
+ - @akinon/pz-b2b@1.110.0
638
+ - @akinon/pz-basket-gift-pack@1.110.0
639
+ - @akinon/pz-bkm@1.110.0
640
+ - @akinon/pz-checkout-gift-pack@1.110.0
641
+ - @akinon/pz-click-collect@1.110.0
642
+ - @akinon/pz-credit-payment@1.110.0
643
+ - @akinon/pz-cybersource-uc@1.110.0
644
+ - @akinon/pz-flow-payment@1.110.0
645
+ - @akinon/pz-gpay@1.110.0
646
+ - @akinon/pz-hepsipay@1.110.0
647
+ - @akinon/pz-masterpass@1.110.0
648
+ - @akinon/pz-multi-basket@1.110.0
649
+ - @akinon/pz-one-click-checkout@1.110.0
650
+ - @akinon/pz-otp@1.110.0
651
+ - @akinon/pz-pay-on-delivery@1.110.0
652
+ - @akinon/pz-saved-card@1.110.0
653
+ - @akinon/pz-tabby-extension@1.110.0
654
+ - @akinon/pz-tamara-extension@1.110.0
655
+
656
+ ## 1.109.0
657
+
658
+ ### Minor Changes
659
+
660
+ - fcbbea79: ZERO-3648: Add virtual try-on feature with localization support
661
+
662
+ ### Patch Changes
663
+
664
+ - Updated dependencies [fcbbea79]
665
+ - @akinon/next@1.109.0
666
+ - @akinon/pz-akifast@1.109.0
667
+ - @akinon/pz-apple-pay@1.109.0
668
+ - @akinon/pz-b2b@1.109.0
669
+ - @akinon/pz-basket-gift-pack@1.109.0
670
+ - @akinon/pz-bkm@1.109.0
671
+ - @akinon/pz-checkout-gift-pack@1.109.0
672
+ - @akinon/pz-click-collect@1.109.0
673
+ - @akinon/pz-credit-payment@1.109.0
674
+ - @akinon/pz-cybersource-uc@1.109.0
675
+ - @akinon/pz-flow-payment@1.109.0
676
+ - @akinon/pz-gpay@1.109.0
677
+ - @akinon/pz-hepsipay@1.109.0
678
+ - @akinon/pz-masterpass@1.109.0
679
+ - @akinon/pz-multi-basket@1.109.0
680
+ - @akinon/pz-one-click-checkout@1.109.0
681
+ - @akinon/pz-otp@1.109.0
682
+ - @akinon/pz-pay-on-delivery@1.109.0
683
+ - @akinon/pz-saved-card@1.109.0
684
+ - @akinon/pz-tabby-extension@1.109.0
685
+ - @akinon/pz-tamara-extension@1.109.0
686
+
687
+ ## 1.108.0
688
+
689
+ ### Minor Changes
690
+
691
+ - d8883ce6: ZERO-3640: Refactor wallet completion handling to accept additional parameters; update related API calls
692
+
693
+ ### Patch Changes
694
+
695
+ - Updated dependencies [d8883ce6]
696
+ - Updated dependencies [59ed7a7e]
697
+ - Updated dependencies [31a2d35a]
698
+ - @akinon/next@1.108.0
699
+ - @akinon/pz-hepsipay@1.108.0
700
+ - @akinon/pz-akifast@1.108.0
701
+ - @akinon/pz-b2b@1.108.0
702
+ - @akinon/pz-basket-gift-pack@1.108.0
703
+ - @akinon/pz-bkm@1.108.0
704
+ - @akinon/pz-checkout-gift-pack@1.108.0
705
+ - @akinon/pz-click-collect@1.108.0
706
+ - @akinon/pz-credit-payment@1.108.0
707
+ - @akinon/pz-cybersource-uc@1.108.0
708
+ - @akinon/pz-gpay@1.108.0
709
+ - @akinon/pz-masterpass@1.108.0
710
+ - @akinon/pz-one-click-checkout@1.108.0
711
+ - @akinon/pz-otp@1.108.0
712
+ - @akinon/pz-pay-on-delivery@1.108.0
713
+ - @akinon/pz-saved-card@1.108.0
714
+ - @akinon/pz-tabby-extension@1.108.0
715
+ - @akinon/pz-tamara-extension@1.108.0
716
+
717
+ ## 1.107.0
718
+
719
+ ### Minor Changes
720
+
721
+ - 1606f335: ZERO-3527: Refactor ProductInfo component to streamline state management and improve variant handling.
722
+
723
+ ### Patch Changes
724
+
725
+ - Updated dependencies [4ca44c78]
726
+ - Updated dependencies [28c7ea79]
727
+ - Updated dependencies [72bfcbf2]
728
+ - Updated dependencies [b6e5b624]
729
+ - Updated dependencies [6bfbdc27]
730
+ - Updated dependencies [5b500797]
731
+ - Updated dependencies [9442cf01]
732
+ - @akinon/pz-saved-card@1.107.0
733
+ - @akinon/next@1.107.0
734
+ - @akinon/pz-basket-gift-pack@1.107.0
735
+ - @akinon/pz-akifast@1.107.0
736
+ - @akinon/pz-b2b@1.107.0
737
+ - @akinon/pz-bkm@1.107.0
738
+ - @akinon/pz-checkout-gift-pack@1.107.0
739
+ - @akinon/pz-click-collect@1.107.0
740
+ - @akinon/pz-credit-payment@1.107.0
741
+ - @akinon/pz-gpay@1.107.0
742
+ - @akinon/pz-hepsipay@1.107.0
743
+ - @akinon/pz-masterpass@1.107.0
744
+ - @akinon/pz-one-click-checkout@1.107.0
745
+ - @akinon/pz-otp@1.107.0
746
+ - @akinon/pz-pay-on-delivery@1.107.0
747
+ - @akinon/pz-tabby-extension@1.107.0
748
+ - @akinon/pz-tamara-extension@1.107.0
749
+
750
+ ## 1.106.0
751
+
752
+ ### Minor Changes
753
+
754
+ - e9e902b: ZERO-3650: Add Loyalty
755
+ - 9dc7298: ZERO-3416: Refactor Accordion component to enhance props and improve styling flexibility
756
+ - 2d3f178: ZERO-3417: Enhance FileInput component with additional props for customization
757
+
758
+ ### Patch Changes
759
+
760
+ - Updated dependencies [155cd23]
761
+ - Updated dependencies [ae010f0]
762
+ - Updated dependencies [9dc7298]
763
+ - Updated dependencies [2d3f178]
764
+ - Updated dependencies [8bc82f0]
765
+ - @akinon/pz-tamara-extension@1.106.0
766
+ - @akinon/pz-otp@1.106.0
767
+ - @akinon/next@1.106.0
768
+ - @akinon/pz-checkout-gift-pack@1.106.0
769
+ - @akinon/pz-akifast@1.106.0
770
+ - @akinon/pz-b2b@1.106.0
771
+ - @akinon/pz-basket-gift-pack@1.106.0
772
+ - @akinon/pz-bkm@1.106.0
773
+ - @akinon/pz-click-collect@1.106.0
774
+ - @akinon/pz-credit-payment@1.106.0
775
+ - @akinon/pz-gpay@1.106.0
776
+ - @akinon/pz-hepsipay@1.106.0
777
+ - @akinon/pz-masterpass@1.106.0
778
+ - @akinon/pz-one-click-checkout@1.106.0
779
+ - @akinon/pz-pay-on-delivery@1.106.0
780
+ - @akinon/pz-saved-card@1.106.0
781
+ - @akinon/pz-tabby-extension@1.106.0
782
+
783
+ ## 1.105.0
784
+
785
+ ### Minor Changes
786
+
787
+ - c39c700: ZERO-3420: Refactor Modal component
788
+ - 3b255fe: ZERO-3629 :edit warnings in build
789
+
790
+ ### Patch Changes
791
+
792
+ - Updated dependencies [c39c700]
793
+ - Updated dependencies [d512ea2]
794
+ - Updated dependencies [3b255fe]
795
+ - @akinon/next@1.105.0
796
+ - @akinon/pz-akifast@1.105.0
797
+ - @akinon/pz-b2b@1.105.0
798
+ - @akinon/pz-basket-gift-pack@1.105.0
799
+ - @akinon/pz-bkm@1.105.0
800
+ - @akinon/pz-checkout-gift-pack@1.105.0
801
+ - @akinon/pz-click-collect@1.105.0
802
+ - @akinon/pz-credit-payment@1.105.0
803
+ - @akinon/pz-gpay@1.105.0
804
+ - @akinon/pz-masterpass@1.105.0
805
+ - @akinon/pz-one-click-checkout@1.105.0
806
+ - @akinon/pz-otp@1.105.0
807
+ - @akinon/pz-pay-on-delivery@1.105.0
808
+ - @akinon/pz-saved-card@1.105.0
809
+ - @akinon/pz-tabby-extension@1.105.0
810
+ - @akinon/pz-tamara-extension@1.105.0
811
+
812
+ ## 1.104.0
813
+
814
+ ### Minor Changes
815
+
816
+ - 63774a6: ZERO-3351: Add commerce redirection ignore list functionality and related utility
817
+ - 5ad87ff: ZERO-3646: Refactor form submission API to handle form data and improve error responses
818
+ - 267ca40: ZERO-3644: Add routing instruction file
819
+
820
+ ### Patch Changes
821
+
822
+ - Updated dependencies [63774a6]
823
+ - Updated dependencies [2ba89b3]
824
+ - Updated dependencies [a2fbee6]
825
+ - Updated dependencies [0de5573]
826
+ - Updated dependencies [5ad87ff]
827
+ - @akinon/next@1.104.0
828
+ - @akinon/pz-basket-gift-pack@1.104.0
829
+ - @akinon/pz-akifast@1.104.0
830
+ - @akinon/pz-b2b@1.104.0
831
+ - @akinon/pz-bkm@1.104.0
832
+ - @akinon/pz-checkout-gift-pack@1.104.0
833
+ - @akinon/pz-click-collect@1.104.0
834
+ - @akinon/pz-credit-payment@1.104.0
835
+ - @akinon/pz-gpay@1.104.0
836
+ - @akinon/pz-masterpass@1.104.0
837
+ - @akinon/pz-one-click-checkout@1.104.0
838
+ - @akinon/pz-otp@1.104.0
839
+ - @akinon/pz-pay-on-delivery@1.104.0
840
+ - @akinon/pz-saved-card@1.104.0
841
+ - @akinon/pz-tabby-extension@1.104.0
842
+ - @akinon/pz-tamara-extension@1.104.0
843
+
844
+ ## 1.103.0
845
+
846
+ ### Minor Changes
847
+
848
+ - 9ff2ea2: ZERO-3338: Add documentation for Sentry usage
849
+ - d600c05: ZERO-3389: Add data-testid attributes for testing in CurrencySelect and ActionMenu components
850
+
851
+ ### Patch Changes
852
+
853
+ - Updated dependencies [d0853b3]
854
+ - Updated dependencies [ad0bec9]
855
+ - Updated dependencies [310556e]
856
+ - Updated dependencies [b31333e]
857
+ - Updated dependencies [b16a370]
858
+ - @akinon/pz-pay-on-delivery@1.103.0
859
+ - @akinon/pz-masterpass@1.103.0
860
+ - @akinon/pz-credit-payment@1.103.0
861
+ - @akinon/pz-click-collect@1.103.0
862
+ - @akinon/next@1.103.0
863
+ - @akinon/pz-akifast@1.103.0
864
+ - @akinon/pz-b2b@1.103.0
865
+ - @akinon/pz-basket-gift-pack@1.103.0
866
+ - @akinon/pz-bkm@1.103.0
867
+ - @akinon/pz-checkout-gift-pack@1.103.0
868
+ - @akinon/pz-gpay@1.103.0
869
+ - @akinon/pz-one-click-checkout@1.103.0
870
+ - @akinon/pz-otp@1.103.0
871
+ - @akinon/pz-saved-card@1.103.0
872
+ - @akinon/pz-tabby-extension@1.103.0
873
+ - @akinon/pz-tamara-extension@1.103.0
874
+
875
+ ## 1.102.0
876
+
877
+ ### Minor Changes
878
+
879
+ - 6b949cb: ZERO-3615: Refactor product data handling and improve 404 error handling
880
+ - 7302f5e: ZERO-3615: Add error handling for 404 status in page components and create NotFound component
881
+
882
+ ### Patch Changes
883
+
884
+ - Updated dependencies [6b949cb]
885
+ - Updated dependencies [9a3885b]
886
+ - @akinon/next@1.102.0
887
+ - @akinon/pz-akifast@1.102.0
888
+ - @akinon/pz-b2b@1.102.0
889
+ - @akinon/pz-basket-gift-pack@1.102.0
890
+ - @akinon/pz-bkm@1.102.0
891
+ - @akinon/pz-checkout-gift-pack@1.102.0
892
+ - @akinon/pz-click-collect@1.102.0
893
+ - @akinon/pz-credit-payment@1.102.0
894
+ - @akinon/pz-gpay@1.102.0
895
+ - @akinon/pz-masterpass@1.102.0
896
+ - @akinon/pz-one-click-checkout@1.102.0
897
+ - @akinon/pz-otp@1.102.0
898
+ - @akinon/pz-pay-on-delivery@1.102.0
899
+ - @akinon/pz-saved-card@1.102.0
900
+ - @akinon/pz-tabby-extension@1.102.0
901
+ - @akinon/pz-tamara-extension@1.102.0
902
+
903
+ ## 1.101.0
904
+
905
+ ### Patch Changes
906
+
907
+ - Updated dependencies [4e863f7]
908
+ - @akinon/next@1.101.0
909
+ - @akinon/pz-akifast@1.101.0
910
+ - @akinon/pz-b2b@1.101.0
911
+ - @akinon/pz-basket-gift-pack@1.101.0
912
+ - @akinon/pz-bkm@1.101.0
913
+ - @akinon/pz-checkout-gift-pack@1.101.0
914
+ - @akinon/pz-click-collect@1.101.0
915
+ - @akinon/pz-credit-payment@1.101.0
916
+ - @akinon/pz-gpay@1.101.0
917
+ - @akinon/pz-masterpass@1.101.0
918
+ - @akinon/pz-one-click-checkout@1.101.0
919
+ - @akinon/pz-otp@1.101.0
920
+ - @akinon/pz-pay-on-delivery@1.101.0
921
+ - @akinon/pz-saved-card@1.101.0
922
+ - @akinon/pz-tabby-extension@1.101.0
923
+ - @akinon/pz-tamara-extension@1.101.0
924
+
925
+ ## 1.100.0
926
+
927
+ ### Minor Changes
928
+
929
+ - c51de38: ZERO-3637: Add action creators and RTK Query API endpoints to Redux store
930
+
931
+ ### Patch Changes
932
+
933
+ - Updated dependencies [e57cd93]
934
+ - Updated dependencies [5f7edd6]
935
+ - Updated dependencies [b00a90b]
936
+ - Updated dependencies [26b2d0b]
937
+ - Updated dependencies [c51de38]
938
+ - Updated dependencies [d1bb93a]
939
+ - @akinon/pz-masterpass@1.100.0
940
+ - @akinon/next@1.100.0
941
+ - @akinon/pz-akifast@1.100.0
942
+ - @akinon/pz-b2b@1.100.0
943
+ - @akinon/pz-basket-gift-pack@1.100.0
944
+ - @akinon/pz-bkm@1.100.0
945
+ - @akinon/pz-checkout-gift-pack@1.100.0
946
+ - @akinon/pz-click-collect@1.100.0
947
+ - @akinon/pz-credit-payment@1.100.0
948
+ - @akinon/pz-gpay@1.100.0
949
+ - @akinon/pz-one-click-checkout@1.100.0
950
+ - @akinon/pz-otp@1.100.0
951
+ - @akinon/pz-pay-on-delivery@1.100.0
952
+ - @akinon/pz-saved-card@1.100.0
953
+ - @akinon/pz-tabby-extension@1.100.0
954
+ - @akinon/pz-tamara-extension@1.100.0
955
+
956
+ ## 1.99.0
957
+
958
+ ### Minor Changes
959
+
960
+ - 3d3fe05: ZERO-3639: Add edge cases instruction file
961
+ - fdd9974: ZERO-3636: Add account instruction file
962
+ - d58538b: ZERO-3638: Enhance RC pipeline: add fetch, merge, and pre-release setup with conditional commit
963
+
964
+ ### Patch Changes
965
+
966
+ - Updated dependencies [cf90355]
967
+ - Updated dependencies [d58538b]
968
+ - Updated dependencies [95a4cd1]
969
+ - @akinon/next@1.99.0
970
+ - @akinon/pz-akifast@1.99.0
971
+ - @akinon/pz-b2b@1.99.0
972
+ - @akinon/pz-basket-gift-pack@1.99.0
973
+ - @akinon/pz-bkm@1.99.0
974
+ - @akinon/pz-checkout-gift-pack@1.99.0
975
+ - @akinon/pz-click-collect@1.99.0
976
+ - @akinon/pz-credit-payment@1.99.0
977
+ - @akinon/pz-gpay@1.99.0
978
+ - @akinon/pz-masterpass@1.99.0
979
+ - @akinon/pz-one-click-checkout@1.99.0
980
+ - @akinon/pz-otp@1.99.0
981
+ - @akinon/pz-pay-on-delivery@1.99.0
982
+ - @akinon/pz-saved-card@1.99.0
983
+ - @akinon/pz-tabby-extension@1.99.0
984
+ - @akinon/pz-tamara-extension@1.99.0
985
+
986
+ ## 1.98.0
987
+
988
+ ### Minor Changes
989
+
990
+ - 4471262: ZERO-3624: Add CLAUDE.md and GEMINI.md for project documentation; introduce specialized AI agents.
8
991
 
9
992
  ### Patch Changes
10
993
 
11
- - Updated dependencies [dd69cc6]
12
- - @akinon/next@2.0.0-beta.2
13
- - @akinon/pz-akifast@2.0.0-beta.2
14
- - @akinon/pz-b2b@2.0.0-beta.2
15
- - @akinon/pz-basket-gift-pack@2.0.0-beta.2
16
- - @akinon/pz-bkm@2.0.0-beta.2
17
- - @akinon/pz-checkout-gift-pack@2.0.0-beta.2
18
- - @akinon/pz-click-collect@2.0.0-beta.2
19
- - @akinon/pz-credit-payment@2.0.0-beta.2
20
- - @akinon/pz-gpay@2.0.0-beta.2
21
- - @akinon/pz-masterpass@2.0.0-beta.2
22
- - @akinon/pz-one-click-checkout@2.0.0-beta.2
23
- - @akinon/pz-otp@2.0.0-beta.2
24
- - @akinon/pz-pay-on-delivery@2.0.0-beta.2
25
- - @akinon/pz-saved-card@2.0.0-beta.2
26
- - @akinon/pz-tabby-extension@2.0.0-beta.2
994
+ - Updated dependencies [67308f0]
995
+ - @akinon/next@1.98.0
996
+ - @akinon/pz-akifast@1.98.0
997
+ - @akinon/pz-b2b@1.98.0
998
+ - @akinon/pz-basket-gift-pack@1.98.0
999
+ - @akinon/pz-bkm@1.98.0
1000
+ - @akinon/pz-checkout-gift-pack@1.98.0
1001
+ - @akinon/pz-click-collect@1.98.0
1002
+ - @akinon/pz-credit-payment@1.98.0
1003
+ - @akinon/pz-gpay@1.98.0
1004
+ - @akinon/pz-masterpass@1.98.0
1005
+ - @akinon/pz-one-click-checkout@1.98.0
1006
+ - @akinon/pz-otp@1.98.0
1007
+ - @akinon/pz-pay-on-delivery@1.98.0
1008
+ - @akinon/pz-saved-card@1.98.0
1009
+ - @akinon/pz-tabby-extension@1.98.0
1010
+ - @akinon/pz-tamara-extension@1.98.0
27
1011
 
28
- ## 2.0.0-beta.1
1012
+ ## 1.97.0
29
1013
 
30
1014
  ### Minor Changes
31
1015
 
32
- - ZERO-3091: Upgrade Next.js to v15 and React to v19
1016
+ - 0014305: ZERO-3629 :edit warnings in build
33
1017
 
34
1018
  ### Patch Changes
35
1019
 
36
- - Updated dependencies
37
- - @akinon/pz-checkout-gift-pack@2.0.0-beta.1
38
- - @akinon/pz-one-click-checkout@2.0.0-beta.1
39
- - @akinon/pz-basket-gift-pack@2.0.0-beta.1
40
- - @akinon/pz-pay-on-delivery@2.0.0-beta.1
41
- - @akinon/pz-tabby-extension@2.0.0-beta.1
42
- - @akinon/pz-credit-payment@2.0.0-beta.1
43
- - @akinon/pz-click-collect@2.0.0-beta.1
44
- - @akinon/pz-masterpass@2.0.0-beta.1
45
- - @akinon/pz-saved-card@2.0.0-beta.1
46
- - @akinon/next@2.0.0-beta.1
47
- - @akinon/pz-akifast@2.0.0-beta.1
48
- - @akinon/pz-gpay@2.0.0-beta.1
49
- - @akinon/pz-b2b@2.0.0-beta.1
50
- - @akinon/pz-bkm@2.0.0-beta.1
51
- - @akinon/pz-otp@2.0.0-beta.1
52
-
53
- ## 2.0.0-beta.0
54
-
55
- ### Major Changes
56
-
57
- - be6c09d: ZERO-3114: Create beta version.
58
-
59
- ### Patch Changes
60
-
61
- - Updated dependencies [be6c09d]
62
- - @akinon/next@2.0.0-beta.0
63
- - @akinon/pz-akifast@2.0.0-beta.0
64
- - @akinon/pz-b2b@2.0.0-beta.0
65
- - @akinon/pz-basket-gift-pack@2.0.0-beta.0
66
- - @akinon/pz-bkm@2.0.0-beta.0
67
- - @akinon/pz-checkout-gift-pack@2.0.0-beta.0
68
- - @akinon/pz-click-collect@2.0.0-beta.0
69
- - @akinon/pz-credit-payment@2.0.0-beta.0
70
- - @akinon/pz-gpay@2.0.0-beta.0
71
- - @akinon/pz-masterpass@2.0.0-beta.0
72
- - @akinon/pz-one-click-checkout@2.0.0-beta.0
73
- - @akinon/pz-otp@2.0.0-beta.0
74
- - @akinon/pz-pay-on-delivery@2.0.0-beta.0
75
- - @akinon/pz-saved-card@2.0.0-beta.0
76
- - @akinon/pz-tabby-extension@2.0.0-beta.0
1020
+ - Updated dependencies [0014305]
1021
+ - @akinon/next@1.97.0
1022
+ - @akinon/pz-akifast@1.97.0
1023
+ - @akinon/pz-b2b@1.97.0
1024
+ - @akinon/pz-basket-gift-pack@1.97.0
1025
+ - @akinon/pz-bkm@1.97.0
1026
+ - @akinon/pz-checkout-gift-pack@1.97.0
1027
+ - @akinon/pz-click-collect@1.97.0
1028
+ - @akinon/pz-credit-payment@1.97.0
1029
+ - @akinon/pz-gpay@1.97.0
1030
+ - @akinon/pz-masterpass@1.97.0
1031
+ - @akinon/pz-one-click-checkout@1.97.0
1032
+ - @akinon/pz-otp@1.97.0
1033
+ - @akinon/pz-pay-on-delivery@1.97.0
1034
+ - @akinon/pz-saved-card@1.97.0
1035
+ - @akinon/pz-tabby-extension@1.97.0
1036
+ - @akinon/pz-tamara-extension@1.97.0
1037
+
1038
+ ## 1.96.0
1039
+
1040
+ ### Minor Changes
1041
+
1042
+ - 994dafe: ZERO-3616: Add settings instruction file
1043
+ - 48bf7bd: ZERO-3612: Add checkout instruction
1044
+
1045
+ ### Patch Changes
1046
+
1047
+ - Updated dependencies [af5c93a]
1048
+ - Updated dependencies [a420947]
1049
+ - @akinon/next@1.96.0
1050
+ - @akinon/pz-akifast@1.96.0
1051
+ - @akinon/pz-b2b@1.96.0
1052
+ - @akinon/pz-basket-gift-pack@1.96.0
1053
+ - @akinon/pz-bkm@1.96.0
1054
+ - @akinon/pz-checkout-gift-pack@1.96.0
1055
+ - @akinon/pz-click-collect@1.96.0
1056
+ - @akinon/pz-credit-payment@1.96.0
1057
+ - @akinon/pz-gpay@1.96.0
1058
+ - @akinon/pz-masterpass@1.96.0
1059
+ - @akinon/pz-one-click-checkout@1.96.0
1060
+ - @akinon/pz-otp@1.96.0
1061
+ - @akinon/pz-pay-on-delivery@1.96.0
1062
+ - @akinon/pz-saved-card@1.96.0
1063
+ - @akinon/pz-tabby-extension@1.96.0
1064
+ - @akinon/pz-tamara-extension@1.96.0
1065
+
1066
+ ## 1.95.0
1067
+
1068
+ ### Patch Changes
1069
+
1070
+ - Updated dependencies [35dfb8f]
1071
+ - Updated dependencies [99b6e7b]
1072
+ - Updated dependencies [1913efc]
1073
+ - Updated dependencies [cbdb5c1]
1074
+ - Updated dependencies [2e3e8ab]
1075
+ - @akinon/next@1.95.0
1076
+ - @akinon/pz-tabby-extension@1.95.0
1077
+ - @akinon/pz-akifast@1.95.0
1078
+ - @akinon/pz-b2b@1.95.0
1079
+ - @akinon/pz-basket-gift-pack@1.95.0
1080
+ - @akinon/pz-bkm@1.95.0
1081
+ - @akinon/pz-checkout-gift-pack@1.95.0
1082
+ - @akinon/pz-click-collect@1.95.0
1083
+ - @akinon/pz-credit-payment@1.95.0
1084
+ - @akinon/pz-gpay@1.95.0
1085
+ - @akinon/pz-masterpass@1.95.0
1086
+ - @akinon/pz-one-click-checkout@1.95.0
1087
+ - @akinon/pz-otp@1.95.0
1088
+ - @akinon/pz-pay-on-delivery@1.95.0
1089
+ - @akinon/pz-saved-card@1.95.0
1090
+ - @akinon/pz-tamara-extension@1.95.0
1091
+
1092
+ ## 1.94.0
1093
+
1094
+ ### Minor Changes
1095
+
1096
+ - 6e6b0a9: ZERO-3422: Add pz-flow-payment package
1097
+ - adf0eeb: ZERO-3597: Add copilot instruction files
1098
+ - c806fad: ZERO-3422: Add Flow Payment plugin to the defined plugins list
1099
+ - 72ad7bb: ZERO-3422: Add Flow Payment to the list of available plugins
1100
+
1101
+ ### Patch Changes
1102
+
1103
+ - Updated dependencies [6e6b0a9]
1104
+ - Updated dependencies [adf0eeb]
1105
+ - Updated dependencies [c806fad]
1106
+ - Updated dependencies [1b4c343]
1107
+ - Updated dependencies [0abde6b]
1108
+ - Updated dependencies [72ad7bb]
1109
+ - Updated dependencies [e7cd3a5]
1110
+ - Updated dependencies [17bfadc]
1111
+ - Updated dependencies [dfaceff]
1112
+ - Updated dependencies [86642cf]
1113
+ - Updated dependencies [485e8ef]
1114
+ - Updated dependencies [fec9638]
1115
+ - Updated dependencies [b434ac8]
1116
+ - Updated dependencies [fee608d]
1117
+ - @akinon/next@1.94.0
1118
+ - @akinon/pz-click-collect@1.94.0
1119
+ - @akinon/pz-credit-payment@1.94.0
1120
+ - @akinon/pz-akifast@1.94.0
1121
+ - @akinon/pz-b2b@1.94.0
1122
+ - @akinon/pz-basket-gift-pack@1.94.0
1123
+ - @akinon/pz-bkm@1.94.0
1124
+ - @akinon/pz-checkout-gift-pack@1.94.0
1125
+ - @akinon/pz-gpay@1.94.0
1126
+ - @akinon/pz-masterpass@1.94.0
1127
+ - @akinon/pz-one-click-checkout@1.94.0
1128
+ - @akinon/pz-otp@1.94.0
1129
+ - @akinon/pz-pay-on-delivery@1.94.0
1130
+ - @akinon/pz-saved-card@1.94.0
1131
+ - @akinon/pz-tabby-extension@1.94.0
1132
+ - @akinon/pz-tamara-extension@1.94.0
1133
+
1134
+ ## 1.93.0
1135
+
1136
+ ### Patch Changes
1137
+
1138
+ - Updated dependencies [185396f]
1139
+ - Updated dependencies [0bdab12]
1140
+ - Updated dependencies [3e4aadc]
1141
+ - @akinon/next@1.93.0
1142
+ - @akinon/pz-akifast@1.93.0
1143
+ - @akinon/pz-b2b@1.93.0
1144
+ - @akinon/pz-basket-gift-pack@1.93.0
1145
+ - @akinon/pz-bkm@1.93.0
1146
+ - @akinon/pz-checkout-gift-pack@1.93.0
1147
+ - @akinon/pz-click-collect@1.93.0
1148
+ - @akinon/pz-credit-payment@1.93.0
1149
+ - @akinon/pz-gpay@1.93.0
1150
+ - @akinon/pz-masterpass@1.93.0
1151
+ - @akinon/pz-one-click-checkout@1.93.0
1152
+ - @akinon/pz-otp@1.93.0
1153
+ - @akinon/pz-pay-on-delivery@1.93.0
1154
+ - @akinon/pz-saved-card@1.93.0
1155
+ - @akinon/pz-tabby-extension@1.93.0
1156
+ - @akinon/pz-tamara-extension@1.93.0
1157
+
1158
+ ## 1.92.0
1159
+
1160
+ ### Minor Changes
1161
+
1162
+ - 3673f37: ZERO-3556: Remove PostgreSQL addon from Akinon configuration
1163
+
1164
+ ### Patch Changes
1165
+
1166
+ - @akinon/next@1.92.0
1167
+ - @akinon/pz-akifast@1.92.0
1168
+ - @akinon/pz-b2b@1.92.0
1169
+ - @akinon/pz-basket-gift-pack@1.92.0
1170
+ - @akinon/pz-bkm@1.92.0
1171
+ - @akinon/pz-checkout-gift-pack@1.92.0
1172
+ - @akinon/pz-click-collect@1.92.0
1173
+ - @akinon/pz-credit-payment@1.92.0
1174
+ - @akinon/pz-gpay@1.92.0
1175
+ - @akinon/pz-masterpass@1.92.0
1176
+ - @akinon/pz-one-click-checkout@1.92.0
1177
+ - @akinon/pz-otp@1.92.0
1178
+ - @akinon/pz-pay-on-delivery@1.92.0
1179
+ - @akinon/pz-saved-card@1.92.0
1180
+ - @akinon/pz-tabby-extension@1.92.0
1181
+ - @akinon/pz-tamara-extension@1.92.0
1182
+
1183
+ ## 1.91.0
1184
+
1185
+ ### Minor Changes
1186
+
1187
+ - 4434c51: ZERO-3321: remove csp test script
1188
+ - 448adef: ZERO-3321: move csp test to akinon-next
1189
+ - e9ce5ed: ZERO-3321: check last CSP header in test
1190
+ - 942490f: ZERO-3295: move third party tailwind content list to akinon-next
1191
+ - 100f03a: ZERO-3321: add test for Content-Security-Policy header in Next.js config
1192
+
1193
+ ### Patch Changes
1194
+
1195
+ - Updated dependencies [d8fad39]
1196
+ - Updated dependencies [1e53e17]
1197
+ - Updated dependencies [2552486]
1198
+ - Updated dependencies [f8e4cac]
1199
+ - Updated dependencies [832bee3]
1200
+ - Updated dependencies [28a59d4]
1201
+ - Updated dependencies [8feabe9]
1202
+ - Updated dependencies [bf354de]
1203
+ - Updated dependencies [448adef]
1204
+ - Updated dependencies [6c3629c]
1205
+ - Updated dependencies [6bc260b]
1206
+ - Updated dependencies [943a239]
1207
+ - Updated dependencies [068dc39]
1208
+ - Updated dependencies [942490f]
1209
+ - Updated dependencies [b6d5bda]
1210
+ - Updated dependencies [07248e0]
1211
+ - Updated dependencies [acf0320]
1212
+ - Updated dependencies [387356b]
1213
+ - Updated dependencies [b2ee69b]
1214
+ - Updated dependencies [0cabbda]
1215
+ - @akinon/next@1.91.0
1216
+ - @akinon/pz-tamara-extension@1.91.0
1217
+ - @akinon/pz-akifast@1.91.0
1218
+ - @akinon/pz-b2b@1.91.0
1219
+ - @akinon/pz-basket-gift-pack@1.91.0
1220
+ - @akinon/pz-bkm@1.91.0
1221
+ - @akinon/pz-checkout-gift-pack@1.91.0
1222
+ - @akinon/pz-click-collect@1.91.0
1223
+ - @akinon/pz-credit-payment@1.91.0
1224
+ - @akinon/pz-gpay@1.91.0
1225
+ - @akinon/pz-masterpass@1.91.0
1226
+ - @akinon/pz-one-click-checkout@1.91.0
1227
+ - @akinon/pz-otp@1.91.0
1228
+ - @akinon/pz-pay-on-delivery@1.91.0
1229
+ - @akinon/pz-saved-card@1.91.0
1230
+ - @akinon/pz-tabby-extension@1.91.0
1231
+
1232
+ ## 1.90.0
1233
+
1234
+ ### Minor Changes
1235
+
1236
+ - 4e379cd: ZERO-3365: Added variant selection completion check
1237
+
1238
+ ### Patch Changes
1239
+
1240
+ - Updated dependencies [2657d0c]
1241
+ - Updated dependencies [1044bce]
1242
+ - Updated dependencies [c9b8c6f]
1243
+ - Updated dependencies [d662786]
1244
+ - Updated dependencies [e68e120]
1245
+ - Updated dependencies [ec9ff89]
1246
+ - Updated dependencies [9c3a22a]
1247
+ - Updated dependencies [a1463fd]
1248
+ - Updated dependencies [99b3fd6]
1249
+ - @akinon/pz-akifast@1.90.0
1250
+ - @akinon/pz-bkm@1.90.0
1251
+ - @akinon/pz-click-collect@1.90.0
1252
+ - @akinon/pz-pay-on-delivery@1.90.0
1253
+ - @akinon/next@1.90.0
1254
+ - @akinon/pz-checkout-gift-pack@1.90.0
1255
+ - @akinon/pz-otp@1.90.0
1256
+ - @akinon/pz-gpay@1.90.0
1257
+ - @akinon/pz-one-click-checkout@1.90.0
1258
+ - @akinon/pz-b2b@1.90.0
1259
+ - @akinon/pz-basket-gift-pack@1.90.0
1260
+ - @akinon/pz-credit-payment@1.90.0
1261
+ - @akinon/pz-masterpass@1.90.0
1262
+ - @akinon/pz-saved-card@1.90.0
1263
+ - @akinon/pz-tabby-extension@1.90.0
1264
+ - @akinon/pz-tamara-extension@1.90.0
1265
+
1266
+ ## 1.89.0
1267
+
1268
+ ### Minor Changes
1269
+
1270
+ - 1ba5af2: ZERO-3354: Add data-testids for tamara package
1271
+ - d4463ad: ZERO-3344: Update plugins documentation
1272
+
1273
+ ### Patch Changes
1274
+
1275
+ - Updated dependencies [57a6184]
1276
+ - Updated dependencies [1ba5af2]
1277
+ - Updated dependencies [e2026ec]
1278
+ - Updated dependencies [c759d6b]
1279
+ - @akinon/pz-gpay@1.89.0
1280
+ - @akinon/pz-tamara-extension@1.89.0
1281
+ - @akinon/pz-saved-card@1.89.0
1282
+ - @akinon/pz-one-click-checkout@1.89.0
1283
+ - @akinon/next@1.89.0
1284
+ - @akinon/pz-akifast@1.89.0
1285
+ - @akinon/pz-b2b@1.89.0
1286
+ - @akinon/pz-basket-gift-pack@1.89.0
1287
+ - @akinon/pz-bkm@1.89.0
1288
+ - @akinon/pz-checkout-gift-pack@1.89.0
1289
+ - @akinon/pz-click-collect@1.89.0
1290
+ - @akinon/pz-credit-payment@1.89.0
1291
+ - @akinon/pz-masterpass@1.89.0
1292
+ - @akinon/pz-otp@1.89.0
1293
+ - @akinon/pz-pay-on-delivery@1.89.0
1294
+ - @akinon/pz-tabby-extension@1.89.0
1295
+
1296
+ ## 1.88.0
1297
+
1298
+ ### Minor Changes
1299
+
1300
+ - 3037704: ZERO-3328: Add data-testid attributes for improved testing in BasketItem and BasketGiftPack components
1301
+ - dbddebc: ZERO-3330: Update environment variables and enhance XML sitemap route error handling
1302
+ - a786e0e: ZERO-3335: Use optional chaining to prevent runtime errors
1303
+ - 054b94d: ZERO-3261: Add rejected return image to order page
1304
+
1305
+ ### Patch Changes
1306
+
1307
+ - Updated dependencies [ce64181]
1308
+ - Updated dependencies [3037704]
1309
+ - Updated dependencies [c4f0568]
1310
+ - Updated dependencies [f3dcb1e]
1311
+ - Updated dependencies [8154859]
1312
+ - @akinon/pz-checkout-gift-pack@1.88.0
1313
+ - @akinon/pz-basket-gift-pack@1.88.0
1314
+ - @akinon/next@1.88.0
1315
+ - @akinon/pz-akifast@1.88.0
1316
+ - @akinon/pz-b2b@1.88.0
1317
+ - @akinon/pz-bkm@1.88.0
1318
+ - @akinon/pz-click-collect@1.88.0
1319
+ - @akinon/pz-credit-payment@1.88.0
1320
+ - @akinon/pz-gpay@1.88.0
1321
+ - @akinon/pz-masterpass@1.88.0
1322
+ - @akinon/pz-one-click-checkout@1.88.0
1323
+ - @akinon/pz-otp@1.88.0
1324
+ - @akinon/pz-pay-on-delivery@1.88.0
1325
+ - @akinon/pz-saved-card@1.88.0
1326
+ - @akinon/pz-tabby-extension@1.88.0
1327
+ - @akinon/pz-tamara-extension@1.88.0
1328
+
1329
+ ## 1.87.0
1330
+
1331
+ ### Minor Changes
1332
+
1333
+ - 547fbf0: ZERO-0000: Update akinon.json to include 'scope' for 'sentry' plan and remove postgresql addon
1334
+
1335
+ ### Patch Changes
1336
+
1337
+ - @akinon/next@1.87.0
1338
+ - @akinon/pz-akifast@1.87.0
1339
+ - @akinon/pz-b2b@1.87.0
1340
+ - @akinon/pz-basket-gift-pack@1.87.0
1341
+ - @akinon/pz-bkm@1.87.0
1342
+ - @akinon/pz-checkout-gift-pack@1.87.0
1343
+ - @akinon/pz-click-collect@1.87.0
1344
+ - @akinon/pz-credit-payment@1.87.0
1345
+ - @akinon/pz-gpay@1.87.0
1346
+ - @akinon/pz-masterpass@1.87.0
1347
+ - @akinon/pz-one-click-checkout@1.87.0
1348
+ - @akinon/pz-otp@1.87.0
1349
+ - @akinon/pz-pay-on-delivery@1.87.0
1350
+ - @akinon/pz-saved-card@1.87.0
1351
+ - @akinon/pz-tabby-extension@1.87.0
1352
+ - @akinon/pz-tamara-extension@1.87.0
1353
+
1354
+ ## 1.86.0
1355
+
1356
+ ### Minor Changes
1357
+
1358
+ - 6fc8ac5: ZERO-3229: Implement mini basket query for basket total quantity
1359
+ - e2c6d42: ZERO-2935: Add @sentry/nextjs dependency to akinon-next and remove from projectzeronext
1360
+ - 4d3deb4: ZERO-2935: sentry 8 upgrade
1361
+ - 9abd011: ZERO-3267: Refactor error handling in ErrorPage component to set error details in Sentry scope
1362
+ - 1ea9642: ZERO-3281: Added test file for middleware matcher, checks regex patterns for correctness.
1363
+ - c3b2f3f: ZERO-3267: Enable sentry client errors and filter them by log type
1364
+ - fa96b0b: ZERO-3274: Enhance client-side error page with localized messages and reset functionality and remove 500 status code from client side pages
1365
+ - 2d305aa: ZERO-2935: Update Sentry configuration: remove hideSourceMaps option and add it to withPzConfig
1366
+
1367
+ ### Patch Changes
1368
+
1369
+ - Updated dependencies [6fc8ac5]
1370
+ - Updated dependencies [ef75c03]
1371
+ - Updated dependencies [e4761d2]
1372
+ - Updated dependencies [e2c6d42]
1373
+ - Updated dependencies [4d3deb4]
1374
+ - Updated dependencies [c3f8d4a]
1375
+ - Updated dependencies [9abd011]
1376
+ - Updated dependencies [c3b2f3f]
1377
+ - Updated dependencies [70bc0ae]
1378
+ - Updated dependencies [ac65ca9]
1379
+ - Updated dependencies [0cb3ec0]
1380
+ - Updated dependencies [2d305aa]
1381
+ - Updated dependencies [2f3588f]
1382
+ - Updated dependencies [e5529cd]
1383
+ - @akinon/next@1.86.0
1384
+ - @akinon/pz-akifast@1.86.0
1385
+ - @akinon/pz-b2b@1.86.0
1386
+ - @akinon/pz-basket-gift-pack@1.86.0
1387
+ - @akinon/pz-bkm@1.86.0
1388
+ - @akinon/pz-checkout-gift-pack@1.86.0
1389
+ - @akinon/pz-click-collect@1.86.0
1390
+ - @akinon/pz-credit-payment@1.86.0
1391
+ - @akinon/pz-gpay@1.86.0
1392
+ - @akinon/pz-masterpass@1.86.0
1393
+ - @akinon/pz-one-click-checkout@1.86.0
1394
+ - @akinon/pz-otp@1.86.0
1395
+ - @akinon/pz-pay-on-delivery@1.86.0
1396
+ - @akinon/pz-saved-card@1.86.0
1397
+ - @akinon/pz-tabby-extension@1.86.0
1398
+ - @akinon/pz-tamara-extension@1.86.0
1399
+
1400
+ ## 1.85.0
1401
+
1402
+ ### Minor Changes
1403
+
1404
+ - a0a1bac: ZERO-3228 :edit OTP login flow to use Redux for popup visibility and clean up unused props
1405
+
1406
+ ### Patch Changes
1407
+
1408
+ - Updated dependencies [a0a1bac]
1409
+ - Updated dependencies [4167dcd]
1410
+ - Updated dependencies [0b1bd07]
1411
+ - @akinon/pz-otp@1.85.0
1412
+ - @akinon/next@1.85.0
1413
+ - @akinon/pz-akifast@1.85.0
1414
+ - @akinon/pz-b2b@1.85.0
1415
+ - @akinon/pz-basket-gift-pack@1.85.0
1416
+ - @akinon/pz-bkm@1.85.0
1417
+ - @akinon/pz-checkout-gift-pack@1.85.0
1418
+ - @akinon/pz-click-collect@1.85.0
1419
+ - @akinon/pz-credit-payment@1.85.0
1420
+ - @akinon/pz-gpay@1.85.0
1421
+ - @akinon/pz-masterpass@1.85.0
1422
+ - @akinon/pz-one-click-checkout@1.85.0
1423
+ - @akinon/pz-pay-on-delivery@1.85.0
1424
+ - @akinon/pz-saved-card@1.85.0
1425
+ - @akinon/pz-tabby-extension@1.85.0
1426
+ - @akinon/pz-tamara-extension@1.85.0
1427
+
1428
+ ## 1.84.0
1429
+
1430
+ ### Patch Changes
1431
+
1432
+ - Updated dependencies [757ee53]
1433
+ - Updated dependencies [c0c1962]
1434
+ - Updated dependencies [0e05135]
1435
+ - Updated dependencies [624a4eb]
1436
+ - @akinon/next@1.84.0
1437
+ - @akinon/pz-checkout-gift-pack@1.84.0
1438
+ - @akinon/pz-one-click-checkout@1.84.0
1439
+ - @akinon/pz-basket-gift-pack@1.84.0
1440
+ - @akinon/pz-tamara-extension@1.84.0
1441
+ - @akinon/pz-tabby-extension@1.84.0
1442
+ - @akinon/pz-click-collect@1.84.0
1443
+ - @akinon/pz-masterpass@1.84.0
1444
+ - @akinon/pz-saved-card@1.84.0
1445
+ - @akinon/pz-akifast@1.84.0
1446
+ - @akinon/pz-gpay@1.84.0
1447
+ - @akinon/pz-b2b@1.84.0
1448
+ - @akinon/pz-bkm@1.84.0
1449
+ - @akinon/pz-otp@1.84.0
1450
+ - @akinon/pz-credit-payment@1.84.0
1451
+ - @akinon/pz-pay-on-delivery@1.84.0
1452
+
1453
+ ## 1.83.0
1454
+
1455
+ ### Minor Changes
1456
+
1457
+ - 596e987: ZERO-3291: Update Next.js to version 14.2.25
1458
+
1459
+ ### Patch Changes
1460
+
1461
+ - @akinon/next@1.83.0
1462
+ - @akinon/pz-akifast@1.83.0
1463
+ - @akinon/pz-b2b@1.83.0
1464
+ - @akinon/pz-basket-gift-pack@1.83.0
1465
+ - @akinon/pz-bkm@1.83.0
1466
+ - @akinon/pz-checkout-gift-pack@1.83.0
1467
+ - @akinon/pz-click-collect@1.83.0
1468
+ - @akinon/pz-credit-payment@1.83.0
1469
+ - @akinon/pz-gpay@1.83.0
1470
+ - @akinon/pz-masterpass@1.83.0
1471
+ - @akinon/pz-one-click-checkout@1.83.0
1472
+ - @akinon/pz-otp@1.83.0
1473
+ - @akinon/pz-pay-on-delivery@1.83.0
1474
+ - @akinon/pz-saved-card@1.83.0
1475
+ - @akinon/pz-tabby-extension@1.83.0
1476
+ - @akinon/pz-tamara-extension@1.83.0
1477
+
1478
+ ## 1.82.0
1479
+
1480
+ ### Minor Changes
1481
+
1482
+ - 7a1e1f7: ZERO-3138: Close the search input with the esc key
1483
+ - b02d5ea: ZERO-3135: Add cancellation request images display in order cancellation item
1484
+ - c82875b: ZERO-3140: Fix style layout size
1485
+
1486
+ ### Patch Changes
1487
+
1488
+ - Updated dependencies [2e0b7ff]
1489
+ - Updated dependencies [778aabf]
1490
+ - Updated dependencies [c0fef07]
1491
+ - Updated dependencies [2d2ab44]
1492
+ - Updated dependencies [9db58ad]
1493
+ - Updated dependencies [0200d56]
1494
+ - Updated dependencies [7d1b5af]
1495
+ - Updated dependencies [6c1dba7]
1496
+ - Updated dependencies [aa05ed7]
1497
+ - @akinon/next@1.82.0
1498
+ - @akinon/pz-tabby-extension@1.82.0
1499
+ - @akinon/pz-tamara-extension@1.82.0
1500
+ - @akinon/pz-akifast@1.82.0
1501
+ - @akinon/pz-b2b@1.82.0
1502
+ - @akinon/pz-basket-gift-pack@1.82.0
1503
+ - @akinon/pz-bkm@1.82.0
1504
+ - @akinon/pz-checkout-gift-pack@1.82.0
1505
+ - @akinon/pz-click-collect@1.82.0
1506
+ - @akinon/pz-credit-payment@1.82.0
1507
+ - @akinon/pz-gpay@1.82.0
1508
+ - @akinon/pz-masterpass@1.82.0
1509
+ - @akinon/pz-one-click-checkout@1.82.0
1510
+ - @akinon/pz-otp@1.82.0
1511
+ - @akinon/pz-pay-on-delivery@1.82.0
1512
+ - @akinon/pz-saved-card@1.82.0
1513
+
1514
+ ## 1.81.0
1515
+
1516
+ ### Minor Changes
1517
+
1518
+ - e8dcbe3: ZERO-3112: Update button component
1519
+ - fd4b74e: ZERO-3126: add reset checkout state query
1520
+ - 6a0a080: ZERO-3112: Update button
1521
+ - 14d6b00: ZERO-3122: Refactor error handling in login and registration forms to support nested error messages
1522
+ - 121044b: ZERO-3120: Add sample regex for sitemap with url extension like .xml.gz
1523
+
1524
+ ### Patch Changes
1525
+
1526
+ - Updated dependencies [fdbf156]
1527
+ - Updated dependencies [fd4b74e]
1528
+ - Updated dependencies [4cc22c7]
1529
+ - Updated dependencies [6a0a080]
1530
+ - @akinon/pz-masterpass@1.81.0
1531
+ - @akinon/next@1.81.0
1532
+ - @akinon/pz-akifast@1.81.0
1533
+ - @akinon/pz-b2b@1.81.0
1534
+ - @akinon/pz-basket-gift-pack@1.81.0
1535
+ - @akinon/pz-bkm@1.81.0
1536
+ - @akinon/pz-checkout-gift-pack@1.81.0
1537
+ - @akinon/pz-click-collect@1.81.0
1538
+ - @akinon/pz-credit-payment@1.81.0
1539
+ - @akinon/pz-gpay@1.81.0
1540
+ - @akinon/pz-one-click-checkout@1.81.0
1541
+ - @akinon/pz-otp@1.81.0
1542
+ - @akinon/pz-pay-on-delivery@1.81.0
1543
+ - @akinon/pz-saved-card@1.81.0
1544
+ - @akinon/pz-tabby-extension@1.81.0
1545
+ - @akinon/pz-tamara-extension@1.81.0
1546
+
1547
+ ## 1.80.0
1548
+
1549
+ ### Minor Changes
1550
+
1551
+ - 7ab9e2f: ZERO-3166: add tamara payment package
1552
+
1553
+ ### Patch Changes
1554
+
1555
+ - Updated dependencies [7ab9e2f]
1556
+ - @akinon/pz-tamara-extension@1.80.0
1557
+ - @akinon/next@1.80.0
1558
+ - @akinon/pz-akifast@1.80.0
1559
+ - @akinon/pz-b2b@1.80.0
1560
+ - @akinon/pz-basket-gift-pack@1.80.0
1561
+ - @akinon/pz-bkm@1.80.0
1562
+ - @akinon/pz-checkout-gift-pack@1.80.0
1563
+ - @akinon/pz-click-collect@1.80.0
1564
+ - @akinon/pz-credit-payment@1.80.0
1565
+ - @akinon/pz-gpay@1.80.0
1566
+ - @akinon/pz-masterpass@1.80.0
1567
+ - @akinon/pz-one-click-checkout@1.80.0
1568
+ - @akinon/pz-otp@1.80.0
1569
+ - @akinon/pz-pay-on-delivery@1.80.0
1570
+ - @akinon/pz-saved-card@1.80.0
1571
+ - @akinon/pz-tabby-extension@1.80.0
1572
+
1573
+ ## 1.79.0
1574
+
1575
+ ### Patch Changes
1576
+
1577
+ - Updated dependencies [59fa21c]
1578
+ - @akinon/next@1.79.0
1579
+ - @akinon/pz-akifast@1.79.0
1580
+ - @akinon/pz-b2b@1.79.0
1581
+ - @akinon/pz-basket-gift-pack@1.79.0
1582
+ - @akinon/pz-bkm@1.79.0
1583
+ - @akinon/pz-checkout-gift-pack@1.79.0
1584
+ - @akinon/pz-click-collect@1.79.0
1585
+ - @akinon/pz-credit-payment@1.79.0
1586
+ - @akinon/pz-gpay@1.79.0
1587
+ - @akinon/pz-masterpass@1.79.0
1588
+ - @akinon/pz-one-click-checkout@1.79.0
1589
+ - @akinon/pz-otp@1.79.0
1590
+ - @akinon/pz-pay-on-delivery@1.79.0
1591
+ - @akinon/pz-saved-card@1.79.0
1592
+ - @akinon/pz-tabby-extension@1.79.0
1593
+
1594
+ ## 1.78.0
1595
+
1596
+ ### Patch Changes
1597
+
1598
+ - Updated dependencies [e791eab]
1599
+ - @akinon/next@1.78.0
1600
+ - @akinon/pz-akifast@1.78.0
1601
+ - @akinon/pz-b2b@1.78.0
1602
+ - @akinon/pz-basket-gift-pack@1.78.0
1603
+ - @akinon/pz-bkm@1.78.0
1604
+ - @akinon/pz-checkout-gift-pack@1.78.0
1605
+ - @akinon/pz-click-collect@1.78.0
1606
+ - @akinon/pz-credit-payment@1.78.0
1607
+ - @akinon/pz-gpay@1.78.0
1608
+ - @akinon/pz-masterpass@1.78.0
1609
+ - @akinon/pz-one-click-checkout@1.78.0
1610
+ - @akinon/pz-otp@1.78.0
1611
+ - @akinon/pz-pay-on-delivery@1.78.0
1612
+ - @akinon/pz-saved-card@1.78.0
1613
+ - @akinon/pz-tabby-extension@1.78.0
1614
+
1615
+ ## 1.77.0
1616
+
1617
+ ### Patch Changes
1618
+
1619
+ - Updated dependencies [999168d]
1620
+ - Updated dependencies [86a5a62]
1621
+ - @akinon/next@1.77.0
1622
+ - @akinon/pz-akifast@1.77.0
1623
+ - @akinon/pz-b2b@1.77.0
1624
+ - @akinon/pz-basket-gift-pack@1.77.0
1625
+ - @akinon/pz-bkm@1.77.0
1626
+ - @akinon/pz-checkout-gift-pack@1.77.0
1627
+ - @akinon/pz-click-collect@1.77.0
1628
+ - @akinon/pz-credit-payment@1.77.0
1629
+ - @akinon/pz-gpay@1.77.0
1630
+ - @akinon/pz-masterpass@1.77.0
1631
+ - @akinon/pz-one-click-checkout@1.77.0
1632
+ - @akinon/pz-otp@1.77.0
1633
+ - @akinon/pz-pay-on-delivery@1.77.0
1634
+ - @akinon/pz-saved-card@1.77.0
1635
+ - @akinon/pz-tabby-extension@1.77.0
1636
+
1637
+ ## 1.76.0
1638
+
1639
+ ### Minor Changes
1640
+
1641
+ - dd69cc6: ZERO-3079: Modularize pre-order middleware
1642
+
1643
+ ### Patch Changes
1644
+
1645
+ - Updated dependencies [dd69cc6]
1646
+ - @akinon/next@1.76.0
1647
+ - @akinon/pz-akifast@1.76.0
1648
+ - @akinon/pz-b2b@1.76.0
1649
+ - @akinon/pz-basket-gift-pack@1.76.0
1650
+ - @akinon/pz-bkm@1.76.0
1651
+ - @akinon/pz-checkout-gift-pack@1.76.0
1652
+ - @akinon/pz-click-collect@1.76.0
1653
+ - @akinon/pz-credit-payment@1.76.0
1654
+ - @akinon/pz-gpay@1.76.0
1655
+ - @akinon/pz-masterpass@1.76.0
1656
+ - @akinon/pz-one-click-checkout@1.76.0
1657
+ - @akinon/pz-otp@1.76.0
1658
+ - @akinon/pz-pay-on-delivery@1.76.0
1659
+ - @akinon/pz-saved-card@1.76.0
1660
+ - @akinon/pz-tabby-extension@1.76.0
77
1661
 
78
1662
  ## 1.75.0
79
1663