taxtank-core 2.1.63 → 2.1.65
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 +63 -26
- package/fesm2022/taxtank-core.mjs.map +1 -1
- package/index.d.ts +7 -1
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -4183,6 +4183,7 @@ declare class BankAccount$1 extends BankAccount {
|
|
|
4183
4183
|
isManual(): boolean;
|
|
4184
4184
|
get isForeign(): boolean;
|
|
4185
4185
|
get convertedBalance(): number;
|
|
4186
|
+
get convertedCloseBalance(): number;
|
|
4186
4187
|
}
|
|
4187
4188
|
|
|
4188
4189
|
declare class SoleBusinessAllocation extends SoleBusinessAllocation$1 {
|
|
@@ -4937,6 +4938,7 @@ declare class AllocationGroup extends AbstractModel {
|
|
|
4937
4938
|
invoiceNumber?: number;
|
|
4938
4939
|
allocations: TransactionAllocationCollection;
|
|
4939
4940
|
bankTransactions: BankTransactionCollection;
|
|
4941
|
+
exchangeRate: number;
|
|
4940
4942
|
static fromInvoice(invoice: SoleInvoice, bankTransactions: BankTransactionCollection, allocations: TransactionAllocationCollection): AllocationGroup;
|
|
4941
4943
|
static fromTransaction(transaction: Transaction, bankTransactions: BankTransactionCollection, allocations: TransactionAllocationCollection): AllocationGroup;
|
|
4942
4944
|
isFindMatch(): boolean;
|
|
@@ -4951,6 +4953,7 @@ declare class AllocationGroup extends AbstractModel {
|
|
|
4951
4953
|
*/
|
|
4952
4954
|
isTransactionChangeable(): boolean;
|
|
4953
4955
|
get isAutoAllocated(): boolean;
|
|
4956
|
+
get operationLabel(): string;
|
|
4954
4957
|
}
|
|
4955
4958
|
|
|
4956
4959
|
/**
|
|
@@ -11939,8 +11942,11 @@ declare class DocumentFolderCollection extends Collection<DocumentFolder> {
|
|
|
11939
11942
|
toTreeNode(documents: Collection<Document>, expandedIds: Set<number>): TreeNode[];
|
|
11940
11943
|
}
|
|
11941
11944
|
|
|
11942
|
-
declare class AllocationGroupCollection extends
|
|
11945
|
+
declare class AllocationGroupCollection extends ExportableCollection<AllocationGroup> {
|
|
11943
11946
|
constructor(items: AllocationGroup[]);
|
|
11947
|
+
getExportHeader(): string[];
|
|
11948
|
+
getExportFooter(): ExportCell[];
|
|
11949
|
+
getExportBody(): ExportCell[][];
|
|
11944
11950
|
}
|
|
11945
11951
|
|
|
11946
11952
|
declare class BankTransactionImportCollection extends Collection<BankTransactionImport> implements FileImportedDataProvider {
|