taxtank-core 0.17.4 → 0.17.5

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.
@@ -8,7 +8,11 @@ export declare class TransactionBase extends AbstractModel {
8
8
  date?: Date;
9
9
  chartAccounts?: ChartAccounts;
10
10
  description?: string;
11
- file?: File;
11
+ /**
12
+ * could be File when just added new image
13
+ * @TODO Alex plainToClass doesn't work with File without this hack https://github.com/typestack/class-transformer/issues/1178
14
+ */
15
+ file: File;
12
16
  claimPercent?: number;
13
17
  /**
14
18
  * Check if current tank is Property
@@ -23,11 +23,6 @@ export declare class Transaction extends TransactionBase implements Expense, IRe
23
23
  loan: Loan;
24
24
  date: Date;
25
25
  allocations: TransactionAllocation[];
26
- /**
27
- * could be File when just added new image
28
- * @TODO Alex plainToClass doesn't work with File without this hack https://github.com/typestack/class-transformer/issues/1178
29
- */
30
- file: File;
31
26
  tax: number;
32
27
  operation: TransactionOperationEnum;
33
28
  allocatedAmount: number;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "taxtank-core",
3
- "version": "0.17.4",
3
+ "version": "0.17.5",
4
4
  "private": false,
5
5
  "peerDependencies": {
6
6
  "@angular/common": "^12.2.3 || ~13.0.0",