@bkper/bkper-api-types 5.1.0 → 5.1.4
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 +6 -5
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -12,10 +12,6 @@ declare namespace bkper {
|
|
|
12
12
|
* The overall account balance
|
|
13
13
|
*/
|
|
14
14
|
balance?: string;
|
|
15
|
-
/**
|
|
16
|
-
* The balance of the account for checked transactions
|
|
17
|
-
*/
|
|
18
|
-
checkedBalance?: string;
|
|
19
15
|
/**
|
|
20
16
|
* The creation timestamp, in milliseconds
|
|
21
17
|
*/
|
|
@@ -68,6 +64,7 @@ declare namespace bkper {
|
|
|
68
64
|
cumulativeCredit?: string;
|
|
69
65
|
cumulativeDebit?: string;
|
|
70
66
|
name?: string;
|
|
67
|
+
normalizedName?: string;
|
|
71
68
|
periodBalance?: string;
|
|
72
69
|
periodCredit?: string;
|
|
73
70
|
periodDebit?: string;
|
|
@@ -260,13 +257,16 @@ declare namespace bkper {
|
|
|
260
257
|
range?: string;
|
|
261
258
|
rangeBeginLabel?: string;
|
|
262
259
|
rangeEndLabel?: string;
|
|
263
|
-
totalRemovedBalances?: number; // int32
|
|
264
260
|
}
|
|
265
261
|
export interface Book {
|
|
266
262
|
/**
|
|
267
263
|
* The id of agent that created the resource
|
|
268
264
|
*/
|
|
269
265
|
agentId?: string;
|
|
266
|
+
/**
|
|
267
|
+
* The book closing date
|
|
268
|
+
*/
|
|
269
|
+
closingDate?: string;
|
|
270
270
|
collection?: Collection;
|
|
271
271
|
/**
|
|
272
272
|
* The creation timestamp, in milliseconds
|
|
@@ -511,6 +511,7 @@ declare namespace bkper {
|
|
|
511
511
|
cumulativeDebit?: string;
|
|
512
512
|
groupBalances?: GroupBalances[];
|
|
513
513
|
name?: string;
|
|
514
|
+
normalizedName?: string;
|
|
514
515
|
periodBalance?: string;
|
|
515
516
|
periodCredit?: string;
|
|
516
517
|
periodDebit?: string;
|