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/fesm2022/taxtank-core.mjs +60 -22
- package/fesm2022/taxtank-core.mjs.map +1 -1
- package/index.d.ts +6 -1
- package/package.json +1 -1
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
|
|
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 {
|