@akinon/projectzero 1.103.0-snapshot-ZERO-3648-20251002191321 → 1.104.0-rc.83

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 (61) hide show
  1. package/CHANGELOG.md +235 -5
  2. package/app-template/.env.example +1 -0
  3. package/app-template/.github/instructions/routing.instructions.md +603 -0
  4. package/app-template/CHANGELOG.md +5002 -310
  5. package/app-template/README.md +25 -1
  6. package/app-template/docs/sentry-usage.md +35 -0
  7. package/app-template/package.json +19 -19
  8. package/app-template/public/locales/en/checkout.json +6 -0
  9. package/app-template/public/locales/en/common.json +48 -1
  10. package/app-template/public/locales/tr/checkout.json +6 -0
  11. package/app-template/public/locales/tr/common.json +48 -1
  12. package/app-template/src/app/[commerce]/[locale]/[currency]/basket/page.tsx +9 -82
  13. package/app-template/src/app/[commerce]/[locale]/[currency]/landing-page/[pk]/page.tsx +12 -1
  14. package/app-template/src/app/[commerce]/[locale]/[currency]/product/[pk]/loading.tsx +67 -0
  15. package/app-template/src/app/api/form/[...id]/route.ts +1 -7
  16. package/app-template/src/app/api/image-proxy/route.ts +1 -0
  17. package/app-template/src/app/api/similar-product-list/route.ts +1 -0
  18. package/app-template/src/app/api/similar-products/route.ts +1 -0
  19. package/app-template/src/assets/fonts/pz-icon.css +3 -0
  20. package/app-template/src/components/__tests__/link.test.tsx +2 -0
  21. package/app-template/src/components/accordion.tsx +22 -19
  22. package/app-template/src/components/currency-select.tsx +1 -0
  23. package/app-template/src/components/file-input.tsx +27 -7
  24. package/app-template/src/components/generate-form-fields.tsx +43 -4
  25. package/app-template/src/components/input.tsx +9 -2
  26. package/app-template/src/components/modal.tsx +32 -16
  27. package/app-template/src/components/pagination.tsx +1 -0
  28. package/app-template/src/components/price.tsx +1 -1
  29. package/app-template/src/components/select.tsx +38 -26
  30. package/app-template/src/components/types/index.ts +25 -1
  31. package/app-template/src/hooks/index.ts +2 -0
  32. package/app-template/src/hooks/use-product-cart.ts +77 -0
  33. package/app-template/src/hooks/use-stock-alert.ts +74 -0
  34. package/app-template/src/plugins.js +3 -1
  35. package/app-template/src/settings.js +8 -2
  36. package/app-template/src/types/index.ts +17 -0
  37. package/app-template/src/utils/variant-validation.ts +41 -0
  38. package/app-template/src/views/account/address-form.tsx +8 -4
  39. package/app-template/src/views/account/contact-form.tsx +1 -1
  40. package/app-template/src/views/account/content-header.tsx +2 -2
  41. package/app-template/src/views/account/faq/faq-tabs.tsx +8 -2
  42. package/app-template/src/views/basket/basket-content.tsx +106 -0
  43. package/app-template/src/views/basket/basket-item.tsx +22 -14
  44. package/app-template/src/views/basket/summary.tsx +10 -7
  45. package/app-template/src/views/breadcrumb.tsx +2 -2
  46. package/app-template/src/views/category/category-info.tsx +1 -0
  47. package/app-template/src/views/category/filters/index.tsx +1 -1
  48. package/app-template/src/views/checkout/steps/payment/options/store-credit.tsx +121 -0
  49. package/app-template/src/views/checkout/summary.tsx +10 -0
  50. package/app-template/src/views/guest-login/index.tsx +6 -1
  51. package/app-template/src/views/header/action-menu.tsx +1 -1
  52. package/app-template/src/views/header/search/index.tsx +17 -5
  53. package/app-template/src/views/product/product-actions.tsx +165 -0
  54. package/app-template/src/views/product/product-info.tsx +62 -263
  55. package/app-template/src/views/product/product-share.tsx +56 -0
  56. package/app-template/src/views/product/product-variants.tsx +26 -0
  57. package/app-template/src/views/product/slider.tsx +86 -73
  58. package/app-template/src/widgets/footer-menu.tsx +6 -2
  59. package/commands/plugins.ts +63 -20
  60. package/dist/commands/plugins.js +57 -20
  61. package/package.json +1 -1
