taxtank-core 3.0.17 → 3.0.19
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/README.md +5 -5
- package/fesm2022/taxtank-core-common.mjs +20 -20
- package/fesm2022/taxtank-core-common.mjs.map +1 -1
- package/fesm2022/taxtank-core.mjs +501 -491
- package/fesm2022/taxtank-core.mjs.map +1 -1
- package/{types/taxtank-core.d.ts → index.d.ts} +15 -8
- package/package.json +5 -6
- package/types/taxtank-core.d.ts.map +0 -1
- /package/{types/taxtank-core-common.d.ts → common/index.d.ts} +0 -0
|
@@ -2822,10 +2822,22 @@ declare class FolderDocument extends AbstractModel {
|
|
|
2822
2822
|
folder?: DocumentFolder$1;
|
|
2823
2823
|
}
|
|
2824
2824
|
|
|
2825
|
+
declare enum PropertyCorelogicStatsConfidenceTypeEnum {
|
|
2826
|
+
LOW = "LOW",
|
|
2827
|
+
MEDIUM_LOW = "MEDIUM_LOW",
|
|
2828
|
+
MEDIUM = "MEDIUM",
|
|
2829
|
+
MEDIUM_HIGH = "MEDIUM_HIGH",
|
|
2830
|
+
HIGH = "HIGH"
|
|
2831
|
+
}
|
|
2832
|
+
|
|
2825
2833
|
declare class PropertyValuation$1 extends ObservableModel {
|
|
2826
2834
|
static className: string;
|
|
2827
2835
|
date?: Date;
|
|
2828
2836
|
marketValue?: number;
|
|
2837
|
+
confidence: PropertyCorelogicStatsConfidenceTypeEnum;
|
|
2838
|
+
growthPercent: number;
|
|
2839
|
+
lowMarketValue: number;
|
|
2840
|
+
highMarketValue: number;
|
|
2829
2841
|
deletedAt?: Date;
|
|
2830
2842
|
createdAt?: Date;
|
|
2831
2843
|
updatedAt?: Date;
|
|
@@ -2833,6 +2845,7 @@ declare class PropertyValuation$1 extends ObservableModel {
|
|
|
2833
2845
|
document?: FolderDocument;
|
|
2834
2846
|
categoryMovement?: PropertyCategoryMovement$1;
|
|
2835
2847
|
isCorelogic: boolean;
|
|
2848
|
+
get confidenceLabel(): string;
|
|
2836
2849
|
}
|
|
2837
2850
|
|
|
2838
2851
|
declare class PropertyCategoryMovement extends PropertyCategoryMovement$1 {
|
|
@@ -2908,7 +2921,6 @@ declare class Property$1 extends Property {
|
|
|
2908
2921
|
static preCGTAssetDate: Date;
|
|
2909
2922
|
static corelogicCooldown: number;
|
|
2910
2923
|
purchasePrice: number;
|
|
2911
|
-
growthPercent: number;
|
|
2912
2924
|
contractDate: Date;
|
|
2913
2925
|
settlementDate: Date;
|
|
2914
2926
|
address: Address;
|
|
@@ -2992,6 +3004,7 @@ declare class Property$1 extends Property {
|
|
|
2992
3004
|
getGrowth(): number;
|
|
2993
3005
|
getEquityPosition(bankAccounts: BankAccountCollection): number;
|
|
2994
3006
|
getLvr(bankAccounts: BankAccountCollection): number;
|
|
3007
|
+
get growthPercent(): number;
|
|
2995
3008
|
}
|
|
2996
3009
|
|
|
2997
3010
|
/**
|
|
@@ -3998,12 +4011,6 @@ declare class BorrowingReport extends BorrowingReport$1 {
|
|
|
3998
4011
|
getNetSurplusRatio(profit: number, repaymentAmount: number): number;
|
|
3999
4012
|
}
|
|
4000
4013
|
|
|
4001
|
-
declare enum PropertyCorelogicStatsConfidenceTypeEnum {
|
|
4002
|
-
LOW = "LOW",
|
|
4003
|
-
MEDIUM = "MEDIUM",
|
|
4004
|
-
HIGH = "HIGH"
|
|
4005
|
-
}
|
|
4006
|
-
|
|
4007
4014
|
interface PropertyCorelogicStatsInterface {
|
|
4008
4015
|
confidence: PropertyCorelogicStatsConfidenceTypeEnum;
|
|
4009
4016
|
growthPercent: number;
|
|
@@ -8420,6 +8427,7 @@ declare class TransactionService extends RestService<Transaction$1, Transaction>
|
|
|
8420
8427
|
* @param model
|
|
8421
8428
|
*/
|
|
8422
8429
|
delete(model: Transaction): Observable<void>;
|
|
8430
|
+
parse(files: File[]): Observable<Transaction[]>;
|
|
8423
8431
|
/**
|
|
8424
8432
|
* Listen to EventDispatcherService event related to Depreciation changing
|
|
8425
8433
|
*/
|
|
@@ -11467,7 +11475,6 @@ declare class Property extends ObservableModel {
|
|
|
11467
11475
|
settlementDate?: Date;
|
|
11468
11476
|
depreciationCalculation?: PropertyDepreciationCalculationEnum;
|
|
11469
11477
|
shareWith?: string;
|
|
11470
|
-
growthPercent?: number;
|
|
11471
11478
|
subscriptions?: PropertySubscription$1[];
|
|
11472
11479
|
deletedAt?: Date;
|
|
11473
11480
|
createdAt?: Date;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "taxtank-core",
|
|
3
|
-
"version": "3.0.
|
|
3
|
+
"version": "3.0.19",
|
|
4
4
|
"private": false,
|
|
5
5
|
"peerDependencies": {
|
|
6
6
|
"@angular/common": "^22.0.0",
|
|
@@ -39,20 +39,19 @@
|
|
|
39
39
|
"tslib": "^2.8.1"
|
|
40
40
|
},
|
|
41
41
|
"module": "fesm2022/taxtank-core.mjs",
|
|
42
|
-
"typings": "
|
|
42
|
+
"typings": "index.d.ts",
|
|
43
43
|
"exports": {
|
|
44
44
|
"./package.json": {
|
|
45
45
|
"default": "./package.json"
|
|
46
46
|
},
|
|
47
47
|
".": {
|
|
48
|
-
"types": "./
|
|
48
|
+
"types": "./index.d.ts",
|
|
49
49
|
"default": "./fesm2022/taxtank-core.mjs"
|
|
50
50
|
},
|
|
51
51
|
"./common": {
|
|
52
|
-
"types": "./
|
|
52
|
+
"types": "./common/index.d.ts",
|
|
53
53
|
"default": "./fesm2022/taxtank-core-common.mjs"
|
|
54
54
|
}
|
|
55
55
|
},
|
|
56
|
-
"sideEffects": false
|
|
57
|
-
"type": "module"
|
|
56
|
+
"sideEffects": false
|
|
58
57
|
}
|