taxtank-core 0.26.0 → 0.27.0

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,2 +1,3 @@
1
1
  export * from './sole';
2
2
  export * from './vehicle';
3
+ export * from './user';
@@ -0,0 +1,4 @@
1
+ export * from './occupation/occupation.service';
2
+ export * from './user-event-setting/user-event-setting.service';
3
+ export * from './user-event-type/user-event-type.service';
4
+ export * from './users-invite/users-invite.service';
@@ -0,0 +1,13 @@
1
+ import { RestService } from '../../rest/rest.service';
2
+ import { RegistrationInvite as RegistrationInviteBase } from '../../../../db/Models/user/registration-invite';
3
+ import { RegistrationInvite } from '../../../../models/registration-invite/registration-invite';
4
+ import * as i0 from "@angular/core";
5
+ /**
6
+ * Service to work with invitations for unregistered users
7
+ */
8
+ export declare class UsersInviteService extends RestService<RegistrationInviteBase, RegistrationInvite> {
9
+ modelClass: typeof RegistrationInvite;
10
+ url: string;
11
+ static ɵfac: i0.ɵɵFactoryDeclaration<UsersInviteService, never>;
12
+ static ɵprov: i0.ɵɵInjectableDeclaration<UsersInviteService>;
13
+ }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "taxtank-core",
3
- "version": "0.26.0",
3
+ "version": "0.27.0",
4
4
  "private": false,
5
5
  "peerDependencies": {
6
6
  "@angular/common": "^12.2.3 || ~13.0.0",