package/CHANGELOG.md CHANGED
@@ -1,6 +1,24 @@
1
1
  # @akinon/projectzero
2
2
 
3
- ## 1.103.0-snapshot-ZERO-3648-20251002191321
3
+ ## 1.104.0-rc.83
4
+
5
+ ### Minor Changes
6
+
7
+ - d8be48fb: ZERO-3422: Update fetch method to use dynamic request method in wallet complete redirection middleware
8
+ - c67942a4: ZERO-3423: Updated version control and debug messages for the package
9
+ - 143be2b9: ZERO-3457: Crop styles are customizable and logic improved for rendering similar products modal
10
+ - 16aff543: ZERO-3431: Add test script for redirect utility in package.json
11
+ - 64699d3ff: ZERO-2761: Fix invalid import for plugin module
12
+ - e974d8e8: ZERO-3406: Fix rc build
13
+ - 7eb51ca9: ZERO-3424 :Update package versions
14
+ - 7727ae55: ZERO-3073: Refactor basket page to use server-side data fetching and simplify component structure
15
+ - 8b1d24eb: ZERO-3422: Update fetch method to use dynamic request method in wallet complete redirection middleware
16
+ - 34578efc: ZERO-3419 :Add new payment plugins and update existing ones in the plugin list
17
+ - d99a6a7d: ZERO-3457: Fixed the settings prop and made sure everything is customizable.
18
+ - 33377cfd: ZERO-3267: Refactor import statement for ROUTES in error-page component
19
+ - 33d4d0c: ZERO-3615: remove custom not found
20
+
21
+ ## 1.103.0
4
22
 
5
23
  ## 1.102.0
6
24
 
@@ -41,7 +59,161 @@
41
59
 
42
60
  ### Minor Changes
43
61
 
