taon 19.0.63 → 19.0.64
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/README.md +160 -160
- package/bin/start.js +281 -281
- package/bin/taon +6 -6
- package/bin/taon-debug +5 -5
- package/bin/taon-debug-brk +5 -5
- package/browser/README.md +24 -24
- package/browser/fesm2022/taon.mjs +4 -1
- package/browser/fesm2022/taon.mjs.map +1 -1
- package/browser/lib/endpoint-context-storage.d.ts +1 -0
- package/browser/package.json +1 -1
- package/icon-menu-taon.svg +15 -15
- package/lib/build-info._auto-generated_.d.ts +1 -1
- package/lib/build-info._auto-generated_.js +1 -1
- package/lib/decorators/classes/controller-config.d.ts +20 -0
- package/lib/decorators/classes/controller-config.js +21 -0
- package/lib/decorators/classes/controller-config.js.map +1 -0
- package/lib/decorators/classes/controller-options.d.ts +16 -0
- package/lib/decorators/classes/controller-options.js +20 -0
- package/lib/decorators/classes/controller-options.js.map +1 -0
- package/lib/endpoint-context-storage.d.ts +1 -0
- package/lib/endpoint-context-storage.js +4 -0
- package/lib/endpoint-context-storage.js.map +1 -1
- package/lib/ui/index.js +2 -2
- package/lib/ui/taon-admin-mode-configuration/index.js +2 -2
- package/package.json +1 -1
- package/websql/README.md +24 -24
- package/websql/fesm2022/taon.mjs +4 -1
- package/websql/fesm2022/taon.mjs.map +1 -1
- package/websql/lib/endpoint-context-storage.d.ts +1 -0
- package/websql/package.json +1 -1
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import 'reflect-metadata';
|
|
2
2
|
import * as coreHelpers from 'tnp-core/browser';
|
|
3
|
-
import { _, Utils, Helpers, UtilsOs, crossPlatformPath } from 'tnp-core/browser';
|
|
3
|
+
import { _, Utils, Helpers, UtilsOs, CoreModels, crossPlatformPath } from 'tnp-core/browser';
|
|
4
4
|
import { __decorate, __metadata, __param } from 'tslib';
|
|
5
5
|
import { SYMBOL, CLASS } from 'typescript-class-helpers/browser';
|
|
6
6
|
import { OrignalClassKey, Table } from 'taon-typeorm/browser';
|
|
@@ -5219,6 +5219,7 @@ class TaonAdminService {
|
|
|
5219
5219
|
|
|
5220
5220
|
class ContextsEndpointStorage {
|
|
5221
5221
|
constructor() {
|
|
5222
|
+
this.SPECIAL_APP_READY_MESSAGE = CoreModels.SPECIAL_APP_READY_MESSAGE;
|
|
5222
5223
|
this.taonEndpointContexts = new Map();
|
|
5223
5224
|
// Private constructor to prevent direct instantiation
|
|
5224
5225
|
}
|
|
@@ -5244,6 +5245,8 @@ class ContextsEndpointStorage {
|
|
|
5244
5245
|
return this.taonEndpointContexts.get(context.contextName);
|
|
5245
5246
|
}
|
|
5246
5247
|
}
|
|
5248
|
+
// TODO QUICK_FIX @LAST encapsulate this => move to separate package
|
|
5249
|
+
globalThis['$$$ContextsEndpointStorage$$$'] = ContextsEndpointStorage.Instance;
|
|
5247
5250
|
|
|
5248
5251
|
//#region imports
|
|
5249
5252
|
//#endregion
|