taxtank-core 0.32.70 → 0.32.71
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/esm2022/lib/db/Enums/user-event-type-type.enum.mjs +4 -2
- package/esm2022/lib/models/transaction/allocation-rule.mjs +2 -1
- package/esm2022/lib/services/http/bank/bank-connection/bank-connection.service.mjs +2 -2
- package/esm2022/lib/services/http/transaction/transaction-allocation/transaction-allocation.service.mjs +8 -3
- package/esm2022/lib/services/http/transaction/transaction.service.mjs +11 -3
- package/fesm2022/taxtank-core.mjs +22 -6
- package/fesm2022/taxtank-core.mjs.map +1 -1
- package/lib/db/Enums/user-event-type-type.enum.d.ts +3 -1
- package/lib/models/transaction/allocation-rule.d.ts +1 -0
- package/lib/services/http/bank/bank-connection/bank-connection.service.d.ts +0 -1
- package/package.json +1 -1
|
@@ -26,7 +26,9 @@ export declare enum UserEventTypeTypeEnum {
|
|
|
26
26
|
BASIQ_FIRST_IMPORT_COMPLETE = 2031,
|
|
27
27
|
BASIQ_AUTHORIZATION_FAIL = 2032,
|
|
28
28
|
TRANSACTION_ALLOCATE_REMINDER = 2033,
|
|
29
|
-
|
|
29
|
+
INVOICE_AUTO_ALLOCATED = 2035,
|
|
30
|
+
INVOICE_AUTO_PART_ALLOCATED = 2036,
|
|
31
|
+
RULES_AUTO_ALLOCATED = 2037,
|
|
30
32
|
REGISTRATION_INVITE = 2040,
|
|
31
33
|
REGISTRATION_INVITE_ACCEPTED = 2041,
|
|
32
34
|
CLIENT_EMAIL_CONFIRMED = 2050,
|
|
@@ -11,6 +11,7 @@ export declare class AllocationRule extends AllocationRuleBase {
|
|
|
11
11
|
transferBankAccount?: BankAccount;
|
|
12
12
|
type: AllocationRuleTypeEnum;
|
|
13
13
|
conditionOperator: AllocationRuleConditionOperatorEnum;
|
|
14
|
+
autoAllocate: boolean;
|
|
14
15
|
get typeLabel(): string;
|
|
15
16
|
isIncome(): boolean;
|
|
16
17
|
isExpense(): boolean;
|
|
@@ -15,7 +15,6 @@ export declare class BankConnectionService extends RestService<BankConnectionBas
|
|
|
15
15
|
collectionClass: typeof Collection;
|
|
16
16
|
endpointUri: string;
|
|
17
17
|
disabledMethods: RestMethod[];
|
|
18
|
-
mercureTopic: string;
|
|
19
18
|
constructor(environment: any);
|
|
20
19
|
listenEvents(): void;
|
|
21
20
|
/**
|