taxtank-core 2.1.27 → 2.1.29

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/index.d.ts CHANGED
@@ -7655,6 +7655,8 @@ declare class SoleInvoiceService extends RestService$1<SoleInvoice$1, SoleInvoic
7655
7655
  * Return the next number from the last invoice
7656
7656
  */
7657
7657
  getNewInvoiceNumber(type?: SoleInvoiceTypeEnum): number;
7658
+ getQuotes(): Observable<SoleInvoiceCollection>;
7659
+ getInvoices(): Observable<SoleInvoiceCollection>;
7658
7660
  static ɵfac: i0.ɵɵFactoryDeclaration<SoleInvoiceService, never>;
7659
7661
  static ɵprov: i0.ɵɵInjectableDeclaration<SoleInvoiceService>;
7660
7662
  }
@@ -10331,10 +10333,11 @@ declare class SoleBusinessLossReport extends AbstractModel {
10331
10333
  */
10332
10334
  declare class SolePlItem {
10333
10335
  chartAccounts: ChartAccounts;
10336
+ name: string;
10334
10337
  amount: number;
10335
10338
  priorAmount: number;
10336
10339
  varianceRatio: number;
10337
- constructor(transactions: TransactionCollection, priorTransactions: TransactionCollection);
10340
+ constructor(transactions: TransactionCollection, data?: Partial<SolePlItem>);
10338
10341
  }
10339
10342
 
10340
10343
  /**
@@ -11637,7 +11640,7 @@ declare class BudgetRuleItemCollection extends Collection<BudgetRuleItem> {
11637
11640
  }
11638
11641
 
11639
11642
  declare class SolePlItemCollection extends Collection<SolePlItem> {
11640
- static fromTransactions(transactions: TransactionCollection, priorTransactions: TransactionCollection): SolePlItemCollection;
11643
+ static fromTransactions(transactions: TransactionCollection): SolePlItemCollection;
11641
11644
  get amount(): number;
11642
11645
  get priorAmount(): number;
11643
11646
  get varianceRatio(): number;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "taxtank-core",
3
- "version": "2.1.27",
3
+ "version": "2.1.29",
4
4
  "private": false,
5
5
  "peerDependencies": {
6
6
  "@angular/common": "^20.1.3",