kavachos 0.1.4 → 0.2.0

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,5 +1,5 @@
1
- import { D as Database, A as AgentIdentity, i as AuthorizeRequest, j as AuthorizeResult, P as Permission } from '../types-5Ua5KlPc.js';
2
- export { an as PermissionConstraints } from '../types-5Ua5KlPc.js';
1
+ import { D as Database, A as AgentIdentity, i as AuthorizeRequest, j as AuthorizeResult, P as Permission } from '../types-B02D3kZy.js';
2
+ export { an as PermissionConstraints } from '../types-B02D3kZy.js';
3
3
  import 'drizzle-orm/sqlite-core';
4
4
  import '../types-BuHrZcjE.js';
5
5
  import 'zod';
@@ -9054,6 +9054,8 @@ interface PluginContext {
9054
9054
  addEndpoint: (endpoint: PluginEndpoint) => void;
9055
9055
  /** Register a DB migration (CREATE TABLE statement) */
9056
9056
  addMigration: (sql: string) => void;
9057
+ /** Shared session manager — null if auth.session not configured */
9058
+ sessionManager: SessionManager | null;
9057
9059
  }
9058
9060
  /** An API endpoint registered by a plugin */
9059
9061
  interface PluginEndpoint {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "kavachos",
3
- "version": "0.1.4",
3
+ "version": "0.2.0",
4
4
  "description": "The auth OS for AI agents - identity, permissions, delegation, and audit for the agentic era",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",