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.
@@ -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
  *
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "bkper-js",
3
- "version": "2.1.0",
3
+ "version": "2.2.1",
4
4
  "description": "Javascript client for Bkper REST API",
5
5
  "main": "./lib/index.js",
6
6
  "module": "./lib/index.js",