telebirr-nodejs 1.0.9 → 1.1.0
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/LICENSE +21 -0
- package/README.md +4 -0
- package/package.json +17 -5
package/LICENSE
ADDED
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
MIT License
|
|
2
|
+
|
|
3
|
+
Copyright (c) [2026] [Chernet Manaye]
|
|
4
|
+
|
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
7
|
+
in the Software without restriction, including without limitation the rights
|
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
10
|
+
furnished to do so, subject to the following conditions:
|
|
11
|
+
|
|
12
|
+
The above copyright notice and this permission notice shall be included in all
|
|
13
|
+
copies or substantial portions of the Software.
|
|
14
|
+
|
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
21
|
+
SOFTWARE.
|
package/README.md
CHANGED
|
@@ -207,3 +207,7 @@ generateKeys({
|
|
|
207
207
|
This will generate two .pem files in your root directory.
|
|
208
208
|
|
|
209
209
|
The merchantPrivateKey option always accepts a string, so you must read the private key file using Node.js fs and pass the value to the client configuration.
|
|
210
|
+
|
|
211
|
+
## License
|
|
212
|
+
|
|
213
|
+
MIT © Chernet Manaye
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "telebirr-nodejs",
|
|
3
|
-
"version": "1.0
|
|
4
|
-
"description": "Unofficial
|
|
3
|
+
"version": "1.1.0",
|
|
4
|
+
"description": "Unofficial Node.js SDK for Telebirr C2B payments with automatic request signing, Fabric token handling, checkout URL generation, simulator support, and simplified refunds & payment status APIs.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./dist/index.cjs",
|
|
7
7
|
"module": "./dist/index.js",
|
|
@@ -30,8 +30,20 @@
|
|
|
30
30
|
"ethiopia",
|
|
31
31
|
"payment",
|
|
32
32
|
"fintech",
|
|
33
|
-
"nodejs"
|
|
33
|
+
"nodejs",
|
|
34
|
+
"telebirr-node",
|
|
35
|
+
"telebirr-nodejs",
|
|
36
|
+
"telebirr-payment",
|
|
37
|
+
"ethiopia-payment",
|
|
38
|
+
"c2b-payment",
|
|
39
|
+
"b2b-payment",
|
|
40
|
+
"nodejs-payment",
|
|
41
|
+
"payment-gateway"
|
|
34
42
|
],
|
|
35
|
-
"author": "
|
|
36
|
-
"license": "MIT"
|
|
43
|
+
"author": "Chernet Manaye (https://github.com/chernetManaye)",
|
|
44
|
+
"license": "MIT",
|
|
45
|
+
"homepage": "https://github.com/chernetManaye/telebirr-nodejs",
|
|
46
|
+
"bugs": {
|
|
47
|
+
"url": "https://github.com/chernetManaye/telebirr-nodejs/issues"
|
|
48
|
+
}
|
|
37
49
|
}
|