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.
- package/bundles/tnx-shared.umd.js +5 -0
- package/bundles/tnx-shared.umd.js.map +1 -1
- package/bundles/tnx-shared.umd.min.js +1 -1
- package/bundles/tnx-shared.umd.min.js.map +1 -1
- package/classes/environment-schema.d.ts +3 -0
- package/classes/environment-schema.d.ts.map +1 -1
- package/esm2015/classes/environment-schema.js +1 -1
- package/esm2015/services/environment.service.js +6 -1
- package/fesm2015/tnx-shared.js +5 -0
- package/fesm2015/tnx-shared.js.map +1 -1
- package/package.json +2 -2
- package/services/environment.service.d.ts +1 -0
- package/services/environment.service.d.ts.map +1 -1
- package/tnx-shared.metadata.json +1 -1
|
@@ -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" });
|