@inkeep/agents-run-api 0.0.0-chat-to-edit-20251119071712

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.
@@ -0,0 +1,32 @@
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
+ interface CommonSandboxConfig {
7
+ runtime: 'node22' | 'typescript';
8
+ timeout?: number;
9
+ vcpus?: number;
10
+ }
11
+ interface NativeSandboxConfig extends CommonSandboxConfig {
12
+ provider: 'native';
13
+ }
14
+ interface VercelSandboxConfig extends CommonSandboxConfig {
15
+ provider: 'vercel';
16
+ teamId: string;
17
+ projectId: string;
18
+ token: string;
19
+ }
20
+ type SandboxConfig = NativeSandboxConfig | VercelSandboxConfig;
21
+
22
+ declare function createExecutionHono(serverConfig: ServerConfig, credentialStores: CredentialStoreRegistry, sandboxConfig?: SandboxConfig): Hono<hono_types.BlankEnv, hono_types.BlankSchema, "/">;
23
+
24
+ declare const app: hono.Hono<hono_types.BlankEnv, hono_types.BlankSchema, "/">;
25
+
26
+ declare function createExecutionApp(config?: {
27
+ serverConfig?: ServerConfig;
28
+ credentialStores?: CredentialStore[];
29
+ sandboxConfig?: SandboxConfig;
30
+ }): hono.Hono<hono_types.BlankEnv, hono_types.BlankSchema, "/">;
31
+
32
+ export { type NativeSandboxConfig, type SandboxConfig, type VercelSandboxConfig, createExecutionApp, createExecutionHono, app as default };
@@ -0,0 +1,32 @@
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
+ interface CommonSandboxConfig {
7
+ runtime: 'node22' | 'typescript';
8
+ timeout?: number;
9
+ vcpus?: number;
10
+ }
11
+ interface NativeSandboxConfig extends CommonSandboxConfig {
12
+ provider: 'native';
13
+ }
14
+ interface VercelSandboxConfig extends CommonSandboxConfig {
15
+ provider: 'vercel';
16
+ teamId: string;
17
+ projectId: string;
18
+ token: string;
19
+ }
20
+ type SandboxConfig = NativeSandboxConfig | VercelSandboxConfig;
21
+
22
+ declare function createExecutionHono(serverConfig: ServerConfig, credentialStores: CredentialStoreRegistry, sandboxConfig?: SandboxConfig): Hono<hono_types.BlankEnv, hono_types.BlankSchema, "/">;
23
+
24
+ declare const app: hono.Hono<hono_types.BlankEnv, hono_types.BlankSchema, "/">;
25
+
26
+ declare function createExecutionApp(config?: {
27
+ serverConfig?: ServerConfig;
28
+ credentialStores?: CredentialStore[];
29
+ sandboxConfig?: SandboxConfig;
30
+ }): hono.Hono<hono_types.BlankEnv, hono_types.BlankSchema, "/">;
31
+
32
+ export { type NativeSandboxConfig, type SandboxConfig, type VercelSandboxConfig, createExecutionApp, createExecutionHono, app as default };