@bkper/bkper-api-types 5.1.5 → 5.1.6
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 +12 -0
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -334,6 +334,18 @@ declare namespace bkper {
|
|
|
334
334
|
* The time zone offset of the Book, in minutes
|
|
335
335
|
*/
|
|
336
336
|
timeZoneOffset?: number; // int32
|
|
337
|
+
/**
|
|
338
|
+
* The total transactions posted
|
|
339
|
+
*/
|
|
340
|
+
totalTransactions?: number; // int64
|
|
341
|
+
/**
|
|
342
|
+
* The total transactions posted on current month
|
|
343
|
+
*/
|
|
344
|
+
totalTransactionsCurrentMonth?: number; // int64
|
|
345
|
+
/**
|
|
346
|
+
* The total transactions posted on current year
|
|
347
|
+
*/
|
|
348
|
+
totalTransactionsCurrentYear?: number; // int64
|
|
337
349
|
}
|
|
338
350
|
export interface BookList {
|
|
339
351
|
/**
|