@xrystal/core 3.27.5 → 3.27.6

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/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "author": "Yusuf Yasir KAYGUSUZ",
3
3
  "name": "@xrystal/core",
4
- "version": "3.27.5",
4
+ "version": "3.27.6",
5
5
  "description": "Project core for xrystal",
6
6
  "publishConfig": {
7
7
  "access": "public",
@@ -1,5 +1,5 @@
1
1
  import Logger from '../logger';
2
- import { IProvide } from '../../utils/index';
2
+ import { IProvide } from '../../utils';
3
3
  export default class Events implements IProvide<any> {
4
4
  #private;
5
5
  constructor({ logger }: {
@@ -1,4 +1,4 @@
1
- import { LoggerLayerEnum, x } from '../../utils/index';
1
+ import { LoggerLayerEnum, x } from '../../utils';
2
2
  export default class Events {
3
3
  #logger;
4
4
  constructor({ logger }) {
@@ -72,6 +72,7 @@ export default class KafkaForCore {
72
72
  ])
73
73
  ],
74
74
  };
75
+ console.log(kafkaBrokers, kafkaTopics, isKafkaPassive);
75
76
  if (isKafkaPassive === true || !kafkaBrokers)
76
77
  return;
77
78
  const brokers = String(kafkaBrokers).split(",").map(b => b.trim());
@@ -1,4 +1,4 @@
1
- import { IProvide } from '../../utils/index';
1
+ import { IProvide } from '../../utils';
2
2
  export declare abstract class BaseService {
3
3
  }
4
4
  export default abstract class Service extends BaseService implements IProvide<any> {