paystack-sdk 2.5.17 → 2.5.19
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 +4 -1
- package/dist/transfer/interface.d.ts +1 -2
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -2,7 +2,10 @@
|
|
|
2
2
|
|
|
3
3
|
#### Why Another [Paystack](https://paystack.com) Package?
|
|
4
4
|
|
|
5
|
-
|
|
5
|
+
Existing Paystack libraries are either outdated, lack modern features, or fail to support TypeScript. This package addresses these gaps by providing:
|
|
6
|
+
- Full TypeScript support for type safety and better developer experience.
|
|
7
|
+
- A modern, actively maintained library aligned with Paystack’s latest API updates.
|
|
8
|
+
- Clean, intuitive APIs designed for ease of use.
|
|
6
9
|
|
|
7
10
|
### Installation
|
|
8
11
|
|
|
@@ -88,7 +88,7 @@ export interface ListTransferQueryParams {
|
|
|
88
88
|
*/
|
|
89
89
|
to?: Date;
|
|
90
90
|
}
|
|
91
|
-
interface Transfer {
|
|
91
|
+
export interface Transfer {
|
|
92
92
|
integration: number;
|
|
93
93
|
domain: string;
|
|
94
94
|
amount: number;
|
|
@@ -126,4 +126,3 @@ export interface CheckBalanceResponse extends Response {
|
|
|
126
126
|
export interface LedgerBalanceResponse extends Response {
|
|
127
127
|
data: LedgerBalance[];
|
|
128
128
|
}
|
|
129
|
-
export {};
|