taxtank-core 0.32.69 → 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.
Files changed (23) hide show
  1. package/esm2022/lib/db/Enums/user-event-type-type.enum.mjs +4 -2
  2. package/esm2022/lib/db/Models/transaction/transaction-base.mjs +2 -2
  3. package/esm2022/lib/models/transaction/allocation-rule-transaction.mjs +1 -1
  4. package/esm2022/lib/models/transaction/allocation-rule.mjs +2 -1
  5. package/esm2022/lib/services/http/bank/bank-connection/bank-connection.service.mjs +2 -2
  6. package/esm2022/lib/services/http/chat/message.service.mjs +2 -2
  7. package/esm2022/lib/services/http/firm/client-invite/client-invite.service.mjs +2 -2
  8. package/esm2022/lib/services/http/firm/client-movement/client-movement.service.mjs +2 -2
  9. package/esm2022/lib/services/http/subscription/service-payment-method/service-payment-method.service.mjs +2 -2
  10. package/esm2022/lib/services/http/subscription/service-subscription/subscription.service.mjs +2 -2
  11. package/esm2022/lib/services/http/transaction/transaction-allocation/transaction-allocation.service.mjs +11 -3
  12. package/esm2022/lib/services/http/transaction/transaction.service.mjs +11 -3
  13. package/fesm2022/taxtank-core.mjs +31 -12
  14. package/fesm2022/taxtank-core.mjs.map +1 -1
  15. package/lib/db/Enums/user-event-type-type.enum.d.ts +3 -1
  16. package/lib/models/transaction/allocation-rule.d.ts +1 -0
  17. package/lib/services/http/bank/bank-connection/bank-connection.service.d.ts +0 -1
  18. package/lib/services/http/chat/message.service.d.ts +0 -1
  19. package/lib/services/http/firm/client-invite/client-invite.service.d.ts +0 -1
  20. package/lib/services/http/firm/client-movement/client-movement.service.d.ts +0 -1
  21. package/lib/services/http/subscription/service-payment-method/service-payment-method.service.d.ts +0 -1
  22. package/lib/services/http/subscription/service-subscription/subscription.service.d.ts +0 -1
  23. 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
- AUTO_ALLOCATION = 2035,
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
  /**
@@ -13,7 +13,6 @@ export declare class MessageService extends RestService<MessageBase, Message, Me
13
13
  collectionClass: typeof MessageCollection;
14
14
  endpointUri: string;
15
15
  disabledMethods: RestMethod[];
16
- mercureTopic: string;
17
16
  constructor(environment: any);
18
17
  listenEvents(): void;
19
18
  static ɵfac: i0.ɵɵFactoryDeclaration<MessageService, never>;
@@ -10,7 +10,6 @@ export declare class ClientInviteService extends RestService<ClientInviteBase, C
10
10
  protected endpointUri: string;
11
11
  collectionClass: typeof ClientInviteCollection;
12
12
  modelClass: typeof ClientInvite;
13
- mercureTopic: string;
14
13
  constructor(environment: any);
15
14
  listenEvents(): void;
16
15
  getFirmInvites(): Observable<ClientInviteCollection>;
@@ -13,7 +13,6 @@ export declare class ClientMovementService extends RestService<ClientMovementBas
13
13
  collectionClass: typeof ClientMovementCollection;
14
14
  modelClass: typeof ClientMovement;
15
15
  disabledMethods: RestMethod[];
16
- mercureTopic: string;
17
16
  constructor(environment: any);
18
17
  listenEvents(): void;
19
18
  getActive(): Observable<ClientMovementCollection>;
@@ -10,7 +10,6 @@ export declare class ServicePaymentMethodService extends RestService<ServicePaym
10
10
  protected endpointUri: string;
11
11
  collectionClass: typeof Collection;
12
12
  modelClass: typeof ServicePaymentMethod;
13
- mercureTopic: string;
14
13
  constructor(environment: any);
15
14
  listenEvents(): void;
16
15
  /**
@@ -16,7 +16,6 @@ export declare class SubscriptionService extends RestService<ServiceSubscription
16
16
  modelClass: typeof ServiceSubscription;
17
17
  collectionClass: typeof ServiceSubscriptionCollection;
18
18
  disabledMethods: RestMethod[];
19
- mercureTopic: string;
20
19
  constructor(http: HttpClient, environment: any);
21
20
  listenEvents(): void;
22
21
  startTrial(subscription: ServiceSubscription): Observable<ServiceSubscription>;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "taxtank-core",
3
- "version": "0.32.69",
3
+ "version": "0.32.71",
4
4
  "private": false,
5
5
  "peerDependencies": {
6
6
  "@angular/compiler": "^16.2.12",