@akinon/projectzero 2.0.0-beta.11 → 2.0.0-beta.13

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