@bkper/bkper-api-types 5.5.0 → 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 +16 -0
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -253,6 +253,9 @@ declare namespace bkper {
|
|
|
253
253
|
*/
|
|
254
254
|
values?: string[];
|
|
255
255
|
}
|
|
256
|
+
export interface Backlog {
|
|
257
|
+
count?: number; // int32
|
|
258
|
+
}
|
|
256
259
|
export interface Balance {
|
|
257
260
|
checkedCumulativeBalance?: string;
|
|
258
261
|
checkedPeriodBalance?: string;
|
|
@@ -457,6 +460,9 @@ declare namespace bkper {
|
|
|
457
460
|
*/
|
|
458
461
|
items?: Connection[];
|
|
459
462
|
}
|
|
463
|
+
export interface Count {
|
|
464
|
+
total?: number; // int64
|
|
465
|
+
}
|
|
460
466
|
export interface Event {
|
|
461
467
|
agent?: Agent;
|
|
462
468
|
book?: Book;
|
|
@@ -855,6 +861,11 @@ declare namespace Paths {
|
|
|
855
861
|
export type TransactionList = bkper.TransactionList;
|
|
856
862
|
}
|
|
857
863
|
}
|
|
864
|
+
namespace BkperV5CountTransactions {
|
|
865
|
+
namespace Responses {
|
|
866
|
+
export type $200 = bkper.Count;
|
|
867
|
+
}
|
|
868
|
+
}
|
|
858
869
|
namespace BkperV5CreateAccount {
|
|
859
870
|
export interface BodyParameters {
|
|
860
871
|
Account: Parameters.Account;
|
|
@@ -1010,6 +1021,11 @@ declare namespace Paths {
|
|
|
1010
1021
|
export type $200 = bkper.Book;
|
|
1011
1022
|
}
|
|
1012
1023
|
}
|
|
1024
|
+
namespace BkperV5GetBookEventsBacklog {
|
|
1025
|
+
namespace Responses {
|
|
1026
|
+
export type $200 = bkper.Backlog;
|
|
1027
|
+
}
|
|
1028
|
+
}
|
|
1013
1029
|
namespace BkperV5GetConnection {
|
|
1014
1030
|
namespace Responses {
|
|
1015
1031
|
export type $200 = bkper.Connection;
|