@riskdefy/chargebacks 1.0.9 → 1.0.11
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 +19 -2
- package/package.json +1 -1
- package/src/index.js +1 -0
- package/src/style.css +48979 -0
package/Readme.md
CHANGED
@@ -2,6 +2,23 @@
|
|
2
2
|
|
3
3
|
**Chargebacks** is an npm module designed to help you efficiently manage and process chargebacks.
|
4
4
|
|
5
|
+
<img src="https://content.pstmn.io/9336c376-033b-4512-a3dc-3730a6a6dcb6/bnBtbG9nby5zdmc=" width="164" height="111">
|
6
|
+
|
7
|
+
| Overview |
|
8
|
+
| ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ |
|
9
|
+
| You'll need to create an account io in order to use the API. If you have a [riskdefy.io](https://riskdefy.io) Standard API package or higher, you can enable the API Workflow from the user account settings. The API is available for Premier level accounts only. |
|
10
|
+
|
11
|
+
<img src="https://app.docful.com/images/npmbuilder2.png">
|
12
|
+
|
13
|
+
- You can use this API to:
|
14
|
+
- Auto-load new/incoming chargebacks
|
15
|
+
- Auto-retrieve customer records and details
|
16
|
+
- Advanced conditional logic based on card brand rules
|
17
|
+
- Create and send digital response packets via dynamic URL PDF
|
18
|
+
- Auto-match transactions with chargebacks
|
19
|
+
- Customizable generated responses
|
20
|
+
- Create automation flows for each merchant.
|
21
|
+
|
5
22
|
## Installation
|
6
23
|
|
7
24
|
Install the Chargebacks module using npm:
|
@@ -15,9 +32,9 @@ npm install chargebacks
|
|
15
32
|
Here is an example of how to use the Chargebacks module in a Vue project:
|
16
33
|
|
17
34
|
```javascript
|
18
|
-
import Chargebacks from
|
35
|
+
import Chargebacks from 'chargebacks';
|
19
36
|
|
20
|
-
<Chargebacks apikey={your_api_key} merchantId={your_merchant_id}
|
37
|
+
<Chargebacks apikey={your_api_key} merchantId={your_merchant_id} />
|
21
38
|
```
|
22
39
|
|
23
40
|
## Contributing
|
package/package.json
CHANGED