@akinon/next 1.96.0-rc.61 → 1.96.0-rc.63
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 +13 -0
- package/components/plugin-module.tsx +3 -2
- package/data/client/checkout.ts +1 -4
- package/package.json +2 -2
- package/plugins.d.ts +0 -5
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,18 @@
|
|
|
1
1
|
# @akinon/next
|
|
2
2
|
|
|
3
|
+
## 1.96.0-rc.63
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- 4ca44c7: ZERO-3634: add register_consumer_card
|
|
8
|
+
- 5b50079: ZERO-3634: iyzico saved card
|
|
9
|
+
|
|
10
|
+
## 1.96.0-rc.62
|
|
11
|
+
|
|
12
|
+
### Minor Changes
|
|
13
|
+
|
|
14
|
+
- 67308f0: ZERO-3633: Revert IndexPage parameter from fetchCheckout request
|
|
15
|
+
|
|
3
16
|
## 1.96.0-rc.61
|
|
4
17
|
|
|
5
18
|
### Minor Changes
|
|
@@ -57,7 +57,8 @@ export enum Component {
|
|
|
57
57
|
SimilarProductsPlugin = 'SimilarProductsPlugin',
|
|
58
58
|
ProductImageSearchFeature = 'ProductImageSearchFeature',
|
|
59
59
|
ImageSearchButton = 'ImageSearchButton',
|
|
60
|
-
HeaderImageSearchFeature = 'HeaderImageSearchFeature'
|
|
60
|
+
HeaderImageSearchFeature = 'HeaderImageSearchFeature',
|
|
61
|
+
IyzicoSavedCard = 'IyzicoSavedCardOption'
|
|
61
62
|
}
|
|
62
63
|
|
|
63
64
|
const PluginComponents = new Map([
|
|
@@ -90,7 +91,7 @@ const PluginComponents = new Map([
|
|
|
90
91
|
[Component.AkifastQuickLoginButton, Component.AkifastCheckoutButton]
|
|
91
92
|
],
|
|
92
93
|
[Plugin.MultiBasket, [Component.MultiBasket]],
|
|
93
|
-
[Plugin.SavedCard, [Component.SavedCard]],
|
|
94
|
+
[Plugin.SavedCard, [Component.SavedCard, Component.IyzicoSavedCard]],
|
|
94
95
|
[Plugin.Hepsipay, [Component.Hepsipay]],
|
|
95
96
|
[Plugin.FlowPayment, [Component.FlowPayment]],
|
|
96
97
|
[
|
package/data/client/checkout.ts
CHANGED
|
@@ -183,10 +183,7 @@ export const checkoutApi = api.injectEndpoints({
|
|
|
183
183
|
endpoints: (build) => ({
|
|
184
184
|
fetchCheckout: build.query<CheckoutResponse, void>({
|
|
185
185
|
query: () => ({
|
|
186
|
-
url: buildClientRequestUrl(
|
|
187
|
-
`${checkout.fetchCheckout}?page=IndexPage`,
|
|
188
|
-
{}
|
|
189
|
-
)
|
|
186
|
+
url: buildClientRequestUrl(checkout.fetchCheckout, {})
|
|
190
187
|
}),
|
|
191
188
|
providesTags: ['Checkout']
|
|
192
189
|
}),
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@akinon/next",
|
|
3
3
|
"description": "Core package for Project Zero Next",
|
|
4
|
-
"version": "1.96.0-rc.
|
|
4
|
+
"version": "1.96.0-rc.63",
|
|
5
5
|
"private": false,
|
|
6
6
|
"license": "MIT",
|
|
7
7
|
"bin": {
|
|
@@ -34,7 +34,7 @@
|
|
|
34
34
|
"set-cookie-parser": "2.6.0"
|
|
35
35
|
},
|
|
36
36
|
"devDependencies": {
|
|
37
|
-
"@akinon/eslint-plugin-projectzero": "1.96.0-rc.
|
|
37
|
+
"@akinon/eslint-plugin-projectzero": "1.96.0-rc.63",
|
|
38
38
|
"@babel/core": "7.26.10",
|
|
39
39
|
"@babel/preset-env": "7.26.9",
|
|
40
40
|
"@babel/preset-typescript": "7.27.0",
|
package/plugins.d.ts
CHANGED
|
@@ -30,11 +30,6 @@ declare module '@akinon/pz-saved-card' {
|
|
|
30
30
|
export const SavedCardOption: any;
|
|
31
31
|
}
|
|
32
32
|
|
|
33
|
-
declare module '@akinon/pz-iyzico-saved-card' {
|
|
34
|
-
export const iyzicoSavedCardReducer: any;
|
|
35
|
-
export const iyzicoSavedCardMiddleware: any;
|
|
36
|
-
}
|
|
37
|
-
|
|
38
33
|
declare module '@akinon/pz-apple-pay' {}
|
|
39
34
|
|
|
40
35
|
declare module '@akinon/pz-flow-payment' {}
|