UNPKG

arvo-core

Version:

This core package contains all the core classes and components of the Arvo Event Driven System

50 lines (49 loc) 1.26 kB
import { z } from 'zod'; export declare const ArvoOrchestrationSubjectContentSchema: z.ZodObject<{ orchestrator: z.ZodObject<{ name: z.ZodEffects<z.ZodString, string, string>; version: z.ZodString; }, "strip", z.ZodTypeAny, { version: string; name: string; }, { version: string; name: string; }>; execution: z.ZodObject<{ id: z.ZodEffects<z.ZodString, string, string>; initiator: z.ZodEffects<z.ZodString, string, string>; domain: z.ZodNullable<z.ZodString>; }, "strip", z.ZodTypeAny, { id: string; domain: string | null; initiator: string; }, { id: string; domain: string | null; initiator: string; }>; meta: z.ZodRecord<z.ZodString, z.ZodString>; }, "strip", z.ZodTypeAny, { orchestrator: { version: string; name: string; }; execution: { id: string; domain: string | null; initiator: string; }; meta: Record<string, string>; }, { orchestrator: { version: string; name: string; }; execution: { id: string; domain: string | null; initiator: string; }; meta: Record<string, string>; }>;