taxtank-core 1.0.29 → 1.0.30

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "taxtank-core",
3
- "version": "1.0.29",
3
+ "version": "1.0.30",
4
4
  "private": false,
5
5
  "peerDependencies": {
6
6
  "@angular/common": "^19.0.2",
@@ -22,7 +22,7 @@ export declare class BankAccount extends BankAccountBase {
22
22
  get partialAccountNumber(): string;
23
23
  get balance(): number;
24
24
  /**
25
- * Get current opening balance amount
25
+ * Get the current opening balance amount
26
26
  */
27
27
  getOpeningBalance(year?: number): number;
28
28
  /**
@@ -34,7 +34,7 @@ export declare class BankAccount extends BankAccountBase {
34
34
  */
35
35
  isSavingsAccount(): boolean;
36
36
  /**
37
- * check if bank account type is Loan
37
+ * check if a bank account type is Loan
38
38
  */
39
39
  isLoan(): boolean;
40
40
  /**
@@ -42,15 +42,15 @@ export declare class BankAccount extends BankAccountBase {
42
42
  */
43
43
  isCreditCard(): boolean;
44
44
  /**
45
- * check if bank account related to work tank
45
+ * check if a bank account related to work tank
46
46
  */
47
47
  isWorkTank(): boolean;
48
48
  /**
49
- * check if bank account related to work tank
49
+ * check if a bank account related to work tank
50
50
  */
51
51
  isPropertyTank(): boolean;
52
52
  /**
53
- * check if bank account related to sole tank
53
+ * check if a bank account related to sole tank
54
54
  */
55
55
  isSoleTank(): boolean;
56
56
  /**
@@ -59,7 +59,7 @@ export declare class BankAccount extends BankAccountBase {
59
59
  */
60
60
  getPropertyById(id: number): BankAccountProperty;
61
61
  /**
62
- * check if bank account is related with passed property by id
62
+ * check if a bank account is related with passed property by id
63
63
  * @param propertyId Property id for checking
64
64
  */
65
65
  hasProperty(propertyId: number): boolean;