UNPKG

@mastra/core

Version:
20 lines 871 B
/** * Stored-workflow persistence round-trip: * * build → toStorableGraph(stepFlow) → validate → persist → rehydrateWorkflow → addWorkflow * * Split by concern: * - `serialize` — live → storable (`toStorableGraph`) * - `rehydrate` — storable → runnable (`rehydrateWorkflow`) * - `validate/` — the one issue-collecting validation core * - `mapping-config` — the one mapConfig parser + analyzer * - `graph` — shared typed walkers over serialized graph entries * - `json-schema-to-zod` — JSON Schema ↔ Zod bridge + write-time validation */ export * from './json-schema-to-zod.js'; export * from './serialize.js'; export * from './rehydrate.js'; export * from './validate/index.js'; export * from './mapping-config.js'; export * from './graph.js'; //# sourceMappingURL=index.d.ts.map