taxtank-core 0.17.8 → 0.17.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 +48 -28
- package/bundles/taxtank-core.umd.js.map +1 -1
- package/esm2015/lib/models/property/property-equity-chart-data.js +12 -1
- package/esm2015/lib/services/http/user/user.service.js +10 -4
- package/esm2015/lib/validators/index.js +3 -1
- package/esm2015/public-api.js +2 -1
- package/fesm2015/taxtank-core.js +45 -28
- package/fesm2015/taxtank-core.js.map +1 -1
- package/lib/models/property/property-equity-chart-data.d.ts +4 -0
- package/lib/services/http/user/user.service.d.ts +5 -1
- package/lib/validators/index.d.ts +2 -0
- package/package.json +1 -1
- package/public-api.d.ts +1 -0
|
@@ -59,4 +59,8 @@ export declare class PropertyEquityChartData {
|
|
|
59
59
|
* Check if loan balance is 0 and set it as null (to not to draw point on the chart)
|
|
60
60
|
*/
|
|
61
61
|
private checkZeroLoanBalance;
|
|
62
|
+
/**
|
|
63
|
+
* Check if market value is 0 and set it as null (to not to draw point on the chart)
|
|
64
|
+
*/
|
|
65
|
+
private checkZeroMarketValue;
|
|
62
66
|
}
|
|
@@ -36,10 +36,14 @@ export declare class UserService implements IEventListener {
|
|
|
36
36
|
* Change user password
|
|
37
37
|
*/
|
|
38
38
|
changePassword(currentPassword: string, newPassword: string): Observable<object>;
|
|
39
|
+
/**
|
|
40
|
+
* Recovery user password
|
|
41
|
+
*/
|
|
42
|
+
recoveryPassword(email: string): Observable<object>;
|
|
39
43
|
/**
|
|
40
44
|
* Reset user password
|
|
41
45
|
*/
|
|
42
|
-
resetPassword(
|
|
46
|
+
resetPassword(newPassword: string, resetToken: string): Observable<object>;
|
|
43
47
|
/**
|
|
44
48
|
* Confirm registered user
|
|
45
49
|
*/
|
package/package.json
CHANGED
package/public-api.d.ts
CHANGED