@akinon/pz-apple-pay 1.108.0-rc.1 → 1.108.0-rc.10
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 +26 -0
- package/package.json +1 -1
- package/src/hooks/use-apple-pay.tsx +3 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,31 @@
|
|
|
1
1
|
# @akinon/pz-apple-pay
|
|
2
2
|
|
|
3
|
+
## 1.108.0-rc.10
|
|
4
|
+
|
|
5
|
+
## 1.108.0-rc.9
|
|
6
|
+
|
|
7
|
+
## 1.108.0-rc.8
|
|
8
|
+
|
|
9
|
+
## 1.108.0-rc.7
|
|
10
|
+
|
|
11
|
+
## 1.108.0-rc.6
|
|
12
|
+
|
|
13
|
+
## 1.108.0-rc.5
|
|
14
|
+
|
|
15
|
+
### Minor Changes
|
|
16
|
+
|
|
17
|
+
- 31a2d35: ZERO-3640: Refactor checkout API call to include useFormData option; update FlowPayment component for improved error handling and code readability
|
|
18
|
+
|
|
19
|
+
## 1.108.0-rc.4
|
|
20
|
+
|
|
21
|
+
### Minor Changes
|
|
22
|
+
|
|
23
|
+
- d8883ce: ZERO-3640: Refactor wallet completion handling to accept additional parameters; update related API calls
|
|
24
|
+
|
|
25
|
+
## 1.108.0-rc.3
|
|
26
|
+
|
|
27
|
+
## 1.108.0-rc.2
|
|
28
|
+
|
|
3
29
|
## 1.108.0-rc.1
|
|
4
30
|
|
|
5
31
|
## 1.108.0-rc.0
|
package/package.json
CHANGED
|
@@ -103,7 +103,9 @@ export default function useApplePay() {
|
|
|
103
103
|
)
|
|
104
104
|
) {
|
|
105
105
|
const paymentCompleteResponse = await dispatch(
|
|
106
|
-
checkoutApi.endpoints.setWalletCompletePage.initiate(
|
|
106
|
+
checkoutApi.endpoints.setWalletCompletePage.initiate({
|
|
107
|
+
success: true
|
|
108
|
+
})
|
|
107
109
|
).unwrap();
|
|
108
110
|
|
|
109
111
|
if (paymentCompleteResponse.errors) {
|