@inkeep/agents-manage-api 0.34.1 → 0.35.1
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/chunk-SBJLXGYG.js +592 -0
- package/dist/index.d.ts +48 -3
- package/dist/index.js +6009 -207
- package/dist/nodefs-ZHXQGWPG.js +21 -0
- package/dist/opfs-ahp-CJXSQU3E.js +318 -0
- package/package.json +2 -2
- package/dist/index.cjs +0 -5711
- package/dist/index.d.cts +0 -15
package/dist/index.d.cts
DELETED
|
@@ -1,15 +0,0 @@
|
|
|
1
|
-
import * as hono from 'hono';
|
|
2
|
-
import { Hono } from 'hono';
|
|
3
|
-
import * as hono_types from 'hono/types';
|
|
4
|
-
import { ServerConfig, CredentialStoreRegistry, CredentialStore } from '@inkeep/agents-core';
|
|
5
|
-
|
|
6
|
-
declare function createManagementHono(serverConfig: ServerConfig, credentialStores: CredentialStoreRegistry): Hono<hono_types.BlankEnv, hono_types.BlankSchema, "/">;
|
|
7
|
-
|
|
8
|
-
declare const app: hono.Hono<hono_types.BlankEnv, hono_types.BlankSchema, "/">;
|
|
9
|
-
|
|
10
|
-
declare function createManagementApp(config?: {
|
|
11
|
-
serverConfig?: ServerConfig;
|
|
12
|
-
credentialStores?: CredentialStore[];
|
|
13
|
-
}): hono.Hono<hono_types.BlankEnv, hono_types.BlankSchema, "/">;
|
|
14
|
-
|
|
15
|
-
export { createManagementApp, createManagementHono, app as default };
|