@jimrising/easymerchantsdk-react-native 1.3.7 → 1.3.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/README.md +8 -8
- package/ios/easymerchantsdk.podspec +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -7,7 +7,7 @@ To add the path of sdk in your project. Open your `package.json` file and inside
|
|
|
7
7
|
|
|
8
8
|
```json
|
|
9
9
|
"dependencies": {
|
|
10
|
-
"@jimrising/easymerchantsdk-react-native": "^1.3.
|
|
10
|
+
"@jimrising/easymerchantsdk-react-native": "^1.3.8"
|
|
11
11
|
},
|
|
12
12
|
```
|
|
13
13
|
|
|
@@ -217,14 +217,14 @@ const App = () => {
|
|
|
217
217
|
false, // tokenOnly
|
|
218
218
|
false, // saveCard
|
|
219
219
|
false, // saveAccount
|
|
220
|
-
true, // authenticatedACH
|
|
221
|
-
authConfig,
|
|
220
|
+
true, // authenticatedACH if it is true only then pass authConfig params
|
|
221
|
+
authConfig,
|
|
222
222
|
"Submit",
|
|
223
|
-
true,
|
|
224
|
-
['weekly', 'monthly'],
|
|
225
|
-
'custom',
|
|
226
|
-
"05/30/2025",
|
|
227
|
-
true
|
|
223
|
+
true, // is_recurring == true ? must need to send below 4 params
|
|
224
|
+
['weekly', 'monthly'], // recurringIntervals
|
|
225
|
+
'custom', // recurringStartDateType
|
|
226
|
+
"05/30/2025", /// Format MM/dd/yyyy, must be today or future date
|
|
227
|
+
true // enable3DS :- must send it true for 3DS card payment.
|
|
228
228
|
);
|
|
229
229
|
|
|
230
230
|
console.log("Billing success:", result);
|