@decocms/runtime 0.0.1-testing-beta.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/config-schema.json +553 -0
- package/dist/admin.d.ts +5 -0
- package/dist/admin.js +21 -0
- package/dist/admin.js.map +1 -0
- package/dist/bindings/deconfig/index.d.ts +9 -0
- package/dist/bindings/deconfig/index.js +9 -0
- package/dist/bindings/deconfig/index.js.map +1 -0
- package/dist/bindings/index.d.ts +1053 -0
- package/dist/bindings/index.js +132 -0
- package/dist/bindings/index.js.map +1 -0
- package/dist/chunk-4XSQKJLU.js +105 -0
- package/dist/chunk-4XSQKJLU.js.map +1 -0
- package/dist/chunk-AOFOWQXY.js +27 -0
- package/dist/chunk-AOFOWQXY.js.map +1 -0
- package/dist/chunk-F6XZPFWM.js +127 -0
- package/dist/chunk-F6XZPFWM.js.map +1 -0
- package/dist/chunk-IB3KGSMB.js +150 -0
- package/dist/chunk-IB3KGSMB.js.map +1 -0
- package/dist/chunk-NKUMVYKI.js +128 -0
- package/dist/chunk-NKUMVYKI.js.map +1 -0
- package/dist/chunk-NMXOC7PT.js +763 -0
- package/dist/chunk-NMXOC7PT.js.map +1 -0
- package/dist/chunk-OSSKGDAG.js +395 -0
- package/dist/chunk-OSSKGDAG.js.map +1 -0
- package/dist/chunk-UHR3BLMF.js +92 -0
- package/dist/chunk-UHR3BLMF.js.map +1 -0
- package/dist/client.d.ts +28 -0
- package/dist/client.js +4 -0
- package/dist/client.js.map +1 -0
- package/dist/connection-DDtQYrea.d.ts +30 -0
- package/dist/drizzle.d.ts +47 -0
- package/dist/drizzle.js +121 -0
- package/dist/drizzle.js.map +1 -0
- package/dist/index-AKVjfH4b.d.ts +336 -0
- package/dist/index-kMsI0ELb.d.ts +530 -0
- package/dist/index.d.ts +8 -0
- package/dist/index.js +507 -0
- package/dist/index.js.map +1 -0
- package/dist/mastra.d.ts +8 -0
- package/dist/mastra.js +5 -0
- package/dist/mastra.js.map +1 -0
- package/dist/mcp-Bv7IAgWX.d.ts +109 -0
- package/dist/mcp-client.d.ts +236 -0
- package/dist/mcp-client.js +3 -0
- package/dist/mcp-client.js.map +1 -0
- package/dist/proxy.d.ts +10 -0
- package/dist/proxy.js +4 -0
- package/dist/proxy.js.map +1 -0
- package/dist/resources.d.ts +362 -0
- package/dist/resources.js +3 -0
- package/dist/resources.js.map +1 -0
- package/dist/views.d.ts +72 -0
- package/dist/views.js +3 -0
- package/dist/views.js.map +1 -0
- package/package.json +98 -0
- package/src/admin.ts +16 -0
- package/src/auth.ts +233 -0
- package/src/bindings/README.md +132 -0
- package/src/bindings/binder.ts +143 -0
- package/src/bindings/channels.ts +54 -0
- package/src/bindings/deconfig/helpers.ts +107 -0
- package/src/bindings/deconfig/index.ts +1 -0
- package/src/bindings/deconfig/resources.ts +659 -0
- package/src/bindings/deconfig/types.ts +106 -0
- package/src/bindings/index.ts +61 -0
- package/src/bindings/resources/bindings.ts +99 -0
- package/src/bindings/resources/helpers.ts +95 -0
- package/src/bindings/resources/schemas.ts +265 -0
- package/src/bindings/utils.ts +22 -0
- package/src/bindings/views.ts +14 -0
- package/src/bindings.ts +179 -0
- package/src/client.ts +201 -0
- package/src/connection.ts +53 -0
- package/src/drizzle.ts +201 -0
- package/src/http-client-transport.ts +66 -0
- package/src/index.ts +394 -0
- package/src/mastra.ts +666 -0
- package/src/mcp-client.ts +119 -0
- package/src/mcp.ts +171 -0
- package/src/proxy.ts +204 -0
- package/src/resources.ts +168 -0
- package/src/state.ts +44 -0
- package/src/views.ts +26 -0
- package/src/well-known.ts +20 -0
- package/src/wrangler.ts +146 -0
|
@@ -0,0 +1,336 @@
|
|
|
1
|
+
import { ExecutionContext as ExecutionContext$1 } from '@cloudflare/workers-types';
|
|
2
|
+
import { z } from 'zod';
|
|
3
|
+
import { ToolExecutionContext, ToolAction, Tool } from '@mastra/core';
|
|
4
|
+
import { RuntimeContext } from '@mastra/core/di';
|
|
5
|
+
import { Q as QueryResult } from './mcp-Bv7IAgWX.js';
|
|
6
|
+
import { M as MCPConnection } from './connection-DDtQYrea.js';
|
|
7
|
+
import { ResourceCreateInputSchema, ResourceUpdateInputSchema, ResourceDeleteInputSchema } from './resources.js';
|
|
8
|
+
|
|
9
|
+
declare const createRuntimeContext: (prev?: RuntimeContext<AppContext>) => RuntimeContext<AppContext<any>>;
|
|
10
|
+
/**
|
|
11
|
+
* creates a private tool that always ensure for athentication before being executed
|
|
12
|
+
*/
|
|
13
|
+
declare function createPrivateTool<TSchemaIn extends z.ZodSchema = z.ZodSchema, TSchemaOut extends z.ZodSchema | undefined = undefined, TSuspendSchema extends z.ZodSchema = z.ZodSchema, TResumeSchema extends z.ZodSchema = z.ZodSchema, TContext extends ToolExecutionContext<TSchemaIn> = ToolExecutionContext<TSchemaIn>, TExecute extends ToolAction<TSchemaIn, TSchemaOut, any, any, TContext>["execute"] = ToolAction<TSchemaIn, TSchemaOut, any, any, TContext>["execute"]>(opts: ToolAction<TSchemaIn, TSchemaOut, TSuspendSchema, TResumeSchema, TContext> & {
|
|
14
|
+
execute?: TExecute;
|
|
15
|
+
}): [TSchemaIn, TSchemaOut, TSuspendSchema, TResumeSchema, TExecute] extends [
|
|
16
|
+
z.ZodSchema,
|
|
17
|
+
z.ZodSchema,
|
|
18
|
+
z.ZodSchema,
|
|
19
|
+
z.ZodSchema,
|
|
20
|
+
Function
|
|
21
|
+
] ? Tool<TSchemaIn, TSchemaOut, TSuspendSchema, TResumeSchema, TContext> & {
|
|
22
|
+
inputSchema: TSchemaIn;
|
|
23
|
+
outputSchema: TSchemaOut;
|
|
24
|
+
execute: (context: TContext) => Promise<any>;
|
|
25
|
+
} : Tool<TSchemaIn, TSchemaOut, TSuspendSchema, TResumeSchema, TContext>;
|
|
26
|
+
interface StreamableTool<TSchemaIn extends z.ZodSchema = z.ZodSchema> {
|
|
27
|
+
id: string;
|
|
28
|
+
inputSchema: TSchemaIn;
|
|
29
|
+
streamable?: true;
|
|
30
|
+
description?: string;
|
|
31
|
+
execute: (input: ToolExecutionContext<TSchemaIn>) => Promise<Response>;
|
|
32
|
+
}
|
|
33
|
+
declare function createStreamableTool<TSchemaIn extends z.ZodSchema = z.ZodSchema>(streamableTool: StreamableTool<TSchemaIn>): StreamableTool<TSchemaIn>;
|
|
34
|
+
declare function createTool<TSchemaIn extends z.ZodSchema | undefined = undefined, TSchemaOut extends z.ZodSchema | undefined = undefined, TSuspendSchema extends z.ZodSchema = z.ZodSchema, TResumeSchema extends z.ZodSchema = z.ZodSchema, TContext extends ToolExecutionContext<TSchemaIn, TSuspendSchema, TResumeSchema> = ToolExecutionContext<TSchemaIn, TSuspendSchema, TResumeSchema>, TExecute extends ToolAction<TSchemaIn, TSchemaOut, TSuspendSchema, TResumeSchema, TContext>["execute"] = ToolAction<TSchemaIn, TSchemaOut, TSuspendSchema, TResumeSchema, TContext>["execute"]>(opts: ToolAction<TSchemaIn, TSchemaOut, TSuspendSchema, TResumeSchema, TContext> & {
|
|
35
|
+
execute?: TExecute;
|
|
36
|
+
}): [TSchemaIn, TSchemaOut, TSuspendSchema, TResumeSchema, TExecute] extends [
|
|
37
|
+
z.ZodSchema,
|
|
38
|
+
z.ZodSchema,
|
|
39
|
+
z.ZodSchema,
|
|
40
|
+
z.ZodSchema,
|
|
41
|
+
Function
|
|
42
|
+
] ? Tool<TSchemaIn, TSchemaOut, TSuspendSchema, TResumeSchema, TContext> & {
|
|
43
|
+
inputSchema: TSchemaIn;
|
|
44
|
+
outputSchema: TSchemaOut;
|
|
45
|
+
execute: (context: TContext) => Promise<any>;
|
|
46
|
+
} : Tool<TSchemaIn, TSchemaOut, TSuspendSchema, TResumeSchema, TContext>;
|
|
47
|
+
type ExecWithContext<TF extends (...args: any[]) => any> = (input: Omit<Parameters<TF>[0], "runtimeContext"> & {
|
|
48
|
+
runtimeContext: RuntimeContext<AppContext>;
|
|
49
|
+
}) => ReturnType<TF>;
|
|
50
|
+
interface ViewExport {
|
|
51
|
+
title: string;
|
|
52
|
+
icon: string;
|
|
53
|
+
url: string;
|
|
54
|
+
tools?: string[];
|
|
55
|
+
rules?: string[];
|
|
56
|
+
installBehavior?: "none" | "open" | "autoPin";
|
|
57
|
+
}
|
|
58
|
+
type Resources<Env = any, TSchema extends z.ZodTypeAny = never> = Array<(env: Env & DefaultEnv<TSchema>) => {
|
|
59
|
+
name: string;
|
|
60
|
+
icon: string;
|
|
61
|
+
title: string;
|
|
62
|
+
description?: string;
|
|
63
|
+
tools: {
|
|
64
|
+
read: (args: {
|
|
65
|
+
uri: string;
|
|
66
|
+
}) => Promise<unknown>;
|
|
67
|
+
search: (args: {
|
|
68
|
+
term: string;
|
|
69
|
+
cursor?: string;
|
|
70
|
+
limit?: number;
|
|
71
|
+
}) => Promise<unknown>;
|
|
72
|
+
create?: (args: z.infer<typeof ResourceCreateInputSchema>) => Promise<unknown>;
|
|
73
|
+
update?: (args: z.infer<typeof ResourceUpdateInputSchema>) => Promise<unknown>;
|
|
74
|
+
delete?: (args: z.infer<typeof ResourceDeleteInputSchema>) => Promise<unknown>;
|
|
75
|
+
};
|
|
76
|
+
views?: {
|
|
77
|
+
list?: {
|
|
78
|
+
url?: string;
|
|
79
|
+
tools?: string[];
|
|
80
|
+
rules?: string[];
|
|
81
|
+
};
|
|
82
|
+
detail?: {
|
|
83
|
+
url?: string;
|
|
84
|
+
mimeTypePattern?: string;
|
|
85
|
+
resourceName?: string;
|
|
86
|
+
tools?: string[];
|
|
87
|
+
rules?: string[];
|
|
88
|
+
};
|
|
89
|
+
};
|
|
90
|
+
}>;
|
|
91
|
+
interface Integration {
|
|
92
|
+
id: string;
|
|
93
|
+
appId: string;
|
|
94
|
+
}
|
|
95
|
+
type CreatedTool = ReturnType<typeof createTool> | ReturnType<typeof createStreamableTool>;
|
|
96
|
+
declare function isStreamableTool(tool: CreatedTool): tool is StreamableTool;
|
|
97
|
+
interface CreateMCPServerOptions<Env = any, TSchema extends z.ZodTypeAny = never> {
|
|
98
|
+
before?: (env: Env & DefaultEnv<TSchema>) => Promise<void> | void;
|
|
99
|
+
oauth?: {
|
|
100
|
+
state?: TSchema;
|
|
101
|
+
scopes?: string[];
|
|
102
|
+
};
|
|
103
|
+
views?: (env: Env & DefaultEnv<TSchema>) => Promise<ViewExport[]> | ViewExport[];
|
|
104
|
+
resources?: Resources<Env, TSchema>;
|
|
105
|
+
tools?: Array<(env: Env & DefaultEnv<TSchema>) => Promise<CreatedTool> | CreatedTool | CreatedTool[] | Promise<CreatedTool[]>> | ((env: Env & DefaultEnv<TSchema>) => CreatedTool[] | Promise<CreatedTool[]>);
|
|
106
|
+
}
|
|
107
|
+
type Fetch<TEnv = any> = (req: Request, env: TEnv, ctx: ExecutionContext) => Promise<Response> | Response;
|
|
108
|
+
interface AppContext<TEnv = any> {
|
|
109
|
+
env: TEnv;
|
|
110
|
+
ctx: {
|
|
111
|
+
waitUntil: (promise: Promise<any>) => void;
|
|
112
|
+
};
|
|
113
|
+
req?: Request;
|
|
114
|
+
}
|
|
115
|
+
type CallTool = (opts: {
|
|
116
|
+
toolCallId: string;
|
|
117
|
+
toolCallInput: any;
|
|
118
|
+
}) => Promise<any>;
|
|
119
|
+
type MCPServer<TEnv = any, TSchema extends z.ZodTypeAny = never> = {
|
|
120
|
+
fetch: Fetch<TEnv & DefaultEnv<TSchema>>;
|
|
121
|
+
callTool: CallTool;
|
|
122
|
+
};
|
|
123
|
+
declare const createMCPServer: <TEnv = any, TSchema extends z.ZodTypeAny = never>(options: CreateMCPServerOptions<TEnv, TSchema>) => MCPServer<TEnv, TSchema>;
|
|
124
|
+
|
|
125
|
+
interface BindingBase {
|
|
126
|
+
name: string;
|
|
127
|
+
}
|
|
128
|
+
interface MCPIntegrationIdBinding extends BindingBase {
|
|
129
|
+
type: "mcp";
|
|
130
|
+
/**
|
|
131
|
+
* If not provided, will return a function that takes the integration id and return the binding implementation..
|
|
132
|
+
*/
|
|
133
|
+
integration_id: string;
|
|
134
|
+
}
|
|
135
|
+
interface MCPIntegrationNameBinding extends BindingBase {
|
|
136
|
+
type: "mcp";
|
|
137
|
+
/**
|
|
138
|
+
* The name of the integration to bind.
|
|
139
|
+
*/
|
|
140
|
+
integration_name: string;
|
|
141
|
+
}
|
|
142
|
+
interface ContractClause {
|
|
143
|
+
id: string;
|
|
144
|
+
price: string | number;
|
|
145
|
+
description?: string;
|
|
146
|
+
}
|
|
147
|
+
interface Contract {
|
|
148
|
+
body: string;
|
|
149
|
+
clauses: ContractClause[];
|
|
150
|
+
}
|
|
151
|
+
interface ContractBinding extends BindingBase {
|
|
152
|
+
type: "contract";
|
|
153
|
+
/**
|
|
154
|
+
* The clauses of this contract
|
|
155
|
+
*/
|
|
156
|
+
contract: Contract;
|
|
157
|
+
}
|
|
158
|
+
type MCPBinding = MCPIntegrationIdBinding | MCPIntegrationNameBinding;
|
|
159
|
+
type Binding = MCPBinding | ContractBinding;
|
|
160
|
+
interface MigrationBase {
|
|
161
|
+
tag: string;
|
|
162
|
+
}
|
|
163
|
+
interface NewClassMigration extends MigrationBase {
|
|
164
|
+
new_classes?: string[];
|
|
165
|
+
new_sqlite_classes?: string[];
|
|
166
|
+
}
|
|
167
|
+
interface DeletedClassMigration extends MigrationBase {
|
|
168
|
+
deleted_classes: string[];
|
|
169
|
+
}
|
|
170
|
+
interface RenamedClassMigration extends MigrationBase {
|
|
171
|
+
renamed_classes: {
|
|
172
|
+
from: string;
|
|
173
|
+
to: string;
|
|
174
|
+
}[];
|
|
175
|
+
}
|
|
176
|
+
type Migration = NewClassMigration | DeletedClassMigration | RenamedClassMigration;
|
|
177
|
+
interface KVNamespace {
|
|
178
|
+
binding: string;
|
|
179
|
+
id: string;
|
|
180
|
+
}
|
|
181
|
+
interface Triggers {
|
|
182
|
+
crons: string[];
|
|
183
|
+
}
|
|
184
|
+
interface Route {
|
|
185
|
+
pattern: string;
|
|
186
|
+
custom_domain?: boolean;
|
|
187
|
+
}
|
|
188
|
+
interface WranglerConfig {
|
|
189
|
+
name: string;
|
|
190
|
+
main?: string;
|
|
191
|
+
scope?: string;
|
|
192
|
+
main_module?: string;
|
|
193
|
+
routes?: Route[];
|
|
194
|
+
compatibility_date?: string;
|
|
195
|
+
compatibility_flags?: string[];
|
|
196
|
+
vars?: Record<string, string>;
|
|
197
|
+
kv_namespaces?: KVNamespace[];
|
|
198
|
+
triggers?: Triggers;
|
|
199
|
+
ai?: {
|
|
200
|
+
binding: string;
|
|
201
|
+
};
|
|
202
|
+
browser?: {
|
|
203
|
+
binding: string;
|
|
204
|
+
};
|
|
205
|
+
durable_objects?: {
|
|
206
|
+
bindings?: {
|
|
207
|
+
name: string;
|
|
208
|
+
class_name: string;
|
|
209
|
+
}[];
|
|
210
|
+
};
|
|
211
|
+
hyperdrive?: {
|
|
212
|
+
binding: string;
|
|
213
|
+
id: string;
|
|
214
|
+
localConnectionString: string;
|
|
215
|
+
}[];
|
|
216
|
+
d1_databases?: {
|
|
217
|
+
database_name: string;
|
|
218
|
+
database_id?: string;
|
|
219
|
+
binding: string;
|
|
220
|
+
}[];
|
|
221
|
+
queues?: {
|
|
222
|
+
consumers?: {
|
|
223
|
+
queue: string;
|
|
224
|
+
max_batch_timeout: number;
|
|
225
|
+
}[];
|
|
226
|
+
producers?: {
|
|
227
|
+
queue: string;
|
|
228
|
+
binding: string;
|
|
229
|
+
}[];
|
|
230
|
+
};
|
|
231
|
+
workflows?: {
|
|
232
|
+
name: string;
|
|
233
|
+
binding: string;
|
|
234
|
+
class_name?: string;
|
|
235
|
+
script_name?: string;
|
|
236
|
+
}[];
|
|
237
|
+
migrations?: Migration[];
|
|
238
|
+
assets?: {
|
|
239
|
+
directory?: string;
|
|
240
|
+
binding?: string;
|
|
241
|
+
jwt?: string;
|
|
242
|
+
not_found_handling?: "none" | "404-page" | "single-page-application";
|
|
243
|
+
run_worker_first?: boolean;
|
|
244
|
+
};
|
|
245
|
+
keep_assets?: boolean;
|
|
246
|
+
deco?: {
|
|
247
|
+
enable_workflows?: boolean;
|
|
248
|
+
workspace?: string;
|
|
249
|
+
local?: boolean;
|
|
250
|
+
integration?: {
|
|
251
|
+
friendlyName?: string;
|
|
252
|
+
icon?: string;
|
|
253
|
+
description?: string;
|
|
254
|
+
};
|
|
255
|
+
bindings?: Binding[];
|
|
256
|
+
};
|
|
257
|
+
}
|
|
258
|
+
|
|
259
|
+
type WorkspaceClientContext = Omit<RequestContext, "ensureAuthenticated" | "state" | "fetchIntegrationMetadata">;
|
|
260
|
+
declare const proxyConnectionForId: (integrationId: string, ctx: Omit<WorkspaceClientContext, "token"> & {
|
|
261
|
+
token?: string;
|
|
262
|
+
cookie?: string;
|
|
263
|
+
}, decocmsApiUrl?: string, appName?: string) => MCPConnection;
|
|
264
|
+
|
|
265
|
+
interface WorkspaceDB {
|
|
266
|
+
query: (params: {
|
|
267
|
+
sql: string;
|
|
268
|
+
params: string[];
|
|
269
|
+
}) => Promise<{
|
|
270
|
+
result: QueryResult[];
|
|
271
|
+
}>;
|
|
272
|
+
}
|
|
273
|
+
interface DefaultEnv<TSchema extends z.ZodTypeAny = any> {
|
|
274
|
+
DECO_REQUEST_CONTEXT: RequestContext<TSchema>;
|
|
275
|
+
DECO_APP_NAME: string;
|
|
276
|
+
DECO_APP_SLUG: string;
|
|
277
|
+
DECO_APP_ENTRYPOINT: string;
|
|
278
|
+
DECO_API_URL?: string;
|
|
279
|
+
DECO_WORKSPACE: string;
|
|
280
|
+
DECO_API_JWT_PUBLIC_KEY: string;
|
|
281
|
+
DECO_APP_DEPLOYMENT_ID: string;
|
|
282
|
+
DECO_BINDINGS: string;
|
|
283
|
+
DECO_API_TOKEN: string;
|
|
284
|
+
DECO_WORKSPACE_DB: WorkspaceDB & {
|
|
285
|
+
forContext: (ctx: RequestContext) => WorkspaceDB;
|
|
286
|
+
};
|
|
287
|
+
IS_LOCAL: boolean;
|
|
288
|
+
[key: string]: unknown;
|
|
289
|
+
}
|
|
290
|
+
interface BindingsObject {
|
|
291
|
+
bindings?: Binding[];
|
|
292
|
+
}
|
|
293
|
+
declare const WorkersMCPBindings: {
|
|
294
|
+
parse: (bindings?: string) => Binding[];
|
|
295
|
+
stringify: (bindings: Binding[]) => string;
|
|
296
|
+
};
|
|
297
|
+
interface UserDefaultExport<TUserEnv = Record<string, unknown>, TSchema extends z.ZodTypeAny = never, TEnv = TUserEnv & DefaultEnv<TSchema>> extends CreateMCPServerOptions<TEnv, TSchema> {
|
|
298
|
+
fetch?: (req: Request, env: TEnv, ctx: ExecutionContext$1) => Promise<Response> | Response;
|
|
299
|
+
}
|
|
300
|
+
interface User {
|
|
301
|
+
id: string;
|
|
302
|
+
email: string;
|
|
303
|
+
workspace: string;
|
|
304
|
+
user_metadata: {
|
|
305
|
+
avatar_url: string;
|
|
306
|
+
full_name: string;
|
|
307
|
+
picture: string;
|
|
308
|
+
[key: string]: unknown;
|
|
309
|
+
};
|
|
310
|
+
}
|
|
311
|
+
interface RequestContext<TSchema extends z.ZodTypeAny = any> {
|
|
312
|
+
state: z.infer<TSchema>;
|
|
313
|
+
branch?: string;
|
|
314
|
+
token: string;
|
|
315
|
+
workspace: string;
|
|
316
|
+
ensureAuthenticated: (options?: {
|
|
317
|
+
workspaceHint?: string;
|
|
318
|
+
}) => User | undefined;
|
|
319
|
+
callerApp?: string;
|
|
320
|
+
integrationId?: string;
|
|
321
|
+
}
|
|
322
|
+
declare class UnauthorizedError extends Error {
|
|
323
|
+
redirectTo: URL;
|
|
324
|
+
constructor(message: string, redirectTo: URL);
|
|
325
|
+
}
|
|
326
|
+
declare const withBindings: <TEnv>({ env: _env, server, tokenOrContext, origin, url, branch, }: {
|
|
327
|
+
env: TEnv;
|
|
328
|
+
server: MCPServer<TEnv, any>;
|
|
329
|
+
tokenOrContext?: string | RequestContext;
|
|
330
|
+
origin?: string | null;
|
|
331
|
+
url?: string;
|
|
332
|
+
branch?: string | null;
|
|
333
|
+
}) => TEnv;
|
|
334
|
+
declare const withRuntime: <TEnv, TSchema extends z.ZodTypeAny = never>(userFns: UserDefaultExport<TEnv, TSchema>) => ExportedHandler<TEnv & DefaultEnv<TSchema>>;
|
|
335
|
+
|
|
336
|
+
export { type AppContext as A, type BindingsObject as B, type CreatedTool as C, type DefaultEnv as D, type ExecWithContext as E, type Fetch as F, type Integration as I, type MCPServer as M, type Resources as R, type StreamableTool as S, type UserDefaultExport as U, type ViewExport as V, type WorkspaceDB as W, createRuntimeContext as a, createStreamableTool as b, createPrivateTool as c, createTool as d, type CreateMCPServerOptions as e, createMCPServer as f, WorkersMCPBindings as g, type User as h, isStreamableTool as i, type RequestContext as j, UnauthorizedError as k, withRuntime as l, type Contract as m, type Migration as n, type WranglerConfig as o, proxyConnectionForId as p, withBindings as w };
|