@bkper/bkper-api-types 5.5.0 → 5.5.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/index.d.ts +8 -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;
|
|
@@ -1010,6 +1013,11 @@ declare namespace Paths {
|
|
|
1010
1013
|
export type $200 = bkper.Book;
|
|
1011
1014
|
}
|
|
1012
1015
|
}
|
|
1016
|
+
namespace BkperV5GetBookEventsBacklog {
|
|
1017
|
+
namespace Responses {
|
|
1018
|
+
export type $200 = bkper.Backlog;
|
|
1019
|
+
}
|
|
1020
|
+
}
|
|
1013
1021
|
namespace BkperV5GetConnection {
|
|
1014
1022
|
namespace Responses {
|
|
1015
1023
|
export type $200 = bkper.Connection;
|