agents 0.0.0-ca5cdf0 → 0.0.0-cb5957e
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/README.md +255 -27
- package/dist/_esm-LV5FJ3HK.js +3922 -0
- package/dist/_esm-LV5FJ3HK.js.map +1 -0
- package/dist/ai-chat-agent.d.ts +12 -7
- package/dist/ai-chat-agent.js +462 -48
- package/dist/ai-chat-agent.js.map +1 -1
- package/dist/ai-chat-v5-migration.d.ts +152 -0
- package/dist/ai-chat-v5-migration.js +20 -0
- package/dist/ai-chat-v5-migration.js.map +1 -0
- package/dist/ai-react.d.ts +68 -70
- package/dist/ai-react.js +252 -99
- package/dist/ai-react.js.map +1 -1
- package/dist/ai-types.d.ts +37 -19
- package/dist/ai-types.js +7 -0
- package/dist/ccip-CMBYN64O.js +15 -0
- package/dist/ccip-CMBYN64O.js.map +1 -0
- package/dist/chunk-254F4GDT.js +1343 -0
- package/dist/chunk-254F4GDT.js.map +1 -0
- package/dist/chunk-3OT2NNEW.js +941 -0
- package/dist/chunk-3OT2NNEW.js.map +1 -0
- package/dist/chunk-5Y6BEZDY.js +276 -0
- package/dist/chunk-5Y6BEZDY.js.map +1 -0
- package/dist/chunk-BER7KXUJ.js +18 -0
- package/dist/chunk-BER7KXUJ.js.map +1 -0
- package/dist/chunk-JJBFIGUC.js +5202 -0
- package/dist/chunk-JJBFIGUC.js.map +1 -0
- package/dist/chunk-PR4QN5HX.js +43 -0
- package/dist/chunk-PR4QN5HX.js.map +1 -0
- package/dist/{chunk-NKZZ66QY.js → chunk-QEVM4BVL.js} +5 -5
- package/dist/chunk-QEVM4BVL.js.map +1 -0
- package/dist/chunk-TYAY6AU6.js +159 -0
- package/dist/chunk-TYAY6AU6.js.map +1 -0
- package/dist/chunk-UJVEAURM.js +150 -0
- package/dist/chunk-UJVEAURM.js.map +1 -0
- package/dist/{chunk-767EASBA.js → chunk-Z44WASMA.js} +11 -3
- package/dist/chunk-Z44WASMA.js.map +1 -0
- package/dist/client-DVoPb3-C.d.ts +5120 -0
- package/dist/client.d.ts +2 -2
- package/dist/client.js +3 -1
- package/dist/codemode/ai.d.ts +25 -0
- package/dist/codemode/ai.js +5112 -0
- package/dist/codemode/ai.js.map +1 -0
- package/dist/index.d.ts +196 -51
- package/dist/index.js +14 -4
- package/dist/mcp/client.d.ts +10 -1053
- package/dist/mcp/client.js +2 -1
- package/dist/mcp/do-oauth-client-provider.d.ts +1 -0
- package/dist/mcp/do-oauth-client-provider.js +2 -1
- package/dist/mcp/index.d.ts +58 -63
- package/dist/mcp/index.js +953 -637
- package/dist/mcp/index.js.map +1 -1
- package/dist/mcp/x402.d.ts +39 -0
- package/dist/mcp/x402.js +3195 -0
- package/dist/mcp/x402.js.map +1 -0
- package/dist/mcp-BH1fJeiU.d.ts +58 -0
- package/dist/observability/index.d.ts +34 -0
- package/dist/observability/index.js +12 -0
- package/dist/observability/index.js.map +1 -0
- package/dist/react.d.ts +18 -10
- package/dist/react.js +107 -7
- package/dist/react.js.map +1 -1
- package/dist/schedule.d.ts +79 -5
- package/dist/schedule.js +17 -2
- package/dist/schedule.js.map +1 -1
- package/dist/secp256k1-M22GZP2U.js +2193 -0
- package/dist/secp256k1-M22GZP2U.js.map +1 -0
- package/package.json +38 -9
- package/src/index.ts +949 -175
- package/dist/chunk-4CIGD73X.js +0 -791
- package/dist/chunk-4CIGD73X.js.map +0 -1
- package/dist/chunk-767EASBA.js.map +0 -1
- package/dist/chunk-E3LCYPCB.js +0 -469
- package/dist/chunk-E3LCYPCB.js.map +0 -1
- package/dist/chunk-NKZZ66QY.js.map +0 -1
package/dist/index.d.ts
CHANGED
|
@@ -1,17 +1,26 @@
|
|
|
1
|
+
import { env } from "cloudflare:workers";
|
|
1
2
|
import { Client } from "@modelcontextprotocol/sdk/client/index.js";
|
|
2
3
|
import {
|
|
3
4
|
ServerCapabilities,
|
|
4
5
|
Tool,
|
|
5
6
|
Prompt,
|
|
6
|
-
Resource
|
|
7
|
+
Resource
|
|
7
8
|
} from "@modelcontextprotocol/sdk/types.js";
|
|
8
9
|
import { Server, Connection, PartyServerOptions } from "partyserver";
|
|
9
10
|
export { Connection, ConnectionContext, WSMessage } from "partyserver";
|
|
10
|
-
import {
|
|
11
|
+
import {
|
|
12
|
+
e as MCPClientManager,
|
|
13
|
+
T as TransportType,
|
|
14
|
+
f as MCPConnectionState
|
|
15
|
+
} from "./client-DVoPb3-C.js";
|
|
16
|
+
import { Observability } from "./observability/index.js";
|
|
17
|
+
import { MessageType } from "./ai-types.js";
|
|
11
18
|
import "zod";
|
|
12
|
-
import "@modelcontextprotocol/sdk/client/sse.js";
|
|
13
19
|
import "@modelcontextprotocol/sdk/shared/protocol.js";
|
|
14
20
|
import "ai";
|
|
21
|
+
import "./mcp-BH1fJeiU.js";
|
|
22
|
+
import "@modelcontextprotocol/sdk/client/sse.js";
|
|
23
|
+
import "@modelcontextprotocol/sdk/client/streamableHttp.js";
|
|
15
24
|
import "./mcp/do-oauth-client-provider.js";
|
|
16
25
|
import "@modelcontextprotocol/sdk/client/auth.js";
|
|
17
26
|
import "@modelcontextprotocol/sdk/shared/auth.js";
|
|
@@ -29,14 +38,14 @@ type RPCRequest = {
|
|
|
29
38
|
* State update message from client
|
|
30
39
|
*/
|
|
31
40
|
type StateUpdateMessage = {
|
|
32
|
-
type:
|
|
41
|
+
type: MessageType.CF_AGENT_STATE;
|
|
33
42
|
state: unknown;
|
|
34
43
|
};
|
|
35
44
|
/**
|
|
36
45
|
* RPC response message to client
|
|
37
46
|
*/
|
|
38
47
|
type RPCResponse = {
|
|
39
|
-
type:
|
|
48
|
+
type: MessageType.RPC;
|
|
40
49
|
id: string;
|
|
41
50
|
} & (
|
|
42
51
|
| {
|
|
@@ -67,12 +76,24 @@ type CallableMetadata = {
|
|
|
67
76
|
* Decorator that marks a method as callable by clients
|
|
68
77
|
* @param metadata Optional metadata about the callable method
|
|
69
78
|
*/
|
|
70
|
-
declare function
|
|
79
|
+
declare function callable(
|
|
71
80
|
metadata?: CallableMetadata
|
|
72
81
|
): <This, Args extends unknown[], Return>(
|
|
73
82
|
target: (this: This, ...args: Args) => Return,
|
|
74
83
|
context: ClassMethodDecoratorContext
|
|
75
84
|
) => (this: This, ...args: Args) => Return;
|
|
85
|
+
/**
|
|
86
|
+
* Decorator that marks a method as callable by clients
|
|
87
|
+
* @deprecated this has been renamed to callable, and unstable_callable will be removed in the next major version
|
|
88
|
+
* @param metadata Optional metadata about the callable method
|
|
89
|
+
*/
|
|
90
|
+
declare const unstable_callable: (metadata?: CallableMetadata) => void;
|
|
91
|
+
type QueueItem<T = string> = {
|
|
92
|
+
id: string;
|
|
93
|
+
payload: T;
|
|
94
|
+
callback: keyof Agent<unknown>;
|
|
95
|
+
created_at: number;
|
|
96
|
+
};
|
|
76
97
|
/**
|
|
77
98
|
* Represents a scheduled task within an Agent
|
|
78
99
|
* @template T Type of the payload data
|
|
@@ -108,11 +129,12 @@ type Schedule<T = string> = {
|
|
|
108
129
|
cron: string;
|
|
109
130
|
}
|
|
110
131
|
);
|
|
132
|
+
|
|
111
133
|
/**
|
|
112
134
|
* MCP Server state update message from server -> Client
|
|
113
135
|
*/
|
|
114
136
|
type MCPServerMessage = {
|
|
115
|
-
type:
|
|
137
|
+
type: MessageType.CF_AGENT_MCP_SERVERS;
|
|
116
138
|
mcp: MCPServersState;
|
|
117
139
|
};
|
|
118
140
|
type MCPServersState = {
|
|
@@ -127,26 +149,32 @@ type MCPServer = {
|
|
|
127
149
|
name: string;
|
|
128
150
|
server_url: string;
|
|
129
151
|
auth_url: string | null;
|
|
130
|
-
state:
|
|
152
|
+
state: MCPConnectionState;
|
|
131
153
|
instructions: string | null;
|
|
132
154
|
capabilities: ServerCapabilities | null;
|
|
133
155
|
};
|
|
134
156
|
declare function getCurrentAgent<
|
|
135
|
-
T extends Agent<unknown, unknown> = Agent<unknown, unknown
|
|
157
|
+
T extends Agent<unknown, unknown> = Agent<unknown, unknown>
|
|
136
158
|
>(): {
|
|
137
159
|
agent: T | undefined;
|
|
138
160
|
connection: Connection | undefined;
|
|
139
|
-
request: Request
|
|
161
|
+
request: Request | undefined;
|
|
162
|
+
email: AgentEmail | undefined;
|
|
140
163
|
};
|
|
141
164
|
/**
|
|
142
165
|
* Base class for creating Agent implementations
|
|
143
166
|
* @template Env Environment type containing bindings
|
|
144
167
|
* @template State State type to store within the Agent
|
|
145
168
|
*/
|
|
146
|
-
declare class Agent<
|
|
169
|
+
declare class Agent<
|
|
170
|
+
Env = typeof env,
|
|
171
|
+
State = unknown,
|
|
172
|
+
Props extends Record<string, unknown> = Record<string, unknown>
|
|
173
|
+
> extends Server<Env, Props> {
|
|
147
174
|
private _state;
|
|
175
|
+
private _disposables;
|
|
148
176
|
private _ParentClass;
|
|
149
|
-
mcp: MCPClientManager;
|
|
177
|
+
readonly mcp: MCPClientManager;
|
|
150
178
|
/**
|
|
151
179
|
* Initial state for the Agent
|
|
152
180
|
* Override to provide default state values
|
|
@@ -163,6 +191,10 @@ declare class Agent<Env, State = unknown> extends Server<Env> {
|
|
|
163
191
|
/** Whether the Agent should hibernate when inactive */
|
|
164
192
|
hibernate: boolean;
|
|
165
193
|
};
|
|
194
|
+
/**
|
|
195
|
+
* The observability implementation to use for the Agent
|
|
196
|
+
*/
|
|
197
|
+
observability?: Observability;
|
|
166
198
|
/**
|
|
167
199
|
* Execute SQL queries against the Agent's database
|
|
168
200
|
* @template T Type of the returned rows
|
|
@@ -188,17 +220,75 @@ declare class Agent<Env, State = unknown> extends Server<Env> {
|
|
|
188
220
|
*/
|
|
189
221
|
onStateUpdate(state: State | undefined, source: Connection | "server"): void;
|
|
190
222
|
/**
|
|
191
|
-
* Called when the Agent receives an email
|
|
223
|
+
* Called when the Agent receives an email via routeAgentEmail()
|
|
224
|
+
* Override this method to handle incoming emails
|
|
192
225
|
* @param email Email message to process
|
|
193
226
|
*/
|
|
194
|
-
|
|
227
|
+
_onEmail(email: AgentEmail): Promise<void>;
|
|
228
|
+
/**
|
|
229
|
+
* Reply to an email
|
|
230
|
+
* @param email The email to reply to
|
|
231
|
+
* @param options Options for the reply
|
|
232
|
+
* @returns void
|
|
233
|
+
*/
|
|
234
|
+
replyToEmail(
|
|
235
|
+
email: AgentEmail,
|
|
236
|
+
options: {
|
|
237
|
+
fromName: string;
|
|
238
|
+
subject?: string | undefined;
|
|
239
|
+
body: string;
|
|
240
|
+
contentType?: string;
|
|
241
|
+
headers?: Record<string, string>;
|
|
242
|
+
}
|
|
243
|
+
): Promise<void>;
|
|
195
244
|
private _tryCatch;
|
|
245
|
+
/**
|
|
246
|
+
* Automatically wrap custom methods with agent context
|
|
247
|
+
* This ensures getCurrentAgent() works in all custom methods without decorators
|
|
248
|
+
*/
|
|
249
|
+
private _autoWrapCustomMethods;
|
|
196
250
|
onError(connection: Connection, error: unknown): void | Promise<void>;
|
|
197
251
|
onError(error: unknown): void | Promise<void>;
|
|
198
252
|
/**
|
|
199
253
|
* Render content (not implemented in base class)
|
|
200
254
|
*/
|
|
201
255
|
render(): void;
|
|
256
|
+
/**
|
|
257
|
+
* Queue a task to be executed in the future
|
|
258
|
+
* @param payload Payload to pass to the callback
|
|
259
|
+
* @param callback Name of the method to call
|
|
260
|
+
* @returns The ID of the queued task
|
|
261
|
+
*/
|
|
262
|
+
queue<T = unknown>(callback: keyof this, payload: T): Promise<string>;
|
|
263
|
+
private _flushingQueue;
|
|
264
|
+
private _flushQueue;
|
|
265
|
+
/**
|
|
266
|
+
* Dequeue a task by ID
|
|
267
|
+
* @param id ID of the task to dequeue
|
|
268
|
+
*/
|
|
269
|
+
dequeue(id: string): Promise<void>;
|
|
270
|
+
/**
|
|
271
|
+
* Dequeue all tasks
|
|
272
|
+
*/
|
|
273
|
+
dequeueAll(): Promise<void>;
|
|
274
|
+
/**
|
|
275
|
+
* Dequeue all tasks by callback
|
|
276
|
+
* @param callback Name of the callback to dequeue
|
|
277
|
+
*/
|
|
278
|
+
dequeueAllByCallback(callback: string): Promise<void>;
|
|
279
|
+
/**
|
|
280
|
+
* Get a queued task by ID
|
|
281
|
+
* @param id ID of the task to get
|
|
282
|
+
* @returns The task or undefined if not found
|
|
283
|
+
*/
|
|
284
|
+
getQueue(id: string): Promise<QueueItem<string> | undefined>;
|
|
285
|
+
/**
|
|
286
|
+
* Get all queues by key and value
|
|
287
|
+
* @param key Key to filter by
|
|
288
|
+
* @param value Value to filter by
|
|
289
|
+
* @returns Array of matching QueueItem objects
|
|
290
|
+
*/
|
|
291
|
+
getQueues(key: string, value: string): Promise<QueueItem<string>[]>;
|
|
202
292
|
/**
|
|
203
293
|
* Schedule a task to be executed in the future
|
|
204
294
|
* @template T Type of the payload data
|
|
@@ -261,55 +351,40 @@ declare class Agent<Env, State = unknown> extends Server<Env> {
|
|
|
261
351
|
/**
|
|
262
352
|
* Connect to a new MCP Server
|
|
263
353
|
*
|
|
354
|
+
* @param serverName Name of the MCP server
|
|
264
355
|
* @param url MCP Server SSE URL
|
|
265
|
-
* @param callbackHost Base host for the agent, used for the redirect URI.
|
|
356
|
+
* @param callbackHost Base host for the agent, used for the redirect URI. If not provided, will be derived from the current request.
|
|
266
357
|
* @param agentsPrefix agents routing prefix if not using `agents`
|
|
267
|
-
* @param options MCP client and transport
|
|
358
|
+
* @param options MCP client and transport options
|
|
268
359
|
* @returns authUrl
|
|
269
360
|
*/
|
|
270
361
|
addMcpServer(
|
|
271
362
|
serverName: string,
|
|
272
363
|
url: string,
|
|
273
|
-
callbackHost
|
|
364
|
+
callbackHost?: string,
|
|
274
365
|
agentsPrefix?: string,
|
|
275
366
|
options?: {
|
|
276
367
|
client?: ConstructorParameters<typeof Client>[1];
|
|
277
|
-
transport?: {
|
|
278
|
-
headers: HeadersInit;
|
|
279
|
-
};
|
|
280
|
-
}
|
|
281
|
-
): Promise<{
|
|
282
|
-
id: string;
|
|
283
|
-
authUrl: string | undefined;
|
|
284
|
-
}>;
|
|
285
|
-
_connectToMcpServerInternal(
|
|
286
|
-
_serverName: string,
|
|
287
|
-
url: string,
|
|
288
|
-
callbackUrl: string,
|
|
289
|
-
options?: {
|
|
290
|
-
client?: ConstructorParameters<typeof Client>[1];
|
|
291
|
-
/**
|
|
292
|
-
* We don't expose the normal set of transport options because:
|
|
293
|
-
* 1) we can't serialize things like the auth provider or a fetch function into the DB for reconnection purposes
|
|
294
|
-
* 2) We probably want these options to be agnostic to the transport type (SSE vs Streamable)
|
|
295
|
-
*
|
|
296
|
-
* This has the limitation that you can't override fetch, but I think headers should handle nearly all cases needed (i.e. non-standard bearer auth).
|
|
297
|
-
*/
|
|
298
368
|
transport?: {
|
|
299
369
|
headers?: HeadersInit;
|
|
370
|
+
type?: TransportType;
|
|
300
371
|
};
|
|
301
|
-
},
|
|
302
|
-
reconnect?: {
|
|
303
|
-
id: string;
|
|
304
|
-
oauthClientId?: string;
|
|
305
372
|
}
|
|
306
373
|
): Promise<{
|
|
307
374
|
id: string;
|
|
308
375
|
authUrl: string | undefined;
|
|
309
|
-
clientId: string | undefined;
|
|
310
376
|
}>;
|
|
377
|
+
private _connectToMcpServerInternal;
|
|
311
378
|
removeMcpServer(id: string): Promise<void>;
|
|
312
379
|
getMcpServers(): MCPServersState;
|
|
380
|
+
private broadcastMcpServers;
|
|
381
|
+
/**
|
|
382
|
+
* Handle OAuth callback response using MCPClientManager configuration
|
|
383
|
+
* @param result OAuth callback result
|
|
384
|
+
* @param request The original request (needed for base URL)
|
|
385
|
+
* @returns Response for the OAuth callback
|
|
386
|
+
*/
|
|
387
|
+
private handleOAuthCallbackResponse;
|
|
313
388
|
}
|
|
314
389
|
/**
|
|
315
390
|
* Namespace for creating Agent instances
|
|
@@ -342,17 +417,72 @@ declare function routeAgentRequest<Env>(
|
|
|
342
417
|
env: Env,
|
|
343
418
|
options?: AgentOptions<Env>
|
|
344
419
|
): Promise<Response | null>;
|
|
420
|
+
type EmailResolver<Env> = (
|
|
421
|
+
email: ForwardableEmailMessage,
|
|
422
|
+
env: Env
|
|
423
|
+
) => Promise<{
|
|
424
|
+
agentName: string;
|
|
425
|
+
agentId: string;
|
|
426
|
+
} | null>;
|
|
427
|
+
/**
|
|
428
|
+
* Create a resolver that uses the message-id header to determine the agent to route the email to
|
|
429
|
+
* @returns A function that resolves the agent to route the email to
|
|
430
|
+
*/
|
|
431
|
+
declare function createHeaderBasedEmailResolver<Env>(): EmailResolver<Env>;
|
|
432
|
+
/**
|
|
433
|
+
* Create a resolver that uses the email address to determine the agent to route the email to
|
|
434
|
+
* @param defaultAgentName The default agent name to use if the email address does not contain a sub-address
|
|
435
|
+
* @returns A function that resolves the agent to route the email to
|
|
436
|
+
*/
|
|
437
|
+
declare function createAddressBasedEmailResolver<Env>(
|
|
438
|
+
defaultAgentName: string
|
|
439
|
+
): EmailResolver<Env>;
|
|
440
|
+
/**
|
|
441
|
+
* Create a resolver that uses the agentName and agentId to determine the agent to route the email to
|
|
442
|
+
* @param agentName The name of the agent to route the email to
|
|
443
|
+
* @param agentId The id of the agent to route the email to
|
|
444
|
+
* @returns A function that resolves the agent to route the email to
|
|
445
|
+
*/
|
|
446
|
+
declare function createCatchAllEmailResolver<Env>(
|
|
447
|
+
agentName: string,
|
|
448
|
+
agentId: string
|
|
449
|
+
): EmailResolver<Env>;
|
|
450
|
+
type EmailRoutingOptions<Env> = AgentOptions<Env> & {
|
|
451
|
+
resolver: EmailResolver<Env>;
|
|
452
|
+
};
|
|
345
453
|
/**
|
|
346
454
|
* Route an email to the appropriate Agent
|
|
347
|
-
* @param email
|
|
348
|
-
* @param env
|
|
349
|
-
* @param options
|
|
455
|
+
* @param email The email to route
|
|
456
|
+
* @param env The environment containing the Agent bindings
|
|
457
|
+
* @param options The options for routing the email
|
|
458
|
+
* @returns A promise that resolves when the email has been routed
|
|
350
459
|
*/
|
|
351
460
|
declare function routeAgentEmail<Env>(
|
|
352
|
-
|
|
353
|
-
|
|
354
|
-
|
|
461
|
+
email: ForwardableEmailMessage,
|
|
462
|
+
env: Env,
|
|
463
|
+
options: EmailRoutingOptions<Env>
|
|
355
464
|
): Promise<void>;
|
|
465
|
+
type AgentEmail = {
|
|
466
|
+
from: string;
|
|
467
|
+
to: string;
|
|
468
|
+
getRaw: () => Promise<Uint8Array>;
|
|
469
|
+
headers: Headers;
|
|
470
|
+
rawSize: number;
|
|
471
|
+
setReject: (reason: string) => void;
|
|
472
|
+
forward: (rcptTo: string, headers?: Headers) => Promise<void>;
|
|
473
|
+
reply: (options: { from: string; to: string; raw: string }) => Promise<void>;
|
|
474
|
+
};
|
|
475
|
+
type EmailSendOptions = {
|
|
476
|
+
to: string;
|
|
477
|
+
subject: string;
|
|
478
|
+
body: string;
|
|
479
|
+
contentType?: string;
|
|
480
|
+
headers?: Record<string, string>;
|
|
481
|
+
includeRoutingHeaders?: boolean;
|
|
482
|
+
agentName?: string;
|
|
483
|
+
agentId?: string;
|
|
484
|
+
domain?: string;
|
|
485
|
+
};
|
|
356
486
|
/**
|
|
357
487
|
* Get or create an Agent by name
|
|
358
488
|
* @template Env Environment type containing bindings
|
|
@@ -362,12 +492,17 @@ declare function routeAgentEmail<Env>(
|
|
|
362
492
|
* @param options Options for Agent creation
|
|
363
493
|
* @returns Promise resolving to an Agent instance stub
|
|
364
494
|
*/
|
|
365
|
-
declare function getAgentByName<
|
|
495
|
+
declare function getAgentByName<
|
|
496
|
+
Env,
|
|
497
|
+
T extends Agent<Env>,
|
|
498
|
+
Props extends Record<string, unknown> = Record<string, unknown>
|
|
499
|
+
>(
|
|
366
500
|
namespace: AgentNamespace<T>,
|
|
367
501
|
name: string,
|
|
368
502
|
options?: {
|
|
369
503
|
jurisdiction?: DurableObjectJurisdiction;
|
|
370
504
|
locationHint?: DurableObjectLocationHint;
|
|
505
|
+
props?: Props;
|
|
371
506
|
}
|
|
372
507
|
): Promise<DurableObjectStub<T>>;
|
|
373
508
|
/**
|
|
@@ -393,20 +528,30 @@ declare class StreamingResponse {
|
|
|
393
528
|
export {
|
|
394
529
|
Agent,
|
|
395
530
|
type AgentContext,
|
|
531
|
+
type AgentEmail,
|
|
396
532
|
type AgentNamespace,
|
|
397
533
|
type AgentOptions,
|
|
398
534
|
type CallableMetadata,
|
|
535
|
+
type EmailResolver,
|
|
536
|
+
type EmailRoutingOptions,
|
|
537
|
+
type EmailSendOptions,
|
|
399
538
|
type MCPServer,
|
|
400
539
|
type MCPServerMessage,
|
|
401
540
|
type MCPServersState,
|
|
541
|
+
type QueueItem,
|
|
402
542
|
type RPCRequest,
|
|
403
543
|
type RPCResponse,
|
|
404
544
|
type Schedule,
|
|
405
545
|
type StateUpdateMessage,
|
|
406
546
|
StreamingResponse,
|
|
547
|
+
TransportType,
|
|
548
|
+
callable,
|
|
549
|
+
createAddressBasedEmailResolver,
|
|
550
|
+
createCatchAllEmailResolver,
|
|
551
|
+
createHeaderBasedEmailResolver,
|
|
407
552
|
getAgentByName,
|
|
408
553
|
getCurrentAgent,
|
|
409
554
|
routeAgentEmail,
|
|
410
555
|
routeAgentRequest,
|
|
411
|
-
unstable_callable
|
|
556
|
+
unstable_callable
|
|
412
557
|
};
|
package/dist/index.js
CHANGED
|
@@ -1,18 +1,28 @@
|
|
|
1
1
|
import {
|
|
2
2
|
Agent,
|
|
3
3
|
StreamingResponse,
|
|
4
|
+
callable,
|
|
5
|
+
createAddressBasedEmailResolver,
|
|
6
|
+
createCatchAllEmailResolver,
|
|
7
|
+
createHeaderBasedEmailResolver,
|
|
4
8
|
getAgentByName,
|
|
5
9
|
getCurrentAgent,
|
|
6
10
|
routeAgentEmail,
|
|
7
11
|
routeAgentRequest,
|
|
8
12
|
unstable_callable
|
|
9
|
-
} from "./chunk-
|
|
10
|
-
import "./chunk-
|
|
11
|
-
import "./chunk-
|
|
12
|
-
import "./chunk-
|
|
13
|
+
} from "./chunk-254F4GDT.js";
|
|
14
|
+
import "./chunk-3OT2NNEW.js";
|
|
15
|
+
import "./chunk-Z44WASMA.js";
|
|
16
|
+
import "./chunk-QEVM4BVL.js";
|
|
17
|
+
import "./chunk-BER7KXUJ.js";
|
|
18
|
+
import "./chunk-PR4QN5HX.js";
|
|
13
19
|
export {
|
|
14
20
|
Agent,
|
|
15
21
|
StreamingResponse,
|
|
22
|
+
callable,
|
|
23
|
+
createAddressBasedEmailResolver,
|
|
24
|
+
createCatchAllEmailResolver,
|
|
25
|
+
createHeaderBasedEmailResolver,
|
|
16
26
|
getAgentByName,
|
|
17
27
|
getCurrentAgent,
|
|
18
28
|
routeAgentEmail,
|