@payhos/api 1.0.1 → 1.0.2
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 -7
- package/models/index.d.ts +1 -0
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -25,13 +25,6 @@ const airtime = payhos.airtime;
|
|
|
25
25
|
const email = payhos.email;
|
|
26
26
|
```
|
|
27
27
|
|
|
28
|
-
## Airtime
|
|
29
|
-
```javascript
|
|
30
|
-
const airtime = payhos.airtime;
|
|
31
|
-
|
|
32
|
-
// Coming soon...
|
|
33
|
-
```
|
|
34
|
-
|
|
35
28
|
## SMS
|
|
36
29
|
Visit [Send SMS with PayHos](https://docs.payhos.com/components/sms) for more information on SMS dodumentations.
|
|
37
30
|
```javascript
|
|
@@ -79,6 +72,13 @@ email.send(data).then(response => {
|
|
|
79
72
|
});
|
|
80
73
|
```
|
|
81
74
|
|
|
75
|
+
## Airtime
|
|
76
|
+
```javascript
|
|
77
|
+
const airtime = payhos.airtime;
|
|
78
|
+
|
|
79
|
+
// Coming soon...
|
|
80
|
+
```
|
|
81
|
+
|
|
82
82
|
### Further Reading
|
|
83
83
|
Have a look at other packages:
|
|
84
84
|
- [pincode](https://www.npmjs.com/package/pincode)
|
package/models/index.d.ts
CHANGED