@akinon/projectzero 2.0.0-beta.9 → 2.0.1

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