bkper 2.4.0 → 2.5.0
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/lib/index.d.ts +0 -20
- package/lib/index.js +1 -2
- package/lib/model/Enums.js +1 -21
- package/package.json +1 -1
package/lib/index.d.ts
CHANGED
|
@@ -338,26 +338,6 @@ export declare class App {
|
|
|
338
338
|
|
|
339
339
|
|
|
340
340
|
|
|
341
|
-
}
|
|
342
|
-
|
|
343
|
-
/**
|
|
344
|
-
* Enum that represents balance types.
|
|
345
|
-
*
|
|
346
|
-
* @public
|
|
347
|
-
*/
|
|
348
|
-
export declare enum BalanceType {
|
|
349
|
-
/**
|
|
350
|
-
* Total balance
|
|
351
|
-
*/
|
|
352
|
-
TOTAL = "TOTAL",
|
|
353
|
-
/**
|
|
354
|
-
* Period balance
|
|
355
|
-
*/
|
|
356
|
-
PERIOD = "PERIOD",
|
|
357
|
-
/**
|
|
358
|
-
* Cumulative balance
|
|
359
|
-
*/
|
|
360
|
-
CUMULATIVE = "CUMULATIVE"
|
|
361
341
|
}
|
|
362
342
|
|
|
363
343
|
/**
|
package/lib/index.js
CHANGED
|
@@ -7,7 +7,7 @@
|
|
|
7
7
|
* @packageDocumentation
|
|
8
8
|
*/
|
|
9
9
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
10
|
-
exports.Permission = exports.DecimalSeparator = exports.
|
|
10
|
+
exports.Permission = exports.DecimalSeparator = exports.AccountType = exports.Periodicity = exports.TransactionIterator = exports.Transaction = exports.Group = exports.File = exports.Collection = exports.Book = exports.Account = exports.Bkper = exports.Amount = exports.App = void 0;
|
|
11
11
|
var App_1 = require("./model/App");
|
|
12
12
|
Object.defineProperty(exports, "App", { enumerable: true, get: function () { return App_1.App; } });
|
|
13
13
|
var Amount_1 = require("./model/Amount");
|
|
@@ -31,7 +31,6 @@ Object.defineProperty(exports, "TransactionIterator", { enumerable: true, get: f
|
|
|
31
31
|
var Enums_1 = require("./model/Enums");
|
|
32
32
|
Object.defineProperty(exports, "Periodicity", { enumerable: true, get: function () { return Enums_1.Periodicity; } });
|
|
33
33
|
Object.defineProperty(exports, "AccountType", { enumerable: true, get: function () { return Enums_1.AccountType; } });
|
|
34
|
-
Object.defineProperty(exports, "BalanceType", { enumerable: true, get: function () { return Enums_1.BalanceType; } });
|
|
35
34
|
Object.defineProperty(exports, "DecimalSeparator", { enumerable: true, get: function () { return Enums_1.DecimalSeparator; } });
|
|
36
35
|
Object.defineProperty(exports, "Permission", { enumerable: true, get: function () { return Enums_1.Permission; } });
|
|
37
36
|
//# sourceMappingURL=index.js.map
|
package/lib/model/Enums.js
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.Month = exports.Period = exports.
|
|
3
|
+
exports.Month = exports.Period = exports.AccountType = exports.Permission = exports.DecimalSeparator = exports.Periodicity = void 0;
|
|
4
4
|
/**
|
|
5
5
|
* The Periodicity of the query. It may depend on the level of granularity you write the range params.
|
|
6
6
|
*
|
|
@@ -95,26 +95,6 @@ var AccountType;
|
|
|
95
95
|
*/
|
|
96
96
|
AccountType["OUTGOING"] = "OUTGOING";
|
|
97
97
|
})(AccountType = exports.AccountType || (exports.AccountType = {}));
|
|
98
|
-
/**
|
|
99
|
-
* Enum that represents balance types.
|
|
100
|
-
*
|
|
101
|
-
* @public
|
|
102
|
-
*/
|
|
103
|
-
var BalanceType;
|
|
104
|
-
(function (BalanceType) {
|
|
105
|
-
/**
|
|
106
|
-
* Total balance
|
|
107
|
-
*/
|
|
108
|
-
BalanceType["TOTAL"] = "TOTAL";
|
|
109
|
-
/**
|
|
110
|
-
* Period balance
|
|
111
|
-
*/
|
|
112
|
-
BalanceType["PERIOD"] = "PERIOD";
|
|
113
|
-
/**
|
|
114
|
-
* Cumulative balance
|
|
115
|
-
*/
|
|
116
|
-
BalanceType["CUMULATIVE"] = "CUMULATIVE";
|
|
117
|
-
})(BalanceType = exports.BalanceType || (exports.BalanceType = {}));
|
|
118
98
|
/**
|
|
119
99
|
* Enum that represents a period slice.
|
|
120
100
|
*
|