@akinon/next 1.96.0-rc.62 → 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 +7 -0
- package/components/plugin-module.tsx +3 -2
- package/package.json +2 -2
- package/plugins.d.ts +0 -5
package/CHANGELOG.md
CHANGED
|
@@ -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/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' {}
|