@akinon/pz-flow-payment 1.108.0-rc.7 → 1.108.0-rc.8

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,11 @@
1
1
  # @akinon/pz-flow-payment
2
2
 
3
+ ## 1.108.0-rc.8
4
+
5
+ ### Minor Changes
6
+
7
+ - f85464e9: ZERO-3640: Fix API call to use hyphenated key for payment ID in FlowPayment component
8
+
3
9
  ## 1.108.0-rc.7
4
10
 
5
11
  ## 1.108.0-rc.6
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@akinon/pz-flow-payment",
3
3
  "license": "MIT",
4
- "version": "1.108.0-rc.7",
4
+ "version": "1.108.0-rc.8",
5
5
  "main": "src/index.tsx",
6
6
  "dependencies": {
7
7
  "@checkout.com/checkout-web-components": "0.7.0-beta"
@@ -133,7 +133,7 @@ export default function FlowPayment({
133
133
  const paymentCompleteResponse = await dispatch(
134
134
  checkoutApi.endpoints.setWalletCompletePage.initiate({
135
135
  success: isSuccess,
136
- cko_payment_id: ckoPaymentId
136
+ 'cko-payment-id': ckoPaymentId
137
137
  })
138
138
  ).unwrap();
139
139