@effect-agent/workflow 0.1.0-beta.91 → 0.1.0-beta.92
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/WorkflowExecution.d.mts +10 -1
- package/package.json +1 -1
|
@@ -18,9 +18,18 @@ declare const WorkflowExecutionFailure_base: Schema.Class<WorkflowExecutionFailu
|
|
|
18
18
|
readonly reason: Schema.Literals<readonly ["invalid-name", "engine-mismatch", "failed", "aborted", "missing-output"]>;
|
|
19
19
|
readonly message: Schema.String;
|
|
20
20
|
readonly receipt: Schema.optionalKey<typeof Receipt>;
|
|
21
|
-
readonly failure: Schema.optionalKey<Schema.
|
|
21
|
+
readonly failure: Schema.optionalKey<Schema.declareConstructor<{
|
|
22
|
+
readonly errorTag: string;
|
|
23
|
+
readonly message: string;
|
|
24
|
+
}, {
|
|
25
|
+
readonly errorTag: string;
|
|
26
|
+
readonly message: string;
|
|
27
|
+
}, readonly [Schema.Struct<{
|
|
22
28
|
readonly errorTag: Schema.NonEmptyString;
|
|
23
29
|
readonly message: Schema.String;
|
|
30
|
+
}>], {
|
|
31
|
+
readonly errorTag: string;
|
|
32
|
+
readonly message: string;
|
|
24
33
|
}>>;
|
|
25
34
|
}>, import("effect/Cause").YieldableError>;
|
|
26
35
|
/** A terminal agent outcome or invalid invocation, distinct from retriable infrastructure errors. */
|
package/package.json
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"name":"@effect-agent/workflow","version":"0.1.0-beta.
|
|
1
|
+
{"name":"@effect-agent/workflow","version":"0.1.0-beta.92","dependencies":{"effect-agent":"0.1.0-beta.92"},"devDependencies":{"@effect-agent/storage-memory":"0.1.0-beta.92","@effect/platform-node":"4.0.0-rc.115","@effect/vitest":"4.0.0-rc.115","effect":"4.0.0-rc.115","typescript":"7.0.2","vite-plus":"0.3.0"},"peerDependencies":{"effect":"^4.0.0-rc.115"},"exports":{".":{"types":"./dist/index.d.mts","default":"./dist/index.mjs"},"./agent-workflow":{"types":"./dist/AgentWorkflow.d.mts","default":"./dist/AgentWorkflow.mjs"},"./workflow-agent-host":{"types":"./dist/WorkflowAgentHost.d.mts","default":"./dist/WorkflowAgentHost.mjs"},"./workflow-dispatch":{"types":"./dist/WorkflowDispatch.d.mts","default":"./dist/WorkflowDispatch.mjs"},"./workflow-execution":{"types":"./dist/WorkflowExecution.d.mts","default":"./dist/WorkflowExecution.mjs"}},"description":"Effect Workflow execution for the existing durable Agent runtime.","license":"MIT","repository":{"type":"git","url":"git+https://github.com/danieljvdm/effect-agent.git","directory":"packages/workflow"},"files":["dist","src"],"type":"module","sideEffects":[],"publishConfig":{"access":"public"},"scripts":{"build":"vp pack","check":"tsc --noEmit -p tsconfig.json","test":"vp test --passWithNoTests"}}
|