@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';
@@ -1254,7 +1253,11 @@ class AppState {
1254
1253
  switch (t.type) {
1255
1254
  case InboundMessageTypes.Navigation:
1256
1255
  this.notifyDataChanged(t.message.sub ? "menu.adjustSubNavigationTo" : "menu.adjustNavigationTo", t.message.routeTitle);
1257
- this.intercom.send(AdmMessageTypes.Message, "Navigation Message Received", MK_ADM);
1256
+ // export const MK_ADM = "EsAdminModule";
1257
+ // AdmMessageTypes.Message = 0;
1258
+ // definita in admin-module.
1259
+ // admin-module usa core quindi referenze circolari no-no-no
1260
+ this.intercom.send(0, "Navigation Message Received", "EsAdminModule");
1258
1261
  break;
1259
1262
  }
1260
1263
  }