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

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