@getstrata/core 0.5.27 → 0.5.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.
@@ -1,10 +1,10 @@
1
1
  import type { CacheLike } from "../../types/services";
2
2
  import type { AuthManager } from "../auth/guard";
3
3
  import type { PolicyGate } from "../auth/policy";
4
- import type { ApplicationContext } from "../contracts/applicationContext";
4
+ import type { AppContext } from "../contracts/di";
5
5
  import { type Logger } from "../logging/logger";
6
6
  import type { Queue } from "../queue";
7
- declare function setActiveApplicationContext(context: ApplicationContext): void;
7
+ declare function setActiveApplicationContext(context: AppContext): void;
8
8
  declare function resolveApplicationCache(): CacheLike;
9
9
  declare function resolveApplicationQueue(): Queue;
10
10
  declare function resolveApplicationAuth(): AuthManager;
package/dist/index.js CHANGED
@@ -3165,6 +3165,7 @@ function getRequiredDependency(dependencies, key) {
3165
3165
  function resolveService(dependencies, token) {
3166
3166
  return dependencies.container.resolve(token);
3167
3167
  }
3168
+
3168
3169
  // ../../src/core/logging/logger.ts
3169
3170
  class Logger {
3170
3171
  channel;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@getstrata/core",
3
- "version": "0.5.27",
3
+ "version": "0.5.28",
4
4
  "description": "Strata — Laravel-inspired Bun framework public API",
5
5
  "type": "module",
6
6
  "license": "MIT",