@akinon/next 1.96.0 → 1.97.0-snapshot-ZERO-3634-20250918135053

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 CHANGED
@@ -1,5 +1,12 @@
1
1
  # @akinon/next
2
2
 
3
+ ## 1.97.0-snapshot-ZERO-3634-20250918135053
4
+
5
+ ### Minor Changes
6
+
7
+ - 4ca44c7: ZERO-3634: add register_consumer_card
8
+ - 5b50079: ZERO-3634: iyzico saved card
9
+
3
10
  ## 1.96.0
4
11
 
5
12
  ### Minor Changes
@@ -47,6 +47,7 @@ export enum Component {
47
47
  AkifastCheckoutButton = 'CheckoutButton',
48
48
  MultiBasket = 'MultiBasket',
49
49
  SavedCard = 'SavedCardOption',
50
+ IyzicoSavedCard = 'IyzicoSavedCardOption',
50
51
  FlowPayment = 'FlowPayment'
51
52
  }
52
53
 
@@ -80,7 +81,7 @@ const PluginComponents = new Map([
80
81
  [Component.AkifastQuickLoginButton, Component.AkifastCheckoutButton]
81
82
  ],
82
83
  [Plugin.MultiBasket, [Component.MultiBasket]],
83
- [Plugin.SavedCard, [Component.SavedCard]],
84
+ [Plugin.SavedCard, [Component.SavedCard, Component.IyzicoSavedCard]],
84
85
  [Plugin.FlowPayment, [Component.FlowPayment]]
85
86
  ]);
86
87
 
@@ -181,10 +181,7 @@ export const checkoutApi = api.injectEndpoints({
181
181
  endpoints: (build) => ({
182
182
  fetchCheckout: build.query<CheckoutResponse, void>({
183
183
  query: () => ({
184
- url: buildClientRequestUrl(
185
- `${checkout.fetchCheckout}?page=IndexPage`,
186
- {}
187
- )
184
+ url: buildClientRequestUrl(checkout.fetchCheckout, {})
188
185
  }),
189
186
  providesTags: ['Checkout']
190
187
  }),
@@ -884,8 +881,7 @@ export const checkoutApi = api.injectEndpoints({
884
881
  method: 'POST',
885
882
  body: formData
886
883
  };
887
- },
888
- invalidatesTags: ['Checkout']
884
+ }
889
885
  })
890
886
  }),
891
887
  overrideExisting: false
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",
4
+ "version": "1.97.0-snapshot-ZERO-3634-20250918135053",
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",
37
+ "@akinon/eslint-plugin-projectzero": "1.97.0-snapshot-ZERO-3634-20250918135053",
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' {}