44
- - 942490f: ZERO-3295: move third party tailwind content list to akinon-next
62
+ - d8be48fb: ZERO-3422: Update fetch method to use dynamic request method in wallet complete redirection middleware
63
+ - c67942a4: ZERO-3423: Updated version control and debug messages for the package
64
+ - 5de751aa: ZERO-3428 :Add Hepsipay plugin to the list of available plugins
65
+ - 143be2b9: ZERO-3457: Crop styles are customizable and logic improved for rendering similar products modal
66
+ - 16aff543: ZERO-3431: Add test script for redirect utility in package.json
67
+ - 64699d3f: ZERO-2761: Fix invalid import for plugin module
68
+ - e974d8e8: ZERO-3406: Fix rc build
69
+ - 7eb51ca9: ZERO-3424 :Update package versions
70
+ - c806fad7: ZERO-3422: Add Flow Payment plugin to the defined plugins list
71
+ - 7727ae55: ZERO-3073: Refactor basket page to use server-side data fetching and simplify component structure
72
+ - 8b1d24eb: ZERO-3422: Update fetch method to use dynamic request method in wallet complete redirection middleware
73
+ - 72ad7bb1: ZERO-3422: Add Flow Payment to the list of available plugins
74
+ - 34578efc: ZERO-3419 :Add new payment plugins and update existing ones in the plugin list
75
+ - d99a6a7d: ZERO-3457: Fixed the settings prop and made sure everything is customizable.
76
+ - 33377cfd: ZERO-3267: Refactor import statement for ROUTES in error-page component
77
+
78
+ ## 1.92.0-rc.41
79
+
80
+ ## 1.92.0-rc.40
81
+
82
+ ## 1.92.0-rc.39
83
+
84
+ ## 1.92.0-rc.38
85
+
86
+ ## 1.92.0-rc.37
87
+
88
+ ## 1.92.0-rc.36
89
+
90
+ ## 1.92.0-rc.35
91
+
92
+ ## 1.92.0-rc.34
93
+
94
+ ## 1.92.0-rc.33
95
+
96
+ ## 1.92.0-rc.32
97
+
98
+ ## 1.92.0-rc.31
99
+
100
+ ## 1.92.0-rc.30
101
+
102
+ ## 1.92.0-rc.29
103
+
104
+ ## 1.92.0-rc.28
105
+
106
+ ## 1.92.0-rc.27
107
+
108
+ ## 1.92.0-rc.26
109
+
110
+ ### Minor Changes
111
+
112
+ - 16aff54: ZERO-3431: Add test script for redirect utility in package.json
113
+
114
+ ## 1.92.0-rc.25
115
+
116
+ ## 1.92.0-rc.24
117
+
118
+ ## 1.92.0-rc.23
119
+
120
+ ## 1.92.0-rc.22
121
+
122
+ ### Minor Changes
123
+
124
+ - 143be2b: ZERO-3457: Crop styles are customizable and logic improved for rendering similar products modal
125
+
126
+ ## 1.92.0-rc.21
127
+
128
+ ### Minor Changes
129
+
130
+ - d99a6a7: ZERO-3457: Fixed the settings prop and made sure everything is customizable.
131
+
132
+ ## 1.92.0-rc.20
133
+
134
+ ### Minor Changes
135
+
136
+ - 8b1d24e: ZERO-3422: Update fetch method to use dynamic request method in wallet complete redirection middleware
137
+
138
+ ## 1.92.0-rc.19
139
+
140
+ ### Minor Changes
141
+
142
+ - d8be48f: ZERO-3422: Update fetch method to use dynamic request method in wallet complete redirection middleware
143
+
144
+ ## 1.92.0-rc.18
145
+
146
+ ### Minor Changes
147
+
148
+ - c67942a: ZERO-3423: Updated version control and debug messages for the package
149
+
150
+ ## 1.92.0-rc.17
151
+
152
+ ## 1.92.0-rc.16
153
+
154
+ ## 1.92.0-rc.15
155
+
156
+ ### Minor Changes
157
+
158
+ - 5de751aa: ZERO-3428 :Add Hepsipay plugin to the list of available plugins
159
+
160
+ ## 1.92.0-rc.14
161
+
162
+ ## 1.92.0-rc.13
163
+
164
+ ## 1.92.0-rc.12
165
+
166
+ ## 1.92.0-rc.11
167
+
168
+ ## 1.92.0-rc.10
169
+
170
+ ## 1.92.0-rc.9
171
+
172
+ ### Minor Changes
173
+
174
+ - 72ad7bb: ZERO-3422: Add Flow Payment to the list of available plugins
175
+
176
+ ## 1.92.0-rc.8
177
+
178
+ ### Minor Changes
179
+
180
+ - c806fad: ZERO-3422: Add Flow Payment plugin to the defined plugins list
181
+
182
+ ## 1.92.0-rc.7
183
+
184
+ ## 1.91.0-rc.6
185
+
186
+ ## 1.91.0-rc.5
187
+
188
+ ## 1.91.0-rc.4
189
+
190
+ ### Minor Changes
191
+
192
+ - 7eb51ca: ZERO-3424 :Update package versions
193
+ - 34578ef: ZERO-3419 :Add new payment plugins and update existing ones in the plugin list
194
+
195
+ ## 1.91.0-rc.3
196
+
197
+ ### Minor Changes
198
+
199
+ - 64699d3f: ZERO-2761: Fix invalid import for plugin module
200
+ - e974d8e8: ZERO-3406: Fix rc build
201
+ - 7727ae55: ZERO-3073: Refactor basket page to use server-side data fetching and simplify component structure
202
+ - 33377cfd: ZERO-3267: Refactor import statement for ROUTES in error-page component
203
+ - 942490f2: ZERO-3295: move third party tailwind content list to akinon-next
204
+
205
+ ## 1.91.0-rc.2
206
+
207
+ ## 1.91.0-rc.1
208
+
209
+ ## 1.91.0-rc.0
210
+
211
+ ### Minor Changes
212
+
213
+ - 64699d3f: ZERO-2761: Fix invalid import for plugin module
214
+ - e974d8e: ZERO-3406: Fix rc build
215
+ - 7727ae55: ZERO-3073: Refactor basket page to use server-side data fetching and simplify component structure
216
+ - 33377cfd: ZERO-3267: Refactor import statement for ROUTES in error-page component
45
217
 
