@esfaenza/core 15.2.273 → 15.2.275

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.
@@ -11,7 +11,6 @@ import * as i1$2 from '@esfaenza/localizations';
11
11
  import { LocalizationService } from '@esfaenza/localizations';
12
12
  import * as i5 from '@esfaenza/extensions';
13
13
  import { InboundMessageTypes, MessageService, CallResult } from '@esfaenza/extensions';
14
- import { AdmMessageTypes, MK_ADM } from '@esfaenza/admin-module';
15
14
  import * as customParseFormat from 'dayjs/plugin/customParseFormat';
16
15
  import * as isSameOrBefore from 'dayjs/plugin/isSameOrBefore';
17
16
  import * as isSameOrAfter from 'dayjs/plugin/isSameOrAfter';
@@ -1249,7 +1248,11 @@ class AppState {
1249
1248
  switch (t.type) {
1250
1249
  case InboundMessageTypes.Navigation:
1251
1250
  this.notifyDataChanged(t.message.sub ? "menu.adjustSubNavigationTo" : "menu.adjustNavigationTo", t.message.routeTitle);
1252
- this.intercom.send(AdmMessageTypes.Message, "Navigation Message Received", MK_ADM);
1251
+ // export const MK_ADM = "EsAdminModule";
1252
+ // AdmMessageTypes.Message = 0;
1253
+ // definita in admin-module.
1254
+ // admin-module usa core quindi referenze circolari no-no-no
1255
+ this.intercom.send(0, "Navigation Message Received", "EsAdminModule");
1253
1256
  break;
1254
1257
  }
1255
1258
  }