@akinon/pz-saved-card 1.97.0-snapshot-ZERO-3634-20250918132143 → 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,9 +1,10 @@
1
1
  # @akinon/pz-saved-card
2
2
 
3
- ## 1.97.0-snapshot-ZERO-3634-20250918132143
3
+ ## 1.97.0-snapshot-ZERO-3634-20250918135053
4
4
 
5
5
  ### Minor Changes
6
6
 
7
+ - 4ca44c7: ZERO-3634: add register_consumer_card
7
8
  - 5b50079: ZERO-3634: iyzico saved card
8
9
 
9
10
  ## 1.96.0
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@akinon/pz-saved-card",
3
- "version": "1.97.0-snapshot-ZERO-3634-20250918132143",
3
+ "version": "1.97.0-snapshot-ZERO-3634-20250918135053",
4
4
  "license": "MIT",
5
5
  "main": "src/index.tsx",
6
6
  "peerDependencies": {
package/src/redux/api.ts CHANGED
@@ -46,6 +46,7 @@ type DefaultCompleteSavedCardRequest = {
46
46
  type IyzicoCompleteSavedCardRequest =
47
47
  | {
48
48
  agreement: boolean;
49
+ register_consumer_card: boolean;
49
50
  consumer_token: string;
50
51
  card_token: string;
51
52
  }
@@ -208,6 +208,8 @@ const IyzicoSavedCardOption = ({
208
208
  if (type === 'existing-card') {
209
209
  const res = await completeSavedCard({
210
210
  agreement: data.agreement,
211
+ register_consumer_card:
212
+ window.universalCardStorage.registerConsumerCard,
211
213
  consumer_token: window.universalCardStorage.consumerToken,
212
214
  card_token: window.universalCardStorage.cardToken
213
215
  });