taxtank-core 2.0.119 → 2.0.120
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/fesm2022/taxtank-core.mjs +13 -8
- package/fesm2022/taxtank-core.mjs.map +1 -1
- package/index.d.ts +5 -5
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -1760,7 +1760,7 @@ declare class SoleBusiness$1 extends ObservableModel {
|
|
|
1760
1760
|
deletedAt?: Date;
|
|
1761
1761
|
user?: User;
|
|
1762
1762
|
activity?: SoleBusinessActivity$1;
|
|
1763
|
-
isPrimaryProduction
|
|
1763
|
+
isPrimaryProduction: boolean;
|
|
1764
1764
|
allocations?: SoleBusinessAllocation$1[];
|
|
1765
1765
|
losses?: SoleBusinessLoss$1[];
|
|
1766
1766
|
invoices?: SoleInvoice$1[];
|
|
@@ -1771,7 +1771,7 @@ declare class SoleBusiness$1 extends ObservableModel {
|
|
|
1771
1771
|
transactions?: Transaction$1[];
|
|
1772
1772
|
depreciations?: Depreciation$1[];
|
|
1773
1773
|
file: File$1;
|
|
1774
|
-
isTaxFree
|
|
1774
|
+
isTaxFree: boolean;
|
|
1775
1775
|
}
|
|
1776
1776
|
|
|
1777
1777
|
declare enum MyAccountHistoryInitiatedByEnum {
|
|
@@ -2528,9 +2528,9 @@ declare class MfaDetails extends AbstractModel implements MfaDetailsInterface {
|
|
|
2528
2528
|
* Used only for vehicle loans
|
|
2529
2529
|
*/
|
|
2530
2530
|
declare enum LoanMaxNumberOfPaymentsEnum {
|
|
2531
|
-
WEEKLY =
|
|
2532
|
-
FORTNIGHTLY =
|
|
2533
|
-
MONTHLY =
|
|
2531
|
+
WEEKLY = 364,
|
|
2532
|
+
FORTNIGHTLY = 182,
|
|
2533
|
+
MONTHLY = 84
|
|
2534
2534
|
}
|
|
2535
2535
|
|
|
2536
2536
|
/**
|