bkper-js 1.9.0 → 1.9.1
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/lib/index.d.ts +2 -2
- package/lib/index.js +1 -1
- package/package.json +1 -1
package/lib/index.d.ts
CHANGED
|
@@ -765,7 +765,7 @@ export declare class Book {
|
|
|
765
765
|
*
|
|
766
766
|
* @returns A TransactionPage object containing the list of transactions
|
|
767
767
|
*/
|
|
768
|
-
listTransactions(query?: string, limit?: number, cursor?: string): Promise<
|
|
768
|
+
listTransactions(query?: string, limit?: number, cursor?: string): Promise<TransactionList>;
|
|
769
769
|
/**
|
|
770
770
|
* Retrieve a transaction by id
|
|
771
771
|
*/
|
|
@@ -1776,7 +1776,7 @@ export declare class Transaction {
|
|
|
1776
1776
|
/**
|
|
1777
1777
|
* A list associated with a transaction query.
|
|
1778
1778
|
*/
|
|
1779
|
-
export declare class
|
|
1779
|
+
export declare class TransactionList {
|
|
1780
1780
|
private payload;
|
|
1781
1781
|
|
|
1782
1782
|
constructor(book: Book, payload: bkper.TransactionList);
|
package/lib/index.js
CHANGED
|
@@ -17,7 +17,7 @@ export { Group } from './model/Group.js';
|
|
|
17
17
|
export { Integration } from './model/Integration.js';
|
|
18
18
|
export { Template } from './model/Template.js';
|
|
19
19
|
export { Transaction } from './model/Transaction.js';
|
|
20
|
-
export { TransactionList
|
|
20
|
+
export { TransactionList } from './model/TransactionList.js';
|
|
21
21
|
export { User } from './model/User.js';
|
|
22
22
|
export { Periodicity, DecimalSeparator, Permission, Visibility, AccountType, Period, Month } from './model/Enums.js';
|
|
23
23
|
//# sourceMappingURL=index.js.map
|