@jimrising/easymerchantsdk-react-native 1.5.6 → 1.5.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 +7 -9
- 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.5.
|
|
10
|
+
"@jimrising/easymerchantsdk-react-native": "^1.5.8"
|
|
11
11
|
},
|
|
12
12
|
```
|
|
13
13
|
|
|
@@ -24,11 +24,11 @@ allprojects {
|
|
|
24
24
|
google()
|
|
25
25
|
mavenCentral()
|
|
26
26
|
maven { url 'https://jitpack.io' }
|
|
27
|
-
|
|
28
|
-
url = uri(
|
|
27
|
+
maven {
|
|
28
|
+
url = uri(properties.getProperty('GITHUB_URL'))
|
|
29
29
|
credentials {
|
|
30
|
-
username =
|
|
31
|
-
password =
|
|
30
|
+
username = properties.getProperty('GITHUB_USERNAME')
|
|
31
|
+
password = properties.getProperty('GITHUB_PASSWORD')
|
|
32
32
|
}
|
|
33
33
|
}
|
|
34
34
|
}
|
|
@@ -179,10 +179,10 @@ const App = () => {
|
|
|
179
179
|
apiKey: 'apiKey',
|
|
180
180
|
secretKey: 'secretKey',
|
|
181
181
|
jsonConfig: {
|
|
182
|
-
environment: '
|
|
182
|
+
environment: 'staging', // lowercase staging, sandbox, production
|
|
183
183
|
amount,
|
|
184
184
|
tokenOnly: false,
|
|
185
|
-
currency: '
|
|
185
|
+
currency: 'usd',
|
|
186
186
|
saveCard: true,
|
|
187
187
|
saveAccount: true,
|
|
188
188
|
authenticatedACH: true,
|
|
@@ -220,8 +220,6 @@ const App = () => {
|
|
|
220
220
|
},
|
|
221
221
|
},
|
|
222
222
|
grailPayParams: {
|
|
223
|
-
accessToken: '251|uTijpDGfrS88UR2V1cZNMQ8S4hUJA0sVzsnsoUZF',
|
|
224
|
-
vendorId: '251',
|
|
225
223
|
role: 'business',
|
|
226
224
|
timeout: 10,
|
|
227
225
|
isSandbox: true,
|