@jimrising/easymerchantsdk-react-native 1.3.6 → 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/android/.gradle/8.10/checksums/checksums.lock +0 -0
- package/android/.gradle/8.10/fileHashes/fileHashes.lock +0 -0
- package/android/.gradle/8.9/checksums/checksums.lock +0 -0
- package/android/.gradle/8.9/fileHashes/fileHashes.lock +0 -0
- package/android/.gradle/buildOutputCleanup/buildOutputCleanup.lock +0 -0
- package/android/.gradle/buildOutputCleanup/cache.properties +1 -1
- package/android/.gradle/nb-cache/trust/0B5D6BE682AD6AEE9815EC13516BF075752CAE5AD5BECDCC00315C37622C2FD3 +1 -1
- package/ios/Classes/EasyMerchantSdk.m +2 -2
- package/ios/Example/ViewController.swift +5 -5
- package/ios/easymerchantsdk.podspec +1 -1
- package/package.json +1 -1
- package/android/.gradle/8.9/checksums/sha1-checksums.bin +0 -0
- package/android/.gradle/nb-cache/trust/23843E1876B2E51C07E80AB52D1E797E5D8053D8097EEEB15FB63DD903195C14 +0 -1
- package/android/.settings/org.eclipse.buildship.core.prefs +0 -2
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);
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
#Tue May 27
|
|
1
|
+
#Tue May 27 16:30:51 IST 2025
|
|
2
2
|
gradle.version=8.10
|
|
@@ -1 +1 @@
|
|
|
1
|
-
|
|
1
|
+
F653042EE5D1BE45CCE4636F595E95F756634CDFCB88B853AA104087A76A9AF6
|
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
#import "EasyMerchantSdk.h"
|
|
2
2
|
#import <React/RCTLog.h>
|
|
3
3
|
#import <React/RCTBridgeModule.h>
|
|
4
|
-
|
|
4
|
+
//#import <easymerchantsdk/easymerchantsdk-Swift.h>
|
|
5
5
|
|
|
6
|
-
|
|
6
|
+
#import <easymerchantsdk-Swift.h>
|
|
7
7
|
|
|
8
8
|
@interface EasyMerchantSdk()
|
|
9
9
|
@property (nonatomic, strong) EasyMerchantSdkPlugin *sdkPluginInstance;
|
|
@@ -94,11 +94,11 @@
|
|
|
94
94
|
// submitButtonText: "Submit",
|
|
95
95
|
// authenticatedACH: authenticatedACH,
|
|
96
96
|
// grailPayParams: authenticatedACH ? grailPayParams : nil,
|
|
97
|
-
//
|
|
98
|
-
//
|
|
99
|
-
//
|
|
100
|
-
//
|
|
101
|
-
//
|
|
97
|
+
// is_recurring: true,
|
|
98
|
+
// recurringIntervals: [.weekly, .monthly],
|
|
99
|
+
// recurringStartDateType: .custom,
|
|
100
|
+
// recurringStartDate: "05/30/2025", /// Format MM/dd/yyyy, must be today or future date
|
|
101
|
+
// enable3DS: true
|
|
102
102
|
// )
|
|
103
103
|
//
|
|
104
104
|
// if request.tokenOnly == true {
|
package/package.json
CHANGED
|
Binary file
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
7B4711EF5BD8AAFCB0F97ED30C712B87657E9522834D63197B63D19F2590EA9F
|