@akinon/pz-apple-pay 1.108.0-rc.87 → 1.108.0
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 +3 -9
- package/package.json +1 -1
- package/src/hooks/use-apple-pay.tsx +3 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,17 +1,11 @@
|
|
|
1
1
|
# @akinon/pz-apple-pay
|
|
2
2
|
|
|
3
|
-
## 1.108.0
|
|
3
|
+
## 1.108.0
|
|
4
4
|
|
|
5
5
|
### Minor Changes
|
|
6
6
|
|
|
7
|
-
-
|
|
8
|
-
-
|
|
9
|
-
- e974d8e8: ZERO-3406: Fix rc build
|
|
10
|
-
- 7eb51ca9: ZERO-3424 :Update package versions
|
|
11
|
-
- 7727ae55: ZERO-3073: Refactor basket page to use server-side data fetching and simplify component structure
|
|
12
|
-
- 8b1d24eb: ZERO-3422: Update fetch method to use dynamic request method in wallet complete redirection middleware
|
|
13
|
-
- 33377cfd: ZERO-3267: Refactor import statement for ROUTES in error-page component
|
|
14
|
-
- 33d4d0c9: ZERO-3615: remove custom not found
|
|
7
|
+
- d8883ce6: ZERO-3640: Refactor wallet completion handling to accept additional parameters; update related API calls
|
|
8
|
+
- 31a2d35a: ZERO-3640: Refactor checkout API call to include useFormData option; update FlowPayment component for improved error handling and code readability
|
|
15
9
|
|
|
16
10
|
## 1.107.0
|
|
17
11
|
|
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) {
|