taxtank-core 0.33.35 → 0.33.37

Sign up to get free protection for your applications and to get access to all the features.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "taxtank-core",
3
- "version": "0.33.35",
3
+ "version": "0.33.37",
4
4
  "private": false,
5
5
  "peerDependencies": {
6
6
  "@angular/common": "^17.0.0",
@@ -4,7 +4,6 @@ import { TransactionCollection } from '../transaction';
4
4
  import { CollectionDictionary } from '../collection-dictionary';
5
5
  export declare class SoleInvoiceCollection extends Collection<SoleInvoice> {
6
6
  getOverdue(): this;
7
- getPending(): this;
8
7
  getPaid(transactions: TransactionCollection): this;
9
8
  getUnpaid(transactions: TransactionCollection): this;
10
9
  getOpen(): this;
@@ -3,6 +3,5 @@ export declare enum SoleInvoiceStateEnum {
3
3
  DRAFT = 1,
4
4
  OPEN = 2,
5
5
  PAID = 3,
6
- OVERDUE = 4,
7
- PENDING = 5
6
+ OVERDUE = 4
8
7
  }
@@ -34,7 +34,6 @@ export declare class SoleInvoice extends SoleInvoiceBase {
34
34
  isDraft(): boolean;
35
35
  isCancelled(): boolean;
36
36
  isOpen(): boolean;
37
- isPending(): boolean;
38
37
  /**
39
38
  * overdue next day after dateTo
40
39
  */