tnx-shared 5.2.10 → 5.2.11
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 +7 -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 +2 -0
- package/classes/environment-schema.d.ts.map +1 -1
- package/esm2015/app-context/application-context.service.js +2 -1
- package/esm2015/classes/environment-schema.js +1 -1
- package/esm2015/services/environment.service.js +7 -1
- package/fesm2015/tnx-shared.js +7 -0
- package/fesm2015/tnx-shared.js.map +1 -1
- package/package.json +2 -2
- package/services/environment.service.d.ts +2 -0
- package/services/environment.service.d.ts.map +1 -1
- package/tnx-shared.metadata.json +1 -1
|
@@ -227,6 +227,7 @@
|
|
|
227
227
|
NOTIFICATION_USER_CHANGE: 'NOTIFICATION_USER_CHANGE'
|
|
228
228
|
};
|
|
229
229
|
|
|
230
|
+
// test
|
|
230
231
|
var ApplicationContextService = /** @class */ (function () {
|
|
231
232
|
function ApplicationContextService() {
|
|
232
233
|
this.childsContext = [];
|
|
@@ -810,6 +811,12 @@
|
|
|
810
811
|
}
|
|
811
812
|
return endpoint;
|
|
812
813
|
};
|
|
814
|
+
EnvironmentService.prototype.getUserSettingConfig = function () {
|
|
815
|
+
return this.environment.userSettingConfig;
|
|
816
|
+
};
|
|
817
|
+
EnvironmentService.prototype.getUsersHasPermissionResetPassword = function () {
|
|
818
|
+
return this.environment.userHasPermissionResetPassword;
|
|
819
|
+
};
|
|
813
820
|
EnvironmentService.prototype.getHttpClientEndpoint = function (serviceCode) {
|
|
814
821
|
return '';
|
|
815
822
|
};
|