@zintrust/core 0.1.51 → 0.1.52

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": "0.1.51",
3
+ "version": "0.1.52",
4
4
  "description": "Production-grade TypeScript backend framework for JavaScript",
5
5
  "homepage": "https://zintrust.com",
6
6
  "repository": {
@@ -62,7 +62,8 @@
62
62
  "node-forge": "1.3.3",
63
63
  "cross-spawn": "^7.0.5",
64
64
  "glob": "^11.1.0",
65
- "minimatch": "^10.2.1",
65
+ "minimatch": "^10.2.2",
66
+ "rollup": "^4.59.0",
66
67
  "undici": "^6.23.0"
67
68
  },
68
69
  "bin": {
package/src/index.js CHANGED
@@ -1,11 +1,11 @@
1
1
  /**
2
- * @zintrust/core v0.1.51
2
+ * @zintrust/core v0.1.52
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-02-25T19:36:11.506Z
8
+ * Built: 2026-02-27T08:07:36.891Z
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-02-25T19:36:11.475Z'; // Replaced during build
24
+ export const ZINTRUST_BUILD_DATE = '2026-02-27T08:07:36.860Z'; // 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';
@@ -6,3 +6,25 @@
6
6
  */
7
7
 
8
8
  // Intentionally empty by default.
9
+ //
10
+ // Example: pre-register persisted worker processorSpec mappings.
11
+ // Uncomment and adapt to your project as needed.
12
+ //
13
+ // import { ZinTrustProcessor } from '@app/Workers/AdvancEmailWorker';
14
+ // import { WorkerFactory, type WorkerFactoryConfig } from '@zintrust/workers';
15
+ //
16
+ // type PreRegisteredProcessorSpec = {
17
+ // processorSpec: string;
18
+ // processor: WorkerFactoryConfig['processor'];
19
+ // };
20
+ //
21
+ // export const preRegisteredWorkerProcessorSpecs: ReadonlyArray<PreRegisteredProcessorSpec> = [
22
+ // {
23
+ // processorSpec: 'https://wk.zintrust.com/AdvancEmailWorker.js',
24
+ // processor: ZinTrustProcessor,
25
+ // },
26
+ // ];
27
+ //
28
+ // for (const entry of preRegisteredWorkerProcessorSpecs) {
29
+ // WorkerFactory.registerProcessorSpec(entry.processorSpec, entry.processor);
30
+ // }