taxtank-core 0.16.10 → 0.16.11
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/bundles/taxtank-core.umd.js +23 -18
- package/bundles/taxtank-core.umd.js.map +1 -1
- package/esm2015/lib/collections/income-source.collection.js +4 -1
- package/esm2015/lib/db/Enums/income-source-type-list-other.enum.js +1 -1
- package/esm2015/lib/db/Enums/income-source-type-list-work.enum.js +2 -1
- package/esm2015/lib/db/Enums/income-source-type.enum.js +3 -4
- package/esm2015/lib/models/income-source/income-source-type.js +4 -6
- package/esm2015/lib/models/income-source/income-source.js +4 -2
- package/esm2015/lib/services/account-setup/account-setup.service.js +11 -7
- package/fesm2015/taxtank-core.js +22 -18
- package/fesm2015/taxtank-core.js.map +1 -1
- package/lib/collections/income-source.collection.d.ts +1 -0
- package/lib/db/Enums/income-source-type-list-work.enum.d.ts +1 -0
- package/lib/db/Enums/income-source-type.enum.d.ts +3 -4
- package/lib/models/income-source/income-source-type.d.ts +1 -1
- package/lib/services/account-setup/account-setup.service.d.ts +3 -2
- package/package.json +1 -1
- package/esm2015/lib/db/Enums/income-source-type-list-salary.enum.js +0 -5
- package/lib/db/Enums/income-source-type-list-salary.enum.d.ts +0 -3
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { IncomeSourceType as IncomeSourceTypeBase } from '../../db/Models/incomeSource/income-source-type';
|
|
2
2
|
import { IncomeSourceTypeEnum } from '../../db/Enums/income-source-type.enum';
|
|
3
3
|
export declare class IncomeSourceType extends IncomeSourceTypeBase {
|
|
4
|
-
|
|
4
|
+
isBonuses(): boolean;
|
|
5
5
|
isWork(): boolean;
|
|
6
6
|
isOther(): boolean;
|
|
7
7
|
isSole(): boolean;
|
|
@@ -44,9 +44,10 @@ export declare class AccountSetupService {
|
|
|
44
44
|
*/
|
|
45
45
|
private createBatch;
|
|
46
46
|
/**
|
|
47
|
-
* @TODO work with collection when services refactored
|
|
47
|
+
* @TODO Alex: work with collection when services refactored
|
|
48
|
+
* @TODO Vik: waiting for income sources refactoring
|
|
48
49
|
*/
|
|
49
|
-
private
|
|
50
|
+
private getIncomeSources;
|
|
50
51
|
/**
|
|
51
52
|
* Show logbook item when user has at least 1 vehicle transaction
|
|
52
53
|
*/
|
package/package.json
CHANGED
|
@@ -1,5 +0,0 @@
|
|
|
1
|
-
export var IncomeSourceTypeListSalaryEnum;
|
|
2
|
-
(function (IncomeSourceTypeListSalaryEnum) {
|
|
3
|
-
IncomeSourceTypeListSalaryEnum[IncomeSourceTypeListSalaryEnum["BONUSES"] = 1] = "BONUSES";
|
|
4
|
-
})(IncomeSourceTypeListSalaryEnum || (IncomeSourceTypeListSalaryEnum = {}));
|
|
5
|
-
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaW5jb21lLXNvdXJjZS10eXBlLWxpc3Qtc2FsYXJ5LmVudW0uanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi8uLi9wcm9qZWN0cy90dC1jb3JlL3NyYy9saWIvZGIvRW51bXMvaW5jb21lLXNvdXJjZS10eXBlLWxpc3Qtc2FsYXJ5LmVudW0udHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsTUFBTSxDQUFOLElBQVksOEJBRVg7QUFGRCxXQUFZLDhCQUE4QjtJQUN4Qyx5RkFBVyxDQUFBO0FBQ2IsQ0FBQyxFQUZXLDhCQUE4QixLQUE5Qiw4QkFBOEIsUUFFekMiLCJzb3VyY2VzQ29udGVudCI6WyJleHBvcnQgZW51bSBJbmNvbWVTb3VyY2VUeXBlTGlzdFNhbGFyeUVudW0ge1xuICBCT05VU0VTID0gMSxcbn1cbiJdfQ==
|