@open-rlb/ng-app 3.1.12 → 3.1.14

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.12",
3
+ "version": "3.1.14",
4
4
  "peerDependencies": {
5
5
  "@angular/common": "^21.0.0",
6
6
  "@angular/core": "^21.0.0",
@@ -643,7 +643,9 @@ declare class UtilsService {
643
643
  static ɵprov: i0.ɵɵInjectableDeclaration<UtilsService>;
644
644
  }
645
645
 
646
- declare const RLB_CFG = "rlb.options";
646
+ declare const RLB_CFG: InjectionToken<ProjectConfiguration<{
647
+ [k: string]: any;
648
+ }>>;
647
649
  declare const RLB_CFG_CMS: InjectionToken<CmsConfiguration>;
648
650
  declare const RLB_CFG_I18N: InjectionToken<InternationalizationConfiguration>;
649
651
  declare const RLB_CFG_PAGES: InjectionToken<PagesConfiguration>;
@@ -651,9 +653,14 @@ declare const RLB_CFG_ENV: InjectionToken<EnvironmentConfiguration>;
651
653
  declare const RLB_CFG_AUTH: InjectionToken<AuthConfiguration>;
652
654
  declare const RLB_APP_NAVCOMP: InjectionToken<NavbarComponents>;
653
655
  declare const RLB_CFG_ACL: InjectionToken<AclConfiguration>;
656
+ interface InterceptorMapping {
657
+ companyIdKey?: string;
658
+ productIdKey?: string;
659
+ }
654
660
  interface AclConfiguration {
655
661
  endpointKey: string;
656
662
  path: string;
663
+ interceptorMapping?: InterceptorMapping;
657
664
  }
658
665
  interface ProviderConfiguration extends OpenIdConfiguration {
659
666
  configId: string;
@@ -681,6 +688,7 @@ interface AuthConfiguration {
681
688
  protocol: 'oauth';
682
689
  storage: 'cookies' | 'localStorage' | 'sessionStorage';
683
690
  interceptor?: 'oauth-code-all' | 'oauth-code-ep' | 'none';
691
+ enableCompanyInterceptor?: boolean;
684
692
  allowedUrls: string[];
685
693
  providers: ProviderConfiguration[];
686
694
  }
@@ -1220,4 +1228,4 @@ declare function provideRlbConfig<T = {
1220
1228
  declare function provideApp(app: AppDescriber): (EnvironmentProviders | Provider)[];
1221
1229
 
1222
1230
  export { AbstractMdService, AbstractSupportService, AclActions, AppBreadcrumbService, AppContainerComponent, AppContextActions, AppContextActionsInternal, AppLoggerService, AppStorageService, AppTemplateComponent, AppsService, AsMultiPipe, AsSinglePipe, AuthActions, AuthActionsInternal, AuthFeatureService, AuthenticationService, AutolinkPipe, BaseComponent, CmsComponent, CmsPipe, ContentComponent, CookiesService, ErrorManagementService, ErrorModalComponent, KeycloakProfileService, LanguageService, LeftComponentPipe, LocalCacheService, ModalAppsComponent, NavbarActions, NavbarActionsInternal, OauthPasswordService, ParseJwtService, PwaUpdaterService, RLB_APPS, RLB_APP_NAVCOMP, RLB_CFG, RLB_CFG_ACL, RLB_CFG_AUTH, RLB_CFG_CMS, RLB_CFG_ENV, RLB_CFG_I18N, RLB_CFG_PAGES, RightComponentPipe, RlbAppModule, RlbRole, SidebarActions, SidebarActionsInternal, StrapiService, ToastComponent, TokenOauthInterceptor, TranslateBrowserLoader, TruncatePipe, UtilsService, aclFeatureKey, appContextFeatureKey, authsFeatureKey, getDefaultRoutes, initialAclState, initialAppContextState, initialAuthState, initialNavbarState, initialSidebarState, navbarsFeatureKey, oauthGuard, oauthPasswordGuard, permissionGuard, provideApp, provideRlbCodeBrowserOAuth, provideRlbConfig, provideRlbI18n, sidebarsFeatureKey, translateBrowserLoaderFactory, verifyDeactivate };
1223
- export type { Acl, AclConfiguration, AclState, AppContext, AppDescriber, AppDetails, AppInfo, AppInfoData, AppState, AppTheme, AppViewMode, Auth, AuthConfiguration, AuthState, BaseState, CacheItem, CmsConfiguration, Endpoint, EnvironmentConfiguration, ErrorOutput, Faq, FaqGroup, Home, IConfiguration, InternationalizationConfiguration, JwtUser, KeycloakClient, KeycloakCredential, KeycloakDevice, KeycloakSession, KeycloakUser, KeycloakUserCredentialMetadata, LogLevel, LoggerContext, MenuItem, Navbar, NavbarComponents, NavbarState, Page, PageTemplate, PagesConfiguration, ProjectConfiguration, ProviderConfiguration, Resource, Sidebar, SidebarState, Step, Tab, Token, Topic, UserClaims, UserResource, VerifyDeactivate, _KeycloakCredential };
1231
+ export type { Acl, AclConfiguration, AclState, AppContext, AppDescriber, AppDetails, AppInfo, AppInfoData, AppState, AppTheme, AppViewMode, Auth, AuthConfiguration, AuthState, BaseState, CacheItem, CmsConfiguration, Endpoint, EnvironmentConfiguration, ErrorOutput, Faq, FaqGroup, Home, IConfiguration, InterceptorMapping, InternationalizationConfiguration, JwtUser, KeycloakClient, KeycloakCredential, KeycloakDevice, KeycloakSession, KeycloakUser, KeycloakUserCredentialMetadata, LogLevel, LoggerContext, MenuItem, Navbar, NavbarComponents, NavbarState, Page, PageTemplate, PagesConfiguration, ProjectConfiguration, ProviderConfiguration, Resource, Sidebar, SidebarState, Step, Tab, Token, Topic, UserClaims, UserResource, VerifyDeactivate, _KeycloakCredential };