@zintrust/core 2.0.5 → 2.0.7
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.0.
|
|
3
|
+
"version": "2.0.7",
|
|
4
4
|
"description": "Production-grade TypeScript backend framework for JavaScript",
|
|
5
5
|
"homepage": "https://zintrust.com",
|
|
6
6
|
"repository": {
|
|
@@ -130,6 +130,10 @@
|
|
|
130
130
|
"types": "./src/microservices-index.d.ts",
|
|
131
131
|
"import": "./src/microservices-index.js"
|
|
132
132
|
},
|
|
133
|
+
"./middleware": {
|
|
134
|
+
"types": "./src/middleware-index.d.ts",
|
|
135
|
+
"import": "./src/middleware-index.js"
|
|
136
|
+
},
|
|
133
137
|
"./templates": {
|
|
134
138
|
"types": "./src/templates-index.d.ts",
|
|
135
139
|
"import": "./src/templates-index.js"
|
package/src/index.js
CHANGED
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
/**
|
|
2
|
-
* @zintrust/core v2.0.
|
|
2
|
+
* @zintrust/core v2.0.7
|
|
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-
|
|
8
|
+
* Built: 2026-05-22T21:12:31.576Z
|
|
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-
|
|
24
|
+
export const ZINTRUST_BUILD_DATE = '2026-05-22T21:12:31.497Z'; // 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';
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* ZinTrust Middleware
|
|
3
|
+
* Middleware types and failure responders for request handling
|
|
4
|
+
*/
|
|
5
|
+
export { MiddlewareFailureContext, MiddlewareFailureResponder, defaultMiddlewareFailureResponder, } from './middleware/MiddlewareFailureResponder';
|
|
6
|
+
//# sourceMappingURL=middleware-index.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"middleware-index.d.ts","sourceRoot":"","sources":["../../src/middleware-index.ts"],"names":[],"mappings":"AAAA;;;GAGG;AAEH,OAAO,EACL,wBAAwB,EACxB,0BAA0B,EAC1B,iCAAiC,GAClC,MAAM,wCAAwC,CAAC"}
|