arvo-core
Version:
This core package contains all the core classes and components of the Arvo Event Driven System
14 lines (13 loc) • 473 B
TypeScript
import { z } from 'zod';
/**
* Defines the base schema for orchestrator acceptance in the context of ArvoEvents.
* This schema is used to validate and type-check the minimal required fields
* for an orchestrator to accept a task or event.
*/
export declare const OrchestrationInitEventBaseSchema: z.ZodObject<{
parentSubject$$: z.ZodNullable<z.ZodString>;
}, "strip", z.ZodTypeAny, {
parentSubject$$: string | null;
}, {
parentSubject$$: string | null;
}>;