ngx-vector-components 4.35.0 → 4.37.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.
- package/CHANGELOG.md +12 -0
- package/esm2020/lib/models/profile.model.mjs +2 -1
- package/esm2020/lib/services/auth.service.mjs +4 -4
- package/esm2020/lib/services/profile.service.mjs +4 -3
- package/fesm2015/ngx-vector-components.mjs +6 -5
- package/fesm2015/ngx-vector-components.mjs.map +1 -1
- package/fesm2020/ngx-vector-components.mjs +6 -5
- package/fesm2020/ngx-vector-components.mjs.map +1 -1
- package/lib/models/profile.model.d.ts +2 -1
- package/lib/services/profile.service.d.ts +1 -1
- package/package.json +1 -1
|
@@ -205,5 +205,6 @@ export declare enum ProfileModuleActionType {
|
|
|
205
205
|
SHOW_ADVANCE_ETCD = "Show Advance ETCD",
|
|
206
206
|
APPROVE_REQUESTS_ETCD = "Approve Requests ETCD",
|
|
207
207
|
SHOW_SUPPLY = "Show Supply",
|
|
208
|
-
SHOW_TRIP_OFFERT = "Trip Offer Show"
|
|
208
|
+
SHOW_TRIP_OFFERT = "Trip Offer Show",
|
|
209
|
+
ADD_LASTNAME_LOCATION = "Add LastName Location"
|
|
209
210
|
}
|
|
@@ -18,7 +18,7 @@ export declare class ProfileService {
|
|
|
18
18
|
hasAnyFintechPermission: boolean;
|
|
19
19
|
hasAnyMarketplacePermission: boolean;
|
|
20
20
|
constructor(http: HttpClient, storageService: StorageService);
|
|
21
|
-
getUserProfile():
|
|
21
|
+
getUserProfile(): Observable<any>;
|
|
22
22
|
userHasPermission(action: ProfileModuleActionType | ProfileModuleType | ProfileModuleActionType[] | ProfileModuleType[] | undefined): boolean;
|
|
23
23
|
getUserInfo(): Observable<any>;
|
|
24
24
|
static ɵfac: i0.ɵɵFactoryDeclaration<ProfileService, never>;
|