@akinon/projectzero 1.105.0 → 1.106.0-rc.85

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