46
218
  ## 1.90.0
47
219
 
@@ -71,9 +243,67 @@
71
243
 
72
244
  ### Minor Changes
73
245
 
74
- - 7a1e1f7: ZERO-3138: Close the search input with the esc key
75
- - c82875b: ZERO-3140: Fix style layout size
76
- - 6c1dba7: ZERO-3174: update hash structure
246
+ - 33377cf: ZERO-3267: Refactor import statement for ROUTES in error-page component
247
+
248
+ ## 1.82.0-rc.18
249
+
250
+ ## 1.82.0-rc.17
251
+
252
+ ### Minor Changes
253
+
254
+ - e2583ac2: ZERO-3282: Switch to execSync for synchronous execution, enhance file checks, and add error page replacement script
255
+
256
+ ## 1.82.0-rc.16
257
+
258
+ ### Minor Changes
259
+
260
+ - 64699d3f: ZERO-2761: Fix invalid import for plugin module
261
+ - 7727ae55: ZERO-3073: Refactor basket page to use server-side data fetching and simplify component structure
262
+
263
+ ## 1.82.0-rc.15
264
+
265
+ ## 1.82.0-rc.14
266
+
267
+ ## 1.82.0-rc.13
268
+
269
+ ## 1.82.0-rc.12
270
+
271
+ ## 1.82.0-rc.11
272
+
273
+ ## 1.82.0-rc.10
274
+
275
+ ## 1.82.0-rc.9
276
+
277
+ ## 1.82.0-rc.8
278
+
279
+ ## 1.82.0-rc.7
280
+
281
+ ## 1.82.0-rc.6
282
+
283
+ ## 1.82.0-rc.5
284
+
285
+ ## 1.82.0-rc.4
286
+
287
+ ## 1.82.0-rc.3
288
+
289
+ ## 1.82.0-rc.2
290
+
291
+ ### Minor Changes
292
+
293
+ - 64699d3f: ZERO-2761: Fix invalid import for plugin module
294
+ - 7727ae55: ZERO-3073: Refactor basket page to use server-side data fetching and simplify component structure
295
+
296
+ ## 1.82.0-rc.1
297
+
298
+ ## 1.82.0-rc.0
299
+
300
+ ### Minor Changes
301
+
302
+ - 64699d3f: ZERO-2761: Fix invalid import for plugin module
303
+ - 7a1e1f73: ZERO-3138: Close the search input with the esc key
304
+ - 7727ae55: ZERO-3073: Refactor basket page to use server-side data fetching and simplify component structure
305
+ - c82875bc: ZERO-3140: Fix style layout size
306
+ - 6c1dba75: ZERO-3174: update hash structure
77
307
 
78
308
  ## 1.81.0
79
309
 
@@ -6,6 +6,7 @@ NEXT_PUBLIC_GTM_KEY=GTM_KEY
6
6
  NEXT_PUBLIC_URL=http://localhost:3000
7
7
  SERVICE_BACKEND_URL=https://02fde10fee4440269e695aa10707dfaf.lb.akinoncloud.com
8
8
  SITEMAP_S3_BUCKET_NAME=0fb534
9
+ NEXT_PUBLIC_ENABLE_IMAGE_SEARCH=true
9
10
 
10
11
  # LOG_LEVEL_DEV=debug # For more details, please refer to the Logging documentation.
11
12