@bkper/bkper-api-types 5.5.1 → 5.6.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/index.d.ts +8 -0
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -460,6 +460,9 @@ declare namespace bkper {
|
|
|
460
460
|
*/
|
|
461
461
|
items?: Connection[];
|
|
462
462
|
}
|
|
463
|
+
export interface Count {
|
|
464
|
+
total?: number; // int64
|
|
465
|
+
}
|
|
463
466
|
export interface Event {
|
|
464
467
|
agent?: Agent;
|
|
465
468
|
book?: Book;
|
|
@@ -858,6 +861,11 @@ declare namespace Paths {
|
|
|
858
861
|
export type TransactionList = bkper.TransactionList;
|
|
859
862
|
}
|
|
860
863
|
}
|
|
864
|
+
namespace BkperV5CountTransactions {
|
|
865
|
+
namespace Responses {
|
|
866
|
+
export type $200 = bkper.Count;
|
|
867
|
+
}
|
|
868
|
+
}
|
|
861
869
|
namespace BkperV5CreateAccount {
|
|
862
870
|
export interface BodyParameters {
|
|
863
871
|
Account: Parameters.Account;
|