taxtank-core 2.1.63 → 2.1.64

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
@@ -4937,6 +4937,7 @@ declare class AllocationGroup extends AbstractModel {
4937
4937
  invoiceNumber?: number;
4938
4938
  allocations: TransactionAllocationCollection;
4939
4939
  bankTransactions: BankTransactionCollection;
4940
+ exchangeRate: number;
4940
4941
  static fromInvoice(invoice: SoleInvoice, bankTransactions: BankTransactionCollection, allocations: TransactionAllocationCollection): AllocationGroup;
4941
4942
  static fromTransaction(transaction: Transaction, bankTransactions: BankTransactionCollection, allocations: TransactionAllocationCollection): AllocationGroup;
4942
4943
  isFindMatch(): boolean;
@@ -4951,6 +4952,7 @@ declare class AllocationGroup extends AbstractModel {
4951
4952
  */
4952
4953
  isTransactionChangeable(): boolean;
4953
4954
  get isAutoAllocated(): boolean;
4955
+ get operationLabel(): string;
4954
4956
  }
4955
4957
 
4956
4958
  /**
@@ -11939,8 +11941,11 @@ declare class DocumentFolderCollection extends Collection<DocumentFolder> {
11939
11941
  toTreeNode(documents: Collection<Document>, expandedIds: Set<number>): TreeNode[];
11940
11942
  }
11941
11943
 
11942
- declare class AllocationGroupCollection extends Collection<AllocationGroup> {
11944
+ declare class AllocationGroupCollection extends ExportableCollection<AllocationGroup> {
11943
11945
  constructor(items: AllocationGroup[]);
11946
+ getExportHeader(): string[];
11947
+ getExportFooter(): ExportCell[];
11948
+ getExportBody(): ExportCell[][];
11944
11949
  }
11945
11950
 
11946
11951
  declare class BankTransactionImportCollection extends Collection<BankTransactionImport> implements FileImportedDataProvider {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "taxtank-core",
3
- "version": "2.1.63",
3
+ "version": "2.1.64",
4
4
  "private": false,
5
5
  "peerDependencies": {
6
6
  "@angular/common": "^20.1.3",