@akinon/pz-apple-pay 1.108.0-rc.87 → 1.108.0-rc.9

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,17 +1,32 @@
1
1
  # @akinon/pz-apple-pay
2
2
 
3
- ## 1.108.0-rc.87
3
+ ## 1.108.0-rc.9
4
+
5
+ ## 1.108.0-rc.8
6
+
7
+ ## 1.108.0-rc.7
8
+
9
+ ## 1.108.0-rc.6
10
+
11
+ ## 1.108.0-rc.5
12
+
13
+ ### Minor Changes
14
+
15
+ - 31a2d35: ZERO-3640: Refactor checkout API call to include useFormData option; update FlowPayment component for improved error handling and code readability
16
+
17
+ ## 1.108.0-rc.4
4
18
 
5
19
  ### Minor Changes
6
20
 
7
- - d8be48fb: ZERO-3422: Update fetch method to use dynamic request method in wallet complete redirection middleware
8
- - 16aff543: ZERO-3431: Add test script for redirect utility in package.json
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
21
+ - d8883ce: ZERO-3640: Refactor wallet completion handling to accept additional parameters; update related API calls
22
+
23
+ ## 1.108.0-rc.3
24
+
25
+ ## 1.108.0-rc.2
26
+
27
+ ## 1.108.0-rc.1
28
+
29
+ ## 1.108.0-rc.0
15
30
 
16
31
  ## 1.107.0
17
32
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@akinon/pz-apple-pay",
3
- "version": "1.108.0-rc.87",
3
+ "version": "1.108.0-rc.9",
4
4
  "license": "MIT",
5
5
  "main": "src/index.tsx",
6
6
  "peerDependencies": {
@@ -103,7 +103,9 @@ export default function useApplePay() {
103
103
  )
104
104
  ) {
105
105
  const paymentCompleteResponse = await dispatch(
106
- checkoutApi.endpoints.setWalletCompletePage.initiate(true)
106
+ checkoutApi.endpoints.setWalletCompletePage.initiate({
107
+ success: true
108
+ })
107
109
  ).unwrap();
108
110
 
109
111
  if (paymentCompleteResponse.errors) {