@xrystal/core 3.28.7 → 3.28.8

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.28.7",
4
+ "version": "3.28.8",
5
5
  "description": "Project core for xrystal",
6
6
  "publishConfig": {
7
7
  "access": "public",
@@ -6,5 +6,5 @@ export declare class Constants {
6
6
  static readonly defaultTmpFilePath: string;
7
7
  static readonly defaultOwnerTmpFilePath: string;
8
8
  static readonly publicFolderName = "public";
9
- static readonly kafkaLogsTopic = "logs";
9
+ static readonly kafkaLogsTopic = "log";
10
10
  }
@@ -7,5 +7,5 @@ export class Constants {
7
7
  static defaultTmpFilePath = path.join(__dirname, `../../${Constants.defaultRootFolderName}/${Constants.defaultTmpFileName}.${Constants.defaultTmpFileExt}`);
8
8
  static defaultOwnerTmpFilePath = path.join(process.cwd(), `./${Constants.defaultRootFolderName}/${Constants.defaultTmpFileName}.${Constants.defaultTmpFileExt}`);
9
9
  static publicFolderName = 'public';
10
- static kafkaLogsTopic = 'logs';
10
+ static kafkaLogsTopic = 'log';
11
11
  }