@akinon/projectzero 2.0.0-beta.12 → 2.0.0-beta.14

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