@ngx-smz/core 21.4.0 → 21.4.2

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.
@@ -11577,32 +11577,7 @@ class BaseApiService {
11577
11577
  }
11578
11578
  }
11579
11579
 
11580
- const DEFAULT_AUTHENTICATION_ENDPOINTS_ROUTES = {
11581
- login: 'api/authentication/login',
11582
- refreshToken: 'api/authentication/refresh-token',
11583
- resetPassword: 'api/authentication/reset-password',
11584
- redefinePassword: 'api/authentication/redefine-password',
11585
- resendConfirmation: 'api/authentication/resend-confirmation',
11586
- confirmEmail: 'api/authentication/confirm-email',
11587
- switchTenant: 'api/authentication/switch-tenant',
11588
- changePassword: 'api/authentication/change-password',
11589
- register: 'api/authentication/user/register',
11590
- createUser: 'api/authentication/user/create',
11591
- deleteUser: 'api/authentication/user/delete',
11592
- deactivateUser: 'api/authentication/user/deactivate',
11593
- activateUser: 'api/authentication/user/activate',
11594
- };
11595
- const DEFAULT_AUTHENTICATION_BASE_PATH = 'authentication';
11596
- function buildAuthenticationEndpointsRoutes(basePath = DEFAULT_AUTHENTICATION_BASE_PATH) {
11597
- const routes = { ...DEFAULT_AUTHENTICATION_ENDPOINTS_ROUTES };
11598
- const prefix = `api/${DEFAULT_AUTHENTICATION_BASE_PATH}`;
11599
- const replacement = `api/${basePath}`;
11600
- return Object.keys(routes).reduce((result, key) => {
11601
- result[key] = routes[key].replace(prefix, replacement);
11602
- return result;
11603
- }, {});
11604
- }
11605
- function buildAuthenticationUrl(serverUrl, route) {
11580
+ function buildServerApiUrl(serverUrl, route) {
11606
11581
  const base = serverUrl.replace(/\/+$/, '');
11607
11582
  const path = route.replace(/^\/+/, '');
11608
11583
  return `${base}/${path}`;
@@ -11621,7 +11596,7 @@ class AuthService extends BaseApiService {
11621
11596
  if (extraProperties != null) {
11622
11597
  data = { ...data, ...extraProperties };
11623
11598
  }
11624
- const url = buildAuthenticationUrl(this.environment.serverUrl, GlobalInjector.config.rbkUtils.authentication.endpointsRoutes.login);
11599
+ const url = buildServerApiUrl(this.environment.serverUrl, GlobalInjector.config.rbkUtils.authentication.endpointsRoutes.login);
11625
11600
  return this.http.post(url, data, this.generateDefaultHeaders({
11626
11601
  loadingBehavior: GlobalInjector.config.rbkUtils.authentication.login.loadingBehavior,
11627
11602
  authentication: false,
@@ -11640,7 +11615,7 @@ class AuthService extends BaseApiService {
11640
11615
  if (extraProperties != null) {
11641
11616
  data = { ...data, ...extraProperties };
11642
11617
  }
11643
- const url = buildAuthenticationUrl(this.environment.serverUrl, GlobalInjector.config.rbkUtils.authentication.endpointsRoutes.refreshToken);
11618
+ const url = buildServerApiUrl(this.environment.serverUrl, GlobalInjector.config.rbkUtils.authentication.endpointsRoutes.refreshToken);
11644
11619
  return this.http.post(url, data, this.generateDefaultHeaders({
11645
11620
  loadingBehavior: GlobalInjector.config.rbkUtils.authentication.refreshToken.loadingBehavior,
11646
11621
  authentication: false,
@@ -11661,77 +11636,60 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.5", ngImpor
11661
11636
  args: [{ providedIn: 'root' }]
11662
11637
  }], ctorParameters: () => [{ type: i1$8.HttpClient }] });
11663
11638
 
11664
- const SmzUiEnvironment = {
11665
- production: false,
11666
- serverUrl: '',
11667
- authenticationApi: '',
11668
- baseHref: ''
11669
- };
11670
- class NgxSmzUiConfig {
11671
- debugMode;
11672
- legacyMode;
11673
- rbkUtils;
11674
- tables;
11675
- dialogs;
11676
- layouts;
11677
- locale;
11678
- }
11679
-
11680
11639
  class AuthenticationService extends BaseApiService {
11681
11640
  http;
11682
11641
  environment = inject(SmzEnvironment);
11683
- config = inject(NgxSmzUiConfig);
11684
11642
  constructor(http) {
11685
11643
  super();
11686
11644
  this.http = http;
11687
11645
  }
11688
11646
  buildUrl(route) {
11689
- return buildAuthenticationUrl(this.environment.serverUrl, route);
11647
+ return buildServerApiUrl(this.environment.serverUrl, route);
11690
11648
  }
11691
11649
  sendResetPasswordEmail(data) {
11692
- const route = this.config.rbkUtils.authentication.endpointsRoutes.resetPassword;
11650
+ const route = GlobalInjector.config.rbkUtils.authentication.endpointsRoutes.resetPassword;
11693
11651
  return this.http.post(this.buildUrl(route), data, this.generateDefaultHeaders({}));
11694
11652
  }
11695
11653
  redefinePassword(data) {
11696
- const route = this.config.rbkUtils.authentication.endpointsRoutes.redefinePassword;
11654
+ const route = GlobalInjector.config.rbkUtils.authentication.endpointsRoutes.redefinePassword;
11697
11655
  return this.http.post(this.buildUrl(route), data, this.generateDefaultHeaders({}));
11698
11656
  }
11699
11657
  resendEmailConfirmation(data) {
11700
- const route = this.config.rbkUtils.authentication.endpointsRoutes.resendConfirmation;
11658
+ const route = GlobalInjector.config.rbkUtils.authentication.endpointsRoutes.resendConfirmation;
11701
11659
  return this.http.post(this.buildUrl(route), data, this.generateDefaultHeaders({}));
11702
11660
  }
11703
11661
  confirmEmail() {
11704
- const route = this.config.rbkUtils.authentication.endpointsRoutes.confirmEmail;
11662
+ const route = GlobalInjector.config.rbkUtils.authentication.endpointsRoutes.confirmEmail;
11705
11663
  return this.http.get(this.buildUrl(route), this.generateDefaultHeaders({}));
11706
11664
  }
11707
11665
  switchTenant(data) {
11708
- const route = this.config.rbkUtils.authentication.endpointsRoutes.switchTenant;
11666
+ const route = GlobalInjector.config.rbkUtils.authentication.endpointsRoutes.switchTenant;
11709
11667
  return this.http.post(this.buildUrl(route), data, this.generateDefaultHeaders({}));
11710
11668
  }
11711
11669
  // Todo
11712
11670
  changePassword(data) {
11713
- const route = this.config.rbkUtils.authentication.endpointsRoutes.changePassword;
11671
+ const route = GlobalInjector.config.rbkUtils.authentication.endpointsRoutes.changePassword;
11714
11672
  return this.http.post(this.buildUrl(route), data, this.generateDefaultHeaders({}));
11715
11673
  }
11716
11674
  // Todo
11717
11675
  registerAnonymously(data) {
11718
- const route = this.config.rbkUtils.authentication.endpointsRoutes.register;
11676
+ const route = GlobalInjector.config.rbkUtils.authentication.endpointsRoutes.register;
11719
11677
  return this.http.post(this.buildUrl(route), data, this.generateDefaultHeaders({}));
11720
11678
  }
11721
11679
  createUser(data) {
11722
- const route = this.config.rbkUtils.authentication.endpointsRoutes.createUser;
11680
+ const route = GlobalInjector.config.rbkUtils.authentication.endpointsRoutes.createUser;
11723
11681
  return this.http.post(this.buildUrl(route), data, this.generateDefaultHeaders({}));
11724
11682
  }
11725
11683
  deleteUser(data) {
11726
- const route = this.config.rbkUtils.authentication.endpointsRoutes.deleteUser;
11684
+ const route = GlobalInjector.config.rbkUtils.authentication.endpointsRoutes.deleteUser;
11727
11685
  return this.http.post(this.buildUrl(route), data, this.generateDefaultHeaders({}));
11728
11686
  }
11729
11687
  deactivateUser(data) {
11730
- const route = this.config.rbkUtils.authentication.endpointsRoutes.deactivateUser;
11688
+ const route = GlobalInjector.config.rbkUtils.authentication.endpointsRoutes.deactivateUser;
11731
11689
  return this.http.post(this.buildUrl(route), data, this.generateDefaultHeaders({}));
11732
11690
  }
11733
11691
  activateUser(data) {
11734
- const route = this.config.rbkUtils.authentication.endpointsRoutes.activateUser;
11692
+ const route = GlobalInjector.config.rbkUtils.authentication.endpointsRoutes.activateUser;
11735
11693
  return this.http.post(this.buildUrl(route), data, this.generateDefaultHeaders({}));
11736
11694
  }
11737
11695
  static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.5", ngImport: i0, type: AuthenticationService, deps: [{ token: i1$8.HttpClient }], target: i0.ɵɵFactoryTarget.Injectable });
@@ -29983,7 +29941,7 @@ class AuthInterceptor {
29983
29941
  // checks if a url is to an admin api or not
29984
29942
  if (error.status === 401) {
29985
29943
  // check if the response is from the token refresh end point
29986
- const url = buildAuthenticationUrl(this.environment.serverUrl, this.config.rbkUtils.authentication.endpointsRoutes.refreshToken);
29944
+ const url = buildServerApiUrl(this.environment.serverUrl, this.config.rbkUtils.authentication.endpointsRoutes.refreshToken);
29987
29945
  const isFromRefreshTokenEndpoint = error.url === url;
29988
29946
  if (isFromRefreshTokenEndpoint) {
29989
29947
  console.error('Problem while trying to automatically refresh the token, redirecting to login');
@@ -30589,67 +30547,88 @@ var TenantsActions;
30589
30547
  class AuthorizationService extends BaseApiService {
30590
30548
  http;
30591
30549
  environment = inject(SmzEnvironment);
30592
- endpoint = '/api/authorization';
30593
30550
  constructor(http) {
30594
30551
  super();
30595
30552
  this.http = http;
30596
30553
  }
30554
+ buildUrl(route) {
30555
+ return buildServerApiUrl(this.environment.serverUrl, route);
30556
+ }
30597
30557
  getAllClaims() {
30598
- return this.http.get(`${this.environment.serverUrl}${this.endpoint}/claims`, this.generateDefaultHeaders({}));
30558
+ const route = GlobalInjector.config.rbkUtils.authorization.endpointsRoutes.getAllClaims;
30559
+ return this.http.get(this.buildUrl(route), this.generateDefaultHeaders({}));
30599
30560
  }
30600
30561
  createClaim(data) {
30601
- return this.http.post(`${this.environment.serverUrl}${this.endpoint}/claims`, data, this.generateDefaultHeaders({}));
30562
+ const route = GlobalInjector.config.rbkUtils.authorization.endpointsRoutes.createClaim;
30563
+ return this.http.post(this.buildUrl(route), data, this.generateDefaultHeaders({}));
30602
30564
  }
30603
30565
  updateClaim(data) {
30604
- return this.http.put(`${this.environment.serverUrl}${this.endpoint}/claims`, data, this.generateDefaultHeaders({}));
30566
+ const route = GlobalInjector.config.rbkUtils.authorization.endpointsRoutes.updateClaim;
30567
+ return this.http.put(this.buildUrl(route), data, this.generateDefaultHeaders({}));
30605
30568
  }
30606
30569
  deleteClaim(id) {
30607
- return this.http.delete(`${this.environment.serverUrl}${this.endpoint}/claims/${id}`, this.generateDefaultHeaders({}));
30570
+ const route = GlobalInjector.config.rbkUtils.authorization.endpointsRoutes.deleteClaim;
30571
+ return this.http.delete(`${this.buildUrl(route)}/${id}`, this.generateDefaultHeaders({}));
30608
30572
  }
30609
30573
  protectClaim(data) {
30610
- return this.http.post(`${this.environment.serverUrl}${this.endpoint}/claims/protect`, data, this.generateDefaultHeaders({}));
30574
+ const route = GlobalInjector.config.rbkUtils.authorization.endpointsRoutes.protectClaim;
30575
+ return this.http.post(this.buildUrl(route), data, this.generateDefaultHeaders({}));
30611
30576
  }
30612
30577
  unprotectClaim(data) {
30613
- return this.http.post(`${this.environment.serverUrl}${this.endpoint}/claims/unprotect`, data, this.generateDefaultHeaders({}));
30578
+ const route = GlobalInjector.config.rbkUtils.authorization.endpointsRoutes.unprotectClaim;
30579
+ return this.http.post(this.buildUrl(route), data, this.generateDefaultHeaders({}));
30614
30580
  }
30615
30581
  getAllRoles() {
30616
- return this.http.get(`${this.environment.serverUrl}${this.endpoint}/roles`, this.generateDefaultHeaders({}));
30582
+ const route = GlobalInjector.config.rbkUtils.authorization.endpointsRoutes.getAllRoles;
30583
+ return this.http.get(this.buildUrl(route), this.generateDefaultHeaders({}));
30617
30584
  }
30618
30585
  createRole(data) {
30619
- return this.http.post(`${this.environment.serverUrl}${this.endpoint}/roles`, data, this.generateDefaultHeaders({}));
30586
+ const route = GlobalInjector.config.rbkUtils.authorization.endpointsRoutes.createRole;
30587
+ return this.http.post(this.buildUrl(route), data, this.generateDefaultHeaders({}));
30620
30588
  }
30621
30589
  updateRole(data) {
30622
- return this.http.put(`${this.environment.serverUrl}${this.endpoint}/roles`, data, this.generateDefaultHeaders({}));
30590
+ const route = GlobalInjector.config.rbkUtils.authorization.endpointsRoutes.updateRole;
30591
+ return this.http.put(this.buildUrl(route), data, this.generateDefaultHeaders({}));
30623
30592
  }
30624
30593
  deleteRole(id) {
30625
- return this.http.delete(`${this.environment.serverUrl}${this.endpoint}/roles/${id}`, this.generateDefaultHeaders({}));
30594
+ const route = GlobalInjector.config.rbkUtils.authorization.endpointsRoutes.deleteRole;
30595
+ return this.http.delete(`${this.buildUrl(route)}/${id}`, this.generateDefaultHeaders({}));
30626
30596
  }
30627
30597
  updateRoleClaims(data) {
30628
- return this.http.post(`${this.environment.serverUrl}${this.endpoint}/roles/update-claims`, data, this.generateDefaultHeaders({}));
30598
+ const route = GlobalInjector.config.rbkUtils.authorization.endpointsRoutes.updateRoleClaims;
30599
+ return this.http.post(this.buildUrl(route), data, this.generateDefaultHeaders({}));
30629
30600
  }
30630
30601
  getAllUsers() {
30631
- return this.http.get(`${this.environment.serverUrl}${this.endpoint}/users`, this.generateDefaultHeaders({}));
30602
+ const route = GlobalInjector.config.rbkUtils.authorization.endpointsRoutes.getAllUsers;
30603
+ return this.http.get(this.buildUrl(route), this.generateDefaultHeaders({}));
30632
30604
  }
30633
30605
  updateUserRoles(data) {
30634
- return this.http.post(`${this.environment.serverUrl}${this.endpoint}/users/set-roles`, data, this.generateDefaultHeaders({}));
30606
+ const route = GlobalInjector.config.rbkUtils.authorization.endpointsRoutes.updateUserRoles;
30607
+ return this.http.post(this.buildUrl(route), data, this.generateDefaultHeaders({}));
30635
30608
  }
30636
30609
  addClaimsToUser(data) {
30637
- return this.http.post(`${this.environment.serverUrl}${this.endpoint}/users/add-claims`, data, this.generateDefaultHeaders({}));
30610
+ const route = GlobalInjector.config.rbkUtils.authorization.endpointsRoutes.addClaimsToUser;
30611
+ return this.http.post(this.buildUrl(route), data, this.generateDefaultHeaders({}));
30638
30612
  }
30639
30613
  removeClaimsFromUser(data) {
30640
- return this.http.post(`${this.environment.serverUrl}${this.endpoint}/users/remove-claims`, data, this.generateDefaultHeaders({}));
30614
+ const route = GlobalInjector.config.rbkUtils.authorization.endpointsRoutes.removeClaimsFromUser;
30615
+ return this.http.post(this.buildUrl(route), data, this.generateDefaultHeaders({}));
30641
30616
  }
30642
30617
  getAllTenants() {
30643
- return this.http.get(`${this.environment.serverUrl}${this.endpoint}/tenants`, this.generateDefaultHeaders({}));
30618
+ const route = GlobalInjector.config.rbkUtils.authorization.endpointsRoutes.getAllTenants;
30619
+ return this.http.get(this.buildUrl(route), this.generateDefaultHeaders({}));
30644
30620
  }
30645
30621
  createTenant(data) {
30646
- return this.http.post(`${this.environment.serverUrl}${this.endpoint}/tenants`, data, this.generateDefaultHeaders({}));
30622
+ const route = GlobalInjector.config.rbkUtils.authorization.endpointsRoutes.createTenant;
30623
+ return this.http.post(this.buildUrl(route), data, this.generateDefaultHeaders({}));
30647
30624
  }
30648
30625
  updateTenant(data) {
30649
- return this.http.put(`${this.environment.serverUrl}${this.endpoint}/tenants`, data, this.generateDefaultHeaders({}));
30626
+ const route = GlobalInjector.config.rbkUtils.authorization.endpointsRoutes.updateTenant;
30627
+ return this.http.put(this.buildUrl(route), data, this.generateDefaultHeaders({}));
30650
30628
  }
30651
30629
  deleteTenant(id) {
30652
- return this.http.delete(`${this.environment.serverUrl}${this.endpoint}/tenants/${id}`, this.generateDefaultHeaders({}));
30630
+ const route = GlobalInjector.config.rbkUtils.authorization.endpointsRoutes.deleteTenant;
30631
+ return this.http.delete(`${this.buildUrl(route)}/${id}`, this.generateDefaultHeaders({}));
30653
30632
  }
30654
30633
  static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.5", ngImport: i0, type: AuthorizationService, deps: [{ token: i1$8.HttpClient }], target: i0.ɵɵFactoryTarget.Injectable });
30655
30634
  static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "21.2.5", ngImport: i0, type: AuthorizationService, providedIn: 'root' });
@@ -31032,6 +31011,68 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.5", ngImpor
31032
31011
  args: [{ providedIn: 'root' }]
31033
31012
  }], ctorParameters: () => [{ type: i1$6.Store }] });
31034
31013
 
31014
+ const DEFAULT_AUTHENTICATION_ENDPOINTS_ROUTES = {
31015
+ login: 'api/authentication/login',
31016
+ refreshToken: 'api/authentication/refresh-token',
31017
+ resetPassword: 'api/authentication/reset-password',
31018
+ redefinePassword: 'api/authentication/redefine-password',
31019
+ resendConfirmation: 'api/authentication/resend-confirmation',
31020
+ confirmEmail: 'api/authentication/confirm-email',
31021
+ switchTenant: 'api/authentication/switch-tenant',
31022
+ changePassword: 'api/authentication/change-password',
31023
+ register: 'api/authentication/user/register',
31024
+ createUser: 'api/authentication/user/create',
31025
+ deleteUser: 'api/authentication/user/delete',
31026
+ deactivateUser: 'api/authentication/user/deactivate',
31027
+ activateUser: 'api/authentication/user/activate',
31028
+ };
31029
+ const DEFAULT_AUTHENTICATION_BASE_PATH = 'authentication';
31030
+ function buildAuthenticationEndpointsRoutes(basePath = DEFAULT_AUTHENTICATION_BASE_PATH) {
31031
+ const routes = { ...DEFAULT_AUTHENTICATION_ENDPOINTS_ROUTES };
31032
+ const prefix = `api/${DEFAULT_AUTHENTICATION_BASE_PATH}`;
31033
+ const replacement = `api/${basePath}`;
31034
+ return Object.keys(routes).reduce((result, key) => {
31035
+ result[key] = routes[key].replace(prefix, replacement);
31036
+ return result;
31037
+ }, {});
31038
+ }
31039
+ /** @deprecated Use {@link buildServerApiUrl} from `@ngx-smz/core`. */
31040
+ function buildAuthenticationUrl(serverUrl, route) {
31041
+ return buildServerApiUrl(serverUrl, route);
31042
+ }
31043
+
31044
+ const DEFAULT_AUTHORIZATION_ENDPOINTS_ROUTES = {
31045
+ getAllClaims: 'api/authorization/claims',
31046
+ createClaim: 'api/authorization/claims',
31047
+ updateClaim: 'api/authorization/claims',
31048
+ deleteClaim: 'api/authorization/claims',
31049
+ protectClaim: 'api/authorization/claims/protect',
31050
+ unprotectClaim: 'api/authorization/claims/unprotect',
31051
+ getAllRoles: 'api/authorization/roles',
31052
+ createRole: 'api/authorization/roles',
31053
+ updateRole: 'api/authorization/roles',
31054
+ deleteRole: 'api/authorization/roles',
31055
+ updateRoleClaims: 'api/authorization/roles/update-claims',
31056
+ getAllUsers: 'api/authorization/users',
31057
+ updateUserRoles: 'api/authorization/users/set-roles',
31058
+ addClaimsToUser: 'api/authorization/users/add-claims',
31059
+ removeClaimsFromUser: 'api/authorization/users/remove-claims',
31060
+ getAllTenants: 'api/authorization/tenants',
31061
+ createTenant: 'api/authorization/tenants',
31062
+ updateTenant: 'api/authorization/tenants',
31063
+ deleteTenant: 'api/authorization/tenants',
31064
+ };
31065
+ const DEFAULT_AUTHORIZATION_BASE_PATH = 'authorization';
31066
+ function buildAuthorizationEndpointsRoutes(basePath = DEFAULT_AUTHORIZATION_BASE_PATH) {
31067
+ const routes = { ...DEFAULT_AUTHORIZATION_ENDPOINTS_ROUTES };
31068
+ const prefix = `api/${DEFAULT_AUTHORIZATION_BASE_PATH}`;
31069
+ const replacement = `api/${basePath}`;
31070
+ return Object.keys(routes).reduce((result, key) => {
31071
+ result[key] = routes[key].replace(prefix, replacement);
31072
+ return result;
31073
+ }, {});
31074
+ }
31075
+
31035
31076
  /* eslint-disable @typescript-eslint/no-explicit-any, @typescript-eslint/no-unsafe-assignment, @typescript-eslint/no-unsafe-member-access, @typescript-eslint/no-unsafe-call, @typescript-eslint/no-unsafe-return, @typescript-eslint/explicit-module-boundary-types, @typescript-eslint/explicit-function-return-type, @typescript-eslint/typedef, no-underscore-dangle, no-console, eqeqeq, @typescript-eslint/no-unused-vars, @typescript-eslint/no-useless-constructor, @typescript-eslint/explicit-member-accessibility, max-len, no-prototype-builtins, @typescript-eslint/no-shadow, @typescript-eslint/no-empty-object-type */
31036
31077
  class BoilerplateService {
31037
31078
  titleService;
@@ -33084,6 +33125,22 @@ const featureSmzAccessStates = {};
33084
33125
 
33085
33126
  // MODULES
33086
33127
 
33128
+ const SmzUiEnvironment = {
33129
+ production: false,
33130
+ serverUrl: '',
33131
+ authenticationApi: '',
33132
+ baseHref: ''
33133
+ };
33134
+ class NgxSmzUiConfig {
33135
+ debugMode;
33136
+ legacyMode;
33137
+ rbkUtils;
33138
+ tables;
33139
+ dialogs;
33140
+ layouts;
33141
+ locale;
33142
+ }
33143
+
33087
33144
  /* eslint-disable @typescript-eslint/no-explicit-any, @typescript-eslint/no-unsafe-assignment, @typescript-eslint/no-unsafe-member-access, @typescript-eslint/no-unsafe-call, @typescript-eslint/no-unsafe-return, @typescript-eslint/explicit-module-boundary-types, @typescript-eslint/explicit-function-return-type, @typescript-eslint/typedef, no-underscore-dangle, no-console, eqeqeq, @typescript-eslint/no-unused-vars, @typescript-eslint/no-useless-constructor, @typescript-eslint/explicit-member-accessibility, max-len, no-prototype-builtins, @typescript-eslint/no-shadow, @typescript-eslint/no-empty-object-type */
33088
33145
  class NgxSmzUiComponent {
33089
33146
  constructor() { }
@@ -50437,6 +50494,14 @@ class SmzUiAuthorizationBuilder extends SmzBuilderUtilities {
50437
50494
  this._state.rbkUtils.state.feature = { ...this._state.rbkUtils.state.feature, ...featureSmzAccessStates };
50438
50495
  this._menu = { label: 'Admin', icon: 'fa-solid fa-user-gear', items: [] };
50439
50496
  }
50497
+ setEndpointRoute(key, route) {
50498
+ this._builder._state.rbkUtils.authorization.endpointsRoutes[key] = route;
50499
+ return this.that;
50500
+ }
50501
+ overrideAuthorizationUrl(path = 'authorization') {
50502
+ this._builder._state.rbkUtils.authorization.endpointsRoutes = buildAuthorizationEndpointsRoutes(path);
50503
+ return this.that;
50504
+ }
50440
50505
  setMenuLabel(label) {
50441
50506
  this._menu.label = label;
50442
50507
  return this.that;
@@ -51265,6 +51330,9 @@ class SmzUiBuilder extends SmzBuilderUtilities {
51265
51330
  }
51266
51331
  },
51267
51332
  authorization: {
51333
+ endpointsRoutes: {
51334
+ ...DEFAULT_AUTHORIZATION_ENDPOINTS_ROUTES,
51335
+ },
51268
51336
  navigationMenu: null,
51269
51337
  allowMultipleRolesPerUser: false,
51270
51338
  profileMenu: [],
@@ -57566,5 +57634,5 @@ __decorate([
57566
57634
  * Generated bundle index. Do not edit.
57567
57635
  */
57568
57636
 
57569
- export { AUTHORIZATION_HEADER, AccessControlService, ActionDispatchDirective, ApplicationActions, ApplicationSelectors, ApplicationState, AsPipe, AthenaLayout, AthenaLayoutComponent, AthenaLayoutModule, AuthClaimDefinitions, AuthHandler, AuthService, AuthenticationActions, AuthenticationSelectors, AuthenticationService, AuthenticationState, AuthorizationService, AxisOverflowDirection, AxisOverflowType, AxisPosition, BaseApiService, BoilerplateService, BreadcrumbService, CLAIMS_PAGE_ROUTE, CLAIMS_PATH, CLAIMS_STATE_NAME, CONTENT_ENCODING_HEADER, CachedRouteReuseStrategy, CalendarComponent, CalendarPipe, CanAccess, ChartType, CheckBoxComponent, CheckBoxGroupComponent, ClaimAccessType, ClaimAccessTypeDescription, ClaimAccessTypeValues, ClaimsActions, ClaimsModule, ClaimsSelectors, ClaimsState, ClickStopPropagationDirective, ClickStopPropagationModule, ClonePipe, ColorPallete, ColorPickerComponent, Confirmable, CreateLinearChart, CreateRadialChart, CustomError, CustomNgForDirective, CustomNgForModule, DATABASE_REQUIRED_ACTIONS, DATABASE_STATES, DECORATOR_APPLIED, DEFAULT_AUTHENTICATION_ENDPOINTS_ROUTES, DatabaseActions, DatabaseSelectors, DatabaseState, DatasetType, DeepWrapper, DescribeAnyPipe, DescribeArrayPipe, DescribeSimpleNamedPipe, DialogContentManagerComponent, DialogService, DropdownComponent, DynamicDialogComponent, DynamicDialogConfig, DynamicDialogInjector, DynamicDialogModule, DynamicDialogRef, ERROR_HANDLING_TYPE_HEADER, ExcelsUiActions, FEATURE_STATES, FeaturesActions, FeaturesSelectors, FeaturesState, FileUploadComponent, FilterContains, FirstOrDefaultPipe, FormGroupComponent, FormSubmitComponent, GenericInjectComponentDirective, GetElementById, GetElementsByParentId, GlobalActions, GlobalFilter, GlobalInjector, GlobalLoaderComponent, GlobalLoaderModule, GlobalState, GroupingType, HephaestusLayout, HephaestusLayoutComponent, HephaestusLayoutModule, HephaestusProviderModule, HostElement, HttpErrorHandler, IGNORE_ERROR_HANDLING, InViewportMetadata, InjectComponentDirective, InjectComponentService, InjectContentAppModule, InjectContentDirective, InjectContentService, InputBlurDetectionModule, InputChangeDetectionDirective, InputClearExtensionDirective, InputCurrencyComponent, InputListComponent, InputMaskComponent, InputNumberComponent, InputPasswordComponent, InputSwitchComponent, InputTagAreaComponent, InputTextAreaComponent, InputTextComponent, InputTreeComponent, IsVisiblePipe, IsVisiblePipeModule, JoinPipe, LOADING_BEHAVIOR_HEADER, LOCAL_LOADING_TAG_HEADER, LayoutUiActions, LayoutUiSelectors, LayoutUiState, LegacyAuthenticationSelectors, LinearChartBuilder, LinkedDropdownComponent, LinkedMultiSelectComponent, LoggingScope, LoggingService, MAIN_LAYOUT_PATH, MentionableTextareaComponent, MenuHelperService, MenuType, MergeClonePipe, MergeClonePipeModule, MultiSelectComponent, NG_ON_INIT, NewAthenaLayout, NewAthenaLayoutComponent, NewAthenaLayoutModule, NewAthenaProviderModule, NgCloneDirective, NgCloneModule, NgIfLandscapeDirective, NgIfLandscapeDirectiveModule, NgIfPortraitDirective, NgIfPortraitDirectiveModule, NgVar, NgVarContext, NgVarModule, NgxRbkUtilsConfig, NgxRbkUtilsModule, NgxSmzCardsModule, NgxSmzCommentsModule, NgxSmzDataInfoModule, NgxSmzDataPipesModule, NgxSmzDialogsModule, NgxSmzDockModule, NgxSmzDocumentsModule, NgxSmzFaqsModule, NgxSmzFormsModule, NgxSmzLayoutsModule, NgxSmzMenuModule, NgxSmzMultiTablesModule, NgxSmzRouterParamsModule, NgxSmzSafeImageModule, NgxSmzServerImageModule, NgxSmzServerImageToBase64Module, NgxSmzSideContentModule, NgxSmzTablesModule, NgxSmzTreeWithDetailsModule, NgxSmzTreesModule, NgxSmzUiBlockModule, NgxSmzUiComponent, NgxSmzUiConfig, NgxSmzUiGuidesModule, NgxSmzUiModule, NgxSmzViewportModule, PrettyJsonPipe$1 as PrettyJsonPipe, PrettyJsonPipeModule, PrimeConfigService, REFRESH_TOKEN_BEHAVIOR_HEADER, RESTORE_STATE_ON_ERROR_HEADER, ROLES_PAGE_ROUTE, ROLES_PATH, ROLES_STATE_NAME, RadialChartBuilder, RadioButtonComponent, RbkAccessControlModule, RbkAuthGuard, RbkCanAccessAnyPipe, RbkCanAccessPipe, RbkClaimGuardDirective, RbkDatabaseStateGuard, RbkFeatureStateGuard, RbkPipesModule, RbkTableFilterClearDirectivesModule, RegistrySmzUiConfiguration, RepositoryForm, RoleMode, RoleModeDescription, RoleModeValues, RoleSource, RoleSourceDescription, RoleSourceValues, RolesActions, RolesModule, RolesSelectors, RolesState, RouterParamsActions, RouterParamsSelectors, SMZ_CORE_LOGGING_CONFIG, SMZ_UI_ENVIRONMENT_CONFIG, SafeHtmlPipe$2 as SafeHtmlPipe, SafeImageDirective, SafeUrlPipe$1 as SafeUrlPipe, SelectorPipe, ServerImageDirective, ServerImageToBase64Directive, ServerPathPipe, SetTemplateClasses, SetTemplateClassesPipe, SidebarState, SimpleCalendarPipe, SmzActionDispatchModule, SmzAuthorizationDeactivatedUsersTableBuilder, SmzAuthorizationUsersTableBuilder, SmzBaseColumnBuilder, SmzBaseEditableBuilder, SmzBreakpoints, SmzBuilderUtilities, SmzCardsBuilder, SmzCardsComponent, SmzCardsContentType, SmzCardsInjectableComponentBuilder, SmzCardsTemplate, SmzCardsView, SmzChartComponent, SmzChartModule, SmzClipboardService, SmzColumnCollectionBuilder, SmzCommentsBuilder, SmzCommentsComponent, SmzCommentsSectionComponent, SmzContentTheme, SmzContentThemes, SmzContentType, SmzControlType, SmzCoreLogging, SmzCurrencyColumnBuilder, SmzCustomColumnBuilder, SmzDataInfoComponent, SmzDataTransformColumnBuilder, SmzDataTransformTreePipe, SmzDateColumnBuilder, SmzDialogBuilder, SmzDialogComponentBuilder, SmzDialogFormBuilder, SmzDialogTableBuilder, SmzDialogsConfig, SmzDialogsPresets, SmzDialogsService, SmzDockComponent, SmzDockService, SmzDocumentBaseCellBuilder, SmzDocumentBuilder, SmzDocumentComponent, SmzDocumentsService, SmzDragDropModule, SmzDraggable, SmzDropdownEditableBuilder, SmzDroppable, SmzDynamicDialogConfig, SmzEasyBaseColumnBuilder, SmzEasyColumnCollectionBuilder, SmzEasyCustomColumnBuilder, SmzEasyDataTransformColumnBuilder, SmzEasyDateColumnBuilder, SmzEasyMenuTableBuilder, SmzEasyTableBuilder, SmzEasyTableComponent, SmzEasyTableContentType, SmzEasyTableModule, SmzEasyTextColumnBuilder, SmzEditableCollectionBuilder, SmzEditableTableBuilder, SmzEditableType, SmzEnvironment, SmzExcelColorDefinitions, SmzExcelDataDefinitions, SmzExcelFontDefinitions, SmzExcelService, SmzExcelSortOrderDefinitions, SmzExcelThemeDefinitions, SmzExcelTypeDefinitions, SmzExcelsBuilder, SmzExportDialogComponent, SmzExportDialogModule, SmzExportDialogService, SmzExportableContentSource, SmzExportableContentType, SmzFaqsComponent, SmzFaqsConfig, SmzFilterType, SmzFlattenMenuPipe, SmzFlipCardContext, SmzFormBuilder, SmzFormViewdata, SmzFormsConfig, SmzFormsPresets, SmzFormsRepositoryService, SmzGaugeBuilder, SmzGaugeComponent, SmzGaugeThresholdBuilder, SmzGetDataPipe, SmzGridItemComponent, SmzHelpDialogService, SmzHtmlViewerComponent, SmzHtmlViewerModule, SmzIconColumnBuilder, SmzIconMessageComponent, SmzInfoDateComponent, SmzInfoDateModule, SmzInitialPipe, SmzInputAutocompleteTagArea, SmzInputTextModule, SmzInputTextPipe, SmzLayoutsConfig, SmzLoader, SmzLoaders, SmzLoginBuilder, SmzLoginComponent, SmzLoginModule, SmzMenuBuilder, SmzMenuComponent, SmzMenuCreationBuilder, SmzMenuCreationItemBuilder, SmzMenuItemActionsDirective, SmzMenuItemBuilder, SmzMenuItemEasyTableBuilder, SmzMenuItemTableBuilder, SmzMenuTableBuilder, SmzMessagesModule, SmzMultiTablesBuilder, SmzMultiTablesComponent, SmzNumberEditableBuilder, SmzPresets, SmzProxyStore, SmzResponsiveBreakpointsDirective, SmzResponsiveBreakpointsDirectiveModule, SmzResponsiveComponent, SmzRouteDatas, SmzRouteParams, SmzRouteQueryParams, SmzSideContentComponent, SmzSideContentDefault, SmzSincronizeTablePipe, SmzSmartTag, SmzSmartTagModule, SmzSubmitComponent, SmzSvgBuilder, SmzSvgComponent, SmzSvgFeatureBuilder, SmzSvgModule, SmzSvgPinBuilder, SmzSvgRootBuilder, SmzSvgWorldCoordinates, SmzSwitchEditableBuilder, SmzTableBuilder, SmzTableComponent, SmzTablesConfig, SmzTagMessage, SmzTailPipe, SmzTemplatesPipeModule, SmzTenantSwitchComponent, SmzTextColumnBuilder, SmzTextEditableBuilder, SmzTextPattern, SmzTimelineBuilder, SmzTimelineComponent, SmzToastComponent, SmzToastModule, SmzTooltipTouchSupportModule, SmzTreeBuilder, SmzTreeComponent, SmzTreeDragAndDropBuilder, SmzTreeDropBuilder, SmzTreeDynamicMenuBuilder, SmzTreeDynamicMenuItemBuilder, SmzTreeEmptyFeedbackBuilder, SmzTreeMenuBuilder, SmzTreeMenuItemBuilder, SmzTreeToolbarBuilder, SmzTreeToolbarButtonBuilder, SmzTreeToolbarButtonCollectionBuilder, SmzTreeWithDetailsBuilder, SmzTreeWithDetailsComponent, SmzUiBlockComponent, SmzUiBlockDirective, SmzUiBlockService, SmzUiBuilder, SmzUiEnvironment, SmzUiGuidesBuilder, SmzUiGuidesService, SmzViewportDirective, SmzViewportService, StandaloneInjectComponentDirective, StateBuilderPipe, TENANTS_PAGE_ROUTE, TENANTS_PATH, TENANTS_STATE_NAME, TableClearExtensionDirective, TableHelperService, TenantAuthenticationSelectors, TenantsActions, TenantsModule, TenantsSelectors, TenantsState, ThemeManagerService, TitleService, Toast, ToastActions, ToastItem, ToastService, TooltipTouchSupportDirective, TreeHelperService, TreeHelpers, Tunnel, UI_DEFINITIONS_STATE_NAME, UI_LOCALIZATION_STATE_NAME, USERS_PAGE_ROUTE, USERS_PATH, USERS_STATE_NAME, USER_ID_HEADER, LayoutUiActions as UiActions, UiDefinitionsDbActions, UiDefinitionsDbSelectors, UiDefinitionsDbState, UiDefinitionsService, UiLocalizationDbActions, UiLocalizationDbSelectors, UiLocalizationDbState, UiLocalizationService, LayoutUiSelectors as UiSelectors, UniqueFilterPipe, UrlCheckerPipe, UrlCheckerPipeModule, UsersActions, UsersModule, UsersSelectors, UsersState, WINDOWS_AUTHENTICATION_HEADER, Wait, applyTableContentNgStyle, b64toBlob, base64ToFile, breakLinesForHtml, buildAuthenticationEndpointsRoutes, buildAuthenticationUrl, buildState, capitalizeFirstLetter, capitalizeWithSlash, clearArray, clone, cloneAndRemoveProperties, cloneAndRemoveProperty, compare, compareInsensitive, completeSubjectOnTheInstance, convertFormCreationFeature, convertFormFeature, convertFormFeatureFromInputData, convertFormUpdateFeature, count, createObjectFromString, createRound, createSubjectOnTheInstance, dataURLtoFile, databaseSmzAccessStates, debounce, deepClone, deepEqual, deepIndexOf, deepMerge, defaultFormsModuleConfig, defaultState, downloadBase64File, downloadFromServerUrl, downloadFromUrl, empty, every, executeTextPattern, featureSmzAccessStates, fixDate$1 as fixDate, fixDateProperties, fixDates, flatten, flattenObject, getAuthenticationInitialState, getCleanApplicationState, getFirst, getFirstElement, getFirstElements, getFormInputFromDialog, getGlobalInitialState, getInitialApplicationState, getInitialDatabaseStoreState, getInitialState$8 as getInitialState, getLastElements, getPreset, getProperty, getSymbol, getTreeNodeFromKey, getUiDefinitionsInitialState, getUiLocalizationInitialState, getUsersInitialState, getValidatorsForInput, handleBase64, isArray, isConvertibleToNumber, isDeepObject, isEmpty$1 as isEmpty, isFunction$1 as isFunction, isInteger, isNil, isNull$1 as isNull, isNullOrEmptyString, isNumber$1 as isNumber, isNumberFinite$1 as isNumberFinite, isNumeric, isObject$2 as isObject, isObjectHelper, isPositive, isSimpleNamedEntity, isString$1 as isString, isUndefined$1 as isUndefined, isWithinTime, leftPad, longestStringInArray, mapParamsToObject, markAsDecorated, mergeClone, mergeDeep, nameof, namesof, ngxsModuleForFeatureFaqsDbState, ngxsModuleForFeatureUiAthenaLayoutState, ngxsModuleForFeatureUiHephaestusLayoutState, ngxsModuleForFeatureUiNewAthenaLayoutState, normalizeDateToUtc, orderArrayByProperty, pad, provideSmzCoreLogging, provideSmzEnvironment, rbkSafeHtmlPipe, removeElementFromArray, replaceAll, replaceArrayItem, replaceArrayPartialItem, replaceItem, replaceNgOnInit, rightPad, routerModuleForChildUsersModule, routerParamsDispatch, routerParamsListener, setNestedObject, shorten, showConfirmation, showDialog, showMarkdownDialog, showMessage, showObjectDialog, showPersistentDialog, shuffle, sortArray, sortArrayOfObjects, sortArrayOfStrings, sortMenuItemsByLabel, sum, synchronizeNodes, synchronizeRow, synchronizeTable, synchronizeTrees, takeUntil, takeWhile, toDecimal, toSimpleNamedEntity, toString, unwrapDeep, upperFirst, uuidv4, wrapDeep };
57637
+ export { AUTHORIZATION_HEADER, AccessControlService, ActionDispatchDirective, ApplicationActions, ApplicationSelectors, ApplicationState, AsPipe, AthenaLayout, AthenaLayoutComponent, AthenaLayoutModule, AuthClaimDefinitions, AuthHandler, AuthService, AuthenticationActions, AuthenticationSelectors, AuthenticationService, AuthenticationState, AuthorizationService, AxisOverflowDirection, AxisOverflowType, AxisPosition, BaseApiService, BoilerplateService, BreadcrumbService, CLAIMS_PAGE_ROUTE, CLAIMS_PATH, CLAIMS_STATE_NAME, CONTENT_ENCODING_HEADER, CachedRouteReuseStrategy, CalendarComponent, CalendarPipe, CanAccess, ChartType, CheckBoxComponent, CheckBoxGroupComponent, ClaimAccessType, ClaimAccessTypeDescription, ClaimAccessTypeValues, ClaimsActions, ClaimsModule, ClaimsSelectors, ClaimsState, ClickStopPropagationDirective, ClickStopPropagationModule, ClonePipe, ColorPallete, ColorPickerComponent, Confirmable, CreateLinearChart, CreateRadialChart, CustomError, CustomNgForDirective, CustomNgForModule, DATABASE_REQUIRED_ACTIONS, DATABASE_STATES, DECORATOR_APPLIED, DEFAULT_AUTHENTICATION_ENDPOINTS_ROUTES, DEFAULT_AUTHORIZATION_ENDPOINTS_ROUTES, DatabaseActions, DatabaseSelectors, DatabaseState, DatasetType, DeepWrapper, DescribeAnyPipe, DescribeArrayPipe, DescribeSimpleNamedPipe, DialogContentManagerComponent, DialogService, DropdownComponent, DynamicDialogComponent, DynamicDialogConfig, DynamicDialogInjector, DynamicDialogModule, DynamicDialogRef, ERROR_HANDLING_TYPE_HEADER, ExcelsUiActions, FEATURE_STATES, FeaturesActions, FeaturesSelectors, FeaturesState, FileUploadComponent, FilterContains, FirstOrDefaultPipe, FormGroupComponent, FormSubmitComponent, GenericInjectComponentDirective, GetElementById, GetElementsByParentId, GlobalActions, GlobalFilter, GlobalInjector, GlobalLoaderComponent, GlobalLoaderModule, GlobalState, GroupingType, HephaestusLayout, HephaestusLayoutComponent, HephaestusLayoutModule, HephaestusProviderModule, HostElement, HttpErrorHandler, IGNORE_ERROR_HANDLING, InViewportMetadata, InjectComponentDirective, InjectComponentService, InjectContentAppModule, InjectContentDirective, InjectContentService, InputBlurDetectionModule, InputChangeDetectionDirective, InputClearExtensionDirective, InputCurrencyComponent, InputListComponent, InputMaskComponent, InputNumberComponent, InputPasswordComponent, InputSwitchComponent, InputTagAreaComponent, InputTextAreaComponent, InputTextComponent, InputTreeComponent, IsVisiblePipe, IsVisiblePipeModule, JoinPipe, LOADING_BEHAVIOR_HEADER, LOCAL_LOADING_TAG_HEADER, LayoutUiActions, LayoutUiSelectors, LayoutUiState, LegacyAuthenticationSelectors, LinearChartBuilder, LinkedDropdownComponent, LinkedMultiSelectComponent, LoggingScope, LoggingService, MAIN_LAYOUT_PATH, MentionableTextareaComponent, MenuHelperService, MenuType, MergeClonePipe, MergeClonePipeModule, MultiSelectComponent, NG_ON_INIT, NewAthenaLayout, NewAthenaLayoutComponent, NewAthenaLayoutModule, NewAthenaProviderModule, NgCloneDirective, NgCloneModule, NgIfLandscapeDirective, NgIfLandscapeDirectiveModule, NgIfPortraitDirective, NgIfPortraitDirectiveModule, NgVar, NgVarContext, NgVarModule, NgxRbkUtilsConfig, NgxRbkUtilsModule, NgxSmzCardsModule, NgxSmzCommentsModule, NgxSmzDataInfoModule, NgxSmzDataPipesModule, NgxSmzDialogsModule, NgxSmzDockModule, NgxSmzDocumentsModule, NgxSmzFaqsModule, NgxSmzFormsModule, NgxSmzLayoutsModule, NgxSmzMenuModule, NgxSmzMultiTablesModule, NgxSmzRouterParamsModule, NgxSmzSafeImageModule, NgxSmzServerImageModule, NgxSmzServerImageToBase64Module, NgxSmzSideContentModule, NgxSmzTablesModule, NgxSmzTreeWithDetailsModule, NgxSmzTreesModule, NgxSmzUiBlockModule, NgxSmzUiComponent, NgxSmzUiConfig, NgxSmzUiGuidesModule, NgxSmzUiModule, NgxSmzViewportModule, PrettyJsonPipe$1 as PrettyJsonPipe, PrettyJsonPipeModule, PrimeConfigService, REFRESH_TOKEN_BEHAVIOR_HEADER, RESTORE_STATE_ON_ERROR_HEADER, ROLES_PAGE_ROUTE, ROLES_PATH, ROLES_STATE_NAME, RadialChartBuilder, RadioButtonComponent, RbkAccessControlModule, RbkAuthGuard, RbkCanAccessAnyPipe, RbkCanAccessPipe, RbkClaimGuardDirective, RbkDatabaseStateGuard, RbkFeatureStateGuard, RbkPipesModule, RbkTableFilterClearDirectivesModule, RegistrySmzUiConfiguration, RepositoryForm, RoleMode, RoleModeDescription, RoleModeValues, RoleSource, RoleSourceDescription, RoleSourceValues, RolesActions, RolesModule, RolesSelectors, RolesState, RouterParamsActions, RouterParamsSelectors, SMZ_CORE_LOGGING_CONFIG, SMZ_UI_ENVIRONMENT_CONFIG, SafeHtmlPipe$2 as SafeHtmlPipe, SafeImageDirective, SafeUrlPipe$1 as SafeUrlPipe, SelectorPipe, ServerImageDirective, ServerImageToBase64Directive, ServerPathPipe, SetTemplateClasses, SetTemplateClassesPipe, SidebarState, SimpleCalendarPipe, SmzActionDispatchModule, SmzAuthorizationDeactivatedUsersTableBuilder, SmzAuthorizationUsersTableBuilder, SmzBaseColumnBuilder, SmzBaseEditableBuilder, SmzBreakpoints, SmzBuilderUtilities, SmzCardsBuilder, SmzCardsComponent, SmzCardsContentType, SmzCardsInjectableComponentBuilder, SmzCardsTemplate, SmzCardsView, SmzChartComponent, SmzChartModule, SmzClipboardService, SmzColumnCollectionBuilder, SmzCommentsBuilder, SmzCommentsComponent, SmzCommentsSectionComponent, SmzContentTheme, SmzContentThemes, SmzContentType, SmzControlType, SmzCoreLogging, SmzCurrencyColumnBuilder, SmzCustomColumnBuilder, SmzDataInfoComponent, SmzDataTransformColumnBuilder, SmzDataTransformTreePipe, SmzDateColumnBuilder, SmzDialogBuilder, SmzDialogComponentBuilder, SmzDialogFormBuilder, SmzDialogTableBuilder, SmzDialogsConfig, SmzDialogsPresets, SmzDialogsService, SmzDockComponent, SmzDockService, SmzDocumentBaseCellBuilder, SmzDocumentBuilder, SmzDocumentComponent, SmzDocumentsService, SmzDragDropModule, SmzDraggable, SmzDropdownEditableBuilder, SmzDroppable, SmzDynamicDialogConfig, SmzEasyBaseColumnBuilder, SmzEasyColumnCollectionBuilder, SmzEasyCustomColumnBuilder, SmzEasyDataTransformColumnBuilder, SmzEasyDateColumnBuilder, SmzEasyMenuTableBuilder, SmzEasyTableBuilder, SmzEasyTableComponent, SmzEasyTableContentType, SmzEasyTableModule, SmzEasyTextColumnBuilder, SmzEditableCollectionBuilder, SmzEditableTableBuilder, SmzEditableType, SmzEnvironment, SmzExcelColorDefinitions, SmzExcelDataDefinitions, SmzExcelFontDefinitions, SmzExcelService, SmzExcelSortOrderDefinitions, SmzExcelThemeDefinitions, SmzExcelTypeDefinitions, SmzExcelsBuilder, SmzExportDialogComponent, SmzExportDialogModule, SmzExportDialogService, SmzExportableContentSource, SmzExportableContentType, SmzFaqsComponent, SmzFaqsConfig, SmzFilterType, SmzFlattenMenuPipe, SmzFlipCardContext, SmzFormBuilder, SmzFormViewdata, SmzFormsConfig, SmzFormsPresets, SmzFormsRepositoryService, SmzGaugeBuilder, SmzGaugeComponent, SmzGaugeThresholdBuilder, SmzGetDataPipe, SmzGridItemComponent, SmzHelpDialogService, SmzHtmlViewerComponent, SmzHtmlViewerModule, SmzIconColumnBuilder, SmzIconMessageComponent, SmzInfoDateComponent, SmzInfoDateModule, SmzInitialPipe, SmzInputAutocompleteTagArea, SmzInputTextModule, SmzInputTextPipe, SmzLayoutsConfig, SmzLoader, SmzLoaders, SmzLoginBuilder, SmzLoginComponent, SmzLoginModule, SmzMenuBuilder, SmzMenuComponent, SmzMenuCreationBuilder, SmzMenuCreationItemBuilder, SmzMenuItemActionsDirective, SmzMenuItemBuilder, SmzMenuItemEasyTableBuilder, SmzMenuItemTableBuilder, SmzMenuTableBuilder, SmzMessagesModule, SmzMultiTablesBuilder, SmzMultiTablesComponent, SmzNumberEditableBuilder, SmzPresets, SmzProxyStore, SmzResponsiveBreakpointsDirective, SmzResponsiveBreakpointsDirectiveModule, SmzResponsiveComponent, SmzRouteDatas, SmzRouteParams, SmzRouteQueryParams, SmzSideContentComponent, SmzSideContentDefault, SmzSincronizeTablePipe, SmzSmartTag, SmzSmartTagModule, SmzSubmitComponent, SmzSvgBuilder, SmzSvgComponent, SmzSvgFeatureBuilder, SmzSvgModule, SmzSvgPinBuilder, SmzSvgRootBuilder, SmzSvgWorldCoordinates, SmzSwitchEditableBuilder, SmzTableBuilder, SmzTableComponent, SmzTablesConfig, SmzTagMessage, SmzTailPipe, SmzTemplatesPipeModule, SmzTenantSwitchComponent, SmzTextColumnBuilder, SmzTextEditableBuilder, SmzTextPattern, SmzTimelineBuilder, SmzTimelineComponent, SmzToastComponent, SmzToastModule, SmzTooltipTouchSupportModule, SmzTreeBuilder, SmzTreeComponent, SmzTreeDragAndDropBuilder, SmzTreeDropBuilder, SmzTreeDynamicMenuBuilder, SmzTreeDynamicMenuItemBuilder, SmzTreeEmptyFeedbackBuilder, SmzTreeMenuBuilder, SmzTreeMenuItemBuilder, SmzTreeToolbarBuilder, SmzTreeToolbarButtonBuilder, SmzTreeToolbarButtonCollectionBuilder, SmzTreeWithDetailsBuilder, SmzTreeWithDetailsComponent, SmzUiBlockComponent, SmzUiBlockDirective, SmzUiBlockService, SmzUiBuilder, SmzUiEnvironment, SmzUiGuidesBuilder, SmzUiGuidesService, SmzViewportDirective, SmzViewportService, StandaloneInjectComponentDirective, StateBuilderPipe, TENANTS_PAGE_ROUTE, TENANTS_PATH, TENANTS_STATE_NAME, TableClearExtensionDirective, TableHelperService, TenantAuthenticationSelectors, TenantsActions, TenantsModule, TenantsSelectors, TenantsState, ThemeManagerService, TitleService, Toast, ToastActions, ToastItem, ToastService, TooltipTouchSupportDirective, TreeHelperService, TreeHelpers, Tunnel, UI_DEFINITIONS_STATE_NAME, UI_LOCALIZATION_STATE_NAME, USERS_PAGE_ROUTE, USERS_PATH, USERS_STATE_NAME, USER_ID_HEADER, LayoutUiActions as UiActions, UiDefinitionsDbActions, UiDefinitionsDbSelectors, UiDefinitionsDbState, UiDefinitionsService, UiLocalizationDbActions, UiLocalizationDbSelectors, UiLocalizationDbState, UiLocalizationService, LayoutUiSelectors as UiSelectors, UniqueFilterPipe, UrlCheckerPipe, UrlCheckerPipeModule, UsersActions, UsersModule, UsersSelectors, UsersState, WINDOWS_AUTHENTICATION_HEADER, Wait, applyTableContentNgStyle, b64toBlob, base64ToFile, breakLinesForHtml, buildAuthenticationEndpointsRoutes, buildAuthenticationUrl, buildAuthorizationEndpointsRoutes, buildServerApiUrl, buildState, capitalizeFirstLetter, capitalizeWithSlash, clearArray, clone, cloneAndRemoveProperties, cloneAndRemoveProperty, compare, compareInsensitive, completeSubjectOnTheInstance, convertFormCreationFeature, convertFormFeature, convertFormFeatureFromInputData, convertFormUpdateFeature, count, createObjectFromString, createRound, createSubjectOnTheInstance, dataURLtoFile, databaseSmzAccessStates, debounce, deepClone, deepEqual, deepIndexOf, deepMerge, defaultFormsModuleConfig, defaultState, downloadBase64File, downloadFromServerUrl, downloadFromUrl, empty, every, executeTextPattern, featureSmzAccessStates, fixDate$1 as fixDate, fixDateProperties, fixDates, flatten, flattenObject, getAuthenticationInitialState, getCleanApplicationState, getFirst, getFirstElement, getFirstElements, getFormInputFromDialog, getGlobalInitialState, getInitialApplicationState, getInitialDatabaseStoreState, getInitialState$8 as getInitialState, getLastElements, getPreset, getProperty, getSymbol, getTreeNodeFromKey, getUiDefinitionsInitialState, getUiLocalizationInitialState, getUsersInitialState, getValidatorsForInput, handleBase64, isArray, isConvertibleToNumber, isDeepObject, isEmpty$1 as isEmpty, isFunction$1 as isFunction, isInteger, isNil, isNull$1 as isNull, isNullOrEmptyString, isNumber$1 as isNumber, isNumberFinite$1 as isNumberFinite, isNumeric, isObject$2 as isObject, isObjectHelper, isPositive, isSimpleNamedEntity, isString$1 as isString, isUndefined$1 as isUndefined, isWithinTime, leftPad, longestStringInArray, mapParamsToObject, markAsDecorated, mergeClone, mergeDeep, nameof, namesof, ngxsModuleForFeatureFaqsDbState, ngxsModuleForFeatureUiAthenaLayoutState, ngxsModuleForFeatureUiHephaestusLayoutState, ngxsModuleForFeatureUiNewAthenaLayoutState, normalizeDateToUtc, orderArrayByProperty, pad, provideSmzCoreLogging, provideSmzEnvironment, rbkSafeHtmlPipe, removeElementFromArray, replaceAll, replaceArrayItem, replaceArrayPartialItem, replaceItem, replaceNgOnInit, rightPad, routerModuleForChildUsersModule, routerParamsDispatch, routerParamsListener, setNestedObject, shorten, showConfirmation, showDialog, showMarkdownDialog, showMessage, showObjectDialog, showPersistentDialog, shuffle, sortArray, sortArrayOfObjects, sortArrayOfStrings, sortMenuItemsByLabel, sum, synchronizeNodes, synchronizeRow, synchronizeTable, synchronizeTrees, takeUntil, takeWhile, toDecimal, toSimpleNamedEntity, toString, unwrapDeep, upperFirst, uuidv4, wrapDeep };
57570
57638
  //# sourceMappingURL=ngx-smz-core.mjs.map