Type-safe client for consuming Temporal workflows
pnpm add @temporal-contract/client @temporal-contract/contract @temporalio/client zodimport { TypedClient } from "@temporal-contract/client";
import { Connection, Client } from "@temporalio/client";
const connection = await Connection.connect({ address: "localhost:7233" });
const temporalClient = new Client({ connection });
const client = TypedClient.create(myContract, temporalClient);
// Execute workflow (fully typed!)
const result = await client.executeWorkflow("processOrder", {
workflowId: "order-123",
args: { orderId: "ORD-123" },
});📖 Read the full documentation →
MIT