@zintrust/core 0.1.27 → 0.1.28

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.
Files changed (1499) hide show
  1. package/README.md +185 -166
  2. package/bin/z.ts +10 -0
  3. package/bin/zin.ts +10 -0
  4. package/bin/zintrust-main.ts +130 -0
  5. package/bin/zintrust-microservices.ts +199 -0
  6. package/bin/zintrust.ts +14 -0
  7. package/bin/zt.ts +10 -0
  8. package/dist/src/index.d.ts +258 -0
  9. package/dist/src/index.js +212 -0
  10. package/package.json +140 -42
  11. package/src/auth/Auth.ts +42 -0
  12. package/src/boot/Application.ts +490 -0
  13. package/src/boot/Server.ts +155 -0
  14. package/src/boot/bootstrap.ts +274 -0
  15. package/src/builder/BundleOptimizer.ts +483 -0
  16. package/src/cache/Cache.ts +185 -0
  17. package/src/cache/CacheDriver.ts +39 -0
  18. package/src/cache/CacheDriverRegistry.ts +29 -0
  19. package/src/cache/CacheRuntimeRegistration.ts +24 -0
  20. package/src/cache/drivers/KVDriver.ts +63 -0
  21. package/src/cache/drivers/KVRemoteDriver.ts +97 -0
  22. package/src/cache/drivers/MemoryDriver.ts +85 -0
  23. package/src/cache/drivers/MongoDriver.ts +96 -0
  24. package/src/cache/drivers/RedisDriver.ts +95 -0
  25. package/src/cli/BaseCommand.ts +106 -0
  26. package/src/cli/CLI.ts +280 -0
  27. package/src/cli/ErrorHandler.ts +130 -0
  28. package/src/cli/PromptHelper.ts +203 -0
  29. package/src/cli/commands/AddCommand.ts +1290 -0
  30. package/src/cli/commands/BroadcastWorkCommand.ts +20 -0
  31. package/src/cli/commands/ConfigCommand.ts +422 -0
  32. package/src/cli/commands/CreateCommand.ts +177 -0
  33. package/src/cli/commands/D1MigrateCommand.ts +98 -0
  34. package/src/cli/commands/DbSeedCommand.ts +181 -0
  35. package/src/cli/commands/DebugCommand.ts +71 -0
  36. package/src/cli/commands/FixCommand.ts +84 -0
  37. package/src/cli/commands/JwtDevCommand.ts +154 -0
  38. package/src/cli/commands/KeyGenerateCommand.ts +86 -0
  39. package/src/cli/commands/LogsCleanupCommand.ts +24 -0
  40. package/src/cli/commands/LogsCommand.ts +270 -0
  41. package/src/cli/commands/MakeMailTemplateCommand.ts +119 -0
  42. package/src/cli/commands/MakeNotificationTemplateCommand.ts +164 -0
  43. package/src/cli/commands/MigrateCommand.ts +435 -0
  44. package/src/cli/commands/MigrateWorkerCommand.ts +180 -0
  45. package/src/cli/commands/NewCommand.ts +546 -0
  46. package/src/cli/commands/NotificationWorkCommand.ts +20 -0
  47. package/src/cli/commands/PluginCommand.ts +112 -0
  48. package/src/cli/commands/PrepareCommand.ts +65 -0
  49. package/src/cli/commands/PublishCommand.ts +79 -0
  50. package/src/cli/commands/QACommand.ts +551 -0
  51. package/src/cli/commands/QueueCommand.ts +145 -0
  52. package/src/cli/commands/QueueLockCommand.ts +156 -0
  53. package/src/cli/commands/QueueWorkCommandUtils.ts +54 -0
  54. package/src/cli/commands/ResourceControlCommand.ts +49 -0
  55. package/src/cli/commands/RoutesCommand.ts +316 -0
  56. package/src/cli/commands/SecretsCommand.ts +144 -0
  57. package/src/cli/commands/SimulateCommand.ts +97 -0
  58. package/src/cli/commands/StartCommand.ts +448 -0
  59. package/src/cli/commands/TemplatesCommand.ts +72 -0
  60. package/src/cli/commands/UpgradeCommand.ts +128 -0
  61. package/src/cli/commands/WorkerCommands.ts +373 -0
  62. package/src/cli/commands/createKindWorkCommand.ts +56 -0
  63. package/src/cli/commands/index.ts +28 -0
  64. package/src/cli/commands/runner/index.ts +140 -0
  65. package/src/cli/config/ConfigManager.ts +221 -0
  66. package/src/cli/config/ConfigSchema.ts +263 -0
  67. package/src/cli/config/ConfigValidator.ts +250 -0
  68. package/src/cli/config/index.ts +21 -0
  69. package/src/cli/d1/D1SqlMigrations.ts +289 -0
  70. package/src/cli/d1/WranglerConfig.ts +146 -0
  71. package/src/cli/d1/WranglerD1.ts +28 -0
  72. package/src/cli/debug/Dashboard.ts +227 -0
  73. package/src/cli/env/EnvFileBackfill.ts +80 -0
  74. package/src/cli/index.ts +17 -0
  75. package/src/cli/logger/Logger.ts +193 -0
  76. package/src/cli/scaffolding/ControllerGenerator.ts +633 -0
  77. package/src/cli/scaffolding/FactoryGenerator.ts +430 -0
  78. package/src/cli/scaffolding/FeatureScaffolder.ts +811 -0
  79. package/src/cli/scaffolding/FileGenerator.ts +262 -0
  80. package/src/cli/scaffolding/GovernanceScaffolder.ts +392 -0
  81. package/src/cli/scaffolding/MigrationGenerator.ts +418 -0
  82. package/src/cli/scaffolding/ModelGenerator.ts +337 -0
  83. package/src/cli/scaffolding/ProjectScaffolder.ts +786 -0
  84. package/src/cli/scaffolding/RequestFactoryGenerator.ts +561 -0
  85. package/src/cli/scaffolding/ResponseFactoryGenerator.ts +394 -0
  86. package/src/cli/scaffolding/RouteGenerator.ts +450 -0
  87. package/src/cli/scaffolding/SeederGenerator.ts +428 -0
  88. package/src/cli/scaffolding/ServiceIntegrationTestGenerator.ts +317 -0
  89. package/src/cli/scaffolding/ServiceRequestFactoryGenerator.ts +485 -0
  90. package/src/cli/scaffolding/ServiceScaffolder.ts +449 -0
  91. package/src/cli/scaffolding/TemplateEngine.ts +141 -0
  92. package/src/cli/scaffolding/TemplateGenerator.ts +255 -0
  93. package/src/cli/scaffolding/WorkflowGenerator.ts +221 -0
  94. package/src/cli/scaffolding/index.ts +89 -0
  95. package/src/cli/services/VersionChecker.ts +308 -0
  96. package/src/cli/utils/DatabaseCliUtils.ts +75 -0
  97. package/src/cli/utils/DistPackager.ts +154 -0
  98. package/src/cli/utils/EnvFileLoader.ts +218 -0
  99. package/src/cli/utils/spawn.ts +116 -0
  100. package/src/cli/workers/QueueWorkRunner.ts +377 -0
  101. package/src/collections/Collection.ts +241 -0
  102. package/src/collections/index.ts +2 -0
  103. package/src/common/AwsSigV4.ts +116 -0
  104. package/src/common/ExternalServiceUtils.ts +151 -0
  105. package/src/common/HealthRoutes.ts +144 -0
  106. package/src/common/RemoteSignedJson.ts +117 -0
  107. package/src/common/index.ts +380 -0
  108. package/src/common/utility.ts +140 -0
  109. package/src/config/FileLogWriter.ts +342 -0
  110. package/src/config/SecretsManager.ts +452 -0
  111. package/src/config/StartupConfigValidator.ts +268 -0
  112. package/src/config/app.ts +229 -0
  113. package/src/config/broadcast.ts +194 -0
  114. package/src/config/cache.ts +175 -0
  115. package/src/config/cloudflare.ts +43 -0
  116. package/src/config/constants.ts +167 -0
  117. package/src/config/database.ts +344 -0
  118. package/src/config/env.ts +245 -0
  119. package/src/config/features.ts +57 -0
  120. package/src/config/index.ts +46 -0
  121. package/src/config/logger.ts +387 -0
  122. package/src/config/logging/HttpLogger.ts +121 -0
  123. package/src/config/logging/KvLogger.ts +181 -0
  124. package/src/config/logging/SlackLogger.ts +156 -0
  125. package/src/config/mail.ts +186 -0
  126. package/src/config/microservices.ts +104 -0
  127. package/src/config/middleware.ts +360 -0
  128. package/src/config/notification.ts +205 -0
  129. package/src/config/queue.ts +205 -0
  130. package/src/config/redis.ts +84 -0
  131. package/src/config/security.ts +170 -0
  132. package/src/config/startup.ts +29 -0
  133. package/src/config/storage.ts +205 -0
  134. package/src/config/type.ts +611 -0
  135. package/src/config/workers.ts +257 -0
  136. package/src/container/ServiceContainer.ts +108 -0
  137. package/src/database/Paginator.ts +141 -0
  138. package/src/database/factories/.gitkeep +0 -0
  139. package/src/database/migrations/.gitkeep +0 -0
  140. package/src/database/migrations/index.ts +2 -0
  141. package/src/database/seeders/.gitkeep +0 -0
  142. package/src/events/EventDispatcher.ts +141 -0
  143. package/src/events/index.ts +2 -0
  144. package/src/exceptions/ZintrustError.ts +290 -0
  145. package/src/functions/cloudflare.ts +28 -0
  146. package/src/functions/deno.ts +25 -0
  147. package/src/functions/lambda.ts +30 -0
  148. package/src/health/RuntimeHealthProbes.ts +75 -0
  149. package/src/health/StartupHealthChecks.ts +156 -0
  150. package/src/http/Controller.ts +64 -0
  151. package/src/http/ErrorResponse.ts +76 -0
  152. package/src/http/FileUpload.ts +194 -0
  153. package/src/http/Kernel.ts +356 -0
  154. package/src/http/Request.ts +382 -0
  155. package/src/http/RequestContext.ts +194 -0
  156. package/src/http/Response.ts +93 -0
  157. package/src/http/ValidationHelper.ts +131 -0
  158. package/src/http/error-pages/ErrorPageRenderer.ts +108 -0
  159. package/src/http/middleware/BodyParsingMiddleware.ts +294 -0
  160. package/src/http/middleware/FileUploadMiddleware.ts +91 -0
  161. package/src/http/parsers/BodyParsers.ts +188 -0
  162. package/src/http/parsers/MultipartParser.ts +211 -0
  163. package/src/http/parsers/MultipartParserRegistry.ts +54 -0
  164. package/src/http/validated.ts +55 -0
  165. package/src/index.ts +436 -0
  166. package/src/lang/lang.ts +22 -0
  167. package/src/microservices/MicroserviceBootstrap.ts +411 -0
  168. package/src/microservices/MicroserviceGenerator.ts +534 -0
  169. package/src/microservices/MicroserviceManager.ts +409 -0
  170. package/src/microservices/PostgresAdapter.ts +475 -0
  171. package/src/microservices/RequestTracingMiddleware.ts +207 -0
  172. package/src/microservices/ServiceAuthMiddleware.ts +363 -0
  173. package/src/microservices/ServiceBundler.ts +432 -0
  174. package/src/microservices/ServiceHealthMonitor.ts +512 -0
  175. package/src/middleware/AuthMiddleware.ts +29 -0
  176. package/src/middleware/CsrfMiddleware.ts +177 -0
  177. package/src/middleware/ErrorHandlerMiddleware.ts +52 -0
  178. package/src/middleware/JwtAuthMiddleware.ts +99 -0
  179. package/src/middleware/LoggingMiddleware.ts +55 -0
  180. package/src/middleware/MiddlewareStack.ts +69 -0
  181. package/src/middleware/RateLimiter.ts +338 -0
  182. package/src/middleware/SanitizeBodyMiddleware.ts +41 -0
  183. package/src/middleware/SecurityMiddleware.ts +145 -0
  184. package/src/middleware/SessionMiddleware.ts +26 -0
  185. package/src/middleware/ValidationMiddleware.ts +296 -0
  186. package/src/middleware/index.ts +11 -0
  187. package/src/migrations/MigrationDiscovery.ts +17 -0
  188. package/src/migrations/MigrationLoader.ts +59 -0
  189. package/src/migrations/MigrationLock.ts +42 -0
  190. package/src/migrations/Migrator.ts +16 -0
  191. package/src/migrations/MigratorFactory.ts +473 -0
  192. package/src/migrations/enum/index.ts +114 -0
  193. package/src/migrations/schema/Blueprint.ts +240 -0
  194. package/src/migrations/schema/Schema.ts +228 -0
  195. package/src/migrations/schema/SchemaCompiler.ts +375 -0
  196. package/src/migrations/schema/index.ts +17 -0
  197. package/src/migrations/schema/types.ts +113 -0
  198. package/src/migrations/types.ts +52 -0
  199. package/src/node-singletons/async_hooks.ts +12 -0
  200. package/src/node-singletons/child-process.ts +7 -0
  201. package/src/node-singletons/crypto.ts +21 -0
  202. package/src/node-singletons/events.ts +7 -0
  203. package/src/node-singletons/fs.ts +38 -0
  204. package/src/node-singletons/http.ts +13 -0
  205. package/src/node-singletons/index.ts +38 -0
  206. package/src/node-singletons/module.ts +12 -0
  207. package/src/node-singletons/net.ts +10 -0
  208. package/src/node-singletons/os.ts +20 -0
  209. package/src/node-singletons/path.ts +11 -0
  210. package/src/node-singletons/perf-hooks.ts +11 -0
  211. package/src/node-singletons/process.ts +58 -0
  212. package/src/node-singletons/readline.ts +12 -0
  213. package/src/node-singletons/tls.ts +10 -0
  214. package/src/node-singletons/url.ts +11 -0
  215. package/src/node-singletons/util.ts +6 -0
  216. package/src/node.ts +32 -0
  217. package/src/observability/OpenTelemetry.ts +295 -0
  218. package/src/observability/PrometheusMetrics.ts +161 -0
  219. package/src/openapi/OpenApiGenerator.ts +452 -0
  220. package/src/orm/ConnectionManager.ts +759 -0
  221. package/src/orm/Database.ts +521 -0
  222. package/src/orm/DatabaseAdapter.ts +169 -0
  223. package/src/orm/DatabaseAdapterRegistry.ts +38 -0
  224. package/src/orm/DatabaseRuntimeRegistration.ts +87 -0
  225. package/src/orm/Model.ts +1025 -0
  226. package/src/orm/QueryBuilder.ts +1492 -0
  227. package/src/orm/Relationships.ts +419 -0
  228. package/src/orm/Schema.ts +403 -0
  229. package/src/orm/SchemaCompiler.ts +160 -0
  230. package/src/orm/adapters/D1Adapter.ts +149 -0
  231. package/src/orm/adapters/D1RemoteAdapter.ts +236 -0
  232. package/src/orm/adapters/MySQLAdapter.ts +129 -0
  233. package/src/orm/adapters/PostgreSQLAdapter.ts +148 -0
  234. package/src/orm/adapters/SQLServerAdapter.ts +99 -0
  235. package/src/orm/adapters/SQLiteAdapter.ts +314 -0
  236. package/src/orm/maintenance/SqliteMaintenance.ts +22 -0
  237. package/src/orm/migrations/MigrationStore.ts +232 -0
  238. package/src/performance/Benchmark.ts +456 -0
  239. package/src/performance/CodeGenerationBenchmark.ts +338 -0
  240. package/src/performance/Optimizer.ts +846 -0
  241. package/src/performance/establish-baseline.ts +69 -0
  242. package/src/profiling/MemoryProfiler.ts +111 -0
  243. package/src/profiling/N1Detector.ts +144 -0
  244. package/src/profiling/QueryLogger.ts +233 -0
  245. package/src/profiling/RequestProfiler.ts +123 -0
  246. package/src/profiling/types.ts +86 -0
  247. package/src/routes/CoreRoutes.ts +47 -0
  248. package/src/routes/RouteRegistry.ts +106 -0
  249. package/src/routes/Router.ts +435 -0
  250. package/src/routes/common.ts +50 -0
  251. package/src/routes/doc.ts +139 -0
  252. package/src/routes/error.ts +185 -0
  253. package/src/routes/errorPages.ts +125 -0
  254. package/src/routes/health.ts +6 -0
  255. package/src/routes/metrics.ts +24 -0
  256. package/src/routes/openapi.ts +93 -0
  257. package/src/routes/publicRoot.ts +125 -0
  258. package/src/runtime/PluginAutoImports.ts +67 -0
  259. package/src/runtime/PluginManager.ts +468 -0
  260. package/src/runtime/PluginRegistry.ts +232 -0
  261. package/src/runtime/RuntimeAdapter.ts +291 -0
  262. package/src/runtime/StartupConfigFileRegistry.ts +64 -0
  263. package/src/runtime/adapters/CloudflareAdapter.ts +273 -0
  264. package/src/runtime/adapters/DenoAdapter.ts +269 -0
  265. package/src/runtime/adapters/FargateAdapter.ts +230 -0
  266. package/src/runtime/adapters/LambdaAdapter.ts +475 -0
  267. package/src/runtime/adapters/NodeServerAdapter.ts +289 -0
  268. package/src/runtime/getKernel.ts +34 -0
  269. package/src/runtime/useFileLoader.ts +234 -0
  270. package/src/scheduler/ScheduleRunner.ts +219 -0
  271. package/src/scheduler/index.ts +2 -0
  272. package/src/scheduler/types.ts +18 -0
  273. package/src/schedules/index.ts +1 -0
  274. package/src/schedules/log-cleanup.ts +21 -0
  275. package/src/scripts/GenerateEnvArtifacts.ts +203 -0
  276. package/src/scripts/TemplateImportsCheck.ts +180 -0
  277. package/src/scripts/TemplateSync.ts +489 -0
  278. package/src/security/CsrfTokenManager.ts +102 -0
  279. package/src/security/EncryptedEnvelope.ts +373 -0
  280. package/src/security/Encryptor.ts +259 -0
  281. package/src/security/Hash.ts +97 -0
  282. package/src/security/JwtManager.ts +375 -0
  283. package/src/security/PasswordResetTokenBroker.ts +193 -0
  284. package/src/security/Sanitizer.ts +614 -0
  285. package/src/security/SignedRequest.ts +315 -0
  286. package/src/security/StartupSecretValidation.ts +162 -0
  287. package/src/security/TokenRevocation.ts +64 -0
  288. package/src/security/UrlValidator.ts +57 -0
  289. package/src/security/Xss.ts +74 -0
  290. package/src/security/XssProtection.ts +396 -0
  291. package/src/seeders/SeederDiscovery.ts +22 -0
  292. package/src/seeders/SeederLoader.ts +88 -0
  293. package/src/seeders/types.ts +20 -0
  294. package/src/services/default/test/.env +19 -0
  295. package/src/services/default/users/.env +19 -0
  296. package/src/services/ecommerce/docker-compose.yml +155 -0
  297. package/src/services/ecommerce/init-db.sql +71 -0
  298. package/src/services/ecommerce/orders/service.config.json +20 -0
  299. package/src/services/ecommerce/payments/service.config.json +19 -0
  300. package/src/services/ecommerce/users/Dockerfile +57 -0
  301. package/src/services/ecommerce/users/service.config.json +20 -0
  302. package/src/session/SessionManager.ts +241 -0
  303. package/src/session/index.ts +2 -0
  304. package/src/start.ts +68 -0
  305. package/src/testing/TestEnvironment.ts +213 -0
  306. package/src/testing/TestHttp.ts +134 -0
  307. package/src/testing/index.ts +11 -0
  308. package/src/time/DateTime.ts +548 -0
  309. package/src/time/index.ts +7 -0
  310. package/src/toolkit/Secrets/EnvFile.ts +80 -0
  311. package/src/toolkit/Secrets/Manifest.ts +119 -0
  312. package/src/toolkit/Secrets/index.ts +192 -0
  313. package/src/toolkit/Secrets/providers/AwsSecretsManager.ts +189 -0
  314. package/src/toolkit/Secrets/providers/CloudflareKv.ts +94 -0
  315. package/src/tools/broadcast/Broadcast.ts +116 -0
  316. package/src/tools/broadcast/BroadcastRegistry.ts +38 -0
  317. package/src/tools/broadcast/BroadcastRuntimeRegistration.ts +31 -0
  318. package/src/tools/broadcast/drivers/BaseDriver.ts +10 -0
  319. package/src/tools/broadcast/drivers/InMemory.ts +20 -0
  320. package/src/tools/broadcast/drivers/Pusher.ts +107 -0
  321. package/src/tools/broadcast/drivers/Redis.ts +49 -0
  322. package/src/tools/broadcast/drivers/RedisHttps.ts +74 -0
  323. package/src/tools/broadcast/index.ts +8 -0
  324. package/src/tools/http/Http.ts +234 -0
  325. package/src/tools/http/HttpResponse.ts +118 -0
  326. package/src/tools/http/index.ts +11 -0
  327. package/src/tools/mail/Mail.ts +1 -0
  328. package/src/tools/mail/MailDriverRegistry.ts +34 -0
  329. package/src/tools/mail/attachments.ts +47 -0
  330. package/src/tools/mail/drivers/BaseDriver.ts +10 -0
  331. package/src/tools/mail/drivers/Mailgun.ts +130 -0
  332. package/src/tools/mail/drivers/SendGrid.ts +103 -0
  333. package/src/tools/mail/drivers/Ses.ts +179 -0
  334. package/src/tools/mail/drivers/Smtp.ts +490 -0
  335. package/src/tools/mail/index.ts +218 -0
  336. package/src/tools/mail/template-loader.ts +128 -0
  337. package/src/tools/mail/template-utils.ts +19 -0
  338. package/src/tools/mail/templates/auth-password-reset.html +231 -0
  339. package/src/tools/mail/templates/auth-welcome.html +236 -0
  340. package/src/tools/mail/templates/general.html +109 -0
  341. package/src/tools/mail/templates/index.ts +143 -0
  342. package/src/tools/mail/templates/job-completed.html +188 -0
  343. package/src/tools/mail/templates/notifications-new-comment.html +228 -0
  344. package/src/tools/mail/templates/password-reset.html +221 -0
  345. package/src/tools/mail/templates/performance-report.html +258 -0
  346. package/src/tools/mail/templates/welcome.html +187 -0
  347. package/src/tools/mail/templates/worker-alert.html +229 -0
  348. package/src/tools/mail/testing.ts +59 -0
  349. package/src/tools/notification/Driver.ts +11 -0
  350. package/src/tools/notification/Notification.ts +55 -0
  351. package/src/tools/notification/NotificationChannelRegistry.ts +46 -0
  352. package/src/tools/notification/NotificationRuntimeRegistration.ts +36 -0
  353. package/src/tools/notification/Registry.ts +35 -0
  354. package/src/tools/notification/Service.ts +136 -0
  355. package/src/tools/notification/config.ts +7 -0
  356. package/src/tools/notification/drivers/BaseDriver.ts +10 -0
  357. package/src/tools/notification/drivers/Console.ts +18 -0
  358. package/src/tools/notification/drivers/Slack.ts +42 -0
  359. package/src/tools/notification/drivers/SlackNotification.ts +17 -0
  360. package/src/tools/notification/drivers/Termii.ts +43 -0
  361. package/src/tools/notification/drivers/Twilio.ts +77 -0
  362. package/src/tools/notification/drivers/TwilioNotification.ts +19 -0
  363. package/src/tools/notification/templates/markdown/index.ts +49 -0
  364. package/src/tools/notification/templates/markdown/notifications/new-follow.md +12 -0
  365. package/src/tools/notification/templates/markdown/registry.ts +45 -0
  366. package/src/tools/notification/testing.ts +50 -0
  367. package/src/tools/notification/testingHelpers.ts +44 -0
  368. package/src/tools/queue/AdvancedQueue.ts +458 -0
  369. package/src/tools/queue/DeduplicationBuilder.ts +111 -0
  370. package/src/tools/queue/LockProvider.ts +335 -0
  371. package/src/tools/queue/Queue.ts +78 -0
  372. package/src/tools/queue/QueueExtensions.ts +161 -0
  373. package/src/tools/queue/QueueRuntimeRegistration.ts +29 -0
  374. package/src/tools/queue/drivers/Database.ts +183 -0
  375. package/src/tools/queue/drivers/InMemory.ts +64 -0
  376. package/src/tools/queue/drivers/Redis.ts +33 -0
  377. package/src/tools/queue/index.ts +28 -0
  378. package/src/tools/redis/RedisKeyManager.ts +142 -0
  379. package/src/tools/storage/LocalSignedUrl.ts +142 -0
  380. package/src/tools/storage/StorageDiskRegistry.ts +45 -0
  381. package/src/tools/storage/StorageDriverRegistry.ts +31 -0
  382. package/src/tools/storage/StorageRuntimeRegistration.ts +32 -0
  383. package/src/tools/storage/drivers/Gcs.ts +201 -0
  384. package/src/tools/storage/drivers/Local.ts +116 -0
  385. package/src/tools/storage/drivers/R2.ts +99 -0
  386. package/src/tools/storage/drivers/S3.ts +347 -0
  387. package/src/tools/storage/index.ts +217 -0
  388. package/src/tools/storage/testing.ts +80 -0
  389. package/src/tools/templates/MarkdownRenderer.ts +354 -0
  390. package/src/tools/templates/index.ts +5 -0
  391. package/src/types/Queue.ts +71 -0
  392. package/src/types/redis.d.ts +11 -0
  393. package/src/validation/ValidationError.ts +79 -0
  394. package/src/validation/Validator.ts +681 -0
  395. package/src/zintrust.plugins.ts +13 -0
  396. package/bin/z.d.ts +0 -7
  397. package/bin/z.d.ts.map +0 -1
  398. package/bin/z.js +0 -7
  399. package/bin/zin.d.ts +0 -7
  400. package/bin/zin.d.ts.map +0 -1
  401. package/bin/zin.js +0 -7
  402. package/bin/zintrust-main.d.ts +0 -9
  403. package/bin/zintrust-main.d.ts.map +0 -1
  404. package/bin/zintrust-main.js +0 -110
  405. package/bin/zintrust-microservices.d.ts +0 -7
  406. package/bin/zintrust-microservices.d.ts.map +0 -1
  407. package/bin/zintrust-microservices.js +0 -165
  408. package/bin/zintrust.d.ts +0 -10
  409. package/bin/zintrust.d.ts.map +0 -1
  410. package/bin/zintrust.js +0 -10
  411. package/bin/zt.d.ts +0 -7
  412. package/bin/zt.d.ts.map +0 -1
  413. package/bin/zt.js +0 -7
  414. package/src/auth/Auth.d.ts +0 -20
  415. package/src/auth/Auth.d.ts.map +0 -1
  416. package/src/auth/Auth.js +0 -33
  417. package/src/boot/Application.d.ts +0 -31
  418. package/src/boot/Application.d.ts.map +0 -1
  419. package/src/boot/Application.js +0 -351
  420. package/src/boot/Server.d.ts +0 -24
  421. package/src/boot/Server.d.ts.map +0 -1
  422. package/src/boot/Server.js +0 -117
  423. package/src/boot/bootstrap.d.ts +0 -7
  424. package/src/boot/bootstrap.d.ts.map +0 -1
  425. package/src/boot/bootstrap.js +0 -232
  426. package/src/builder/BundleOptimizer.d.ts +0 -42
  427. package/src/builder/BundleOptimizer.d.ts.map +0 -1
  428. package/src/builder/BundleOptimizer.js +0 -352
  429. package/src/cache/Cache.d.ts +0 -39
  430. package/src/cache/Cache.d.ts.map +0 -1
  431. package/src/cache/Cache.js +0 -142
  432. package/src/cache/CacheDriver.d.ts +0 -32
  433. package/src/cache/CacheDriver.d.ts.map +0 -1
  434. package/src/cache/CacheDriver.js +0 -6
  435. package/src/cache/CacheDriverRegistry.d.ts +0 -15
  436. package/src/cache/CacheDriverRegistry.d.ts.map +0 -1
  437. package/src/cache/CacheDriverRegistry.js +0 -19
  438. package/src/cache/CacheRuntimeRegistration.d.ts +0 -11
  439. package/src/cache/CacheRuntimeRegistration.d.ts.map +0 -1
  440. package/src/cache/CacheRuntimeRegistration.js +0 -21
  441. package/src/cache/drivers/KVDriver.d.ts +0 -12
  442. package/src/cache/drivers/KVDriver.d.ts.map +0 -1
  443. package/src/cache/drivers/KVDriver.js +0 -55
  444. package/src/cache/drivers/KVRemoteDriver.d.ts +0 -11
  445. package/src/cache/drivers/KVRemoteDriver.d.ts.map +0 -1
  446. package/src/cache/drivers/KVRemoteDriver.js +0 -70
  447. package/src/cache/drivers/MemoryDriver.d.ts +0 -12
  448. package/src/cache/drivers/MemoryDriver.d.ts.map +0 -1
  449. package/src/cache/drivers/MemoryDriver.js +0 -71
  450. package/src/cache/drivers/MongoDriver.d.ts +0 -17
  451. package/src/cache/drivers/MongoDriver.d.ts.map +0 -1
  452. package/src/cache/drivers/MongoDriver.js +0 -80
  453. package/src/cache/drivers/RedisDriver.d.ts +0 -12
  454. package/src/cache/drivers/RedisDriver.d.ts.map +0 -1
  455. package/src/cache/drivers/RedisDriver.js +0 -84
  456. package/src/cli/BaseCommand.d.ts +0 -41
  457. package/src/cli/BaseCommand.d.ts.map +0 -1
  458. package/src/cli/BaseCommand.js +0 -69
  459. package/src/cli/CLI.d.ts +0 -21
  460. package/src/cli/CLI.d.ts.map +0 -1
  461. package/src/cli/CLI.js +0 -242
  462. package/src/cli/ErrorHandler.d.ts +0 -23
  463. package/src/cli/ErrorHandler.d.ts.map +0 -1
  464. package/src/cli/ErrorHandler.js +0 -99
  465. package/src/cli/PromptHelper.d.ts +0 -47
  466. package/src/cli/PromptHelper.d.ts.map +0 -1
  467. package/src/cli/PromptHelper.js +0 -156
  468. package/src/cli/commands/AddCommand.d.ts +0 -96
  469. package/src/cli/commands/AddCommand.d.ts.map +0 -1
  470. package/src/cli/commands/AddCommand.js +0 -932
  471. package/src/cli/commands/BroadcastWorkCommand.d.ts +0 -10
  472. package/src/cli/commands/BroadcastWorkCommand.d.ts.map +0 -1
  473. package/src/cli/commands/BroadcastWorkCommand.js +0 -16
  474. package/src/cli/commands/ConfigCommand.d.ts +0 -15
  475. package/src/cli/commands/ConfigCommand.d.ts.map +0 -1
  476. package/src/cli/commands/ConfigCommand.js +0 -307
  477. package/src/cli/commands/CreateCommand.d.ts +0 -15
  478. package/src/cli/commands/CreateCommand.d.ts.map +0 -1
  479. package/src/cli/commands/CreateCommand.js +0 -143
  480. package/src/cli/commands/D1MigrateCommand.d.ts +0 -19
  481. package/src/cli/commands/D1MigrateCommand.d.ts.map +0 -1
  482. package/src/cli/commands/D1MigrateCommand.js +0 -71
  483. package/src/cli/commands/DbSeedCommand.d.ts +0 -9
  484. package/src/cli/commands/DbSeedCommand.d.ts.map +0 -1
  485. package/src/cli/commands/DbSeedCommand.js +0 -139
  486. package/src/cli/commands/DebugCommand.d.ts +0 -15
  487. package/src/cli/commands/DebugCommand.d.ts.map +0 -1
  488. package/src/cli/commands/DebugCommand.js +0 -52
  489. package/src/cli/commands/FixCommand.d.ts +0 -15
  490. package/src/cli/commands/FixCommand.d.ts.map +0 -1
  491. package/src/cli/commands/FixCommand.js +0 -68
  492. package/src/cli/commands/JwtDevCommand.d.ts +0 -8
  493. package/src/cli/commands/JwtDevCommand.d.ts.map +0 -1
  494. package/src/cli/commands/JwtDevCommand.js +0 -114
  495. package/src/cli/commands/KeyGenerateCommand.d.ts +0 -9
  496. package/src/cli/commands/KeyGenerateCommand.d.ts.map +0 -1
  497. package/src/cli/commands/KeyGenerateCommand.js +0 -76
  498. package/src/cli/commands/LogsCleanupCommand.d.ts +0 -6
  499. package/src/cli/commands/LogsCleanupCommand.d.ts.map +0 -1
  500. package/src/cli/commands/LogsCleanupCommand.js +0 -20
  501. package/src/cli/commands/LogsCommand.d.ts +0 -19
  502. package/src/cli/commands/LogsCommand.d.ts.map +0 -1
  503. package/src/cli/commands/LogsCommand.js +0 -217
  504. package/src/cli/commands/MakeMailTemplateCommand.d.ts +0 -10
  505. package/src/cli/commands/MakeMailTemplateCommand.d.ts.map +0 -1
  506. package/src/cli/commands/MakeMailTemplateCommand.js +0 -76
  507. package/src/cli/commands/MakeNotificationTemplateCommand.d.ts +0 -10
  508. package/src/cli/commands/MakeNotificationTemplateCommand.d.ts.map +0 -1
  509. package/src/cli/commands/MakeNotificationTemplateCommand.js +0 -115
  510. package/src/cli/commands/MigrateCommand.d.ts +0 -15
  511. package/src/cli/commands/MigrateCommand.d.ts.map +0 -1
  512. package/src/cli/commands/MigrateCommand.js +0 -302
  513. package/src/cli/commands/MigrateWorkerCommand.d.ts +0 -9
  514. package/src/cli/commands/MigrateWorkerCommand.d.ts.map +0 -1
  515. package/src/cli/commands/MigrateWorkerCommand.js +0 -136
  516. package/src/cli/commands/NewCommand.d.ts +0 -37
  517. package/src/cli/commands/NewCommand.d.ts.map +0 -1
  518. package/src/cli/commands/NewCommand.js +0 -408
  519. package/src/cli/commands/NotificationWorkCommand.d.ts +0 -10
  520. package/src/cli/commands/NotificationWorkCommand.d.ts.map +0 -1
  521. package/src/cli/commands/NotificationWorkCommand.js +0 -16
  522. package/src/cli/commands/PluginCommand.d.ts +0 -9
  523. package/src/cli/commands/PluginCommand.d.ts.map +0 -1
  524. package/src/cli/commands/PluginCommand.js +0 -98
  525. package/src/cli/commands/PrepareCommand.d.ts +0 -8
  526. package/src/cli/commands/PrepareCommand.d.ts.map +0 -1
  527. package/src/cli/commands/PrepareCommand.js +0 -51
  528. package/src/cli/commands/PublishCommand.d.ts +0 -5
  529. package/src/cli/commands/PublishCommand.d.ts.map +0 -1
  530. package/src/cli/commands/PublishCommand.js +0 -54
  531. package/src/cli/commands/QACommand.d.ts +0 -33
  532. package/src/cli/commands/QACommand.d.ts.map +0 -1
  533. package/src/cli/commands/QACommand.js +0 -480
  534. package/src/cli/commands/QueueCommand.d.ts +0 -10
  535. package/src/cli/commands/QueueCommand.d.ts.map +0 -1
  536. package/src/cli/commands/QueueCommand.js +0 -113
  537. package/src/cli/commands/QueueLockCommand.d.ts +0 -7
  538. package/src/cli/commands/QueueLockCommand.d.ts.map +0 -1
  539. package/src/cli/commands/QueueLockCommand.js +0 -138
  540. package/src/cli/commands/QueueWorkCommandUtils.d.ts +0 -10
  541. package/src/cli/commands/QueueWorkCommandUtils.d.ts.map +0 -1
  542. package/src/cli/commands/QueueWorkCommandUtils.js +0 -43
  543. package/src/cli/commands/ResourceControlCommand.d.ts +0 -6
  544. package/src/cli/commands/ResourceControlCommand.d.ts.map +0 -1
  545. package/src/cli/commands/ResourceControlCommand.js +0 -43
  546. package/src/cli/commands/RoutesCommand.d.ts +0 -10
  547. package/src/cli/commands/RoutesCommand.d.ts.map +0 -1
  548. package/src/cli/commands/RoutesCommand.js +0 -251
  549. package/src/cli/commands/SecretsCommand.d.ts +0 -16
  550. package/src/cli/commands/SecretsCommand.d.ts.map +0 -1
  551. package/src/cli/commands/SecretsCommand.js +0 -91
  552. package/src/cli/commands/SimulateCommand.d.ts +0 -12
  553. package/src/cli/commands/SimulateCommand.d.ts.map +0 -1
  554. package/src/cli/commands/SimulateCommand.js +0 -79
  555. package/src/cli/commands/StartCommand.d.ts +0 -5
  556. package/src/cli/commands/StartCommand.d.ts.map +0 -1
  557. package/src/cli/commands/StartCommand.js +0 -326
  558. package/src/cli/commands/TemplatesCommand.d.ts +0 -3
  559. package/src/cli/commands/TemplatesCommand.d.ts.map +0 -1
  560. package/src/cli/commands/TemplatesCommand.js +0 -65
  561. package/src/cli/commands/UpgradeCommand.d.ts +0 -16
  562. package/src/cli/commands/UpgradeCommand.d.ts.map +0 -1
  563. package/src/cli/commands/UpgradeCommand.js +0 -107
  564. package/src/cli/commands/WorkerCommands.d.ts +0 -17
  565. package/src/cli/commands/WorkerCommands.d.ts.map +0 -1
  566. package/src/cli/commands/WorkerCommands.js +0 -288
  567. package/src/cli/commands/createKindWorkCommand.d.ts +0 -9
  568. package/src/cli/commands/createKindWorkCommand.d.ts.map +0 -1
  569. package/src/cli/commands/createKindWorkCommand.js +0 -33
  570. package/src/cli/commands/index.d.ts +0 -24
  571. package/src/cli/commands/index.d.ts.map +0 -1
  572. package/src/cli/commands/index.js +0 -23
  573. package/src/cli/commands/runner/index.d.ts +0 -3
  574. package/src/cli/commands/runner/index.d.ts.map +0 -1
  575. package/src/cli/commands/runner/index.js +0 -139
  576. package/src/cli/config/ConfigManager.d.ts +0 -42
  577. package/src/cli/config/ConfigManager.d.ts.map +0 -1
  578. package/src/cli/config/ConfigManager.js +0 -175
  579. package/src/cli/config/ConfigSchema.d.ts +0 -195
  580. package/src/cli/config/ConfigSchema.d.ts.map +0 -1
  581. package/src/cli/config/ConfigSchema.js +0 -172
  582. package/src/cli/config/ConfigValidator.d.ts +0 -41
  583. package/src/cli/config/ConfigValidator.d.ts.map +0 -1
  584. package/src/cli/config/ConfigValidator.js +0 -200
  585. package/src/cli/config/index.d.ts +0 -8
  586. package/src/cli/config/index.d.ts.map +0 -1
  587. package/src/cli/config/index.js +0 -7
  588. package/src/cli/d1/D1SqlMigrations.d.ts +0 -20
  589. package/src/cli/d1/D1SqlMigrations.d.ts.map +0 -1
  590. package/src/cli/d1/D1SqlMigrations.js +0 -230
  591. package/src/cli/d1/WranglerConfig.d.ts +0 -4
  592. package/src/cli/d1/WranglerConfig.d.ts.map +0 -1
  593. package/src/cli/d1/WranglerConfig.js +0 -122
  594. package/src/cli/d1/WranglerD1.d.ts +0 -11
  595. package/src/cli/d1/WranglerD1.d.ts.map +0 -1
  596. package/src/cli/d1/WranglerD1.js +0 -16
  597. package/src/cli/debug/Dashboard.d.ts +0 -34
  598. package/src/cli/debug/Dashboard.d.ts.map +0 -1
  599. package/src/cli/debug/Dashboard.js +0 -152
  600. package/src/cli/env/EnvFileBackfill.d.ts +0 -10
  601. package/src/cli/env/EnvFileBackfill.d.ts.map +0 -1
  602. package/src/cli/env/EnvFileBackfill.js +0 -64
  603. package/src/cli/index.d.ts +0 -15
  604. package/src/cli/index.d.ts.map +0 -1
  605. package/src/cli/index.js +0 -15
  606. package/src/cli/logger/Logger.d.ts +0 -43
  607. package/src/cli/logger/Logger.d.ts.map +0 -1
  608. package/src/cli/logger/Logger.js +0 -137
  609. package/src/cli/scaffolding/ControllerGenerator.d.ts +0 -44
  610. package/src/cli/scaffolding/ControllerGenerator.d.ts.map +0 -1
  611. package/src/cli/scaffolding/ControllerGenerator.js +0 -575
  612. package/src/cli/scaffolding/FactoryGenerator.d.ts +0 -47
  613. package/src/cli/scaffolding/FactoryGenerator.d.ts.map +0 -1
  614. package/src/cli/scaffolding/FactoryGenerator.js +0 -358
  615. package/src/cli/scaffolding/FeatureScaffolder.d.ts +0 -40
  616. package/src/cli/scaffolding/FeatureScaffolder.d.ts.map +0 -1
  617. package/src/cli/scaffolding/FeatureScaffolder.js +0 -747
  618. package/src/cli/scaffolding/FileGenerator.d.ts +0 -31
  619. package/src/cli/scaffolding/FileGenerator.d.ts.map +0 -1
  620. package/src/cli/scaffolding/FileGenerator.js +0 -222
  621. package/src/cli/scaffolding/GovernanceScaffolder.d.ts +0 -23
  622. package/src/cli/scaffolding/GovernanceScaffolder.d.ts.map +0 -1
  623. package/src/cli/scaffolding/GovernanceScaffolder.js +0 -327
  624. package/src/cli/scaffolding/MigrationGenerator.d.ts +0 -45
  625. package/src/cli/scaffolding/MigrationGenerator.d.ts.map +0 -1
  626. package/src/cli/scaffolding/MigrationGenerator.js +0 -344
  627. package/src/cli/scaffolding/ModelGenerator.d.ts +0 -81
  628. package/src/cli/scaffolding/ModelGenerator.d.ts.map +0 -1
  629. package/src/cli/scaffolding/ModelGenerator.js +0 -259
  630. package/src/cli/scaffolding/ProjectScaffolder.d.ts +0 -66
  631. package/src/cli/scaffolding/ProjectScaffolder.d.ts.map +0 -1
  632. package/src/cli/scaffolding/ProjectScaffolder.js +0 -629
  633. package/src/cli/scaffolding/RequestFactoryGenerator.d.ts +0 -50
  634. package/src/cli/scaffolding/RequestFactoryGenerator.d.ts.map +0 -1
  635. package/src/cli/scaffolding/RequestFactoryGenerator.js +0 -465
  636. package/src/cli/scaffolding/ResponseFactoryGenerator.d.ts +0 -43
  637. package/src/cli/scaffolding/ResponseFactoryGenerator.d.ts.map +0 -1
  638. package/src/cli/scaffolding/ResponseFactoryGenerator.js +0 -322
  639. package/src/cli/scaffolding/RouteGenerator.d.ts +0 -66
  640. package/src/cli/scaffolding/RouteGenerator.d.ts.map +0 -1
  641. package/src/cli/scaffolding/RouteGenerator.js +0 -361
  642. package/src/cli/scaffolding/SeederGenerator.d.ts +0 -52
  643. package/src/cli/scaffolding/SeederGenerator.d.ts.map +0 -1
  644. package/src/cli/scaffolding/SeederGenerator.js +0 -334
  645. package/src/cli/scaffolding/ServiceIntegrationTestGenerator.d.ts +0 -40
  646. package/src/cli/scaffolding/ServiceIntegrationTestGenerator.d.ts.map +0 -1
  647. package/src/cli/scaffolding/ServiceIntegrationTestGenerator.js +0 -268
  648. package/src/cli/scaffolding/ServiceRequestFactoryGenerator.d.ts +0 -45
  649. package/src/cli/scaffolding/ServiceRequestFactoryGenerator.d.ts.map +0 -1
  650. package/src/cli/scaffolding/ServiceRequestFactoryGenerator.js +0 -397
  651. package/src/cli/scaffolding/ServiceScaffolder.d.ts +0 -45
  652. package/src/cli/scaffolding/ServiceScaffolder.d.ts.map +0 -1
  653. package/src/cli/scaffolding/ServiceScaffolder.js +0 -390
  654. package/src/cli/scaffolding/TemplateEngine.d.ts +0 -42
  655. package/src/cli/scaffolding/TemplateEngine.d.ts.map +0 -1
  656. package/src/cli/scaffolding/TemplateEngine.js +0 -107
  657. package/src/cli/scaffolding/TemplateGenerator.d.ts +0 -40
  658. package/src/cli/scaffolding/TemplateGenerator.d.ts.map +0 -1
  659. package/src/cli/scaffolding/TemplateGenerator.js +0 -172
  660. package/src/cli/scaffolding/WorkflowGenerator.d.ts +0 -31
  661. package/src/cli/scaffolding/WorkflowGenerator.d.ts.map +0 -1
  662. package/src/cli/scaffolding/WorkflowGenerator.js +0 -193
  663. package/src/cli/scaffolding/index.d.ts +0 -37
  664. package/src/cli/scaffolding/index.d.ts.map +0 -1
  665. package/src/cli/scaffolding/index.js +0 -20
  666. package/src/cli/services/VersionChecker.d.ts +0 -82
  667. package/src/cli/services/VersionChecker.d.ts.map +0 -1
  668. package/src/cli/services/VersionChecker.js +0 -258
  669. package/src/cli/utils/DatabaseCliUtils.d.ts +0 -20
  670. package/src/cli/utils/DatabaseCliUtils.d.ts.map +0 -1
  671. package/src/cli/utils/DatabaseCliUtils.js +0 -54
  672. package/src/cli/utils/DistPackager.d.ts +0 -8
  673. package/src/cli/utils/DistPackager.d.ts.map +0 -1
  674. package/src/cli/utils/DistPackager.js +0 -102
  675. package/src/cli/utils/EnvFileLoader.d.ts +0 -21
  676. package/src/cli/utils/EnvFileLoader.d.ts.map +0 -1
  677. package/src/cli/utils/EnvFileLoader.js +0 -166
  678. package/src/cli/utils/spawn.d.ts +0 -11
  679. package/src/cli/utils/spawn.d.ts.map +0 -1
  680. package/src/cli/utils/spawn.js +0 -92
  681. package/src/cli/workers/QueueWorkRunner.d.ts +0 -23
  682. package/src/cli/workers/QueueWorkRunner.d.ts.map +0 -1
  683. package/src/cli/workers/QueueWorkRunner.js +0 -263
  684. package/src/collections/Collection.d.ts +0 -30
  685. package/src/collections/Collection.d.ts.map +0 -1
  686. package/src/collections/Collection.js +0 -181
  687. package/src/collections/index.d.ts +0 -3
  688. package/src/collections/index.d.ts.map +0 -1
  689. package/src/collections/index.js +0 -1
  690. package/src/common/AwsSigV4.d.ts +0 -41
  691. package/src/common/AwsSigV4.d.ts.map +0 -1
  692. package/src/common/AwsSigV4.js +0 -69
  693. package/src/common/ExternalServiceUtils.d.ts +0 -63
  694. package/src/common/ExternalServiceUtils.d.ts.map +0 -1
  695. package/src/common/ExternalServiceUtils.js +0 -116
  696. package/src/common/HealthRoutes.d.ts +0 -10
  697. package/src/common/HealthRoutes.d.ts.map +0 -1
  698. package/src/common/HealthRoutes.js +0 -114
  699. package/src/common/RemoteSignedJson.d.ts +0 -21
  700. package/src/common/RemoteSignedJson.d.ts.map +0 -1
  701. package/src/common/RemoteSignedJson.js +0 -86
  702. package/src/common/index.d.ts +0 -134
  703. package/src/common/index.d.ts.map +0 -1
  704. package/src/common/index.js +0 -328
  705. package/src/common/utility.d.ts +0 -38
  706. package/src/common/utility.d.ts.map +0 -1
  707. package/src/common/utility.js +0 -101
  708. package/src/config/FileLogWriter.d.ts +0 -23
  709. package/src/config/FileLogWriter.d.ts.map +0 -1
  710. package/src/config/FileLogWriter.js +0 -273
  711. package/src/config/SecretsManager.d.ts +0 -81
  712. package/src/config/SecretsManager.d.ts.map +0 -1
  713. package/src/config/SecretsManager.js +0 -355
  714. package/src/config/StartupConfigValidator.d.ts +0 -7
  715. package/src/config/StartupConfigValidator.d.ts.map +0 -1
  716. package/src/config/StartupConfigValidator.js +0 -179
  717. package/src/config/app.d.ts +0 -62
  718. package/src/config/app.d.ts.map +0 -1
  719. package/src/config/app.js +0 -184
  720. package/src/config/broadcast.d.ts +0 -22
  721. package/src/config/broadcast.d.ts.map +0 -1
  722. package/src/config/broadcast.js +0 -138
  723. package/src/config/cache.d.ts +0 -23
  724. package/src/config/cache.d.ts.map +0 -1
  725. package/src/config/cache.js +0 -125
  726. package/src/config/cloudflare.d.ts +0 -14
  727. package/src/config/cloudflare.d.ts.map +0 -1
  728. package/src/config/cloudflare.js +0 -38
  729. package/src/config/constants.d.ts +0 -238
  730. package/src/config/constants.d.ts.map +0 -1
  731. package/src/config/constants.js +0 -145
  732. package/src/config/database.d.ts +0 -41
  733. package/src/config/database.d.ts.map +0 -1
  734. package/src/config/database.js +0 -286
  735. package/src/config/env.d.ts +0 -128
  736. package/src/config/env.d.ts.map +0 -1
  737. package/src/config/env.js +0 -220
  738. package/src/config/features.d.ts +0 -27
  739. package/src/config/features.d.ts.map +0 -1
  740. package/src/config/features.js +0 -49
  741. package/src/config/index.d.ts +0 -241
  742. package/src/config/index.d.ts.map +0 -1
  743. package/src/config/index.js +0 -41
  744. package/src/config/logger.d.ts +0 -19
  745. package/src/config/logger.d.ts.map +0 -1
  746. package/src/config/logger.js +0 -338
  747. package/src/config/logging/HttpLogger.d.ts +0 -23
  748. package/src/config/logging/HttpLogger.d.ts.map +0 -1
  749. package/src/config/logging/HttpLogger.js +0 -93
  750. package/src/config/logging/KvLogger.d.ts +0 -22
  751. package/src/config/logging/KvLogger.d.ts.map +0 -1
  752. package/src/config/logging/KvLogger.js +0 -143
  753. package/src/config/logging/SlackLogger.d.ts +0 -23
  754. package/src/config/logging/SlackLogger.d.ts.map +0 -1
  755. package/src/config/logging/SlackLogger.js +0 -119
  756. package/src/config/mail.d.ts +0 -27
  757. package/src/config/mail.d.ts.map +0 -1
  758. package/src/config/mail.js +0 -154
  759. package/src/config/microservices.d.ts +0 -88
  760. package/src/config/microservices.d.ts.map +0 -1
  761. package/src/config/microservices.js +0 -90
  762. package/src/config/middleware.d.ts +0 -48
  763. package/src/config/middleware.d.ts.map +0 -1
  764. package/src/config/middleware.js +0 -205
  765. package/src/config/notification.d.ts +0 -24
  766. package/src/config/notification.d.ts.map +0 -1
  767. package/src/config/notification.js +0 -149
  768. package/src/config/queue.d.ts +0 -57
  769. package/src/config/queue.d.ts.map +0 -1
  770. package/src/config/queue.js +0 -144
  771. package/src/config/redis.d.ts +0 -17
  772. package/src/config/redis.d.ts.map +0 -1
  773. package/src/config/redis.js +0 -54
  774. package/src/config/security.d.ts +0 -123
  775. package/src/config/security.d.ts.map +0 -1
  776. package/src/config/security.js +0 -154
  777. package/src/config/startup.d.ts +0 -25
  778. package/src/config/startup.d.ts.map +0 -1
  779. package/src/config/startup.js +0 -16
  780. package/src/config/storage.d.ts +0 -45
  781. package/src/config/storage.d.ts.map +0 -1
  782. package/src/config/storage.js +0 -161
  783. package/src/config/type.d.ts +0 -492
  784. package/src/config/type.d.ts.map +0 -1
  785. package/src/config/type.js +0 -10
  786. package/src/config/workers.d.ts +0 -13
  787. package/src/config/workers.d.ts.map +0 -1
  788. package/src/config/workers.js +0 -173
  789. package/src/container/ServiceContainer.d.ts +0 -25
  790. package/src/container/ServiceContainer.d.ts.map +0 -1
  791. package/src/container/ServiceContainer.js +0 -75
  792. package/src/database/Paginator.d.ts +0 -37
  793. package/src/database/Paginator.d.ts.map +0 -1
  794. package/src/database/Paginator.js +0 -81
  795. package/src/database/migrations/index.d.ts +0 -2
  796. package/src/database/migrations/index.d.ts.map +0 -1
  797. package/src/database/migrations/index.js +0 -2
  798. package/src/events/EventDispatcher.d.ts +0 -16
  799. package/src/events/EventDispatcher.d.ts.map +0 -1
  800. package/src/events/EventDispatcher.js +0 -92
  801. package/src/events/index.d.ts +0 -3
  802. package/src/events/index.d.ts.map +0 -1
  803. package/src/events/index.js +0 -1
  804. package/src/exceptions/ZintrustError.d.ts +0 -98
  805. package/src/exceptions/ZintrustError.d.ts.map +0 -1
  806. package/src/exceptions/ZintrustError.js +0 -170
  807. package/src/functions/cloudflare.d.ts +0 -5
  808. package/src/functions/cloudflare.d.ts.map +0 -1
  809. package/src/functions/cloudflare.js +0 -23
  810. package/src/functions/deno.d.ts +0 -3
  811. package/src/functions/deno.d.ts.map +0 -1
  812. package/src/functions/deno.js +0 -20
  813. package/src/functions/lambda.d.ts +0 -2
  814. package/src/functions/lambda.d.ts.map +0 -1
  815. package/src/functions/lambda.js +0 -26
  816. package/src/health/RuntimeHealthProbes.d.ts +0 -13
  817. package/src/health/RuntimeHealthProbes.d.ts.map +0 -1
  818. package/src/health/RuntimeHealthProbes.js +0 -62
  819. package/src/health/StartupHealthChecks.d.ts +0 -26
  820. package/src/health/StartupHealthChecks.d.ts.map +0 -1
  821. package/src/health/StartupHealthChecks.js +0 -124
  822. package/src/http/Controller.d.ts +0 -20
  823. package/src/http/Controller.d.ts.map +0 -1
  824. package/src/http/Controller.js +0 -46
  825. package/src/http/ErrorResponse.d.ts +0 -28
  826. package/src/http/ErrorResponse.d.ts.map +0 -1
  827. package/src/http/ErrorResponse.js +0 -42
  828. package/src/http/FileUpload.d.ts +0 -68
  829. package/src/http/FileUpload.d.ts.map +0 -1
  830. package/src/http/FileUpload.js +0 -120
  831. package/src/http/Kernel.d.ts +0 -29
  832. package/src/http/Kernel.d.ts.map +0 -1
  833. package/src/http/Kernel.js +0 -254
  834. package/src/http/Request.d.ts +0 -64
  835. package/src/http/Request.d.ts.map +0 -1
  836. package/src/http/Request.js +0 -237
  837. package/src/http/RequestContext.d.ts +0 -26
  838. package/src/http/RequestContext.d.ts.map +0 -1
  839. package/src/http/RequestContext.js +0 -153
  840. package/src/http/Response.d.ts +0 -32
  841. package/src/http/Response.d.ts.map +0 -1
  842. package/src/http/Response.js +0 -70
  843. package/src/http/ValidationHelper.d.ts +0 -78
  844. package/src/http/ValidationHelper.d.ts.map +0 -1
  845. package/src/http/ValidationHelper.js +0 -121
  846. package/src/http/error-pages/ErrorPageRenderer.d.ts +0 -17
  847. package/src/http/error-pages/ErrorPageRenderer.d.ts.map +0 -1
  848. package/src/http/error-pages/ErrorPageRenderer.js +0 -89
  849. package/src/http/middleware/BodyParsingMiddleware.d.ts +0 -12
  850. package/src/http/middleware/BodyParsingMiddleware.d.ts.map +0 -1
  851. package/src/http/middleware/BodyParsingMiddleware.js +0 -251
  852. package/src/http/middleware/FileUploadMiddleware.d.ts +0 -12
  853. package/src/http/middleware/FileUploadMiddleware.d.ts.map +0 -1
  854. package/src/http/middleware/FileUploadMiddleware.js +0 -74
  855. package/src/http/parsers/BodyParsers.d.ts +0 -32
  856. package/src/http/parsers/BodyParsers.d.ts.map +0 -1
  857. package/src/http/parsers/BodyParsers.js +0 -159
  858. package/src/http/parsers/MultipartParser.d.ts +0 -33
  859. package/src/http/parsers/MultipartParser.d.ts.map +0 -1
  860. package/src/http/parsers/MultipartParser.js +0 -156
  861. package/src/http/parsers/MultipartParserRegistry.d.ts +0 -34
  862. package/src/http/parsers/MultipartParserRegistry.d.ts.map +0 -1
  863. package/src/http/parsers/MultipartParserRegistry.js +0 -20
  864. package/src/http/validated.d.ts +0 -12
  865. package/src/http/validated.d.ts.map +0 -1
  866. package/src/http/validated.js +0 -41
  867. package/src/index.d.ts +0 -258
  868. package/src/index.d.ts.map +0 -1
  869. package/src/index.js +0 -212
  870. package/src/lang/lang.d.ts +0 -23
  871. package/src/lang/lang.d.ts.map +0 -1
  872. package/src/lang/lang.js +0 -22
  873. package/src/microservices/MicroserviceBootstrap.d.ts +0 -75
  874. package/src/microservices/MicroserviceBootstrap.d.ts.map +0 -1
  875. package/src/microservices/MicroserviceBootstrap.js +0 -288
  876. package/src/microservices/MicroserviceGenerator.d.ts +0 -27
  877. package/src/microservices/MicroserviceGenerator.d.ts.map +0 -1
  878. package/src/microservices/MicroserviceGenerator.js +0 -436
  879. package/src/microservices/MicroserviceManager.d.ts +0 -68
  880. package/src/microservices/MicroserviceManager.d.ts.map +0 -1
  881. package/src/microservices/MicroserviceManager.js +0 -268
  882. package/src/microservices/PostgresAdapter.d.ts +0 -90
  883. package/src/microservices/PostgresAdapter.d.ts.map +0 -1
  884. package/src/microservices/PostgresAdapter.js +0 -306
  885. package/src/microservices/RequestTracingMiddleware.d.ts +0 -41
  886. package/src/microservices/RequestTracingMiddleware.d.ts.map +0 -1
  887. package/src/microservices/RequestTracingMiddleware.js +0 -125
  888. package/src/microservices/ServiceAuthMiddleware.d.ts +0 -58
  889. package/src/microservices/ServiceAuthMiddleware.d.ts.map +0 -1
  890. package/src/microservices/ServiceAuthMiddleware.js +0 -240
  891. package/src/microservices/ServiceBundler.d.ts +0 -45
  892. package/src/microservices/ServiceBundler.d.ts.map +0 -1
  893. package/src/microservices/ServiceBundler.js +0 -299
  894. package/src/microservices/ServiceHealthMonitor.d.ts +0 -96
  895. package/src/microservices/ServiceHealthMonitor.d.ts.map +0 -1
  896. package/src/microservices/ServiceHealthMonitor.js +0 -383
  897. package/src/middleware/AuthMiddleware.d.ts +0 -10
  898. package/src/middleware/AuthMiddleware.d.ts.map +0 -1
  899. package/src/middleware/AuthMiddleware.js +0 -16
  900. package/src/middleware/CsrfMiddleware.d.ts +0 -29
  901. package/src/middleware/CsrfMiddleware.d.ts.map +0 -1
  902. package/src/middleware/CsrfMiddleware.js +0 -132
  903. package/src/middleware/ErrorHandlerMiddleware.d.ts +0 -6
  904. package/src/middleware/ErrorHandlerMiddleware.d.ts.map +0 -1
  905. package/src/middleware/ErrorHandlerMiddleware.js +0 -41
  906. package/src/middleware/JwtAuthMiddleware.d.ts +0 -11
  907. package/src/middleware/JwtAuthMiddleware.d.ts.map +0 -1
  908. package/src/middleware/JwtAuthMiddleware.js +0 -73
  909. package/src/middleware/LoggingMiddleware.d.ts +0 -9
  910. package/src/middleware/LoggingMiddleware.d.ts.map +0 -1
  911. package/src/middleware/LoggingMiddleware.js +0 -41
  912. package/src/middleware/MiddlewareStack.d.ts +0 -27
  913. package/src/middleware/MiddlewareStack.d.ts.map +0 -1
  914. package/src/middleware/MiddlewareStack.js +0 -43
  915. package/src/middleware/RateLimiter.d.ts +0 -57
  916. package/src/middleware/RateLimiter.d.ts.map +0 -1
  917. package/src/middleware/RateLimiter.js +0 -270
  918. package/src/middleware/SanitizeBodyMiddleware.d.ts +0 -12
  919. package/src/middleware/SanitizeBodyMiddleware.d.ts.map +0 -1
  920. package/src/middleware/SanitizeBodyMiddleware.js +0 -31
  921. package/src/middleware/SecurityMiddleware.d.ts +0 -33
  922. package/src/middleware/SecurityMiddleware.d.ts.map +0 -1
  923. package/src/middleware/SecurityMiddleware.js +0 -106
  924. package/src/middleware/SessionMiddleware.d.ts +0 -8
  925. package/src/middleware/SessionMiddleware.d.ts.map +0 -1
  926. package/src/middleware/SessionMiddleware.js +0 -15
  927. package/src/middleware/ValidationMiddleware.d.ts +0 -25
  928. package/src/middleware/ValidationMiddleware.d.ts.map +0 -1
  929. package/src/middleware/ValidationMiddleware.js +0 -251
  930. package/src/middleware/index.d.ts +0 -11
  931. package/src/middleware/index.d.ts.map +0 -1
  932. package/src/middleware/index.js +0 -10
  933. package/src/migrations/MigrationDiscovery.d.ts +0 -5
  934. package/src/migrations/MigrationDiscovery.d.ts.map +0 -1
  935. package/src/migrations/MigrationDiscovery.js +0 -16
  936. package/src/migrations/MigrationLoader.d.ts +0 -5
  937. package/src/migrations/MigrationLoader.d.ts.map +0 -1
  938. package/src/migrations/MigrationLoader.js +0 -43
  939. package/src/migrations/MigrationLock.d.ts +0 -4
  940. package/src/migrations/MigrationLock.d.ts.map +0 -1
  941. package/src/migrations/MigrationLock.js +0 -33
  942. package/src/migrations/Migrator.d.ts +0 -23
  943. package/src/migrations/Migrator.d.ts.map +0 -1
  944. package/src/migrations/Migrator.js +0 -4
  945. package/src/migrations/MigratorFactory.d.ts +0 -25
  946. package/src/migrations/MigratorFactory.d.ts.map +0 -1
  947. package/src/migrations/MigratorFactory.js +0 -339
  948. package/src/migrations/enum/index.d.ts +0 -93
  949. package/src/migrations/enum/index.d.ts.map +0 -1
  950. package/src/migrations/enum/index.js +0 -92
  951. package/src/migrations/schema/Blueprint.d.ts +0 -5
  952. package/src/migrations/schema/Blueprint.d.ts.map +0 -1
  953. package/src/migrations/schema/Blueprint.js +0 -191
  954. package/src/migrations/schema/Schema.d.ts +0 -8
  955. package/src/migrations/schema/Schema.d.ts.map +0 -1
  956. package/src/migrations/schema/Schema.js +0 -142
  957. package/src/migrations/schema/SchemaCompiler.d.ts +0 -20
  958. package/src/migrations/schema/SchemaCompiler.d.ts.map +0 -1
  959. package/src/migrations/schema/SchemaCompiler.js +0 -270
  960. package/src/migrations/schema/index.d.ts +0 -5
  961. package/src/migrations/schema/index.d.ts.map +0 -1
  962. package/src/migrations/schema/index.js +0 -3
  963. package/src/migrations/schema/types.d.ts +0 -87
  964. package/src/migrations/schema/types.d.ts.map +0 -1
  965. package/src/migrations/schema/types.js +0 -1
  966. package/src/migrations/types.d.ts +0 -45
  967. package/src/migrations/types.d.ts.map +0 -1
  968. package/src/migrations/types.js +0 -1
  969. package/src/node-singletons/async_hooks.d.ts +0 -9
  970. package/src/node-singletons/async_hooks.d.ts.map +0 -1
  971. package/src/node-singletons/async_hooks.js +0 -8
  972. package/src/node-singletons/child-process.d.ts +0 -7
  973. package/src/node-singletons/child-process.d.ts.map +0 -1
  974. package/src/node-singletons/child-process.js +0 -6
  975. package/src/node-singletons/crypto.d.ts +0 -7
  976. package/src/node-singletons/crypto.d.ts.map +0 -1
  977. package/src/node-singletons/crypto.js +0 -6
  978. package/src/node-singletons/events.d.ts +0 -7
  979. package/src/node-singletons/events.d.ts.map +0 -1
  980. package/src/node-singletons/events.js +0 -6
  981. package/src/node-singletons/fs.d.ts +0 -12
  982. package/src/node-singletons/fs.d.ts.map +0 -1
  983. package/src/node-singletons/fs.js +0 -14
  984. package/src/node-singletons/http.d.ts +0 -8
  985. package/src/node-singletons/http.d.ts.map +0 -1
  986. package/src/node-singletons/http.js +0 -6
  987. package/src/node-singletons/index.d.ts +0 -34
  988. package/src/node-singletons/index.d.ts.map +0 -1
  989. package/src/node-singletons/index.js +0 -35
  990. package/src/node-singletons/net.d.ts +0 -9
  991. package/src/node-singletons/net.d.ts.map +0 -1
  992. package/src/node-singletons/net.js +0 -8
  993. package/src/node-singletons/os.d.ts +0 -18
  994. package/src/node-singletons/os.d.ts.map +0 -1
  995. package/src/node-singletons/os.js +0 -17
  996. package/src/node-singletons/path.d.ts +0 -9
  997. package/src/node-singletons/path.d.ts.map +0 -1
  998. package/src/node-singletons/path.js +0 -8
  999. package/src/node-singletons/perf-hooks.d.ts +0 -9
  1000. package/src/node-singletons/perf-hooks.d.ts.map +0 -1
  1001. package/src/node-singletons/perf-hooks.js +0 -8
  1002. package/src/node-singletons/process.d.ts +0 -23
  1003. package/src/node-singletons/process.d.ts.map +0 -1
  1004. package/src/node-singletons/process.js +0 -8
  1005. package/src/node-singletons/readline.d.ts +0 -10
  1006. package/src/node-singletons/readline.d.ts.map +0 -1
  1007. package/src/node-singletons/readline.js +0 -8
  1008. package/src/node-singletons/tls.d.ts +0 -9
  1009. package/src/node-singletons/tls.d.ts.map +0 -1
  1010. package/src/node-singletons/tls.js +0 -8
  1011. package/src/node-singletons/url.d.ts +0 -9
  1012. package/src/node-singletons/url.d.ts.map +0 -1
  1013. package/src/node-singletons/url.js +0 -8
  1014. package/src/node-singletons/util.d.ts +0 -6
  1015. package/src/node-singletons/util.d.ts.map +0 -1
  1016. package/src/node-singletons/util.js +0 -5
  1017. package/src/node.d.ts +0 -9
  1018. package/src/node.d.ts.map +0 -1
  1019. package/src/node.js +0 -13
  1020. package/src/observability/OpenTelemetry.d.ts +0 -62
  1021. package/src/observability/OpenTelemetry.d.ts.map +0 -1
  1022. package/src/observability/OpenTelemetry.js +0 -167
  1023. package/src/observability/PrometheusMetrics.d.ts +0 -25
  1024. package/src/observability/PrometheusMetrics.d.ts.map +0 -1
  1025. package/src/observability/PrometheusMetrics.js +0 -114
  1026. package/src/openapi/OpenApiGenerator.d.ts +0 -68
  1027. package/src/openapi/OpenApiGenerator.d.ts.map +0 -1
  1028. package/src/openapi/OpenApiGenerator.js +0 -287
  1029. package/src/orm/ConnectionManager.d.ts +0 -125
  1030. package/src/orm/ConnectionManager.d.ts.map +0 -1
  1031. package/src/orm/ConnectionManager.js +0 -571
  1032. package/src/orm/Database.d.ts +0 -35
  1033. package/src/orm/Database.d.ts.map +0 -1
  1034. package/src/orm/Database.js +0 -350
  1035. package/src/orm/DatabaseAdapter.d.ts +0 -117
  1036. package/src/orm/DatabaseAdapter.d.ts.map +0 -1
  1037. package/src/orm/DatabaseAdapter.js +0 -57
  1038. package/src/orm/DatabaseAdapterRegistry.d.ts +0 -14
  1039. package/src/orm/DatabaseAdapterRegistry.d.ts.map +0 -1
  1040. package/src/orm/DatabaseAdapterRegistry.js +0 -21
  1041. package/src/orm/DatabaseRuntimeRegistration.d.ts +0 -17
  1042. package/src/orm/DatabaseRuntimeRegistration.d.ts.map +0 -1
  1043. package/src/orm/DatabaseRuntimeRegistration.js +0 -73
  1044. package/src/orm/Model.d.ts +0 -135
  1045. package/src/orm/Model.d.ts.map +0 -1
  1046. package/src/orm/Model.js +0 -533
  1047. package/src/orm/QueryBuilder.d.ts +0 -98
  1048. package/src/orm/QueryBuilder.d.ts.map +0 -1
  1049. package/src/orm/QueryBuilder.js +0 -1057
  1050. package/src/orm/Relationships.d.ts +0 -119
  1051. package/src/orm/Relationships.d.ts.map +0 -1
  1052. package/src/orm/Relationships.js +0 -306
  1053. package/src/orm/Schema.d.ts +0 -123
  1054. package/src/orm/Schema.d.ts.map +0 -1
  1055. package/src/orm/Schema.js +0 -169
  1056. package/src/orm/SchemaCompiler.d.ts +0 -9
  1057. package/src/orm/SchemaCompiler.d.ts.map +0 -1
  1058. package/src/orm/SchemaCompiler.js +0 -145
  1059. package/src/orm/adapters/D1Adapter.d.ts +0 -15
  1060. package/src/orm/adapters/D1Adapter.d.ts.map +0 -1
  1061. package/src/orm/adapters/D1Adapter.js +0 -132
  1062. package/src/orm/adapters/D1RemoteAdapter.d.ts +0 -11
  1063. package/src/orm/adapters/D1RemoteAdapter.d.ts.map +0 -1
  1064. package/src/orm/adapters/D1RemoteAdapter.js +0 -163
  1065. package/src/orm/adapters/MySQLAdapter.d.ts +0 -16
  1066. package/src/orm/adapters/MySQLAdapter.d.ts.map +0 -1
  1067. package/src/orm/adapters/MySQLAdapter.js +0 -109
  1068. package/src/orm/adapters/PostgreSQLAdapter.d.ts +0 -16
  1069. package/src/orm/adapters/PostgreSQLAdapter.d.ts.map +0 -1
  1070. package/src/orm/adapters/PostgreSQLAdapter.js +0 -108
  1071. package/src/orm/adapters/SQLServerAdapter.d.ts +0 -16
  1072. package/src/orm/adapters/SQLServerAdapter.d.ts.map +0 -1
  1073. package/src/orm/adapters/SQLServerAdapter.js +0 -84
  1074. package/src/orm/adapters/SQLiteAdapter.d.ts +0 -11
  1075. package/src/orm/adapters/SQLiteAdapter.d.ts.map +0 -1
  1076. package/src/orm/adapters/SQLiteAdapter.js +0 -225
  1077. package/src/orm/maintenance/SqliteMaintenance.d.ts +0 -5
  1078. package/src/orm/maintenance/SqliteMaintenance.d.ts.map +0 -1
  1079. package/src/orm/maintenance/SqliteMaintenance.js +0 -14
  1080. package/src/orm/migrations/MigrationStore.d.ts +0 -38
  1081. package/src/orm/migrations/MigrationStore.d.ts.map +0 -1
  1082. package/src/orm/migrations/MigrationStore.js +0 -157
  1083. package/src/performance/Benchmark.d.ts +0 -87
  1084. package/src/performance/Benchmark.d.ts.map +0 -1
  1085. package/src/performance/Benchmark.js +0 -307
  1086. package/src/performance/CodeGenerationBenchmark.d.ts +0 -23
  1087. package/src/performance/CodeGenerationBenchmark.d.ts.map +0 -1
  1088. package/src/performance/CodeGenerationBenchmark.js +0 -249
  1089. package/src/performance/Optimizer.d.ts +0 -100
  1090. package/src/performance/Optimizer.d.ts.map +0 -1
  1091. package/src/performance/Optimizer.js +0 -627
  1092. package/src/performance/establish-baseline.d.ts +0 -9
  1093. package/src/performance/establish-baseline.d.ts.map +0 -1
  1094. package/src/performance/establish-baseline.js +0 -55
  1095. package/src/profiling/MemoryProfiler.d.ts +0 -32
  1096. package/src/profiling/MemoryProfiler.d.ts.map +0 -1
  1097. package/src/profiling/MemoryProfiler.js +0 -84
  1098. package/src/profiling/N1Detector.d.ts +0 -16
  1099. package/src/profiling/N1Detector.d.ts.map +0 -1
  1100. package/src/profiling/N1Detector.js +0 -120
  1101. package/src/profiling/QueryLogger.d.ts +0 -107
  1102. package/src/profiling/QueryLogger.d.ts.map +0 -1
  1103. package/src/profiling/QueryLogger.js +0 -148
  1104. package/src/profiling/RequestProfiler.d.ts +0 -30
  1105. package/src/profiling/RequestProfiler.d.ts.map +0 -1
  1106. package/src/profiling/RequestProfiler.js +0 -96
  1107. package/src/profiling/types.d.ts +0 -77
  1108. package/src/profiling/types.d.ts.map +0 -1
  1109. package/src/profiling/types.js +0 -5
  1110. package/src/routes/CoreRoutes.d.ts +0 -12
  1111. package/src/routes/CoreRoutes.d.ts.map +0 -1
  1112. package/src/routes/CoreRoutes.js +0 -39
  1113. package/src/routes/RouteRegistry.d.ts +0 -39
  1114. package/src/routes/RouteRegistry.d.ts.map +0 -1
  1115. package/src/routes/RouteRegistry.js +0 -44
  1116. package/src/routes/Router.d.ts +0 -73
  1117. package/src/routes/Router.d.ts.map +0 -1
  1118. package/src/routes/Router.js +0 -250
  1119. package/src/routes/common.d.ts +0 -15
  1120. package/src/routes/common.d.ts.map +0 -1
  1121. package/src/routes/common.js +0 -47
  1122. package/src/routes/doc.d.ts +0 -27
  1123. package/src/routes/doc.d.ts.map +0 -1
  1124. package/src/routes/doc.js +0 -110
  1125. package/src/routes/error.d.ts +0 -21
  1126. package/src/routes/error.d.ts.map +0 -1
  1127. package/src/routes/error.js +0 -127
  1128. package/src/routes/errorPages.d.ts +0 -14
  1129. package/src/routes/errorPages.d.ts.map +0 -1
  1130. package/src/routes/errorPages.js +0 -103
  1131. package/src/routes/health.d.ts +0 -6
  1132. package/src/routes/health.d.ts.map +0 -1
  1133. package/src/routes/health.js +0 -5
  1134. package/src/routes/metrics.d.ts +0 -9
  1135. package/src/routes/metrics.d.ts.map +0 -1
  1136. package/src/routes/metrics.js +0 -20
  1137. package/src/routes/openapi.d.ts +0 -9
  1138. package/src/routes/openapi.d.ts.map +0 -1
  1139. package/src/routes/openapi.js +0 -76
  1140. package/src/routes/publicRoot.d.ts +0 -27
  1141. package/src/routes/publicRoot.d.ts.map +0 -1
  1142. package/src/routes/publicRoot.js +0 -112
  1143. package/src/runtime/PluginAutoImports.d.ts +0 -21
  1144. package/src/runtime/PluginAutoImports.d.ts.map +0 -1
  1145. package/src/runtime/PluginAutoImports.js +0 -53
  1146. package/src/runtime/PluginManager.d.ts +0 -28
  1147. package/src/runtime/PluginManager.d.ts.map +0 -1
  1148. package/src/runtime/PluginManager.js +0 -373
  1149. package/src/runtime/PluginRegistry.d.ts +0 -27
  1150. package/src/runtime/PluginRegistry.d.ts.map +0 -1
  1151. package/src/runtime/PluginRegistry.js +0 -183
  1152. package/src/runtime/RuntimeAdapter.d.ts +0 -126
  1153. package/src/runtime/RuntimeAdapter.d.ts.map +0 -1
  1154. package/src/runtime/RuntimeAdapter.js +0 -146
  1155. package/src/runtime/StartupConfigFileRegistry.d.ts +0 -22
  1156. package/src/runtime/StartupConfigFileRegistry.d.ts.map +0 -1
  1157. package/src/runtime/StartupConfigFileRegistry.js +0 -44
  1158. package/src/runtime/adapters/CloudflareAdapter.d.ts +0 -43
  1159. package/src/runtime/adapters/CloudflareAdapter.d.ts.map +0 -1
  1160. package/src/runtime/adapters/CloudflareAdapter.js +0 -175
  1161. package/src/runtime/adapters/DenoAdapter.d.ts +0 -30
  1162. package/src/runtime/adapters/DenoAdapter.d.ts.map +0 -1
  1163. package/src/runtime/adapters/DenoAdapter.js +0 -193
  1164. package/src/runtime/adapters/FargateAdapter.d.ts +0 -40
  1165. package/src/runtime/adapters/FargateAdapter.d.ts.map +0 -1
  1166. package/src/runtime/adapters/FargateAdapter.js +0 -157
  1167. package/src/runtime/adapters/LambdaAdapter.d.ts +0 -13
  1168. package/src/runtime/adapters/LambdaAdapter.d.ts.map +0 -1
  1169. package/src/runtime/adapters/LambdaAdapter.js +0 -306
  1170. package/src/runtime/adapters/NodeServerAdapter.d.ts +0 -16
  1171. package/src/runtime/adapters/NodeServerAdapter.d.ts.map +0 -1
  1172. package/src/runtime/adapters/NodeServerAdapter.js +0 -200
  1173. package/src/runtime/getKernel.d.ts +0 -9
  1174. package/src/runtime/getKernel.d.ts.map +0 -1
  1175. package/src/runtime/getKernel.js +0 -27
  1176. package/src/runtime/useFileLoader.d.ts +0 -26
  1177. package/src/runtime/useFileLoader.d.ts.map +0 -1
  1178. package/src/runtime/useFileLoader.js +0 -188
  1179. package/src/scheduler/ScheduleRunner.d.ts +0 -18
  1180. package/src/scheduler/ScheduleRunner.d.ts.map +0 -1
  1181. package/src/scheduler/ScheduleRunner.js +0 -155
  1182. package/src/scheduler/index.d.ts +0 -3
  1183. package/src/scheduler/index.d.ts.map +0 -1
  1184. package/src/scheduler/index.js +0 -1
  1185. package/src/scheduler/types.d.ts +0 -16
  1186. package/src/scheduler/types.d.ts.map +0 -1
  1187. package/src/scheduler/types.js +0 -4
  1188. package/src/schedules/index.d.ts +0 -2
  1189. package/src/schedules/index.d.ts.map +0 -1
  1190. package/src/schedules/index.js +0 -1
  1191. package/src/schedules/log-cleanup.d.ts +0 -4
  1192. package/src/schedules/log-cleanup.d.ts.map +0 -1
  1193. package/src/schedules/log-cleanup.js +0 -18
  1194. package/src/scripts/GenerateEnvArtifacts.d.ts +0 -13
  1195. package/src/scripts/GenerateEnvArtifacts.d.ts.map +0 -1
  1196. package/src/scripts/GenerateEnvArtifacts.js +0 -171
  1197. package/src/scripts/TemplateImportsCheck.d.ts +0 -2
  1198. package/src/scripts/TemplateImportsCheck.d.ts.map +0 -1
  1199. package/src/scripts/TemplateImportsCheck.js +0 -151
  1200. package/src/scripts/TemplateSync.d.ts +0 -7
  1201. package/src/scripts/TemplateSync.d.ts.map +0 -1
  1202. package/src/scripts/TemplateSync.js +0 -399
  1203. package/src/security/CsrfTokenManager.d.ts +0 -28
  1204. package/src/security/CsrfTokenManager.d.ts.map +0 -1
  1205. package/src/security/CsrfTokenManager.js +0 -78
  1206. package/src/security/EncryptedEnvelope.d.ts +0 -77
  1207. package/src/security/EncryptedEnvelope.d.ts.map +0 -1
  1208. package/src/security/EncryptedEnvelope.js +0 -256
  1209. package/src/security/Encryptor.d.ts +0 -15
  1210. package/src/security/Encryptor.d.ts.map +0 -1
  1211. package/src/security/Encryptor.js +0 -199
  1212. package/src/security/Hash.d.ts +0 -14
  1213. package/src/security/Hash.d.ts.map +0 -1
  1214. package/src/security/Hash.js +0 -81
  1215. package/src/security/JwtManager.d.ts +0 -42
  1216. package/src/security/JwtManager.d.ts.map +0 -1
  1217. package/src/security/JwtManager.js +0 -262
  1218. package/src/security/PasswordResetTokenBroker.d.ts +0 -39
  1219. package/src/security/PasswordResetTokenBroker.d.ts.map +0 -1
  1220. package/src/security/PasswordResetTokenBroker.js +0 -131
  1221. package/src/security/Sanitizer.d.ts +0 -76
  1222. package/src/security/Sanitizer.d.ts.map +0 -1
  1223. package/src/security/Sanitizer.js +0 -412
  1224. package/src/security/SignedRequest.d.ts +0 -53
  1225. package/src/security/SignedRequest.d.ts.map +0 -1
  1226. package/src/security/SignedRequest.js +0 -172
  1227. package/src/security/StartupSecretValidation.d.ts +0 -20
  1228. package/src/security/StartupSecretValidation.d.ts.map +0 -1
  1229. package/src/security/StartupSecretValidation.js +0 -139
  1230. package/src/security/TokenRevocation.d.ts +0 -7
  1231. package/src/security/TokenRevocation.d.ts.map +0 -1
  1232. package/src/security/TokenRevocation.js +0 -57
  1233. package/src/security/UrlValidator.d.ts +0 -20
  1234. package/src/security/UrlValidator.d.ts.map +0 -1
  1235. package/src/security/UrlValidator.js +0 -41
  1236. package/src/security/Xss.d.ts +0 -14
  1237. package/src/security/Xss.d.ts.map +0 -1
  1238. package/src/security/Xss.js +0 -57
  1239. package/src/security/XssProtection.d.ts +0 -24
  1240. package/src/security/XssProtection.d.ts.map +0 -1
  1241. package/src/security/XssProtection.js +0 -324
  1242. package/src/seeders/SeederDiscovery.d.ts +0 -5
  1243. package/src/seeders/SeederDiscovery.d.ts.map +0 -1
  1244. package/src/seeders/SeederDiscovery.js +0 -21
  1245. package/src/seeders/SeederLoader.d.ts +0 -5
  1246. package/src/seeders/SeederLoader.d.ts.map +0 -1
  1247. package/src/seeders/SeederLoader.js +0 -60
  1248. package/src/seeders/types.d.ts +0 -18
  1249. package/src/seeders/types.d.ts.map +0 -1
  1250. package/src/seeders/types.js +0 -1
  1251. package/src/session/SessionManager.d.ts +0 -39
  1252. package/src/session/SessionManager.d.ts.map +0 -1
  1253. package/src/session/SessionManager.js +0 -149
  1254. package/src/session/index.d.ts +0 -3
  1255. package/src/session/index.d.ts.map +0 -1
  1256. package/src/session/index.js +0 -1
  1257. package/src/start.d.ts +0 -21
  1258. package/src/start.d.ts.map +0 -1
  1259. package/src/start.js +0 -59
  1260. package/src/templates/TemplateRegistry.d.ts +0 -40
  1261. package/src/templates/TemplateRegistry.d.ts.map +0 -1
  1262. package/src/templates/TemplateRegistry.js +0 -78
  1263. package/src/testing/TestEnvironment.d.ts +0 -40
  1264. package/src/testing/TestEnvironment.d.ts.map +0 -1
  1265. package/src/testing/TestEnvironment.js +0 -141
  1266. package/src/testing/TestHttp.d.ts +0 -29
  1267. package/src/testing/TestHttp.d.ts.map +0 -1
  1268. package/src/testing/TestHttp.js +0 -96
  1269. package/src/testing/index.d.ts +0 -5
  1270. package/src/testing/index.d.ts.map +0 -1
  1271. package/src/testing/index.js +0 -2
  1272. package/src/time/DateTime.d.ts +0 -181
  1273. package/src/time/DateTime.d.ts.map +0 -1
  1274. package/src/time/DateTime.js +0 -300
  1275. package/src/time/index.d.ts +0 -7
  1276. package/src/time/index.d.ts.map +0 -1
  1277. package/src/time/index.js +0 -5
  1278. package/src/toolkit/Secrets/EnvFile.d.ts +0 -15
  1279. package/src/toolkit/Secrets/EnvFile.d.ts.map +0 -1
  1280. package/src/toolkit/Secrets/EnvFile.js +0 -63
  1281. package/src/toolkit/Secrets/Manifest.d.ts +0 -24
  1282. package/src/toolkit/Secrets/Manifest.d.ts.map +0 -1
  1283. package/src/toolkit/Secrets/Manifest.js +0 -71
  1284. package/src/toolkit/Secrets/index.d.ts +0 -42
  1285. package/src/toolkit/Secrets/index.d.ts.map +0 -1
  1286. package/src/toolkit/Secrets/index.js +0 -123
  1287. package/src/toolkit/Secrets/providers/AwsSecretsManager.d.ts +0 -14
  1288. package/src/toolkit/Secrets/providers/AwsSecretsManager.d.ts.map +0 -1
  1289. package/src/toolkit/Secrets/providers/AwsSecretsManager.js +0 -132
  1290. package/src/toolkit/Secrets/providers/CloudflareKv.d.ts +0 -9
  1291. package/src/toolkit/Secrets/providers/CloudflareKv.d.ts.map +0 -1
  1292. package/src/toolkit/Secrets/providers/CloudflareKv.js +0 -74
  1293. package/src/tools/broadcast/Broadcast.d.ts +0 -17
  1294. package/src/tools/broadcast/Broadcast.d.ts.map +0 -1
  1295. package/src/tools/broadcast/Broadcast.js +0 -84
  1296. package/src/tools/broadcast/BroadcastRegistry.d.ts +0 -15
  1297. package/src/tools/broadcast/BroadcastRegistry.d.ts.map +0 -1
  1298. package/src/tools/broadcast/BroadcastRegistry.js +0 -29
  1299. package/src/tools/broadcast/BroadcastRuntimeRegistration.d.ts +0 -11
  1300. package/src/tools/broadcast/BroadcastRuntimeRegistration.d.ts.map +0 -1
  1301. package/src/tools/broadcast/BroadcastRuntimeRegistration.js +0 -23
  1302. package/src/tools/broadcast/drivers/BaseDriver.d.ts +0 -5
  1303. package/src/tools/broadcast/drivers/BaseDriver.d.ts.map +0 -1
  1304. package/src/tools/broadcast/drivers/BaseDriver.js +0 -8
  1305. package/src/tools/broadcast/drivers/InMemory.d.ts +0 -18
  1306. package/src/tools/broadcast/drivers/InMemory.d.ts.map +0 -1
  1307. package/src/tools/broadcast/drivers/InMemory.js +0 -16
  1308. package/src/tools/broadcast/drivers/Pusher.d.ts +0 -8
  1309. package/src/tools/broadcast/drivers/Pusher.d.ts.map +0 -1
  1310. package/src/tools/broadcast/drivers/Pusher.js +0 -75
  1311. package/src/tools/broadcast/drivers/Redis.d.ts +0 -19
  1312. package/src/tools/broadcast/drivers/Redis.d.ts.map +0 -1
  1313. package/src/tools/broadcast/drivers/Redis.js +0 -25
  1314. package/src/tools/broadcast/drivers/RedisHttps.d.ts +0 -14
  1315. package/src/tools/broadcast/drivers/RedisHttps.d.ts.map +0 -1
  1316. package/src/tools/broadcast/drivers/RedisHttps.js +0 -50
  1317. package/src/tools/broadcast/index.d.ts +0 -9
  1318. package/src/tools/broadcast/index.d.ts.map +0 -1
  1319. package/src/tools/broadcast/index.js +0 -8
  1320. package/src/tools/http/Http.d.ts +0 -49
  1321. package/src/tools/http/Http.d.ts.map +0 -1
  1322. package/src/tools/http/Http.js +0 -173
  1323. package/src/tools/http/HttpResponse.d.ts +0 -32
  1324. package/src/tools/http/HttpResponse.d.ts.map +0 -1
  1325. package/src/tools/http/HttpResponse.js +0 -80
  1326. package/src/tools/http/index.d.ts +0 -15
  1327. package/src/tools/http/index.d.ts.map +0 -1
  1328. package/src/tools/http/index.js +0 -9
  1329. package/src/tools/mail/Mail.d.ts +0 -2
  1330. package/src/tools/mail/Mail.d.ts.map +0 -1
  1331. package/src/tools/mail/Mail.js +0 -1
  1332. package/src/tools/mail/MailDriverRegistry.d.ts +0 -18
  1333. package/src/tools/mail/MailDriverRegistry.d.ts.map +0 -1
  1334. package/src/tools/mail/MailDriverRegistry.js +0 -23
  1335. package/src/tools/mail/attachments.d.ts +0 -23
  1336. package/src/tools/mail/attachments.d.ts.map +0 -1
  1337. package/src/tools/mail/attachments.js +0 -26
  1338. package/src/tools/mail/drivers/BaseDriver.d.ts +0 -5
  1339. package/src/tools/mail/drivers/BaseDriver.d.ts.map +0 -1
  1340. package/src/tools/mail/drivers/BaseDriver.js +0 -8
  1341. package/src/tools/mail/drivers/Mailgun.d.ts +0 -31
  1342. package/src/tools/mail/drivers/Mailgun.d.ts.map +0 -1
  1343. package/src/tools/mail/drivers/Mailgun.js +0 -81
  1344. package/src/tools/mail/drivers/SendGrid.d.ts +0 -29
  1345. package/src/tools/mail/drivers/SendGrid.d.ts.map +0 -1
  1346. package/src/tools/mail/drivers/SendGrid.js +0 -58
  1347. package/src/tools/mail/drivers/Ses.d.ts +0 -24
  1348. package/src/tools/mail/drivers/Ses.d.ts.map +0 -1
  1349. package/src/tools/mail/drivers/Ses.js +0 -117
  1350. package/src/tools/mail/drivers/Smtp.d.ts +0 -38
  1351. package/src/tools/mail/drivers/Smtp.d.ts.map +0 -1
  1352. package/src/tools/mail/drivers/Smtp.js +0 -349
  1353. package/src/tools/mail/index.d.ts +0 -40
  1354. package/src/tools/mail/index.d.ts.map +0 -1
  1355. package/src/tools/mail/index.js +0 -129
  1356. package/src/tools/mail/template-loader.d.ts +0 -10
  1357. package/src/tools/mail/template-loader.d.ts.map +0 -1
  1358. package/src/tools/mail/template-loader.js +0 -101
  1359. package/src/tools/mail/template-utils.d.ts +0 -10
  1360. package/src/tools/mail/template-utils.d.ts.map +0 -1
  1361. package/src/tools/mail/template-utils.js +0 -16
  1362. package/src/tools/mail/templates/index.d.ts +0 -57
  1363. package/src/tools/mail/templates/index.d.ts.map +0 -1
  1364. package/src/tools/mail/templates/index.js +0 -104
  1365. package/src/tools/mail/testing.d.ts +0 -41
  1366. package/src/tools/mail/testing.d.ts.map +0 -1
  1367. package/src/tools/mail/testing.js +0 -34
  1368. package/src/tools/notification/Driver.d.ts +0 -11
  1369. package/src/tools/notification/Driver.d.ts.map +0 -1
  1370. package/src/tools/notification/Driver.js +0 -1
  1371. package/src/tools/notification/Notification.d.ts +0 -24
  1372. package/src/tools/notification/Notification.d.ts.map +0 -1
  1373. package/src/tools/notification/Notification.js +0 -35
  1374. package/src/tools/notification/NotificationChannelRegistry.d.ts +0 -15
  1375. package/src/tools/notification/NotificationChannelRegistry.d.ts.map +0 -1
  1376. package/src/tools/notification/NotificationChannelRegistry.js +0 -36
  1377. package/src/tools/notification/NotificationRuntimeRegistration.d.ts +0 -13
  1378. package/src/tools/notification/NotificationRuntimeRegistration.d.ts.map +0 -1
  1379. package/src/tools/notification/NotificationRuntimeRegistration.js +0 -25
  1380. package/src/tools/notification/Registry.d.ts +0 -10
  1381. package/src/tools/notification/Registry.d.ts.map +0 -1
  1382. package/src/tools/notification/Registry.js +0 -26
  1383. package/src/tools/notification/Service.d.ts +0 -7
  1384. package/src/tools/notification/Service.d.ts.map +0 -1
  1385. package/src/tools/notification/Service.js +0 -91
  1386. package/src/tools/notification/config.d.ts +0 -5
  1387. package/src/tools/notification/config.d.ts.map +0 -1
  1388. package/src/tools/notification/config.js +0 -5
  1389. package/src/tools/notification/drivers/BaseDriver.d.ts +0 -5
  1390. package/src/tools/notification/drivers/BaseDriver.d.ts.map +0 -1
  1391. package/src/tools/notification/drivers/BaseDriver.js +0 -8
  1392. package/src/tools/notification/drivers/Console.d.ts +0 -7
  1393. package/src/tools/notification/drivers/Console.d.ts.map +0 -1
  1394. package/src/tools/notification/drivers/Console.js +0 -13
  1395. package/src/tools/notification/drivers/Slack.d.ts +0 -16
  1396. package/src/tools/notification/drivers/Slack.d.ts.map +0 -1
  1397. package/src/tools/notification/drivers/Slack.js +0 -24
  1398. package/src/tools/notification/drivers/SlackNotification.d.ts +0 -8
  1399. package/src/tools/notification/drivers/SlackNotification.d.ts.map +0 -1
  1400. package/src/tools/notification/drivers/SlackNotification.js +0 -13
  1401. package/src/tools/notification/drivers/Termii.d.ts +0 -10
  1402. package/src/tools/notification/drivers/Termii.d.ts.map +0 -1
  1403. package/src/tools/notification/drivers/Termii.js +0 -36
  1404. package/src/tools/notification/drivers/Twilio.d.ts +0 -21
  1405. package/src/tools/notification/drivers/Twilio.d.ts.map +0 -1
  1406. package/src/tools/notification/drivers/Twilio.js +0 -48
  1407. package/src/tools/notification/drivers/TwilioNotification.d.ts +0 -8
  1408. package/src/tools/notification/drivers/TwilioNotification.d.ts.map +0 -1
  1409. package/src/tools/notification/drivers/TwilioNotification.js +0 -13
  1410. package/src/tools/notification/templates/markdown/index.d.ts +0 -15
  1411. package/src/tools/notification/templates/markdown/index.d.ts.map +0 -1
  1412. package/src/tools/notification/templates/markdown/index.js +0 -38
  1413. package/src/tools/notification/templates/markdown/registry.d.ts +0 -15
  1414. package/src/tools/notification/templates/markdown/registry.d.ts.map +0 -1
  1415. package/src/tools/notification/templates/markdown/registry.js +0 -36
  1416. package/src/tools/notification/testing.d.ts +0 -19
  1417. package/src/tools/notification/testing.d.ts.map +0 -1
  1418. package/src/tools/notification/testing.js +0 -35
  1419. package/src/tools/notification/testingHelpers.d.ts +0 -12
  1420. package/src/tools/notification/testingHelpers.d.ts.map +0 -1
  1421. package/src/tools/notification/testingHelpers.js +0 -32
  1422. package/src/tools/queue/AdvancedQueue.d.ts +0 -19
  1423. package/src/tools/queue/AdvancedQueue.d.ts.map +0 -1
  1424. package/src/tools/queue/AdvancedQueue.js +0 -352
  1425. package/src/tools/queue/DeduplicationBuilder.d.ts +0 -20
  1426. package/src/tools/queue/DeduplicationBuilder.d.ts.map +0 -1
  1427. package/src/tools/queue/DeduplicationBuilder.js +0 -77
  1428. package/src/tools/queue/LockProvider.d.ts +0 -22
  1429. package/src/tools/queue/LockProvider.d.ts.map +0 -1
  1430. package/src/tools/queue/LockProvider.js +0 -282
  1431. package/src/tools/queue/Queue.d.ts +0 -24
  1432. package/src/tools/queue/Queue.d.ts.map +0 -1
  1433. package/src/tools/queue/Queue.js +0 -43
  1434. package/src/tools/queue/QueueExtensions.d.ts +0 -46
  1435. package/src/tools/queue/QueueExtensions.d.ts.map +0 -1
  1436. package/src/tools/queue/QueueExtensions.js +0 -129
  1437. package/src/tools/queue/QueueRuntimeRegistration.d.ts +0 -11
  1438. package/src/tools/queue/QueueRuntimeRegistration.d.ts.map +0 -1
  1439. package/src/tools/queue/QueueRuntimeRegistration.js +0 -25
  1440. package/src/tools/queue/drivers/Database.d.ts +0 -23
  1441. package/src/tools/queue/drivers/Database.d.ts.map +0 -1
  1442. package/src/tools/queue/drivers/Database.js +0 -123
  1443. package/src/tools/queue/drivers/InMemory.d.ts +0 -10
  1444. package/src/tools/queue/drivers/InMemory.d.ts.map +0 -1
  1445. package/src/tools/queue/drivers/InMemory.js +0 -55
  1446. package/src/tools/queue/drivers/Redis.d.ts +0 -10
  1447. package/src/tools/queue/drivers/Redis.d.ts.map +0 -1
  1448. package/src/tools/queue/drivers/Redis.js +0 -26
  1449. package/src/tools/queue/index.d.ts +0 -9
  1450. package/src/tools/queue/index.d.ts.map +0 -1
  1451. package/src/tools/queue/index.js +0 -7
  1452. package/src/tools/redis/RedisKeyManager.d.ts +0 -64
  1453. package/src/tools/redis/RedisKeyManager.d.ts.map +0 -1
  1454. package/src/tools/redis/RedisKeyManager.js +0 -124
  1455. package/src/tools/storage/LocalSignedUrl.d.ts +0 -12
  1456. package/src/tools/storage/LocalSignedUrl.d.ts.map +0 -1
  1457. package/src/tools/storage/LocalSignedUrl.js +0 -108
  1458. package/src/tools/storage/StorageDiskRegistry.d.ts +0 -14
  1459. package/src/tools/storage/StorageDiskRegistry.d.ts.map +0 -1
  1460. package/src/tools/storage/StorageDiskRegistry.js +0 -36
  1461. package/src/tools/storage/StorageDriverRegistry.d.ts +0 -16
  1462. package/src/tools/storage/StorageDriverRegistry.d.ts.map +0 -1
  1463. package/src/tools/storage/StorageDriverRegistry.js +0 -20
  1464. package/src/tools/storage/StorageRuntimeRegistration.d.ts +0 -10
  1465. package/src/tools/storage/StorageRuntimeRegistration.d.ts.map +0 -1
  1466. package/src/tools/storage/StorageRuntimeRegistration.js +0 -21
  1467. package/src/tools/storage/drivers/Gcs.d.ts +0 -20
  1468. package/src/tools/storage/drivers/Gcs.d.ts.map +0 -1
  1469. package/src/tools/storage/drivers/Gcs.js +0 -152
  1470. package/src/tools/storage/drivers/Local.d.ts +0 -18
  1471. package/src/tools/storage/drivers/Local.d.ts.map +0 -1
  1472. package/src/tools/storage/drivers/Local.js +0 -89
  1473. package/src/tools/storage/drivers/R2.d.ts +0 -20
  1474. package/src/tools/storage/drivers/R2.d.ts.map +0 -1
  1475. package/src/tools/storage/drivers/R2.js +0 -73
  1476. package/src/tools/storage/drivers/S3.d.ts +0 -26
  1477. package/src/tools/storage/drivers/S3.d.ts.map +0 -1
  1478. package/src/tools/storage/drivers/S3.js +0 -259
  1479. package/src/tools/storage/index.d.ts +0 -21
  1480. package/src/tools/storage/index.d.ts.map +0 -1
  1481. package/src/tools/storage/index.js +0 -150
  1482. package/src/tools/storage/testing.d.ts +0 -23
  1483. package/src/tools/storage/testing.d.ts.map +0 -1
  1484. package/src/tools/storage/testing.js +0 -53
  1485. package/src/tools/templates/MarkdownRenderer.d.ts +0 -14
  1486. package/src/tools/templates/MarkdownRenderer.d.ts.map +0 -1
  1487. package/src/tools/templates/MarkdownRenderer.js +0 -300
  1488. package/src/tools/templates/index.d.ts +0 -5
  1489. package/src/tools/templates/index.d.ts.map +0 -1
  1490. package/src/tools/templates/index.js +0 -4
  1491. package/src/types/Queue.d.ts +0 -62
  1492. package/src/types/Queue.d.ts.map +0 -1
  1493. package/src/types/Queue.js +0 -5
  1494. package/src/validation/ValidationError.d.ts +0 -42
  1495. package/src/validation/ValidationError.d.ts.map +0 -1
  1496. package/src/validation/ValidationError.js +0 -55
  1497. package/src/validation/Validator.d.ts +0 -93
  1498. package/src/validation/Validator.d.ts.map +0 -1
  1499. package/src/validation/Validator.js +0 -492
