tnx-shared 5.2.1 → 5.2.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.
@@ -982,6 +982,11 @@
982
982
  EnvironmentService.prototype.getLinkDownloadClientApp = function () {
983
983
  return this.environment.signalr.linkDownloadClientApp;
984
984
  };
985
+ EnvironmentService.prototype.getCustomConfig = function (key) {
986
+ if (!this.environment.customConfig)
987
+ return null;
988
+ return this.environment.customConfig[key];
989
+ };
985
990
  return EnvironmentService;
986
991
  }());
987
992
  EnvironmentService.ɵprov = i0.ɵɵdefineInjectable({ factory: function EnvironmentService_Factory() { return new EnvironmentService(i0.ɵɵinject(moduleConfigFunc, 8)); }, token: EnvironmentService, providedIn: "root" });