taxtank-core 0.33.34 → 0.33.36

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.34",
3
+ "version": "0.33.36",
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;
@@ -1,5 +1,7 @@
1
1
  export declare enum SoleInvoiceStateEnum {
2
- PAID = 0,
3
- OVERDUE = 1,
4
- PENDING = 2
2
+ CANCELED = 0,
3
+ DRAFT = 1,
4
+ OPEN = 2,
5
+ PAID = 3,
6
+ OVERDUE = 4
5
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
  */