@@ -1,286 +0,0 @@
1
- /**
2
- * Database Configuration
3
- * Database connections and pooling settings
4
- * Sealed namespace for immutability
5
- */
6
- import { Env } from './env.js';
7
- import { ErrorFactory } from '../exceptions/ZintrustError.js';
8
- import { StartupConfigFile, StartupConfigFileRegistry } from '../runtime/StartupConfigFileRegistry.js';
9
- const isNodeProcess = () => {
10
- return typeof process !== 'undefined' && typeof process.cwd === 'function';
11
- };
12
- const readEnvString = (key, fallback = '') => {
13
- const anyEnv = Env;
14
- const fromEnv = typeof anyEnv.get === 'function' ? anyEnv.get(key, fallback) : fallback;
15
- if (typeof fromEnv === 'string' && fromEnv.trim() !== '')
16
- return fromEnv;
17
- if (typeof process !== 'undefined') {
18
- const raw = process.env?.[key];
19
- if (typeof raw === 'string' && raw.trim() !== '')
20
- return raw;
21
- }
22
- return fromEnv ?? '';
23
- };
24
- const isExplicitEnvValue = (key) => {
25
- if (!isNodeProcess())
26
- return false;
27
- const direct = Env[key];
28
- if (typeof direct === 'string' && direct.trim() !== '')
29
- return true;
30
- const raw = process.env[key] ?? Env.get(key, '');
31
- return typeof raw === 'string' && raw.trim() !== '';
32
- };
33
- const looksLikeSqliteFilePath = (value) => {
34
- const v = String(value ?? '').trim();
35
- if (v === '')
36
- return false;
37
- if (v === ':memory:')
38
- return true;
39
- // Heuristic: if it's a path, has an extension, or is explicitly relative.
40
- if (v.includes('/') || v.includes('\\'))
41
- return true;
42
- if (v.startsWith('.'))
43
- return true;
44
- if (v.startsWith('~'))
45
- return true;
46
- if (v.endsWith('.sqlite') || v.endsWith('.db'))
47
- return true;
48
- // Otherwise it's likely a placeholder name (e.g. "zintrust"), not a file path.
49
- return false;
50
- };
51
- const toSafeDbBasename = (raw) => {
52
- const trimmed = raw.trim();
53
- if (trimmed === '')
54
- return 'zintrust';
55
- // Conservative filename allowlist: letters/numbers/_/-, collapse everything else.
56
- // Avoid regexes that can exhibit catastrophic backtracking; do deterministic collapsing/trimming.
57
- const collapsed = trimmed.toLowerCase().replaceAll(/[^a-z0-9_-]+/g, '-');
58
- // Collapse consecutive hyphens deterministically without regex backtracking.
59
- let normalized = '';
60
- let prevHyphen = false;
61
- for (const element of collapsed) {
62
- const ch = element;
63
- if (ch === '-') {
64
- if (!prevHyphen) {
65
- normalized += ch;
66
- prevHyphen = true;
67
- }
68
- }
69
- else {
70
- normalized += ch;
71
- prevHyphen = false;
72
- }
73
- }
74
- // Trim leading/trailing hyphens deterministically without regex.
75
- let start = 0;
76
- let end = normalized.length;
77
- while (start < end && normalized.charAt(start) === '-')
78
- start++;
79
- while (end > start && normalized.charAt(end - 1) === '-')
80
- end--;
81
- const result = normalized.slice(start, end);
82
- return result === '' ? 'zintrust' : result;
83
- };
84
- const resolveSqliteDefaultBasename = () => {
85
- const service = typeof Env.SERVICE_NAME === 'string' && Env.SERVICE_NAME.trim() !== ''
86
- ? Env.SERVICE_NAME
87
- : readEnvString('SERVICE_NAME', '');
88
- if (service.trim() !== '')
89
- return toSafeDbBasename(service);
90
- const app = typeof Env.APP_NAME === 'string' && Env.APP_NAME.trim() !== ''
91
- ? Env.APP_NAME
92
- : readEnvString('APP_NAME', '');
93
- if (app.trim() !== '')
94
- return toSafeDbBasename(app);
95
- return 'zintrust';
96
- };
97
- const resolveDefaultSqliteDatabasePath = () => {
98
- // Respect explicit sqlite *file path* configuration.
99
- // Note: we intentionally treat plain names like "zintrust" as placeholders, not file paths,
100
- // to avoid creating stray DB files in the project root.
101
- if (isExplicitEnvValue('DB_DATABASE') || isExplicitEnvValue('DB_PATH')) {
102
- const configured = Env.DB_DATABASE;
103
- if (looksLikeSqliteFilePath(configured))
104
- return configured;
105
- }
106
- // Only change the default behavior for dev/testing; production should be explicit.
107
- if (!isNodeProcess() || Env.NODE_ENV === 'production')
108
- return Env.DB_DATABASE;
109
- // Store dev sqlite files in project-local metadata folder.
110
- // Note: the SQLite adapter ensures the parent directory exists.
111
- const base = resolveSqliteDefaultBasename();
112
- return `.zintrust/dbs/${base}.sqlite`;
113
- };
114
- const hasOwn = (obj, key) => {
115
- return Object.hasOwn(obj, key);
116
- };
117
- const parseReadHosts = (raw) => {
118
- const list = String(raw ?? '')
119
- .split(',')
120
- .map((v) => v.trim())
121
- .filter((v) => v.length > 0);
122
- return list.length > 0 ? list : undefined;
123
- };
124
- const getDefaultConnection = (connections) => {
125
- const envSelectedRaw = Env.get('DB_CONNECTION', '');
126
- const value = String(envSelectedRaw ?? '').trim();
127
- if (value.length > 0 && hasOwn(connections, value))
128
- return value;
129
- if (envSelectedRaw.trim().length > 0) {
130
- throw ErrorFactory.createConfigError(`Database connection not configured: ${value}`);
131
- }
132
- return hasOwn(connections, 'sqlite') ? 'sqlite' : (Object.keys(connections)[0] ?? 'sqlite');
133
- };
134
- const getDatabaseConnection = (config) => {
135
- const connName = config.default;
136
- const resolved = config.connections[connName];
137
- if (resolved !== undefined)
138
- return resolved;
139
- // Backwards-compatible fallback.
140
- const sqliteFallback = config.connections['sqlite'];
141
- if (sqliteFallback !== undefined)
142
- return sqliteFallback;
143
- const first = Object.values(config.connections)[0];
144
- if (first !== undefined)
145
- return first;
146
- throw ErrorFactory.createConfigError(`No database connections are configured (default='${connName}').`);
147
- };
148
- const connections = {
149
- sqlite: {
150
- driver: 'sqlite',
151
- database: resolveDefaultSqliteDatabasePath(),
152
- migrations: 'database/migrations',
153
- },
154
- d1: {
155
- driver: 'd1',
156
- },
157
- 'd1-remote': {
158
- driver: 'd1-remote',
159
- },
160
- postgresql: {
161
- driver: 'postgresql',
162
- host: Env.DB_HOST,
163
- port: Env.DB_PORT_POSTGRESQL,
164
- database: Env.DB_DATABASE_POSTGRESQL,
165
- username: Env.DB_USERNAME_POSTGRESQL,
166
- password: Env.DB_PASSWORD_POSTGRESQL,
167
- ssl: Env.getBool('DB_SSL', false),
168
- readHosts: parseReadHosts(Env.DB_READ_HOSTS_POSTGRESQL),
169
- pooling: {
170
- enabled: Env.getBool('DB_POOLING', true),
171
- min: Env.getInt('DB_POOL_MIN', 5),
172
- max: Env.getInt('DB_POOL_MAX', 20),
173
- idleTimeout: Env.getInt('DB_IDLE_TIMEOUT', 30000),
174
- connectionTimeout: Env.getInt('DB_CONNECTION_TIMEOUT', 10000),
175
- },
176
- },
177
- mysql: {
178
- driver: 'mysql',
179
- host: Env.DB_HOST,
180
- port: Env.DB_PORT,
181
- database: Env.DB_DATABASE,
182
- username: Env.DB_USERNAME,
183
- password: Env.DB_PASSWORD,
184
- readHosts: parseReadHosts(Env.DB_READ_HOSTS),
185
- pooling: {
186
- enabled: Env.getBool('DB_POOLING', true),
187
- min: Env.getInt('DB_POOL_MIN', 5),
188
- max: Env.getInt('DB_POOL_MAX', 20),
189
- },
190
- },
191
- sqlserver: {
192
- driver: 'sqlserver',
193
- host: Env.DB_HOST_MSSQL,
194
- port: Env.DB_PORT_MSSQL,
195
- database: Env.DB_DATABASE_MSSQL,
196
- username: Env.DB_USERNAME_MSSQL,
197
- password: Env.DB_PASSWORD_MSSQL,
198
- readHosts: parseReadHosts(Env.DB_READ_HOSTS_MSSQL),
199
- },
200
- };
201
- const createDatabaseConfig = () => {
202
- const overrides = StartupConfigFileRegistry.get(StartupConfigFile.Database) ?? {};
203
- const mergedConnections = {
204
- ...connections,
205
- ...overrides.connections,
206
- };
207
- const baseLogging = {
208
- enabled: Env.getBool('DB_LOG_QUERIES', Env.DEBUG),
209
- level: Env.get('DB_LOG_LEVEL', 'debug'),
210
- };
211
- const baseMigrations = {
212
- directory: 'database/migrations',
213
- extension: Env.get('DB_MIGRATION_EXT', '.ts'),
214
- };
215
- const baseSeeders = {
216
- directory: 'database/seeders',
217
- };
218
- const mergedDefault = typeof overrides.default === 'string' && overrides.default.trim() !== ''
219
- ? overrides.default.trim()
220
- : getDefaultConnection(mergedConnections);
221
- const databaseConfigObj = {
222
- /**
223
- * Default database connection
224
- */
225
- default: mergedDefault,
226
- /**
227
- * Database connections
228
- */
229
- connections: mergedConnections,
230
- /**
231
- * Get current connection config
232
- */
233
- getConnection() {
234
- return getDatabaseConnection(this);
235
- },
236
- /**
237
- * Enable query logging
238
- */
239
- logging: {
240
- ...baseLogging,
241
- ...overrides.logging,
242
- },
243
- /**
244
- * Migration settings
245
- */
246
- migrations: {
247
- ...baseMigrations,
248
- ...overrides.migrations,
249
- },
250
- /**
251
- * Seeding settings
252
- */
253
- seeders: {
254
- ...baseSeeders,
255
- ...overrides.seeders,
256
- },
257
- };
258
- return Object.freeze(databaseConfigObj);
259
- };
260
- let cached = null;
261
- const proxyTarget = {};
262
- const ensureDatabaseConfig = () => {
263
- if (cached)
264
- return cached;
265
- cached = createDatabaseConfig();
266
- try {
267
- Object.defineProperties(proxyTarget, Object.getOwnPropertyDescriptors(cached));
268
- }
269
- catch {
270
- // best-effort
271
- }
272
- return cached;
273
- };
274
- export const databaseConfig = new Proxy(proxyTarget, {
275
- get(_target, prop) {
276
- return ensureDatabaseConfig()[prop];
277
- },
278
- ownKeys() {
279
- ensureDatabaseConfig();
280
- return Reflect.ownKeys(proxyTarget);
281
- },
282
- getOwnPropertyDescriptor(_target, prop) {
283
- ensureDatabaseConfig();
284
- return Object.getOwnPropertyDescriptor(proxyTarget, prop);
285
- },
286
- });
@@ -1,128 +0,0 @@
1
- /**
2
- * Environment Configuration
3
- * Type-safe access to environment variables
4
- *
5
- * Sealed namespace pattern - all exports through Env namespace
6
- * Safe for both Node.js and serverless runtimes (Cloudflare Workers, Deno, Lambda)
7
- */
8
- import type { ProcessLike } from './type';
9
- export declare const getProcessLike: () => ProcessLike | undefined;
10
- export declare const dirnameFromExecPath: (execPath: string, platform?: string) => string;
11
- export declare const get: (key: string, defaultValue?: string) => string;
12
- export declare const getInt: (key: string, defaultValue?: number) => number;
13
- export declare const getFloat: (key: string, defaultValue?: number) => number;
14
- export declare const getBool: (key: string, defaultValue?: boolean) => boolean;
15
- export declare const getDefaultLogLevel: () => "debug" | "info" | "warn" | "error";
16
- export declare const Env: Readonly<{
17
- get: (key: string, defaultValue?: string) => string;
18
- getInt: (key: string, defaultValue?: number) => number;
19
- getBool: (key: string, defaultValue?: boolean) => boolean;
20
- getFloat: (key: string, defaultValue?: number) => number;
21
- NODE_ENV: NodeJS.ProcessEnv["NODE_ENV"];
22
- PORT: number;
23
- HOST: string;
24
- BASE_URL: string;
25
- APP_NAME: string;
26
- APP_KEY: string;
27
- APP_PREVIOUS_KEYS: string;
28
- DB_CONNECTION: string;
29
- DB_HOST: string;
30
- DB_PORT: number;
31
- DB_DATABASE: string;
32
- DB_USERNAME: string;
33
- DB_PASSWORD: string;
34
- DB_READ_HOSTS: string;
35
- DB_PORT_POSTGRESQL: number;
36
- DB_DATABASE_POSTGRESQL: string;
37
- DB_USERNAME_POSTGRESQL: string;
38
- DB_PASSWORD_POSTGRESQL: string;
39
- DB_READ_HOSTS_POSTGRESQL: string;
40
- DB_HOST_MSSQL: string;
41
- DB_PORT_MSSQL: number;
42
- DB_DATABASE_MSSQL: string;
43
- DB_USERNAME_MSSQL: string;
44
- DB_PASSWORD_MSSQL: string;
45
- DB_READ_HOSTS_MSSQL: string;
46
- D1_DATABASE_ID: string;
47
- KV_NAMESPACE_ID: string;
48
- D1_REMOTE_URL: string;
49
- D1_REMOTE_KEY_ID: string;
50
- D1_REMOTE_SECRET: string;
51
- D1_REMOTE_MODE: string;
52
- KV_REMOTE_URL: string;
53
- KV_REMOTE_KEY_ID: string;
54
- KV_REMOTE_SECRET: string;
55
- KV_REMOTE_NAMESPACE: string;
56
- ZT_PROXY_SIGNING_WINDOW_MS: number;
57
- ZT_PROXY_TIMEOUT_MS: number;
58
- CACHE_DRIVER: string;
59
- REDIS_HOST: string;
60
- REDIS_PORT: number;
61
- REDIS_PASSWORD: string;
62
- REDIS_URL: string;
63
- MONGO_URI: string;
64
- MONGO_DB: string;
65
- QUEUE_CONNECTION: string;
66
- QUEUE_DRIVER: string;
67
- RATE_LIMIT_STORE: string;
68
- RATE_LIMIT_DRIVER: string;
69
- RATE_LIMIT_KEY_PREFIX: string;
70
- NOTIFICATION_DRIVER: string;
71
- TERMII_API_KEY: string;
72
- TERMII_SENDER: string;
73
- AWS_REGION: string;
74
- AWS_LAMBDA_FUNCTION_NAME: string;
75
- AWS_LAMBDA_FUNCTION_VERSION: string;
76
- AWS_EXECUTION_ENV: string;
77
- LAMBDA_TASK_ROOT: string;
78
- MICROSERVICES: string;
79
- SERVICES: string;
80
- MICROSERVICES_TRACING: boolean;
81
- MICROSERVICES_TRACING_RATE: number;
82
- DATABASE_ISOLATION: string;
83
- SERVICE_API_KEY: string;
84
- SERVICE_JWT_SECRET: string;
85
- DEBUG: boolean;
86
- ENABLE_MICROSERVICES: boolean;
87
- TOKEN_TTL: number;
88
- TOKEN_LENGTH: number;
89
- ENCRYPTION_CIPHER: string;
90
- ENVIRONMENT: string;
91
- REQUEST_TIMEOUT: number;
92
- APP_TIMEZONE: string;
93
- MAX_BODY_SIZE: number;
94
- SHUTDOWN_TIMEOUT: number;
95
- LOG_LEVEL: "debug" | "info" | "warn" | "error";
96
- LOG_FORMAT: string;
97
- LOG_CHANNEL: string;
98
- DISABLE_LOGGING: boolean;
99
- LOG_HTTP_REQUEST: boolean;
100
- LOG_TO_FILE: boolean;
101
- LOG_ROTATION_SIZE: number;
102
- LOG_ROTATION_DAYS: number;
103
- ZINTRUST_PROJECT_ROOT: string;
104
- ZINTRUST_ALLOW_POSTINSTALL: string;
105
- ZINTRUST_ENV_FILE: string;
106
- ZINTRUST_SECRETS_MANIFEST: string;
107
- ZINTRUST_ENV_IN_FILE: string;
108
- ZINTRUST_SECRETS_PROVIDER: string;
109
- ZINTRUST_ALLOW_AUTO_INSTALL: string;
110
- CLOUDFLARE_ACCOUNT_ID: string;
111
- CLOUDFLARE_API_TOKEN: string;
112
- CLOUDFLARE_KV_NAMESPACE_ID: string;
113
- AWS_DEFAULT_REGION: string;
114
- AWS_ACCESS_KEY_ID: string;
115
- AWS_SECRET_ACCESS_KEY: string;
116
- AWS_SESSION_TOKEN: string;
117
- CI: string;
118
- HOME: string;
119
- USERPROFILE: string;
120
- TEMPLATE_COPYRIGHT: string;
121
- SERVICE_NAME: string;
122
- APP_MODE: string;
123
- APP_PORT: number;
124
- RUNTIME: string;
125
- NODE_BIN_DIR: string;
126
- SAFE_PATH: string;
127
- }>;
128
- //# sourceMappingURL=env.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"env.d.ts","sourceRoot":"","sources":["../../../src/config/env.ts"],"names":[],"mappings":"AAAA;;;;;;GAMG;AAEH,OAAO,KAAK,EAAE,WAAW,EAAE,MAAM,cAAc,CAAC;AAMhD,eAAO,MAAM,cAAc,QAAO,WAAW,GAAG,SAAwB,CAAC;AAEzE,eAAO,MAAM,mBAAmB,GAAI,UAAU,MAAM,EAAE,WAAW,MAAM,KAAG,MAKzE,CAAC;AAGF,eAAO,MAAM,GAAG,GAAI,KAAK,MAAM,EAAE,eAAe,MAAM,KAAG,MAGxD,CAAC;AAEF,eAAO,MAAM,MAAM,GAAI,KAAK,MAAM,EAAE,eAAe,MAAM,KAAG,MAM3D,CAAC;AAEF,eAAO,MAAM,QAAQ,GAAI,KAAK,MAAM,EAAE,eAAe,MAAM,KAAG,MAM7D,CAAC;AAEF,eAAO,MAAM,OAAO,GAAI,KAAK,MAAM,EAAE,eAAe,OAAO,KAAG,OAK7D,CAAC;AAEF,eAAO,MAAM,kBAAkB,QAAO,OAAO,GAAG,MAAM,GAAG,MAAM,GAAG,OAKjE,CAAC;AAGF,eAAO,MAAM,GAAG;eApCS,MAAM,iBAAiB,MAAM,KAAG,MAAM;kBAKnC,MAAM,iBAAiB,MAAM,KAAG,MAAM;mBAgBrC,MAAM,iBAAiB,OAAO,KAAG,OAAO;oBARvC,MAAM,iBAAiB,MAAM,KAAG,MAAM;cA+BtB,MAAM,CAAC,UAAU,CAAC,UAAU,CAAC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;eA6GpB,OAAO,GAAG,MAAM,GAAG,MAAM,GAAG,OAAO;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAmExF,CAAC"}
package/src/config/env.js DELETED
@@ -1,220 +0,0 @@
1
- /**
2
- * Environment Configuration
3
- * Type-safe access to environment variables
4
- *
5
- * Sealed namespace pattern - all exports through Env namespace
6
- * Safe for both Node.js and serverless runtimes (Cloudflare Workers, Deno, Lambda)
7
- */
8
- // Cache process check once at module load time
9
- const processLike = typeof process === 'undefined' ? undefined : process;
10
- export const getProcessLike = () => processLike;
11
- export const dirnameFromExecPath = (execPath, platform) => {
12
- const separator = platform === 'win32' ? '\\' : '/';
13
- const lastSep = execPath.lastIndexOf(separator);
14
- if (lastSep <= 0)
15
- return '';
16
- return execPath.slice(0, lastSep);
17
- };
18
- // Private helper functions
19
- export const get = (key, defaultValue) => {
20
- const env = processLike?.env ?? {};
21
- return env[key] ?? defaultValue ?? '';
22
- };
23
- export const getInt = (key, defaultValue) => {
24
- const env = processLike?.env ?? {};
25
- const value = env[key];
26
- if (value === undefined || value === null)
27
- return defaultValue ?? 0;
28
- if (typeof value === 'string' && value.trim() === '')
29
- return defaultValue ?? 0;
30
- return Number.parseInt(value, 10);
31
- };
32
- export const getFloat = (key, defaultValue) => {
33
- const env = processLike?.env ?? {};
34
- const value = env[key];
35
- if (value === undefined || value === null)
36
- return defaultValue ?? 0;
37
- if (typeof value === 'string' && value.trim() === '')
38
- return defaultValue ?? 0;
39
- return Number.parseFloat(value);
40
- };
41
- export const getBool = (key, defaultValue) => {
42
- const env = processLike?.env ?? {};
43
- const value = env[key];
44
- if (value === undefined || value === null)
45
- return defaultValue ?? false;
46
- return value.toLowerCase() === 'true' || value === '1';
47
- };
48
- export const getDefaultLogLevel = () => {
49
- const NODE_ENV_VALUE = get('NODE_ENV', 'development');
50
- if (NODE_ENV_VALUE === 'production')
51
- return 'info';
52
- if (NODE_ENV_VALUE === 'testing')
53
- return 'error';
54
- return 'debug';
55
- };
56
- // Sealed namespace with all environment configuration
57
- export const Env = Object.freeze({
58
- // Helper functions
59
- get,
60
- getInt,
61
- getBool,
62
- getFloat,
63
- // Core
64
- NODE_ENV: get('NODE_ENV', 'development'),
65
- // Prefer PORT, fallback to APP_PORT for compatibility
66
- PORT: getInt('PORT', getInt('APP_PORT', 3000)),
67
- HOST: get('HOST', 'localhost'),
68
- BASE_URL: get('BASE_URL', ''),
69
- APP_NAME: get('APP_NAME', 'ZinTrust'),
70
- APP_KEY: get('APP_KEY', ''),
71
- // Optional key rotation support (comma-separated or JSON array of keys)
72
- APP_PREVIOUS_KEYS: get('APP_PREVIOUS_KEYS', ''),
73
- // Database
74
- DB_CONNECTION: get('DB_CONNECTION', 'sqlite'),
75
- DB_HOST: get('DB_HOST', 'localhost'),
76
- DB_PORT: getInt('DB_PORT', 5432),
77
- // Accept DB_PATH as an alias for sqlite file path (many env templates use it).
78
- DB_DATABASE: get('DB_DATABASE', get('DB_PATH', 'zintrust')),
79
- DB_USERNAME: get('DB_USERNAME', 'postgres'),
80
- DB_PASSWORD: get('DB_PASSWORD', ''),
81
- DB_READ_HOSTS: get('DB_READ_HOSTS', ''),
82
- // PostgreSQL-specific configuration (with _POSTGRESQL suffix to avoid conflicts with MySQL)
83
- DB_PORT_POSTGRESQL: getInt('DB_PORT_POSTGRESQL', 5432),
84
- DB_DATABASE_POSTGRESQL: get('DB_DATABASE_POSTGRESQL', 'postgres'),
85
- DB_USERNAME_POSTGRESQL: get('DB_USERNAME_POSTGRESQL', 'postgres'),
86
- DB_PASSWORD_POSTGRESQL: get('DB_PASSWORD_POSTGRESQL', ''),
87
- DB_READ_HOSTS_POSTGRESQL: get('DB_READ_HOSTS_POSTGRESQL', ''),
88
- // SQL Server (MSSQL) specific configuration
89
- DB_HOST_MSSQL: get('DB_HOST_MSSQL', get('DB_HOST', 'localhost')),
90
- DB_PORT_MSSQL: getInt('DB_PORT_MSSQL', 1433),
91
- DB_DATABASE_MSSQL: get('DB_DATABASE_MSSQL', 'zintrust'),
92
- DB_USERNAME_MSSQL: get('DB_USERNAME_MSSQL', 'sa'),
93
- DB_PASSWORD_MSSQL: get('DB_PASSWORD_MSSQL', ''),
94
- DB_READ_HOSTS_MSSQL: get('DB_READ_HOSTS_MSSQL', ''),
95
- // Cloudflare
96
- D1_DATABASE_ID: get('D1_DATABASE_ID'),
97
- KV_NAMESPACE_ID: get('KV_NAMESPACE_ID'),
98
- // Cloudflare proxy services (D1/KV outside Cloudflare)
99
- D1_REMOTE_URL: get('D1_REMOTE_URL', ''),
100
- D1_REMOTE_KEY_ID: get('D1_REMOTE_KEY_ID', ''),
101
- D1_REMOTE_SECRET: get('D1_REMOTE_SECRET', ''),
102
- D1_REMOTE_MODE: get('D1_REMOTE_MODE', 'registry'),
103
- KV_REMOTE_URL: get('KV_REMOTE_URL', ''),
104
- KV_REMOTE_KEY_ID: get('KV_REMOTE_KEY_ID', ''),
105
- KV_REMOTE_SECRET: get('KV_REMOTE_SECRET', ''),
106
- KV_REMOTE_NAMESPACE: get('KV_REMOTE_NAMESPACE', ''),
107
- // Proxy client tuning
108
- ZT_PROXY_SIGNING_WINDOW_MS: getInt('ZT_PROXY_SIGNING_WINDOW_MS', 60000),
109
- ZT_PROXY_TIMEOUT_MS: getInt('ZT_PROXY_TIMEOUT_MS', 30000),
110
- // Cache
111
- CACHE_DRIVER: get('CACHE_DRIVER', 'memory'),
112
- REDIS_HOST: get('REDIS_HOST', 'localhost'),
113
- REDIS_PORT: getInt('REDIS_PORT', 6379),
114
- REDIS_PASSWORD: get('REDIS_PASSWORD', ''),
115
- REDIS_URL: get('REDIS_URL', ''),
116
- MONGO_URI: get('MONGO_URI'),
117
- MONGO_DB: get('MONGO_DB', 'zintrust_cache'),
118
- // Queue
119
- QUEUE_CONNECTION: get('QUEUE_CONNECTION', ''),
120
- QUEUE_DRIVER: get('QUEUE_DRIVER', ''),
121
- // Rate Limiting
122
- RATE_LIMIT_STORE: get('RATE_LIMIT_STORE', ''),
123
- RATE_LIMIT_DRIVER: get('RATE_LIMIT_DRIVER', ''),
124
- RATE_LIMIT_KEY_PREFIX: get('RATE_LIMIT_KEY_PREFIX', 'zintrust:ratelimit:'),
125
- // Notifications
126
- NOTIFICATION_DRIVER: get('NOTIFICATION_DRIVER', ''),
127
- TERMII_API_KEY: get('TERMII_API_KEY', ''),
128
- TERMII_SENDER: get('TERMII_SENDER', 'ZinTrust'),
129
- // AWS
130
- AWS_REGION: get('AWS_REGION', 'us-east-1'),
131
- AWS_LAMBDA_FUNCTION_NAME: get('AWS_LAMBDA_FUNCTION_NAME'),
132
- AWS_LAMBDA_FUNCTION_VERSION: get('AWS_LAMBDA_FUNCTION_VERSION'),
133
- AWS_EXECUTION_ENV: get('AWS_EXECUTION_ENV'),
134
- LAMBDA_TASK_ROOT: get('LAMBDA_TASK_ROOT'),
135
- // Microservices
136
- MICROSERVICES: get('MICROSERVICES'),
137
- SERVICES: get('SERVICES'),
138
- MICROSERVICES_TRACING: getBool('MICROSERVICES_TRACING'),
139
- MICROSERVICES_TRACING_RATE: Number.parseFloat(get('MICROSERVICES_TRACING_RATE', '1.0')),
140
- DATABASE_ISOLATION: get('DATABASE_ISOLATION', 'shared'),
141
- SERVICE_API_KEY: get('SERVICE_API_KEY'),
142
- SERVICE_JWT_SECRET: get('SERVICE_JWT_SECRET'),
143
- // Security
144
- DEBUG: getBool('DEBUG', false),
145
- ENABLE_MICROSERVICES: getBool('ENABLE_MICROSERVICES', false),
146
- TOKEN_TTL: getInt('TOKEN_TTL', 3600000),
147
- TOKEN_LENGTH: getInt('TOKEN_LENGTH', 32),
148
- // Encryption interop
149
- ENCRYPTION_CIPHER: get('ENCRYPTION_CIPHER', ''),
150
- // Deployment
151
- ENVIRONMENT: get('ENVIRONMENT', 'development'),
152
- REQUEST_TIMEOUT: getInt('REQUEST_TIMEOUT', 30000),
153
- APP_TIMEZONE: get('APP_TIMEZONE', 'UTC'),
154
- MAX_BODY_SIZE: getInt('MAX_BODY_SIZE', 10485760),
155
- SHUTDOWN_TIMEOUT: getInt('SHUTDOWN_TIMEOUT', 10000),
156
- // Logging
157
- LOG_LEVEL: get('LOG_LEVEL', getDefaultLogLevel()),
158
- LOG_FORMAT: get('LOG_FORMAT', 'text'),
159
- LOG_CHANNEL: get('LOG_CHANNEL', ''),
160
- DISABLE_LOGGING: getBool('DISABLE_LOGGING', false),
161
- LOG_HTTP_REQUEST: getBool('LOG_HTTP_REQUEST', false),
162
- LOG_TO_FILE: getBool('LOG_TO_FILE', false),
163
- LOG_ROTATION_SIZE: getInt('LOG_ROTATION_SIZE', 10485760),
164
- LOG_ROTATION_DAYS: getInt('LOG_ROTATION_DAYS', 7),
165
- // zintrust-specific
166
- ZINTRUST_PROJECT_ROOT: get('ZINTRUST_PROJECT_ROOT', ''),
167
- ZINTRUST_ALLOW_POSTINSTALL: get('ZINTRUST_ALLOW_POSTINSTALL', ''),
168
- ZINTRUST_ENV_FILE: get('ZINTRUST_ENV_FILE', '.env.pull'),
169
- ZINTRUST_SECRETS_MANIFEST: get('ZINTRUST_SECRETS_MANIFEST', 'secrets.manifest.json'),
170
- ZINTRUST_ENV_IN_FILE: get('ZINTRUST_ENV_IN_FILE', '.env'),
171
- ZINTRUST_SECRETS_PROVIDER: get('ZINTRUST_SECRETS_PROVIDER', ''),
172
- ZINTRUST_ALLOW_AUTO_INSTALL: get('ZINTRUST_ALLOW_AUTO_INSTALL', ''),
173
- // Cloudflare Credentials
174
- CLOUDFLARE_ACCOUNT_ID: get('CLOUDFLARE_ACCOUNT_ID', ''),
175
- CLOUDFLARE_API_TOKEN: get('CLOUDFLARE_API_TOKEN', ''),
176
- CLOUDFLARE_KV_NAMESPACE_ID: get('CLOUDFLARE_KV_NAMESPACE_ID', ''),
177
- // AWS Credentials (additional)
178
- AWS_DEFAULT_REGION: get('AWS_DEFAULT_REGION', ''),
179
- AWS_ACCESS_KEY_ID: get('AWS_ACCESS_KEY_ID', ''),
180
- AWS_SECRET_ACCESS_KEY: get('AWS_SECRET_ACCESS_KEY', ''),
181
- AWS_SESSION_TOKEN: get('AWS_SESSION_TOKEN', ''),
182
- // CI/CD
183
- CI: get('CI', ''),
184
- // System paths
185
- HOME: get('HOME', ''),
186
- USERPROFILE: get('USERPROFILE', ''),
187
- // Template/Misc
188
- TEMPLATE_COPYRIGHT: get('TEMPLATE_COPYRIGHT', '© 2025 ZinTrust Framework. All rights reserved.'),
189
- SERVICE_NAME: get('SERVICE_NAME', ''),
190
- APP_MODE: get('APP_MODE', ''),
191
- APP_PORT: getInt('APP_PORT', 3000),
192
- RUNTIME: get('RUNTIME', ''),
193
- // Paths (safely constructed for Node.js environments)
194
- NODE_BIN_DIR: (() => {
195
- try {
196
- if (processLike?.execPath === null || processLike?.execPath === undefined)
197
- return '';
198
- return dirnameFromExecPath(processLike.execPath, processLike.platform);
199
- }
200
- catch {
201
- // Fallback for non-Node environments
202
- return '';
203
- }
204
- })(),
205
- SAFE_PATH: (() => {
206
- try {
207
- if (processLike?.execPath === null || processLike?.execPath === undefined)
208
- return '';
209
- const binDir = dirnameFromExecPath(processLike.execPath, processLike.platform);
210
- if (processLike.platform === 'win32') {
211
- return [String.raw `C:\Windows\System32`, String.raw `C:\Windows`, binDir].join(';');
212
- }
213
- return ['/usr/bin', '/bin', '/usr/sbin', '/sbin', binDir].join(':');
214
- }
215
- catch {
216
- // Fallback for non-Node environments
217
- return '';
218
- }
219
- })(),
220
- });
@@ -1,27 +0,0 @@
1
- /**
2
- * Feature Flags - Controls access to advanced/experimental features
3
- * Sealed namespace for immutability
4
- */
5
- export declare const FeatureFlags: Readonly<{
6
- /**
7
- * Initialize all feature flags from environment
8
- * Called once during application bootstrap
9
- */
10
- initialize(): void;
11
- /**
12
- * Check if raw queries are enabled
13
- * Returns cached flag value (no environment lookup)
14
- */
15
- isRawQueryEnabled(): boolean;
16
- /**
17
- * Reset flags (primarily for testing)
18
- */
19
- reset(): void;
20
- /**
21
- * Set raw query enabled state
22
- * Primarily for testing to avoid 'as any' type casting
23
- */
24
- setRawQueryEnabled(enabled: boolean): void;
25
- }>;
26
- export default FeatureFlags;
27
- //# sourceMappingURL=features.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"features.d.ts","sourceRoot":"","sources":["../../../src/config/features.ts"],"names":[],"mappings":"AASA;;;GAGG;AACH,eAAO,MAAM,YAAY;IACvB;;;OAGG;kBACW,IAAI;IAclB;;;OAGG;yBACkB,OAAO;IAI5B;;OAEG;aACM,IAAI;IAIb;;;OAGG;gCACyB,OAAO,GAAG,IAAI;EAG1C,CAAC;AAEH,eAAe,YAAY,CAAC"}