@lunora/agent 1.0.0-alpha.1 → 1.0.0-alpha.10
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 +2 -0
- package/dist/channels.d.mts +42 -22
- package/dist/channels.d.ts +42 -22
- package/dist/channels.mjs +1 -1
- package/dist/component.d.mts +59 -56
- package/dist/component.d.ts +59 -56
- package/dist/component.mjs +20 -9
- package/dist/inbound.d.mts +21 -16
- package/dist/inbound.d.ts +21 -16
- package/dist/index.d.mts +500 -408
- package/dist/index.d.ts +500 -408
- package/dist/index.mjs +6 -6
- package/dist/naming.d.mts +23 -10
- package/dist/naming.d.ts +23 -10
- package/dist/packem_shared/{VoiceSessionDO-DLoXsHGF.mjs → VoiceSessionDO-BdwlLaXC.mjs} +2 -2
- package/dist/packem_shared/{agentAsTool-Dt8NlU6k.mjs → agentAsTool-CUHlWsmt.mjs} +5 -1
- package/dist/packem_shared/{braintrustTelemetry-wuGDErob.mjs → braintrustTelemetry-TP7Kwuuj.mjs} +1 -1
- package/dist/packem_shared/{common-DAeFCot5.mjs → common-DQXayow6.mjs} +29 -1
- package/dist/packem_shared/compileAgentWorkflow-DYFFyx7i.mjs +78 -0
- package/dist/packem_shared/{consoleTelemetry-z2MiP1jt.mjs → consoleTelemetry--3sWfu1R.mjs} +1 -1
- package/dist/packem_shared/{createAgentGenerate-BQv9YJ01.mjs → createAgentGenerate-DO7Z96zX.mjs} +1 -1
- package/dist/packem_shared/{defineAgent-D6maSbVc.mjs → defineAgent-DAwAZC9P.mjs} +1 -1
- package/dist/packem_shared/{graph-component-aoUwO-f0.mjs → graph-component-Bbaxxymp.mjs} +3 -2
- package/dist/packem_shared/{normalizeEntityName-CyEEWFkR.mjs → normalizeEntityName-BouctxLC.mjs} +1 -1
- package/dist/packem_shared/otlpTelemetry-DU5ZmoEV.mjs +177 -0
- package/dist/packem_shared/{runAgentLoop-Dhg4ZNvw.mjs → runAgentLoop-M8PKbtWT.mjs} +2 -2
- package/dist/packem_shared/{sentryTelemetry-CgqFJyLO.mjs → sentryTelemetry-A4F5ndh9.mjs} +1 -1
- package/dist/packem_shared/types.d-boAM2Yi1.d.mts +1114 -0
- package/dist/packem_shared/types.d-boAM2Yi1.d.ts +1114 -0
- package/dist/sandbox.d.mts +129 -110
- package/dist/sandbox.d.ts +129 -110
- package/dist/sandbox.mjs +5 -1
- package/dist/telemetry/index.d.mts +190 -86
- package/dist/telemetry/index.d.ts +190 -86
- package/dist/telemetry/index.mjs +4 -3
- package/package.json +8 -8
- package/dist/packem_shared/compileAgentWorkflow-BxJjHgtD.mjs +0 -55
- package/dist/packem_shared/types.d-BWG0uUtX.d.mts +0 -1015
- package/dist/packem_shared/types.d-BWG0uUtX.d.ts +0 -1015
package/dist/inbound.d.ts
CHANGED
|
@@ -1,29 +1,34 @@
|
|
|
1
|
-
import { A as AgentDefinition } from "./packem_shared/types.d-
|
|
1
|
+
import { A as AgentDefinition } from "./packem_shared/types.d-boAM2Yi1.js";
|
|
2
2
|
import '@lunora/mail/inbound';
|
|
3
3
|
import 'ai';
|
|
4
|
-
/**
|
|
4
|
+
/**
|
|
5
|
+
* One agent wired into the inbound `email()` handler.
|
|
6
|
+
* @experimental
|
|
7
|
+
*/
|
|
5
8
|
interface AgentEmailTarget {
|
|
6
9
|
/**
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
+
* The agent definition — only its `onEmail` mapper is read, deciding whether
|
|
11
|
+
* this agent claims the message and, if so, the run to start.
|
|
12
|
+
*/
|
|
10
13
|
agent: Pick<AgentDefinition, "onEmail">;
|
|
11
14
|
/** The `AGENT_*` Workflow binding name (off `env`) that starts a run. */
|
|
12
15
|
binding: string;
|
|
13
16
|
}
|
|
14
17
|
/**
|
|
15
|
-
* The worker `email(message, env, ctx)` callback. Typed with `unknown`
|
|
16
|
-
* parameters so it drops straight onto the generated `composed.email` slot
|
|
17
|
-
* without a cast.
|
|
18
|
-
|
|
18
|
+
* The worker `email(message, env, ctx)` callback. Typed with `unknown`
|
|
19
|
+
* parameters so it drops straight onto the generated `composed.email` slot
|
|
20
|
+
* without a cast.
|
|
21
|
+
* @experimental
|
|
22
|
+
*/
|
|
19
23
|
type InboundAgentEmailHandler = (message: unknown, env: unknown, context: unknown) => Promise<void>;
|
|
20
24
|
/**
|
|
21
|
-
* Build the inbound `email()` handler for one or more `onEmail` agents. The
|
|
22
|
-
* returned callback parses the message, then walks `targets` in order and starts
|
|
23
|
-
* a durable run for the first agent whose `onEmail` mapper returns a run. If the
|
|
24
|
-
* matched agent's Workflow binding is missing from `env` (run codegen/dev so
|
|
25
|
-
* `wrangler.jsonc` declares it) the dispatch throws, and the inbound handler's
|
|
26
|
-
* `onError` rejects (bounces) the message.
|
|
27
|
-
|
|
25
|
+
* Build the inbound `email()` handler for one or more `onEmail` agents. The
|
|
26
|
+
* returned callback parses the message, then walks `targets` in order and starts
|
|
27
|
+
* a durable run for the first agent whose `onEmail` mapper returns a run. If the
|
|
28
|
+
* matched agent's Workflow binding is missing from `env` (run codegen/dev so
|
|
29
|
+
* `wrangler.jsonc` declares it) the dispatch throws, and the inbound handler's
|
|
30
|
+
* `onError` rejects (bounces) the message.
|
|
31
|
+
* @experimental
|
|
32
|
+
*/
|
|
28
33
|
declare const dispatchAgentEmail: (targets: ReadonlyArray<AgentEmailTarget>) => InboundAgentEmailHandler;
|
|
29
34
|
export { type AgentEmailTarget, type InboundAgentEmailHandler, dispatchAgentEmail };
|