taxtank-core 0.32.92 → 0.32.94

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.
@@ -18,10 +18,6 @@ export declare class TaxReviewCollection extends Collection<TaxReview> {
18
18
  * Get tax reviews items in work (In progress, Waiting for client, Waiting for Approval, Is approved)
19
19
  */
20
20
  getInWork(): TaxReview[];
21
- /**
22
- * Get percentage of completed reviews of the total review amount
23
- */
24
- getCompletedPercentage(): number;
25
21
  /**
26
22
  * get list of items filtered by status
27
23
  * @param status
@@ -5,7 +5,6 @@ import { RegistrationInvite } from '../user/registration-invite';
5
5
  import { ObservableModel } from '../observable-model';
6
6
  import { FirmBranchInterface } from '../../../models/firm/firm-branch.interface';
7
7
  import { Firm } from './firm';
8
- import { Address } from '../address';
9
8
  export declare class ClientInvite extends ObservableModel {
10
9
  static className: string;
11
10
  type?: ClientInviteTypeEnum;
@@ -15,7 +14,7 @@ export declare class ClientInvite extends ObservableModel {
15
14
  employee?: User;
16
15
  client?: User;
17
16
  registrationInvite?: RegistrationInvite;
18
- address?: Address;
17
+ address?: string;
19
18
  firm?: Firm;
20
19
  firmBranch?: FirmBranchInterface;
21
20
  }
@@ -1,8 +1,8 @@
1
1
  import { FormControl, FormGroup } from '@angular/forms';
2
2
  import { AbstractForm, ControlsInterface } from '../abstract.form';
3
- import { Address, ClientInvite } from '../../models';
3
+ import { ClientInvite } from '../../models';
4
4
  interface ClientInvitePutControlsInterface extends ControlsInterface {
5
- address: FormControl<Address>;
5
+ address: FormControl<string>;
6
6
  registrationInvite: FormGroup<{
7
7
  firstName: FormControl<string>;
8
8
  lastName: FormControl<string>;
@@ -2,14 +2,12 @@ import { ClientInvite as ClientInviteBase } from '../../db/Models/firm/client-in
2
2
  import { RegistrationInvite } from '../registration-invite/registration-invite';
3
3
  import { User } from '../user';
4
4
  import { Firm, FirmBranch } from '../firm';
5
- import { Address } from '../address';
6
5
  export declare class ClientInvite extends ClientInviteBase {
7
6
  sentOn: Date;
8
7
  updatedAt: Date;
9
8
  client: User;
10
9
  employee: User;
11
10
  registrationInvite: RegistrationInvite;
12
- address: Address;
13
11
  firm: Firm;
14
12
  firmBranch: FirmBranch;
15
13
  /**
@@ -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>;
@@ -20,6 +20,7 @@ export declare class ClientMovementService extends RestService<ClientMovementBas
20
20
  getTTAdvisor(): Observable<ClientMovement>;
21
21
  getActiveByFirmType(type: FirmTypeEnum): Observable<ClientMovementCollection>;
22
22
  /**
23
+ * @TODO use simple put when backend refactored (inner movements shouldn't create a new movement)
23
24
  * Method is using for transfer client between employees.
24
25
  * On backend we close passed movement and create a new one instead
25
26
  */
@@ -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.92",
3
+ "version": "0.32.94",
4
4
  "private": false,
5
5
  "peerDependencies": {
6
6
  "@angular/compiler": "^16.2.12",