@open-rlb/ng-app 3.1.15 → 3.1.17

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@open-rlb/ng-app",
3
- "version": "3.1.15",
3
+ "version": "3.1.17",
4
4
  "peerDependencies": {
5
5
  "@angular/common": "^21.0.0",
6
6
  "@angular/core": "^21.0.0",
@@ -118,14 +118,13 @@ interface SidebarState {
118
118
 
119
119
  declare const aclFeatureKey = "acl";
120
120
  interface UserResource {
121
- productId: string;
121
+ resourceBusinessId: string;
122
122
  resources: Resource[];
123
123
  }
124
124
  interface Resource {
125
125
  resourceId: string;
126
126
  actions: string[];
127
- resourceName: string;
128
- companyId: string;
127
+ friendlyName?: string;
129
128
  }
130
129
  interface Acl {
131
130
  resources: UserResource[] | null;
@@ -654,8 +653,7 @@ declare const RLB_CFG_AUTH: InjectionToken<AuthConfiguration>;
654
653
  declare const RLB_APP_NAVCOMP: InjectionToken<NavbarComponents>;
655
654
  declare const RLB_CFG_ACL: InjectionToken<AclConfiguration>;
656
655
  interface InterceptorMapping {
657
- companyIdKey?: string;
658
- productIdKey?: string;
656
+ [httpParamName: string]: string;
659
657
  }
660
658
  interface AclConfiguration {
661
659
  endpointKey: string;