@relayfx/sdk 0.1.0 → 0.2.0
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/ai.js +2 -2
- package/dist/{index-q0z11q9m.js → index-2xztzkfr.js} +5705 -3835
- package/dist/{index-sms8x6cq.js → index-bcbbm5wt.js} +1 -1
- package/dist/{index-vbf5hcw8.js → index-qgt9z94q.js} +320 -33
- package/dist/index.js +92 -3
- package/dist/migrations/20260712180000_child_fan_out/migration.sql +27 -0
- package/dist/migrations/20260712190000_workflow_definitions/migration.sql +3 -0
- package/dist/migrations/20260712200000_workflow_runtime/migration.sql +2 -0
- package/dist/migrations/mysql/0008_child_fan_out.sql +26 -0
- package/dist/migrations/mysql/0009_workflow_definitions.sql +3 -0
- package/dist/migrations/mysql/0010_workflow_runtime.sql +3 -0
- package/dist/migrations/pg/20260712180000_child_fan_out/migration.sql +27 -0
- package/dist/migrations/pg/20260712190000_workflow_definitions/migration.sql +3 -0
- package/dist/migrations/pg/20260712200000_workflow_runtime/migration.sql +2 -0
- package/dist/migrations/sqlite/0008_child_fan_out.sql +27 -0
- package/dist/migrations/sqlite/0009_workflow_definitions.sql +3 -0
- package/dist/migrations/sqlite/0010_workflow_runtime.sql +3 -0
- package/dist/sqlite.js +60 -11
- package/dist/types/relay/adapter-outbox.d.ts +3 -3
- package/dist/types/relay/client.d.ts +147 -17
- package/dist/types/relay/index.d.ts +2 -2
- package/dist/types/relay/operation.d.ts +559 -2
- package/dist/types/relay/sqlite-migrations.d.ts +16 -1
- package/dist/types/relay/sqlite-runtime.d.ts +8 -3
- package/dist/types/relay/sqlite.d.ts +3 -1
- package/dist/types/runtime/child/child-fan-out-admission-service.d.ts +30 -0
- package/dist/types/runtime/child/child-fan-out-runtime.d.ts +34 -0
- package/dist/types/runtime/child/child-fan-out-transition-service.d.ts +25 -0
- package/dist/types/runtime/cluster/execution-entity.d.ts +4 -2
- package/dist/types/runtime/execution/active-execution-registry.d.ts +12 -0
- package/dist/types/runtime/execution/execution-service.d.ts +1 -0
- package/dist/types/runtime/index.d.ts +5 -0
- package/dist/types/runtime/runner/runner-runtime-service.d.ts +14 -14
- package/dist/types/runtime/workflow/definition-runtime.d.ts +78 -0
- package/dist/types/runtime/workflow/execution-workflow.d.ts +5 -5
- package/dist/types/schema/child-orchestration-schema.d.ts +393 -0
- package/dist/types/schema/execution-schema.d.ts +2 -2
- package/dist/types/schema/ids-schema.d.ts +12 -0
- package/dist/types/schema/index.d.ts +3 -0
- package/dist/types/schema/wait-schema.d.ts +98 -0
- package/dist/types/schema/workflow-schema.d.ts +2062 -0
- package/dist/types/store-sql/child/child-fan-out-repository.d.ts +53 -0
- package/dist/types/store-sql/index.d.ts +2 -0
- package/dist/types/store-sql/portable.d.ts +2 -0
- package/dist/types/store-sql/schema/relay-schema.d.ts +1266 -1
- package/dist/types/store-sql/workflow/workflow-definition-repository.d.ts +29 -0
- package/package.json +1 -1
|
@@ -35,5 +35,20 @@ export declare const migrations: readonly [{
|
|
|
35
35
|
readonly name: "topic_subscriptions";
|
|
36
36
|
readonly file: "0007_topic_subscriptions.sql";
|
|
37
37
|
readonly source: string;
|
|
38
|
+
}, {
|
|
39
|
+
readonly id: 8;
|
|
40
|
+
readonly name: "child_fan_out";
|
|
41
|
+
readonly file: "0008_child_fan_out.sql";
|
|
42
|
+
readonly source: string;
|
|
43
|
+
}, {
|
|
44
|
+
readonly id: 9;
|
|
45
|
+
readonly name: "workflow_definitions";
|
|
46
|
+
readonly file: "0009_workflow_definitions.sql";
|
|
47
|
+
readonly source: string;
|
|
48
|
+
}, {
|
|
49
|
+
readonly id: 10;
|
|
50
|
+
readonly name: "workflow_runtime";
|
|
51
|
+
readonly file: "0010_workflow_runtime.sql";
|
|
52
|
+
readonly source: string;
|
|
38
53
|
}];
|
|
39
|
-
export declare const loader: Effect.Effect<(readonly [1 | 2 | 6 | 3 | 4 | 7 | 5, "baseline" | "durable_tool_placement" | "durable_inbox" | "execution_state" | "durable_entities" | "ephemeral_presence" | "topic_subscriptions", Effect.Effect<Effect.Effect<void, import("effect/unstable/sql/SqlError").SqlError, SqlClient>, never, never>])[], never, never>;
|
|
54
|
+
export declare const loader: Effect.Effect<(readonly [1 | 2 | 6 | 3 | 4 | 7 | 8 | 5 | 9 | 10, "baseline" | "durable_tool_placement" | "durable_inbox" | "execution_state" | "durable_entities" | "ephemeral_presence" | "topic_subscriptions" | "child_fan_out" | "workflow_definitions" | "workflow_runtime", Effect.Effect<Effect.Effect<void, import("effect/unstable/sql/SqlError").SqlError, SqlClient>, never, never>])[], never, never>;
|
|
@@ -1,5 +1,10 @@
|
|
|
1
1
|
import { type SqliteClientConfig } from "@effect/sql-sqlite-bun/SqliteClient";
|
|
2
|
+
import { ChildFanOutRuntime, WorkflowDefinitionRuntime } from "../runtime/index";
|
|
3
|
+
import { WorkflowDefinitionRepository } from "../store-sql/portable";
|
|
2
4
|
import { Layer } from "effect";
|
|
3
|
-
|
|
4
|
-
export declare const
|
|
5
|
-
export declare const
|
|
5
|
+
import { SqlClient } from "effect/unstable/sql/SqlClient";
|
|
6
|
+
export declare const clientLayer: (options: SqliteClientConfig) => Layer.Layer<SqlClient | import("@effect/sql-sqlite-bun/SqliteClient").SqliteClient, never, never>;
|
|
7
|
+
export declare const migrationsLayer: Layer.Layer<never, import("effect/unstable/sql/SqlError").SqlError | import("@effect/sql-sqlite-bun/SqliteMigrator").MigrationError, SqlClient>;
|
|
8
|
+
export declare const layer: (options: SqliteClientConfig) => Layer.Layer<SqlClient, import("effect/unstable/sql/SqlError").SqlError | import("@effect/sql-sqlite-bun/SqliteMigrator").MigrationError, never>;
|
|
9
|
+
export declare const workflowLayer: <E, R>(options: SqliteClientConfig, handlersLayer: Layer.Layer<WorkflowDefinitionRuntime.HandlerService, E, R>) => Layer.Layer<SqlClient | WorkflowDefinitionRepository.Service | WorkflowDefinitionRuntime.HandlerService | WorkflowDefinitionRuntime.Service, unknown, Exclude<R, SqlClient | WorkflowDefinitionRepository.Service>>;
|
|
10
|
+
export declare const childFanOutLayer: <E, R>(options: SqliteClientConfig, handlersLayer: Layer.Layer<ChildFanOutRuntime.HandlerService, E, R>) => Layer.Layer<ChildFanOutRuntime.Service, unknown, R>;
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
export * as Client from "./client";
|
|
2
2
|
export * as Operation from "./operation";
|
|
3
3
|
export * as SQLite from "./sqlite-runtime";
|
|
4
|
-
export { Address, Agent, Content, Entity, Envelope, Execution, Ids, Schedule, Shared, Skill, Tool, } from "../schema/index";
|
|
4
|
+
export { Address, Agent, Content, Entity, Envelope, Execution, Ids, Schedule, Shared, Skill, Tool, Workflow, } from "../schema/index";
|
|
5
5
|
export * as AddressBook from "../runtime/address/address-book-service";
|
|
6
6
|
export * as AddressResolution from "../runtime/address/address-resolution-service";
|
|
7
7
|
export * as AgentLoop from "../runtime/agent/agent-loop-service";
|
|
@@ -10,6 +10,7 @@ export * as ActivityVersionRegistry from "../runtime/workflow/activity-version-r
|
|
|
10
10
|
export * as ArtifactStore from "../runtime/content/artifact-store-service";
|
|
11
11
|
export * as BlobStore from "../runtime/content/blob-store-service";
|
|
12
12
|
export * as ChildRunService from "../runtime/child/child-run-service";
|
|
13
|
+
export * as ChildFanOutRuntime from "../runtime/child/child-fan-out-runtime";
|
|
13
14
|
export * as EnvelopeService from "../runtime/envelope/envelope-service";
|
|
14
15
|
export * as EventLog from "../runtime/execution/event-log-service";
|
|
15
16
|
export * as ExecutionEntity from "../runtime/cluster/execution-entity";
|
|
@@ -24,4 +25,5 @@ export * as SchemaRegistry from "../runtime/schema-registry/schema-registry-serv
|
|
|
24
25
|
export * as SkillRegistry from "../runtime/skill/skill-registry-service";
|
|
25
26
|
export * as ToolRuntime from "../runtime/tool/tool-runtime-service";
|
|
26
27
|
export * as WaitService from "../runtime/wait/wait-service";
|
|
28
|
+
export * as WorkflowDefinitionRuntime from "../runtime/workflow/definition-runtime";
|
|
27
29
|
export declare const relaySqlitePackage = "@relayfx/sdk/sqlite";
|
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
import { ChildOrchestration, Execution, Ids } from "../../schema/index";
|
|
2
|
+
import { ChildFanOutRepository } from "../../store-sql/portable";
|
|
3
|
+
import { Context, Effect, Layer, Schema } from "effect";
|
|
4
|
+
import { Service as ChildRunService, type AgentContext } from "./child-run-service";
|
|
5
|
+
declare const ChildFanOutAdmissionError_base: Schema.Class<ChildFanOutAdmissionError, Schema.TaggedStruct<"ChildFanOutAdmissionError", {
|
|
6
|
+
readonly message: Schema.String;
|
|
7
|
+
}>, import("effect/Cause").YieldableError>;
|
|
8
|
+
export declare class ChildFanOutAdmissionError extends ChildFanOutAdmissionError_base {
|
|
9
|
+
}
|
|
10
|
+
export interface AdmitInput {
|
|
11
|
+
readonly fanOutId: Ids.ChildFanOutId;
|
|
12
|
+
readonly parent: AgentContext;
|
|
13
|
+
readonly eventSequence: Execution.ExecutionEventSequence;
|
|
14
|
+
readonly admittedAt: number;
|
|
15
|
+
}
|
|
16
|
+
export interface Interface {
|
|
17
|
+
readonly admit: (input: AdmitInput) => Effect.Effect<ReadonlyArray<Execution.ChildRunAccepted>, ChildFanOutAdmissionError>;
|
|
18
|
+
readonly recover: (input: AdmitInput) => Effect.Effect<ReadonlyArray<Execution.ChildRunAccepted>, ChildFanOutAdmissionError>;
|
|
19
|
+
readonly recoverAll: (inputFor: (fanOut: ChildOrchestration.FanOutState) => AdmitInput) => Effect.Effect<ReadonlyArray<Execution.ChildRunAccepted>, ChildFanOutAdmissionError>;
|
|
20
|
+
}
|
|
21
|
+
declare const Service_base: Context.ServiceClass<Service, "@relayfx/runtime/ChildFanOutAdmissionService", Interface>;
|
|
22
|
+
export declare class Service extends Service_base {
|
|
23
|
+
}
|
|
24
|
+
export declare const layer: Layer.Layer<Service, never, ChildFanOutRepository.Service | ChildRunService>;
|
|
25
|
+
export declare const memoryLayer: Layer.Layer<Service, never, never>;
|
|
26
|
+
export declare const testLayer: (implementation: Interface) => Layer.Layer<Service, never, never>;
|
|
27
|
+
export declare const admit: (input: AdmitInput) => Effect.Effect<readonly Execution.ChildRunAccepted[], ChildFanOutAdmissionError, Service>;
|
|
28
|
+
export declare const recover: (input: AdmitInput) => Effect.Effect<readonly Execution.ChildRunAccepted[], ChildFanOutAdmissionError, Service>;
|
|
29
|
+
export declare const recoverAll: (inputFor: (fanOut: ChildOrchestration.FanOutState) => AdmitInput) => Effect.Effect<readonly Execution.ChildRunAccepted[], ChildFanOutAdmissionError, Service>;
|
|
30
|
+
export {};
|
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
import { ChildOrchestration, Content, Ids } from "../../schema/index";
|
|
2
|
+
import { ChildFanOutRepository } from "../../store-sql/portable";
|
|
3
|
+
import { Context, Effect, Layer, Schema } from "effect";
|
|
4
|
+
import { Service as TransitionService } from "./child-fan-out-transition-service";
|
|
5
|
+
export interface ChildResult {
|
|
6
|
+
readonly status: "completed" | "failed" | "cancelled";
|
|
7
|
+
readonly output: ReadonlyArray<Content.Part>;
|
|
8
|
+
readonly error?: string;
|
|
9
|
+
readonly completedAt?: number;
|
|
10
|
+
}
|
|
11
|
+
export interface Handlers {
|
|
12
|
+
readonly execute: (child: ChildOrchestration.FanOutChild, fanOut: ChildOrchestration.FanOutState, idempotencyKey: string) => Effect.Effect<ChildResult, unknown>;
|
|
13
|
+
readonly cancel: (childExecutionId: Ids.ChildExecutionId, reason: string) => Effect.Effect<void, unknown>;
|
|
14
|
+
}
|
|
15
|
+
declare const HandlerService_base: Context.ServiceClass<HandlerService, "@relayfx/runtime/ChildFanOutRuntimeHandlers", Handlers>;
|
|
16
|
+
export declare class HandlerService extends HandlerService_base {
|
|
17
|
+
}
|
|
18
|
+
declare const ChildFanOutRuntimeError_base: Schema.Class<ChildFanOutRuntimeError, Schema.TaggedStruct<"ChildFanOutRuntimeError", {
|
|
19
|
+
readonly message: Schema.String;
|
|
20
|
+
}>, import("effect/Cause").YieldableError>;
|
|
21
|
+
export declare class ChildFanOutRuntimeError extends ChildFanOutRuntimeError_base {
|
|
22
|
+
}
|
|
23
|
+
export interface Interface {
|
|
24
|
+
readonly create: (definition: ChildOrchestration.FanOutDefinition) => Effect.Effect<ChildOrchestration.FanOutState, ChildFanOutRuntimeError>;
|
|
25
|
+
readonly recover: () => Effect.Effect<ReadonlyArray<Ids.ChildFanOutId>, ChildFanOutRuntimeError>;
|
|
26
|
+
readonly cancel: (fanOutId: Ids.ChildFanOutId, cancelledAt: number, reason: string) => Effect.Effect<ChildOrchestration.FanOutState | undefined, ChildFanOutRuntimeError>;
|
|
27
|
+
readonly inspect: (fanOutId: Ids.ChildFanOutId) => Effect.Effect<ChildOrchestration.FanOutState | undefined, ChildFanOutRuntimeError>;
|
|
28
|
+
}
|
|
29
|
+
declare const Service_base: Context.ServiceClass<Service, "@relayfx/runtime/ChildFanOutRuntime", Interface>;
|
|
30
|
+
export declare class Service extends Service_base {
|
|
31
|
+
}
|
|
32
|
+
export declare const layer: Layer.Layer<Service, ChildFanOutRuntimeError, ChildFanOutRepository.Service | TransitionService | HandlerService>;
|
|
33
|
+
export declare const testHandlersLayer: (handlers: Handlers) => Layer.Layer<HandlerService, never, never>;
|
|
34
|
+
export {};
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
import { Content, Ids } from "../../schema/index";
|
|
2
|
+
import { ChildFanOutRepository } from "../../store-sql/portable";
|
|
3
|
+
import { Context, Effect, Layer, Schema } from "effect";
|
|
4
|
+
import { Service as EventLogService } from "../execution/event-log-service";
|
|
5
|
+
declare const ChildFanOutTransitionError_base: Schema.Class<ChildFanOutTransitionError, Schema.TaggedStruct<"ChildFanOutTransitionError", {
|
|
6
|
+
readonly message: Schema.String;
|
|
7
|
+
}>, import("effect/Cause").YieldableError>;
|
|
8
|
+
export declare class ChildFanOutTransitionError extends ChildFanOutTransitionError_base {
|
|
9
|
+
}
|
|
10
|
+
export interface TerminalInput {
|
|
11
|
+
readonly childExecutionId: Ids.ChildExecutionId;
|
|
12
|
+
readonly status: "completed" | "failed" | "cancelled";
|
|
13
|
+
readonly output: ReadonlyArray<Content.Part>;
|
|
14
|
+
readonly error?: string;
|
|
15
|
+
readonly completedAt: number;
|
|
16
|
+
}
|
|
17
|
+
export interface Interface {
|
|
18
|
+
readonly terminal: (input: TerminalInput) => Effect.Effect<ChildFanOutRepository.RecordTerminalResult | undefined, ChildFanOutTransitionError>;
|
|
19
|
+
}
|
|
20
|
+
declare const Service_base: Context.ServiceClass<Service, "@relayfx/runtime/ChildFanOutTransitionService", Interface>;
|
|
21
|
+
export declare class Service extends Service_base {
|
|
22
|
+
}
|
|
23
|
+
export declare const layer: Layer.Layer<Service, never, ChildFanOutRepository.Service | EventLogService>;
|
|
24
|
+
export declare const terminal: (input: TerminalInput) => Effect.Effect<ChildFanOutRepository.RecordTerminalResult | undefined, ChildFanOutTransitionError, Service>;
|
|
25
|
+
export {};
|
|
@@ -5,9 +5,11 @@ import type { WorkflowEngine } from "effect/unstable/workflow";
|
|
|
5
5
|
import { Schema } from "effect";
|
|
6
6
|
import type { Effect } from "effect";
|
|
7
7
|
import { ExecutionWorkflowFailed, StartInput, StartResult } from "../workflow/execution-workflow";
|
|
8
|
+
import type { Service as ActiveExecutionRegistryService } from "../execution/active-execution-registry";
|
|
8
9
|
import type { Service as EventLogService } from "../execution/event-log-service";
|
|
9
|
-
import type { Service as
|
|
10
|
+
import type { Service as ExecutionServiceService } from "../execution/execution-service";
|
|
10
11
|
import type { Service as ToolTransitionCoordinatorService } from "../tool/tool-transition-coordinator";
|
|
12
|
+
import type { Service as WaitServiceService } from "../wait/wait-service";
|
|
11
13
|
export declare const Start: Rpc.Rpc<"start", typeof StartInput, typeof StartResult, typeof ExecutionWorkflowFailed>;
|
|
12
14
|
export declare const SignalWait: Rpc.Rpc<"signalWait", Schema.Struct<{
|
|
13
15
|
readonly workflow_execution_id: Schema.String;
|
|
@@ -32,6 +34,6 @@ export declare const Cancel: Rpc.Rpc<"cancel", Schema.Struct<{
|
|
|
32
34
|
}>, typeof ExecutionWorkflowFailed, never, never>;
|
|
33
35
|
type ExecutionRpc = typeof Start | typeof Dispatch | typeof SignalWait | typeof Cancel;
|
|
34
36
|
export declare const entity: Entity.Entity<"Relay/Execution", ExecutionRpc>;
|
|
35
|
-
export declare const layer: import("effect/Layer").Layer<never, never, ChildExecutionRepository.Service | EnvelopeRepository.Service | ExecutionRepository.Service | ToolCallRepository.Service | EventLogService | WaitServiceService | ToolTransitionCoordinatorService | WorkflowEngine.WorkflowEngine | import("effect/unstable/cluster/Sharding").Sharding>;
|
|
37
|
+
export declare const layer: import("effect/Layer").Layer<never, never, ChildExecutionRepository.Service | EnvelopeRepository.Service | ExecutionRepository.Service | ToolCallRepository.Service | EventLogService | WaitServiceService | ExecutionServiceService | ActiveExecutionRegistryService | ToolTransitionCoordinatorService | WorkflowEngine.WorkflowEngine | import("effect/unstable/cluster/Sharding").Sharding>;
|
|
36
38
|
export declare const client: Effect.Effect<(entityId: string) => import("effect/unstable/rpc/RpcClient").RpcClient.From<ExecutionRpc, import("effect/unstable/cluster/ClusterError").MailboxFull | import("effect/unstable/cluster/ClusterError").AlreadyProcessingMessage | import("effect/unstable/cluster/ClusterError").PersistenceError>, never, import("effect/unstable/cluster/Sharding").Sharding>;
|
|
37
39
|
export {};
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import { Ids } from "../../schema/index";
|
|
2
|
+
import { Context, Effect, Layer } from "effect";
|
|
3
|
+
export interface Interface {
|
|
4
|
+
readonly run: <A, E, R>(executionId: Ids.ExecutionId, effect: Effect.Effect<A, E, R>) => Effect.Effect<A, E, R>;
|
|
5
|
+
readonly interrupt: (executionId: Ids.ExecutionId) => Effect.Effect<boolean>;
|
|
6
|
+
}
|
|
7
|
+
declare const Service_base: Context.ServiceClass<Service, "@relayfx/runtime/ActiveExecutionRegistry", Interface>;
|
|
8
|
+
export declare class Service extends Service_base {
|
|
9
|
+
}
|
|
10
|
+
export declare const layer: Layer.Layer<Service, never, never>;
|
|
11
|
+
export declare const testLayer: Layer.Layer<Service, never, never>;
|
|
12
|
+
export {};
|
|
@@ -41,6 +41,7 @@ export interface CancelInput {
|
|
|
41
41
|
readonly eventSequence: Execution.ExecutionEventSequence;
|
|
42
42
|
readonly cancelledAt: number;
|
|
43
43
|
readonly reason?: string;
|
|
44
|
+
readonly metadata?: Shared.Metadata;
|
|
44
45
|
}
|
|
45
46
|
export interface Interface {
|
|
46
47
|
readonly accept: (input: AcceptInput) => Effect.Effect<Execution.Execution, ExecutionServiceError>;
|
|
@@ -5,6 +5,9 @@ export * as AgentRegistry from "./agent/agent-registry-service";
|
|
|
5
5
|
export * as ArtifactStore from "./content/artifact-store-service";
|
|
6
6
|
export * as BlobStore from "./content/blob-store-service";
|
|
7
7
|
export * as ChildRunService from "./child/child-run-service";
|
|
8
|
+
export * as ChildFanOutAdmission from "./child/child-fan-out-admission-service";
|
|
9
|
+
export * as ChildFanOutTransition from "./child/child-fan-out-transition-service";
|
|
10
|
+
export * as ChildFanOutRuntime from "./child/child-fan-out-runtime";
|
|
8
11
|
export * as SpawnChildRunTool from "./child/spawn-child-run-tool";
|
|
9
12
|
export * as ExecutionEntity from "./cluster/execution-entity";
|
|
10
13
|
export * as EnvelopeService from "./envelope/envelope-service";
|
|
@@ -16,6 +19,7 @@ export * as PublishToTopicTool from "./topic/publish-to-topic-tool";
|
|
|
16
19
|
export * as SendMessageTool from "./inbox/send-message-tool";
|
|
17
20
|
export * as WaitForMessagesTool from "./inbox/wait-for-messages-tool";
|
|
18
21
|
export * as EventLog from "./execution/event-log-service";
|
|
22
|
+
export * as ActiveExecutionRegistry from "./execution/active-execution-registry";
|
|
19
23
|
export * as ExecutionWatch from "./execution/execution-watch-service";
|
|
20
24
|
export * as ExecutionService from "./execution/execution-service";
|
|
21
25
|
export * as SessionStream from "./execution/session-stream-service";
|
|
@@ -47,5 +51,6 @@ export * as WorkspacePlanner from "./workspace/workspace-planner-service";
|
|
|
47
51
|
export * as WorkspaceProvider from "./workspace/workspace-provider-service";
|
|
48
52
|
export * as WorkspaceRuntime from "./workspace/workspace-runtime-service";
|
|
49
53
|
export * as ExecutionWorkflow from "./workflow/execution-workflow";
|
|
54
|
+
export * as WorkflowDefinitionRuntime from "./workflow/definition-runtime";
|
|
50
55
|
export * as ActivityVersionRegistry from "./workflow/activity-version-registry";
|
|
51
56
|
export declare const runtimePackage = "./index";
|