@zintrust/core 0.4.21 → 0.4.22
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 +1 @@
|
|
|
1
|
-
{"version":3,"file":"cloudflare.d.ts","sourceRoot":"","sources":["../../../src/functions/cloudflare.ts"],"names":[],"mappings":";
|
|
1
|
+
{"version":3,"file":"cloudflare.d.ts","sourceRoot":"","sources":["../../../src/functions/cloudflare.ts"],"names":[],"mappings":";mBA4NuB,OAAO,QAAQ,OAAO,QAAQ,OAAO,GAAG,OAAO,CAAC,QAAQ,CAAC;;AADhF,wBAoCE"}
|
|
@@ -41,31 +41,31 @@ const startupConfigModules = Object.freeze([
|
|
|
41
41
|
},
|
|
42
42
|
]);
|
|
43
43
|
const importRootBroadcastModule = async () => {
|
|
44
|
-
return (await import('@runtime-config/' + 'broadcast.ts'));
|
|
44
|
+
return (await import('@runtime-config/' + 'broadcast.ts').catch(() => ({})));
|
|
45
45
|
};
|
|
46
46
|
const importRootCacheModule = async () => {
|
|
47
|
-
return (await import('@runtime-config/' + 'cache.ts'));
|
|
47
|
+
return (await import('@runtime-config/' + 'cache.ts').catch(() => ({})));
|
|
48
48
|
};
|
|
49
49
|
const importRootDatabaseModule = async () => {
|
|
50
|
-
return (await import('@runtime-config/' + 'database.ts'));
|
|
50
|
+
return (await import('@runtime-config/' + 'database.ts').catch(() => ({})));
|
|
51
51
|
};
|
|
52
52
|
const importRootMailModule = async () => {
|
|
53
|
-
return (await import('@runtime-config/' + 'mail.ts'));
|
|
53
|
+
return (await import('@runtime-config/' + 'mail.ts').catch(() => ({})));
|
|
54
54
|
};
|
|
55
55
|
const importRootMiddlewareModule = async () => {
|
|
56
|
-
return (await import('@runtime-config/' + 'middleware.ts'));
|
|
56
|
+
return (await import('@runtime-config/' + 'middleware.ts').catch(() => ({})));
|
|
57
57
|
};
|
|
58
58
|
const importRootNotificationModule = async () => {
|
|
59
|
-
return (await import('@runtime-config/' + 'notification.ts'));
|
|
59
|
+
return (await import('@runtime-config/' + 'notification.ts').catch(() => ({})));
|
|
60
60
|
};
|
|
61
61
|
const importRootQueueModule = async () => {
|
|
62
|
-
return (await import('@runtime-config/' + 'queue.ts'));
|
|
62
|
+
return (await import('@runtime-config/' + 'queue.ts').catch(() => ({})));
|
|
63
63
|
};
|
|
64
64
|
const importRootStorageModule = async () => {
|
|
65
|
-
return (await import('@runtime-config/' + 'storage.ts'));
|
|
65
|
+
return (await import('@runtime-config/' + 'storage.ts').catch(() => ({})));
|
|
66
66
|
};
|
|
67
67
|
const importRootWorkersModule = async () => {
|
|
68
|
-
return (await import('@runtime-config/' + 'workers.ts'));
|
|
68
|
+
return (await import('@runtime-config/' + 'workers.ts').catch(() => ({})));
|
|
69
69
|
};
|
|
70
70
|
const rootStartupImporters = Object.freeze({
|
|
71
71
|
[StartupConfigFile.Broadcast]: importRootBroadcastModule,
|
package/src/index.js
CHANGED
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
/**
|
|
2
|
-
* @zintrust/core v0.4.
|
|
2
|
+
* @zintrust/core v0.4.22
|
|
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-03-
|
|
8
|
+
* Built: 2026-03-26T14:36:53.319Z
|
|
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-03-
|
|
24
|
+
export const ZINTRUST_BUILD_DATE = '2026-03-26T14:36:53.284Z'; // 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';
|