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.
@@ -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