@akinon/projectzero 1.118.0-rc.9 → 1.118.0
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.
- package/CHANGELOG.md +1 -24
- package/app-template/.env.example +0 -3
- package/app-template/CHANGELOG.md +29 -360
- package/app-template/README.md +1 -25
- package/app-template/akinon.json +1 -1
- package/app-template/docs/advanced-usage.md +0 -10
- package/app-template/package.json +28 -28
- package/app-template/public/locales/en/account.json +1 -3
- package/app-template/public/locales/en/product.json +0 -18
- package/app-template/public/locales/tr/account.json +1 -3
- package/app-template/public/locales/tr/product.json +0 -18
- package/app-template/src/app/[commerce]/[locale]/[currency]/account/orders/[id]/page.tsx +1 -20
- package/app-template/src/app/[commerce]/[locale]/[currency]/users/reset/[[...id]]/page.tsx +3 -45
- package/app-template/src/app/[commerce]/[locale]/[currency]/xml-sitemap/[node]/route.ts +4 -6
- package/app-template/src/components/modal.tsx +0 -2
- package/app-template/src/components/select.tsx +1 -1
- package/app-template/src/hooks/index.ts +0 -2
- package/app-template/src/middleware.ts +1 -2
- package/app-template/src/plugins.js +0 -1
- package/app-template/src/views/account/orders/order-detail-header.tsx +1 -1
- package/app-template/src/views/checkout/steps/payment/options/credit-card/index.tsx +5 -21
- package/app-template/src/views/checkout/steps/payment/options/funds-transfer.tsx +5 -25
- package/app-template/src/views/checkout/steps/payment/options/loyalty.tsx +2 -21
- package/app-template/src/views/checkout/steps/payment/options/redirection.tsx +4 -22
- package/app-template/src/views/checkout/steps/shipping/address-box.tsx +17 -30
- package/app-template/src/views/checkout/steps/shipping/addresses.tsx +1 -1
- package/app-template/src/views/header/search/index.tsx +5 -13
- package/app-template/src/views/product/slider.tsx +38 -85
- package/commands/plugins.ts +0 -4
- package/dist/commands/plugins.js +0 -4
- package/package.json +1 -1
- package/app-template/src/app/api/barcode-search/route.ts +0 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,29 +1,6 @@
|
|
|
1
1
|
# @akinon/projectzero
|
|
2
2
|
|
|
3
|
-
## 1.118.0
|
|
4
|
-
|
|
5
|
-
## 1.118.0-rc.8
|
|
6
|
-
|
|
7
|
-
## 1.118.0-rc.7
|
|
8
|
-
|
|
9
|
-
## 1.118.0-rc.6
|
|
10
|
-
|
|
11
|
-
## 1.118.0-rc.5
|
|
12
|
-
|
|
13
|
-
## 1.118.0-rc.4
|
|
14
|
-
|
|
15
|
-
## 1.118.0-rc.3
|
|
16
|
-
|
|
17
|
-
## 1.118.0-rc.2
|
|
18
|
-
|
|
19
|
-
## 1.118.0-rc.1
|
|
20
|
-
|
|
21
|
-
## 1.118.0-rc.0
|
|
22
|
-
|
|
23
|
-
### Minor Changes
|
|
24
|
-
|
|
25
|
-
- 143be2b9: ZERO-3457: Crop styles are customizable and logic improved for rendering similar products modal
|
|
26
|
-
- d99a6a7d: ZERO-3457_1: Fixed the settings prop and made sure everything is customizable.
|
|
3
|
+
## 1.118.0
|
|
27
4
|
|
|
28
5
|
## 1.117.0
|
|
29
6
|
|
|
@@ -7,12 +7,9 @@ NEXT_PUBLIC_URL=http://localhost:3000
|
|
|
7
7
|
SERVICE_BACKEND_URL=https://02fde10fee4440269e695aa10707dfaf.lb.akinoncloud.com
|
|
8
8
|
SITEMAP_S3_BUCKET_NAME=0fb534
|
|
9
9
|
NEXT_PUBLIC_VIRTUAL_TRY_ON_API_URL=https://d2a26507c7094f359aba349b96a96881.lb.akinoncloud.com
|
|
10
|
-
NEXT_PUBLIC_ENABLE_IMAGE_SEARCH=true
|
|
11
10
|
|
|
12
11
|
# LOG_LEVEL_DEV=debug # For more details, please refer to the Logging documentation.
|
|
13
12
|
|
|
14
13
|
# CACHE_SECRET=KhvhE1go3GDmYJ7PhZLmskqfhYNlPSm6
|
|
15
14
|
# CACHE_HOST=default:redispw@localhost
|
|
16
15
|
# CACHE_PORT=6379
|
|
17
|
-
|
|
18
|
-
# BF_CACHE=false
|
|
@@ -1,380 +1,49 @@
|
|
|
1
1
|
# projectzeronext
|
|
2
2
|
|
|
3
|
-
## 1.118.0
|
|
4
|
-
|
|
5
|
-
### Patch Changes
|
|
6
|
-
|
|
7
|
-
- Updated dependencies [01ee41f1]
|
|
8
|
-
- @akinon/next@1.118.0-rc.9
|
|
9
|
-
- @akinon/pz-virtual-try-on@1.118.0-rc.9
|
|
10
|
-
- @akinon/pz-akifast@1.118.0-rc.9
|
|
11
|
-
- @akinon/pz-apple-pay@1.118.0-rc.9
|
|
12
|
-
- @akinon/pz-b2b@1.118.0-rc.9
|
|
13
|
-
- @akinon/pz-basket-gift-pack@1.118.0-rc.9
|
|
14
|
-
- @akinon/pz-bkm@1.118.0-rc.9
|
|
15
|
-
- @akinon/pz-checkout-gift-pack@1.118.0-rc.9
|
|
16
|
-
- @akinon/pz-click-collect@1.118.0-rc.9
|
|
17
|
-
- @akinon/pz-credit-payment@1.118.0-rc.9
|
|
18
|
-
- @akinon/pz-cybersource-uc@1.118.0-rc.9
|
|
19
|
-
- @akinon/pz-flow-payment@1.118.0-rc.9
|
|
20
|
-
- @akinon/pz-google-pay@1.118.0-rc.9
|
|
21
|
-
- @akinon/pz-gpay@1.118.0-rc.9
|
|
22
|
-
- @akinon/pz-haso@1.118.0-rc.9
|
|
23
|
-
- @akinon/pz-hepsipay@1.118.0-rc.9
|
|
24
|
-
- @akinon/pz-masterpass@1.118.0-rc.9
|
|
25
|
-
- @akinon/pz-masterpass-rest@1.118.0-rc.9
|
|
26
|
-
- @akinon/pz-multi-basket@1.118.0-rc.9
|
|
27
|
-
- @akinon/pz-one-click-checkout@1.118.0-rc.9
|
|
28
|
-
- @akinon/pz-otp@1.118.0-rc.9
|
|
29
|
-
- @akinon/pz-pay-on-delivery@1.118.0-rc.9
|
|
30
|
-
- @akinon/pz-saved-card@1.118.0-rc.9
|
|
31
|
-
- @akinon/pz-similar-products@1.118.0-rc.9
|
|
32
|
-
- @akinon/pz-tabby-extension@1.118.0-rc.9
|
|
33
|
-
- @akinon/pz-tamara-extension@1.118.0-rc.9
|
|
34
|
-
|
|
35
|
-
## 1.118.0-rc.8
|
|
36
|
-
|
|
37
|
-
### Minor Changes
|
|
38
|
-
|
|
39
|
-
- 31b4a266: ZERO-4102: Add support for post-checkout redirect in middleware
|
|
40
|
-
|
|
41
|
-
### Patch Changes
|
|
42
|
-
|
|
43
|
-
- Updated dependencies [31b4a266]
|
|
44
|
-
- @akinon/next@1.118.0-rc.8
|
|
45
|
-
- @akinon/pz-virtual-try-on@1.118.0-rc.8
|
|
46
|
-
- @akinon/pz-akifast@1.118.0-rc.8
|
|
47
|
-
- @akinon/pz-apple-pay@1.118.0-rc.8
|
|
48
|
-
- @akinon/pz-b2b@1.118.0-rc.8
|
|
49
|
-
- @akinon/pz-basket-gift-pack@1.118.0-rc.8
|
|
50
|
-
- @akinon/pz-bkm@1.118.0-rc.8
|
|
51
|
-
- @akinon/pz-checkout-gift-pack@1.118.0-rc.8
|
|
52
|
-
- @akinon/pz-click-collect@1.118.0-rc.8
|
|
53
|
-
- @akinon/pz-credit-payment@1.118.0-rc.8
|
|
54
|
-
- @akinon/pz-cybersource-uc@1.118.0-rc.8
|
|
55
|
-
- @akinon/pz-flow-payment@1.118.0-rc.8
|
|
56
|
-
- @akinon/pz-google-pay@1.118.0-rc.8
|
|
57
|
-
- @akinon/pz-gpay@1.118.0-rc.8
|
|
58
|
-
- @akinon/pz-haso@1.118.0-rc.8
|
|
59
|
-
- @akinon/pz-hepsipay@1.118.0-rc.8
|
|
60
|
-
- @akinon/pz-masterpass@1.118.0-rc.8
|
|
61
|
-
- @akinon/pz-masterpass-rest@1.118.0-rc.8
|
|
62
|
-
- @akinon/pz-multi-basket@1.118.0-rc.8
|
|
63
|
-
- @akinon/pz-one-click-checkout@1.118.0-rc.8
|
|
64
|
-
- @akinon/pz-otp@1.118.0-rc.8
|
|
65
|
-
- @akinon/pz-pay-on-delivery@1.118.0-rc.8
|
|
66
|
-
- @akinon/pz-saved-card@1.118.0-rc.8
|
|
67
|
-
- @akinon/pz-similar-products@1.118.0-rc.8
|
|
68
|
-
- @akinon/pz-tabby-extension@1.118.0-rc.8
|
|
69
|
-
- @akinon/pz-tamara-extension@1.118.0-rc.8
|
|
70
|
-
|
|
71
|
-
## 1.118.0-rc.7
|
|
72
|
-
|
|
73
|
-
### Patch Changes
|
|
74
|
-
|
|
75
|
-
- Updated dependencies [63a72000]
|
|
76
|
-
- @akinon/pz-masterpass-rest@1.118.0-rc.7
|
|
77
|
-
- @akinon/next@1.118.0-rc.7
|
|
78
|
-
- @akinon/pz-akifast@1.118.0-rc.7
|
|
79
|
-
- @akinon/pz-apple-pay@1.118.0-rc.7
|
|
80
|
-
- @akinon/pz-b2b@1.118.0-rc.7
|
|
81
|
-
- @akinon/pz-basket-gift-pack@1.118.0-rc.7
|
|
82
|
-
- @akinon/pz-bkm@1.118.0-rc.7
|
|
83
|
-
- @akinon/pz-checkout-gift-pack@1.118.0-rc.7
|
|
84
|
-
- @akinon/pz-click-collect@1.118.0-rc.7
|
|
85
|
-
- @akinon/pz-credit-payment@1.118.0-rc.7
|
|
86
|
-
- @akinon/pz-cybersource-uc@1.118.0-rc.7
|
|
87
|
-
- @akinon/pz-flow-payment@1.118.0-rc.7
|
|
88
|
-
- @akinon/pz-google-pay@1.118.0-rc.7
|
|
89
|
-
- @akinon/pz-gpay@1.118.0-rc.7
|
|
90
|
-
- @akinon/pz-haso@1.118.0-rc.7
|
|
91
|
-
- @akinon/pz-hepsipay@1.118.0-rc.7
|
|
92
|
-
- @akinon/pz-masterpass@1.118.0-rc.7
|
|
93
|
-
- @akinon/pz-multi-basket@1.118.0-rc.7
|
|
94
|
-
- @akinon/pz-one-click-checkout@1.118.0-rc.7
|
|
95
|
-
- @akinon/pz-otp@1.118.0-rc.7
|
|
96
|
-
- @akinon/pz-pay-on-delivery@1.118.0-rc.7
|
|
97
|
-
- @akinon/pz-saved-card@1.118.0-rc.7
|
|
98
|
-
- @akinon/pz-similar-products@1.118.0-rc.7
|
|
99
|
-
- @akinon/pz-tabby-extension@1.118.0-rc.7
|
|
100
|
-
- @akinon/pz-tamara-extension@1.118.0-rc.7
|
|
101
|
-
- @akinon/pz-virtual-try-on@1.118.0-rc.7
|
|
102
|
-
|
|
103
|
-
## 1.118.0-rc.6
|
|
104
|
-
|
|
105
|
-
### Minor Changes
|
|
106
|
-
|
|
107
|
-
- 6ad72e8d: ZERO-4032: Add loading state management for payment submissions across multiple components and add safe guarding
|
|
108
|
-
|
|
109
|
-
### Patch Changes
|
|
110
|
-
|
|
111
|
-
- Updated dependencies [6ad72e8d]
|
|
112
|
-
- @akinon/pz-pay-on-delivery@1.118.0-rc.6
|
|
113
|
-
- @akinon/pz-credit-payment@1.118.0-rc.6
|
|
114
|
-
- @akinon/pz-google-pay@1.118.0-rc.6
|
|
115
|
-
- @akinon/pz-masterpass@1.118.0-rc.6
|
|
116
|
-
- @akinon/pz-saved-card@1.118.0-rc.6
|
|
117
|
-
- @akinon/pz-apple-pay@1.118.0-rc.6
|
|
118
|
-
- @akinon/pz-hepsipay@1.118.0-rc.6
|
|
119
|
-
- @akinon/pz-gpay@1.118.0-rc.6
|
|
120
|
-
- @akinon/pz-bkm@1.118.0-rc.6
|
|
121
|
-
- @akinon/pz-otp@1.118.0-rc.6
|
|
122
|
-
- @akinon/next@1.118.0-rc.6
|
|
123
|
-
- @akinon/pz-akifast@1.118.0-rc.6
|
|
124
|
-
- @akinon/pz-b2b@1.118.0-rc.6
|
|
125
|
-
- @akinon/pz-basket-gift-pack@1.118.0-rc.6
|
|
126
|
-
- @akinon/pz-checkout-gift-pack@1.118.0-rc.6
|
|
127
|
-
- @akinon/pz-click-collect@1.118.0-rc.6
|
|
128
|
-
- @akinon/pz-cybersource-uc@1.118.0-rc.6
|
|
129
|
-
- @akinon/pz-flow-payment@1.118.0-rc.6
|
|
130
|
-
- @akinon/pz-haso@1.118.0-rc.6
|
|
131
|
-
- @akinon/pz-masterpass-rest@1.118.0-rc.6
|
|
132
|
-
- @akinon/pz-multi-basket@1.118.0-rc.6
|
|
133
|
-
- @akinon/pz-one-click-checkout@1.118.0-rc.6
|
|
134
|
-
- @akinon/pz-similar-products@1.118.0-rc.6
|
|
135
|
-
- @akinon/pz-tabby-extension@1.118.0-rc.6
|
|
136
|
-
- @akinon/pz-tamara-extension@1.118.0-rc.6
|
|
137
|
-
- @akinon/pz-virtual-try-on@1.118.0-rc.6
|
|
138
|
-
|
|
139
|
-
## 1.118.0-rc.5
|
|
140
|
-
|
|
141
|
-
### Patch Changes
|
|
142
|
-
|
|
143
|
-
- Updated dependencies [aef81c5d]
|
|
144
|
-
- Updated dependencies [49c82e1a]
|
|
145
|
-
- @akinon/next@1.118.0-rc.5
|
|
146
|
-
- @akinon/pz-virtual-try-on@1.118.0-rc.5
|
|
147
|
-
- @akinon/pz-akifast@1.118.0-rc.5
|
|
148
|
-
- @akinon/pz-apple-pay@1.118.0-rc.5
|
|
149
|
-
- @akinon/pz-b2b@1.118.0-rc.5
|
|
150
|
-
- @akinon/pz-basket-gift-pack@1.118.0-rc.5
|
|
151
|
-
- @akinon/pz-bkm@1.118.0-rc.5
|
|
152
|
-
- @akinon/pz-checkout-gift-pack@1.118.0-rc.5
|
|
153
|
-
- @akinon/pz-click-collect@1.118.0-rc.5
|
|
154
|
-
- @akinon/pz-credit-payment@1.118.0-rc.5
|
|
155
|
-
- @akinon/pz-cybersource-uc@1.118.0-rc.5
|
|
156
|
-
- @akinon/pz-flow-payment@1.118.0-rc.5
|
|
157
|
-
- @akinon/pz-google-pay@1.118.0-rc.5
|
|
158
|
-
- @akinon/pz-gpay@1.118.0-rc.5
|
|
159
|
-
- @akinon/pz-haso@1.118.0-rc.5
|
|
160
|
-
- @akinon/pz-hepsipay@1.118.0-rc.5
|
|
161
|
-
- @akinon/pz-masterpass@1.118.0-rc.5
|
|
162
|
-
- @akinon/pz-masterpass-rest@1.118.0-rc.5
|
|
163
|
-
- @akinon/pz-multi-basket@1.118.0-rc.5
|
|
164
|
-
- @akinon/pz-one-click-checkout@1.118.0-rc.5
|
|
165
|
-
- @akinon/pz-otp@1.118.0-rc.5
|
|
166
|
-
- @akinon/pz-pay-on-delivery@1.118.0-rc.5
|
|
167
|
-
- @akinon/pz-saved-card@1.118.0-rc.5
|
|
168
|
-
- @akinon/pz-similar-products@1.118.0-rc.5
|
|
169
|
-
- @akinon/pz-tabby-extension@1.118.0-rc.5
|
|
170
|
-
- @akinon/pz-tamara-extension@1.118.0-rc.5
|
|
171
|
-
|
|
172
|
-
## 1.118.0-rc.4
|
|
173
|
-
|
|
174
|
-
### Patch Changes
|
|
175
|
-
|
|
176
|
-
- Updated dependencies [0754c835]
|
|
177
|
-
- @akinon/next@1.118.0-rc.4
|
|
178
|
-
- @akinon/pz-virtual-try-on@1.118.0-rc.4
|
|
179
|
-
- @akinon/pz-akifast@1.118.0-rc.4
|
|
180
|
-
- @akinon/pz-apple-pay@1.118.0-rc.4
|
|
181
|
-
- @akinon/pz-b2b@1.118.0-rc.4
|
|
182
|
-
- @akinon/pz-basket-gift-pack@1.118.0-rc.4
|
|
183
|
-
- @akinon/pz-bkm@1.118.0-rc.4
|
|
184
|
-
- @akinon/pz-checkout-gift-pack@1.118.0-rc.4
|
|
185
|
-
- @akinon/pz-click-collect@1.118.0-rc.4
|
|
186
|
-
- @akinon/pz-credit-payment@1.118.0-rc.4
|
|
187
|
-
- @akinon/pz-cybersource-uc@1.118.0-rc.4
|
|
188
|
-
- @akinon/pz-flow-payment@1.118.0-rc.4
|
|
189
|
-
- @akinon/pz-google-pay@1.118.0-rc.4
|
|
190
|
-
- @akinon/pz-gpay@1.118.0-rc.4
|
|
191
|
-
- @akinon/pz-haso@1.118.0-rc.4
|
|
192
|
-
- @akinon/pz-hepsipay@1.118.0-rc.4
|
|
193
|
-
- @akinon/pz-masterpass@1.118.0-rc.4
|
|
194
|
-
- @akinon/pz-masterpass-rest@1.118.0-rc.4
|
|
195
|
-
- @akinon/pz-multi-basket@1.118.0-rc.4
|
|
196
|
-
- @akinon/pz-one-click-checkout@1.118.0-rc.4
|
|
197
|
-
- @akinon/pz-otp@1.118.0-rc.4
|
|
198
|
-
- @akinon/pz-pay-on-delivery@1.118.0-rc.4
|
|
199
|
-
- @akinon/pz-saved-card@1.118.0-rc.4
|
|
200
|
-
- @akinon/pz-similar-products@1.118.0-rc.4
|
|
201
|
-
- @akinon/pz-tabby-extension@1.118.0-rc.4
|
|
202
|
-
- @akinon/pz-tamara-extension@1.118.0-rc.4
|
|
203
|
-
|
|
204
|
-
## 1.118.0-rc.3
|
|
205
|
-
|
|
206
|
-
### Patch Changes
|
|
207
|
-
|
|
208
|
-
- Updated dependencies [94a86fcc]
|
|
209
|
-
- @akinon/next@1.118.0-rc.3
|
|
210
|
-
- @akinon/pz-virtual-try-on@1.118.0-rc.3
|
|
211
|
-
- @akinon/pz-akifast@1.118.0-rc.3
|
|
212
|
-
- @akinon/pz-apple-pay@1.118.0-rc.3
|
|
213
|
-
- @akinon/pz-b2b@1.118.0-rc.3
|
|
214
|
-
- @akinon/pz-basket-gift-pack@1.118.0-rc.3
|
|
215
|
-
- @akinon/pz-bkm@1.118.0-rc.3
|
|
216
|
-
- @akinon/pz-checkout-gift-pack@1.118.0-rc.3
|
|
217
|
-
- @akinon/pz-click-collect@1.118.0-rc.3
|
|
218
|
-
- @akinon/pz-credit-payment@1.118.0-rc.3
|
|
219
|
-
- @akinon/pz-cybersource-uc@1.118.0-rc.3
|
|
220
|
-
- @akinon/pz-flow-payment@1.118.0-rc.3
|
|
221
|
-
- @akinon/pz-google-pay@1.118.0-rc.3
|
|
222
|
-
- @akinon/pz-gpay@1.118.0-rc.3
|
|
223
|
-
- @akinon/pz-haso@1.118.0-rc.3
|
|
224
|
-
- @akinon/pz-hepsipay@1.118.0-rc.3
|
|
225
|
-
- @akinon/pz-masterpass@1.118.0-rc.3
|
|
226
|
-
- @akinon/pz-masterpass-rest@1.118.0-rc.3
|
|
227
|
-
- @akinon/pz-multi-basket@1.118.0-rc.3
|
|
228
|
-
- @akinon/pz-one-click-checkout@1.118.0-rc.3
|
|
229
|
-
- @akinon/pz-otp@1.118.0-rc.3
|
|
230
|
-
- @akinon/pz-pay-on-delivery@1.118.0-rc.3
|
|
231
|
-
- @akinon/pz-saved-card@1.118.0-rc.3
|
|
232
|
-
- @akinon/pz-similar-products@1.118.0-rc.3
|
|
233
|
-
- @akinon/pz-tabby-extension@1.118.0-rc.3
|
|
234
|
-
- @akinon/pz-tamara-extension@1.118.0-rc.3
|
|
235
|
-
|
|
236
|
-
## 1.118.0-rc.2
|
|
237
|
-
|
|
238
|
-
### Patch Changes
|
|
239
|
-
|
|
240
|
-
- Updated dependencies [8a7fd0f4]
|
|
241
|
-
- @akinon/next@1.118.0-rc.2
|
|
242
|
-
- @akinon/pz-virtual-try-on@1.118.0-rc.2
|
|
243
|
-
- @akinon/pz-akifast@1.118.0-rc.2
|
|
244
|
-
- @akinon/pz-apple-pay@1.118.0-rc.2
|
|
245
|
-
- @akinon/pz-b2b@1.118.0-rc.2
|
|
246
|
-
- @akinon/pz-basket-gift-pack@1.118.0-rc.2
|
|
247
|
-
- @akinon/pz-bkm@1.118.0-rc.2
|
|
248
|
-
- @akinon/pz-checkout-gift-pack@1.118.0-rc.2
|
|
249
|
-
- @akinon/pz-click-collect@1.118.0-rc.2
|
|
250
|
-
- @akinon/pz-credit-payment@1.118.0-rc.2
|
|
251
|
-
- @akinon/pz-cybersource-uc@1.118.0-rc.2
|
|
252
|
-
- @akinon/pz-flow-payment@1.118.0-rc.2
|
|
253
|
-
- @akinon/pz-google-pay@1.118.0-rc.2
|
|
254
|
-
- @akinon/pz-gpay@1.118.0-rc.2
|
|
255
|
-
- @akinon/pz-haso@1.118.0-rc.2
|
|
256
|
-
- @akinon/pz-hepsipay@1.118.0-rc.2
|
|
257
|
-
- @akinon/pz-masterpass@1.118.0-rc.2
|
|
258
|
-
- @akinon/pz-masterpass-rest@1.118.0-rc.2
|
|
259
|
-
- @akinon/pz-multi-basket@1.118.0-rc.2
|
|
260
|
-
- @akinon/pz-one-click-checkout@1.118.0-rc.2
|
|
261
|
-
- @akinon/pz-otp@1.118.0-rc.2
|
|
262
|
-
- @akinon/pz-pay-on-delivery@1.118.0-rc.2
|
|
263
|
-
- @akinon/pz-saved-card@1.118.0-rc.2
|
|
264
|
-
- @akinon/pz-similar-products@1.118.0-rc.2
|
|
265
|
-
- @akinon/pz-tabby-extension@1.118.0-rc.2
|
|
266
|
-
- @akinon/pz-tamara-extension@1.118.0-rc.2
|
|
267
|
-
|
|
268
|
-
## 1.118.0-rc.1
|
|
3
|
+
## 1.118.0
|
|
269
4
|
|
|
270
5
|
### Patch Changes
|
|
271
6
|
|
|
272
|
-
- Updated dependencies [5978903a]
|
|
273
|
-
- @akinon/pz-masterpass-rest@1.118.0-rc.1
|
|
274
|
-
- @akinon/next@1.118.0-rc.1
|
|
275
|
-
- @akinon/pz-akifast@1.118.0-rc.1
|
|
276
|
-
- @akinon/pz-apple-pay@1.118.0-rc.1
|
|
277
|
-
- @akinon/pz-b2b@1.118.0-rc.1
|
|
278
|
-
- @akinon/pz-basket-gift-pack@1.118.0-rc.1
|
|
279
|
-
- @akinon/pz-bkm@1.118.0-rc.1
|
|
280
|
-
- @akinon/pz-checkout-gift-pack@1.118.0-rc.1
|
|
281
|
-
- @akinon/pz-click-collect@1.118.0-rc.1
|
|
282
|
-
- @akinon/pz-credit-payment@1.118.0-rc.1
|
|
283
|
-
- @akinon/pz-cybersource-uc@1.118.0-rc.1
|
|
284
|
-
- @akinon/pz-flow-payment@1.118.0-rc.1
|
|
285
|
-
- @akinon/pz-google-pay@1.118.0-rc.1
|
|
286
|
-
- @akinon/pz-gpay@1.118.0-rc.1
|
|
287
|
-
- @akinon/pz-haso@1.118.0-rc.1
|
|
288
|
-
- @akinon/pz-hepsipay@1.118.0-rc.1
|
|
289
|
-
- @akinon/pz-masterpass@1.118.0-rc.1
|
|
290
|
-
- @akinon/pz-multi-basket@1.118.0-rc.1
|
|
291
|
-
- @akinon/pz-one-click-checkout@1.118.0-rc.1
|
|
292
|
-
- @akinon/pz-otp@1.118.0-rc.1
|
|
293
|
-
- @akinon/pz-pay-on-delivery@1.118.0-rc.1
|
|
294
|
-
- @akinon/pz-saved-card@1.118.0-rc.1
|
|
295
|
-
- @akinon/pz-similar-products@1.118.0-rc.1
|
|
296
|
-
- @akinon/pz-tabby-extension@1.118.0-rc.1
|
|
297
|
-
- @akinon/pz-tamara-extension@1.118.0-rc.1
|
|
298
|
-
- @akinon/pz-virtual-try-on@1.118.0-rc.1
|
|
299
|
-
|
|
300
|
-
## 1.118.0-rc.0
|
|
301
|
-
|
|
302
|
-
### Minor Changes
|
|
303
|
-
|
|
304
|
-
- 4449f3a3: ZERO-3681: Add order details localization and improve order handling in AccountOrderDetail
|
|
305
|
-
- 1a8622a9: ZERO-3392: Implemented AI Search functionality and update env
|
|
306
|
-
- b55acb76: ZERO-2577: Fix pagination bug and update usePagination hook and ensure pagination controls rendering correctly
|
|
307
|
-
- 36143125: ZERO-3987: Add barcode scanner functionality with modal and button
|
|
308
|
-
- f7e0f646: ZERO-4032: Add bfcache-headers middleware, integrate it into the default chain, and introduce a new environment variable for control.
|
|
309
|
-
- 143be2b9: ZERO-3457: Crop styles are customizable and logic improved for rendering similar products modal
|
|
310
|
-
- 9f8cd3bc: ZERO-3449: AI Search Active Filters & Crop Style changes have been implemented
|
|
311
|
-
- 5fb34b5c: ZERO-3955: Add aspect ratio validation and error handling for image cropping
|
|
312
|
-
- d99a6a7d: ZERO-3457_1: Fixed the settings prop and made sure everything is customizable.
|
|
313
|
-
- b87517ff: ZERO-3680: Enhance select component styling to ensure focus state is consistent
|
|
314
|
-
- b59fdd1c: ZERO-4009: Add password reset token validation
|
|
315
|
-
- d76d3255: ZERO-4011: Refactor sitemap content generation to append locale suffix based on matched locale
|
|
316
|
-
- b05c3543: ZERO-2570: Category filters routes to absolute url
|
|
317
|
-
- c3244a31: ZERO-4013: Update runtime version to node:25-alpine in project configuration
|
|
318
|
-
|
|
319
|
-
### Patch Changes
|
|
320
|
-
|
|
321
|
-
- Updated dependencies [4798959a]
|
|
322
7
|
- Updated dependencies [5514352a]
|
|
323
|
-
- Updated dependencies [d2c0e759]
|
|
324
8
|
- Updated dependencies [86f2570b]
|
|
325
9
|
- Updated dependencies [90b1dd7a]
|
|
326
10
|
- Updated dependencies [5514352a]
|
|
327
|
-
- Updated dependencies [b55acb76]
|
|
328
|
-
- Updated dependencies [36143125]
|
|
329
|
-
- Updated dependencies [572f4f7b]
|
|
330
|
-
- Updated dependencies [f7e0f646]
|
|
331
|
-
- Updated dependencies [143be2b9]
|
|
332
11
|
- Updated dependencies [c706a270]
|
|
333
|
-
- Updated dependencies [9f8cd3bc]
|
|
334
12
|
- Updated dependencies [0d33d9ac]
|
|
335
13
|
- Updated dependencies [644a2fa2]
|
|
336
14
|
- Updated dependencies [729fe756]
|
|
337
|
-
- Updated dependencies [5fb34b5c]
|
|
338
|
-
- Updated dependencies [88cb4f62]
|
|
339
|
-
- Updated dependencies [d99a6a7d]
|
|
340
|
-
- Updated dependencies [d7e5178b]
|
|
341
|
-
- Updated dependencies [591e345e]
|
|
342
|
-
- Updated dependencies [187208d2]
|
|
343
15
|
- Updated dependencies [ee191e6f]
|
|
344
|
-
- Updated dependencies [4de5303c]
|
|
345
16
|
- Updated dependencies [89b9d839]
|
|
346
|
-
- Updated dependencies [
|
|
347
|
-
- Updated dependencies [
|
|
17
|
+
- Updated dependencies [0c68cbfe]
|
|
18
|
+
- Updated dependencies [5978903a]
|
|
348
19
|
- Updated dependencies [9f346703]
|
|
349
|
-
- Updated dependencies [3909d322]
|
|
350
|
-
- Updated dependencies [6b73b050]
|
|
351
20
|
- Updated dependencies [5ae86358]
|
|
352
|
-
- @akinon/pz-masterpass-rest@1.118.0
|
|
353
|
-
- @akinon/next@1.118.0
|
|
354
|
-
- @akinon/pz-virtual-try-on@1.118.0
|
|
355
|
-
- @akinon/pz-
|
|
356
|
-
- @akinon/pz-
|
|
357
|
-
- @akinon/pz-
|
|
358
|
-
- @akinon/pz-
|
|
359
|
-
- @akinon/pz-
|
|
360
|
-
- @akinon/pz-
|
|
361
|
-
- @akinon/pz-
|
|
362
|
-
- @akinon/pz-
|
|
363
|
-
- @akinon/pz-
|
|
364
|
-
- @akinon/pz-
|
|
365
|
-
- @akinon/pz-
|
|
366
|
-
- @akinon/pz-
|
|
367
|
-
- @akinon/pz-
|
|
368
|
-
- @akinon/pz-
|
|
369
|
-
- @akinon/pz-
|
|
370
|
-
- @akinon/pz-
|
|
371
|
-
- @akinon/pz-
|
|
372
|
-
- @akinon/pz-
|
|
373
|
-
- @akinon/pz-
|
|
374
|
-
- @akinon/pz-
|
|
375
|
-
- @akinon/pz-
|
|
376
|
-
- @akinon/pz-tabby-extension@1.118.0
|
|
377
|
-
- @akinon/pz-tamara-extension@1.118.0
|
|
21
|
+
- @akinon/pz-masterpass-rest@1.118.0
|
|
22
|
+
- @akinon/next@1.118.0
|
|
23
|
+
- @akinon/pz-virtual-try-on@1.118.0
|
|
24
|
+
- @akinon/pz-akifast@1.118.0
|
|
25
|
+
- @akinon/pz-apple-pay@1.118.0
|
|
26
|
+
- @akinon/pz-b2b@1.118.0
|
|
27
|
+
- @akinon/pz-basket-gift-pack@1.118.0
|
|
28
|
+
- @akinon/pz-bkm@1.118.0
|
|
29
|
+
- @akinon/pz-checkout-gift-pack@1.118.0
|
|
30
|
+
- @akinon/pz-click-collect@1.118.0
|
|
31
|
+
- @akinon/pz-credit-payment@1.118.0
|
|
32
|
+
- @akinon/pz-cybersource-uc@1.118.0
|
|
33
|
+
- @akinon/pz-flow-payment@1.118.0
|
|
34
|
+
- @akinon/pz-google-pay@1.118.0
|
|
35
|
+
- @akinon/pz-gpay@1.118.0
|
|
36
|
+
- @akinon/pz-haso@1.118.0
|
|
37
|
+
- @akinon/pz-hepsipay@1.118.0
|
|
38
|
+
- @akinon/pz-masterpass@1.118.0
|
|
39
|
+
- @akinon/pz-multi-basket@1.118.0
|
|
40
|
+
- @akinon/pz-one-click-checkout@1.118.0
|
|
41
|
+
- @akinon/pz-otp@1.118.0
|
|
42
|
+
- @akinon/pz-pay-on-delivery@1.118.0
|
|
43
|
+
- @akinon/pz-saved-card@1.118.0
|
|
44
|
+
- @akinon/pz-similar-products@1.118.0
|
|
45
|
+
- @akinon/pz-tabby-extension@1.118.0
|
|
46
|
+
- @akinon/pz-tamara-extension@1.118.0
|
|
378
47
|
|
|
379
48
|
## 1.117.0
|
|
380
49
|
|
package/app-template/README.md
CHANGED
|
@@ -12,30 +12,6 @@ Run `cp .env.example .env && yarn` command at project root and all dependencies
|
|
|
12
12
|
|
|
13
13
|
- `SITEMAP_S3_BUCKET_NAME`: S3 bucket name for XML sitemaps (e.g., "0fb534"). This is required for the sitemap route to function correctly.
|
|
14
14
|
|
|
15
|
-
### Optional Environment Variables
|
|
16
|
-
|
|
17
|
-
- `NEXT_PUBLIC_ENABLE_IMAGE_SEARCH`: Set to `true` to enable image search feature for all users. If not set or `false`, the feature will only be visible to users who have enabled it via localStorage.
|
|
18
|
-
|
|
19
|
-
## Image Search Feature
|
|
20
|
-
|
|
21
|
-
The image search functionality allows users to search for similar products by uploading images or cropping existing product images.
|
|
22
|
-
|
|
23
|
-
### Feature Visibility Control
|
|
24
|
-
|
|
25
|
-
The image search feature can be controlled in two ways:
|
|
26
|
-
|
|
27
|
-
1. **Environment Variable (Global)**: Set `NEXT_PUBLIC_ENABLE_IMAGE_SEARCH=true` to enable for all users
|
|
28
|
-
2. **localStorage (Individual Users)**: Users can enable it locally using browser developer tools
|
|
29
|
-
|
|
30
|
-
````
|
|
31
|
-
|
|
32
|
-
### Feature Locations
|
|
33
|
-
|
|
34
|
-
When enabled, the image search feature appears in:
|
|
35
|
-
|
|
36
|
-
- **Header Search**: Camera icon next to the search input
|
|
37
|
-
- **Product Detail Page**: "View Similar Styles" button on product images
|
|
38
|
-
|
|
39
15
|
### Build
|
|
40
16
|
|
|
41
17
|
To build the app, run the following command:
|
|
@@ -43,7 +19,7 @@ To build the app, run the following command:
|
|
|
43
19
|
```bash
|
|
44
20
|
cd projectzeronext # Project root
|
|
45
21
|
yarn build
|
|
46
|
-
|
|
22
|
+
```
|
|
47
23
|
|
|
48
24
|
### Develop
|
|
49
25
|
|
package/app-template/akinon.json
CHANGED
|
@@ -41,13 +41,3 @@ const middleware: NextMiddleware = (
|
|
|
41
41
|
return NextResponse.next();
|
|
42
42
|
};
|
|
43
43
|
```
|
|
44
|
-
|
|
45
|
-
## Enabling Browser Back/Forward Cache (bfcache)
|
|
46
|
-
|
|
47
|
-
By default, dynamic pages may include `Cache-Control: no-store` headers, which prevents browsers from using the back/forward cache (bfcache). To enable bfcache support, set the `BF_CACHE` environment variable to `true`:
|
|
48
|
-
|
|
49
|
-
```bash
|
|
50
|
-
BF_CACHE=true
|
|
51
|
-
```
|
|
52
|
-
|
|
53
|
-
When enabled, a middleware wrapper overrides the `Cache-Control` header to `private, no-cache, max-age=0, must-revalidate`, allowing the browser to cache pages for instant back/forward navigation while still revalidating content on revisit.
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "projectzeronext",
|
|
3
|
-
"version": "1.118.0
|
|
3
|
+
"version": "1.118.0",
|
|
4
4
|
"private": true,
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"scripts": {
|
|
@@ -24,32 +24,32 @@
|
|
|
24
24
|
"test:middleware": "jest middleware-matcher.test.ts --bail"
|
|
25
25
|
},
|
|
26
26
|
"dependencies": {
|
|
27
|
-
"@akinon/next": "1.118.0
|
|
28
|
-
"@akinon/pz-akifast": "1.118.0
|
|
29
|
-
"@akinon/pz-apple-pay": "1.118.0
|
|
30
|
-
"@akinon/pz-b2b": "1.118.0
|
|
31
|
-
"@akinon/pz-basket-gift-pack": "1.118.0
|
|
32
|
-
"@akinon/pz-bkm": "1.118.0
|
|
33
|
-
"@akinon/pz-checkout-gift-pack": "1.118.0
|
|
34
|
-
"@akinon/pz-click-collect": "1.118.0
|
|
35
|
-
"@akinon/pz-credit-payment": "1.118.0
|
|
36
|
-
"@akinon/pz-cybersource-uc": "1.118.0
|
|
37
|
-
"@akinon/pz-flow-payment": "1.118.0
|
|
38
|
-
"@akinon/pz-google-pay": "1.118.0
|
|
39
|
-
"@akinon/pz-gpay": "1.118.0
|
|
40
|
-
"@akinon/pz-haso": "1.118.0
|
|
41
|
-
"@akinon/pz-hepsipay": "1.118.0
|
|
42
|
-
"@akinon/pz-masterpass": "1.118.0
|
|
43
|
-
"@akinon/pz-masterpass-rest": "1.118.0
|
|
44
|
-
"@akinon/pz-multi-basket": "1.118.0
|
|
45
|
-
"@akinon/pz-one-click-checkout": "1.118.0
|
|
46
|
-
"@akinon/pz-otp": "1.118.0
|
|
47
|
-
"@akinon/pz-pay-on-delivery": "1.118.0
|
|
48
|
-
"@akinon/pz-saved-card": "1.118.0
|
|
49
|
-
"@akinon/pz-similar-products": "1.118.0
|
|
50
|
-
"@akinon/pz-tabby-extension": "1.118.0
|
|
51
|
-
"@akinon/pz-tamara-extension": "1.118.0
|
|
52
|
-
"@akinon/pz-virtual-try-on": "1.118.0
|
|
27
|
+
"@akinon/next": "1.118.0",
|
|
28
|
+
"@akinon/pz-akifast": "1.118.0",
|
|
29
|
+
"@akinon/pz-apple-pay": "1.118.0",
|
|
30
|
+
"@akinon/pz-b2b": "1.118.0",
|
|
31
|
+
"@akinon/pz-basket-gift-pack": "1.118.0",
|
|
32
|
+
"@akinon/pz-bkm": "1.118.0",
|
|
33
|
+
"@akinon/pz-checkout-gift-pack": "1.118.0",
|
|
34
|
+
"@akinon/pz-click-collect": "1.118.0",
|
|
35
|
+
"@akinon/pz-credit-payment": "1.118.0",
|
|
36
|
+
"@akinon/pz-cybersource-uc": "1.118.0",
|
|
37
|
+
"@akinon/pz-flow-payment": "1.118.0",
|
|
38
|
+
"@akinon/pz-google-pay": "1.118.0",
|
|
39
|
+
"@akinon/pz-gpay": "1.118.0",
|
|
40
|
+
"@akinon/pz-haso": "1.118.0",
|
|
41
|
+
"@akinon/pz-hepsipay": "1.118.0",
|
|
42
|
+
"@akinon/pz-masterpass": "1.118.0",
|
|
43
|
+
"@akinon/pz-masterpass-rest": "1.118.0",
|
|
44
|
+
"@akinon/pz-multi-basket": "1.118.0",
|
|
45
|
+
"@akinon/pz-one-click-checkout": "1.118.0",
|
|
46
|
+
"@akinon/pz-otp": "1.118.0",
|
|
47
|
+
"@akinon/pz-pay-on-delivery": "1.118.0",
|
|
48
|
+
"@akinon/pz-saved-card": "1.118.0",
|
|
49
|
+
"@akinon/pz-similar-products": "1.118.0",
|
|
50
|
+
"@akinon/pz-tabby-extension": "1.118.0",
|
|
51
|
+
"@akinon/pz-tamara-extension": "1.118.0",
|
|
52
|
+
"@akinon/pz-virtual-try-on": "1.118.0",
|
|
53
53
|
"@hookform/resolvers": "2.9.0",
|
|
54
54
|
"@next/third-parties": "14.1.0",
|
|
55
55
|
"@react-google-maps/api": "2.17.1",
|
|
@@ -72,7 +72,7 @@
|
|
|
72
72
|
"yup": "0.32.11"
|
|
73
73
|
},
|
|
74
74
|
"devDependencies": {
|
|
75
|
-
"@akinon/eslint-plugin-projectzero": "1.118.0
|
|
75
|
+
"@akinon/eslint-plugin-projectzero": "1.118.0",
|
|
76
76
|
"@semantic-release/changelog": "6.0.2",
|
|
77
77
|
"@semantic-release/exec": "6.0.3",
|
|
78
78
|
"@semantic-release/git": "10.0.1",
|
|
@@ -242,9 +242,7 @@
|
|
|
242
242
|
"total": "Total",
|
|
243
243
|
"items": "items",
|
|
244
244
|
"packages": "Packages",
|
|
245
|
-
"package_no": "Package no"
|
|
246
|
-
"back_to_orders": "Back to Orders",
|
|
247
|
-
"no_orders_found": "No orders found"
|
|
245
|
+
"package_no": "Package no"
|
|
248
246
|
},
|
|
249
247
|
"return": {
|
|
250
248
|
"title": "Return Items",
|
|
@@ -86,8 +86,6 @@
|
|
|
86
86
|
"multiple_results_subtitle": "Try-on completed for {{count}} products",
|
|
87
87
|
"error_incompatible": "Image Not Compatible",
|
|
88
88
|
"error_auto_reported": "Error automatically reported",
|
|
89
|
-
"error_aspect_ratio_too_tall": "The image is too tall. Maximum allowed ratio is 9:16 (portrait). Please crop or use a different image.",
|
|
90
|
-
"error_aspect_ratio_too_wide": "The image is too wide. Maximum allowed ratio is 21:9 (landscape). Please crop or use a different image.",
|
|
91
89
|
"feedback_question": "How was the result?",
|
|
92
90
|
"feedback_success": "Success",
|
|
93
91
|
"feedback_failed": "Failed",
|
|
@@ -98,21 +96,5 @@
|
|
|
98
96
|
"starting": "Starting...",
|
|
99
97
|
"will_start": "will start virtual try-on for",
|
|
100
98
|
"products_count": "products"
|
|
101
|
-
},
|
|
102
|
-
"barcode_scanner": {
|
|
103
|
-
"title": "Scan Barcode",
|
|
104
|
-
"button_label": "Barcode Scanner",
|
|
105
|
-
"button_text": "Try on products in store",
|
|
106
|
-
"help_text": "Point your camera at the product barcode",
|
|
107
|
-
"scan_more_help": "To scan another product, point your camera at the new barcode.",
|
|
108
|
-
"searching": "Searching for product...",
|
|
109
|
-
"continue_to_vto": "Continue to Virtual Cabin",
|
|
110
|
-
"permission_denied_title": "Camera Permission Required",
|
|
111
|
-
"permission_denied_message": "You need to allow camera access for the barcode scanner.",
|
|
112
|
-
"try_again": "Try Again",
|
|
113
|
-
"errors": {
|
|
114
|
-
"product_not_found": "No product found for this barcode.",
|
|
115
|
-
"search_failed": "Search failed. Please try again."
|
|
116
|
-
}
|
|
117
99
|
}
|
|
118
100
|
}
|
|
@@ -242,9 +242,7 @@
|
|
|
242
242
|
"total": "Toplam",
|
|
243
243
|
"items": "adet",
|
|
244
244
|
"packages": "paket",
|
|
245
|
-
"package_no": "Paket no"
|
|
246
|
-
"back_to_orders": "Siparişlere geri dön",
|
|
247
|
-
"no_orders_found": "Sipariş bulunamadı"
|
|
245
|
+
"package_no": "Paket no"
|
|
248
246
|
},
|
|
249
247
|
"return": {
|
|
250
248
|
"title": "İade Ürünleri",
|