bkper-js 2.1.0 → 2.2.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/CHANGELOG.md +280 -275
- package/lib/index.d.ts +329 -4
- package/lib/model/Balance.js +120 -0
- package/lib/model/BalancesContainerAccount.js +62 -1
- package/lib/model/BalancesContainerGroup.js +63 -2
- package/lib/model/BalancesDataTableBuilder.js +587 -0
- package/lib/model/Enums.js +20 -0
- package/package.json +1 -1
package/lib/model/Enums.js
CHANGED
|
@@ -108,6 +108,26 @@ export var AccountType;
|
|
|
108
108
|
*/
|
|
109
109
|
AccountType["OUTGOING"] = "OUTGOING";
|
|
110
110
|
})(AccountType || (AccountType = {}));
|
|
111
|
+
/**
|
|
112
|
+
* Enum that represents balance types.
|
|
113
|
+
*
|
|
114
|
+
* @public
|
|
115
|
+
*/
|
|
116
|
+
export var BalanceType;
|
|
117
|
+
(function (BalanceType) {
|
|
118
|
+
/**
|
|
119
|
+
* Total balance
|
|
120
|
+
*/
|
|
121
|
+
BalanceType["TOTAL"] = "TOTAL";
|
|
122
|
+
/**
|
|
123
|
+
* Period balance
|
|
124
|
+
*/
|
|
125
|
+
BalanceType["PERIOD"] = "PERIOD";
|
|
126
|
+
/**
|
|
127
|
+
* Cumulative balance
|
|
128
|
+
*/
|
|
129
|
+
BalanceType["CUMULATIVE"] = "CUMULATIVE";
|
|
130
|
+
})(BalanceType || (BalanceType = {}));
|
|
111
131
|
/**
|
|
112
132
|
* Enum that represents a period slice.
|
|
113
133
|
*
|