taxtank-core 0.28.7 → 0.28.8-1
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 +26 -2
- package/bundles/taxtank-core.umd.js.map +1 -1
- package/esm2015/lib/forms/bank/bank-account/bank-account-import.form.js +3 -3
- package/esm2015/lib/forms/loan/loan.form.js +5 -1
- package/esm2015/lib/models/loan/loan-max-number-of-payments.enum.js +3 -2
- package/esm2015/lib/models/service-subscription/service-subscription.js +20 -1
- package/fesm2015/taxtank-core.js +26 -2
- package/fesm2015/taxtank-core.js.map +1 -1
- package/lib/forms/loan/loan.form.d.ts +1 -0
- package/lib/models/loan/loan-max-number-of-payments.enum.d.ts +2 -1
- package/lib/models/service-subscription/service-subscription.d.ts +9 -0
- package/package.json +1 -1
|
@@ -18,6 +18,7 @@ export declare class LoanForm extends AbstractForm<Loan> {
|
|
|
18
18
|
* term validation depends on selected repaymentFrequency
|
|
19
19
|
*/
|
|
20
20
|
listenRepaymentFrequencyChanges(): void;
|
|
21
|
+
d: any;
|
|
21
22
|
/**
|
|
22
23
|
* For vehicle loans term has a maximum value depended of repayment frequency
|
|
23
24
|
*/
|
|
@@ -65,4 +65,13 @@ export declare class ServiceSubscription extends ServiceSubscriptionBase {
|
|
|
65
65
|
* Case when payment was failed, but user has a time to update payment method
|
|
66
66
|
*/
|
|
67
67
|
isPastDue(): boolean;
|
|
68
|
+
/**
|
|
69
|
+
* Check if current subscription has provided subscription item
|
|
70
|
+
*/
|
|
71
|
+
hasItem(itemToCheck: ServiceSubscriptionItem): boolean;
|
|
72
|
+
/**
|
|
73
|
+
* Recommended number of properties to buy,
|
|
74
|
+
* based on the property service product and the number of properties the user has
|
|
75
|
+
*/
|
|
76
|
+
getRecommendedPropertiesQty(propertyItem: ServiceSubscriptionItem, propertiesQty: number): number;
|
|
68
77
|
}
|