bkper-js 1.0.0 → 1.2.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/README.md +4 -4
- package/lib/index.d.ts +115 -97
- package/lib/index.js +15 -35
- package/lib/model/Account.js +30 -50
- package/lib/model/Amount.js +6 -13
- package/lib/model/App.js +6 -10
- package/lib/model/Bkper.js +14 -41
- package/lib/model/Book.js +64 -103
- package/lib/model/Collection.js +5 -9
- package/lib/model/Config.js +1 -2
- package/lib/model/Connection.js +8 -32
- package/lib/model/Enums.js +12 -15
- package/lib/model/File.js +19 -32
- package/lib/model/Group.js +16 -40
- package/lib/model/Integration.js +6 -7
- package/lib/model/Transaction.js +59 -77
- package/lib/model/TransactionIterator.js +15 -19
- package/lib/model/TransactionPage.js +14 -40
- package/lib/model/User.js +9 -34
- package/lib/service/account-service.js +9 -15
- package/lib/service/app-service.js +7 -12
- package/lib/service/balances-service.js +3 -6
- package/lib/service/book-service.js +7 -12
- package/lib/service/connection-service.js +16 -21
- package/lib/service/file-service.js +5 -9
- package/lib/service/group-service.js +18 -24
- package/lib/service/http-api-request.js +50 -101
- package/lib/service/http-request.js +78 -0
- package/lib/service/integration-service.js +9 -15
- package/lib/service/transaction-service.js +27 -37
- package/lib/service/user-service.js +3 -6
- package/lib/utils.js +72 -85
- package/package.json +9 -7
package/README.md
CHANGED
|
@@ -9,19 +9,19 @@ Bkper Node.js client provides a simple and secure way to access the [Bkper REST
|
|
|
9
9
|
### Add the package:
|
|
10
10
|
|
|
11
11
|
```
|
|
12
|
-
npm i -S bkper
|
|
12
|
+
npm i -S bkper-js
|
|
13
13
|
```
|
|
14
14
|
or
|
|
15
15
|
```
|
|
16
|
-
yarn add bkper
|
|
16
|
+
yarn add bkper-js
|
|
17
17
|
```
|
|
18
18
|
or
|
|
19
19
|
```
|
|
20
|
-
bun add bkper
|
|
20
|
+
bun add bkper-js
|
|
21
21
|
```
|
|
22
22
|
|
|
23
23
|
## Documentation
|
|
24
24
|
|
|
25
25
|
- [Developer Docs](https://bkper.com/docs)
|
|
26
|
-
- [API Reference](https://bkper.com/docs/bkper-
|
|
26
|
+
- [API Reference](https://bkper.com/docs/bkper-js/)
|
|
27
27
|
|