@akinon/projectzero 1.118.0-rc.8 → 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 -22
- package/app-template/.env.example +0 -3
- package/app-template/CHANGELOG.md +29 -328
- 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,27 +1,6 @@
|
|
|
1
1
|
# @akinon/projectzero
|
|
2
2
|
|
|
3
|
-
## 1.118.0
|
|
4
|
-
|
|
5
|
-
## 1.118.0-rc.7
|
|
6
|
-
|
|
7
|
-
## 1.118.0-rc.6
|
|
8
|
-
|
|
9
|
-
## 1.118.0-rc.5
|
|
10
|
-
|
|
11
|
-
## 1.118.0-rc.4
|
|
12
|
-
|
|
13
|
-
## 1.118.0-rc.3
|
|
14
|
-
|
|
15
|
-
## 1.118.0-rc.2
|
|
16
|
-
|
|
17
|
-
## 1.118.0-rc.1
|
|
18
|
-
|
|
19
|
-
## 1.118.0-rc.0
|
|
20
|
-
|
|
21
|
-
### Minor Changes
|
|
22
|
-
|
|
23
|
-
- 143be2b9: ZERO-3457: Crop styles are customizable and logic improved for rendering similar products modal
|
|
24
|
-
- d99a6a7d: ZERO-3457_1: Fixed the settings prop and made sure everything is customizable.
|
|
3
|
+
## 1.118.0
|
|
25
4
|
|
|
26
5
|
## 1.117.0
|
|
27
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,348 +1,49 @@
|
|
|
1
1
|
# projectzeronext
|
|
2
2
|
|
|
3
|
-
## 1.118.0
|
|
4
|
-
|
|
5
|
-
### Minor Changes
|
|
6
|
-
|
|
7
|
-
- 31b4a266: ZERO-4102: Add support for post-checkout redirect in middleware
|
|
8
|
-
|
|
9
|
-
### Patch Changes
|
|
10
|
-
|
|
11
|
-
- Updated dependencies [31b4a266]
|
|
12
|
-
- @akinon/next@1.118.0-rc.8
|
|
13
|
-
- @akinon/pz-virtual-try-on@1.118.0-rc.8
|
|
14
|
-
- @akinon/pz-akifast@1.118.0-rc.8
|
|
15
|
-
- @akinon/pz-apple-pay@1.118.0-rc.8
|
|
16
|
-
- @akinon/pz-b2b@1.118.0-rc.8
|
|
17
|
-
- @akinon/pz-basket-gift-pack@1.118.0-rc.8
|
|
18
|
-
- @akinon/pz-bkm@1.118.0-rc.8
|
|
19
|
-
- @akinon/pz-checkout-gift-pack@1.118.0-rc.8
|
|
20
|
-
- @akinon/pz-click-collect@1.118.0-rc.8
|
|
21
|
-
- @akinon/pz-credit-payment@1.118.0-rc.8
|
|
22
|
-
- @akinon/pz-cybersource-uc@1.118.0-rc.8
|
|
23
|
-
- @akinon/pz-flow-payment@1.118.0-rc.8
|
|
24
|
-
- @akinon/pz-google-pay@1.118.0-rc.8
|
|
25
|
-
- @akinon/pz-gpay@1.118.0-rc.8
|
|
26
|
-
- @akinon/pz-haso@1.118.0-rc.8
|
|
27
|
-
- @akinon/pz-hepsipay@1.118.0-rc.8
|
|
28
|
-
- @akinon/pz-masterpass@1.118.0-rc.8
|
|
29
|
-
- @akinon/pz-masterpass-rest@1.118.0-rc.8
|
|
30
|
-
- @akinon/pz-multi-basket@1.118.0-rc.8
|
|
31
|
-
- @akinon/pz-one-click-checkout@1.118.0-rc.8
|
|
32
|
-
- @akinon/pz-otp@1.118.0-rc.8
|
|
33
|
-
- @akinon/pz-pay-on-delivery@1.118.0-rc.8
|
|
34
|
-
- @akinon/pz-saved-card@1.118.0-rc.8
|
|
35
|
-
- @akinon/pz-similar-products@1.118.0-rc.8
|
|
36
|
-
- @akinon/pz-tabby-extension@1.118.0-rc.8
|
|
37
|
-
- @akinon/pz-tamara-extension@1.118.0-rc.8
|
|
38
|
-
|
|
39
|
-
## 1.118.0-rc.7
|
|
40
|
-
|
|
41
|
-
### Patch Changes
|
|
42
|
-
|
|
43
|
-
- Updated dependencies [63a72000]
|
|
44
|
-
- @akinon/pz-masterpass-rest@1.118.0-rc.7
|
|
45
|
-
- @akinon/next@1.118.0-rc.7
|
|
46
|
-
- @akinon/pz-akifast@1.118.0-rc.7
|
|
47
|
-
- @akinon/pz-apple-pay@1.118.0-rc.7
|
|
48
|
-
- @akinon/pz-b2b@1.118.0-rc.7
|
|
49
|
-
- @akinon/pz-basket-gift-pack@1.118.0-rc.7
|
|
50
|
-
- @akinon/pz-bkm@1.118.0-rc.7
|
|
51
|
-
- @akinon/pz-checkout-gift-pack@1.118.0-rc.7
|
|
52
|
-
- @akinon/pz-click-collect@1.118.0-rc.7
|
|
53
|
-
- @akinon/pz-credit-payment@1.118.0-rc.7
|
|
54
|
-
- @akinon/pz-cybersource-uc@1.118.0-rc.7
|
|
55
|
-
- @akinon/pz-flow-payment@1.118.0-rc.7
|
|
56
|
-
- @akinon/pz-google-pay@1.118.0-rc.7
|
|
57
|
-
- @akinon/pz-gpay@1.118.0-rc.7
|
|
58
|
-
- @akinon/pz-haso@1.118.0-rc.7
|
|
59
|
-
- @akinon/pz-hepsipay@1.118.0-rc.7
|
|
60
|
-
- @akinon/pz-masterpass@1.118.0-rc.7
|
|
61
|
-
- @akinon/pz-multi-basket@1.118.0-rc.7
|
|
62
|
-
- @akinon/pz-one-click-checkout@1.118.0-rc.7
|
|
63
|
-
- @akinon/pz-otp@1.118.0-rc.7
|
|
64
|
-
- @akinon/pz-pay-on-delivery@1.118.0-rc.7
|
|
65
|
-
- @akinon/pz-saved-card@1.118.0-rc.7
|
|
66
|
-
- @akinon/pz-similar-products@1.118.0-rc.7
|
|
67
|
-
- @akinon/pz-tabby-extension@1.118.0-rc.7
|
|
68
|
-
- @akinon/pz-tamara-extension@1.118.0-rc.7
|
|
69
|
-
- @akinon/pz-virtual-try-on@1.118.0-rc.7
|
|
70
|
-
|
|
71
|
-
## 1.118.0-rc.6
|
|
72
|
-
|
|
73
|
-
### Minor Changes
|
|
74
|
-
|
|
75
|
-
- 6ad72e8d: ZERO-4032: Add loading state management for payment submissions across multiple components and add safe guarding
|
|
76
|
-
|
|
77
|
-
### Patch Changes
|
|
78
|
-
|
|
79
|
-
- Updated dependencies [6ad72e8d]
|
|
80
|
-
- @akinon/pz-pay-on-delivery@1.118.0-rc.6
|
|
81
|
-
- @akinon/pz-credit-payment@1.118.0-rc.6
|
|
82
|
-
- @akinon/pz-google-pay@1.118.0-rc.6
|
|
83
|
-
- @akinon/pz-masterpass@1.118.0-rc.6
|
|
84
|
-
- @akinon/pz-saved-card@1.118.0-rc.6
|
|
85
|
-
- @akinon/pz-apple-pay@1.118.0-rc.6
|
|
86
|
-
- @akinon/pz-hepsipay@1.118.0-rc.6
|
|
87
|
-
- @akinon/pz-gpay@1.118.0-rc.6
|
|
88
|
-
- @akinon/pz-bkm@1.118.0-rc.6
|
|
89
|
-
- @akinon/pz-otp@1.118.0-rc.6
|
|
90
|
-
- @akinon/next@1.118.0-rc.6
|
|
91
|
-
- @akinon/pz-akifast@1.118.0-rc.6
|
|
92
|
-
- @akinon/pz-b2b@1.118.0-rc.6
|
|
93
|
-
- @akinon/pz-basket-gift-pack@1.118.0-rc.6
|
|
94
|
-
- @akinon/pz-checkout-gift-pack@1.118.0-rc.6
|
|
95
|
-
- @akinon/pz-click-collect@1.118.0-rc.6
|
|
96
|
-
- @akinon/pz-cybersource-uc@1.118.0-rc.6
|
|
97
|
-
- @akinon/pz-flow-payment@1.118.0-rc.6
|
|
98
|
-
- @akinon/pz-haso@1.118.0-rc.6
|
|
99
|
-
- @akinon/pz-masterpass-rest@1.118.0-rc.6
|
|
100
|
-
- @akinon/pz-multi-basket@1.118.0-rc.6
|
|
101
|
-
- @akinon/pz-one-click-checkout@1.118.0-rc.6
|
|
102
|
-
- @akinon/pz-similar-products@1.118.0-rc.6
|
|
103
|
-
- @akinon/pz-tabby-extension@1.118.0-rc.6
|
|
104
|
-
- @akinon/pz-tamara-extension@1.118.0-rc.6
|
|
105
|
-
- @akinon/pz-virtual-try-on@1.118.0-rc.6
|
|
106
|
-
|
|
107
|
-
## 1.118.0-rc.5
|
|
108
|
-
|
|
109
|
-
### Patch Changes
|
|
110
|
-
|
|
111
|
-
- Updated dependencies [aef81c5d]
|
|
112
|
-
- Updated dependencies [49c82e1a]
|
|
113
|
-
- @akinon/next@1.118.0-rc.5
|
|
114
|
-
- @akinon/pz-virtual-try-on@1.118.0-rc.5
|
|
115
|
-
- @akinon/pz-akifast@1.118.0-rc.5
|
|
116
|
-
- @akinon/pz-apple-pay@1.118.0-rc.5
|
|
117
|
-
- @akinon/pz-b2b@1.118.0-rc.5
|
|
118
|
-
- @akinon/pz-basket-gift-pack@1.118.0-rc.5
|
|
119
|
-
- @akinon/pz-bkm@1.118.0-rc.5
|
|
120
|
-
- @akinon/pz-checkout-gift-pack@1.118.0-rc.5
|
|
121
|
-
- @akinon/pz-click-collect@1.118.0-rc.5
|
|
122
|
-
- @akinon/pz-credit-payment@1.118.0-rc.5
|
|
123
|
-
- @akinon/pz-cybersource-uc@1.118.0-rc.5
|
|
124
|
-
- @akinon/pz-flow-payment@1.118.0-rc.5
|
|
125
|
-
- @akinon/pz-google-pay@1.118.0-rc.5
|
|
126
|
-
- @akinon/pz-gpay@1.118.0-rc.5
|
|
127
|
-
- @akinon/pz-haso@1.118.0-rc.5
|
|
128
|
-
- @akinon/pz-hepsipay@1.118.0-rc.5
|
|
129
|
-
- @akinon/pz-masterpass@1.118.0-rc.5
|
|
130
|
-
- @akinon/pz-masterpass-rest@1.118.0-rc.5
|
|
131
|
-
- @akinon/pz-multi-basket@1.118.0-rc.5
|
|
132
|
-
- @akinon/pz-one-click-checkout@1.118.0-rc.5
|
|
133
|
-
- @akinon/pz-otp@1.118.0-rc.5
|
|
134
|
-
- @akinon/pz-pay-on-delivery@1.118.0-rc.5
|
|
135
|
-
- @akinon/pz-saved-card@1.118.0-rc.5
|
|
136
|
-
- @akinon/pz-similar-products@1.118.0-rc.5
|
|
137
|
-
- @akinon/pz-tabby-extension@1.118.0-rc.5
|
|
138
|
-
- @akinon/pz-tamara-extension@1.118.0-rc.5
|
|
139
|
-
|
|
140
|
-
## 1.118.0-rc.4
|
|
141
|
-
|
|
142
|
-
### Patch Changes
|
|
143
|
-
|
|
144
|
-
- Updated dependencies [0754c835]
|
|
145
|
-
- @akinon/next@1.118.0-rc.4
|
|
146
|
-
- @akinon/pz-virtual-try-on@1.118.0-rc.4
|
|
147
|
-
- @akinon/pz-akifast@1.118.0-rc.4
|
|
148
|
-
- @akinon/pz-apple-pay@1.118.0-rc.4
|
|
149
|
-
- @akinon/pz-b2b@1.118.0-rc.4
|
|
150
|
-
- @akinon/pz-basket-gift-pack@1.118.0-rc.4
|
|
151
|
-
- @akinon/pz-bkm@1.118.0-rc.4
|
|
152
|
-
- @akinon/pz-checkout-gift-pack@1.118.0-rc.4
|
|
153
|
-
- @akinon/pz-click-collect@1.118.0-rc.4
|
|
154
|
-
- @akinon/pz-credit-payment@1.118.0-rc.4
|
|
155
|
-
- @akinon/pz-cybersource-uc@1.118.0-rc.4
|
|
156
|
-
- @akinon/pz-flow-payment@1.118.0-rc.4
|
|
157
|
-
- @akinon/pz-google-pay@1.118.0-rc.4
|
|
158
|
-
- @akinon/pz-gpay@1.118.0-rc.4
|
|
159
|
-
- @akinon/pz-haso@1.118.0-rc.4
|
|
160
|
-
- @akinon/pz-hepsipay@1.118.0-rc.4
|
|
161
|
-
- @akinon/pz-masterpass@1.118.0-rc.4
|
|
162
|
-
- @akinon/pz-masterpass-rest@1.118.0-rc.4
|
|
163
|
-
- @akinon/pz-multi-basket@1.118.0-rc.4
|
|
164
|
-
- @akinon/pz-one-click-checkout@1.118.0-rc.4
|
|
165
|
-
- @akinon/pz-otp@1.118.0-rc.4
|
|
166
|
-
- @akinon/pz-pay-on-delivery@1.118.0-rc.4
|
|
167
|
-
- @akinon/pz-saved-card@1.118.0-rc.4
|
|
168
|
-
- @akinon/pz-similar-products@1.118.0-rc.4
|
|
169
|
-
- @akinon/pz-tabby-extension@1.118.0-rc.4
|
|
170
|
-
- @akinon/pz-tamara-extension@1.118.0-rc.4
|
|
171
|
-
|
|
172
|
-
## 1.118.0-rc.3
|
|
173
|
-
|
|
174
|
-
### Patch Changes
|
|
175
|
-
|
|
176
|
-
- Updated dependencies [94a86fcc]
|
|
177
|
-
- @akinon/next@1.118.0-rc.3
|
|
178
|
-
- @akinon/pz-virtual-try-on@1.118.0-rc.3
|
|
179
|
-
- @akinon/pz-akifast@1.118.0-rc.3
|
|
180
|
-
- @akinon/pz-apple-pay@1.118.0-rc.3
|
|
181
|
-
- @akinon/pz-b2b@1.118.0-rc.3
|
|
182
|
-
- @akinon/pz-basket-gift-pack@1.118.0-rc.3
|
|
183
|
-
- @akinon/pz-bkm@1.118.0-rc.3
|
|
184
|
-
- @akinon/pz-checkout-gift-pack@1.118.0-rc.3
|
|
185
|
-
- @akinon/pz-click-collect@1.118.0-rc.3
|
|
186
|
-
- @akinon/pz-credit-payment@1.118.0-rc.3
|
|
187
|
-
- @akinon/pz-cybersource-uc@1.118.0-rc.3
|
|
188
|
-
- @akinon/pz-flow-payment@1.118.0-rc.3
|
|
189
|
-
- @akinon/pz-google-pay@1.118.0-rc.3
|
|
190
|
-
- @akinon/pz-gpay@1.118.0-rc.3
|
|
191
|
-
- @akinon/pz-haso@1.118.0-rc.3
|
|
192
|
-
- @akinon/pz-hepsipay@1.118.0-rc.3
|
|
193
|
-
- @akinon/pz-masterpass@1.118.0-rc.3
|
|
194
|
-
- @akinon/pz-masterpass-rest@1.118.0-rc.3
|
|
195
|
-
- @akinon/pz-multi-basket@1.118.0-rc.3
|
|
196
|
-
- @akinon/pz-one-click-checkout@1.118.0-rc.3
|
|
197
|
-
- @akinon/pz-otp@1.118.0-rc.3
|
|
198
|
-
- @akinon/pz-pay-on-delivery@1.118.0-rc.3
|
|
199
|
-
- @akinon/pz-saved-card@1.118.0-rc.3
|
|
200
|
-
- @akinon/pz-similar-products@1.118.0-rc.3
|
|
201
|
-
- @akinon/pz-tabby-extension@1.118.0-rc.3
|
|
202
|
-
- @akinon/pz-tamara-extension@1.118.0-rc.3
|
|
203
|
-
|
|
204
|
-
## 1.118.0-rc.2
|
|
205
|
-
|
|
206
|
-
### Patch Changes
|
|
207
|
-
|
|
208
|
-
- Updated dependencies [8a7fd0f4]
|
|
209
|
-
- @akinon/next@1.118.0-rc.2
|
|
210
|
-
- @akinon/pz-virtual-try-on@1.118.0-rc.2
|
|
211
|
-
- @akinon/pz-akifast@1.118.0-rc.2
|
|
212
|
-
- @akinon/pz-apple-pay@1.118.0-rc.2
|
|
213
|
-
- @akinon/pz-b2b@1.118.0-rc.2
|
|
214
|
-
- @akinon/pz-basket-gift-pack@1.118.0-rc.2
|
|
215
|
-
- @akinon/pz-bkm@1.118.0-rc.2
|
|
216
|
-
- @akinon/pz-checkout-gift-pack@1.118.0-rc.2
|
|
217
|
-
- @akinon/pz-click-collect@1.118.0-rc.2
|
|
218
|
-
- @akinon/pz-credit-payment@1.118.0-rc.2
|
|
219
|
-
- @akinon/pz-cybersource-uc@1.118.0-rc.2
|
|
220
|
-
- @akinon/pz-flow-payment@1.118.0-rc.2
|
|
221
|
-
- @akinon/pz-google-pay@1.118.0-rc.2
|
|
222
|
-
- @akinon/pz-gpay@1.118.0-rc.2
|
|
223
|
-
- @akinon/pz-haso@1.118.0-rc.2
|
|
224
|
-
- @akinon/pz-hepsipay@1.118.0-rc.2
|
|
225
|
-
- @akinon/pz-masterpass@1.118.0-rc.2
|
|
226
|
-
- @akinon/pz-masterpass-rest@1.118.0-rc.2
|
|
227
|
-
- @akinon/pz-multi-basket@1.118.0-rc.2
|
|
228
|
-
- @akinon/pz-one-click-checkout@1.118.0-rc.2
|
|
229
|
-
- @akinon/pz-otp@1.118.0-rc.2
|
|
230
|
-
- @akinon/pz-pay-on-delivery@1.118.0-rc.2
|
|
231
|
-
- @akinon/pz-saved-card@1.118.0-rc.2
|
|
232
|
-
- @akinon/pz-similar-products@1.118.0-rc.2
|
|
233
|
-
- @akinon/pz-tabby-extension@1.118.0-rc.2
|
|
234
|
-
- @akinon/pz-tamara-extension@1.118.0-rc.2
|
|
235
|
-
|
|
236
|
-
## 1.118.0-rc.1
|
|
3
|
+
## 1.118.0
|
|
237
4
|
|
|
238
5
|
### Patch Changes
|
|
239
6
|
|
|
240
|
-
- Updated dependencies [5978903a]
|
|
241
|
-
- @akinon/pz-masterpass-rest@1.118.0-rc.1
|
|
242
|
-
- @akinon/next@1.118.0-rc.1
|
|
243
|
-
- @akinon/pz-akifast@1.118.0-rc.1
|
|
244
|
-
- @akinon/pz-apple-pay@1.118.0-rc.1
|
|
245
|
-
- @akinon/pz-b2b@1.118.0-rc.1
|
|
246
|
-
- @akinon/pz-basket-gift-pack@1.118.0-rc.1
|
|
247
|
-
- @akinon/pz-bkm@1.118.0-rc.1
|
|
248
|
-
- @akinon/pz-checkout-gift-pack@1.118.0-rc.1
|
|
249
|
-
- @akinon/pz-click-collect@1.118.0-rc.1
|
|
250
|
-
- @akinon/pz-credit-payment@1.118.0-rc.1
|
|
251
|
-
- @akinon/pz-cybersource-uc@1.118.0-rc.1
|
|
252
|
-
- @akinon/pz-flow-payment@1.118.0-rc.1
|
|
253
|
-
- @akinon/pz-google-pay@1.118.0-rc.1
|
|
254
|
-
- @akinon/pz-gpay@1.118.0-rc.1
|
|
255
|
-
- @akinon/pz-haso@1.118.0-rc.1
|
|
256
|
-
- @akinon/pz-hepsipay@1.118.0-rc.1
|
|
257
|
-
- @akinon/pz-masterpass@1.118.0-rc.1
|
|
258
|
-
- @akinon/pz-multi-basket@1.118.0-rc.1
|
|
259
|
-
- @akinon/pz-one-click-checkout@1.118.0-rc.1
|
|
260
|
-
- @akinon/pz-otp@1.118.0-rc.1
|
|
261
|
-
- @akinon/pz-pay-on-delivery@1.118.0-rc.1
|
|
262
|
-
- @akinon/pz-saved-card@1.118.0-rc.1
|
|
263
|
-
- @akinon/pz-similar-products@1.118.0-rc.1
|
|
264
|
-
- @akinon/pz-tabby-extension@1.118.0-rc.1
|
|
265
|
-
- @akinon/pz-tamara-extension@1.118.0-rc.1
|
|
266
|
-
- @akinon/pz-virtual-try-on@1.118.0-rc.1
|
|
267
|
-
|
|
268
|
-
## 1.118.0-rc.0
|
|
269
|
-
|
|
270
|
-
### Minor Changes
|
|
271
|
-
|
|
272
|
-
- 4449f3a3: ZERO-3681: Add order details localization and improve order handling in AccountOrderDetail
|
|
273
|
-
- 1a8622a9: ZERO-3392: Implemented AI Search functionality and update env
|
|
274
|
-
- b55acb76: ZERO-2577: Fix pagination bug and update usePagination hook and ensure pagination controls rendering correctly
|
|
275
|
-
- 36143125: ZERO-3987: Add barcode scanner functionality with modal and button
|
|
276
|
-
- f7e0f646: ZERO-4032: Add bfcache-headers middleware, integrate it into the default chain, and introduce a new environment variable for control.
|
|
277
|
-
- 143be2b9: ZERO-3457: Crop styles are customizable and logic improved for rendering similar products modal
|
|
278
|
-
- 9f8cd3bc: ZERO-3449: AI Search Active Filters & Crop Style changes have been implemented
|
|
279
|
-
- 5fb34b5c: ZERO-3955: Add aspect ratio validation and error handling for image cropping
|
|
280
|
-
- d99a6a7d: ZERO-3457_1: Fixed the settings prop and made sure everything is customizable.
|
|
281
|
-
- b87517ff: ZERO-3680: Enhance select component styling to ensure focus state is consistent
|
|
282
|
-
- b59fdd1c: ZERO-4009: Add password reset token validation
|
|
283
|
-
- d76d3255: ZERO-4011: Refactor sitemap content generation to append locale suffix based on matched locale
|
|
284
|
-
- b05c3543: ZERO-2570: Category filters routes to absolute url
|
|
285
|
-
- c3244a31: ZERO-4013: Update runtime version to node:25-alpine in project configuration
|
|
286
|
-
|
|
287
|
-
### Patch Changes
|
|
288
|
-
|
|
289
|
-
- Updated dependencies [4798959a]
|
|
290
7
|
- Updated dependencies [5514352a]
|
|
291
|
-
- Updated dependencies [d2c0e759]
|
|
292
8
|
- Updated dependencies [86f2570b]
|
|
293
9
|
- Updated dependencies [90b1dd7a]
|
|
294
10
|
- Updated dependencies [5514352a]
|
|
295
|
-
- Updated dependencies [b55acb76]
|
|
296
|
-
- Updated dependencies [36143125]
|
|
297
|
-
- Updated dependencies [572f4f7b]
|
|
298
|
-
- Updated dependencies [f7e0f646]
|
|
299
|
-
- Updated dependencies [143be2b9]
|
|
300
11
|
- Updated dependencies [c706a270]
|
|
301
|
-
- Updated dependencies [9f8cd3bc]
|
|
302
12
|
- Updated dependencies [0d33d9ac]
|
|
303
13
|
- Updated dependencies [644a2fa2]
|
|
304
14
|
- Updated dependencies [729fe756]
|
|
305
|
-
- Updated dependencies [5fb34b5c]
|
|
306
|
-
- Updated dependencies [88cb4f62]
|
|
307
|
-
- Updated dependencies [d99a6a7d]
|
|
308
|
-
- Updated dependencies [d7e5178b]
|
|
309
|
-
- Updated dependencies [591e345e]
|
|
310
|
-
- Updated dependencies [187208d2]
|
|
311
15
|
- Updated dependencies [ee191e6f]
|
|
312
|
-
- Updated dependencies [4de5303c]
|
|
313
16
|
- Updated dependencies [89b9d839]
|
|
314
|
-
- Updated dependencies [
|
|
315
|
-
- Updated dependencies [
|
|
17
|
+
- Updated dependencies [0c68cbfe]
|
|
18
|
+
- Updated dependencies [5978903a]
|
|
316
19
|
- Updated dependencies [9f346703]
|
|
317
|
-
- Updated dependencies [3909d322]
|
|
318
|
-
- Updated dependencies [6b73b050]
|
|
319
20
|
- Updated dependencies [5ae86358]
|
|
320
|
-
- @akinon/pz-masterpass-rest@1.118.0
|
|
321
|
-
- @akinon/next@1.118.0
|
|
322
|
-
- @akinon/pz-virtual-try-on@1.118.0
|
|
323
|
-
- @akinon/pz-
|
|
324
|
-
- @akinon/pz-
|
|
325
|
-
- @akinon/pz-
|
|
326
|
-
- @akinon/pz-
|
|
327
|
-
- @akinon/pz-
|
|
328
|
-
- @akinon/pz-
|
|
329
|
-
- @akinon/pz-
|
|
330
|
-
- @akinon/pz-
|
|
331
|
-
- @akinon/pz-
|
|
332
|
-
- @akinon/pz-
|
|
333
|
-
- @akinon/pz-
|
|
334
|
-
- @akinon/pz-
|
|
335
|
-
- @akinon/pz-
|
|
336
|
-
- @akinon/pz-
|
|
337
|
-
- @akinon/pz-
|
|
338
|
-
- @akinon/pz-
|
|
339
|
-
- @akinon/pz-
|
|
340
|
-
- @akinon/pz-
|
|
341
|
-
- @akinon/pz-
|
|
342
|
-
- @akinon/pz-
|
|
343
|
-
- @akinon/pz-
|
|
344
|
-
- @akinon/pz-tabby-extension@1.118.0
|
|
345
|
-
- @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
|
|
346
47
|
|
|
347
48
|
## 1.117.0
|
|
348
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",
|
|
@@ -88,8 +88,6 @@
|
|
|
88
88
|
"multiple_results_subtitle": "{{count}} ürün için deneme tamamlandı",
|
|
89
89
|
"error_incompatible": "Görüntü Uyumlu Değil",
|
|
90
90
|
"error_auto_reported": "Hata otomatik olarak bildirildi",
|
|
91
|
-
"error_aspect_ratio_too_tall": "Görsel çok uzun. Dikey görseller için izin verilen maksimum oran 9:16'dır. Lütfen kırpın veya farklı bir görsel seçin.",
|
|
92
|
-
"error_aspect_ratio_too_wide": "Görsel çok geniş. Yatay görseller için izin verilen maksimum oran 21:9'dur. Lütfen kırpın veya farklı bir görsel seçin.",
|
|
93
91
|
"feedback_question": "Sonuç nasıldı?",
|
|
94
92
|
"feedback_success": "Başarılı",
|
|
95
93
|
"feedback_failed": "Başarısız",
|
|
@@ -100,21 +98,5 @@
|
|
|
100
98
|
"starting": "Başlatılıyor...",
|
|
101
99
|
"will_start": "için sanal deneme başlatılacak",
|
|
102
100
|
"products_count": "ürün"
|
|
103
|
-
},
|
|
104
|
-
"barcode_scanner": {
|
|
105
|
-
"title": "Barkodu Okut",
|
|
106
|
-
"button_label": "Barkod Tarayıcı",
|
|
107
|
-
"button_text": "Mağazadaki ürünü üstünde dene",
|
|
108
|
-
"help_text": "Ürün barkodunu kameraya yaklaştırın",
|
|
109
|
-
"scan_more_help": "Bir ürün daha okutmak isterseniz, yeni barkodu da kameranıza yaklaştırın.",
|
|
110
|
-
"searching": "Ürün aranıyor...",
|
|
111
|
-
"continue_to_vto": "Sanal Kabine Devam Et",
|
|
112
|
-
"permission_denied_title": "Kamera İzni Gerekli",
|
|
113
|
-
"permission_denied_message": "Barkod okuyucu için kamera erişimine izin vermeniz gerekmektedir.",
|
|
114
|
-
"try_again": "Tekrar Dene",
|
|
115
|
-
"errors": {
|
|
116
|
-
"product_not_found": "Bu barkoda ait ürün bulunamadı.",
|
|
117
|
-
"search_failed": "Arama başarısız oldu. Lütfen tekrar deneyin."
|
|
118
|
-
}
|
|
119
101
|
}
|
|
120
102
|
}
|
|
@@ -61,26 +61,7 @@ const AccountOrderDetail = ({ params: { id } }) => {
|
|
|
61
61
|
}, [order, isSuccess, localeValue]);
|
|
62
62
|
|
|
63
63
|
if (isLoading && isFetching) {
|
|
64
|
-
return
|
|
65
|
-
<div className="flex flex-col items-center justify-center h-96">
|
|
66
|
-
<LoaderSpinner />
|
|
67
|
-
</div>
|
|
68
|
-
);
|
|
69
|
-
}
|
|
70
|
-
|
|
71
|
-
if (!order) {
|
|
72
|
-
return (
|
|
73
|
-
<div className="flex flex-col items-center justify-center h-96">
|
|
74
|
-
<p className="mt-5 text-start text-lg mb-4">
|
|
75
|
-
{t('account.my_orders.detail.no_orders_found')}
|
|
76
|
-
</p>
|
|
77
|
-
<Link href={`/account/orders/`}>
|
|
78
|
-
<Button className="px-4" appearance="filled">
|
|
79
|
-
{t('account.my_orders.detail.back_to_orders')}
|
|
80
|
-
</Button>
|
|
81
|
-
</Link>
|
|
82
|
-
</div>
|
|
83
|
-
);
|
|
64
|
+
return <LoaderSpinner />;
|
|
84
65
|
}
|
|
85
66
|
|
|
86
67
|
return (
|