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