@zintrust/core 2.2.8 → 2.2.9

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,6 +1,6 @@
1
1
  {
2
2
  "name": "@zintrust/core",
3
- "version": "2.2.8",
3
+ "version": "2.2.9",
4
4
  "description": "Production-grade TypeScript backend framework for JavaScript",
5
5
  "homepage": "https://zintrust.com",
6
6
  "repository": {
@@ -463,7 +463,7 @@ const getFileWriter = () => {
463
463
  return;
464
464
  if (fileWriterPromise !== undefined)
465
465
  return;
466
- fileWriterPromise = import('./FileLogWriter')
466
+ fileWriterPromise = import('./FileLogWriter.js')
467
467
  .then((mod) => {
468
468
  fileWriter = mod.FileLogWriter;
469
469
  return mod;
@@ -789,7 +789,7 @@ export const cleanLogsOnce = async () => {
789
789
  if (!shouldLogToFile())
790
790
  return [];
791
791
  try {
792
- const mod = await import('./FileLogWriter');
792
+ const mod = await import('./FileLogWriter.js');
793
793
  const deleted = mod.cleanOnce();
794
794
  logInfo('Log cleanup executed', { deletedCount: deleted.length });
795
795
  return deleted;
package/src/index.js CHANGED
@@ -1,11 +1,11 @@
1
1
  /**
2
- * @zintrust/core v2.2.8
2
+ * @zintrust/core v2.2.9
3
3
  *
4
4
  * ZinTrust Framework - Production-Grade TypeScript Backend
5
5
  * Built for performance, type safety, and exceptional developer experience
6
6
  *
7
7
  * Build Information:
8
- * Built: 2026-05-29T12:22:04.247Z
8
+ * Built: 2026-05-29T15:08:40.454Z
9
9
  * Node: >=20.0.0
10
10
  * License: MIT
11
11
  *
@@ -21,7 +21,7 @@
21
21
  * Available at runtime for debugging and health checks
22
22
  */
23
23
  export const ZINTRUST_VERSION = '0.1.41';
24
- export const ZINTRUST_BUILD_DATE = '2026-05-29T12:22:04.212Z'; // Replaced during build
24
+ export const ZINTRUST_BUILD_DATE = '2026-05-29T15:08:40.412Z'; // Replaced during build
25
25
  export { Application } from './boot/Application.js';
26
26
  export { AwsSigV4 } from './common/index.js';
27
27
  export { SignedRequest } from './security/SignedRequest.js';