taxtank-core 0.32.68 → 0.32.70

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.
@@ -1,6 +1,6 @@
1
1
  import { User } from '../user/user';
2
2
  import { AbstractModel } from '../abstract-model';
3
- import { AnnualFrequencyEnum } from '../../Enums/annual-frequency.enum';
3
+ import { AnnualFrequencyEnum } from '../../Enums';
4
4
  export declare class SoleDetails extends AbstractModel {
5
5
  abn?: string;
6
6
  isGST?: boolean;
@@ -9,4 +9,5 @@ export declare class SoleDetails extends AbstractModel {
9
9
  deletedAt?: Date;
10
10
  user?: User;
11
11
  reportingFrequency?: AnnualFrequencyEnum;
12
+ autoAllocate?: boolean;
12
13
  }
@@ -1,5 +1,5 @@
1
1
  import { SoleDetails as SoleDetailsBase } from '../../db/Models/sole/sole-details';
2
- import { User } from '../user/user';
2
+ import { User } from '../user';
3
3
  export declare class SoleDetails extends SoleDetailsBase {
4
4
  user: User;
5
5
  }
@@ -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.68",
3
+ "version": "0.32.70",
4
4
  "private": false,
5
5
  "peerDependencies": {
6
6
  "@angular/compiler": "^16.2.12",