taxtank-core 0.31.12 → 0.31.13
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/esm2020/lib/services/http/rest/rest-old.service.mjs +7 -5
- package/esm2020/lib/services/http/rest/rest.service.mjs +15 -13
- package/esm2020/lib/services/http/user/user.service.mjs +1 -2
- package/fesm2015/taxtank-core.mjs +98 -94
- package/fesm2015/taxtank-core.mjs.map +1 -1
- package/fesm2020/taxtank-core.mjs +96 -92
- package/fesm2020/taxtank-core.mjs.map +1 -1
- package/lib/services/http/rest/rest-old.service.d.ts +1 -1
- package/lib/services/http/rest/rest.service.d.ts +1 -1
- package/package.json +1 -1
|
@@ -17,7 +17,6 @@ export declare abstract class RestService<BaseModel, Model extends BaseModel> im
|
|
|
17
17
|
protected eventDispatcherService: EventDispatcherService;
|
|
18
18
|
protected environment: any;
|
|
19
19
|
protected toastService: ToastService;
|
|
20
|
-
private jwtService;
|
|
21
20
|
abstract url: string;
|
|
22
21
|
abstract modelClass: any;
|
|
23
22
|
protected cache: Model[];
|
|
@@ -30,6 +29,7 @@ export declare abstract class RestService<BaseModel, Model extends BaseModel> im
|
|
|
30
29
|
messageDeleted: string;
|
|
31
30
|
messageDeletedBatch: string;
|
|
32
31
|
roles: UserRolesEnum[];
|
|
32
|
+
private user;
|
|
33
33
|
constructor(http: HttpClient, eventDispatcherService: EventDispatcherService, environment: any, toastService: ToastService);
|
|
34
34
|
/**
|
|
35
35
|
* get list of base class instances directly from backend
|
|
@@ -20,7 +20,6 @@ export declare abstract class RestService<BaseModel, Model extends AbstractModel
|
|
|
20
20
|
protected http: HttpClient;
|
|
21
21
|
protected eventDispatcherService: EventDispatcherService;
|
|
22
22
|
protected environment: any;
|
|
23
|
-
private jwtService;
|
|
24
23
|
/**
|
|
25
24
|
* Url part for service entity API
|
|
26
25
|
*/
|
|
@@ -40,6 +39,7 @@ export declare abstract class RestService<BaseModel, Model extends AbstractModel
|
|
|
40
39
|
*/
|
|
41
40
|
disabledMethods: RestMethod[];
|
|
42
41
|
roles: UserRolesEnum[];
|
|
42
|
+
private user;
|
|
43
43
|
constructor(http: HttpClient, eventDispatcherService: EventDispatcherService, environment: any);
|
|
44
44
|
protected get apiUrl(): string;
|
|
45
45
|
setCache(data: any[], next?: boolean): void;
|