@getstrata/core 0.5.18 → 0.5.21
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/bootstrap/applicationRegistry.d.ts +1 -16
- package/dist/bootstrap/cache/modelCacheTags.d.ts +3 -0
- package/dist/bootstrap/config.d.ts +2 -7
- package/dist/bootstrap/discoverModules.d.ts +3 -2
- package/dist/core/auth/guard.d.ts +2 -2
- package/dist/core/auth/sessionGuard.d.ts +2 -2
- package/dist/core/cache/modelCacheTags.d.ts +1 -3
- package/dist/core/contracts/applicationContext.d.ts +18 -0
- package/dist/core/contracts/serviceContainer.d.ts +5 -0
- package/dist/core/contracts/serviceTokens.d.ts +7 -0
- package/dist/core/openapi/generator.d.ts +1 -1
- package/dist/core/openapi/registeredRoute.d.ts +6 -0
- package/dist/core/runtime/applicationRegistry.d.ts +15 -0
- package/dist/core/view/webLayoutData.d.ts +2 -2
- package/dist/entries/http/webErrorResponse.js +2 -2
- package/dist/entries/queue/createAppQueue.js +234 -2655
- package/dist/entries/queue/jobRunner.js +2 -1
- package/dist/entries/queue/publicQueue.js +2 -1
- package/dist/entries/queue/queueMetrics.js +236 -2606
- package/dist/entries/runtime/applicationRegistry.js +1 -0
- package/dist/entries/view.js +2 -2
- package/dist/framework/public-api.d.ts +2 -1
- package/dist/index.js +117 -96
- package/package.json +6 -1
- package/dist/bootstrap/modules.d.ts +0 -1
- package/dist/bootstrap/routeRegistry.d.ts +0 -14
|
@@ -1937,8 +1937,9 @@ class JobRegistry {
|
|
|
1937
1937
|
}
|
|
1938
1938
|
var jobRegistry = new JobRegistry;
|
|
1939
1939
|
|
|
1940
|
-
// ../../src/
|
|
1940
|
+
// ../../src/core/contracts/serviceTokens.ts
|
|
1941
1941
|
var CORE_TOKEN_SERVICE_TOKEN = "core.tokenService";
|
|
1942
|
+
// ../../src/bootstrap/config.ts
|
|
1942
1943
|
var DEFAULT_QUEUE_DRIVER = "sync";
|
|
1943
1944
|
|
|
1944
1945
|
// ../../src/config/queue.ts
|