@codemation/core-nodes 0.0.22 → 0.0.24
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/CHANGELOG.md +18 -0
- package/dist/index.cjs +1606 -65
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +189 -27
- package/dist/index.d.ts +189 -27
- package/dist/index.js +1580 -60
- package/dist/index.js.map +1 -1
- package/package.json +2 -2
- package/src/index.ts +3 -0
- package/src/nodes/AIAgentConfig.ts +14 -4
- package/src/nodes/AIAgentNode.ts +40 -12
- package/src/nodes/AggregateNode.ts +19 -0
- package/src/nodes/FilterNode.ts +22 -0
- package/src/nodes/MapDataNode.ts +12 -9
- package/src/nodes/SplitNode.ts +26 -0
- package/src/nodes/aggregate.ts +21 -0
- package/src/nodes/filter.ts +23 -0
- package/src/nodes/split.ts +23 -0
- package/src/register.types.ts +6 -0
- package/src/workflowAuthoring/WorkflowBranchBuilder.types.ts +1 -1
- package/src/workflowAuthoring/WorkflowChain.types.ts +1 -1
package/dist/index.cjs.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.cjs","names":["OpenAIChatModelFactory","ChatOpenAI","name: string","model: string","credentialSlotKey: string","options?: Readonly<{\n temperature?: number;\n maxTokens?: number;\n }>","SystemMessage","HumanMessage","AIMessage","ToolMessage","_a","id","schema","registry","ctx","CredentialResolverFactory","AIAgentExecutionHelpersFactory","DynamicStructuredTool","converted: unknown","node","NodeBackedToolRuntime","nodeResolver: NodeResolver","CoreTokens","AIAgentNode","nodeResolver: NodeResolver","credentialSessions: CredentialSessionService","nodeBackedToolRuntime: NodeBackedToolRuntime","executionHelpers: AIAgentExecutionHelpersFactory","out: Item[]","ConnectionNodeIdFactory","conversation: BaseMessage[]","finalResponse: AIMessage | undefined","ConnectionInvocationIdFactory","AgentMessageConfigNormalizer","NodeBackedToolConfig","AgentGuardrailDefaults","CoreTokens","RetryPolicy","CallbackNode","name: string","callback: CallbackHandler<TInputJson, TOutputJson>","id?: string","HttpRequestNode","output: Item[]","outputItem: Item","values: Record<string, string>","name: string","args: Readonly<{\n method?: string;\n urlField?: string;\n binaryName?: string;\n downloadMode?: HttpRequestDownloadMode;\n id?: string;\n }>","retryPolicy: RetryPolicySpec","RetryPolicy","IfNode","t: Item[]","f: Item[]","tagged: Item","name: string","predicate: (\n item: Item<TInputJson>,\n index: number,\n items: Items<TInputJson>,\n ctx: NodeExecutionContext<If<TInputJson>>,\n ) => boolean","id?: string","ManualTriggerNode","ItemsInputNormalizer","name: string","MapDataNode","out: Item[]","name: string","map: (\n item: Item<TInputJson>,\n ctx: NodeExecutionContext<MapData<TInputJson, TOutputJson>>,\n ) => TOutputJson","id?: string","MergeNode","out: Item[]","out","json: Record<string, unknown>","paired: any[]","meta: Record<string, unknown> | undefined","merged: any","fallback: Item[]","name: string","cfg: Readonly<{\n mode: MergeMode;\n /**\n * Deterministic input precedence order (only used for passThrough/append).\n * Any inputs not listed are appended in lexicographic order.\n */\n prefer?: ReadonlyArray<InputPortKey>;\n }>","id?: string","NoOpNode","name: string","id?: string","SubWorkflowNode","workflows: WorkflowRunnerService","out: Item[]","CoreTokens","name: string","workflowId: string","upstreamRefs?: Array<{ nodeId: NodeId } | UpstreamRefPlaceholder>","startAt?: NodeId","id?: string","WaitNode","name: string","milliseconds: number","id?: string","responseItems: Items","continueItems: Items","responseItems: Items","WebhookTriggerNode","name: string","args: Readonly<{\n endpointKey: string;\n methods: ReadonlyArray<HttpMethod>;\n inputSchema?: TSchema;\n }>","handler: WebhookTriggerHandler<\n WebhookTrigger<TSchema>\n >","id?: string","ConnectionCredentialNode","WorkflowBuilder","DefinedNodeRegistry","steps: ReadonlyArray<AnyRunnableNodeConfig>","chain: ChainCursor<TCurrentJson>","id: string","workflowName: string","connectionCredentialNodeConfigFactory: ConnectionCredentialNodeConfigFactory","workflow","extraNodes: NodeDefinition[]","node","AgentConfigInspector","AgentConnectionNodeCollector","name: string","credentialSource: { getCredentialRequirements?: () => ReadonlyArray<CredentialRequirement> }"],"sources":["../src/chatModels/OpenAIChatModelFactory.ts","../src/chatModels/openAiChatModelConfig.ts","../src/chatModels/OpenAiChatModelPresetsFactory.ts","../src/nodes/AgentMessageFactory.ts","../src/nodes/AgentOutputFactory.ts","../src/nodes/AgentToolCallPortMapFactory.ts","../../../node_modules/.pnpm/zod@4.3.6/node_modules/zod/v4/core/util.js","../../../node_modules/.pnpm/zod@4.3.6/node_modules/zod/v4/core/registries.js","../../../node_modules/.pnpm/zod@4.3.6/node_modules/zod/v4/core/to-json-schema.js","../../../node_modules/.pnpm/zod@4.3.6/node_modules/zod/v4/core/json-schema-processors.js","../src/nodes/ConnectionCredentialExecutionContextFactory.ts","../src/nodes/AIAgentExecutionHelpersFactory.ts","../src/nodes/NodeBackedToolRuntime.ts","../src/nodes/aiAgentSupport.types.ts","../src/nodes/AIAgentNode.ts","../src/nodes/AIAgentConfig.ts","../src/nodes/CallbackResultNormalizerFactory.ts","../src/nodes/CallbackNode.ts","../src/nodes/CallbackNodeFactory.ts","../src/nodes/HttpRequestNodeFactory.ts","../src/nodes/httpRequest.ts","../src/nodes/IfNode.ts","../src/nodes/if.ts","../src/nodes/ManualTriggerNode.ts","../src/nodes/ManualTriggerFactory.ts","../src/nodes/MapDataNode.ts","../src/nodes/mapData.ts","../src/nodes/mergeExecutionUtils.types.ts","../src/nodes/MergeNode.ts","../src/nodes/merge.ts","../src/nodes/NoOpNode.ts","../src/nodes/noOp.ts","../src/nodes/SubWorkflowNode.ts","../src/nodes/subWorkflow.ts","../src/nodes/WaitDurationFactory.ts","../src/nodes/WaitNode.ts","../src/nodes/wait.ts","../src/nodes/webhookRespondNowAndContinueError.ts","../src/nodes/webhookRespondNowError.ts","../src/nodes/webhookTriggerNode.ts","../src/nodes/WebhookTriggerFactory.ts","../src/nodes/ConnectionCredentialNode.ts","../src/register.types.ts","../src/workflowBuilder.types.ts","../src/workflowAuthoring/WorkflowChatModelFactory.types.ts","../src/workflowAuthoring/WorkflowAgentNodeFactory.types.ts","../src/workflowAuthoring/WorkflowDefinedNodeResolver.types.ts","../src/workflowAuthoring/WorkflowDurationParser.types.ts","../src/workflowAuthoring/WorkflowBranchBuilder.types.ts","../src/workflowAuthoring/WorkflowChain.types.ts","../src/workflowAuthoring/WorkflowAuthoringBuilder.types.ts","../src/workflowAuthoring.types.ts","../src/workflows/AIAgentConnectionWorkflowExpander.ts","../src/nodes/ConnectionCredentialNodeConfig.ts","../src/nodes/ConnectionCredentialNodeConfigFactory.ts"],"sourcesContent":["import type { ChatModelFactory, LangChainChatModelLike, NodeExecutionContext } from \"@codemation/core\";\nimport { chatModel } from \"@codemation/core\";\nimport { ChatOpenAI } from \"@langchain/openai\";\nimport type { OpenAiCredentialSession } from \"./OpenAiCredentialSession\";\nimport type { OpenAIChatModelConfig } from \"./openAiChatModelConfig\";\n\n@chatModel({ packageName: \"@codemation/core-nodes\" })\nexport class OpenAIChatModelFactory implements ChatModelFactory<OpenAIChatModelConfig> {\n async create(\n args: Readonly<{ config: OpenAIChatModelConfig; ctx: NodeExecutionContext<any> }>,\n ): Promise<LangChainChatModelLike> {\n const session = await args.ctx.getCredential<OpenAiCredentialSession>(args.config.credentialSlotKey);\n return new ChatOpenAI({\n apiKey: session.apiKey,\n model: args.config.model,\n temperature: args.config.options?.temperature,\n maxTokens: args.config.options?.maxTokens,\n configuration: session.baseUrl ? { baseURL: session.baseUrl } : undefined,\n });\n }\n}\n","import type { AgentCanvasPresentation, ChatModelConfig, CredentialRequirement } from \"@codemation/core\";\n\nimport type { CanvasIconName } from \"../canvasIconName\";\nimport { OpenAIChatModelFactory } from \"./OpenAIChatModelFactory\";\n\nexport class OpenAIChatModelConfig implements ChatModelConfig {\n readonly type = OpenAIChatModelFactory;\n readonly presentation: AgentCanvasPresentation<CanvasIconName>;\n\n constructor(\n public readonly name: string,\n public readonly model: string,\n public readonly credentialSlotKey: string = \"openai\",\n presentationIn?: AgentCanvasPresentation<CanvasIconName>,\n public readonly options?: Readonly<{\n temperature?: number;\n maxTokens?: number;\n }>,\n ) {\n this.presentation = presentationIn ?? { icon: \"builtin:openai\", label: name };\n }\n\n getCredentialRequirements(): ReadonlyArray<CredentialRequirement> {\n return [\n {\n slotKey: this.credentialSlotKey,\n label: \"OpenAI API key\",\n acceptedTypes: [\"openai.apiKey\"],\n },\n ];\n }\n}\n","import { OpenAIChatModelConfig } from \"./openAiChatModelConfig\";\n\n/**\n * Default OpenAI chat model configs for scaffolds and demos (icon + label match {@link OpenAIChatModelConfig} defaults).\n * Prefer importing {@link openAiChatModelPresets} from here or from the consumer template re-export\n * instead of repeating {@link OpenAIChatModelConfig} construction in app workflows.\n */\nexport class OpenAiChatModelPresets {\n readonly demoGpt4oMini = new OpenAIChatModelConfig(\"OpenAI\", \"gpt-4o-mini\");\n\n readonly demoGpt41 = new OpenAIChatModelConfig(\"OpenAI\", \"gpt-4.1\");\n}\n\nexport const openAiChatModelPresets = new OpenAiChatModelPresets();\n","import type { AgentMessageDto, AgentToolCall } from \"@codemation/core\";\n\nimport { AIMessage, HumanMessage, SystemMessage, ToolMessage, type BaseMessage } from \"@langchain/core/messages\";\n\nexport class AgentMessageFactory {\n static createPromptMessages(messages: ReadonlyArray<AgentMessageDto>): ReadonlyArray<BaseMessage> {\n return messages.map((message) => this.createPromptMessage(message));\n }\n\n static createSystemPrompt(systemMessage: string): SystemMessage {\n return new SystemMessage(systemMessage);\n }\n\n static createUserPrompt(prompt: string): HumanMessage {\n return new HumanMessage(prompt);\n }\n\n static createAssistantPrompt(prompt: string): AIMessage {\n return new AIMessage(prompt);\n }\n\n static createToolMessage(toolCallId: string, content: string): ToolMessage {\n return new ToolMessage({ tool_call_id: toolCallId, content });\n }\n\n static extractContent(message: unknown): string {\n if (typeof message === \"string\") return message;\n if (!this.isRecord(message)) return String(message);\n const content = message.content;\n if (typeof content === \"string\") return content;\n if (Array.isArray(content)) {\n return content\n .map((part) => {\n if (typeof part === \"string\") return part;\n if (this.isRecord(part) && typeof part.text === \"string\") return part.text;\n return JSON.stringify(part);\n })\n .join(\"\\n\");\n }\n return JSON.stringify(content);\n }\n\n static extractToolCalls(message: unknown): ReadonlyArray<AgentToolCall> {\n if (!this.isRecord(message)) return [];\n const toolCalls = message.tool_calls;\n if (!Array.isArray(toolCalls)) return [];\n return toolCalls\n .filter((toolCall) => this.isRecord(toolCall) && typeof toolCall.name === \"string\")\n .map((toolCall) => ({\n id: typeof toolCall.id === \"string\" ? toolCall.id : undefined,\n name: toolCall.name as string,\n input: this.isRecord(toolCall) && \"args\" in toolCall ? toolCall.args : undefined,\n }));\n }\n\n private static isRecord(value: unknown): value is Record<string, unknown> {\n return typeof value === \"object\" && value !== null;\n }\n\n private static createPromptMessage(message: AgentMessageDto): BaseMessage {\n if (message.role === \"system\") {\n return this.createSystemPrompt(message.content);\n }\n if (message.role === \"assistant\") {\n return this.createAssistantPrompt(message.content);\n }\n return this.createUserPrompt(message.content);\n }\n}\n","import type { Item, NodeOutputs } from \"@codemation/core\";\n\nexport class AgentOutputFactory {\n static fromUnknown(value: unknown): NodeOutputs {\n return { main: [{ json: value }] };\n }\n\n static replaceJson(item: Item, value: unknown): Item {\n return {\n ...item,\n json: value,\n };\n }\n\n static fromAgentContent(content: string): unknown {\n try {\n return JSON.parse(content) as unknown;\n } catch {\n return { output: content };\n }\n }\n}\n","import type { NodeInputsByPort } from \"@codemation/core\";\n\nexport class AgentToolCallPortMap {\n static fromInput(input: unknown): NodeInputsByPort {\n return {\n in: [\n {\n json: input,\n },\n ],\n };\n }\n}\n","// functions\nexport function assertEqual(val) {\n return val;\n}\nexport function assertNotEqual(val) {\n return val;\n}\nexport function assertIs(_arg) { }\nexport function assertNever(_x) {\n throw new Error(\"Unexpected value in exhaustive check\");\n}\nexport function assert(_) { }\nexport function getEnumValues(entries) {\n const numericValues = Object.values(entries).filter((v) => typeof v === \"number\");\n const values = Object.entries(entries)\n .filter(([k, _]) => numericValues.indexOf(+k) === -1)\n .map(([_, v]) => v);\n return values;\n}\nexport function joinValues(array, separator = \"|\") {\n return array.map((val) => stringifyPrimitive(val)).join(separator);\n}\nexport function jsonStringifyReplacer(_, value) {\n if (typeof value === \"bigint\")\n return value.toString();\n return value;\n}\nexport function cached(getter) {\n const set = false;\n return {\n get value() {\n if (!set) {\n const value = getter();\n Object.defineProperty(this, \"value\", { value });\n return value;\n }\n throw new Error(\"cached value already set\");\n },\n };\n}\nexport function nullish(input) {\n return input === null || input === undefined;\n}\nexport function cleanRegex(source) {\n const start = source.startsWith(\"^\") ? 1 : 0;\n const end = source.endsWith(\"$\") ? source.length - 1 : source.length;\n return source.slice(start, end);\n}\nexport function floatSafeRemainder(val, step) {\n const valDecCount = (val.toString().split(\".\")[1] || \"\").length;\n const stepString = step.toString();\n let stepDecCount = (stepString.split(\".\")[1] || \"\").length;\n if (stepDecCount === 0 && /\\d?e-\\d?/.test(stepString)) {\n const match = stepString.match(/\\d?e-(\\d?)/);\n if (match?.[1]) {\n stepDecCount = Number.parseInt(match[1]);\n }\n }\n const decCount = valDecCount > stepDecCount ? valDecCount : stepDecCount;\n const valInt = Number.parseInt(val.toFixed(decCount).replace(\".\", \"\"));\n const stepInt = Number.parseInt(step.toFixed(decCount).replace(\".\", \"\"));\n return (valInt % stepInt) / 10 ** decCount;\n}\nconst EVALUATING = Symbol(\"evaluating\");\nexport function defineLazy(object, key, getter) {\n let value = undefined;\n Object.defineProperty(object, key, {\n get() {\n if (value === EVALUATING) {\n // Circular reference detected, return undefined to break the cycle\n return undefined;\n }\n if (value === undefined) {\n value = EVALUATING;\n value = getter();\n }\n return value;\n },\n set(v) {\n Object.defineProperty(object, key, {\n value: v,\n // configurable: true,\n });\n // object[key] = v;\n },\n configurable: true,\n });\n}\nexport function objectClone(obj) {\n return Object.create(Object.getPrototypeOf(obj), Object.getOwnPropertyDescriptors(obj));\n}\nexport function assignProp(target, prop, value) {\n Object.defineProperty(target, prop, {\n value,\n writable: true,\n enumerable: true,\n configurable: true,\n });\n}\nexport function mergeDefs(...defs) {\n const mergedDescriptors = {};\n for (const def of defs) {\n const descriptors = Object.getOwnPropertyDescriptors(def);\n Object.assign(mergedDescriptors, descriptors);\n }\n return Object.defineProperties({}, mergedDescriptors);\n}\nexport function cloneDef(schema) {\n return mergeDefs(schema._zod.def);\n}\nexport function getElementAtPath(obj, path) {\n if (!path)\n return obj;\n return path.reduce((acc, key) => acc?.[key], obj);\n}\nexport function promiseAllObject(promisesObj) {\n const keys = Object.keys(promisesObj);\n const promises = keys.map((key) => promisesObj[key]);\n return Promise.all(promises).then((results) => {\n const resolvedObj = {};\n for (let i = 0; i < keys.length; i++) {\n resolvedObj[keys[i]] = results[i];\n }\n return resolvedObj;\n });\n}\nexport function randomString(length = 10) {\n const chars = \"abcdefghijklmnopqrstuvwxyz\";\n let str = \"\";\n for (let i = 0; i < length; i++) {\n str += chars[Math.floor(Math.random() * chars.length)];\n }\n return str;\n}\nexport function esc(str) {\n return JSON.stringify(str);\n}\nexport function slugify(input) {\n return input\n .toLowerCase()\n .trim()\n .replace(/[^\\w\\s-]/g, \"\")\n .replace(/[\\s_-]+/g, \"-\")\n .replace(/^-+|-+$/g, \"\");\n}\nexport const captureStackTrace = (\"captureStackTrace\" in Error ? Error.captureStackTrace : (..._args) => { });\nexport function isObject(data) {\n return typeof data === \"object\" && data !== null && !Array.isArray(data);\n}\nexport const allowsEval = cached(() => {\n // @ts-ignore\n if (typeof navigator !== \"undefined\" && navigator?.userAgent?.includes(\"Cloudflare\")) {\n return false;\n }\n try {\n const F = Function;\n new F(\"\");\n return true;\n }\n catch (_) {\n return false;\n }\n});\nexport function isPlainObject(o) {\n if (isObject(o) === false)\n return false;\n // modified constructor\n const ctor = o.constructor;\n if (ctor === undefined)\n return true;\n if (typeof ctor !== \"function\")\n return true;\n // modified prototype\n const prot = ctor.prototype;\n if (isObject(prot) === false)\n return false;\n // ctor doesn't have static `isPrototypeOf`\n if (Object.prototype.hasOwnProperty.call(prot, \"isPrototypeOf\") === false) {\n return false;\n }\n return true;\n}\nexport function shallowClone(o) {\n if (isPlainObject(o))\n return { ...o };\n if (Array.isArray(o))\n return [...o];\n return o;\n}\nexport function numKeys(data) {\n let keyCount = 0;\n for (const key in data) {\n if (Object.prototype.hasOwnProperty.call(data, key)) {\n keyCount++;\n }\n }\n return keyCount;\n}\nexport const getParsedType = (data) => {\n const t = typeof data;\n switch (t) {\n case \"undefined\":\n return \"undefined\";\n case \"string\":\n return \"string\";\n case \"number\":\n return Number.isNaN(data) ? \"nan\" : \"number\";\n case \"boolean\":\n return \"boolean\";\n case \"function\":\n return \"function\";\n case \"bigint\":\n return \"bigint\";\n case \"symbol\":\n return \"symbol\";\n case \"object\":\n if (Array.isArray(data)) {\n return \"array\";\n }\n if (data === null) {\n return \"null\";\n }\n if (data.then && typeof data.then === \"function\" && data.catch && typeof data.catch === \"function\") {\n return \"promise\";\n }\n if (typeof Map !== \"undefined\" && data instanceof Map) {\n return \"map\";\n }\n if (typeof Set !== \"undefined\" && data instanceof Set) {\n return \"set\";\n }\n if (typeof Date !== \"undefined\" && data instanceof Date) {\n return \"date\";\n }\n // @ts-ignore\n if (typeof File !== \"undefined\" && data instanceof File) {\n return \"file\";\n }\n return \"object\";\n default:\n throw new Error(`Unknown data type: ${t}`);\n }\n};\nexport const propertyKeyTypes = new Set([\"string\", \"number\", \"symbol\"]);\nexport const primitiveTypes = new Set([\"string\", \"number\", \"bigint\", \"boolean\", \"symbol\", \"undefined\"]);\nexport function escapeRegex(str) {\n return str.replace(/[.*+?^${}()|[\\]\\\\]/g, \"\\\\$&\");\n}\n// zod-specific utils\nexport function clone(inst, def, params) {\n const cl = new inst._zod.constr(def ?? inst._zod.def);\n if (!def || params?.parent)\n cl._zod.parent = inst;\n return cl;\n}\nexport function normalizeParams(_params) {\n const params = _params;\n if (!params)\n return {};\n if (typeof params === \"string\")\n return { error: () => params };\n if (params?.message !== undefined) {\n if (params?.error !== undefined)\n throw new Error(\"Cannot specify both `message` and `error` params\");\n params.error = params.message;\n }\n delete params.message;\n if (typeof params.error === \"string\")\n return { ...params, error: () => params.error };\n return params;\n}\nexport function createTransparentProxy(getter) {\n let target;\n return new Proxy({}, {\n get(_, prop, receiver) {\n target ?? (target = getter());\n return Reflect.get(target, prop, receiver);\n },\n set(_, prop, value, receiver) {\n target ?? (target = getter());\n return Reflect.set(target, prop, value, receiver);\n },\n has(_, prop) {\n target ?? (target = getter());\n return Reflect.has(target, prop);\n },\n deleteProperty(_, prop) {\n target ?? (target = getter());\n return Reflect.deleteProperty(target, prop);\n },\n ownKeys(_) {\n target ?? (target = getter());\n return Reflect.ownKeys(target);\n },\n getOwnPropertyDescriptor(_, prop) {\n target ?? (target = getter());\n return Reflect.getOwnPropertyDescriptor(target, prop);\n },\n defineProperty(_, prop, descriptor) {\n target ?? (target = getter());\n return Reflect.defineProperty(target, prop, descriptor);\n },\n });\n}\nexport function stringifyPrimitive(value) {\n if (typeof value === \"bigint\")\n return value.toString() + \"n\";\n if (typeof value === \"string\")\n return `\"${value}\"`;\n return `${value}`;\n}\nexport function optionalKeys(shape) {\n return Object.keys(shape).filter((k) => {\n return shape[k]._zod.optin === \"optional\" && shape[k]._zod.optout === \"optional\";\n });\n}\nexport const NUMBER_FORMAT_RANGES = {\n safeint: [Number.MIN_SAFE_INTEGER, Number.MAX_SAFE_INTEGER],\n int32: [-2147483648, 2147483647],\n uint32: [0, 4294967295],\n float32: [-3.4028234663852886e38, 3.4028234663852886e38],\n float64: [-Number.MAX_VALUE, Number.MAX_VALUE],\n};\nexport const BIGINT_FORMAT_RANGES = {\n int64: [/* @__PURE__*/ BigInt(\"-9223372036854775808\"), /* @__PURE__*/ BigInt(\"9223372036854775807\")],\n uint64: [/* @__PURE__*/ BigInt(0), /* @__PURE__*/ BigInt(\"18446744073709551615\")],\n};\nexport function pick(schema, mask) {\n const currDef = schema._zod.def;\n const checks = currDef.checks;\n const hasChecks = checks && checks.length > 0;\n if (hasChecks) {\n throw new Error(\".pick() cannot be used on object schemas containing refinements\");\n }\n const def = mergeDefs(schema._zod.def, {\n get shape() {\n const newShape = {};\n for (const key in mask) {\n if (!(key in currDef.shape)) {\n throw new Error(`Unrecognized key: \"${key}\"`);\n }\n if (!mask[key])\n continue;\n newShape[key] = currDef.shape[key];\n }\n assignProp(this, \"shape\", newShape); // self-caching\n return newShape;\n },\n checks: [],\n });\n return clone(schema, def);\n}\nexport function omit(schema, mask) {\n const currDef = schema._zod.def;\n const checks = currDef.checks;\n const hasChecks = checks && checks.length > 0;\n if (hasChecks) {\n throw new Error(\".omit() cannot be used on object schemas containing refinements\");\n }\n const def = mergeDefs(schema._zod.def, {\n get shape() {\n const newShape = { ...schema._zod.def.shape };\n for (const key in mask) {\n if (!(key in currDef.shape)) {\n throw new Error(`Unrecognized key: \"${key}\"`);\n }\n if (!mask[key])\n continue;\n delete newShape[key];\n }\n assignProp(this, \"shape\", newShape); // self-caching\n return newShape;\n },\n checks: [],\n });\n return clone(schema, def);\n}\nexport function extend(schema, shape) {\n if (!isPlainObject(shape)) {\n throw new Error(\"Invalid input to extend: expected a plain object\");\n }\n const checks = schema._zod.def.checks;\n const hasChecks = checks && checks.length > 0;\n if (hasChecks) {\n // Only throw if new shape overlaps with existing shape\n // Use getOwnPropertyDescriptor to check key existence without accessing values\n const existingShape = schema._zod.def.shape;\n for (const key in shape) {\n if (Object.getOwnPropertyDescriptor(existingShape, key) !== undefined) {\n throw new Error(\"Cannot overwrite keys on object schemas containing refinements. Use `.safeExtend()` instead.\");\n }\n }\n }\n const def = mergeDefs(schema._zod.def, {\n get shape() {\n const _shape = { ...schema._zod.def.shape, ...shape };\n assignProp(this, \"shape\", _shape); // self-caching\n return _shape;\n },\n });\n return clone(schema, def);\n}\nexport function safeExtend(schema, shape) {\n if (!isPlainObject(shape)) {\n throw new Error(\"Invalid input to safeExtend: expected a plain object\");\n }\n const def = mergeDefs(schema._zod.def, {\n get shape() {\n const _shape = { ...schema._zod.def.shape, ...shape };\n assignProp(this, \"shape\", _shape); // self-caching\n return _shape;\n },\n });\n return clone(schema, def);\n}\nexport function merge(a, b) {\n const def = mergeDefs(a._zod.def, {\n get shape() {\n const _shape = { ...a._zod.def.shape, ...b._zod.def.shape };\n assignProp(this, \"shape\", _shape); // self-caching\n return _shape;\n },\n get catchall() {\n return b._zod.def.catchall;\n },\n checks: [], // delete existing checks\n });\n return clone(a, def);\n}\nexport function partial(Class, schema, mask) {\n const currDef = schema._zod.def;\n const checks = currDef.checks;\n const hasChecks = checks && checks.length > 0;\n if (hasChecks) {\n throw new Error(\".partial() cannot be used on object schemas containing refinements\");\n }\n const def = mergeDefs(schema._zod.def, {\n get shape() {\n const oldShape = schema._zod.def.shape;\n const shape = { ...oldShape };\n if (mask) {\n for (const key in mask) {\n if (!(key in oldShape)) {\n throw new Error(`Unrecognized key: \"${key}\"`);\n }\n if (!mask[key])\n continue;\n // if (oldShape[key]!._zod.optin === \"optional\") continue;\n shape[key] = Class\n ? new Class({\n type: \"optional\",\n innerType: oldShape[key],\n })\n : oldShape[key];\n }\n }\n else {\n for (const key in oldShape) {\n // if (oldShape[key]!._zod.optin === \"optional\") continue;\n shape[key] = Class\n ? new Class({\n type: \"optional\",\n innerType: oldShape[key],\n })\n : oldShape[key];\n }\n }\n assignProp(this, \"shape\", shape); // self-caching\n return shape;\n },\n checks: [],\n });\n return clone(schema, def);\n}\nexport function required(Class, schema, mask) {\n const def = mergeDefs(schema._zod.def, {\n get shape() {\n const oldShape = schema._zod.def.shape;\n const shape = { ...oldShape };\n if (mask) {\n for (const key in mask) {\n if (!(key in shape)) {\n throw new Error(`Unrecognized key: \"${key}\"`);\n }\n if (!mask[key])\n continue;\n // overwrite with non-optional\n shape[key] = new Class({\n type: \"nonoptional\",\n innerType: oldShape[key],\n });\n }\n }\n else {\n for (const key in oldShape) {\n // overwrite with non-optional\n shape[key] = new Class({\n type: \"nonoptional\",\n innerType: oldShape[key],\n });\n }\n }\n assignProp(this, \"shape\", shape); // self-caching\n return shape;\n },\n });\n return clone(schema, def);\n}\n// invalid_type | too_big | too_small | invalid_format | not_multiple_of | unrecognized_keys | invalid_union | invalid_key | invalid_element | invalid_value | custom\nexport function aborted(x, startIndex = 0) {\n if (x.aborted === true)\n return true;\n for (let i = startIndex; i < x.issues.length; i++) {\n if (x.issues[i]?.continue !== true) {\n return true;\n }\n }\n return false;\n}\nexport function prefixIssues(path, issues) {\n return issues.map((iss) => {\n var _a;\n (_a = iss).path ?? (_a.path = []);\n iss.path.unshift(path);\n return iss;\n });\n}\nexport function unwrapMessage(message) {\n return typeof message === \"string\" ? message : message?.message;\n}\nexport function finalizeIssue(iss, ctx, config) {\n const full = { ...iss, path: iss.path ?? [] };\n // for backwards compatibility\n if (!iss.message) {\n const message = unwrapMessage(iss.inst?._zod.def?.error?.(iss)) ??\n unwrapMessage(ctx?.error?.(iss)) ??\n unwrapMessage(config.customError?.(iss)) ??\n unwrapMessage(config.localeError?.(iss)) ??\n \"Invalid input\";\n full.message = message;\n }\n // delete (full as any).def;\n delete full.inst;\n delete full.continue;\n if (!ctx?.reportInput) {\n delete full.input;\n }\n return full;\n}\nexport function getSizableOrigin(input) {\n if (input instanceof Set)\n return \"set\";\n if (input instanceof Map)\n return \"map\";\n // @ts-ignore\n if (input instanceof File)\n return \"file\";\n return \"unknown\";\n}\nexport function getLengthableOrigin(input) {\n if (Array.isArray(input))\n return \"array\";\n if (typeof input === \"string\")\n return \"string\";\n return \"unknown\";\n}\nexport function parsedType(data) {\n const t = typeof data;\n switch (t) {\n case \"number\": {\n return Number.isNaN(data) ? \"nan\" : \"number\";\n }\n case \"object\": {\n if (data === null) {\n return \"null\";\n }\n if (Array.isArray(data)) {\n return \"array\";\n }\n const obj = data;\n if (obj && Object.getPrototypeOf(obj) !== Object.prototype && \"constructor\" in obj && obj.constructor) {\n return obj.constructor.name;\n }\n }\n }\n return t;\n}\nexport function issue(...args) {\n const [iss, input, inst] = args;\n if (typeof iss === \"string\") {\n return {\n message: iss,\n code: \"custom\",\n input,\n inst,\n };\n }\n return { ...iss };\n}\nexport function cleanEnum(obj) {\n return Object.entries(obj)\n .filter(([k, _]) => {\n // return true if NaN, meaning it's not a number, thus a string key\n return Number.isNaN(Number.parseInt(k, 10));\n })\n .map((el) => el[1]);\n}\n// Codec utility functions\nexport function base64ToUint8Array(base64) {\n const binaryString = atob(base64);\n const bytes = new Uint8Array(binaryString.length);\n for (let i = 0; i < binaryString.length; i++) {\n bytes[i] = binaryString.charCodeAt(i);\n }\n return bytes;\n}\nexport function uint8ArrayToBase64(bytes) {\n let binaryString = \"\";\n for (let i = 0; i < bytes.length; i++) {\n binaryString += String.fromCharCode(bytes[i]);\n }\n return btoa(binaryString);\n}\nexport function base64urlToUint8Array(base64url) {\n const base64 = base64url.replace(/-/g, \"+\").replace(/_/g, \"/\");\n const padding = \"=\".repeat((4 - (base64.length % 4)) % 4);\n return base64ToUint8Array(base64 + padding);\n}\nexport function uint8ArrayToBase64url(bytes) {\n return uint8ArrayToBase64(bytes).replace(/\\+/g, \"-\").replace(/\\//g, \"_\").replace(/=/g, \"\");\n}\nexport function hexToUint8Array(hex) {\n const cleanHex = hex.replace(/^0x/, \"\");\n if (cleanHex.length % 2 !== 0) {\n throw new Error(\"Invalid hex string length\");\n }\n const bytes = new Uint8Array(cleanHex.length / 2);\n for (let i = 0; i < cleanHex.length; i += 2) {\n bytes[i / 2] = Number.parseInt(cleanHex.slice(i, i + 2), 16);\n }\n return bytes;\n}\nexport function uint8ArrayToHex(bytes) {\n return Array.from(bytes)\n .map((b) => b.toString(16).padStart(2, \"0\"))\n .join(\"\");\n}\n// instanceof\nexport class Class {\n constructor(..._args) { }\n}\n","var _a;\nexport const $output = Symbol(\"ZodOutput\");\nexport const $input = Symbol(\"ZodInput\");\nexport class $ZodRegistry {\n constructor() {\n this._map = new WeakMap();\n this._idmap = new Map();\n }\n add(schema, ..._meta) {\n const meta = _meta[0];\n this._map.set(schema, meta);\n if (meta && typeof meta === \"object\" && \"id\" in meta) {\n this._idmap.set(meta.id, schema);\n }\n return this;\n }\n clear() {\n this._map = new WeakMap();\n this._idmap = new Map();\n return this;\n }\n remove(schema) {\n const meta = this._map.get(schema);\n if (meta && typeof meta === \"object\" && \"id\" in meta) {\n this._idmap.delete(meta.id);\n }\n this._map.delete(schema);\n return this;\n }\n get(schema) {\n // return this._map.get(schema) as any;\n // inherit metadata\n const p = schema._zod.parent;\n if (p) {\n const pm = { ...(this.get(p) ?? {}) };\n delete pm.id; // do not inherit id\n const f = { ...pm, ...this._map.get(schema) };\n return Object.keys(f).length ? f : undefined;\n }\n return this._map.get(schema);\n }\n has(schema) {\n return this._map.has(schema);\n }\n}\n// registries\nexport function registry() {\n return new $ZodRegistry();\n}\n(_a = globalThis).__zod_globalRegistry ?? (_a.__zod_globalRegistry = registry());\nexport const globalRegistry = globalThis.__zod_globalRegistry;\n","import { globalRegistry } from \"./registries.js\";\n// function initializeContext<T extends schemas.$ZodType>(inputs: JSONSchemaGeneratorParams<T>): ToJSONSchemaContext<T> {\n// return {\n// processor: inputs.processor,\n// metadataRegistry: inputs.metadata ?? globalRegistry,\n// target: inputs.target ?? \"draft-2020-12\",\n// unrepresentable: inputs.unrepresentable ?? \"throw\",\n// };\n// }\nexport function initializeContext(params) {\n // Normalize target: convert old non-hyphenated versions to hyphenated versions\n let target = params?.target ?? \"draft-2020-12\";\n if (target === \"draft-4\")\n target = \"draft-04\";\n if (target === \"draft-7\")\n target = \"draft-07\";\n return {\n processors: params.processors ?? {},\n metadataRegistry: params?.metadata ?? globalRegistry,\n target,\n unrepresentable: params?.unrepresentable ?? \"throw\",\n override: params?.override ?? (() => { }),\n io: params?.io ?? \"output\",\n counter: 0,\n seen: new Map(),\n cycles: params?.cycles ?? \"ref\",\n reused: params?.reused ?? \"inline\",\n external: params?.external ?? undefined,\n };\n}\nexport function process(schema, ctx, _params = { path: [], schemaPath: [] }) {\n var _a;\n const def = schema._zod.def;\n // check for schema in seens\n const seen = ctx.seen.get(schema);\n if (seen) {\n seen.count++;\n // check if cycle\n const isCycle = _params.schemaPath.includes(schema);\n if (isCycle) {\n seen.cycle = _params.path;\n }\n return seen.schema;\n }\n // initialize\n const result = { schema: {}, count: 1, cycle: undefined, path: _params.path };\n ctx.seen.set(schema, result);\n // custom method overrides default behavior\n const overrideSchema = schema._zod.toJSONSchema?.();\n if (overrideSchema) {\n result.schema = overrideSchema;\n }\n else {\n const params = {\n ..._params,\n schemaPath: [..._params.schemaPath, schema],\n path: _params.path,\n };\n if (schema._zod.processJSONSchema) {\n schema._zod.processJSONSchema(ctx, result.schema, params);\n }\n else {\n const _json = result.schema;\n const processor = ctx.processors[def.type];\n if (!processor) {\n throw new Error(`[toJSONSchema]: Non-representable type encountered: ${def.type}`);\n }\n processor(schema, ctx, _json, params);\n }\n const parent = schema._zod.parent;\n if (parent) {\n // Also set ref if processor didn't (for inheritance)\n if (!result.ref)\n result.ref = parent;\n process(parent, ctx, params);\n ctx.seen.get(parent).isParent = true;\n }\n }\n // metadata\n const meta = ctx.metadataRegistry.get(schema);\n if (meta)\n Object.assign(result.schema, meta);\n if (ctx.io === \"input\" && isTransforming(schema)) {\n // examples/defaults only apply to output type of pipe\n delete result.schema.examples;\n delete result.schema.default;\n }\n // set prefault as default\n if (ctx.io === \"input\" && result.schema._prefault)\n (_a = result.schema).default ?? (_a.default = result.schema._prefault);\n delete result.schema._prefault;\n // pulling fresh from ctx.seen in case it was overwritten\n const _result = ctx.seen.get(schema);\n return _result.schema;\n}\nexport function extractDefs(ctx, schema\n// params: EmitParams\n) {\n // iterate over seen map;\n const root = ctx.seen.get(schema);\n if (!root)\n throw new Error(\"Unprocessed schema. This is a bug in Zod.\");\n // Track ids to detect duplicates across different schemas\n const idToSchema = new Map();\n for (const entry of ctx.seen.entries()) {\n const id = ctx.metadataRegistry.get(entry[0])?.id;\n if (id) {\n const existing = idToSchema.get(id);\n if (existing && existing !== entry[0]) {\n throw new Error(`Duplicate schema id \"${id}\" detected during JSON Schema conversion. Two different schemas cannot share the same id when converted together.`);\n }\n idToSchema.set(id, entry[0]);\n }\n }\n // returns a ref to the schema\n // defId will be empty if the ref points to an external schema (or #)\n const makeURI = (entry) => {\n // comparing the seen objects because sometimes\n // multiple schemas map to the same seen object.\n // e.g. lazy\n // external is configured\n const defsSegment = ctx.target === \"draft-2020-12\" ? \"$defs\" : \"definitions\";\n if (ctx.external) {\n const externalId = ctx.external.registry.get(entry[0])?.id; // ?? \"__shared\";// `__schema${ctx.counter++}`;\n // check if schema is in the external registry\n const uriGenerator = ctx.external.uri ?? ((id) => id);\n if (externalId) {\n return { ref: uriGenerator(externalId) };\n }\n // otherwise, add to __shared\n const id = entry[1].defId ?? entry[1].schema.id ?? `schema${ctx.counter++}`;\n entry[1].defId = id; // set defId so it will be reused if needed\n return { defId: id, ref: `${uriGenerator(\"__shared\")}#/${defsSegment}/${id}` };\n }\n if (entry[1] === root) {\n return { ref: \"#\" };\n }\n // self-contained schema\n const uriPrefix = `#`;\n const defUriPrefix = `${uriPrefix}/${defsSegment}/`;\n const defId = entry[1].schema.id ?? `__schema${ctx.counter++}`;\n return { defId, ref: defUriPrefix + defId };\n };\n // stored cached version in `def` property\n // remove all properties, set $ref\n const extractToDef = (entry) => {\n // if the schema is already a reference, do not extract it\n if (entry[1].schema.$ref) {\n return;\n }\n const seen = entry[1];\n const { ref, defId } = makeURI(entry);\n seen.def = { ...seen.schema };\n // defId won't be set if the schema is a reference to an external schema\n // or if the schema is the root schema\n if (defId)\n seen.defId = defId;\n // wipe away all properties except $ref\n const schema = seen.schema;\n for (const key in schema) {\n delete schema[key];\n }\n schema.$ref = ref;\n };\n // throw on cycles\n // break cycles\n if (ctx.cycles === \"throw\") {\n for (const entry of ctx.seen.entries()) {\n const seen = entry[1];\n if (seen.cycle) {\n throw new Error(\"Cycle detected: \" +\n `#/${seen.cycle?.join(\"/\")}/<root>` +\n '\\n\\nSet the `cycles` parameter to `\"ref\"` to resolve cyclical schemas with defs.');\n }\n }\n }\n // extract schemas into $defs\n for (const entry of ctx.seen.entries()) {\n const seen = entry[1];\n // convert root schema to # $ref\n if (schema === entry[0]) {\n extractToDef(entry); // this has special handling for the root schema\n continue;\n }\n // extract schemas that are in the external registry\n if (ctx.external) {\n const ext = ctx.external.registry.get(entry[0])?.id;\n if (schema !== entry[0] && ext) {\n extractToDef(entry);\n continue;\n }\n }\n // extract schemas with `id` meta\n const id = ctx.metadataRegistry.get(entry[0])?.id;\n if (id) {\n extractToDef(entry);\n continue;\n }\n // break cycles\n if (seen.cycle) {\n // any\n extractToDef(entry);\n continue;\n }\n // extract reused schemas\n if (seen.count > 1) {\n if (ctx.reused === \"ref\") {\n extractToDef(entry);\n // biome-ignore lint:\n continue;\n }\n }\n }\n}\nexport function finalize(ctx, schema) {\n const root = ctx.seen.get(schema);\n if (!root)\n throw new Error(\"Unprocessed schema. This is a bug in Zod.\");\n // flatten refs - inherit properties from parent schemas\n const flattenRef = (zodSchema) => {\n const seen = ctx.seen.get(zodSchema);\n // already processed\n if (seen.ref === null)\n return;\n const schema = seen.def ?? seen.schema;\n const _cached = { ...schema };\n const ref = seen.ref;\n seen.ref = null; // prevent infinite recursion\n if (ref) {\n flattenRef(ref);\n const refSeen = ctx.seen.get(ref);\n const refSchema = refSeen.schema;\n // merge referenced schema into current\n if (refSchema.$ref && (ctx.target === \"draft-07\" || ctx.target === \"draft-04\" || ctx.target === \"openapi-3.0\")) {\n // older drafts can't combine $ref with other properties\n schema.allOf = schema.allOf ?? [];\n schema.allOf.push(refSchema);\n }\n else {\n Object.assign(schema, refSchema);\n }\n // restore child's own properties (child wins)\n Object.assign(schema, _cached);\n const isParentRef = zodSchema._zod.parent === ref;\n // For parent chain, child is a refinement - remove parent-only properties\n if (isParentRef) {\n for (const key in schema) {\n if (key === \"$ref\" || key === \"allOf\")\n continue;\n if (!(key in _cached)) {\n delete schema[key];\n }\n }\n }\n // When ref was extracted to $defs, remove properties that match the definition\n if (refSchema.$ref && refSeen.def) {\n for (const key in schema) {\n if (key === \"$ref\" || key === \"allOf\")\n continue;\n if (key in refSeen.def && JSON.stringify(schema[key]) === JSON.stringify(refSeen.def[key])) {\n delete schema[key];\n }\n }\n }\n }\n // If parent was extracted (has $ref), propagate $ref to this schema\n // This handles cases like: readonly().meta({id}).describe()\n // where processor sets ref to innerType but parent should be referenced\n const parent = zodSchema._zod.parent;\n if (parent && parent !== ref) {\n // Ensure parent is processed first so its def has inherited properties\n flattenRef(parent);\n const parentSeen = ctx.seen.get(parent);\n if (parentSeen?.schema.$ref) {\n schema.$ref = parentSeen.schema.$ref;\n // De-duplicate with parent's definition\n if (parentSeen.def) {\n for (const key in schema) {\n if (key === \"$ref\" || key === \"allOf\")\n continue;\n if (key in parentSeen.def && JSON.stringify(schema[key]) === JSON.stringify(parentSeen.def[key])) {\n delete schema[key];\n }\n }\n }\n }\n }\n // execute overrides\n ctx.override({\n zodSchema: zodSchema,\n jsonSchema: schema,\n path: seen.path ?? [],\n });\n };\n for (const entry of [...ctx.seen.entries()].reverse()) {\n flattenRef(entry[0]);\n }\n const result = {};\n if (ctx.target === \"draft-2020-12\") {\n result.$schema = \"https://json-schema.org/draft/2020-12/schema\";\n }\n else if (ctx.target === \"draft-07\") {\n result.$schema = \"http://json-schema.org/draft-07/schema#\";\n }\n else if (ctx.target === \"draft-04\") {\n result.$schema = \"http://json-schema.org/draft-04/schema#\";\n }\n else if (ctx.target === \"openapi-3.0\") {\n // OpenAPI 3.0 schema objects should not include a $schema property\n }\n else {\n // Arbitrary string values are allowed but won't have a $schema property set\n }\n if (ctx.external?.uri) {\n const id = ctx.external.registry.get(schema)?.id;\n if (!id)\n throw new Error(\"Schema is missing an `id` property\");\n result.$id = ctx.external.uri(id);\n }\n Object.assign(result, root.def ?? root.schema);\n // build defs object\n const defs = ctx.external?.defs ?? {};\n for (const entry of ctx.seen.entries()) {\n const seen = entry[1];\n if (seen.def && seen.defId) {\n defs[seen.defId] = seen.def;\n }\n }\n // set definitions in result\n if (ctx.external) {\n }\n else {\n if (Object.keys(defs).length > 0) {\n if (ctx.target === \"draft-2020-12\") {\n result.$defs = defs;\n }\n else {\n result.definitions = defs;\n }\n }\n }\n try {\n // this \"finalizes\" this schema and ensures all cycles are removed\n // each call to finalize() is functionally independent\n // though the seen map is shared\n const finalized = JSON.parse(JSON.stringify(result));\n Object.defineProperty(finalized, \"~standard\", {\n value: {\n ...schema[\"~standard\"],\n jsonSchema: {\n input: createStandardJSONSchemaMethod(schema, \"input\", ctx.processors),\n output: createStandardJSONSchemaMethod(schema, \"output\", ctx.processors),\n },\n },\n enumerable: false,\n writable: false,\n });\n return finalized;\n }\n catch (_err) {\n throw new Error(\"Error converting schema to JSON.\");\n }\n}\nfunction isTransforming(_schema, _ctx) {\n const ctx = _ctx ?? { seen: new Set() };\n if (ctx.seen.has(_schema))\n return false;\n ctx.seen.add(_schema);\n const def = _schema._zod.def;\n if (def.type === \"transform\")\n return true;\n if (def.type === \"array\")\n return isTransforming(def.element, ctx);\n if (def.type === \"set\")\n return isTransforming(def.valueType, ctx);\n if (def.type === \"lazy\")\n return isTransforming(def.getter(), ctx);\n if (def.type === \"promise\" ||\n def.type === \"optional\" ||\n def.type === \"nonoptional\" ||\n def.type === \"nullable\" ||\n def.type === \"readonly\" ||\n def.type === \"default\" ||\n def.type === \"prefault\") {\n return isTransforming(def.innerType, ctx);\n }\n if (def.type === \"intersection\") {\n return isTransforming(def.left, ctx) || isTransforming(def.right, ctx);\n }\n if (def.type === \"record\" || def.type === \"map\") {\n return isTransforming(def.keyType, ctx) || isTransforming(def.valueType, ctx);\n }\n if (def.type === \"pipe\") {\n return isTransforming(def.in, ctx) || isTransforming(def.out, ctx);\n }\n if (def.type === \"object\") {\n for (const key in def.shape) {\n if (isTransforming(def.shape[key], ctx))\n return true;\n }\n return false;\n }\n if (def.type === \"union\") {\n for (const option of def.options) {\n if (isTransforming(option, ctx))\n return true;\n }\n return false;\n }\n if (def.type === \"tuple\") {\n for (const item of def.items) {\n if (isTransforming(item, ctx))\n return true;\n }\n if (def.rest && isTransforming(def.rest, ctx))\n return true;\n return false;\n }\n return false;\n}\n/**\n * Creates a toJSONSchema method for a schema instance.\n * This encapsulates the logic of initializing context, processing, extracting defs, and finalizing.\n */\nexport const createToJSONSchemaMethod = (schema, processors = {}) => (params) => {\n const ctx = initializeContext({ ...params, processors });\n process(schema, ctx);\n extractDefs(ctx, schema);\n return finalize(ctx, schema);\n};\nexport const createStandardJSONSchemaMethod = (schema, io, processors = {}) => (params) => {\n const { libraryOptions, target } = params ?? {};\n const ctx = initializeContext({ ...(libraryOptions ?? {}), target, io, processors });\n process(schema, ctx);\n extractDefs(ctx, schema);\n return finalize(ctx, schema);\n};\n","import { extractDefs, finalize, initializeContext, process, } from \"./to-json-schema.js\";\nimport { getEnumValues } from \"./util.js\";\nconst formatMap = {\n guid: \"uuid\",\n url: \"uri\",\n datetime: \"date-time\",\n json_string: \"json-string\",\n regex: \"\", // do not set\n};\n// ==================== SIMPLE TYPE PROCESSORS ====================\nexport const stringProcessor = (schema, ctx, _json, _params) => {\n const json = _json;\n json.type = \"string\";\n const { minimum, maximum, format, patterns, contentEncoding } = schema._zod\n .bag;\n if (typeof minimum === \"number\")\n json.minLength = minimum;\n if (typeof maximum === \"number\")\n json.maxLength = maximum;\n // custom pattern overrides format\n if (format) {\n json.format = formatMap[format] ?? format;\n if (json.format === \"\")\n delete json.format; // empty format is not valid\n // JSON Schema format: \"time\" requires a full time with offset or Z\n // z.iso.time() does not include timezone information, so format: \"time\" should never be used\n if (format === \"time\") {\n delete json.format;\n }\n }\n if (contentEncoding)\n json.contentEncoding = contentEncoding;\n if (patterns && patterns.size > 0) {\n const regexes = [...patterns];\n if (regexes.length === 1)\n json.pattern = regexes[0].source;\n else if (regexes.length > 1) {\n json.allOf = [\n ...regexes.map((regex) => ({\n ...(ctx.target === \"draft-07\" || ctx.target === \"draft-04\" || ctx.target === \"openapi-3.0\"\n ? { type: \"string\" }\n : {}),\n pattern: regex.source,\n })),\n ];\n }\n }\n};\nexport const numberProcessor = (schema, ctx, _json, _params) => {\n const json = _json;\n const { minimum, maximum, format, multipleOf, exclusiveMaximum, exclusiveMinimum } = schema._zod.bag;\n if (typeof format === \"string\" && format.includes(\"int\"))\n json.type = \"integer\";\n else\n json.type = \"number\";\n if (typeof exclusiveMinimum === \"number\") {\n if (ctx.target === \"draft-04\" || ctx.target === \"openapi-3.0\") {\n json.minimum = exclusiveMinimum;\n json.exclusiveMinimum = true;\n }\n else {\n json.exclusiveMinimum = exclusiveMinimum;\n }\n }\n if (typeof minimum === \"number\") {\n json.minimum = minimum;\n if (typeof exclusiveMinimum === \"number\" && ctx.target !== \"draft-04\") {\n if (exclusiveMinimum >= minimum)\n delete json.minimum;\n else\n delete json.exclusiveMinimum;\n }\n }\n if (typeof exclusiveMaximum === \"number\") {\n if (ctx.target === \"draft-04\" || ctx.target === \"openapi-3.0\") {\n json.maximum = exclusiveMaximum;\n json.exclusiveMaximum = true;\n }\n else {\n json.exclusiveMaximum = exclusiveMaximum;\n }\n }\n if (typeof maximum === \"number\") {\n json.maximum = maximum;\n if (typeof exclusiveMaximum === \"number\" && ctx.target !== \"draft-04\") {\n if (exclusiveMaximum <= maximum)\n delete json.maximum;\n else\n delete json.exclusiveMaximum;\n }\n }\n if (typeof multipleOf === \"number\")\n json.multipleOf = multipleOf;\n};\nexport const booleanProcessor = (_schema, _ctx, json, _params) => {\n json.type = \"boolean\";\n};\nexport const bigintProcessor = (_schema, ctx, _json, _params) => {\n if (ctx.unrepresentable === \"throw\") {\n throw new Error(\"BigInt cannot be represented in JSON Schema\");\n }\n};\nexport const symbolProcessor = (_schema, ctx, _json, _params) => {\n if (ctx.unrepresentable === \"throw\") {\n throw new Error(\"Symbols cannot be represented in JSON Schema\");\n }\n};\nexport const nullProcessor = (_schema, ctx, json, _params) => {\n if (ctx.target === \"openapi-3.0\") {\n json.type = \"string\";\n json.nullable = true;\n json.enum = [null];\n }\n else {\n json.type = \"null\";\n }\n};\nexport const undefinedProcessor = (_schema, ctx, _json, _params) => {\n if (ctx.unrepresentable === \"throw\") {\n throw new Error(\"Undefined cannot be represented in JSON Schema\");\n }\n};\nexport const voidProcessor = (_schema, ctx, _json, _params) => {\n if (ctx.unrepresentable === \"throw\") {\n throw new Error(\"Void cannot be represented in JSON Schema\");\n }\n};\nexport const neverProcessor = (_schema, _ctx, json, _params) => {\n json.not = {};\n};\nexport const anyProcessor = (_schema, _ctx, _json, _params) => {\n // empty schema accepts anything\n};\nexport const unknownProcessor = (_schema, _ctx, _json, _params) => {\n // empty schema accepts anything\n};\nexport const dateProcessor = (_schema, ctx, _json, _params) => {\n if (ctx.unrepresentable === \"throw\") {\n throw new Error(\"Date cannot be represented in JSON Schema\");\n }\n};\nexport const enumProcessor = (schema, _ctx, json, _params) => {\n const def = schema._zod.def;\n const values = getEnumValues(def.entries);\n // Number enums can have both string and number values\n if (values.every((v) => typeof v === \"number\"))\n json.type = \"number\";\n if (values.every((v) => typeof v === \"string\"))\n json.type = \"string\";\n json.enum = values;\n};\nexport const literalProcessor = (schema, ctx, json, _params) => {\n const def = schema._zod.def;\n const vals = [];\n for (const val of def.values) {\n if (val === undefined) {\n if (ctx.unrepresentable === \"throw\") {\n throw new Error(\"Literal `undefined` cannot be represented in JSON Schema\");\n }\n else {\n // do not add to vals\n }\n }\n else if (typeof val === \"bigint\") {\n if (ctx.unrepresentable === \"throw\") {\n throw new Error(\"BigInt literals cannot be represented in JSON Schema\");\n }\n else {\n vals.push(Number(val));\n }\n }\n else {\n vals.push(val);\n }\n }\n if (vals.length === 0) {\n // do nothing (an undefined literal was stripped)\n }\n else if (vals.length === 1) {\n const val = vals[0];\n json.type = val === null ? \"null\" : typeof val;\n if (ctx.target === \"draft-04\" || ctx.target === \"openapi-3.0\") {\n json.enum = [val];\n }\n else {\n json.const = val;\n }\n }\n else {\n if (vals.every((v) => typeof v === \"number\"))\n json.type = \"number\";\n if (vals.every((v) => typeof v === \"string\"))\n json.type = \"string\";\n if (vals.every((v) => typeof v === \"boolean\"))\n json.type = \"boolean\";\n if (vals.every((v) => v === null))\n json.type = \"null\";\n json.enum = vals;\n }\n};\nexport const nanProcessor = (_schema, ctx, _json, _params) => {\n if (ctx.unrepresentable === \"throw\") {\n throw new Error(\"NaN cannot be represented in JSON Schema\");\n }\n};\nexport const templateLiteralProcessor = (schema, _ctx, json, _params) => {\n const _json = json;\n const pattern = schema._zod.pattern;\n if (!pattern)\n throw new Error(\"Pattern not found in template literal\");\n _json.type = \"string\";\n _json.pattern = pattern.source;\n};\nexport const fileProcessor = (schema, _ctx, json, _params) => {\n const _json = json;\n const file = {\n type: \"string\",\n format: \"binary\",\n contentEncoding: \"binary\",\n };\n const { minimum, maximum, mime } = schema._zod.bag;\n if (minimum !== undefined)\n file.minLength = minimum;\n if (maximum !== undefined)\n file.maxLength = maximum;\n if (mime) {\n if (mime.length === 1) {\n file.contentMediaType = mime[0];\n Object.assign(_json, file);\n }\n else {\n Object.assign(_json, file); // shared props at root\n _json.anyOf = mime.map((m) => ({ contentMediaType: m })); // only contentMediaType differs\n }\n }\n else {\n Object.assign(_json, file);\n }\n};\nexport const successProcessor = (_schema, _ctx, json, _params) => {\n json.type = \"boolean\";\n};\nexport const customProcessor = (_schema, ctx, _json, _params) => {\n if (ctx.unrepresentable === \"throw\") {\n throw new Error(\"Custom types cannot be represented in JSON Schema\");\n }\n};\nexport const functionProcessor = (_schema, ctx, _json, _params) => {\n if (ctx.unrepresentable === \"throw\") {\n throw new Error(\"Function types cannot be represented in JSON Schema\");\n }\n};\nexport const transformProcessor = (_schema, ctx, _json, _params) => {\n if (ctx.unrepresentable === \"throw\") {\n throw new Error(\"Transforms cannot be represented in JSON Schema\");\n }\n};\nexport const mapProcessor = (_schema, ctx, _json, _params) => {\n if (ctx.unrepresentable === \"throw\") {\n throw new Error(\"Map cannot be represented in JSON Schema\");\n }\n};\nexport const setProcessor = (_schema, ctx, _json, _params) => {\n if (ctx.unrepresentable === \"throw\") {\n throw new Error(\"Set cannot be represented in JSON Schema\");\n }\n};\n// ==================== COMPOSITE TYPE PROCESSORS ====================\nexport const arrayProcessor = (schema, ctx, _json, params) => {\n const json = _json;\n const def = schema._zod.def;\n const { minimum, maximum } = schema._zod.bag;\n if (typeof minimum === \"number\")\n json.minItems = minimum;\n if (typeof maximum === \"number\")\n json.maxItems = maximum;\n json.type = \"array\";\n json.items = process(def.element, ctx, { ...params, path: [...params.path, \"items\"] });\n};\nexport const objectProcessor = (schema, ctx, _json, params) => {\n const json = _json;\n const def = schema._zod.def;\n json.type = \"object\";\n json.properties = {};\n const shape = def.shape;\n for (const key in shape) {\n json.properties[key] = process(shape[key], ctx, {\n ...params,\n path: [...params.path, \"properties\", key],\n });\n }\n // required keys\n const allKeys = new Set(Object.keys(shape));\n const requiredKeys = new Set([...allKeys].filter((key) => {\n const v = def.shape[key]._zod;\n if (ctx.io === \"input\") {\n return v.optin === undefined;\n }\n else {\n return v.optout === undefined;\n }\n }));\n if (requiredKeys.size > 0) {\n json.required = Array.from(requiredKeys);\n }\n // catchall\n if (def.catchall?._zod.def.type === \"never\") {\n // strict\n json.additionalProperties = false;\n }\n else if (!def.catchall) {\n // regular\n if (ctx.io === \"output\")\n json.additionalProperties = false;\n }\n else if (def.catchall) {\n json.additionalProperties = process(def.catchall, ctx, {\n ...params,\n path: [...params.path, \"additionalProperties\"],\n });\n }\n};\nexport const unionProcessor = (schema, ctx, json, params) => {\n const def = schema._zod.def;\n // Exclusive unions (inclusive === false) use oneOf (exactly one match) instead of anyOf (one or more matches)\n // This includes both z.xor() and discriminated unions\n const isExclusive = def.inclusive === false;\n const options = def.options.map((x, i) => process(x, ctx, {\n ...params,\n path: [...params.path, isExclusive ? \"oneOf\" : \"anyOf\", i],\n }));\n if (isExclusive) {\n json.oneOf = options;\n }\n else {\n json.anyOf = options;\n }\n};\nexport const intersectionProcessor = (schema, ctx, json, params) => {\n const def = schema._zod.def;\n const a = process(def.left, ctx, {\n ...params,\n path: [...params.path, \"allOf\", 0],\n });\n const b = process(def.right, ctx, {\n ...params,\n path: [...params.path, \"allOf\", 1],\n });\n const isSimpleIntersection = (val) => \"allOf\" in val && Object.keys(val).length === 1;\n const allOf = [\n ...(isSimpleIntersection(a) ? a.allOf : [a]),\n ...(isSimpleIntersection(b) ? b.allOf : [b]),\n ];\n json.allOf = allOf;\n};\nexport const tupleProcessor = (schema, ctx, _json, params) => {\n const json = _json;\n const def = schema._zod.def;\n json.type = \"array\";\n const prefixPath = ctx.target === \"draft-2020-12\" ? \"prefixItems\" : \"items\";\n const restPath = ctx.target === \"draft-2020-12\" ? \"items\" : ctx.target === \"openapi-3.0\" ? \"items\" : \"additionalItems\";\n const prefixItems = def.items.map((x, i) => process(x, ctx, {\n ...params,\n path: [...params.path, prefixPath, i],\n }));\n const rest = def.rest\n ? process(def.rest, ctx, {\n ...params,\n path: [...params.path, restPath, ...(ctx.target === \"openapi-3.0\" ? [def.items.length] : [])],\n })\n : null;\n if (ctx.target === \"draft-2020-12\") {\n json.prefixItems = prefixItems;\n if (rest) {\n json.items = rest;\n }\n }\n else if (ctx.target === \"openapi-3.0\") {\n json.items = {\n anyOf: prefixItems,\n };\n if (rest) {\n json.items.anyOf.push(rest);\n }\n json.minItems = prefixItems.length;\n if (!rest) {\n json.maxItems = prefixItems.length;\n }\n }\n else {\n json.items = prefixItems;\n if (rest) {\n json.additionalItems = rest;\n }\n }\n // length\n const { minimum, maximum } = schema._zod.bag;\n if (typeof minimum === \"number\")\n json.minItems = minimum;\n if (typeof maximum === \"number\")\n json.maxItems = maximum;\n};\nexport const recordProcessor = (schema, ctx, _json, params) => {\n const json = _json;\n const def = schema._zod.def;\n json.type = \"object\";\n // For looseRecord with regex patterns, use patternProperties\n // This correctly represents \"only validate keys matching the pattern\" semantics\n // and composes well with allOf (intersections)\n const keyType = def.keyType;\n const keyBag = keyType._zod.bag;\n const patterns = keyBag?.patterns;\n if (def.mode === \"loose\" && patterns && patterns.size > 0) {\n // Use patternProperties for looseRecord with regex patterns\n const valueSchema = process(def.valueType, ctx, {\n ...params,\n path: [...params.path, \"patternProperties\", \"*\"],\n });\n json.patternProperties = {};\n for (const pattern of patterns) {\n json.patternProperties[pattern.source] = valueSchema;\n }\n }\n else {\n // Default behavior: use propertyNames + additionalProperties\n if (ctx.target === \"draft-07\" || ctx.target === \"draft-2020-12\") {\n json.propertyNames = process(def.keyType, ctx, {\n ...params,\n path: [...params.path, \"propertyNames\"],\n });\n }\n json.additionalProperties = process(def.valueType, ctx, {\n ...params,\n path: [...params.path, \"additionalProperties\"],\n });\n }\n // Add required for keys with discrete values (enum, literal, etc.)\n const keyValues = keyType._zod.values;\n if (keyValues) {\n const validKeyValues = [...keyValues].filter((v) => typeof v === \"string\" || typeof v === \"number\");\n if (validKeyValues.length > 0) {\n json.required = validKeyValues;\n }\n }\n};\nexport const nullableProcessor = (schema, ctx, json, params) => {\n const def = schema._zod.def;\n const inner = process(def.innerType, ctx, params);\n const seen = ctx.seen.get(schema);\n if (ctx.target === \"openapi-3.0\") {\n seen.ref = def.innerType;\n json.nullable = true;\n }\n else {\n json.anyOf = [inner, { type: \"null\" }];\n }\n};\nexport const nonoptionalProcessor = (schema, ctx, _json, params) => {\n const def = schema._zod.def;\n process(def.innerType, ctx, params);\n const seen = ctx.seen.get(schema);\n seen.ref = def.innerType;\n};\nexport const defaultProcessor = (schema, ctx, json, params) => {\n const def = schema._zod.def;\n process(def.innerType, ctx, params);\n const seen = ctx.seen.get(schema);\n seen.ref = def.innerType;\n json.default = JSON.parse(JSON.stringify(def.defaultValue));\n};\nexport const prefaultProcessor = (schema, ctx, json, params) => {\n const def = schema._zod.def;\n process(def.innerType, ctx, params);\n const seen = ctx.seen.get(schema);\n seen.ref = def.innerType;\n if (ctx.io === \"input\")\n json._prefault = JSON.parse(JSON.stringify(def.defaultValue));\n};\nexport const catchProcessor = (schema, ctx, json, params) => {\n const def = schema._zod.def;\n process(def.innerType, ctx, params);\n const seen = ctx.seen.get(schema);\n seen.ref = def.innerType;\n let catchValue;\n try {\n catchValue = def.catchValue(undefined);\n }\n catch {\n throw new Error(\"Dynamic catch values are not supported in JSON Schema\");\n }\n json.default = catchValue;\n};\nexport const pipeProcessor = (schema, ctx, _json, params) => {\n const def = schema._zod.def;\n const innerType = ctx.io === \"input\" ? (def.in._zod.def.type === \"transform\" ? def.out : def.in) : def.out;\n process(innerType, ctx, params);\n const seen = ctx.seen.get(schema);\n seen.ref = innerType;\n};\nexport const readonlyProcessor = (schema, ctx, json, params) => {\n const def = schema._zod.def;\n process(def.innerType, ctx, params);\n const seen = ctx.seen.get(schema);\n seen.ref = def.innerType;\n json.readOnly = true;\n};\nexport const promiseProcessor = (schema, ctx, _json, params) => {\n const def = schema._zod.def;\n process(def.innerType, ctx, params);\n const seen = ctx.seen.get(schema);\n seen.ref = def.innerType;\n};\nexport const optionalProcessor = (schema, ctx, _json, params) => {\n const def = schema._zod.def;\n process(def.innerType, ctx, params);\n const seen = ctx.seen.get(schema);\n seen.ref = def.innerType;\n};\nexport const lazyProcessor = (schema, ctx, _json, params) => {\n const innerType = schema._zod.innerType;\n process(innerType, ctx, params);\n const seen = ctx.seen.get(schema);\n seen.ref = innerType;\n};\n// ==================== ALL PROCESSORS ====================\nexport const allProcessors = {\n string: stringProcessor,\n number: numberProcessor,\n boolean: booleanProcessor,\n bigint: bigintProcessor,\n symbol: symbolProcessor,\n null: nullProcessor,\n undefined: undefinedProcessor,\n void: voidProcessor,\n never: neverProcessor,\n any: anyProcessor,\n unknown: unknownProcessor,\n date: dateProcessor,\n enum: enumProcessor,\n literal: literalProcessor,\n nan: nanProcessor,\n template_literal: templateLiteralProcessor,\n file: fileProcessor,\n success: successProcessor,\n custom: customProcessor,\n function: functionProcessor,\n transform: transformProcessor,\n map: mapProcessor,\n set: setProcessor,\n array: arrayProcessor,\n object: objectProcessor,\n union: unionProcessor,\n intersection: intersectionProcessor,\n tuple: tupleProcessor,\n record: recordProcessor,\n nullable: nullableProcessor,\n nonoptional: nonoptionalProcessor,\n default: defaultProcessor,\n prefault: prefaultProcessor,\n catch: catchProcessor,\n pipe: pipeProcessor,\n readonly: readonlyProcessor,\n promise: promiseProcessor,\n optional: optionalProcessor,\n lazy: lazyProcessor,\n};\nexport function toJSONSchema(input, params) {\n if (\"_idmap\" in input) {\n // Registry case\n const registry = input;\n const ctx = initializeContext({ ...params, processors: allProcessors });\n const defs = {};\n // First pass: process all schemas to build the seen map\n for (const entry of registry._idmap.entries()) {\n const [_, schema] = entry;\n process(schema, ctx);\n }\n const schemas = {};\n const external = {\n registry,\n uri: params?.uri,\n defs,\n };\n // Update the context with external configuration\n ctx.external = external;\n // Second pass: emit each schema\n for (const entry of registry._idmap.entries()) {\n const [key, schema] = entry;\n extractDefs(ctx, schema);\n schemas[key] = finalize(ctx, schema);\n }\n if (Object.keys(defs).length > 0) {\n const defsSegment = ctx.target === \"draft-2020-12\" ? \"$defs\" : \"definitions\";\n schemas.__shared = {\n [defsSegment]: defs,\n };\n }\n return { schemas };\n }\n // Single schema case\n const ctx = initializeContext({ ...params, processors: allProcessors });\n process(input, ctx);\n extractDefs(ctx, input);\n return finalize(ctx, input);\n}\n","import type {\n CredentialRequirement,\n CredentialSessionService,\n NodeConfigBase,\n NodeExecutionContext,\n NodeId,\n} from \"@codemation/core\";\n\nimport { CredentialResolverFactory } from \"@codemation/core/bootstrap\";\n\n/**\n * Builds a {@link NodeExecutionContext} whose identity for credential binding and `getCredential`\n * is a **connection-owned** workflow node id (`ConnectionNodeIdFactory` in `@codemation/core`),\n * not the executing parent node. Use for LLM slots, tool slots, or any connection-scoped owner.\n */\nexport class ConnectionCredentialExecutionContextFactory {\n private readonly credentialResolverFactory: CredentialResolverFactory;\n\n constructor(credentialSessions: CredentialSessionService) {\n this.credentialResolverFactory = new CredentialResolverFactory(credentialSessions);\n }\n\n forConnectionNode<TConfig extends NodeConfigBase>(\n ctx: NodeExecutionContext<TConfig>,\n args: Readonly<{\n connectionNodeId: NodeId;\n getCredentialRequirements: () => ReadonlyArray<CredentialRequirement>;\n }>,\n ): NodeExecutionContext<TConfig> {\n const stubConfig = { getCredentialRequirements: args.getCredentialRequirements } as NodeConfigBase;\n const getCredential = this.credentialResolverFactory.create(ctx.workflowId, args.connectionNodeId, stubConfig);\n return {\n ...ctx,\n nodeId: args.connectionNodeId,\n getCredential,\n };\n }\n}\n","import type { CredentialSessionService, Item, Items, NodeExecutionContext, ZodSchemaAny } from \"@codemation/core\";\nimport { injectable } from \"@codemation/core\";\n\nimport { isInteropZodSchema } from \"@langchain/core/utils/types\";\nimport { toJsonSchema } from \"@langchain/core/utils/json_schema\";\nimport { DynamicStructuredTool } from \"@langchain/core/tools\";\nimport { toJSONSchema } from \"zod/v4/core\";\n\nimport { ConnectionCredentialExecutionContextFactory } from \"./ConnectionCredentialExecutionContextFactory\";\nimport type { ResolvedTool } from \"./aiAgentSupport.types\";\n\n/**\n * LangChain adapters and credential context wiring for {@link AIAgentNode}.\n * Lives in a `*Factory.ts` composition-root module so construction stays explicit and testable.\n */\n@injectable()\nexport class AIAgentExecutionHelpersFactory {\n createConnectionCredentialExecutionContextFactory(\n credentialSessions: CredentialSessionService,\n ): ConnectionCredentialExecutionContextFactory {\n return new ConnectionCredentialExecutionContextFactory(credentialSessions);\n }\n\n createDynamicStructuredTool(\n entry: ResolvedTool,\n toolCredentialContext: NodeExecutionContext<any>,\n item: Item,\n itemIndex: number,\n items: Items,\n ): DynamicStructuredTool {\n if (entry.runtime.inputSchema == null) {\n throw new Error(\n `Cannot create LangChain tool \"${entry.config.name}\": missing inputSchema (broken tool runtime resolution).`,\n );\n }\n const schemaForOpenAi = this.normalizeToolInputSchemaForOpenAiDynamicStructuredTool(\n entry.config.name,\n entry.runtime.inputSchema,\n );\n return new DynamicStructuredTool({\n name: entry.config.name,\n description: entry.config.description ?? entry.runtime.defaultDescription,\n schema: schemaForOpenAi as unknown as ZodSchemaAny,\n func: async (input) => {\n const result = await entry.runtime.execute({\n config: entry.config,\n input,\n ctx: toolCredentialContext,\n item,\n itemIndex,\n items,\n });\n return JSON.stringify(result);\n },\n });\n }\n\n /**\n * Produces a plain JSON Schema object for OpenAI tool parameters and LangChain tool invocation:\n * - **Zod** → `toJSONSchema(..., { target: \"draft-07\" })` so shapes match what `@cfworker/json-schema`\n * expects (`required` must be an array; draft 2020-12 output can break validation).\n * - Otherwise LangChain `toJsonSchema` (Standard Schema + JSON passthrough); if the result is still Zod\n * (duplicate `zod` copies), fall back to Zod `toJSONSchema` with draft-07.\n * - Strip root `$schema` for OpenAI; normalize invalid `required` keywords for cfworker; ensure `properties`.\n */\n private normalizeToolInputSchemaForOpenAiDynamicStructuredTool(\n toolName: string,\n inputSchema: ZodSchemaAny,\n ): Record<string, unknown> {\n const draft07Params = { target: \"draft-07\" as const };\n let converted: unknown;\n if (isInteropZodSchema(inputSchema)) {\n converted = toJSONSchema(inputSchema as unknown as Parameters<typeof toJSONSchema>[0], draft07Params);\n } else {\n converted = toJsonSchema(inputSchema);\n if (isInteropZodSchema(converted)) {\n converted = toJSONSchema(inputSchema as unknown as Parameters<typeof toJSONSchema>[0], draft07Params);\n }\n }\n const record = converted as Record<string, unknown>;\n const { $schema: _draftSchemaOmitted, ...rest } = record;\n if (rest.type !== \"object\") {\n throw new Error(\n `Cannot create LangChain tool \"${toolName}\": tool input schema must be a JSON Schema object type (got type=${String(rest.type)}).`,\n );\n }\n if (rest.properties !== undefined && (typeof rest.properties !== \"object\" || Array.isArray(rest.properties))) {\n throw new Error(\n `Cannot create LangChain tool \"${toolName}\": tool input schema \"properties\" must be an object (got ${JSON.stringify(rest.properties)}).`,\n );\n }\n if (rest.properties === undefined) {\n rest.properties = {};\n }\n this.sanitizeJsonSchemaRequiredKeywordsForCfworker(rest);\n return rest;\n }\n\n /**\n * `@cfworker/json-schema` iterates `schema.required` with `for...of`; it must be a string array or absent.\n */\n private sanitizeJsonSchemaRequiredKeywordsForCfworker(node: unknown): void {\n if (!node || typeof node !== \"object\" || Array.isArray(node)) {\n return;\n }\n const o = node as Record<string, unknown>;\n const req = o.required;\n if (req !== undefined && !Array.isArray(req)) {\n delete o.required;\n } else if (Array.isArray(req)) {\n const strings = req.filter((x): x is string => typeof x === \"string\");\n if (strings.length === 0) {\n delete o.required;\n } else if (strings.length !== req.length) {\n o.required = strings;\n }\n }\n const props = o.properties;\n if (props && typeof props === \"object\" && !Array.isArray(props)) {\n for (const v of Object.values(props)) {\n this.sanitizeJsonSchemaRequiredKeywordsForCfworker(v);\n }\n }\n for (const key of [\"allOf\", \"anyOf\", \"oneOf\"] as const) {\n const branch = o[key];\n if (Array.isArray(branch)) {\n for (const sub of branch) {\n this.sanitizeJsonSchemaRequiredKeywordsForCfworker(sub);\n }\n }\n }\n if (o.if) this.sanitizeJsonSchemaRequiredKeywordsForCfworker(o.if);\n if (o.then) this.sanitizeJsonSchemaRequiredKeywordsForCfworker(o.then);\n if (o.else) this.sanitizeJsonSchemaRequiredKeywordsForCfworker(o.else);\n if (o.not) this.sanitizeJsonSchemaRequiredKeywordsForCfworker(o.not);\n if (o.items) this.sanitizeJsonSchemaRequiredKeywordsForCfworker(o.items);\n if (Array.isArray(o.prefixItems)) {\n for (const sub of o.prefixItems) {\n this.sanitizeJsonSchemaRequiredKeywordsForCfworker(sub);\n }\n }\n }\n}\n","import type {\n MultiInputNode,\n Node,\n NodeExecutionContext,\n NodeOutputs,\n NodeResolver,\n NodeBackedToolConfig,\n ToolExecuteArgs,\n ZodSchemaAny,\n} from \"@codemation/core\";\nimport { CoreTokens, inject, injectable } from \"@codemation/core\";\n\n@injectable()\nexport class NodeBackedToolRuntime {\n constructor(\n @inject(CoreTokens.NodeResolver)\n private readonly nodeResolver: NodeResolver,\n ) {}\n\n async execute(\n config: NodeBackedToolConfig<any, ZodSchemaAny, ZodSchemaAny>,\n args: ToolExecuteArgs,\n ): Promise<unknown> {\n const nodeInput = config.toNodeItem({\n input: args.input,\n item: args.item,\n itemIndex: args.itemIndex,\n items: args.items,\n ctx: args.ctx,\n node: config.node,\n });\n const nodeCtx = {\n ...args.ctx,\n config: config.node,\n } as NodeExecutionContext<any>;\n const resolvedNode = this.nodeResolver.resolve(config.node.type);\n const outputs = await this.executeResolvedNode(resolvedNode, nodeInput, nodeCtx);\n return config.toToolOutput({\n input: args.input,\n item: args.item,\n itemIndex: args.itemIndex,\n items: args.items,\n ctx: args.ctx,\n node: config.node,\n outputs,\n });\n }\n\n private async executeResolvedNode(\n resolvedNode: unknown,\n nodeInput: ToolExecuteArgs[\"item\"],\n ctx: NodeExecutionContext<any>,\n ): Promise<NodeOutputs> {\n if (this.isMultiInputNode(resolvedNode)) {\n return await resolvedNode.executeMulti({ in: [nodeInput] }, ctx);\n }\n if (this.isNode(resolvedNode)) {\n return await resolvedNode.execute([nodeInput], ctx);\n }\n throw new Error(`Node-backed tool expected a runnable node instance for \"${ctx.config.name ?? ctx.nodeId}\".`);\n }\n\n private isNode(value: unknown): value is Node<any> {\n return typeof value === \"object\" && value !== null && \"execute\" in value;\n }\n\n private isMultiInputNode(value: unknown): value is MultiInputNode<any> {\n return typeof value === \"object\" && value !== null && \"executeMulti\" in value;\n }\n}\n","import type {\n AgentToolCall,\n Item,\n NodeInputsByPort,\n ToolConfig,\n ToolExecuteArgs,\n ZodSchemaAny,\n} from \"@codemation/core\";\nimport type { DynamicStructuredTool } from \"@langchain/core/tools\";\n\nexport class AgentItemPortMap {\n static fromItem(item: Item): NodeInputsByPort {\n return { in: [item] };\n }\n}\n\nexport type ResolvedTool = Readonly<{\n config: ToolConfig;\n runtime: Readonly<{\n defaultDescription: string;\n inputSchema: ZodSchemaAny;\n execute(args: ToolExecuteArgs<ToolConfig, unknown>): Promise<unknown>;\n }>;\n}>;\n\nexport type ItemScopedToolBinding = Readonly<{\n config: ToolConfig;\n langChainTool: DynamicStructuredTool;\n}>;\n\nexport type PlannedToolCall = Readonly<{\n binding: ItemScopedToolBinding;\n toolCall: AgentToolCall;\n invocationIndex: number;\n nodeId: string;\n}>;\n\nexport type ExecutedToolCall = Readonly<{\n toolName: string;\n toolCallId: string;\n result: unknown;\n serialized: string;\n}>;\n","import type {\n AgentGuardrailConfig,\n AgentToolCall,\n ChatModelConfig,\n ChatModelFactory,\n Item,\n Items,\n JsonValue,\n LangChainChatModelLike,\n Node,\n NodeExecutionContext,\n NodeInputsByPort,\n NodeOutputs,\n Tool,\n ToolConfig,\n ZodSchemaAny,\n} from \"@codemation/core\";\n\nimport type { CredentialSessionService } from \"@codemation/core\";\nimport {\n AgentGuardrailDefaults,\n AgentMessageConfigNormalizer,\n ConnectionInvocationIdFactory,\n ConnectionNodeIdFactory,\n CoreTokens,\n NodeBackedToolConfig,\n inject,\n node,\n type NodeResolver,\n} from \"@codemation/core\";\n\nimport { AIMessage, type BaseMessage } from \"@langchain/core/messages\";\n\nimport type { AIAgent } from \"./AIAgentConfig\";\nimport { AIAgentExecutionHelpersFactory } from \"./AIAgentExecutionHelpersFactory\";\nimport { ConnectionCredentialExecutionContextFactory } from \"./ConnectionCredentialExecutionContextFactory\";\nimport { AgentMessageFactory } from \"./AgentMessageFactory\";\nimport { AgentOutputFactory } from \"./AgentOutputFactory\";\nimport { AgentToolCallPortMap } from \"./AgentToolCallPortMapFactory\";\nimport { NodeBackedToolRuntime } from \"./NodeBackedToolRuntime\";\nimport {\n AgentItemPortMap,\n type ExecutedToolCall,\n type ItemScopedToolBinding,\n type PlannedToolCall,\n type ResolvedTool,\n} from \"./aiAgentSupport.types\";\n\ntype ResolvedGuardrails = Required<Pick<AgentGuardrailConfig, \"maxTurns\" | \"onTurnLimitReached\">> &\n Pick<AgentGuardrailConfig, \"modelInvocationOptions\">;\n\n/** Everything needed to run the agent loop for a workflow execution (one `execute` call). */\ninterface PreparedAgentExecution {\n readonly ctx: NodeExecutionContext<AIAgent<any, any>>;\n readonly model: LangChainChatModelLike;\n readonly resolvedTools: ReadonlyArray<ResolvedTool>;\n readonly guardrails: ResolvedGuardrails;\n readonly languageModelConnectionNodeId: string;\n}\n\n@node({ packageName: \"@codemation/core-nodes\" })\nexport class AIAgentNode implements Node<AIAgent<any, any>> {\n kind = \"node\" as const;\n outputPorts = [\"main\"] as const;\n\n private readonly connectionCredentialExecutionContextFactory: ConnectionCredentialExecutionContextFactory;\n\n constructor(\n @inject(CoreTokens.NodeResolver)\n private readonly nodeResolver: NodeResolver,\n @inject(CoreTokens.CredentialSessionService)\n credentialSessions: CredentialSessionService,\n @inject(NodeBackedToolRuntime)\n private readonly nodeBackedToolRuntime: NodeBackedToolRuntime,\n @inject(AIAgentExecutionHelpersFactory)\n private readonly executionHelpers: AIAgentExecutionHelpersFactory,\n ) {\n this.connectionCredentialExecutionContextFactory =\n this.executionHelpers.createConnectionCredentialExecutionContextFactory(credentialSessions);\n }\n\n async execute(items: Items, ctx: NodeExecutionContext<AIAgent<any, any>>): Promise<NodeOutputs> {\n const prepared = await this.prepareExecution(ctx);\n const out: Item[] = [];\n for (let i = 0; i < items.length; i++) {\n out.push(await this.runAgentForItem(prepared, items[i]!, i, items));\n }\n return { main: out };\n }\n\n /**\n * Resolves the chat model and tools once, then returns shared state for every item in the batch.\n */\n private async prepareExecution(ctx: NodeExecutionContext<AIAgent<any, any>>): Promise<PreparedAgentExecution> {\n const chatModelFactory = this.nodeResolver.resolve(ctx.config.chatModel.type) as ChatModelFactory<ChatModelConfig>;\n const languageModelCredentialContext = this.connectionCredentialExecutionContextFactory.forConnectionNode(ctx, {\n connectionNodeId: ConnectionNodeIdFactory.languageModelConnectionNodeId(ctx.nodeId),\n getCredentialRequirements: () => ctx.config.chatModel.getCredentialRequirements?.() ?? [],\n });\n const model = await Promise.resolve(\n chatModelFactory.create({ config: ctx.config.chatModel, ctx: languageModelCredentialContext }),\n );\n return {\n ctx,\n model,\n resolvedTools: this.resolveTools(ctx.config.tools ?? []),\n guardrails: this.resolveGuardrails(ctx.config.guardrails),\n languageModelConnectionNodeId: ConnectionNodeIdFactory.languageModelConnectionNodeId(ctx.nodeId),\n };\n }\n\n /**\n * One item: build prompts, optionally bind tools, run the multi-turn loop, map the final model message to workflow JSON.\n */\n private async runAgentForItem(\n prepared: PreparedAgentExecution,\n item: Item,\n itemIndex: number,\n items: Items,\n ): Promise<Item> {\n const { ctx } = prepared;\n const itemInputsByPort = AgentItemPortMap.fromItem(item);\n const itemScopedTools = this.createItemScopedTools(prepared.resolvedTools, ctx, item, itemIndex, items);\n const conversation: BaseMessage[] = [...this.createPromptMessages(item, itemIndex, items, ctx)];\n const modelWithTools = this.bindToolsToModel(prepared.model, itemScopedTools);\n const finalResponse = await this.runTurnLoopUntilFinalAnswer({\n prepared,\n itemInputsByPort,\n itemScopedTools,\n conversation,\n modelWithTools,\n });\n return this.buildOutputItem(item, finalResponse);\n }\n\n /**\n * Repeatedly invokes the model until it returns without tool calls, or guardrails end the loop.\n */\n private async runTurnLoopUntilFinalAnswer(args: {\n prepared: PreparedAgentExecution;\n itemInputsByPort: NodeInputsByPort;\n itemScopedTools: ReadonlyArray<ItemScopedToolBinding>;\n conversation: BaseMessage[];\n modelWithTools: LangChainChatModelLike;\n }): Promise<AIMessage> {\n const { prepared, itemInputsByPort, itemScopedTools, conversation, modelWithTools } = args;\n const { ctx, guardrails, languageModelConnectionNodeId } = prepared;\n\n let finalResponse: AIMessage | undefined;\n\n for (let turn = 1; turn <= guardrails.maxTurns; turn++) {\n const response = await this.invokeModel(\n modelWithTools,\n languageModelConnectionNodeId,\n conversation,\n ctx,\n itemInputsByPort,\n guardrails.modelInvocationOptions,\n );\n finalResponse = response;\n\n const toolCalls = AgentMessageFactory.extractToolCalls(response);\n if (toolCalls.length === 0) {\n break;\n }\n\n if (this.cannotExecuteAnotherToolRound(turn, guardrails)) {\n this.finishOrThrowWhenTurnCapHitWithToolCalls(ctx, guardrails);\n break;\n }\n\n const plannedToolCalls = this.planToolCalls(itemScopedTools, toolCalls, ctx.nodeId);\n await this.markQueuedTools(plannedToolCalls, ctx);\n const executedToolCalls = await this.executeToolCalls(plannedToolCalls, ctx);\n this.appendAssistantAndToolMessages(conversation, response, executedToolCalls);\n }\n\n if (!finalResponse) {\n throw new Error(`AIAgent \"${ctx.config.name ?? ctx.nodeId}\" did not produce a model response.`);\n }\n return finalResponse;\n }\n\n private cannotExecuteAnotherToolRound(turn: number, guardrails: ResolvedGuardrails): boolean {\n return turn >= guardrails.maxTurns;\n }\n\n private finishOrThrowWhenTurnCapHitWithToolCalls(\n ctx: NodeExecutionContext<AIAgent<any, any>>,\n guardrails: ResolvedGuardrails,\n ): void {\n if (guardrails.onTurnLimitReached === \"respondWithLastMessage\") {\n return;\n }\n throw new Error(\n `AIAgent \"${ctx.config.name ?? ctx.nodeId}\" reached maxTurns=${guardrails.maxTurns} before producing a final response.`,\n );\n }\n\n private appendAssistantAndToolMessages(\n conversation: BaseMessage[],\n assistantMessage: AIMessage,\n executedToolCalls: ReadonlyArray<ExecutedToolCall>,\n ): void {\n conversation.push(\n assistantMessage,\n ...executedToolCalls.map((toolCall) =>\n AgentMessageFactory.createToolMessage(toolCall.toolCallId, toolCall.serialized),\n ),\n );\n }\n\n private buildOutputItem(item: Item, finalResponse: AIMessage): Item {\n return AgentOutputFactory.replaceJson(\n item,\n AgentOutputFactory.fromAgentContent(AgentMessageFactory.extractContent(finalResponse)),\n );\n }\n\n private bindToolsToModel(\n model: LangChainChatModelLike,\n itemScopedTools: ReadonlyArray<ItemScopedToolBinding>,\n ): LangChainChatModelLike {\n if (itemScopedTools.length === 0 || !model.bindTools) {\n return model;\n }\n return model.bindTools(itemScopedTools.map((entry) => entry.langChainTool));\n }\n\n private resolveTools(toolConfigs: ReadonlyArray<ToolConfig>): ReadonlyArray<ResolvedTool> {\n const resolvedTools = toolConfigs.map((config) => ({\n config,\n runtime: this.resolveToolRuntime(config),\n }));\n\n const names = new Set<string>();\n for (const entry of resolvedTools) {\n if (names.has(entry.config.name)) throw new Error(`Duplicate tool name on AIAgent: ${entry.config.name}`);\n names.add(entry.config.name);\n }\n return resolvedTools;\n }\n\n private createItemScopedTools(\n tools: ReadonlyArray<ResolvedTool>,\n ctx: NodeExecutionContext<AIAgent<any, any>>,\n item: Item,\n itemIndex: number,\n items: Items,\n ): ReadonlyArray<ItemScopedToolBinding> {\n return tools.map((entry) => {\n const toolCredentialContext = this.connectionCredentialExecutionContextFactory.forConnectionNode(ctx, {\n connectionNodeId: ConnectionNodeIdFactory.toolConnectionNodeId(ctx.nodeId, entry.config.name),\n getCredentialRequirements: () => entry.config.getCredentialRequirements?.() ?? [],\n });\n const langChainTool = this.executionHelpers.createDynamicStructuredTool(\n entry,\n toolCredentialContext,\n item,\n itemIndex,\n items,\n );\n\n return { config: entry.config, langChainTool };\n });\n }\n\n private async invokeModel(\n model: LangChainChatModelLike,\n nodeId: string,\n messages: ReadonlyArray<BaseMessage>,\n ctx: NodeExecutionContext<AIAgent<any, any>>,\n inputsByPort: NodeInputsByPort,\n options?: AgentGuardrailConfig[\"modelInvocationOptions\"],\n ): Promise<AIMessage> {\n await ctx.nodeState?.markQueued({ nodeId, activationId: ctx.activationId, inputsByPort });\n await ctx.nodeState?.markRunning({ nodeId, activationId: ctx.activationId, inputsByPort });\n try {\n const response = (await model.invoke(messages, options)) as AIMessage;\n await ctx.nodeState?.markCompleted({\n nodeId,\n activationId: ctx.activationId,\n inputsByPort,\n outputs: AgentOutputFactory.fromUnknown({\n content: AgentMessageFactory.extractContent(response),\n }),\n });\n const content = AgentMessageFactory.extractContent(response);\n await ctx.nodeState?.appendConnectionInvocation({\n invocationId: ConnectionInvocationIdFactory.create(),\n connectionNodeId: nodeId,\n parentAgentNodeId: ctx.nodeId,\n parentAgentActivationId: ctx.activationId,\n status: \"completed\",\n managedInput: this.summarizeLlmMessages(messages),\n managedOutput: content,\n finishedAt: new Date().toISOString(),\n });\n return response;\n } catch (error) {\n throw await this.failTrackedNodeInvocation(error, nodeId, ctx, inputsByPort, this.summarizeLlmMessages(messages));\n }\n }\n\n private async markQueuedTools(\n plannedToolCalls: ReadonlyArray<PlannedToolCall>,\n ctx: NodeExecutionContext<AIAgent<any, any>>,\n ): Promise<void> {\n for (const plannedToolCall of plannedToolCalls) {\n await ctx.nodeState?.markQueued({\n nodeId: plannedToolCall.nodeId,\n activationId: ctx.activationId,\n inputsByPort: AgentToolCallPortMap.fromInput(plannedToolCall.toolCall.input ?? {}),\n });\n }\n }\n\n private async executeToolCalls(\n plannedToolCalls: ReadonlyArray<PlannedToolCall>,\n ctx: NodeExecutionContext<AIAgent<any, any>>,\n ): Promise<ReadonlyArray<ExecutedToolCall>> {\n const results = await Promise.allSettled(\n plannedToolCalls.map(async (plannedToolCall) => {\n const toolCallInputsByPort = AgentToolCallPortMap.fromInput(plannedToolCall.toolCall.input ?? {});\n await ctx.nodeState?.markRunning({\n nodeId: plannedToolCall.nodeId,\n activationId: ctx.activationId,\n inputsByPort: toolCallInputsByPort,\n });\n try {\n const serialized = await plannedToolCall.binding.langChainTool.invoke(plannedToolCall.toolCall.input ?? {});\n const result = this.parseToolOutput(serialized);\n await ctx.nodeState?.markCompleted({\n nodeId: plannedToolCall.nodeId,\n activationId: ctx.activationId,\n inputsByPort: toolCallInputsByPort,\n outputs: AgentOutputFactory.fromUnknown(result),\n });\n await ctx.nodeState?.appendConnectionInvocation({\n invocationId: ConnectionInvocationIdFactory.create(),\n connectionNodeId: plannedToolCall.nodeId,\n parentAgentNodeId: ctx.nodeId,\n parentAgentActivationId: ctx.activationId,\n status: \"completed\",\n managedInput: this.toolCallInputToJson(plannedToolCall.toolCall.input),\n managedOutput: this.resultToJsonValue(result),\n finishedAt: new Date().toISOString(),\n });\n return {\n toolName: plannedToolCall.binding.config.name,\n toolCallId: plannedToolCall.toolCall.id ?? plannedToolCall.binding.config.name,\n serialized,\n result,\n } satisfies ExecutedToolCall;\n } catch (error) {\n throw await this.failTrackedNodeInvocation(\n error,\n plannedToolCall.nodeId,\n ctx,\n toolCallInputsByPort,\n this.toolCallInputToJson(plannedToolCall.toolCall.input),\n );\n }\n }),\n );\n\n const rejected = results.find((result) => result.status === \"rejected\");\n if (rejected?.status === \"rejected\") {\n throw rejected.reason instanceof Error ? rejected.reason : new Error(String(rejected.reason));\n }\n\n return results\n .filter((result): result is PromiseFulfilledResult<ExecutedToolCall> => result.status === \"fulfilled\")\n .map((result) => result.value);\n }\n\n private planToolCalls(\n bindings: ReadonlyArray<ItemScopedToolBinding>,\n toolCalls: ReadonlyArray<AgentToolCall>,\n parentNodeId: string,\n ): ReadonlyArray<PlannedToolCall> {\n const invocationCountByToolName = new Map<string, number>();\n return toolCalls.map((toolCall) => {\n const binding = bindings.find((entry) => entry.config.name === toolCall.name);\n if (!binding) throw new Error(`Unknown tool requested by model: ${toolCall.name}`);\n const invocationIndex = (invocationCountByToolName.get(binding.config.name) ?? 0) + 1;\n invocationCountByToolName.set(binding.config.name, invocationIndex);\n return {\n binding,\n toolCall,\n invocationIndex,\n nodeId: ConnectionNodeIdFactory.toolConnectionNodeId(parentNodeId, binding.config.name),\n } satisfies PlannedToolCall;\n });\n }\n\n private parseToolOutput(serialized: unknown): unknown {\n if (typeof serialized !== \"string\") return serialized;\n try {\n return JSON.parse(serialized);\n } catch {\n return serialized;\n }\n }\n\n private async failTrackedNodeInvocation(\n error: unknown,\n nodeId: string,\n ctx: NodeExecutionContext<AIAgent<any, any>>,\n inputsByPort: NodeInputsByPort,\n managedInput?: JsonValue,\n ): Promise<Error> {\n const effectiveError = error instanceof Error ? error : new Error(String(error));\n await ctx.nodeState?.markFailed({\n nodeId,\n activationId: ctx.activationId,\n inputsByPort,\n error: effectiveError,\n });\n await ctx.nodeState?.appendConnectionInvocation({\n invocationId: ConnectionInvocationIdFactory.create(),\n connectionNodeId: nodeId,\n parentAgentNodeId: ctx.nodeId,\n parentAgentActivationId: ctx.activationId,\n status: \"failed\",\n managedInput,\n error: {\n message: effectiveError.message,\n name: effectiveError.name,\n stack: effectiveError.stack,\n },\n finishedAt: new Date().toISOString(),\n });\n return effectiveError;\n }\n\n private summarizeLlmMessages(messages: ReadonlyArray<BaseMessage>): JsonValue {\n const last = messages[messages.length - 1];\n const preview =\n typeof last?.content === \"string\"\n ? last.content\n : last?.content !== undefined\n ? JSON.stringify(last.content)\n : \"\";\n return {\n messageCount: messages.length,\n lastMessagePreview: preview.slice(0, 4000),\n };\n }\n\n private toolCallInputToJson(input: unknown): JsonValue | undefined {\n return this.resultToJsonValue(input);\n }\n\n private resultToJsonValue(value: unknown): JsonValue | undefined {\n if (value === undefined) {\n return undefined;\n }\n const json = JSON.stringify(value);\n return JSON.parse(json) as JsonValue;\n }\n\n private createPromptMessages(\n item: Item,\n itemIndex: number,\n items: Items,\n ctx: NodeExecutionContext<AIAgent<any, any>>,\n ): ReadonlyArray<BaseMessage> {\n return AgentMessageFactory.createPromptMessages(\n AgentMessageConfigNormalizer.normalize(ctx.config, {\n item,\n itemIndex,\n items,\n ctx,\n }),\n );\n }\n\n private resolveToolRuntime(config: ToolConfig): ResolvedTool[\"runtime\"] {\n if (this.isNodeBackedToolConfig(config)) {\n const inputSchema = config.getInputSchema();\n if (inputSchema == null) {\n throw new Error(\n `AIAgent tool \"${config.name}\": node-backed tool is missing inputSchema (cannot build LangChain tool).`,\n );\n }\n return {\n defaultDescription: `Run workflow node \"${config.node.name ?? config.name}\" as an AI tool.`,\n inputSchema,\n execute: async (args) => await this.nodeBackedToolRuntime.execute(config, args),\n };\n }\n const tool = this.nodeResolver.resolve(config.type) as Tool<ToolConfig, ZodSchemaAny, ZodSchemaAny>;\n if (tool.inputSchema == null) {\n throw new Error(`AIAgent tool \"${config.name}\": plugin tool \"${String(config.type)}\" is missing inputSchema.`);\n }\n return {\n defaultDescription: tool.defaultDescription,\n inputSchema: tool.inputSchema,\n execute: async (args) => await Promise.resolve(tool.execute(args)),\n };\n }\n\n /**\n * Consumer apps can resolve two copies of `@codemation/core`, breaking `instanceof NodeBackedToolConfig` and\n * sending node-backed tools down the plugin-tool branch with `inputSchema: undefined` (LangChain then crashes in\n * json-schema validation). {@link NodeBackedToolConfig#toolKind} is stable across copies.\n */\n private isNodeBackedToolConfig(config: ToolConfig): config is NodeBackedToolConfig<any, any, any> {\n return (\n config instanceof NodeBackedToolConfig ||\n (typeof config === \"object\" && config !== null && (config as { toolKind?: unknown }).toolKind === \"nodeBacked\")\n );\n }\n\n private resolveGuardrails(guardrails: AgentGuardrailConfig | undefined): ResolvedGuardrails {\n const maxTurns = guardrails?.maxTurns ?? AgentGuardrailDefaults.maxTurns;\n if (!Number.isInteger(maxTurns) || maxTurns < 1) {\n throw new Error(`AIAgent maxTurns must be a positive integer. Received: ${String(maxTurns)}`);\n }\n return {\n maxTurns,\n onTurnLimitReached: guardrails?.onTurnLimitReached ?? AgentGuardrailDefaults.onTurnLimitReached,\n modelInvocationOptions: guardrails?.modelInvocationOptions,\n };\n }\n}\n","import {\n RetryPolicy,\n type AgentGuardrailConfig,\n type AgentMessageConfig,\n type AgentNodeConfig,\n type ChatModelConfig,\n type RetryPolicySpec,\n type RunnableNodeConfig,\n type ToolConfig,\n type TypeToken,\n} from \"@codemation/core\";\n\nimport { AIAgentNode } from \"./AIAgentNode\";\n\nexport interface AIAgentOptions<TInputJson = unknown, _TOutputJson = unknown> {\n readonly name: string;\n readonly messages: AgentMessageConfig<TInputJson>;\n readonly chatModel: ChatModelConfig;\n readonly tools?: ReadonlyArray<ToolConfig>;\n readonly id?: string;\n readonly retryPolicy?: RetryPolicySpec;\n readonly guardrails?: AgentGuardrailConfig;\n}\n\n/**\n * AI agent: credential bindings are keyed to connection-owned LLM/tool node ids (ConnectionNodeIdFactory),\n * not to the agent workflow node id.\n */\nexport class AIAgent<TInputJson = unknown, TOutputJson = unknown>\n implements RunnableNodeConfig<TInputJson, TOutputJson>, AgentNodeConfig<TInputJson, TOutputJson>\n{\n readonly kind = \"node\" as const;\n readonly type: TypeToken<unknown> = AIAgentNode;\n readonly execution = { hint: \"local\" } as const;\n readonly icon = \"lucide:bot\" as const;\n readonly name: string;\n readonly messages: AgentMessageConfig<TInputJson>;\n readonly chatModel: ChatModelConfig;\n readonly tools: ReadonlyArray<ToolConfig>;\n readonly id?: string;\n readonly retryPolicy: RetryPolicySpec;\n readonly guardrails?: AgentGuardrailConfig;\n\n constructor(options: AIAgentOptions<TInputJson, TOutputJson>) {\n this.name = options.name;\n this.messages = options.messages;\n this.chatModel = options.chatModel;\n this.tools = options.tools ?? [];\n this.id = options.id;\n this.retryPolicy = options.retryPolicy ?? RetryPolicy.defaultForAiAgent;\n this.guardrails = options.guardrails;\n }\n}\n","import type { Items, NodeOutputs } from \"@codemation/core\";\n\nexport class CallbackResultNormalizer {\n static toNodeOutputs(result: Items | void, items: Items): NodeOutputs {\n return { main: result ?? items };\n }\n}\n","import type { Items, Node, NodeExecutionContext, NodeOutputs } from \"@codemation/core\";\n\nimport { node } from \"@codemation/core\";\n\nimport { Callback } from \"./CallbackNodeFactory\";\nimport { CallbackResultNormalizer } from \"./CallbackResultNormalizerFactory\";\n\n@node({ packageName: \"@codemation/core-nodes\" })\nexport class CallbackNode implements Node<Callback<any, any>> {\n kind = \"node\" as const;\n outputPorts = [\"main\"] as const;\n\n async execute(items: Items, ctx: NodeExecutionContext<Callback<any, any>>): Promise<NodeOutputs> {\n const result = await ctx.config.callback(items, ctx);\n return CallbackResultNormalizer.toNodeOutputs(result, items);\n }\n}\n","import type { Items, NodeExecutionContext, RunnableNodeConfig, TypeToken } from \"@codemation/core\";\n\nimport { CallbackNode } from \"./CallbackNode\";\n\nexport type CallbackHandler<\n TInputJson = unknown,\n TOutputJson = TInputJson,\n TConfig extends Callback<TInputJson, TOutputJson> = Callback<TInputJson, TOutputJson>,\n> = (\n items: Items<TInputJson>,\n ctx: NodeExecutionContext<TConfig>,\n) => Promise<Items<TOutputJson> | void> | Items<TOutputJson> | void;\n\nexport class Callback<TInputJson = unknown, TOutputJson = TInputJson> implements RunnableNodeConfig<\n TInputJson,\n TOutputJson\n> {\n readonly kind = \"node\" as const;\n readonly type: TypeToken<unknown> = CallbackNode;\n readonly execution = { hint: \"local\" } as const;\n readonly icon = \"lucide:braces\" as const;\n\n constructor(\n public readonly name: string = \"Callback\",\n public readonly callback: CallbackHandler<TInputJson, TOutputJson> = Callback.defaultCallback as CallbackHandler<\n TInputJson,\n TOutputJson\n >,\n public readonly id?: string,\n ) {}\n\n private static defaultCallback<TItemJson>(items: Items<TItemJson>): Items<TItemJson> {\n return items;\n }\n}\n\nexport { CallbackNode } from \"./CallbackNode\";\nexport { CallbackResultNormalizer } from \"./CallbackResultNormalizerFactory\";\n","import type { Item, Items, Node, NodeExecutionContext, NodeOutputs } from \"@codemation/core\";\n\nimport { node } from \"@codemation/core\";\n\nimport type { HttpRequestDownloadMode } from \"./httpRequest\";\nimport { HttpRequest } from \"./httpRequest\";\n\n@node({ packageName: \"@codemation/core-nodes\" })\nexport class HttpRequestNode implements Node<HttpRequest<any, any>> {\n readonly kind = \"node\" as const;\n readonly outputPorts = [\"main\"] as const;\n\n async execute(items: Items, ctx: NodeExecutionContext<HttpRequest<any, any>>): Promise<NodeOutputs> {\n const output: Item[] = [];\n for (const item of items) {\n output.push(await this.executeItem(item, ctx));\n }\n return { main: output };\n }\n\n private async executeItem(item: Item, ctx: NodeExecutionContext<HttpRequest<any, any>>): Promise<Item> {\n const url = this.resolveUrl(item, ctx);\n const response = await fetch(url, {\n method: ctx.config.method,\n });\n const headers = this.readHeaders(response.headers);\n const mimeType = this.resolveMimeType(headers);\n const bodyBinaryName = ctx.config.binaryName;\n const shouldAttachBody = this.shouldAttachBody(ctx.config.downloadMode, mimeType);\n const outputJson: Readonly<Record<string, unknown>> = {\n url,\n method: ctx.config.method,\n ok: response.ok,\n status: response.status,\n statusText: response.statusText,\n mimeType,\n headers,\n ...(shouldAttachBody ? { bodyBinaryName } : {}),\n };\n\n let outputItem: Item = {\n json: outputJson,\n };\n if (!shouldAttachBody) {\n return outputItem;\n }\n\n const attachment = await ctx.binary.attach({\n name: bodyBinaryName,\n body: response.body\n ? (response.body as unknown as Parameters<typeof ctx.binary.attach>[0][\"body\"])\n : new Uint8Array(await response.arrayBuffer()),\n mimeType,\n filename: this.resolveFilename(url, headers),\n });\n outputItem = ctx.binary.withAttachment(outputItem, bodyBinaryName, attachment);\n return outputItem;\n }\n\n private resolveUrl(item: Item, ctx: NodeExecutionContext<HttpRequest<any, any>>): string {\n const json = this.asRecord(item.json);\n const candidate = json[ctx.config.urlField];\n if (typeof candidate !== \"string\" || candidate.trim() === \"\") {\n throw new Error(`HttpRequest node expected item.json.${ctx.config.urlField} to contain a URL string.`);\n }\n return candidate;\n }\n\n private asRecord(value: unknown): Readonly<Record<string, unknown>> {\n if (value && typeof value === \"object\" && !Array.isArray(value)) {\n return value as Readonly<Record<string, unknown>>;\n }\n return { input: value };\n }\n\n private readHeaders(headers: Headers): Readonly<Record<string, string>> {\n const values: Record<string, string> = {};\n headers.forEach((value, key) => {\n values[key] = value;\n });\n return values;\n }\n\n private resolveMimeType(headers: Readonly<Record<string, string>>): string {\n const contentType = headers[\"content-type\"];\n if (!contentType) {\n return \"application/octet-stream\";\n }\n return contentType.split(\";\")[0]?.trim() || \"application/octet-stream\";\n }\n\n private shouldAttachBody(mode: HttpRequestDownloadMode, mimeType: string): boolean {\n if (mode === \"always\") {\n return true;\n }\n if (mode === \"never\") {\n return false;\n }\n return mimeType.startsWith(\"image/\") || mimeType.startsWith(\"audio/\") || mimeType.startsWith(\"video/\");\n }\n\n private resolveFilename(url: string, headers: Readonly<Record<string, string>>): string | undefined {\n const contentDisposition = headers[\"content-disposition\"];\n const fromDisposition = this.readFilenameFromContentDisposition(contentDisposition);\n if (fromDisposition) {\n return fromDisposition;\n }\n const pathname = new URL(url).pathname;\n const value = pathname.split(\"/\").at(-1);\n return value && value.trim() ? value : undefined;\n }\n\n private readFilenameFromContentDisposition(value: string | undefined): string | undefined {\n if (!value) {\n return undefined;\n }\n const parts = value.split(\";\");\n for (const part of parts) {\n const trimmed = part.trim();\n if (!trimmed.startsWith(\"filename=\")) {\n continue;\n }\n return trimmed.slice(\"filename=\".length).replace(/^\"|\"$/g, \"\");\n }\n return undefined;\n }\n}\n","import { RetryPolicy, type RetryPolicySpec, type RunnableNodeConfig, type TypeToken } from \"@codemation/core\";\n\nimport { HttpRequestNode } from \"./HttpRequestNodeFactory\";\n\nexport type HttpRequestDownloadMode = \"auto\" | \"always\" | \"never\";\n\n/** JSON emitted by {@link HttpRequest} — response metadata only (input item fields are not passed through). */\nexport type HttpRequestOutputJson = Readonly<{\n url: string;\n method: string;\n ok: boolean;\n status: number;\n statusText: string;\n mimeType: string;\n headers: Readonly<Record<string, string>>;\n bodyBinaryName?: string;\n}>;\n\nexport class HttpRequest<\n TInputJson = Readonly<{ url?: string }>,\n TOutputJson = HttpRequestOutputJson,\n> implements RunnableNodeConfig<TInputJson, TOutputJson> {\n readonly kind = \"node\" as const;\n readonly type: TypeToken<unknown> = HttpRequestNode;\n readonly execution = { hint: \"local\" } as const;\n\n constructor(\n public readonly name: string,\n public readonly args: Readonly<{\n method?: string;\n urlField?: string;\n binaryName?: string;\n downloadMode?: HttpRequestDownloadMode;\n id?: string;\n }> = {},\n public readonly retryPolicy: RetryPolicySpec = RetryPolicy.defaultForHttp,\n ) {}\n\n get id(): string | undefined {\n return this.args.id;\n }\n\n get method(): string {\n return (this.args.method ?? \"GET\").toUpperCase();\n }\n\n get urlField(): string {\n return this.args.urlField ?? \"url\";\n }\n\n get binaryName(): string {\n return this.args.binaryName ?? \"body\";\n }\n\n get downloadMode(): HttpRequestDownloadMode {\n return this.args.downloadMode ?? \"auto\";\n }\n}\n\nexport { HttpRequestNode } from \"./HttpRequestNodeFactory\";\n","import type { Item, Items, Node, NodeExecutionContext, NodeOutputs } from \"@codemation/core\";\n\nimport { node } from \"@codemation/core\";\n\nimport { If } from \"./if\";\n\n@node({ packageName: \"@codemation/core-nodes\" })\nexport class IfNode implements Node<If<any>> {\n kind = \"node\" as const;\n outputPorts = [\"true\", \"false\"] as const;\n\n async execute(items: Items, ctx: NodeExecutionContext<If<any>>): Promise<NodeOutputs> {\n const t: Item[] = [];\n const f: Item[] = [];\n for (let i = 0; i < items.length; i++) {\n const item = items[i] as Item<unknown>;\n const metaBase = (\n item.meta && typeof item.meta === \"object\" ? (item.meta as Record<string, unknown>) : {}\n ) as Record<string, unknown>;\n const cmBase =\n metaBase._cm && typeof metaBase._cm === \"object\"\n ? (metaBase._cm as Record<string, unknown>)\n : ({} as Record<string, unknown>);\n const originIndex = typeof cmBase.originIndex === \"number\" ? (cmBase.originIndex as number) : i;\n const tagged: Item = {\n ...item,\n meta: { ...metaBase, _cm: { ...cmBase, originIndex } },\n paired: [{ nodeId: ctx.nodeId, output: \"$in\", itemIndex: originIndex }, ...(item.paired ?? [])],\n };\n const ok = ctx.config.predicate(item, i, items, ctx);\n (ok ? t : f).push(tagged);\n }\n return { true: t, false: f };\n }\n}\n","import type { Item, Items, NodeExecutionContext, RunnableNodeConfig, TypeToken } from \"@codemation/core\";\n\nimport { IfNode } from \"./IfNode\";\n\nexport class If<TInputJson = unknown> implements RunnableNodeConfig<TInputJson, TInputJson> {\n readonly kind = \"node\" as const;\n readonly type: TypeToken<unknown> = IfNode;\n readonly execution = { hint: \"local\" } as const;\n readonly icon = \"lucide:split\" as const;\n constructor(\n public readonly name: string,\n public readonly predicate: (\n item: Item<TInputJson>,\n index: number,\n items: Items<TInputJson>,\n ctx: NodeExecutionContext<If<TInputJson>>,\n ) => boolean,\n public readonly id?: string,\n ) {}\n}\n\nexport { IfNode } from \"./IfNode\";\n","import type {\n Items,\n NodeExecutionContext,\n NodeOutputs,\n TestableTriggerNode,\n TriggerSetupContext,\n TriggerTestItemsContext,\n} from \"@codemation/core\";\n\nimport { node } from \"@codemation/core\";\n\nimport { ManualTrigger } from \"./ManualTriggerFactory\";\n\n/**\n * Setup is intentionally a no-op: the engine host can run workflows manually\n * by calling `engine.runWorkflow(workflow, triggerNodeId, items)`.\n */\n@node({ packageName: \"@codemation/core-nodes\" })\nexport class ManualTriggerNode implements TestableTriggerNode<ManualTrigger<any>> {\n kind = \"trigger\" as const;\n outputPorts = [\"main\"] as const;\n async setup(_ctx: TriggerSetupContext<ManualTrigger<any>>): Promise<undefined> {\n return undefined;\n }\n\n async getTestItems(ctx: TriggerTestItemsContext<ManualTrigger<any>>): Promise<Items> {\n return this.resolveManualItems([], ctx.config);\n }\n\n async execute(items: Items, ctx: NodeExecutionContext<ManualTrigger<any>>): Promise<NodeOutputs> {\n return { main: this.resolveManualItems(items, ctx.config) };\n }\n\n private resolveManualItems(items: Items, config: ManualTrigger<any>): Items {\n return items.length > 0 ? items : (config.defaultItems ?? []);\n }\n}\n","import type { Items, TriggerNodeConfig, TypeToken } from \"@codemation/core\";\n\nimport { ItemsInputNormalizer } from \"@codemation/core\";\n\nimport { ManualTriggerNode } from \"./ManualTriggerNode\";\n\ntype ManualTriggerDefaultValue<TOutputJson> = Items<TOutputJson> | ReadonlyArray<TOutputJson> | TOutputJson;\n\nexport class ManualTrigger<TOutputJson = unknown> implements TriggerNodeConfig<TOutputJson> {\n private static readonly itemsInputNormalizer = new ItemsInputNormalizer();\n readonly kind = \"trigger\" as const;\n readonly type: TypeToken<unknown> = ManualTriggerNode;\n readonly icon = \"lucide:play\" as const;\n readonly defaultItems?: Items<TOutputJson>;\n readonly id?: string;\n /** Manual runs often emit an empty batch; still schedule downstream by default. */\n readonly continueWhenEmptyOutput = true as const;\n\n constructor(name?: string, id?: string);\n constructor(name: string, defaultItems: ManualTriggerDefaultValue<TOutputJson>, id?: string);\n constructor(\n public readonly name: string = \"Manual trigger\",\n defaultItemsOrId?: ManualTriggerDefaultValue<TOutputJson> | string,\n id?: string,\n ) {\n this.defaultItems = ManualTrigger.resolveDefaultItems(defaultItemsOrId);\n this.id = ManualTrigger.resolveId(defaultItemsOrId, id);\n }\n\n private static resolveDefaultItems<TOutputJson>(\n value: ManualTriggerDefaultValue<TOutputJson> | string | undefined,\n ): Items<TOutputJson> | undefined {\n if (typeof value === \"string\" || value === undefined) {\n return undefined;\n }\n return this.itemsInputNormalizer.normalize(value) as Items<TOutputJson>;\n }\n\n private static resolveId<TOutputJson>(\n value: ManualTriggerDefaultValue<TOutputJson> | string | undefined,\n id: string | undefined,\n ): string | undefined {\n return typeof value === \"string\" ? value : id;\n }\n}\n\nexport { ManualTriggerNode } from \"./ManualTriggerNode\";\n","import type { Item, Items, Node, NodeExecutionContext, NodeOutputs } from \"@codemation/core\";\n\nimport { node } from \"@codemation/core\";\n\nimport { MapData } from \"./mapData\";\n\n@node({ packageName: \"@codemation/core-nodes\" })\nexport class MapDataNode implements Node<MapData<any, any>> {\n kind = \"node\" as const;\n outputPorts = [\"main\"] as const;\n\n async execute(items: Items, ctx: NodeExecutionContext<MapData<any, any>>): Promise<NodeOutputs> {\n const out: Item[] = [];\n for (let i = 0; i < items.length; i++) {\n const item = items[i] as Item<unknown>;\n out.push({ ...item, json: ctx.config.map(item, ctx) });\n }\n return { main: out };\n }\n}\n","import type { Item, NodeExecutionContext, RunnableNodeConfig, TypeToken } from \"@codemation/core\";\n\nimport { MapDataNode } from \"./MapDataNode\";\n\nexport class MapData<TInputJson = unknown, TOutputJson = unknown> implements RunnableNodeConfig<\n TInputJson,\n TOutputJson\n> {\n readonly kind = \"node\" as const;\n readonly type: TypeToken<unknown> = MapDataNode;\n readonly execution = { hint: \"local\" } as const;\n /** Zero mapped items should still allow downstream nodes to run. */\n readonly continueWhenEmptyOutput = true as const;\n constructor(\n public readonly name: string,\n public readonly map: (\n item: Item<TInputJson>,\n ctx: NodeExecutionContext<MapData<TInputJson, TOutputJson>>,\n ) => TOutputJson,\n public readonly id?: string,\n ) {}\n}\n\nexport { MapDataNode } from \"./MapDataNode\";\n","import type { InputPortKey, Item, Items } from \"@codemation/core\";\n\nexport function getOriginIndex(item: Item): number | undefined {\n const meta = item.meta as Record<string, unknown> | undefined;\n const cm = meta?._cm as Record<string, unknown> | undefined;\n const v = cm?.originIndex;\n return typeof v === \"number\" && Number.isFinite(v) ? v : undefined;\n}\n\nexport function orderedInputs(\n inputsByPort: Readonly<Record<InputPortKey, Items>>,\n prefer?: ReadonlyArray<InputPortKey>,\n): InputPortKey[] {\n const keys = Object.keys(inputsByPort);\n const preferred = (prefer ?? []).filter((k) => keys.includes(k));\n const rest = keys.filter((k) => !preferred.includes(k)).sort();\n return [...preferred, ...rest];\n}\n","import type { InputPortKey, Item, Items, MultiInputNode, NodeExecutionContext, NodeOutputs } from \"@codemation/core\";\n\nimport { node } from \"@codemation/core\";\n\nimport type { Merge } from \"./merge\";\nimport { getOriginIndex, orderedInputs } from \"./mergeExecutionUtils.types\";\n\n@node({ packageName: \"@codemation/core-nodes\" })\nexport class MergeNode implements MultiInputNode<Merge<any, any>> {\n kind = \"node\" as const;\n outputPorts = [\"main\"] as const;\n\n async executeMulti(\n inputsByPort: Readonly<Record<InputPortKey, Items>>,\n ctx: NodeExecutionContext<Merge<any, any>>,\n ): Promise<NodeOutputs> {\n const order = orderedInputs(inputsByPort, ctx.config.cfg.prefer);\n\n if (ctx.config.cfg.mode === \"append\") {\n const out: Item[] = [];\n for (const k of order) out.push(...(inputsByPort[k] ?? []));\n return { main: out };\n }\n\n if (ctx.config.cfg.mode === \"mergeByPosition\") {\n let maxLen = 0;\n for (const k of order) maxLen = Math.max(maxLen, (inputsByPort[k] ?? []).length);\n\n const out: Item[] = [];\n for (let i = 0; i < maxLen; i++) {\n const json: Record<string, unknown> = {};\n const paired: any[] = [];\n let meta: Record<string, unknown> | undefined;\n\n for (const k of order) {\n const item = (inputsByPort[k] ?? [])[i];\n json[k] = item?.json;\n if (item?.paired) paired.push(...item.paired);\n if (!meta && item?.meta) meta = { ...(item.meta as any) };\n }\n\n const merged: any = { json };\n if (paired.length > 0) merged.paired = paired;\n if (meta) merged.meta = meta;\n out.push(merged as Item);\n }\n\n return { main: out };\n }\n\n // passThrough (default): for each origin index, take first available input (deterministic input precedence).\n const chosenByOrigin = new Map<number, Item>();\n const fallback: Item[] = [];\n\n for (const k of order) {\n for (const item of inputsByPort[k] ?? []) {\n const origin = getOriginIndex(item);\n if (origin === undefined) {\n fallback.push(item);\n continue;\n }\n if (!chosenByOrigin.has(origin)) chosenByOrigin.set(origin, item);\n }\n }\n\n const out: Item[] = [];\n const origins = Array.from(chosenByOrigin.keys()).sort((a, b) => a - b);\n for (const o of origins) out.push(chosenByOrigin.get(o)!);\n out.push(...fallback);\n\n return { main: out };\n }\n}\n","import type { InputPortKey, RunnableNodeConfig, TypeToken } from \"@codemation/core\";\n\nimport { MergeNode } from \"./MergeNode\";\n\nexport type MergeMode = \"passThrough\" | \"append\" | \"mergeByPosition\";\n\nexport class Merge<TInputJson = unknown, TOutputJson = TInputJson> implements RunnableNodeConfig<\n TInputJson,\n TOutputJson\n> {\n readonly kind = \"node\" as const;\n readonly type: TypeToken<unknown> = MergeNode;\n readonly icon = \"lucide:git-merge\" as const;\n\n constructor(\n public readonly name: string,\n public readonly cfg: Readonly<{\n mode: MergeMode;\n /**\n * Deterministic input precedence order (only used for passThrough/append).\n * Any inputs not listed are appended in lexicographic order.\n */\n prefer?: ReadonlyArray<InputPortKey>;\n }> = { mode: \"passThrough\" },\n public readonly id?: string,\n ) {}\n}\n\nexport { MergeNode } from \"./MergeNode\";\n","import type { Items, Node, NodeExecutionContext, NodeOutputs } from \"@codemation/core\";\n\nimport { node } from \"@codemation/core\";\n\nimport { NoOp } from \"./noOp\";\n\n@node({ packageName: \"@codemation/core-nodes\" })\nexport class NoOpNode implements Node<NoOp<any>> {\n kind = \"node\" as const;\n outputPorts = [\"main\"] as const;\n\n async execute(items: Items, _ctx: NodeExecutionContext<NoOp<any>>): Promise<NodeOutputs> {\n return { main: items };\n }\n}\n","import type { RunnableNodeConfig, TypeToken } from \"@codemation/core\";\n\nimport { NoOpNode } from \"./NoOpNode\";\n\nexport class NoOp<TItemJson = unknown> implements RunnableNodeConfig<TItemJson, TItemJson> {\n readonly kind = \"node\" as const;\n readonly type: TypeToken<unknown> = NoOpNode;\n readonly execution = { hint: \"local\" } as const;\n\n constructor(\n public readonly name: string = \"NoOp\",\n public readonly id?: string,\n ) {}\n}\n\nexport { NoOpNode } from \"./NoOpNode\";\n","import type { Item, Items, Node, NodeExecutionContext, NodeOutputs, WorkflowRunnerService } from \"@codemation/core\";\n\nimport { CoreTokens, inject, node } from \"@codemation/core\";\n\nimport { SubWorkflow } from \"./subWorkflow\";\n\n@node({ packageName: \"@codemation/core-nodes\" })\nexport class SubWorkflowNode implements Node<SubWorkflow<any, any>> {\n kind = \"node\" as const;\n outputPorts = [\"main\"] as const;\n\n constructor(\n @inject(CoreTokens.WorkflowRunnerService)\n private readonly workflows: WorkflowRunnerService,\n ) {}\n\n async execute(items: Items, ctx: NodeExecutionContext<SubWorkflow<any, any>>): Promise<NodeOutputs> {\n const out: Item[] = [];\n for (let i = 0; i < items.length; i++) {\n const current = items[i]!;\n const metaBase = (\n current.meta && typeof current.meta === \"object\" ? (current.meta as Record<string, unknown>) : {}\n ) as Record<string, unknown>;\n const cmBase =\n metaBase._cm && typeof metaBase._cm === \"object\"\n ? (metaBase._cm as Record<string, unknown>)\n : ({} as Record<string, unknown>);\n const originIndex = typeof cmBase.originIndex === \"number\" ? (cmBase.originIndex as number) : undefined;\n\n const result = await this.workflows.runById({\n workflowId: ctx.config.workflowId,\n startAt: ctx.config.startAt,\n items: [current],\n parent: {\n runId: ctx.runId,\n workflowId: ctx.workflowId,\n nodeId: ctx.nodeId,\n subworkflowDepth: ctx.subworkflowDepth,\n engineMaxNodeActivations: ctx.engineMaxNodeActivations,\n engineMaxSubworkflowDepth: ctx.engineMaxSubworkflowDepth,\n },\n });\n if (result.status !== \"completed\")\n throw new Error(`Subworkflow ${ctx.config.workflowId} did not complete (status=${result.status})`);\n for (const produced of result.outputs) {\n const childMetaBase =\n produced.meta && typeof produced.meta === \"object\"\n ? (produced.meta as Record<string, unknown>)\n : ({} as Record<string, unknown>);\n const childCmBase =\n childMetaBase._cm && typeof childMetaBase._cm === \"object\"\n ? (childMetaBase._cm as Record<string, unknown>)\n : ({} as Record<string, unknown>);\n\n out.push({\n ...produced,\n meta: originIndex === undefined ? childMetaBase : { ...childMetaBase, _cm: { ...childCmBase, originIndex } },\n paired: current.paired ?? produced.paired,\n });\n }\n }\n\n return { main: out };\n }\n}\n","import type { NodeId, RunnableNodeConfig, TypeToken, UpstreamRefPlaceholder } from \"@codemation/core\";\n\nimport { SubWorkflowNode } from \"./SubWorkflowNode\";\n\nexport class SubWorkflow<TInputJson = unknown, TOutputJson = unknown> implements RunnableNodeConfig<\n TInputJson,\n TOutputJson\n> {\n readonly kind = \"node\" as const;\n readonly type: TypeToken<unknown> = SubWorkflowNode;\n constructor(\n public readonly name: string,\n public readonly workflowId: string,\n public upstreamRefs?: Array<{ nodeId: NodeId } | UpstreamRefPlaceholder>,\n public readonly startAt?: NodeId,\n public readonly id?: string,\n ) {}\n}\n\nexport { SubWorkflowNode } from \"./SubWorkflowNode\";\n","export class WaitDuration {\n static normalize(milliseconds: number): number {\n return Number.isFinite(milliseconds) && milliseconds > 0 ? Math.floor(milliseconds) : 0;\n }\n}\n","import type { Items, Node, NodeExecutionContext, NodeOutputs } from \"@codemation/core\";\n\nimport { node } from \"@codemation/core\";\n\nimport { Wait } from \"./wait\";\nimport { WaitDuration } from \"./WaitDurationFactory\";\n\n@node({ packageName: \"@codemation/core-nodes\" })\nexport class WaitNode implements Node<Wait<any>> {\n kind = \"node\" as const;\n outputPorts = [\"main\"] as const;\n\n async execute(items: Items, ctx: NodeExecutionContext<Wait<any>>): Promise<NodeOutputs> {\n const milliseconds = WaitDuration.normalize(ctx.config.milliseconds);\n if (milliseconds > 0) {\n await new Promise<void>((resolve) => {\n setTimeout(resolve, milliseconds);\n });\n }\n return { main: items };\n }\n}\n","import type { RunnableNodeConfig, TypeToken } from \"@codemation/core\";\n\nimport { WaitNode } from \"./WaitNode\";\n\nexport class Wait<TItemJson = unknown> implements RunnableNodeConfig<TItemJson, TItemJson> {\n readonly kind = \"node\" as const;\n readonly type: TypeToken<unknown> = WaitNode;\n readonly execution = { hint: \"local\" } as const;\n /** Pass-through empty batches should still advance to downstream nodes. */\n readonly continueWhenEmptyOutput = true as const;\n\n constructor(\n public readonly name: string,\n public readonly milliseconds: number,\n public readonly id?: string,\n ) {}\n}\n\nexport { WaitDuration } from \"./WaitDurationFactory\";\nexport { WaitNode } from \"./WaitNode\";\n","import type { Items, WebhookControlSignal } from \"@codemation/core\";\n\nexport class WebhookRespondNowAndContinueError extends Error implements WebhookControlSignal {\n readonly __webhookControl = true as const;\n readonly kind = \"respondNowAndContinue\" as const;\n\n constructor(\n public readonly responseItems: Items,\n public readonly continueItems: Items,\n message: string = \"Webhook responded immediately and continued the run.\",\n ) {\n super(message);\n this.name = \"WebhookRespondNowAndContinueError\";\n }\n}\n","import type { Items, WebhookControlSignal } from \"@codemation/core\";\n\nexport class WebhookRespondNowError extends Error implements WebhookControlSignal {\n readonly __webhookControl = true as const;\n readonly kind = \"respondNow\" as const;\n\n constructor(\n public readonly responseItems: Items,\n message: string = \"Webhook responded immediately.\",\n ) {\n super(message);\n this.name = \"WebhookRespondNowError\";\n }\n}\n","import type {\n ExecutableTriggerNode,\n Items,\n NodeExecutionContext,\n NodeOutputs,\n TriggerSetupContext,\n} from \"@codemation/core\";\nimport { node } from \"@codemation/core\";\nimport { WebhookTrigger } from \"./WebhookTriggerFactory\";\n\n/**\n * HTTP webhooks are not registered in trigger setup. The host exposes a single catch-all route\n * (e.g. `/api/webhooks/:endpointPath`); the engine's catalog-backed webhook matcher resolves the\n * user-defined endpoint path to this workflow + node, then runs the workflow from this trigger.\n */\n@node({ packageName: \"@codemation/core-nodes\" })\nexport class WebhookTriggerNode implements ExecutableTriggerNode<WebhookTrigger<any>> {\n readonly kind = \"trigger\" as const;\n readonly outputPorts = [\"main\"] as const;\n\n async setup(_ctx: TriggerSetupContext<WebhookTrigger<any>>): Promise<undefined> {\n return undefined;\n }\n\n async execute(items: Items, _ctx: NodeExecutionContext<WebhookTrigger<any>>): Promise<NodeOutputs> {\n if (items.length === 0) {\n throw new Error(\n `Webhook trigger \"${_ctx.config.name}\" requires a webhook request. Invoke this workflow through its webhook endpoint until manual request simulation is supported.`,\n );\n }\n const result = await _ctx.config.handler(items, _ctx);\n return { main: result ?? items };\n }\n}\n","import type { HttpMethod, Items, NodeExecutionContext, TriggerNodeConfig, TypeToken } from \"@codemation/core\";\nimport type { ZodType } from \"zod\";\nimport { WebhookTriggerNode } from \"./webhookTriggerNode\";\n\ntype WebhookInputSchema = ZodType<any, any, any>;\ntype WebhookTriggerHandler<TConfig extends WebhookTrigger<any> = WebhookTrigger<any>> = (\n items: Items,\n ctx: NodeExecutionContext<TConfig>,\n) => Promise<Items | void> | Items | void;\n\nexport class WebhookTrigger<\n TSchema extends WebhookInputSchema | undefined = undefined,\n> implements TriggerNodeConfig<unknown> {\n readonly kind = \"trigger\" as const;\n readonly type: TypeToken<unknown> = WebhookTriggerNode;\n readonly icon = \"lucide:globe\";\n\n constructor(\n public readonly name: string,\n private readonly args: Readonly<{\n endpointKey: string;\n methods: ReadonlyArray<HttpMethod>;\n inputSchema?: TSchema;\n }>,\n public readonly handler: WebhookTriggerHandler<\n WebhookTrigger<TSchema>\n > = WebhookTrigger.defaultHandler as WebhookTriggerHandler<WebhookTrigger<TSchema>>,\n public readonly id?: string,\n ) {}\n\n get endpointKey(): string {\n return this.args.endpointKey;\n }\n\n get methods(): ReadonlyArray<HttpMethod> {\n return this.args.methods;\n }\n\n get inputSchema(): TSchema | undefined {\n return this.args.inputSchema;\n }\n\n parseJsonBody(body: unknown): unknown {\n if (!this.args.inputSchema) return body;\n return this.args.inputSchema.parse(body);\n }\n\n private static defaultHandler(items: Items): Items {\n return items;\n }\n}\n","import type { Items, Node, NodeExecutionContext, NodeOutputs } from \"@codemation/core\";\nimport { node } from \"@codemation/core\";\n\nimport type { ConnectionCredentialNodeConfig } from \"./ConnectionCredentialNodeConfig\";\n\n/**\n * Placeholder runnable node for connection-owned workflow nodes (LLM/tool slots).\n * The engine does not schedule these; they exist for credentials, tokens, and UI identity.\n */\n@node({ packageName: \"@codemation/core-nodes\" })\nexport class ConnectionCredentialNode implements Node<ConnectionCredentialNodeConfig> {\n kind = \"node\" as const;\n outputPorts = [\"main\"] as const;\n\n async execute(_items: Items, _ctx: NodeExecutionContext<ConnectionCredentialNodeConfig>): Promise<NodeOutputs> {\n return { main: [] };\n }\n}\n","import type { Container } from \"@codemation/core\";\nimport { AIAgentExecutionHelpersFactory, AIAgentNode } from \"./nodes/aiAgent\";\nimport { CallbackNode } from \"./nodes/CallbackNodeFactory\";\nimport { HttpRequestNode } from \"./nodes/httpRequest\";\nimport { IfNode } from \"./nodes/if\";\nimport { ManualTriggerNode } from \"./nodes/ManualTriggerFactory\";\nimport { MapDataNode } from \"./nodes/mapData\";\nimport { NoOpNode } from \"./nodes/noOp\";\nimport { SubWorkflowNode } from \"./nodes/subWorkflow\";\nimport { WaitNode } from \"./nodes/wait\";\nimport { ConnectionCredentialNode } from \"./nodes/ConnectionCredentialNode\";\n\n/**\n * Registrar for built-in nodes. In a real project, this would use tsyringe's\n * container.registerSingleton(...). For the skeleton we keep it token-based:\n * the engine resolves node implementations by class token.\n */\nexport function registerCoreNodes(container: Container): void {\n // With class tokens, resolving registers happen via the DI container setup.\n // This function exists as the standardized extension point.\n void container;\n\n // Example: if using tsyringe, you'd do:\n // tsyringeContainer.registerSingleton(IfNode, IfNode);\n // ...\n void IfNode;\n void HttpRequestNode;\n void CallbackNode;\n void MapDataNode;\n void NoOpNode;\n void SubWorkflowNode;\n void ManualTriggerNode;\n void AIAgentNode;\n void AIAgentExecutionHelpersFactory;\n void WaitNode;\n void ConnectionCredentialNode;\n}\n","import type { WorkflowId } from \"@codemation/core\";\nimport { WorkflowBuilder } from \"@codemation/core\";\nimport { Merge } from \"./nodes/merge\";\n\nexport function createWorkflowBuilder(meta: Readonly<{ id: WorkflowId; name: string }>): WorkflowBuilder {\n return new WorkflowBuilder(meta, {\n makeMergeNode: (name) => new Merge(name, { mode: \"passThrough\", prefer: [\"true\", \"false\"] }),\n });\n}\n","import type { ChatModelConfig } from \"@codemation/core\";\nimport { OpenAIChatModelConfig } from \"../chatModels/openAiChatModelConfig\";\n\nexport class WorkflowChatModelFactory {\n static create(model: string | ChatModelConfig): ChatModelConfig {\n if (typeof model !== \"string\") {\n return model;\n }\n const [provider, resolvedModel] = model.includes(\":\") ? model.split(\":\", 2) : [\"openai\", model];\n if (provider !== \"openai\") {\n throw new Error(`Unsupported workflow().agent() model provider \"${provider}\".`);\n }\n return new OpenAIChatModelConfig(\"OpenAI\", resolvedModel);\n }\n}\n","import { z } from \"zod\";\nimport { AIAgent } from \"../nodes/AIAgentConfig\";\nimport type { WorkflowAgentOptions } from \"./WorkflowAuthoringOptions.types\";\nimport { WorkflowChatModelFactory } from \"./WorkflowChatModelFactory.types\";\n\nexport class WorkflowAgentNodeFactory {\n static create<TCurrentJson, TOutputSchema extends z.ZodTypeAny | undefined>(\n nameOrOptions: string | WorkflowAgentOptions<TCurrentJson, TOutputSchema>,\n optionsOrUndefined?: WorkflowAgentOptions<TCurrentJson, TOutputSchema>,\n ): AIAgent<TCurrentJson, TOutputSchema extends z.ZodTypeAny ? z.output<TOutputSchema> : Record<string, unknown>> {\n const options = typeof nameOrOptions === \"string\" ? optionsOrUndefined! : nameOrOptions;\n const name = typeof nameOrOptions === \"string\" ? nameOrOptions : \"AI agent\";\n const prompt = options.prompt;\n const messages = [\n {\n role: \"user\" as const,\n content:\n typeof prompt === \"function\" ? ({ item }: { item: { json: TCurrentJson } }) => prompt(item.json) : prompt,\n },\n ] as const;\n return new AIAgent<\n TCurrentJson,\n TOutputSchema extends z.ZodTypeAny ? z.output<TOutputSchema> : Record<string, unknown>\n >({\n name,\n messages,\n chatModel: WorkflowChatModelFactory.create(options.model),\n tools: options.tools,\n id: options.id,\n retryPolicy: options.retryPolicy,\n guardrails: options.guardrails,\n });\n }\n}\n","import { DefinedNodeRegistry, type DefinedNode } from \"@codemation/core\";\n\nexport class WorkflowDefinedNodeResolver {\n static resolve(\n definitionOrKey: DefinedNode<string, Record<string, unknown>, unknown, unknown> | string,\n ): DefinedNode<string, Record<string, unknown>, unknown, unknown> {\n if (typeof definitionOrKey !== \"string\") {\n return definitionOrKey;\n }\n const definition = DefinedNodeRegistry.resolve(definitionOrKey);\n if (!definition) {\n throw new Error(`No helper-defined node with key \"${definitionOrKey}\" is registered in this module graph.`);\n }\n return definition;\n }\n}\n","export class WorkflowDurationParser {\n static parse(duration: number | string): number {\n if (typeof duration === \"number\") {\n return Number.isFinite(duration) && duration > 0 ? Math.floor(duration) : 0;\n }\n const normalized = duration.trim().toLowerCase();\n const match = normalized.match(/^(\\d+)(ms|s|m|h)$/);\n if (!match) {\n throw new Error(\n `Unsupported wait duration \"${duration}\". Use a number of milliseconds or values like \"500ms\", \"2s\", \"5m\".`,\n );\n }\n const value = Number(match[1]);\n const unit = match[2];\n if (unit === \"ms\") {\n return value;\n }\n if (unit === \"s\") {\n return value * 1000;\n }\n if (unit === \"m\") {\n return value * 60_000;\n }\n return value * 3_600_000;\n }\n}\n","import type { AnyRunnableNodeConfig, DefinedNode, RunnableNodeConfig, RunnableNodeOutputJson } from \"@codemation/core\";\nimport { z } from \"zod\";\nimport { MapData } from \"../nodes/mapData\";\nimport { Wait } from \"../nodes/wait\";\nimport type { WorkflowAgentOptions } from \"./WorkflowAuthoringOptions.types\";\nimport { WorkflowAgentNodeFactory } from \"./WorkflowAgentNodeFactory.types\";\nimport { WorkflowDefinedNodeResolver } from \"./WorkflowDefinedNodeResolver.types\";\nimport { WorkflowDurationParser } from \"./WorkflowDurationParser.types\";\n\nexport class WorkflowBranchBuilder<TCurrentJson> {\n constructor(private readonly steps: ReadonlyArray<AnyRunnableNodeConfig> = []) {}\n\n then<TConfig extends RunnableNodeConfig<TCurrentJson, any>>(\n config: TConfig,\n ): WorkflowBranchBuilder<RunnableNodeOutputJson<TConfig>> {\n return new WorkflowBranchBuilder<RunnableNodeOutputJson<TConfig>>([...this.steps, config]);\n }\n\n map<TNextJson>(mapper: (item: TCurrentJson) => TNextJson): WorkflowBranchBuilder<TNextJson>;\n map<TNextJson>(\n name: string,\n mapper: (item: TCurrentJson) => TNextJson,\n id?: string,\n ): WorkflowBranchBuilder<TNextJson>;\n map<TNextJson>(\n nameOrMapper: string | ((item: TCurrentJson) => TNextJson),\n mapperOrUndefined?: (item: TCurrentJson) => TNextJson,\n id?: string,\n ): WorkflowBranchBuilder<TNextJson> {\n const name = typeof nameOrMapper === \"string\" ? nameOrMapper : \"Map data\";\n const mapper = typeof nameOrMapper === \"string\" ? mapperOrUndefined! : nameOrMapper;\n return this.then(\n new MapData<TCurrentJson, TNextJson>(name, (item) => mapper(item.json as TCurrentJson), id),\n ) as WorkflowBranchBuilder<TNextJson>;\n }\n\n wait(duration: number | string): WorkflowBranchBuilder<TCurrentJson>;\n wait(name: string, duration: number | string, id?: string): WorkflowBranchBuilder<TCurrentJson>;\n wait(\n nameOrDuration: string | number,\n durationOrUndefined?: string | number,\n id?: string,\n ): WorkflowBranchBuilder<TCurrentJson> {\n const name = typeof nameOrDuration === \"string\" && durationOrUndefined !== undefined ? nameOrDuration : \"Wait\";\n const duration = durationOrUndefined ?? nameOrDuration;\n return this.then(\n new Wait<TCurrentJson>(name, WorkflowDurationParser.parse(duration), id),\n ) as WorkflowBranchBuilder<TCurrentJson>;\n }\n\n agent<TOutputSchema extends z.ZodTypeAny>(\n options: WorkflowAgentOptions<TCurrentJson, TOutputSchema>,\n ): WorkflowBranchBuilder<z.output<TOutputSchema>>;\n agent(options: WorkflowAgentOptions<TCurrentJson, undefined>): WorkflowBranchBuilder<Record<string, unknown>>;\n agent<TOutputSchema extends z.ZodTypeAny>(\n name: string,\n options: WorkflowAgentOptions<TCurrentJson, TOutputSchema | undefined>,\n ): WorkflowBranchBuilder<TOutputSchema extends z.ZodTypeAny ? z.output<TOutputSchema> : Record<string, unknown>>;\n agent<TOutputSchema extends z.ZodTypeAny>(\n nameOrOptions: string | WorkflowAgentOptions<TCurrentJson, TOutputSchema | undefined>,\n optionsOrUndefined?: WorkflowAgentOptions<TCurrentJson, TOutputSchema | undefined>,\n ): WorkflowBranchBuilder<TOutputSchema extends z.ZodTypeAny ? z.output<TOutputSchema> : Record<string, unknown>> {\n return this.then(WorkflowAgentNodeFactory.create(nameOrOptions, optionsOrUndefined)) as WorkflowBranchBuilder<\n TOutputSchema extends z.ZodTypeAny ? z.output<TOutputSchema> : Record<string, unknown>\n >;\n }\n\n node<TConfig extends Record<string, unknown>, TOutputJson>(\n definitionOrKey: DefinedNode<string, TConfig, TCurrentJson, TOutputJson> | string,\n config: TConfig,\n name?: string,\n id?: string,\n ): WorkflowBranchBuilder<TOutputJson> {\n const definition = WorkflowDefinedNodeResolver.resolve(\n definitionOrKey as DefinedNode<string, Record<string, unknown>, unknown, unknown> | string,\n ) as DefinedNode<string, TConfig, TCurrentJson, TOutputJson>;\n return this.then(\n definition.create(config, name, id) as RunnableNodeConfig<TCurrentJson, TOutputJson>,\n ) as WorkflowBranchBuilder<TOutputJson>;\n }\n\n getSteps(): ReadonlyArray<AnyRunnableNodeConfig> {\n return this.steps;\n }\n}\n","import type { DefinedNode, RunnableNodeConfig, RunnableNodeOutputJson, WorkflowDefinition } from \"@codemation/core\";\nimport { ChainCursor } from \"@codemation/core\";\nimport { z } from \"zod\";\nimport { If } from \"../nodes/if\";\nimport { MapData } from \"../nodes/mapData\";\nimport { Wait } from \"../nodes/wait\";\nimport type { WorkflowAgentOptions } from \"./WorkflowAuthoringOptions.types\";\nimport { WorkflowAgentNodeFactory } from \"./WorkflowAgentNodeFactory.types\";\nimport { WorkflowBranchBuilder } from \"./WorkflowBranchBuilder.types\";\nimport { WorkflowDefinedNodeResolver } from \"./WorkflowDefinedNodeResolver.types\";\nimport { WorkflowDurationParser } from \"./WorkflowDurationParser.types\";\n\ntype BranchCallback<TCurrentJson, TNextJson> = (\n branch: WorkflowBranchBuilder<TCurrentJson>,\n) => WorkflowBranchBuilder<TNextJson>;\ntype BranchOutputMatch<TLeft, TRight> = [TLeft] extends [TRight] ? ([TRight] extends [TLeft] ? true : false) : false;\n\nexport class WorkflowChain<TCurrentJson> {\n constructor(private readonly chain: ChainCursor<TCurrentJson>) {}\n\n then<TConfig extends RunnableNodeConfig<TCurrentJson, any>>(\n config: TConfig,\n ): WorkflowChain<RunnableNodeOutputJson<TConfig>> {\n return new WorkflowChain(this.chain.then(config));\n }\n\n map<TNextJson>(mapper: (item: TCurrentJson) => TNextJson): WorkflowChain<TNextJson>;\n map<TNextJson>(name: string, mapper: (item: TCurrentJson) => TNextJson, id?: string): WorkflowChain<TNextJson>;\n map<TNextJson>(\n nameOrMapper: string | ((item: TCurrentJson) => TNextJson),\n mapperOrUndefined?: (item: TCurrentJson) => TNextJson,\n id?: string,\n ): WorkflowChain<TNextJson> {\n const name = typeof nameOrMapper === \"string\" ? nameOrMapper : \"Map data\";\n const mapper = typeof nameOrMapper === \"string\" ? mapperOrUndefined! : nameOrMapper;\n return this.then(\n new MapData<TCurrentJson, TNextJson>(name, (item) => mapper(item.json as TCurrentJson), id),\n ) as WorkflowChain<TNextJson>;\n }\n\n wait(duration: number | string): WorkflowChain<TCurrentJson>;\n wait(name: string, duration: number | string, id?: string): WorkflowChain<TCurrentJson>;\n wait(\n nameOrDuration: string | number,\n durationOrUndefined?: string | number,\n id?: string,\n ): WorkflowChain<TCurrentJson> {\n const name = typeof nameOrDuration === \"string\" && durationOrUndefined !== undefined ? nameOrDuration : \"Wait\";\n const duration = durationOrUndefined ?? nameOrDuration;\n return this.then(\n new Wait<TCurrentJson>(name, WorkflowDurationParser.parse(duration), id),\n ) as WorkflowChain<TCurrentJson>;\n }\n\n if<TBranchJson>(\n predicate: (item: TCurrentJson) => boolean,\n branches: Readonly<{\n true?: BranchCallback<TCurrentJson, TBranchJson>;\n false?: BranchCallback<TCurrentJson, TBranchJson>;\n }>,\n ): WorkflowChain<TBranchJson>;\n if<TBranchJson>(\n name: string,\n predicate: (item: TCurrentJson) => boolean,\n branches: Readonly<{\n true?: BranchCallback<TCurrentJson, TBranchJson>;\n false?: BranchCallback<TCurrentJson, TBranchJson>;\n }>,\n ): WorkflowChain<TBranchJson>;\n if<TTrueJson, TFalseJson>(\n nameOrPredicate: string | ((item: TCurrentJson) => boolean),\n predicateOrBranches:\n | ((item: TCurrentJson) => boolean)\n | Readonly<{ true?: BranchCallback<TCurrentJson, TTrueJson>; false?: BranchCallback<TCurrentJson, TFalseJson> }>,\n branchesOrUndefined?: Readonly<{\n true?: BranchCallback<TCurrentJson, TTrueJson>;\n false?: BranchCallback<TCurrentJson, TFalseJson>;\n }>,\n ): WorkflowChain<BranchOutputMatch<TTrueJson, TFalseJson> extends true ? TTrueJson : never> {\n const name = typeof nameOrPredicate === \"string\" ? nameOrPredicate : \"If\";\n const predicate =\n typeof nameOrPredicate === \"string\" ? (predicateOrBranches as (item: TCurrentJson) => boolean) : nameOrPredicate;\n const branches = (typeof nameOrPredicate === \"string\" ? branchesOrUndefined : predicateOrBranches) as Readonly<{\n true?: BranchCallback<TCurrentJson, TTrueJson>;\n false?: BranchCallback<TCurrentJson, TFalseJson>;\n }>;\n const cursor = this.chain.then(new If<TCurrentJson>(name, (item) => predicate(item.json as TCurrentJson)));\n const trueSteps = branches.true?.(new WorkflowBranchBuilder<TCurrentJson>()).getSteps();\n const falseSteps = branches.false?.(new WorkflowBranchBuilder<TCurrentJson>()).getSteps();\n return new WorkflowChain(\n cursor.when({\n true: trueSteps,\n false: falseSteps,\n }),\n ) as WorkflowChain<BranchOutputMatch<TTrueJson, TFalseJson> extends true ? TTrueJson : never>;\n }\n\n agent<TOutputSchema extends z.ZodTypeAny>(\n options: WorkflowAgentOptions<TCurrentJson, TOutputSchema>,\n ): WorkflowChain<z.output<TOutputSchema>>;\n agent(options: WorkflowAgentOptions<TCurrentJson, undefined>): WorkflowChain<Record<string, unknown>>;\n agent<TOutputSchema extends z.ZodTypeAny>(\n name: string,\n options: WorkflowAgentOptions<TCurrentJson, TOutputSchema | undefined>,\n ): WorkflowChain<TOutputSchema extends z.ZodTypeAny ? z.output<TOutputSchema> : Record<string, unknown>>;\n agent<TOutputSchema extends z.ZodTypeAny>(\n nameOrOptions: string | WorkflowAgentOptions<TCurrentJson, TOutputSchema | undefined>,\n optionsOrUndefined?: WorkflowAgentOptions<TCurrentJson, TOutputSchema | undefined>,\n ): WorkflowChain<TOutputSchema extends z.ZodTypeAny ? z.output<TOutputSchema> : Record<string, unknown>> {\n return this.then(WorkflowAgentNodeFactory.create(nameOrOptions, optionsOrUndefined)) as WorkflowChain<\n TOutputSchema extends z.ZodTypeAny ? z.output<TOutputSchema> : Record<string, unknown>\n >;\n }\n\n node<TConfig extends Record<string, unknown>, TOutputJson>(\n definitionOrKey: DefinedNode<string, TConfig, TCurrentJson, TOutputJson> | string,\n config: TConfig,\n name?: string,\n id?: string,\n ): WorkflowChain<TOutputJson> {\n const definition = WorkflowDefinedNodeResolver.resolve(\n definitionOrKey as DefinedNode<string, Record<string, unknown>, unknown, unknown> | string,\n ) as DefinedNode<string, TConfig, TCurrentJson, TOutputJson>;\n return this.then(\n definition.create(config, name, id) as RunnableNodeConfig<TCurrentJson, TOutputJson>,\n ) as WorkflowChain<TOutputJson>;\n }\n\n build(): WorkflowDefinition {\n return this.chain.build();\n }\n}\n","import { ChainCursor } from \"@codemation/core\";\nimport { ManualTrigger } from \"../nodes/ManualTriggerFactory\";\nimport { createWorkflowBuilder } from \"../workflowBuilder.types\";\nimport { WorkflowChain } from \"./WorkflowChain.types\";\n\nexport class WorkflowAuthoringBuilder {\n constructor(\n private readonly id: string,\n private readonly workflowName: string = id,\n ) {}\n\n name(name: string): WorkflowAuthoringBuilder {\n return new WorkflowAuthoringBuilder(this.id, name);\n }\n\n manualTrigger<TOutputJson>(defaultItems: TOutputJson | ReadonlyArray<TOutputJson>): WorkflowChain<TOutputJson>;\n manualTrigger<TOutputJson>(\n name: string,\n defaultItems?: TOutputJson | ReadonlyArray<TOutputJson>,\n id?: string,\n ): WorkflowChain<TOutputJson>;\n manualTrigger<TOutputJson>(\n nameOrDefaultItems: string | TOutputJson | ReadonlyArray<TOutputJson>,\n defaultItemsOrUndefined?: TOutputJson | ReadonlyArray<TOutputJson>,\n id?: string,\n ): WorkflowChain<TOutputJson> {\n const builder = createWorkflowBuilder({ id: this.id, name: this.workflowName });\n if (typeof nameOrDefaultItems === \"string\") {\n return new WorkflowChain(\n builder.trigger(\n new ManualTrigger<TOutputJson>(\n nameOrDefaultItems,\n defaultItemsOrUndefined as TOutputJson | ReadonlyArray<TOutputJson>,\n id,\n ),\n ) as ChainCursor<TOutputJson>,\n );\n }\n return new WorkflowChain(\n builder.trigger(new ManualTrigger<TOutputJson>(\"Manual trigger\", nameOrDefaultItems)) as ChainCursor<TOutputJson>,\n );\n }\n}\n","export type { WorkflowAgentOptions } from \"./workflowAuthoring/WorkflowAuthoringOptions.types\";\nexport { WorkflowAuthoringBuilder } from \"./workflowAuthoring/WorkflowAuthoringBuilder.types\";\nexport { WorkflowBranchBuilder } from \"./workflowAuthoring/WorkflowBranchBuilder.types\";\nexport { WorkflowChain } from \"./workflowAuthoring/WorkflowChain.types\";\n\nimport { WorkflowAuthoringBuilder } from \"./workflowAuthoring/WorkflowAuthoringBuilder.types\";\n\nexport function workflow(id: string): WorkflowAuthoringBuilder {\n return new WorkflowAuthoringBuilder(id);\n}\n","import type { NodeDefinition, WorkflowDefinition, WorkflowNodeConnection } from \"@codemation/core\";\nimport { AgentConfigInspector, AgentConnectionNodeCollector } from \"@codemation/core\";\n\nimport { AIAgentNode } from \"../nodes/AIAgentNode\";\nimport { ConnectionCredentialNode } from \"../nodes/ConnectionCredentialNode\";\nimport { ConnectionCredentialNodeConfigFactory } from \"../nodes/ConnectionCredentialNodeConfigFactory\";\n\n/**\n * Materializes connection-owned child nodes and {@link WorkflowDefinition.connections} for AI agent nodes.\n */\nexport class AIAgentConnectionWorkflowExpander {\n constructor(private readonly connectionCredentialNodeConfigFactory: ConnectionCredentialNodeConfigFactory) {}\n\n expand(workflow: WorkflowDefinition): WorkflowDefinition {\n const existingChildIds = this.collectExistingChildIds(workflow);\n const connectionsByParentAndName = this.createConnectionsByParentAndName(workflow);\n const extraNodes: NodeDefinition[] = [];\n let connectionsChanged = false;\n\n for (const node of workflow.nodes) {\n if (node.type !== AIAgentNode || !AgentConfigInspector.isAgentNodeConfig(node.config)) {\n continue;\n }\n for (const connectionNode of AgentConnectionNodeCollector.collect(node.id, node.config)) {\n if (!existingChildIds.has(connectionNode.nodeId)) {\n this.assertNoIdCollision(workflow, extraNodes, existingChildIds, connectionNode.nodeId);\n extraNodes.push({\n id: connectionNode.nodeId,\n kind: \"node\",\n type: ConnectionCredentialNode,\n name: connectionNode.name,\n config: this.connectionCredentialNodeConfigFactory.create(\n connectionNode.typeName,\n connectionNode.credentialSource,\n ),\n });\n }\n const connectionKey = this.connectionKey(connectionNode.parentNodeId, connectionNode.connectionName);\n const existingConnection = connectionsByParentAndName.get(connectionKey);\n if (!existingConnection) {\n connectionsByParentAndName.set(connectionKey, {\n parentNodeId: connectionNode.parentNodeId,\n connectionName: connectionNode.connectionName,\n childNodeIds: [connectionNode.nodeId],\n });\n connectionsChanged = true;\n continue;\n }\n if (!existingConnection.childNodeIds.includes(connectionNode.nodeId)) {\n connectionsByParentAndName.set(connectionKey, {\n ...existingConnection,\n childNodeIds: [...existingConnection.childNodeIds, connectionNode.nodeId],\n });\n connectionsChanged = true;\n }\n }\n }\n\n if (extraNodes.length === 0 && !connectionsChanged) {\n return workflow;\n }\n\n return {\n ...workflow,\n nodes: [...workflow.nodes, ...extraNodes],\n connections: [...connectionsByParentAndName.values()],\n };\n }\n\n private createConnectionsByParentAndName(workflow: WorkflowDefinition): Map<string, WorkflowNodeConnection> {\n const existingByParentAndName = new Map<string, WorkflowNodeConnection>();\n for (const connection of workflow.connections ?? []) {\n existingByParentAndName.set(this.connectionKey(connection.parentNodeId, connection.connectionName), connection);\n }\n return existingByParentAndName;\n }\n\n private collectExistingChildIds(workflow: WorkflowDefinition): ReadonlySet<string> {\n const ids = new Set<string>();\n for (const connection of workflow.connections ?? []) {\n for (const childId of connection.childNodeIds) {\n ids.add(childId);\n }\n }\n return ids;\n }\n\n private connectionKey(parentNodeId: string, connectionName: string): string {\n return `${parentNodeId}\\0${connectionName}`;\n }\n\n private assertNoIdCollision(\n workflow: WorkflowDefinition,\n pending: ReadonlyArray<NodeDefinition>,\n existingChildIds: ReadonlySet<string>,\n id: string,\n ): void {\n if (pending.some((n) => n.id === id)) {\n throw new Error(\n `AIAgent connection expansion: node id \"${id}\" already exists. Rename the conflicting node or adjust the workflow.`,\n );\n }\n if (workflow.nodes.some((n) => n.id === id) && !existingChildIds.has(id)) {\n throw new Error(\n `AIAgent connection expansion: node id \"${id}\" already exists. Rename the conflicting node or adjust the workflow.`,\n );\n }\n }\n}\n","import type { CredentialRequirement, RunnableNodeConfig } from \"@codemation/core\";\n\nimport { ConnectionCredentialNode } from \"./ConnectionCredentialNode\";\n\nexport class ConnectionCredentialNodeConfig implements RunnableNodeConfig {\n readonly kind = \"node\" as const;\n readonly type = ConnectionCredentialNode;\n\n constructor(\n public readonly name: string,\n private readonly credentialSource: { getCredentialRequirements?: () => ReadonlyArray<CredentialRequirement> },\n ) {}\n\n getCredentialRequirements(): ReadonlyArray<CredentialRequirement> {\n return this.credentialSource.getCredentialRequirements?.() ?? [];\n }\n}\n","import type { CredentialRequirement } from \"@codemation/core\";\n\nimport { ConnectionCredentialNodeConfig } from \"./ConnectionCredentialNodeConfig\";\n\nexport class ConnectionCredentialNodeConfigFactory {\n create(\n name: string,\n credentialSource: { getCredentialRequirements?: () => ReadonlyArray<CredentialRequirement> },\n ): ConnectionCredentialNodeConfig {\n return new ConnectionCredentialNodeConfig(name, credentialSource);\n }\n}\n"],"x_google_ignoreList":[6,7,8,9],"mappings":"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"}
|
|
1
|
+
{"version":3,"file":"index.cjs","names":["OpenAIChatModelFactory","ChatOpenAI","name: string","model: string","credentialSlotKey: string","options?: Readonly<{\n temperature?: number;\n maxTokens?: number;\n }>","SystemMessage","HumanMessage","AIMessage","ToolMessage","_a","_a","config","initializer","util.jsonStringifyReplacer","issue","error","core.$ZodAsyncError","util.finalizeIssue","core.config","parse","errors.$ZodRealError","parseAsync","errors.$ZodError","safeParse","safeParseAsync","encode","decode","encodeAsync","decodeAsync","safeEncode","safeDecode","safeEncodeAsync","safeDecodeAsync","_a","util.nullish","inst","util.getLengthableOrigin","_a","util.aborted","checks","core.$ZodAsyncError","checkResult","canary","result","safeParse","safeParseAsync","util.prefixIssues","util.finalizeIssue","core.config","util.cleanRegex","results","left","right","util.isPlainObject","core.$ZodEncodeError","r","util.issue","meta","checks.$ZodCheckMaxLength","util.normalizeParams","checks.$ZodCheckMinLength","checks.$ZodCheckLengthEquals","checks.$ZodCheckOverwrite","issue","util.issue","checks.$ZodCheck","describe","meta","_a","meta","id","schema","registry","ctx","core.formatError","core.flattenError","issue","util.jsonStringifyReplacer","issues","core.$constructor","util.mergeDefs","core.clone","def","meta","parse.parse","parse.safeParse","parse.parseAsync","parse.safeParseAsync","parse.encode","parse.decode","parse.encodeAsync","parse.decodeAsync","parse.safeEncode","parse.safeDecode","parse.safeEncodeAsync","parse.safeDecodeAsync","checks.overwrite","processors.unknownProcessor","core._unknown","processors.arrayProcessor","checks.minLength","checks.maxLength","checks.length","core._array","processors.unionProcessor","util.normalizeParams","processors.intersectionProcessor","processors.transformProcessor","core.$ZodEncodeError","issue","util.issue","output","processors.optionalProcessor","processors.nullableProcessor","processors.defaultProcessor","util.shallowClone","processors.prefaultProcessor","processors.nonoptionalProcessor","processors.catchProcessor","processors.pipeProcessor","processors.readonlyProcessor","processors.customProcessor","core._refine","core._superRefine","core.describe","core.meta","CredentialResolverFactory","AIAgentExecutionHelpersFactory","DynamicStructuredTool","converted: unknown","node","NodeBackedToolRuntime","nodeResolver: NodeResolver","config","CoreTokens","AIAgentNode","z.unknown","nodeResolver: NodeResolver","credentialSessions: CredentialSessionService","nodeBackedToolRuntime: NodeBackedToolRuntime","executionHelpers: AIAgentExecutionHelpersFactory","ConnectionNodeIdFactory","conversation: BaseMessage[]","finalResponse: AIMessage | undefined","config","ConnectionInvocationIdFactory","AgentMessageConfigNormalizer","NodeBackedToolConfig","AgentGuardrailDefaults","CoreTokens","RetryPolicy","CallbackNode","name: string","callback: CallbackHandler<TInputJson, TOutputJson>","id?: string","HttpRequestNode","output: Item[]","outputItem: Item","values: Record<string, string>","name: string","args: Readonly<{\n method?: string;\n urlField?: string;\n binaryName?: string;\n downloadMode?: HttpRequestDownloadMode;\n id?: string;\n }>","retryPolicy: RetryPolicySpec","RetryPolicy","AggregateNode","name: string","aggregate: (\n items: Items<TIn>,\n ctx: NodeExecutionContext<Aggregate<TIn, TOut>>,\n ) => TOut | Promise<TOut>","id?: string","FilterNode","out: Item[]","name: string","predicate: (\n item: Item<TIn>,\n index: number,\n items: Items<TIn>,\n ctx: NodeExecutionContext<Filter<TIn>>,\n ) => boolean","id?: string","IfNode","t: Item[]","f: Item[]","tagged: Item","name: string","predicate: (\n item: Item<TInputJson>,\n index: number,\n items: Items<TInputJson>,\n ctx: NodeExecutionContext<If<TInputJson>>,\n ) => boolean","id?: string","SplitNode","out: Item[]","name: string","getElements: (item: Item<TIn>, ctx: NodeExecutionContext<Split<TIn, TElem>>) => readonly TElem[]","id?: string","ManualTriggerNode","config","ItemsInputNormalizer","name: string","MapDataNode","z.unknown","name: string","map: (\n item: Item<TInputJson>,\n ctx: NodeExecutionContext<MapData<TInputJson, TOutputJson>>,\n ) => TOutputJson","id?: string","MergeNode","out: Item[]","out","json: Record<string, unknown>","paired: any[]","meta: Record<string, unknown> | undefined","meta","merged: any","fallback: Item[]","name: string","cfg: Readonly<{\n mode: MergeMode;\n /**\n * Deterministic input precedence order (only used for passThrough/append).\n * Any inputs not listed are appended in lexicographic order.\n */\n prefer?: ReadonlyArray<InputPortKey>;\n }>","id?: string","NoOpNode","name: string","id?: string","SubWorkflowNode","workflows: WorkflowRunnerService","out: Item[]","CoreTokens","name: string","workflowId: string","upstreamRefs?: Array<{ nodeId: NodeId } | UpstreamRefPlaceholder>","startAt?: NodeId","id?: string","WaitNode","name: string","milliseconds: number","id?: string","responseItems: Items","continueItems: Items","responseItems: Items","WebhookTriggerNode","name: string","args: Readonly<{\n endpointKey: string;\n methods: ReadonlyArray<HttpMethod>;\n inputSchema?: TSchema;\n }>","handler: WebhookTriggerHandler<\n WebhookTrigger<TSchema>\n >","id?: string","ConnectionCredentialNode","WorkflowBuilder","meta","DefinedNodeRegistry","steps: ReadonlyArray<AnyRunnableNodeConfig>","config","chain: ChainCursor<TCurrentJson>","config","id: string","workflowName: string","connectionCredentialNodeConfigFactory: ConnectionCredentialNodeConfigFactory","workflow","extraNodes: NodeDefinition[]","node","AgentConfigInspector","AgentConnectionNodeCollector","name: string","credentialSource: { getCredentialRequirements?: () => ReadonlyArray<CredentialRequirement> }"],"sources":["../src/chatModels/OpenAIChatModelFactory.ts","../src/chatModels/openAiChatModelConfig.ts","../src/chatModels/OpenAiChatModelPresetsFactory.ts","../src/nodes/AgentMessageFactory.ts","../src/nodes/AgentOutputFactory.ts","../src/nodes/AgentToolCallPortMapFactory.ts","../../../node_modules/.pnpm/zod@4.3.6/node_modules/zod/v4/core/core.js","../../../node_modules/.pnpm/zod@4.3.6/node_modules/zod/v4/core/util.js","../../../node_modules/.pnpm/zod@4.3.6/node_modules/zod/v4/core/errors.js","../../../node_modules/.pnpm/zod@4.3.6/node_modules/zod/v4/core/parse.js","../../../node_modules/.pnpm/zod@4.3.6/node_modules/zod/v4/core/checks.js","../../../node_modules/.pnpm/zod@4.3.6/node_modules/zod/v4/core/versions.js","../../../node_modules/.pnpm/zod@4.3.6/node_modules/zod/v4/core/schemas.js","../../../node_modules/.pnpm/zod@4.3.6/node_modules/zod/v4/core/registries.js","../../../node_modules/.pnpm/zod@4.3.6/node_modules/zod/v4/core/api.js","../../../node_modules/.pnpm/zod@4.3.6/node_modules/zod/v4/core/to-json-schema.js","../../../node_modules/.pnpm/zod@4.3.6/node_modules/zod/v4/core/json-schema-processors.js","../../../node_modules/.pnpm/zod@4.3.6/node_modules/zod/v4/classic/errors.js","../../../node_modules/.pnpm/zod@4.3.6/node_modules/zod/v4/classic/parse.js","../../../node_modules/.pnpm/zod@4.3.6/node_modules/zod/v4/classic/schemas.js","../src/nodes/ConnectionCredentialExecutionContextFactory.ts","../src/nodes/AIAgentExecutionHelpersFactory.ts","../src/nodes/NodeBackedToolRuntime.ts","../src/nodes/aiAgentSupport.types.ts","../src/nodes/AIAgentNode.ts","../src/nodes/AIAgentConfig.ts","../src/nodes/CallbackResultNormalizerFactory.ts","../src/nodes/CallbackNode.ts","../src/nodes/CallbackNodeFactory.ts","../src/nodes/HttpRequestNodeFactory.ts","../src/nodes/httpRequest.ts","../src/nodes/AggregateNode.ts","../src/nodes/aggregate.ts","../src/nodes/FilterNode.ts","../src/nodes/filter.ts","../src/nodes/IfNode.ts","../src/nodes/if.ts","../src/nodes/SplitNode.ts","../src/nodes/split.ts","../src/nodes/ManualTriggerNode.ts","../src/nodes/ManualTriggerFactory.ts","../src/nodes/MapDataNode.ts","../src/nodes/mapData.ts","../src/nodes/mergeExecutionUtils.types.ts","../src/nodes/MergeNode.ts","../src/nodes/merge.ts","../src/nodes/NoOpNode.ts","../src/nodes/noOp.ts","../src/nodes/SubWorkflowNode.ts","../src/nodes/subWorkflow.ts","../src/nodes/WaitDurationFactory.ts","../src/nodes/WaitNode.ts","../src/nodes/wait.ts","../src/nodes/webhookRespondNowAndContinueError.ts","../src/nodes/webhookRespondNowError.ts","../src/nodes/webhookTriggerNode.ts","../src/nodes/WebhookTriggerFactory.ts","../src/nodes/ConnectionCredentialNode.ts","../src/register.types.ts","../src/workflowBuilder.types.ts","../src/workflowAuthoring/WorkflowChatModelFactory.types.ts","../src/workflowAuthoring/WorkflowAgentNodeFactory.types.ts","../src/workflowAuthoring/WorkflowDefinedNodeResolver.types.ts","../src/workflowAuthoring/WorkflowDurationParser.types.ts","../src/workflowAuthoring/WorkflowBranchBuilder.types.ts","../src/workflowAuthoring/WorkflowChain.types.ts","../src/workflowAuthoring/WorkflowAuthoringBuilder.types.ts","../src/workflowAuthoring.types.ts","../src/workflows/AIAgentConnectionWorkflowExpander.ts","../src/nodes/ConnectionCredentialNodeConfig.ts","../src/nodes/ConnectionCredentialNodeConfigFactory.ts"],"sourcesContent":["import type { ChatModelFactory, LangChainChatModelLike, NodeExecutionContext } from \"@codemation/core\";\nimport { chatModel } from \"@codemation/core\";\nimport { ChatOpenAI } from \"@langchain/openai\";\nimport type { OpenAiCredentialSession } from \"./OpenAiCredentialSession\";\nimport type { OpenAIChatModelConfig } from \"./openAiChatModelConfig\";\n\n@chatModel({ packageName: \"@codemation/core-nodes\" })\nexport class OpenAIChatModelFactory implements ChatModelFactory<OpenAIChatModelConfig> {\n async create(\n args: Readonly<{ config: OpenAIChatModelConfig; ctx: NodeExecutionContext<any> }>,\n ): Promise<LangChainChatModelLike> {\n const session = await args.ctx.getCredential<OpenAiCredentialSession>(args.config.credentialSlotKey);\n return new ChatOpenAI({\n apiKey: session.apiKey,\n model: args.config.model,\n temperature: args.config.options?.temperature,\n maxTokens: args.config.options?.maxTokens,\n configuration: session.baseUrl ? { baseURL: session.baseUrl } : undefined,\n });\n }\n}\n","import type { AgentCanvasPresentation, ChatModelConfig, CredentialRequirement } from \"@codemation/core\";\n\nimport type { CanvasIconName } from \"../canvasIconName\";\nimport { OpenAIChatModelFactory } from \"./OpenAIChatModelFactory\";\n\nexport class OpenAIChatModelConfig implements ChatModelConfig {\n readonly type = OpenAIChatModelFactory;\n readonly presentation: AgentCanvasPresentation<CanvasIconName>;\n\n constructor(\n public readonly name: string,\n public readonly model: string,\n public readonly credentialSlotKey: string = \"openai\",\n presentationIn?: AgentCanvasPresentation<CanvasIconName>,\n public readonly options?: Readonly<{\n temperature?: number;\n maxTokens?: number;\n }>,\n ) {\n this.presentation = presentationIn ?? { icon: \"builtin:openai\", label: name };\n }\n\n getCredentialRequirements(): ReadonlyArray<CredentialRequirement> {\n return [\n {\n slotKey: this.credentialSlotKey,\n label: \"OpenAI API key\",\n acceptedTypes: [\"openai.apiKey\"],\n },\n ];\n }\n}\n","import { OpenAIChatModelConfig } from \"./openAiChatModelConfig\";\n\n/**\n * Default OpenAI chat model configs for scaffolds and demos (icon + label match {@link OpenAIChatModelConfig} defaults).\n * Prefer importing {@link openAiChatModelPresets} from here or from the consumer template re-export\n * instead of repeating {@link OpenAIChatModelConfig} construction in app workflows.\n */\nexport class OpenAiChatModelPresets {\n readonly demoGpt4oMini = new OpenAIChatModelConfig(\"OpenAI\", \"gpt-4o-mini\");\n\n readonly demoGpt41 = new OpenAIChatModelConfig(\"OpenAI\", \"gpt-4.1\");\n}\n\nexport const openAiChatModelPresets = new OpenAiChatModelPresets();\n","import type { AgentMessageDto, AgentToolCall } from \"@codemation/core\";\n\nimport { AIMessage, HumanMessage, SystemMessage, ToolMessage, type BaseMessage } from \"@langchain/core/messages\";\n\nexport class AgentMessageFactory {\n static createPromptMessages(messages: ReadonlyArray<AgentMessageDto>): ReadonlyArray<BaseMessage> {\n return messages.map((message) => this.createPromptMessage(message));\n }\n\n static createSystemPrompt(systemMessage: string): SystemMessage {\n return new SystemMessage(systemMessage);\n }\n\n static createUserPrompt(prompt: string): HumanMessage {\n return new HumanMessage(prompt);\n }\n\n static createAssistantPrompt(prompt: string): AIMessage {\n return new AIMessage(prompt);\n }\n\n static createToolMessage(toolCallId: string, content: string): ToolMessage {\n return new ToolMessage({ tool_call_id: toolCallId, content });\n }\n\n static extractContent(message: unknown): string {\n if (typeof message === \"string\") return message;\n if (!this.isRecord(message)) return String(message);\n const content = message.content;\n if (typeof content === \"string\") return content;\n if (Array.isArray(content)) {\n return content\n .map((part) => {\n if (typeof part === \"string\") return part;\n if (this.isRecord(part) && typeof part.text === \"string\") return part.text;\n return JSON.stringify(part);\n })\n .join(\"\\n\");\n }\n return JSON.stringify(content);\n }\n\n static extractToolCalls(message: unknown): ReadonlyArray<AgentToolCall> {\n if (!this.isRecord(message)) return [];\n const toolCalls = message.tool_calls;\n if (!Array.isArray(toolCalls)) return [];\n return toolCalls\n .filter((toolCall) => this.isRecord(toolCall) && typeof toolCall.name === \"string\")\n .map((toolCall) => ({\n id: typeof toolCall.id === \"string\" ? toolCall.id : undefined,\n name: toolCall.name as string,\n input: this.isRecord(toolCall) && \"args\" in toolCall ? toolCall.args : undefined,\n }));\n }\n\n private static isRecord(value: unknown): value is Record<string, unknown> {\n return typeof value === \"object\" && value !== null;\n }\n\n private static createPromptMessage(message: AgentMessageDto): BaseMessage {\n if (message.role === \"system\") {\n return this.createSystemPrompt(message.content);\n }\n if (message.role === \"assistant\") {\n return this.createAssistantPrompt(message.content);\n }\n return this.createUserPrompt(message.content);\n }\n}\n","import type { Item, NodeOutputs } from \"@codemation/core\";\n\nexport class AgentOutputFactory {\n static fromUnknown(value: unknown): NodeOutputs {\n return { main: [{ json: value }] };\n }\n\n static replaceJson(item: Item, value: unknown): Item {\n return {\n ...item,\n json: value,\n };\n }\n\n static fromAgentContent(content: string): unknown {\n try {\n return JSON.parse(content) as unknown;\n } catch {\n return { output: content };\n }\n }\n}\n","import type { NodeInputsByPort } from \"@codemation/core\";\n\nexport class AgentToolCallPortMap {\n static fromInput(input: unknown): NodeInputsByPort {\n return {\n in: [\n {\n json: input,\n },\n ],\n };\n }\n}\n","/** A special constant with type `never` */\nexport const NEVER = Object.freeze({\n status: \"aborted\",\n});\nexport /*@__NO_SIDE_EFFECTS__*/ function $constructor(name, initializer, params) {\n function init(inst, def) {\n if (!inst._zod) {\n Object.defineProperty(inst, \"_zod\", {\n value: {\n def,\n constr: _,\n traits: new Set(),\n },\n enumerable: false,\n });\n }\n if (inst._zod.traits.has(name)) {\n return;\n }\n inst._zod.traits.add(name);\n initializer(inst, def);\n // support prototype modifications\n const proto = _.prototype;\n const keys = Object.keys(proto);\n for (let i = 0; i < keys.length; i++) {\n const k = keys[i];\n if (!(k in inst)) {\n inst[k] = proto[k].bind(inst);\n }\n }\n }\n // doesn't work if Parent has a constructor with arguments\n const Parent = params?.Parent ?? Object;\n class Definition extends Parent {\n }\n Object.defineProperty(Definition, \"name\", { value: name });\n function _(def) {\n var _a;\n const inst = params?.Parent ? new Definition() : this;\n init(inst, def);\n (_a = inst._zod).deferred ?? (_a.deferred = []);\n for (const fn of inst._zod.deferred) {\n fn();\n }\n return inst;\n }\n Object.defineProperty(_, \"init\", { value: init });\n Object.defineProperty(_, Symbol.hasInstance, {\n value: (inst) => {\n if (params?.Parent && inst instanceof params.Parent)\n return true;\n return inst?._zod?.traits?.has(name);\n },\n });\n Object.defineProperty(_, \"name\", { value: name });\n return _;\n}\n////////////////////////////// UTILITIES ///////////////////////////////////////\nexport const $brand = Symbol(\"zod_brand\");\nexport class $ZodAsyncError extends Error {\n constructor() {\n super(`Encountered Promise during synchronous parse. Use .parseAsync() instead.`);\n }\n}\nexport class $ZodEncodeError extends Error {\n constructor(name) {\n super(`Encountered unidirectional transform during encode: ${name}`);\n this.name = \"ZodEncodeError\";\n }\n}\nexport const globalConfig = {};\nexport function config(newConfig) {\n if (newConfig)\n Object.assign(globalConfig, newConfig);\n return globalConfig;\n}\n","// functions\nexport function assertEqual(val) {\n return val;\n}\nexport function assertNotEqual(val) {\n return val;\n}\nexport function assertIs(_arg) { }\nexport function assertNever(_x) {\n throw new Error(\"Unexpected value in exhaustive check\");\n}\nexport function assert(_) { }\nexport function getEnumValues(entries) {\n const numericValues = Object.values(entries).filter((v) => typeof v === \"number\");\n const values = Object.entries(entries)\n .filter(([k, _]) => numericValues.indexOf(+k) === -1)\n .map(([_, v]) => v);\n return values;\n}\nexport function joinValues(array, separator = \"|\") {\n return array.map((val) => stringifyPrimitive(val)).join(separator);\n}\nexport function jsonStringifyReplacer(_, value) {\n if (typeof value === \"bigint\")\n return value.toString();\n return value;\n}\nexport function cached(getter) {\n const set = false;\n return {\n get value() {\n if (!set) {\n const value = getter();\n Object.defineProperty(this, \"value\", { value });\n return value;\n }\n throw new Error(\"cached value already set\");\n },\n };\n}\nexport function nullish(input) {\n return input === null || input === undefined;\n}\nexport function cleanRegex(source) {\n const start = source.startsWith(\"^\") ? 1 : 0;\n const end = source.endsWith(\"$\") ? source.length - 1 : source.length;\n return source.slice(start, end);\n}\nexport function floatSafeRemainder(val, step) {\n const valDecCount = (val.toString().split(\".\")[1] || \"\").length;\n const stepString = step.toString();\n let stepDecCount = (stepString.split(\".\")[1] || \"\").length;\n if (stepDecCount === 0 && /\\d?e-\\d?/.test(stepString)) {\n const match = stepString.match(/\\d?e-(\\d?)/);\n if (match?.[1]) {\n stepDecCount = Number.parseInt(match[1]);\n }\n }\n const decCount = valDecCount > stepDecCount ? valDecCount : stepDecCount;\n const valInt = Number.parseInt(val.toFixed(decCount).replace(\".\", \"\"));\n const stepInt = Number.parseInt(step.toFixed(decCount).replace(\".\", \"\"));\n return (valInt % stepInt) / 10 ** decCount;\n}\nconst EVALUATING = Symbol(\"evaluating\");\nexport function defineLazy(object, key, getter) {\n let value = undefined;\n Object.defineProperty(object, key, {\n get() {\n if (value === EVALUATING) {\n // Circular reference detected, return undefined to break the cycle\n return undefined;\n }\n if (value === undefined) {\n value = EVALUATING;\n value = getter();\n }\n return value;\n },\n set(v) {\n Object.defineProperty(object, key, {\n value: v,\n // configurable: true,\n });\n // object[key] = v;\n },\n configurable: true,\n });\n}\nexport function objectClone(obj) {\n return Object.create(Object.getPrototypeOf(obj), Object.getOwnPropertyDescriptors(obj));\n}\nexport function assignProp(target, prop, value) {\n Object.defineProperty(target, prop, {\n value,\n writable: true,\n enumerable: true,\n configurable: true,\n });\n}\nexport function mergeDefs(...defs) {\n const mergedDescriptors = {};\n for (const def of defs) {\n const descriptors = Object.getOwnPropertyDescriptors(def);\n Object.assign(mergedDescriptors, descriptors);\n }\n return Object.defineProperties({}, mergedDescriptors);\n}\nexport function cloneDef(schema) {\n return mergeDefs(schema._zod.def);\n}\nexport function getElementAtPath(obj, path) {\n if (!path)\n return obj;\n return path.reduce((acc, key) => acc?.[key], obj);\n}\nexport function promiseAllObject(promisesObj) {\n const keys = Object.keys(promisesObj);\n const promises = keys.map((key) => promisesObj[key]);\n return Promise.all(promises).then((results) => {\n const resolvedObj = {};\n for (let i = 0; i < keys.length; i++) {\n resolvedObj[keys[i]] = results[i];\n }\n return resolvedObj;\n });\n}\nexport function randomString(length = 10) {\n const chars = \"abcdefghijklmnopqrstuvwxyz\";\n let str = \"\";\n for (let i = 0; i < length; i++) {\n str += chars[Math.floor(Math.random() * chars.length)];\n }\n return str;\n}\nexport function esc(str) {\n return JSON.stringify(str);\n}\nexport function slugify(input) {\n return input\n .toLowerCase()\n .trim()\n .replace(/[^\\w\\s-]/g, \"\")\n .replace(/[\\s_-]+/g, \"-\")\n .replace(/^-+|-+$/g, \"\");\n}\nexport const captureStackTrace = (\"captureStackTrace\" in Error ? Error.captureStackTrace : (..._args) => { });\nexport function isObject(data) {\n return typeof data === \"object\" && data !== null && !Array.isArray(data);\n}\nexport const allowsEval = cached(() => {\n // @ts-ignore\n if (typeof navigator !== \"undefined\" && navigator?.userAgent?.includes(\"Cloudflare\")) {\n return false;\n }\n try {\n const F = Function;\n new F(\"\");\n return true;\n }\n catch (_) {\n return false;\n }\n});\nexport function isPlainObject(o) {\n if (isObject(o) === false)\n return false;\n // modified constructor\n const ctor = o.constructor;\n if (ctor === undefined)\n return true;\n if (typeof ctor !== \"function\")\n return true;\n // modified prototype\n const prot = ctor.prototype;\n if (isObject(prot) === false)\n return false;\n // ctor doesn't have static `isPrototypeOf`\n if (Object.prototype.hasOwnProperty.call(prot, \"isPrototypeOf\") === false) {\n return false;\n }\n return true;\n}\nexport function shallowClone(o) {\n if (isPlainObject(o))\n return { ...o };\n if (Array.isArray(o))\n return [...o];\n return o;\n}\nexport function numKeys(data) {\n let keyCount = 0;\n for (const key in data) {\n if (Object.prototype.hasOwnProperty.call(data, key)) {\n keyCount++;\n }\n }\n return keyCount;\n}\nexport const getParsedType = (data) => {\n const t = typeof data;\n switch (t) {\n case \"undefined\":\n return \"undefined\";\n case \"string\":\n return \"string\";\n case \"number\":\n return Number.isNaN(data) ? \"nan\" : \"number\";\n case \"boolean\":\n return \"boolean\";\n case \"function\":\n return \"function\";\n case \"bigint\":\n return \"bigint\";\n case \"symbol\":\n return \"symbol\";\n case \"object\":\n if (Array.isArray(data)) {\n return \"array\";\n }\n if (data === null) {\n return \"null\";\n }\n if (data.then && typeof data.then === \"function\" && data.catch && typeof data.catch === \"function\") {\n return \"promise\";\n }\n if (typeof Map !== \"undefined\" && data instanceof Map) {\n return \"map\";\n }\n if (typeof Set !== \"undefined\" && data instanceof Set) {\n return \"set\";\n }\n if (typeof Date !== \"undefined\" && data instanceof Date) {\n return \"date\";\n }\n // @ts-ignore\n if (typeof File !== \"undefined\" && data instanceof File) {\n return \"file\";\n }\n return \"object\";\n default:\n throw new Error(`Unknown data type: ${t}`);\n }\n};\nexport const propertyKeyTypes = new Set([\"string\", \"number\", \"symbol\"]);\nexport const primitiveTypes = new Set([\"string\", \"number\", \"bigint\", \"boolean\", \"symbol\", \"undefined\"]);\nexport function escapeRegex(str) {\n return str.replace(/[.*+?^${}()|[\\]\\\\]/g, \"\\\\$&\");\n}\n// zod-specific utils\nexport function clone(inst, def, params) {\n const cl = new inst._zod.constr(def ?? inst._zod.def);\n if (!def || params?.parent)\n cl._zod.parent = inst;\n return cl;\n}\nexport function normalizeParams(_params) {\n const params = _params;\n if (!params)\n return {};\n if (typeof params === \"string\")\n return { error: () => params };\n if (params?.message !== undefined) {\n if (params?.error !== undefined)\n throw new Error(\"Cannot specify both `message` and `error` params\");\n params.error = params.message;\n }\n delete params.message;\n if (typeof params.error === \"string\")\n return { ...params, error: () => params.error };\n return params;\n}\nexport function createTransparentProxy(getter) {\n let target;\n return new Proxy({}, {\n get(_, prop, receiver) {\n target ?? (target = getter());\n return Reflect.get(target, prop, receiver);\n },\n set(_, prop, value, receiver) {\n target ?? (target = getter());\n return Reflect.set(target, prop, value, receiver);\n },\n has(_, prop) {\n target ?? (target = getter());\n return Reflect.has(target, prop);\n },\n deleteProperty(_, prop) {\n target ?? (target = getter());\n return Reflect.deleteProperty(target, prop);\n },\n ownKeys(_) {\n target ?? (target = getter());\n return Reflect.ownKeys(target);\n },\n getOwnPropertyDescriptor(_, prop) {\n target ?? (target = getter());\n return Reflect.getOwnPropertyDescriptor(target, prop);\n },\n defineProperty(_, prop, descriptor) {\n target ?? (target = getter());\n return Reflect.defineProperty(target, prop, descriptor);\n },\n });\n}\nexport function stringifyPrimitive(value) {\n if (typeof value === \"bigint\")\n return value.toString() + \"n\";\n if (typeof value === \"string\")\n return `\"${value}\"`;\n return `${value}`;\n}\nexport function optionalKeys(shape) {\n return Object.keys(shape).filter((k) => {\n return shape[k]._zod.optin === \"optional\" && shape[k]._zod.optout === \"optional\";\n });\n}\nexport const NUMBER_FORMAT_RANGES = {\n safeint: [Number.MIN_SAFE_INTEGER, Number.MAX_SAFE_INTEGER],\n int32: [-2147483648, 2147483647],\n uint32: [0, 4294967295],\n float32: [-3.4028234663852886e38, 3.4028234663852886e38],\n float64: [-Number.MAX_VALUE, Number.MAX_VALUE],\n};\nexport const BIGINT_FORMAT_RANGES = {\n int64: [/* @__PURE__*/ BigInt(\"-9223372036854775808\"), /* @__PURE__*/ BigInt(\"9223372036854775807\")],\n uint64: [/* @__PURE__*/ BigInt(0), /* @__PURE__*/ BigInt(\"18446744073709551615\")],\n};\nexport function pick(schema, mask) {\n const currDef = schema._zod.def;\n const checks = currDef.checks;\n const hasChecks = checks && checks.length > 0;\n if (hasChecks) {\n throw new Error(\".pick() cannot be used on object schemas containing refinements\");\n }\n const def = mergeDefs(schema._zod.def, {\n get shape() {\n const newShape = {};\n for (const key in mask) {\n if (!(key in currDef.shape)) {\n throw new Error(`Unrecognized key: \"${key}\"`);\n }\n if (!mask[key])\n continue;\n newShape[key] = currDef.shape[key];\n }\n assignProp(this, \"shape\", newShape); // self-caching\n return newShape;\n },\n checks: [],\n });\n return clone(schema, def);\n}\nexport function omit(schema, mask) {\n const currDef = schema._zod.def;\n const checks = currDef.checks;\n const hasChecks = checks && checks.length > 0;\n if (hasChecks) {\n throw new Error(\".omit() cannot be used on object schemas containing refinements\");\n }\n const def = mergeDefs(schema._zod.def, {\n get shape() {\n const newShape = { ...schema._zod.def.shape };\n for (const key in mask) {\n if (!(key in currDef.shape)) {\n throw new Error(`Unrecognized key: \"${key}\"`);\n }\n if (!mask[key])\n continue;\n delete newShape[key];\n }\n assignProp(this, \"shape\", newShape); // self-caching\n return newShape;\n },\n checks: [],\n });\n return clone(schema, def);\n}\nexport function extend(schema, shape) {\n if (!isPlainObject(shape)) {\n throw new Error(\"Invalid input to extend: expected a plain object\");\n }\n const checks = schema._zod.def.checks;\n const hasChecks = checks && checks.length > 0;\n if (hasChecks) {\n // Only throw if new shape overlaps with existing shape\n // Use getOwnPropertyDescriptor to check key existence without accessing values\n const existingShape = schema._zod.def.shape;\n for (const key in shape) {\n if (Object.getOwnPropertyDescriptor(existingShape, key) !== undefined) {\n throw new Error(\"Cannot overwrite keys on object schemas containing refinements. Use `.safeExtend()` instead.\");\n }\n }\n }\n const def = mergeDefs(schema._zod.def, {\n get shape() {\n const _shape = { ...schema._zod.def.shape, ...shape };\n assignProp(this, \"shape\", _shape); // self-caching\n return _shape;\n },\n });\n return clone(schema, def);\n}\nexport function safeExtend(schema, shape) {\n if (!isPlainObject(shape)) {\n throw new Error(\"Invalid input to safeExtend: expected a plain object\");\n }\n const def = mergeDefs(schema._zod.def, {\n get shape() {\n const _shape = { ...schema._zod.def.shape, ...shape };\n assignProp(this, \"shape\", _shape); // self-caching\n return _shape;\n },\n });\n return clone(schema, def);\n}\nexport function merge(a, b) {\n const def = mergeDefs(a._zod.def, {\n get shape() {\n const _shape = { ...a._zod.def.shape, ...b._zod.def.shape };\n assignProp(this, \"shape\", _shape); // self-caching\n return _shape;\n },\n get catchall() {\n return b._zod.def.catchall;\n },\n checks: [], // delete existing checks\n });\n return clone(a, def);\n}\nexport function partial(Class, schema, mask) {\n const currDef = schema._zod.def;\n const checks = currDef.checks;\n const hasChecks = checks && checks.length > 0;\n if (hasChecks) {\n throw new Error(\".partial() cannot be used on object schemas containing refinements\");\n }\n const def = mergeDefs(schema._zod.def, {\n get shape() {\n const oldShape = schema._zod.def.shape;\n const shape = { ...oldShape };\n if (mask) {\n for (const key in mask) {\n if (!(key in oldShape)) {\n throw new Error(`Unrecognized key: \"${key}\"`);\n }\n if (!mask[key])\n continue;\n // if (oldShape[key]!._zod.optin === \"optional\") continue;\n shape[key] = Class\n ? new Class({\n type: \"optional\",\n innerType: oldShape[key],\n })\n : oldShape[key];\n }\n }\n else {\n for (const key in oldShape) {\n // if (oldShape[key]!._zod.optin === \"optional\") continue;\n shape[key] = Class\n ? new Class({\n type: \"optional\",\n innerType: oldShape[key],\n })\n : oldShape[key];\n }\n }\n assignProp(this, \"shape\", shape); // self-caching\n return shape;\n },\n checks: [],\n });\n return clone(schema, def);\n}\nexport function required(Class, schema, mask) {\n const def = mergeDefs(schema._zod.def, {\n get shape() {\n const oldShape = schema._zod.def.shape;\n const shape = { ...oldShape };\n if (mask) {\n for (const key in mask) {\n if (!(key in shape)) {\n throw new Error(`Unrecognized key: \"${key}\"`);\n }\n if (!mask[key])\n continue;\n // overwrite with non-optional\n shape[key] = new Class({\n type: \"nonoptional\",\n innerType: oldShape[key],\n });\n }\n }\n else {\n for (const key in oldShape) {\n // overwrite with non-optional\n shape[key] = new Class({\n type: \"nonoptional\",\n innerType: oldShape[key],\n });\n }\n }\n assignProp(this, \"shape\", shape); // self-caching\n return shape;\n },\n });\n return clone(schema, def);\n}\n// invalid_type | too_big | too_small | invalid_format | not_multiple_of | unrecognized_keys | invalid_union | invalid_key | invalid_element | invalid_value | custom\nexport function aborted(x, startIndex = 0) {\n if (x.aborted === true)\n return true;\n for (let i = startIndex; i < x.issues.length; i++) {\n if (x.issues[i]?.continue !== true) {\n return true;\n }\n }\n return false;\n}\nexport function prefixIssues(path, issues) {\n return issues.map((iss) => {\n var _a;\n (_a = iss).path ?? (_a.path = []);\n iss.path.unshift(path);\n return iss;\n });\n}\nexport function unwrapMessage(message) {\n return typeof message === \"string\" ? message : message?.message;\n}\nexport function finalizeIssue(iss, ctx, config) {\n const full = { ...iss, path: iss.path ?? [] };\n // for backwards compatibility\n if (!iss.message) {\n const message = unwrapMessage(iss.inst?._zod.def?.error?.(iss)) ??\n unwrapMessage(ctx?.error?.(iss)) ??\n unwrapMessage(config.customError?.(iss)) ??\n unwrapMessage(config.localeError?.(iss)) ??\n \"Invalid input\";\n full.message = message;\n }\n // delete (full as any).def;\n delete full.inst;\n delete full.continue;\n if (!ctx?.reportInput) {\n delete full.input;\n }\n return full;\n}\nexport function getSizableOrigin(input) {\n if (input instanceof Set)\n return \"set\";\n if (input instanceof Map)\n return \"map\";\n // @ts-ignore\n if (input instanceof File)\n return \"file\";\n return \"unknown\";\n}\nexport function getLengthableOrigin(input) {\n if (Array.isArray(input))\n return \"array\";\n if (typeof input === \"string\")\n return \"string\";\n return \"unknown\";\n}\nexport function parsedType(data) {\n const t = typeof data;\n switch (t) {\n case \"number\": {\n return Number.isNaN(data) ? \"nan\" : \"number\";\n }\n case \"object\": {\n if (data === null) {\n return \"null\";\n }\n if (Array.isArray(data)) {\n return \"array\";\n }\n const obj = data;\n if (obj && Object.getPrototypeOf(obj) !== Object.prototype && \"constructor\" in obj && obj.constructor) {\n return obj.constructor.name;\n }\n }\n }\n return t;\n}\nexport function issue(...args) {\n const [iss, input, inst] = args;\n if (typeof iss === \"string\") {\n return {\n message: iss,\n code: \"custom\",\n input,\n inst,\n };\n }\n return { ...iss };\n}\nexport function cleanEnum(obj) {\n return Object.entries(obj)\n .filter(([k, _]) => {\n // return true if NaN, meaning it's not a number, thus a string key\n return Number.isNaN(Number.parseInt(k, 10));\n })\n .map((el) => el[1]);\n}\n// Codec utility functions\nexport function base64ToUint8Array(base64) {\n const binaryString = atob(base64);\n const bytes = new Uint8Array(binaryString.length);\n for (let i = 0; i < binaryString.length; i++) {\n bytes[i] = binaryString.charCodeAt(i);\n }\n return bytes;\n}\nexport function uint8ArrayToBase64(bytes) {\n let binaryString = \"\";\n for (let i = 0; i < bytes.length; i++) {\n binaryString += String.fromCharCode(bytes[i]);\n }\n return btoa(binaryString);\n}\nexport function base64urlToUint8Array(base64url) {\n const base64 = base64url.replace(/-/g, \"+\").replace(/_/g, \"/\");\n const padding = \"=\".repeat((4 - (base64.length % 4)) % 4);\n return base64ToUint8Array(base64 + padding);\n}\nexport function uint8ArrayToBase64url(bytes) {\n return uint8ArrayToBase64(bytes).replace(/\\+/g, \"-\").replace(/\\//g, \"_\").replace(/=/g, \"\");\n}\nexport function hexToUint8Array(hex) {\n const cleanHex = hex.replace(/^0x/, \"\");\n if (cleanHex.length % 2 !== 0) {\n throw new Error(\"Invalid hex string length\");\n }\n const bytes = new Uint8Array(cleanHex.length / 2);\n for (let i = 0; i < cleanHex.length; i += 2) {\n bytes[i / 2] = Number.parseInt(cleanHex.slice(i, i + 2), 16);\n }\n return bytes;\n}\nexport function uint8ArrayToHex(bytes) {\n return Array.from(bytes)\n .map((b) => b.toString(16).padStart(2, \"0\"))\n .join(\"\");\n}\n// instanceof\nexport class Class {\n constructor(..._args) { }\n}\n","import { $constructor } from \"./core.js\";\nimport * as util from \"./util.js\";\nconst initializer = (inst, def) => {\n inst.name = \"$ZodError\";\n Object.defineProperty(inst, \"_zod\", {\n value: inst._zod,\n enumerable: false,\n });\n Object.defineProperty(inst, \"issues\", {\n value: def,\n enumerable: false,\n });\n inst.message = JSON.stringify(def, util.jsonStringifyReplacer, 2);\n Object.defineProperty(inst, \"toString\", {\n value: () => inst.message,\n enumerable: false,\n });\n};\nexport const $ZodError = $constructor(\"$ZodError\", initializer);\nexport const $ZodRealError = $constructor(\"$ZodError\", initializer, { Parent: Error });\nexport function flattenError(error, mapper = (issue) => issue.message) {\n const fieldErrors = {};\n const formErrors = [];\n for (const sub of error.issues) {\n if (sub.path.length > 0) {\n fieldErrors[sub.path[0]] = fieldErrors[sub.path[0]] || [];\n fieldErrors[sub.path[0]].push(mapper(sub));\n }\n else {\n formErrors.push(mapper(sub));\n }\n }\n return { formErrors, fieldErrors };\n}\nexport function formatError(error, mapper = (issue) => issue.message) {\n const fieldErrors = { _errors: [] };\n const processError = (error) => {\n for (const issue of error.issues) {\n if (issue.code === \"invalid_union\" && issue.errors.length) {\n issue.errors.map((issues) => processError({ issues }));\n }\n else if (issue.code === \"invalid_key\") {\n processError({ issues: issue.issues });\n }\n else if (issue.code === \"invalid_element\") {\n processError({ issues: issue.issues });\n }\n else if (issue.path.length === 0) {\n fieldErrors._errors.push(mapper(issue));\n }\n else {\n let curr = fieldErrors;\n let i = 0;\n while (i < issue.path.length) {\n const el = issue.path[i];\n const terminal = i === issue.path.length - 1;\n if (!terminal) {\n curr[el] = curr[el] || { _errors: [] };\n }\n else {\n curr[el] = curr[el] || { _errors: [] };\n curr[el]._errors.push(mapper(issue));\n }\n curr = curr[el];\n i++;\n }\n }\n }\n };\n processError(error);\n return fieldErrors;\n}\nexport function treeifyError(error, mapper = (issue) => issue.message) {\n const result = { errors: [] };\n const processError = (error, path = []) => {\n var _a, _b;\n for (const issue of error.issues) {\n if (issue.code === \"invalid_union\" && issue.errors.length) {\n // regular union error\n issue.errors.map((issues) => processError({ issues }, issue.path));\n }\n else if (issue.code === \"invalid_key\") {\n processError({ issues: issue.issues }, issue.path);\n }\n else if (issue.code === \"invalid_element\") {\n processError({ issues: issue.issues }, issue.path);\n }\n else {\n const fullpath = [...path, ...issue.path];\n if (fullpath.length === 0) {\n result.errors.push(mapper(issue));\n continue;\n }\n let curr = result;\n let i = 0;\n while (i < fullpath.length) {\n const el = fullpath[i];\n const terminal = i === fullpath.length - 1;\n if (typeof el === \"string\") {\n curr.properties ?? (curr.properties = {});\n (_a = curr.properties)[el] ?? (_a[el] = { errors: [] });\n curr = curr.properties[el];\n }\n else {\n curr.items ?? (curr.items = []);\n (_b = curr.items)[el] ?? (_b[el] = { errors: [] });\n curr = curr.items[el];\n }\n if (terminal) {\n curr.errors.push(mapper(issue));\n }\n i++;\n }\n }\n }\n };\n processError(error);\n return result;\n}\n/** Format a ZodError as a human-readable string in the following form.\n *\n * From\n *\n * ```ts\n * ZodError {\n * issues: [\n * {\n * expected: 'string',\n * code: 'invalid_type',\n * path: [ 'username' ],\n * message: 'Invalid input: expected string'\n * },\n * {\n * expected: 'number',\n * code: 'invalid_type',\n * path: [ 'favoriteNumbers', 1 ],\n * message: 'Invalid input: expected number'\n * }\n * ];\n * }\n * ```\n *\n * to\n *\n * ```\n * username\n * ✖ Expected number, received string at \"username\n * favoriteNumbers[0]\n * ✖ Invalid input: expected number\n * ```\n */\nexport function toDotPath(_path) {\n const segs = [];\n const path = _path.map((seg) => (typeof seg === \"object\" ? seg.key : seg));\n for (const seg of path) {\n if (typeof seg === \"number\")\n segs.push(`[${seg}]`);\n else if (typeof seg === \"symbol\")\n segs.push(`[${JSON.stringify(String(seg))}]`);\n else if (/[^\\w$]/.test(seg))\n segs.push(`[${JSON.stringify(seg)}]`);\n else {\n if (segs.length)\n segs.push(\".\");\n segs.push(seg);\n }\n }\n return segs.join(\"\");\n}\nexport function prettifyError(error) {\n const lines = [];\n // sort by path length\n const issues = [...error.issues].sort((a, b) => (a.path ?? []).length - (b.path ?? []).length);\n // Process each issue\n for (const issue of issues) {\n lines.push(`✖ ${issue.message}`);\n if (issue.path?.length)\n lines.push(` → at ${toDotPath(issue.path)}`);\n }\n // Convert Map to formatted string\n return lines.join(\"\\n\");\n}\n","import * as core from \"./core.js\";\nimport * as errors from \"./errors.js\";\nimport * as util from \"./util.js\";\nexport const _parse = (_Err) => (schema, value, _ctx, _params) => {\n const ctx = _ctx ? Object.assign(_ctx, { async: false }) : { async: false };\n const result = schema._zod.run({ value, issues: [] }, ctx);\n if (result instanceof Promise) {\n throw new core.$ZodAsyncError();\n }\n if (result.issues.length) {\n const e = new (_params?.Err ?? _Err)(result.issues.map((iss) => util.finalizeIssue(iss, ctx, core.config())));\n util.captureStackTrace(e, _params?.callee);\n throw e;\n }\n return result.value;\n};\nexport const parse = /* @__PURE__*/ _parse(errors.$ZodRealError);\nexport const _parseAsync = (_Err) => async (schema, value, _ctx, params) => {\n const ctx = _ctx ? Object.assign(_ctx, { async: true }) : { async: true };\n let result = schema._zod.run({ value, issues: [] }, ctx);\n if (result instanceof Promise)\n result = await result;\n if (result.issues.length) {\n const e = new (params?.Err ?? _Err)(result.issues.map((iss) => util.finalizeIssue(iss, ctx, core.config())));\n util.captureStackTrace(e, params?.callee);\n throw e;\n }\n return result.value;\n};\nexport const parseAsync = /* @__PURE__*/ _parseAsync(errors.$ZodRealError);\nexport const _safeParse = (_Err) => (schema, value, _ctx) => {\n const ctx = _ctx ? { ..._ctx, async: false } : { async: false };\n const result = schema._zod.run({ value, issues: [] }, ctx);\n if (result instanceof Promise) {\n throw new core.$ZodAsyncError();\n }\n return result.issues.length\n ? {\n success: false,\n error: new (_Err ?? errors.$ZodError)(result.issues.map((iss) => util.finalizeIssue(iss, ctx, core.config()))),\n }\n : { success: true, data: result.value };\n};\nexport const safeParse = /* @__PURE__*/ _safeParse(errors.$ZodRealError);\nexport const _safeParseAsync = (_Err) => async (schema, value, _ctx) => {\n const ctx = _ctx ? Object.assign(_ctx, { async: true }) : { async: true };\n let result = schema._zod.run({ value, issues: [] }, ctx);\n if (result instanceof Promise)\n result = await result;\n return result.issues.length\n ? {\n success: false,\n error: new _Err(result.issues.map((iss) => util.finalizeIssue(iss, ctx, core.config()))),\n }\n : { success: true, data: result.value };\n};\nexport const safeParseAsync = /* @__PURE__*/ _safeParseAsync(errors.$ZodRealError);\nexport const _encode = (_Err) => (schema, value, _ctx) => {\n const ctx = _ctx ? Object.assign(_ctx, { direction: \"backward\" }) : { direction: \"backward\" };\n return _parse(_Err)(schema, value, ctx);\n};\nexport const encode = /* @__PURE__*/ _encode(errors.$ZodRealError);\nexport const _decode = (_Err) => (schema, value, _ctx) => {\n return _parse(_Err)(schema, value, _ctx);\n};\nexport const decode = /* @__PURE__*/ _decode(errors.$ZodRealError);\nexport const _encodeAsync = (_Err) => async (schema, value, _ctx) => {\n const ctx = _ctx ? Object.assign(_ctx, { direction: \"backward\" }) : { direction: \"backward\" };\n return _parseAsync(_Err)(schema, value, ctx);\n};\nexport const encodeAsync = /* @__PURE__*/ _encodeAsync(errors.$ZodRealError);\nexport const _decodeAsync = (_Err) => async (schema, value, _ctx) => {\n return _parseAsync(_Err)(schema, value, _ctx);\n};\nexport const decodeAsync = /* @__PURE__*/ _decodeAsync(errors.$ZodRealError);\nexport const _safeEncode = (_Err) => (schema, value, _ctx) => {\n const ctx = _ctx ? Object.assign(_ctx, { direction: \"backward\" }) : { direction: \"backward\" };\n return _safeParse(_Err)(schema, value, ctx);\n};\nexport const safeEncode = /* @__PURE__*/ _safeEncode(errors.$ZodRealError);\nexport const _safeDecode = (_Err) => (schema, value, _ctx) => {\n return _safeParse(_Err)(schema, value, _ctx);\n};\nexport const safeDecode = /* @__PURE__*/ _safeDecode(errors.$ZodRealError);\nexport const _safeEncodeAsync = (_Err) => async (schema, value, _ctx) => {\n const ctx = _ctx ? Object.assign(_ctx, { direction: \"backward\" }) : { direction: \"backward\" };\n return _safeParseAsync(_Err)(schema, value, ctx);\n};\nexport const safeEncodeAsync = /* @__PURE__*/ _safeEncodeAsync(errors.$ZodRealError);\nexport const _safeDecodeAsync = (_Err) => async (schema, value, _ctx) => {\n return _safeParseAsync(_Err)(schema, value, _ctx);\n};\nexport const safeDecodeAsync = /* @__PURE__*/ _safeDecodeAsync(errors.$ZodRealError);\n","// import { $ZodType } from \"./schemas.js\";\nimport * as core from \"./core.js\";\nimport * as regexes from \"./regexes.js\";\nimport * as util from \"./util.js\";\nexport const $ZodCheck = /*@__PURE__*/ core.$constructor(\"$ZodCheck\", (inst, def) => {\n var _a;\n inst._zod ?? (inst._zod = {});\n inst._zod.def = def;\n (_a = inst._zod).onattach ?? (_a.onattach = []);\n});\nconst numericOriginMap = {\n number: \"number\",\n bigint: \"bigint\",\n object: \"date\",\n};\nexport const $ZodCheckLessThan = /*@__PURE__*/ core.$constructor(\"$ZodCheckLessThan\", (inst, def) => {\n $ZodCheck.init(inst, def);\n const origin = numericOriginMap[typeof def.value];\n inst._zod.onattach.push((inst) => {\n const bag = inst._zod.bag;\n const curr = (def.inclusive ? bag.maximum : bag.exclusiveMaximum) ?? Number.POSITIVE_INFINITY;\n if (def.value < curr) {\n if (def.inclusive)\n bag.maximum = def.value;\n else\n bag.exclusiveMaximum = def.value;\n }\n });\n inst._zod.check = (payload) => {\n if (def.inclusive ? payload.value <= def.value : payload.value < def.value) {\n return;\n }\n payload.issues.push({\n origin,\n code: \"too_big\",\n maximum: typeof def.value === \"object\" ? def.value.getTime() : def.value,\n input: payload.value,\n inclusive: def.inclusive,\n inst,\n continue: !def.abort,\n });\n };\n});\nexport const $ZodCheckGreaterThan = /*@__PURE__*/ core.$constructor(\"$ZodCheckGreaterThan\", (inst, def) => {\n $ZodCheck.init(inst, def);\n const origin = numericOriginMap[typeof def.value];\n inst._zod.onattach.push((inst) => {\n const bag = inst._zod.bag;\n const curr = (def.inclusive ? bag.minimum : bag.exclusiveMinimum) ?? Number.NEGATIVE_INFINITY;\n if (def.value > curr) {\n if (def.inclusive)\n bag.minimum = def.value;\n else\n bag.exclusiveMinimum = def.value;\n }\n });\n inst._zod.check = (payload) => {\n if (def.inclusive ? payload.value >= def.value : payload.value > def.value) {\n return;\n }\n payload.issues.push({\n origin,\n code: \"too_small\",\n minimum: typeof def.value === \"object\" ? def.value.getTime() : def.value,\n input: payload.value,\n inclusive: def.inclusive,\n inst,\n continue: !def.abort,\n });\n };\n});\nexport const $ZodCheckMultipleOf = \n/*@__PURE__*/ core.$constructor(\"$ZodCheckMultipleOf\", (inst, def) => {\n $ZodCheck.init(inst, def);\n inst._zod.onattach.push((inst) => {\n var _a;\n (_a = inst._zod.bag).multipleOf ?? (_a.multipleOf = def.value);\n });\n inst._zod.check = (payload) => {\n if (typeof payload.value !== typeof def.value)\n throw new Error(\"Cannot mix number and bigint in multiple_of check.\");\n const isMultiple = typeof payload.value === \"bigint\"\n ? payload.value % def.value === BigInt(0)\n : util.floatSafeRemainder(payload.value, def.value) === 0;\n if (isMultiple)\n return;\n payload.issues.push({\n origin: typeof payload.value,\n code: \"not_multiple_of\",\n divisor: def.value,\n input: payload.value,\n inst,\n continue: !def.abort,\n });\n };\n});\nexport const $ZodCheckNumberFormat = /*@__PURE__*/ core.$constructor(\"$ZodCheckNumberFormat\", (inst, def) => {\n $ZodCheck.init(inst, def); // no format checks\n def.format = def.format || \"float64\";\n const isInt = def.format?.includes(\"int\");\n const origin = isInt ? \"int\" : \"number\";\n const [minimum, maximum] = util.NUMBER_FORMAT_RANGES[def.format];\n inst._zod.onattach.push((inst) => {\n const bag = inst._zod.bag;\n bag.format = def.format;\n bag.minimum = minimum;\n bag.maximum = maximum;\n if (isInt)\n bag.pattern = regexes.integer;\n });\n inst._zod.check = (payload) => {\n const input = payload.value;\n if (isInt) {\n if (!Number.isInteger(input)) {\n // invalid_format issue\n // payload.issues.push({\n // expected: def.format,\n // format: def.format,\n // code: \"invalid_format\",\n // input,\n // inst,\n // });\n // invalid_type issue\n payload.issues.push({\n expected: origin,\n format: def.format,\n code: \"invalid_type\",\n continue: false,\n input,\n inst,\n });\n return;\n // not_multiple_of issue\n // payload.issues.push({\n // code: \"not_multiple_of\",\n // origin: \"number\",\n // input,\n // inst,\n // divisor: 1,\n // });\n }\n if (!Number.isSafeInteger(input)) {\n if (input > 0) {\n // too_big\n payload.issues.push({\n input,\n code: \"too_big\",\n maximum: Number.MAX_SAFE_INTEGER,\n note: \"Integers must be within the safe integer range.\",\n inst,\n origin,\n inclusive: true,\n continue: !def.abort,\n });\n }\n else {\n // too_small\n payload.issues.push({\n input,\n code: \"too_small\",\n minimum: Number.MIN_SAFE_INTEGER,\n note: \"Integers must be within the safe integer range.\",\n inst,\n origin,\n inclusive: true,\n continue: !def.abort,\n });\n }\n return;\n }\n }\n if (input < minimum) {\n payload.issues.push({\n origin: \"number\",\n input,\n code: \"too_small\",\n minimum,\n inclusive: true,\n inst,\n continue: !def.abort,\n });\n }\n if (input > maximum) {\n payload.issues.push({\n origin: \"number\",\n input,\n code: \"too_big\",\n maximum,\n inclusive: true,\n inst,\n continue: !def.abort,\n });\n }\n };\n});\nexport const $ZodCheckBigIntFormat = /*@__PURE__*/ core.$constructor(\"$ZodCheckBigIntFormat\", (inst, def) => {\n $ZodCheck.init(inst, def); // no format checks\n const [minimum, maximum] = util.BIGINT_FORMAT_RANGES[def.format];\n inst._zod.onattach.push((inst) => {\n const bag = inst._zod.bag;\n bag.format = def.format;\n bag.minimum = minimum;\n bag.maximum = maximum;\n });\n inst._zod.check = (payload) => {\n const input = payload.value;\n if (input < minimum) {\n payload.issues.push({\n origin: \"bigint\",\n input,\n code: \"too_small\",\n minimum: minimum,\n inclusive: true,\n inst,\n continue: !def.abort,\n });\n }\n if (input > maximum) {\n payload.issues.push({\n origin: \"bigint\",\n input,\n code: \"too_big\",\n maximum,\n inclusive: true,\n inst,\n continue: !def.abort,\n });\n }\n };\n});\nexport const $ZodCheckMaxSize = /*@__PURE__*/ core.$constructor(\"$ZodCheckMaxSize\", (inst, def) => {\n var _a;\n $ZodCheck.init(inst, def);\n (_a = inst._zod.def).when ?? (_a.when = (payload) => {\n const val = payload.value;\n return !util.nullish(val) && val.size !== undefined;\n });\n inst._zod.onattach.push((inst) => {\n const curr = (inst._zod.bag.maximum ?? Number.POSITIVE_INFINITY);\n if (def.maximum < curr)\n inst._zod.bag.maximum = def.maximum;\n });\n inst._zod.check = (payload) => {\n const input = payload.value;\n const size = input.size;\n if (size <= def.maximum)\n return;\n payload.issues.push({\n origin: util.getSizableOrigin(input),\n code: \"too_big\",\n maximum: def.maximum,\n inclusive: true,\n input,\n inst,\n continue: !def.abort,\n });\n };\n});\nexport const $ZodCheckMinSize = /*@__PURE__*/ core.$constructor(\"$ZodCheckMinSize\", (inst, def) => {\n var _a;\n $ZodCheck.init(inst, def);\n (_a = inst._zod.def).when ?? (_a.when = (payload) => {\n const val = payload.value;\n return !util.nullish(val) && val.size !== undefined;\n });\n inst._zod.onattach.push((inst) => {\n const curr = (inst._zod.bag.minimum ?? Number.NEGATIVE_INFINITY);\n if (def.minimum > curr)\n inst._zod.bag.minimum = def.minimum;\n });\n inst._zod.check = (payload) => {\n const input = payload.value;\n const size = input.size;\n if (size >= def.minimum)\n return;\n payload.issues.push({\n origin: util.getSizableOrigin(input),\n code: \"too_small\",\n minimum: def.minimum,\n inclusive: true,\n input,\n inst,\n continue: !def.abort,\n });\n };\n});\nexport const $ZodCheckSizeEquals = /*@__PURE__*/ core.$constructor(\"$ZodCheckSizeEquals\", (inst, def) => {\n var _a;\n $ZodCheck.init(inst, def);\n (_a = inst._zod.def).when ?? (_a.when = (payload) => {\n const val = payload.value;\n return !util.nullish(val) && val.size !== undefined;\n });\n inst._zod.onattach.push((inst) => {\n const bag = inst._zod.bag;\n bag.minimum = def.size;\n bag.maximum = def.size;\n bag.size = def.size;\n });\n inst._zod.check = (payload) => {\n const input = payload.value;\n const size = input.size;\n if (size === def.size)\n return;\n const tooBig = size > def.size;\n payload.issues.push({\n origin: util.getSizableOrigin(input),\n ...(tooBig ? { code: \"too_big\", maximum: def.size } : { code: \"too_small\", minimum: def.size }),\n inclusive: true,\n exact: true,\n input: payload.value,\n inst,\n continue: !def.abort,\n });\n };\n});\nexport const $ZodCheckMaxLength = /*@__PURE__*/ core.$constructor(\"$ZodCheckMaxLength\", (inst, def) => {\n var _a;\n $ZodCheck.init(inst, def);\n (_a = inst._zod.def).when ?? (_a.when = (payload) => {\n const val = payload.value;\n return !util.nullish(val) && val.length !== undefined;\n });\n inst._zod.onattach.push((inst) => {\n const curr = (inst._zod.bag.maximum ?? Number.POSITIVE_INFINITY);\n if (def.maximum < curr)\n inst._zod.bag.maximum = def.maximum;\n });\n inst._zod.check = (payload) => {\n const input = payload.value;\n const length = input.length;\n if (length <= def.maximum)\n return;\n const origin = util.getLengthableOrigin(input);\n payload.issues.push({\n origin,\n code: \"too_big\",\n maximum: def.maximum,\n inclusive: true,\n input,\n inst,\n continue: !def.abort,\n });\n };\n});\nexport const $ZodCheckMinLength = /*@__PURE__*/ core.$constructor(\"$ZodCheckMinLength\", (inst, def) => {\n var _a;\n $ZodCheck.init(inst, def);\n (_a = inst._zod.def).when ?? (_a.when = (payload) => {\n const val = payload.value;\n return !util.nullish(val) && val.length !== undefined;\n });\n inst._zod.onattach.push((inst) => {\n const curr = (inst._zod.bag.minimum ?? Number.NEGATIVE_INFINITY);\n if (def.minimum > curr)\n inst._zod.bag.minimum = def.minimum;\n });\n inst._zod.check = (payload) => {\n const input = payload.value;\n const length = input.length;\n if (length >= def.minimum)\n return;\n const origin = util.getLengthableOrigin(input);\n payload.issues.push({\n origin,\n code: \"too_small\",\n minimum: def.minimum,\n inclusive: true,\n input,\n inst,\n continue: !def.abort,\n });\n };\n});\nexport const $ZodCheckLengthEquals = /*@__PURE__*/ core.$constructor(\"$ZodCheckLengthEquals\", (inst, def) => {\n var _a;\n $ZodCheck.init(inst, def);\n (_a = inst._zod.def).when ?? (_a.when = (payload) => {\n const val = payload.value;\n return !util.nullish(val) && val.length !== undefined;\n });\n inst._zod.onattach.push((inst) => {\n const bag = inst._zod.bag;\n bag.minimum = def.length;\n bag.maximum = def.length;\n bag.length = def.length;\n });\n inst._zod.check = (payload) => {\n const input = payload.value;\n const length = input.length;\n if (length === def.length)\n return;\n const origin = util.getLengthableOrigin(input);\n const tooBig = length > def.length;\n payload.issues.push({\n origin,\n ...(tooBig ? { code: \"too_big\", maximum: def.length } : { code: \"too_small\", minimum: def.length }),\n inclusive: true,\n exact: true,\n input: payload.value,\n inst,\n continue: !def.abort,\n });\n };\n});\nexport const $ZodCheckStringFormat = /*@__PURE__*/ core.$constructor(\"$ZodCheckStringFormat\", (inst, def) => {\n var _a, _b;\n $ZodCheck.init(inst, def);\n inst._zod.onattach.push((inst) => {\n const bag = inst._zod.bag;\n bag.format = def.format;\n if (def.pattern) {\n bag.patterns ?? (bag.patterns = new Set());\n bag.patterns.add(def.pattern);\n }\n });\n if (def.pattern)\n (_a = inst._zod).check ?? (_a.check = (payload) => {\n def.pattern.lastIndex = 0;\n if (def.pattern.test(payload.value))\n return;\n payload.issues.push({\n origin: \"string\",\n code: \"invalid_format\",\n format: def.format,\n input: payload.value,\n ...(def.pattern ? { pattern: def.pattern.toString() } : {}),\n inst,\n continue: !def.abort,\n });\n });\n else\n (_b = inst._zod).check ?? (_b.check = () => { });\n});\nexport const $ZodCheckRegex = /*@__PURE__*/ core.$constructor(\"$ZodCheckRegex\", (inst, def) => {\n $ZodCheckStringFormat.init(inst, def);\n inst._zod.check = (payload) => {\n def.pattern.lastIndex = 0;\n if (def.pattern.test(payload.value))\n return;\n payload.issues.push({\n origin: \"string\",\n code: \"invalid_format\",\n format: \"regex\",\n input: payload.value,\n pattern: def.pattern.toString(),\n inst,\n continue: !def.abort,\n });\n };\n});\nexport const $ZodCheckLowerCase = /*@__PURE__*/ core.$constructor(\"$ZodCheckLowerCase\", (inst, def) => {\n def.pattern ?? (def.pattern = regexes.lowercase);\n $ZodCheckStringFormat.init(inst, def);\n});\nexport const $ZodCheckUpperCase = /*@__PURE__*/ core.$constructor(\"$ZodCheckUpperCase\", (inst, def) => {\n def.pattern ?? (def.pattern = regexes.uppercase);\n $ZodCheckStringFormat.init(inst, def);\n});\nexport const $ZodCheckIncludes = /*@__PURE__*/ core.$constructor(\"$ZodCheckIncludes\", (inst, def) => {\n $ZodCheck.init(inst, def);\n const escapedRegex = util.escapeRegex(def.includes);\n const pattern = new RegExp(typeof def.position === \"number\" ? `^.{${def.position}}${escapedRegex}` : escapedRegex);\n def.pattern = pattern;\n inst._zod.onattach.push((inst) => {\n const bag = inst._zod.bag;\n bag.patterns ?? (bag.patterns = new Set());\n bag.patterns.add(pattern);\n });\n inst._zod.check = (payload) => {\n if (payload.value.includes(def.includes, def.position))\n return;\n payload.issues.push({\n origin: \"string\",\n code: \"invalid_format\",\n format: \"includes\",\n includes: def.includes,\n input: payload.value,\n inst,\n continue: !def.abort,\n });\n };\n});\nexport const $ZodCheckStartsWith = /*@__PURE__*/ core.$constructor(\"$ZodCheckStartsWith\", (inst, def) => {\n $ZodCheck.init(inst, def);\n const pattern = new RegExp(`^${util.escapeRegex(def.prefix)}.*`);\n def.pattern ?? (def.pattern = pattern);\n inst._zod.onattach.push((inst) => {\n const bag = inst._zod.bag;\n bag.patterns ?? (bag.patterns = new Set());\n bag.patterns.add(pattern);\n });\n inst._zod.check = (payload) => {\n if (payload.value.startsWith(def.prefix))\n return;\n payload.issues.push({\n origin: \"string\",\n code: \"invalid_format\",\n format: \"starts_with\",\n prefix: def.prefix,\n input: payload.value,\n inst,\n continue: !def.abort,\n });\n };\n});\nexport const $ZodCheckEndsWith = /*@__PURE__*/ core.$constructor(\"$ZodCheckEndsWith\", (inst, def) => {\n $ZodCheck.init(inst, def);\n const pattern = new RegExp(`.*${util.escapeRegex(def.suffix)}$`);\n def.pattern ?? (def.pattern = pattern);\n inst._zod.onattach.push((inst) => {\n const bag = inst._zod.bag;\n bag.patterns ?? (bag.patterns = new Set());\n bag.patterns.add(pattern);\n });\n inst._zod.check = (payload) => {\n if (payload.value.endsWith(def.suffix))\n return;\n payload.issues.push({\n origin: \"string\",\n code: \"invalid_format\",\n format: \"ends_with\",\n suffix: def.suffix,\n input: payload.value,\n inst,\n continue: !def.abort,\n });\n };\n});\n///////////////////////////////////\n///// $ZodCheckProperty /////\n///////////////////////////////////\nfunction handleCheckPropertyResult(result, payload, property) {\n if (result.issues.length) {\n payload.issues.push(...util.prefixIssues(property, result.issues));\n }\n}\nexport const $ZodCheckProperty = /*@__PURE__*/ core.$constructor(\"$ZodCheckProperty\", (inst, def) => {\n $ZodCheck.init(inst, def);\n inst._zod.check = (payload) => {\n const result = def.schema._zod.run({\n value: payload.value[def.property],\n issues: [],\n }, {});\n if (result instanceof Promise) {\n return result.then((result) => handleCheckPropertyResult(result, payload, def.property));\n }\n handleCheckPropertyResult(result, payload, def.property);\n return;\n };\n});\nexport const $ZodCheckMimeType = /*@__PURE__*/ core.$constructor(\"$ZodCheckMimeType\", (inst, def) => {\n $ZodCheck.init(inst, def);\n const mimeSet = new Set(def.mime);\n inst._zod.onattach.push((inst) => {\n inst._zod.bag.mime = def.mime;\n });\n inst._zod.check = (payload) => {\n if (mimeSet.has(payload.value.type))\n return;\n payload.issues.push({\n code: \"invalid_value\",\n values: def.mime,\n input: payload.value.type,\n inst,\n continue: !def.abort,\n });\n };\n});\nexport const $ZodCheckOverwrite = /*@__PURE__*/ core.$constructor(\"$ZodCheckOverwrite\", (inst, def) => {\n $ZodCheck.init(inst, def);\n inst._zod.check = (payload) => {\n payload.value = def.tx(payload.value);\n };\n});\n","export const version = {\n major: 4,\n minor: 3,\n patch: 6,\n};\n","import * as checks from \"./checks.js\";\nimport * as core from \"./core.js\";\nimport { Doc } from \"./doc.js\";\nimport { parse, parseAsync, safeParse, safeParseAsync } from \"./parse.js\";\nimport * as regexes from \"./regexes.js\";\nimport * as util from \"./util.js\";\nimport { version } from \"./versions.js\";\nexport const $ZodType = /*@__PURE__*/ core.$constructor(\"$ZodType\", (inst, def) => {\n var _a;\n inst ?? (inst = {});\n inst._zod.def = def; // set _def property\n inst._zod.bag = inst._zod.bag || {}; // initialize _bag object\n inst._zod.version = version;\n const checks = [...(inst._zod.def.checks ?? [])];\n // if inst is itself a checks.$ZodCheck, run it as a check\n if (inst._zod.traits.has(\"$ZodCheck\")) {\n checks.unshift(inst);\n }\n for (const ch of checks) {\n for (const fn of ch._zod.onattach) {\n fn(inst);\n }\n }\n if (checks.length === 0) {\n // deferred initializer\n // inst._zod.parse is not yet defined\n (_a = inst._zod).deferred ?? (_a.deferred = []);\n inst._zod.deferred?.push(() => {\n inst._zod.run = inst._zod.parse;\n });\n }\n else {\n const runChecks = (payload, checks, ctx) => {\n let isAborted = util.aborted(payload);\n let asyncResult;\n for (const ch of checks) {\n if (ch._zod.def.when) {\n const shouldRun = ch._zod.def.when(payload);\n if (!shouldRun)\n continue;\n }\n else if (isAborted) {\n continue;\n }\n const currLen = payload.issues.length;\n const _ = ch._zod.check(payload);\n if (_ instanceof Promise && ctx?.async === false) {\n throw new core.$ZodAsyncError();\n }\n if (asyncResult || _ instanceof Promise) {\n asyncResult = (asyncResult ?? Promise.resolve()).then(async () => {\n await _;\n const nextLen = payload.issues.length;\n if (nextLen === currLen)\n return;\n if (!isAborted)\n isAborted = util.aborted(payload, currLen);\n });\n }\n else {\n const nextLen = payload.issues.length;\n if (nextLen === currLen)\n continue;\n if (!isAborted)\n isAborted = util.aborted(payload, currLen);\n }\n }\n if (asyncResult) {\n return asyncResult.then(() => {\n return payload;\n });\n }\n return payload;\n };\n const handleCanaryResult = (canary, payload, ctx) => {\n // abort if the canary is aborted\n if (util.aborted(canary)) {\n canary.aborted = true;\n return canary;\n }\n // run checks first, then\n const checkResult = runChecks(payload, checks, ctx);\n if (checkResult instanceof Promise) {\n if (ctx.async === false)\n throw new core.$ZodAsyncError();\n return checkResult.then((checkResult) => inst._zod.parse(checkResult, ctx));\n }\n return inst._zod.parse(checkResult, ctx);\n };\n inst._zod.run = (payload, ctx) => {\n if (ctx.skipChecks) {\n return inst._zod.parse(payload, ctx);\n }\n if (ctx.direction === \"backward\") {\n // run canary\n // initial pass (no checks)\n const canary = inst._zod.parse({ value: payload.value, issues: [] }, { ...ctx, skipChecks: true });\n if (canary instanceof Promise) {\n return canary.then((canary) => {\n return handleCanaryResult(canary, payload, ctx);\n });\n }\n return handleCanaryResult(canary, payload, ctx);\n }\n // forward\n const result = inst._zod.parse(payload, ctx);\n if (result instanceof Promise) {\n if (ctx.async === false)\n throw new core.$ZodAsyncError();\n return result.then((result) => runChecks(result, checks, ctx));\n }\n return runChecks(result, checks, ctx);\n };\n }\n // Lazy initialize ~standard to avoid creating objects for every schema\n util.defineLazy(inst, \"~standard\", () => ({\n validate: (value) => {\n try {\n const r = safeParse(inst, value);\n return r.success ? { value: r.data } : { issues: r.error?.issues };\n }\n catch (_) {\n return safeParseAsync(inst, value).then((r) => (r.success ? { value: r.data } : { issues: r.error?.issues }));\n }\n },\n vendor: \"zod\",\n version: 1,\n }));\n});\nexport { clone } from \"./util.js\";\nexport const $ZodString = /*@__PURE__*/ core.$constructor(\"$ZodString\", (inst, def) => {\n $ZodType.init(inst, def);\n inst._zod.pattern = [...(inst?._zod.bag?.patterns ?? [])].pop() ?? regexes.string(inst._zod.bag);\n inst._zod.parse = (payload, _) => {\n if (def.coerce)\n try {\n payload.value = String(payload.value);\n }\n catch (_) { }\n if (typeof payload.value === \"string\")\n return payload;\n payload.issues.push({\n expected: \"string\",\n code: \"invalid_type\",\n input: payload.value,\n inst,\n });\n return payload;\n };\n});\nexport const $ZodStringFormat = /*@__PURE__*/ core.$constructor(\"$ZodStringFormat\", (inst, def) => {\n // check initialization must come first\n checks.$ZodCheckStringFormat.init(inst, def);\n $ZodString.init(inst, def);\n});\nexport const $ZodGUID = /*@__PURE__*/ core.$constructor(\"$ZodGUID\", (inst, def) => {\n def.pattern ?? (def.pattern = regexes.guid);\n $ZodStringFormat.init(inst, def);\n});\nexport const $ZodUUID = /*@__PURE__*/ core.$constructor(\"$ZodUUID\", (inst, def) => {\n if (def.version) {\n const versionMap = {\n v1: 1,\n v2: 2,\n v3: 3,\n v4: 4,\n v5: 5,\n v6: 6,\n v7: 7,\n v8: 8,\n };\n const v = versionMap[def.version];\n if (v === undefined)\n throw new Error(`Invalid UUID version: \"${def.version}\"`);\n def.pattern ?? (def.pattern = regexes.uuid(v));\n }\n else\n def.pattern ?? (def.pattern = regexes.uuid());\n $ZodStringFormat.init(inst, def);\n});\nexport const $ZodEmail = /*@__PURE__*/ core.$constructor(\"$ZodEmail\", (inst, def) => {\n def.pattern ?? (def.pattern = regexes.email);\n $ZodStringFormat.init(inst, def);\n});\nexport const $ZodURL = /*@__PURE__*/ core.$constructor(\"$ZodURL\", (inst, def) => {\n $ZodStringFormat.init(inst, def);\n inst._zod.check = (payload) => {\n try {\n // Trim whitespace from input\n const trimmed = payload.value.trim();\n // @ts-ignore\n const url = new URL(trimmed);\n if (def.hostname) {\n def.hostname.lastIndex = 0;\n if (!def.hostname.test(url.hostname)) {\n payload.issues.push({\n code: \"invalid_format\",\n format: \"url\",\n note: \"Invalid hostname\",\n pattern: def.hostname.source,\n input: payload.value,\n inst,\n continue: !def.abort,\n });\n }\n }\n if (def.protocol) {\n def.protocol.lastIndex = 0;\n if (!def.protocol.test(url.protocol.endsWith(\":\") ? url.protocol.slice(0, -1) : url.protocol)) {\n payload.issues.push({\n code: \"invalid_format\",\n format: \"url\",\n note: \"Invalid protocol\",\n pattern: def.protocol.source,\n input: payload.value,\n inst,\n continue: !def.abort,\n });\n }\n }\n // Set the output value based on normalize flag\n if (def.normalize) {\n // Use normalized URL\n payload.value = url.href;\n }\n else {\n // Preserve the original input (trimmed)\n payload.value = trimmed;\n }\n return;\n }\n catch (_) {\n payload.issues.push({\n code: \"invalid_format\",\n format: \"url\",\n input: payload.value,\n inst,\n continue: !def.abort,\n });\n }\n };\n});\nexport const $ZodEmoji = /*@__PURE__*/ core.$constructor(\"$ZodEmoji\", (inst, def) => {\n def.pattern ?? (def.pattern = regexes.emoji());\n $ZodStringFormat.init(inst, def);\n});\nexport const $ZodNanoID = /*@__PURE__*/ core.$constructor(\"$ZodNanoID\", (inst, def) => {\n def.pattern ?? (def.pattern = regexes.nanoid);\n $ZodStringFormat.init(inst, def);\n});\nexport const $ZodCUID = /*@__PURE__*/ core.$constructor(\"$ZodCUID\", (inst, def) => {\n def.pattern ?? (def.pattern = regexes.cuid);\n $ZodStringFormat.init(inst, def);\n});\nexport const $ZodCUID2 = /*@__PURE__*/ core.$constructor(\"$ZodCUID2\", (inst, def) => {\n def.pattern ?? (def.pattern = regexes.cuid2);\n $ZodStringFormat.init(inst, def);\n});\nexport const $ZodULID = /*@__PURE__*/ core.$constructor(\"$ZodULID\", (inst, def) => {\n def.pattern ?? (def.pattern = regexes.ulid);\n $ZodStringFormat.init(inst, def);\n});\nexport const $ZodXID = /*@__PURE__*/ core.$constructor(\"$ZodXID\", (inst, def) => {\n def.pattern ?? (def.pattern = regexes.xid);\n $ZodStringFormat.init(inst, def);\n});\nexport const $ZodKSUID = /*@__PURE__*/ core.$constructor(\"$ZodKSUID\", (inst, def) => {\n def.pattern ?? (def.pattern = regexes.ksuid);\n $ZodStringFormat.init(inst, def);\n});\nexport const $ZodISODateTime = /*@__PURE__*/ core.$constructor(\"$ZodISODateTime\", (inst, def) => {\n def.pattern ?? (def.pattern = regexes.datetime(def));\n $ZodStringFormat.init(inst, def);\n});\nexport const $ZodISODate = /*@__PURE__*/ core.$constructor(\"$ZodISODate\", (inst, def) => {\n def.pattern ?? (def.pattern = regexes.date);\n $ZodStringFormat.init(inst, def);\n});\nexport const $ZodISOTime = /*@__PURE__*/ core.$constructor(\"$ZodISOTime\", (inst, def) => {\n def.pattern ?? (def.pattern = regexes.time(def));\n $ZodStringFormat.init(inst, def);\n});\nexport const $ZodISODuration = /*@__PURE__*/ core.$constructor(\"$ZodISODuration\", (inst, def) => {\n def.pattern ?? (def.pattern = regexes.duration);\n $ZodStringFormat.init(inst, def);\n});\nexport const $ZodIPv4 = /*@__PURE__*/ core.$constructor(\"$ZodIPv4\", (inst, def) => {\n def.pattern ?? (def.pattern = regexes.ipv4);\n $ZodStringFormat.init(inst, def);\n inst._zod.bag.format = `ipv4`;\n});\nexport const $ZodIPv6 = /*@__PURE__*/ core.$constructor(\"$ZodIPv6\", (inst, def) => {\n def.pattern ?? (def.pattern = regexes.ipv6);\n $ZodStringFormat.init(inst, def);\n inst._zod.bag.format = `ipv6`;\n inst._zod.check = (payload) => {\n try {\n // @ts-ignore\n new URL(`http://[${payload.value}]`);\n // return;\n }\n catch {\n payload.issues.push({\n code: \"invalid_format\",\n format: \"ipv6\",\n input: payload.value,\n inst,\n continue: !def.abort,\n });\n }\n };\n});\nexport const $ZodMAC = /*@__PURE__*/ core.$constructor(\"$ZodMAC\", (inst, def) => {\n def.pattern ?? (def.pattern = regexes.mac(def.delimiter));\n $ZodStringFormat.init(inst, def);\n inst._zod.bag.format = `mac`;\n});\nexport const $ZodCIDRv4 = /*@__PURE__*/ core.$constructor(\"$ZodCIDRv4\", (inst, def) => {\n def.pattern ?? (def.pattern = regexes.cidrv4);\n $ZodStringFormat.init(inst, def);\n});\nexport const $ZodCIDRv6 = /*@__PURE__*/ core.$constructor(\"$ZodCIDRv6\", (inst, def) => {\n def.pattern ?? (def.pattern = regexes.cidrv6); // not used for validation\n $ZodStringFormat.init(inst, def);\n inst._zod.check = (payload) => {\n const parts = payload.value.split(\"/\");\n try {\n if (parts.length !== 2)\n throw new Error();\n const [address, prefix] = parts;\n if (!prefix)\n throw new Error();\n const prefixNum = Number(prefix);\n if (`${prefixNum}` !== prefix)\n throw new Error();\n if (prefixNum < 0 || prefixNum > 128)\n throw new Error();\n // @ts-ignore\n new URL(`http://[${address}]`);\n }\n catch {\n payload.issues.push({\n code: \"invalid_format\",\n format: \"cidrv6\",\n input: payload.value,\n inst,\n continue: !def.abort,\n });\n }\n };\n});\n////////////////////////////// ZodBase64 //////////////////////////////\nexport function isValidBase64(data) {\n if (data === \"\")\n return true;\n if (data.length % 4 !== 0)\n return false;\n try {\n // @ts-ignore\n atob(data);\n return true;\n }\n catch {\n return false;\n }\n}\nexport const $ZodBase64 = /*@__PURE__*/ core.$constructor(\"$ZodBase64\", (inst, def) => {\n def.pattern ?? (def.pattern = regexes.base64);\n $ZodStringFormat.init(inst, def);\n inst._zod.bag.contentEncoding = \"base64\";\n inst._zod.check = (payload) => {\n if (isValidBase64(payload.value))\n return;\n payload.issues.push({\n code: \"invalid_format\",\n format: \"base64\",\n input: payload.value,\n inst,\n continue: !def.abort,\n });\n };\n});\n////////////////////////////// ZodBase64 //////////////////////////////\nexport function isValidBase64URL(data) {\n if (!regexes.base64url.test(data))\n return false;\n const base64 = data.replace(/[-_]/g, (c) => (c === \"-\" ? \"+\" : \"/\"));\n const padded = base64.padEnd(Math.ceil(base64.length / 4) * 4, \"=\");\n return isValidBase64(padded);\n}\nexport const $ZodBase64URL = /*@__PURE__*/ core.$constructor(\"$ZodBase64URL\", (inst, def) => {\n def.pattern ?? (def.pattern = regexes.base64url);\n $ZodStringFormat.init(inst, def);\n inst._zod.bag.contentEncoding = \"base64url\";\n inst._zod.check = (payload) => {\n if (isValidBase64URL(payload.value))\n return;\n payload.issues.push({\n code: \"invalid_format\",\n format: \"base64url\",\n input: payload.value,\n inst,\n continue: !def.abort,\n });\n };\n});\nexport const $ZodE164 = /*@__PURE__*/ core.$constructor(\"$ZodE164\", (inst, def) => {\n def.pattern ?? (def.pattern = regexes.e164);\n $ZodStringFormat.init(inst, def);\n});\n////////////////////////////// ZodJWT //////////////////////////////\nexport function isValidJWT(token, algorithm = null) {\n try {\n const tokensParts = token.split(\".\");\n if (tokensParts.length !== 3)\n return false;\n const [header] = tokensParts;\n if (!header)\n return false;\n // @ts-ignore\n const parsedHeader = JSON.parse(atob(header));\n if (\"typ\" in parsedHeader && parsedHeader?.typ !== \"JWT\")\n return false;\n if (!parsedHeader.alg)\n return false;\n if (algorithm && (!(\"alg\" in parsedHeader) || parsedHeader.alg !== algorithm))\n return false;\n return true;\n }\n catch {\n return false;\n }\n}\nexport const $ZodJWT = /*@__PURE__*/ core.$constructor(\"$ZodJWT\", (inst, def) => {\n $ZodStringFormat.init(inst, def);\n inst._zod.check = (payload) => {\n if (isValidJWT(payload.value, def.alg))\n return;\n payload.issues.push({\n code: \"invalid_format\",\n format: \"jwt\",\n input: payload.value,\n inst,\n continue: !def.abort,\n });\n };\n});\nexport const $ZodCustomStringFormat = /*@__PURE__*/ core.$constructor(\"$ZodCustomStringFormat\", (inst, def) => {\n $ZodStringFormat.init(inst, def);\n inst._zod.check = (payload) => {\n if (def.fn(payload.value))\n return;\n payload.issues.push({\n code: \"invalid_format\",\n format: def.format,\n input: payload.value,\n inst,\n continue: !def.abort,\n });\n };\n});\nexport const $ZodNumber = /*@__PURE__*/ core.$constructor(\"$ZodNumber\", (inst, def) => {\n $ZodType.init(inst, def);\n inst._zod.pattern = inst._zod.bag.pattern ?? regexes.number;\n inst._zod.parse = (payload, _ctx) => {\n if (def.coerce)\n try {\n payload.value = Number(payload.value);\n }\n catch (_) { }\n const input = payload.value;\n if (typeof input === \"number\" && !Number.isNaN(input) && Number.isFinite(input)) {\n return payload;\n }\n const received = typeof input === \"number\"\n ? Number.isNaN(input)\n ? \"NaN\"\n : !Number.isFinite(input)\n ? \"Infinity\"\n : undefined\n : undefined;\n payload.issues.push({\n expected: \"number\",\n code: \"invalid_type\",\n input,\n inst,\n ...(received ? { received } : {}),\n });\n return payload;\n };\n});\nexport const $ZodNumberFormat = /*@__PURE__*/ core.$constructor(\"$ZodNumberFormat\", (inst, def) => {\n checks.$ZodCheckNumberFormat.init(inst, def);\n $ZodNumber.init(inst, def); // no format checks\n});\nexport const $ZodBoolean = /*@__PURE__*/ core.$constructor(\"$ZodBoolean\", (inst, def) => {\n $ZodType.init(inst, def);\n inst._zod.pattern = regexes.boolean;\n inst._zod.parse = (payload, _ctx) => {\n if (def.coerce)\n try {\n payload.value = Boolean(payload.value);\n }\n catch (_) { }\n const input = payload.value;\n if (typeof input === \"boolean\")\n return payload;\n payload.issues.push({\n expected: \"boolean\",\n code: \"invalid_type\",\n input,\n inst,\n });\n return payload;\n };\n});\nexport const $ZodBigInt = /*@__PURE__*/ core.$constructor(\"$ZodBigInt\", (inst, def) => {\n $ZodType.init(inst, def);\n inst._zod.pattern = regexes.bigint;\n inst._zod.parse = (payload, _ctx) => {\n if (def.coerce)\n try {\n payload.value = BigInt(payload.value);\n }\n catch (_) { }\n if (typeof payload.value === \"bigint\")\n return payload;\n payload.issues.push({\n expected: \"bigint\",\n code: \"invalid_type\",\n input: payload.value,\n inst,\n });\n return payload;\n };\n});\nexport const $ZodBigIntFormat = /*@__PURE__*/ core.$constructor(\"$ZodBigIntFormat\", (inst, def) => {\n checks.$ZodCheckBigIntFormat.init(inst, def);\n $ZodBigInt.init(inst, def); // no format checks\n});\nexport const $ZodSymbol = /*@__PURE__*/ core.$constructor(\"$ZodSymbol\", (inst, def) => {\n $ZodType.init(inst, def);\n inst._zod.parse = (payload, _ctx) => {\n const input = payload.value;\n if (typeof input === \"symbol\")\n return payload;\n payload.issues.push({\n expected: \"symbol\",\n code: \"invalid_type\",\n input,\n inst,\n });\n return payload;\n };\n});\nexport const $ZodUndefined = /*@__PURE__*/ core.$constructor(\"$ZodUndefined\", (inst, def) => {\n $ZodType.init(inst, def);\n inst._zod.pattern = regexes.undefined;\n inst._zod.values = new Set([undefined]);\n inst._zod.optin = \"optional\";\n inst._zod.optout = \"optional\";\n inst._zod.parse = (payload, _ctx) => {\n const input = payload.value;\n if (typeof input === \"undefined\")\n return payload;\n payload.issues.push({\n expected: \"undefined\",\n code: \"invalid_type\",\n input,\n inst,\n });\n return payload;\n };\n});\nexport const $ZodNull = /*@__PURE__*/ core.$constructor(\"$ZodNull\", (inst, def) => {\n $ZodType.init(inst, def);\n inst._zod.pattern = regexes.null;\n inst._zod.values = new Set([null]);\n inst._zod.parse = (payload, _ctx) => {\n const input = payload.value;\n if (input === null)\n return payload;\n payload.issues.push({\n expected: \"null\",\n code: \"invalid_type\",\n input,\n inst,\n });\n return payload;\n };\n});\nexport const $ZodAny = /*@__PURE__*/ core.$constructor(\"$ZodAny\", (inst, def) => {\n $ZodType.init(inst, def);\n inst._zod.parse = (payload) => payload;\n});\nexport const $ZodUnknown = /*@__PURE__*/ core.$constructor(\"$ZodUnknown\", (inst, def) => {\n $ZodType.init(inst, def);\n inst._zod.parse = (payload) => payload;\n});\nexport const $ZodNever = /*@__PURE__*/ core.$constructor(\"$ZodNever\", (inst, def) => {\n $ZodType.init(inst, def);\n inst._zod.parse = (payload, _ctx) => {\n payload.issues.push({\n expected: \"never\",\n code: \"invalid_type\",\n input: payload.value,\n inst,\n });\n return payload;\n };\n});\nexport const $ZodVoid = /*@__PURE__*/ core.$constructor(\"$ZodVoid\", (inst, def) => {\n $ZodType.init(inst, def);\n inst._zod.parse = (payload, _ctx) => {\n const input = payload.value;\n if (typeof input === \"undefined\")\n return payload;\n payload.issues.push({\n expected: \"void\",\n code: \"invalid_type\",\n input,\n inst,\n });\n return payload;\n };\n});\nexport const $ZodDate = /*@__PURE__*/ core.$constructor(\"$ZodDate\", (inst, def) => {\n $ZodType.init(inst, def);\n inst._zod.parse = (payload, _ctx) => {\n if (def.coerce) {\n try {\n payload.value = new Date(payload.value);\n }\n catch (_err) { }\n }\n const input = payload.value;\n const isDate = input instanceof Date;\n const isValidDate = isDate && !Number.isNaN(input.getTime());\n if (isValidDate)\n return payload;\n payload.issues.push({\n expected: \"date\",\n code: \"invalid_type\",\n input,\n ...(isDate ? { received: \"Invalid Date\" } : {}),\n inst,\n });\n return payload;\n };\n});\nfunction handleArrayResult(result, final, index) {\n if (result.issues.length) {\n final.issues.push(...util.prefixIssues(index, result.issues));\n }\n final.value[index] = result.value;\n}\nexport const $ZodArray = /*@__PURE__*/ core.$constructor(\"$ZodArray\", (inst, def) => {\n $ZodType.init(inst, def);\n inst._zod.parse = (payload, ctx) => {\n const input = payload.value;\n if (!Array.isArray(input)) {\n payload.issues.push({\n expected: \"array\",\n code: \"invalid_type\",\n input,\n inst,\n });\n return payload;\n }\n payload.value = Array(input.length);\n const proms = [];\n for (let i = 0; i < input.length; i++) {\n const item = input[i];\n const result = def.element._zod.run({\n value: item,\n issues: [],\n }, ctx);\n if (result instanceof Promise) {\n proms.push(result.then((result) => handleArrayResult(result, payload, i)));\n }\n else {\n handleArrayResult(result, payload, i);\n }\n }\n if (proms.length) {\n return Promise.all(proms).then(() => payload);\n }\n return payload; //handleArrayResultsAsync(parseResults, final);\n };\n});\nfunction handlePropertyResult(result, final, key, input, isOptionalOut) {\n if (result.issues.length) {\n // For optional-out schemas, ignore errors on absent keys\n if (isOptionalOut && !(key in input)) {\n return;\n }\n final.issues.push(...util.prefixIssues(key, result.issues));\n }\n if (result.value === undefined) {\n if (key in input) {\n final.value[key] = undefined;\n }\n }\n else {\n final.value[key] = result.value;\n }\n}\nfunction normalizeDef(def) {\n const keys = Object.keys(def.shape);\n for (const k of keys) {\n if (!def.shape?.[k]?._zod?.traits?.has(\"$ZodType\")) {\n throw new Error(`Invalid element at key \"${k}\": expected a Zod schema`);\n }\n }\n const okeys = util.optionalKeys(def.shape);\n return {\n ...def,\n keys,\n keySet: new Set(keys),\n numKeys: keys.length,\n optionalKeys: new Set(okeys),\n };\n}\nfunction handleCatchall(proms, input, payload, ctx, def, inst) {\n const unrecognized = [];\n // iterate over input keys\n const keySet = def.keySet;\n const _catchall = def.catchall._zod;\n const t = _catchall.def.type;\n const isOptionalOut = _catchall.optout === \"optional\";\n for (const key in input) {\n if (keySet.has(key))\n continue;\n if (t === \"never\") {\n unrecognized.push(key);\n continue;\n }\n const r = _catchall.run({ value: input[key], issues: [] }, ctx);\n if (r instanceof Promise) {\n proms.push(r.then((r) => handlePropertyResult(r, payload, key, input, isOptionalOut)));\n }\n else {\n handlePropertyResult(r, payload, key, input, isOptionalOut);\n }\n }\n if (unrecognized.length) {\n payload.issues.push({\n code: \"unrecognized_keys\",\n keys: unrecognized,\n input,\n inst,\n });\n }\n if (!proms.length)\n return payload;\n return Promise.all(proms).then(() => {\n return payload;\n });\n}\nexport const $ZodObject = /*@__PURE__*/ core.$constructor(\"$ZodObject\", (inst, def) => {\n // requires cast because technically $ZodObject doesn't extend\n $ZodType.init(inst, def);\n // const sh = def.shape;\n const desc = Object.getOwnPropertyDescriptor(def, \"shape\");\n if (!desc?.get) {\n const sh = def.shape;\n Object.defineProperty(def, \"shape\", {\n get: () => {\n const newSh = { ...sh };\n Object.defineProperty(def, \"shape\", {\n value: newSh,\n });\n return newSh;\n },\n });\n }\n const _normalized = util.cached(() => normalizeDef(def));\n util.defineLazy(inst._zod, \"propValues\", () => {\n const shape = def.shape;\n const propValues = {};\n for (const key in shape) {\n const field = shape[key]._zod;\n if (field.values) {\n propValues[key] ?? (propValues[key] = new Set());\n for (const v of field.values)\n propValues[key].add(v);\n }\n }\n return propValues;\n });\n const isObject = util.isObject;\n const catchall = def.catchall;\n let value;\n inst._zod.parse = (payload, ctx) => {\n value ?? (value = _normalized.value);\n const input = payload.value;\n if (!isObject(input)) {\n payload.issues.push({\n expected: \"object\",\n code: \"invalid_type\",\n input,\n inst,\n });\n return payload;\n }\n payload.value = {};\n const proms = [];\n const shape = value.shape;\n for (const key of value.keys) {\n const el = shape[key];\n const isOptionalOut = el._zod.optout === \"optional\";\n const r = el._zod.run({ value: input[key], issues: [] }, ctx);\n if (r instanceof Promise) {\n proms.push(r.then((r) => handlePropertyResult(r, payload, key, input, isOptionalOut)));\n }\n else {\n handlePropertyResult(r, payload, key, input, isOptionalOut);\n }\n }\n if (!catchall) {\n return proms.length ? Promise.all(proms).then(() => payload) : payload;\n }\n return handleCatchall(proms, input, payload, ctx, _normalized.value, inst);\n };\n});\nexport const $ZodObjectJIT = /*@__PURE__*/ core.$constructor(\"$ZodObjectJIT\", (inst, def) => {\n // requires cast because technically $ZodObject doesn't extend\n $ZodObject.init(inst, def);\n const superParse = inst._zod.parse;\n const _normalized = util.cached(() => normalizeDef(def));\n const generateFastpass = (shape) => {\n const doc = new Doc([\"shape\", \"payload\", \"ctx\"]);\n const normalized = _normalized.value;\n const parseStr = (key) => {\n const k = util.esc(key);\n return `shape[${k}]._zod.run({ value: input[${k}], issues: [] }, ctx)`;\n };\n doc.write(`const input = payload.value;`);\n const ids = Object.create(null);\n let counter = 0;\n for (const key of normalized.keys) {\n ids[key] = `key_${counter++}`;\n }\n // A: preserve key order {\n doc.write(`const newResult = {};`);\n for (const key of normalized.keys) {\n const id = ids[key];\n const k = util.esc(key);\n const schema = shape[key];\n const isOptionalOut = schema?._zod?.optout === \"optional\";\n doc.write(`const ${id} = ${parseStr(key)};`);\n if (isOptionalOut) {\n // For optional-out schemas, ignore errors on absent keys\n doc.write(`\n if (${id}.issues.length) {\n if (${k} in input) {\n payload.issues = payload.issues.concat(${id}.issues.map(iss => ({\n ...iss,\n path: iss.path ? [${k}, ...iss.path] : [${k}]\n })));\n }\n }\n \n if (${id}.value === undefined) {\n if (${k} in input) {\n newResult[${k}] = undefined;\n }\n } else {\n newResult[${k}] = ${id}.value;\n }\n \n `);\n }\n else {\n doc.write(`\n if (${id}.issues.length) {\n payload.issues = payload.issues.concat(${id}.issues.map(iss => ({\n ...iss,\n path: iss.path ? [${k}, ...iss.path] : [${k}]\n })));\n }\n \n if (${id}.value === undefined) {\n if (${k} in input) {\n newResult[${k}] = undefined;\n }\n } else {\n newResult[${k}] = ${id}.value;\n }\n \n `);\n }\n }\n doc.write(`payload.value = newResult;`);\n doc.write(`return payload;`);\n const fn = doc.compile();\n return (payload, ctx) => fn(shape, payload, ctx);\n };\n let fastpass;\n const isObject = util.isObject;\n const jit = !core.globalConfig.jitless;\n const allowsEval = util.allowsEval;\n const fastEnabled = jit && allowsEval.value; // && !def.catchall;\n const catchall = def.catchall;\n let value;\n inst._zod.parse = (payload, ctx) => {\n value ?? (value = _normalized.value);\n const input = payload.value;\n if (!isObject(input)) {\n payload.issues.push({\n expected: \"object\",\n code: \"invalid_type\",\n input,\n inst,\n });\n return payload;\n }\n if (jit && fastEnabled && ctx?.async === false && ctx.jitless !== true) {\n // always synchronous\n if (!fastpass)\n fastpass = generateFastpass(def.shape);\n payload = fastpass(payload, ctx);\n if (!catchall)\n return payload;\n return handleCatchall([], input, payload, ctx, value, inst);\n }\n return superParse(payload, ctx);\n };\n});\nfunction handleUnionResults(results, final, inst, ctx) {\n for (const result of results) {\n if (result.issues.length === 0) {\n final.value = result.value;\n return final;\n }\n }\n const nonaborted = results.filter((r) => !util.aborted(r));\n if (nonaborted.length === 1) {\n final.value = nonaborted[0].value;\n return nonaborted[0];\n }\n final.issues.push({\n code: \"invalid_union\",\n input: final.value,\n inst,\n errors: results.map((result) => result.issues.map((iss) => util.finalizeIssue(iss, ctx, core.config()))),\n });\n return final;\n}\nexport const $ZodUnion = /*@__PURE__*/ core.$constructor(\"$ZodUnion\", (inst, def) => {\n $ZodType.init(inst, def);\n util.defineLazy(inst._zod, \"optin\", () => def.options.some((o) => o._zod.optin === \"optional\") ? \"optional\" : undefined);\n util.defineLazy(inst._zod, \"optout\", () => def.options.some((o) => o._zod.optout === \"optional\") ? \"optional\" : undefined);\n util.defineLazy(inst._zod, \"values\", () => {\n if (def.options.every((o) => o._zod.values)) {\n return new Set(def.options.flatMap((option) => Array.from(option._zod.values)));\n }\n return undefined;\n });\n util.defineLazy(inst._zod, \"pattern\", () => {\n if (def.options.every((o) => o._zod.pattern)) {\n const patterns = def.options.map((o) => o._zod.pattern);\n return new RegExp(`^(${patterns.map((p) => util.cleanRegex(p.source)).join(\"|\")})$`);\n }\n return undefined;\n });\n const single = def.options.length === 1;\n const first = def.options[0]._zod.run;\n inst._zod.parse = (payload, ctx) => {\n if (single) {\n return first(payload, ctx);\n }\n let async = false;\n const results = [];\n for (const option of def.options) {\n const result = option._zod.run({\n value: payload.value,\n issues: [],\n }, ctx);\n if (result instanceof Promise) {\n results.push(result);\n async = true;\n }\n else {\n if (result.issues.length === 0)\n return result;\n results.push(result);\n }\n }\n if (!async)\n return handleUnionResults(results, payload, inst, ctx);\n return Promise.all(results).then((results) => {\n return handleUnionResults(results, payload, inst, ctx);\n });\n };\n});\nfunction handleExclusiveUnionResults(results, final, inst, ctx) {\n const successes = results.filter((r) => r.issues.length === 0);\n if (successes.length === 1) {\n final.value = successes[0].value;\n return final;\n }\n if (successes.length === 0) {\n // No matches - same as regular union\n final.issues.push({\n code: \"invalid_union\",\n input: final.value,\n inst,\n errors: results.map((result) => result.issues.map((iss) => util.finalizeIssue(iss, ctx, core.config()))),\n });\n }\n else {\n // Multiple matches - exclusive union failure\n final.issues.push({\n code: \"invalid_union\",\n input: final.value,\n inst,\n errors: [],\n inclusive: false,\n });\n }\n return final;\n}\nexport const $ZodXor = /*@__PURE__*/ core.$constructor(\"$ZodXor\", (inst, def) => {\n $ZodUnion.init(inst, def);\n def.inclusive = false;\n const single = def.options.length === 1;\n const first = def.options[0]._zod.run;\n inst._zod.parse = (payload, ctx) => {\n if (single) {\n return first(payload, ctx);\n }\n let async = false;\n const results = [];\n for (const option of def.options) {\n const result = option._zod.run({\n value: payload.value,\n issues: [],\n }, ctx);\n if (result instanceof Promise) {\n results.push(result);\n async = true;\n }\n else {\n results.push(result);\n }\n }\n if (!async)\n return handleExclusiveUnionResults(results, payload, inst, ctx);\n return Promise.all(results).then((results) => {\n return handleExclusiveUnionResults(results, payload, inst, ctx);\n });\n };\n});\nexport const $ZodDiscriminatedUnion = \n/*@__PURE__*/\ncore.$constructor(\"$ZodDiscriminatedUnion\", (inst, def) => {\n def.inclusive = false;\n $ZodUnion.init(inst, def);\n const _super = inst._zod.parse;\n util.defineLazy(inst._zod, \"propValues\", () => {\n const propValues = {};\n for (const option of def.options) {\n const pv = option._zod.propValues;\n if (!pv || Object.keys(pv).length === 0)\n throw new Error(`Invalid discriminated union option at index \"${def.options.indexOf(option)}\"`);\n for (const [k, v] of Object.entries(pv)) {\n if (!propValues[k])\n propValues[k] = new Set();\n for (const val of v) {\n propValues[k].add(val);\n }\n }\n }\n return propValues;\n });\n const disc = util.cached(() => {\n const opts = def.options;\n const map = new Map();\n for (const o of opts) {\n const values = o._zod.propValues?.[def.discriminator];\n if (!values || values.size === 0)\n throw new Error(`Invalid discriminated union option at index \"${def.options.indexOf(o)}\"`);\n for (const v of values) {\n if (map.has(v)) {\n throw new Error(`Duplicate discriminator value \"${String(v)}\"`);\n }\n map.set(v, o);\n }\n }\n return map;\n });\n inst._zod.parse = (payload, ctx) => {\n const input = payload.value;\n if (!util.isObject(input)) {\n payload.issues.push({\n code: \"invalid_type\",\n expected: \"object\",\n input,\n inst,\n });\n return payload;\n }\n const opt = disc.value.get(input?.[def.discriminator]);\n if (opt) {\n return opt._zod.run(payload, ctx);\n }\n if (def.unionFallback) {\n return _super(payload, ctx);\n }\n // no matching discriminator\n payload.issues.push({\n code: \"invalid_union\",\n errors: [],\n note: \"No matching discriminator\",\n discriminator: def.discriminator,\n input,\n path: [def.discriminator],\n inst,\n });\n return payload;\n };\n});\nexport const $ZodIntersection = /*@__PURE__*/ core.$constructor(\"$ZodIntersection\", (inst, def) => {\n $ZodType.init(inst, def);\n inst._zod.parse = (payload, ctx) => {\n const input = payload.value;\n const left = def.left._zod.run({ value: input, issues: [] }, ctx);\n const right = def.right._zod.run({ value: input, issues: [] }, ctx);\n const async = left instanceof Promise || right instanceof Promise;\n if (async) {\n return Promise.all([left, right]).then(([left, right]) => {\n return handleIntersectionResults(payload, left, right);\n });\n }\n return handleIntersectionResults(payload, left, right);\n };\n});\nfunction mergeValues(a, b) {\n // const aType = parse.t(a);\n // const bType = parse.t(b);\n if (a === b) {\n return { valid: true, data: a };\n }\n if (a instanceof Date && b instanceof Date && +a === +b) {\n return { valid: true, data: a };\n }\n if (util.isPlainObject(a) && util.isPlainObject(b)) {\n const bKeys = Object.keys(b);\n const sharedKeys = Object.keys(a).filter((key) => bKeys.indexOf(key) !== -1);\n const newObj = { ...a, ...b };\n for (const key of sharedKeys) {\n const sharedValue = mergeValues(a[key], b[key]);\n if (!sharedValue.valid) {\n return {\n valid: false,\n mergeErrorPath: [key, ...sharedValue.mergeErrorPath],\n };\n }\n newObj[key] = sharedValue.data;\n }\n return { valid: true, data: newObj };\n }\n if (Array.isArray(a) && Array.isArray(b)) {\n if (a.length !== b.length) {\n return { valid: false, mergeErrorPath: [] };\n }\n const newArray = [];\n for (let index = 0; index < a.length; index++) {\n const itemA = a[index];\n const itemB = b[index];\n const sharedValue = mergeValues(itemA, itemB);\n if (!sharedValue.valid) {\n return {\n valid: false,\n mergeErrorPath: [index, ...sharedValue.mergeErrorPath],\n };\n }\n newArray.push(sharedValue.data);\n }\n return { valid: true, data: newArray };\n }\n return { valid: false, mergeErrorPath: [] };\n}\nfunction handleIntersectionResults(result, left, right) {\n // Track which side(s) report each key as unrecognized\n const unrecKeys = new Map();\n let unrecIssue;\n for (const iss of left.issues) {\n if (iss.code === \"unrecognized_keys\") {\n unrecIssue ?? (unrecIssue = iss);\n for (const k of iss.keys) {\n if (!unrecKeys.has(k))\n unrecKeys.set(k, {});\n unrecKeys.get(k).l = true;\n }\n }\n else {\n result.issues.push(iss);\n }\n }\n for (const iss of right.issues) {\n if (iss.code === \"unrecognized_keys\") {\n for (const k of iss.keys) {\n if (!unrecKeys.has(k))\n unrecKeys.set(k, {});\n unrecKeys.get(k).r = true;\n }\n }\n else {\n result.issues.push(iss);\n }\n }\n // Report only keys unrecognized by BOTH sides\n const bothKeys = [...unrecKeys].filter(([, f]) => f.l && f.r).map(([k]) => k);\n if (bothKeys.length && unrecIssue) {\n result.issues.push({ ...unrecIssue, keys: bothKeys });\n }\n if (util.aborted(result))\n return result;\n const merged = mergeValues(left.value, right.value);\n if (!merged.valid) {\n throw new Error(`Unmergable intersection. Error path: ` + `${JSON.stringify(merged.mergeErrorPath)}`);\n }\n result.value = merged.data;\n return result;\n}\nexport const $ZodTuple = /*@__PURE__*/ core.$constructor(\"$ZodTuple\", (inst, def) => {\n $ZodType.init(inst, def);\n const items = def.items;\n inst._zod.parse = (payload, ctx) => {\n const input = payload.value;\n if (!Array.isArray(input)) {\n payload.issues.push({\n input,\n inst,\n expected: \"tuple\",\n code: \"invalid_type\",\n });\n return payload;\n }\n payload.value = [];\n const proms = [];\n const reversedIndex = [...items].reverse().findIndex((item) => item._zod.optin !== \"optional\");\n const optStart = reversedIndex === -1 ? 0 : items.length - reversedIndex;\n if (!def.rest) {\n const tooBig = input.length > items.length;\n const tooSmall = input.length < optStart - 1;\n if (tooBig || tooSmall) {\n payload.issues.push({\n ...(tooBig\n ? { code: \"too_big\", maximum: items.length, inclusive: true }\n : { code: \"too_small\", minimum: items.length }),\n input,\n inst,\n origin: \"array\",\n });\n return payload;\n }\n }\n let i = -1;\n for (const item of items) {\n i++;\n if (i >= input.length)\n if (i >= optStart)\n continue;\n const result = item._zod.run({\n value: input[i],\n issues: [],\n }, ctx);\n if (result instanceof Promise) {\n proms.push(result.then((result) => handleTupleResult(result, payload, i)));\n }\n else {\n handleTupleResult(result, payload, i);\n }\n }\n if (def.rest) {\n const rest = input.slice(items.length);\n for (const el of rest) {\n i++;\n const result = def.rest._zod.run({\n value: el,\n issues: [],\n }, ctx);\n if (result instanceof Promise) {\n proms.push(result.then((result) => handleTupleResult(result, payload, i)));\n }\n else {\n handleTupleResult(result, payload, i);\n }\n }\n }\n if (proms.length)\n return Promise.all(proms).then(() => payload);\n return payload;\n };\n});\nfunction handleTupleResult(result, final, index) {\n if (result.issues.length) {\n final.issues.push(...util.prefixIssues(index, result.issues));\n }\n final.value[index] = result.value;\n}\nexport const $ZodRecord = /*@__PURE__*/ core.$constructor(\"$ZodRecord\", (inst, def) => {\n $ZodType.init(inst, def);\n inst._zod.parse = (payload, ctx) => {\n const input = payload.value;\n if (!util.isPlainObject(input)) {\n payload.issues.push({\n expected: \"record\",\n code: \"invalid_type\",\n input,\n inst,\n });\n return payload;\n }\n const proms = [];\n const values = def.keyType._zod.values;\n if (values) {\n payload.value = {};\n const recordKeys = new Set();\n for (const key of values) {\n if (typeof key === \"string\" || typeof key === \"number\" || typeof key === \"symbol\") {\n recordKeys.add(typeof key === \"number\" ? key.toString() : key);\n const result = def.valueType._zod.run({ value: input[key], issues: [] }, ctx);\n if (result instanceof Promise) {\n proms.push(result.then((result) => {\n if (result.issues.length) {\n payload.issues.push(...util.prefixIssues(key, result.issues));\n }\n payload.value[key] = result.value;\n }));\n }\n else {\n if (result.issues.length) {\n payload.issues.push(...util.prefixIssues(key, result.issues));\n }\n payload.value[key] = result.value;\n }\n }\n }\n let unrecognized;\n for (const key in input) {\n if (!recordKeys.has(key)) {\n unrecognized = unrecognized ?? [];\n unrecognized.push(key);\n }\n }\n if (unrecognized && unrecognized.length > 0) {\n payload.issues.push({\n code: \"unrecognized_keys\",\n input,\n inst,\n keys: unrecognized,\n });\n }\n }\n else {\n payload.value = {};\n for (const key of Reflect.ownKeys(input)) {\n if (key === \"__proto__\")\n continue;\n let keyResult = def.keyType._zod.run({ value: key, issues: [] }, ctx);\n if (keyResult instanceof Promise) {\n throw new Error(\"Async schemas not supported in object keys currently\");\n }\n // Numeric string fallback: if key is a numeric string and failed, retry with Number(key)\n // This handles z.number(), z.literal([1, 2, 3]), and unions containing numeric literals\n const checkNumericKey = typeof key === \"string\" && regexes.number.test(key) && keyResult.issues.length;\n if (checkNumericKey) {\n const retryResult = def.keyType._zod.run({ value: Number(key), issues: [] }, ctx);\n if (retryResult instanceof Promise) {\n throw new Error(\"Async schemas not supported in object keys currently\");\n }\n if (retryResult.issues.length === 0) {\n keyResult = retryResult;\n }\n }\n if (keyResult.issues.length) {\n if (def.mode === \"loose\") {\n // Pass through unchanged\n payload.value[key] = input[key];\n }\n else {\n // Default \"strict\" behavior: error on invalid key\n payload.issues.push({\n code: \"invalid_key\",\n origin: \"record\",\n issues: keyResult.issues.map((iss) => util.finalizeIssue(iss, ctx, core.config())),\n input: key,\n path: [key],\n inst,\n });\n }\n continue;\n }\n const result = def.valueType._zod.run({ value: input[key], issues: [] }, ctx);\n if (result instanceof Promise) {\n proms.push(result.then((result) => {\n if (result.issues.length) {\n payload.issues.push(...util.prefixIssues(key, result.issues));\n }\n payload.value[keyResult.value] = result.value;\n }));\n }\n else {\n if (result.issues.length) {\n payload.issues.push(...util.prefixIssues(key, result.issues));\n }\n payload.value[keyResult.value] = result.value;\n }\n }\n }\n if (proms.length) {\n return Promise.all(proms).then(() => payload);\n }\n return payload;\n };\n});\nexport const $ZodMap = /*@__PURE__*/ core.$constructor(\"$ZodMap\", (inst, def) => {\n $ZodType.init(inst, def);\n inst._zod.parse = (payload, ctx) => {\n const input = payload.value;\n if (!(input instanceof Map)) {\n payload.issues.push({\n expected: \"map\",\n code: \"invalid_type\",\n input,\n inst,\n });\n return payload;\n }\n const proms = [];\n payload.value = new Map();\n for (const [key, value] of input) {\n const keyResult = def.keyType._zod.run({ value: key, issues: [] }, ctx);\n const valueResult = def.valueType._zod.run({ value: value, issues: [] }, ctx);\n if (keyResult instanceof Promise || valueResult instanceof Promise) {\n proms.push(Promise.all([keyResult, valueResult]).then(([keyResult, valueResult]) => {\n handleMapResult(keyResult, valueResult, payload, key, input, inst, ctx);\n }));\n }\n else {\n handleMapResult(keyResult, valueResult, payload, key, input, inst, ctx);\n }\n }\n if (proms.length)\n return Promise.all(proms).then(() => payload);\n return payload;\n };\n});\nfunction handleMapResult(keyResult, valueResult, final, key, input, inst, ctx) {\n if (keyResult.issues.length) {\n if (util.propertyKeyTypes.has(typeof key)) {\n final.issues.push(...util.prefixIssues(key, keyResult.issues));\n }\n else {\n final.issues.push({\n code: \"invalid_key\",\n origin: \"map\",\n input,\n inst,\n issues: keyResult.issues.map((iss) => util.finalizeIssue(iss, ctx, core.config())),\n });\n }\n }\n if (valueResult.issues.length) {\n if (util.propertyKeyTypes.has(typeof key)) {\n final.issues.push(...util.prefixIssues(key, valueResult.issues));\n }\n else {\n final.issues.push({\n origin: \"map\",\n code: \"invalid_element\",\n input,\n inst,\n key: key,\n issues: valueResult.issues.map((iss) => util.finalizeIssue(iss, ctx, core.config())),\n });\n }\n }\n final.value.set(keyResult.value, valueResult.value);\n}\nexport const $ZodSet = /*@__PURE__*/ core.$constructor(\"$ZodSet\", (inst, def) => {\n $ZodType.init(inst, def);\n inst._zod.parse = (payload, ctx) => {\n const input = payload.value;\n if (!(input instanceof Set)) {\n payload.issues.push({\n input,\n inst,\n expected: \"set\",\n code: \"invalid_type\",\n });\n return payload;\n }\n const proms = [];\n payload.value = new Set();\n for (const item of input) {\n const result = def.valueType._zod.run({ value: item, issues: [] }, ctx);\n if (result instanceof Promise) {\n proms.push(result.then((result) => handleSetResult(result, payload)));\n }\n else\n handleSetResult(result, payload);\n }\n if (proms.length)\n return Promise.all(proms).then(() => payload);\n return payload;\n };\n});\nfunction handleSetResult(result, final) {\n if (result.issues.length) {\n final.issues.push(...result.issues);\n }\n final.value.add(result.value);\n}\nexport const $ZodEnum = /*@__PURE__*/ core.$constructor(\"$ZodEnum\", (inst, def) => {\n $ZodType.init(inst, def);\n const values = util.getEnumValues(def.entries);\n const valuesSet = new Set(values);\n inst._zod.values = valuesSet;\n inst._zod.pattern = new RegExp(`^(${values\n .filter((k) => util.propertyKeyTypes.has(typeof k))\n .map((o) => (typeof o === \"string\" ? util.escapeRegex(o) : o.toString()))\n .join(\"|\")})$`);\n inst._zod.parse = (payload, _ctx) => {\n const input = payload.value;\n if (valuesSet.has(input)) {\n return payload;\n }\n payload.issues.push({\n code: \"invalid_value\",\n values,\n input,\n inst,\n });\n return payload;\n };\n});\nexport const $ZodLiteral = /*@__PURE__*/ core.$constructor(\"$ZodLiteral\", (inst, def) => {\n $ZodType.init(inst, def);\n if (def.values.length === 0) {\n throw new Error(\"Cannot create literal schema with no valid values\");\n }\n const values = new Set(def.values);\n inst._zod.values = values;\n inst._zod.pattern = new RegExp(`^(${def.values\n .map((o) => (typeof o === \"string\" ? util.escapeRegex(o) : o ? util.escapeRegex(o.toString()) : String(o)))\n .join(\"|\")})$`);\n inst._zod.parse = (payload, _ctx) => {\n const input = payload.value;\n if (values.has(input)) {\n return payload;\n }\n payload.issues.push({\n code: \"invalid_value\",\n values: def.values,\n input,\n inst,\n });\n return payload;\n };\n});\nexport const $ZodFile = /*@__PURE__*/ core.$constructor(\"$ZodFile\", (inst, def) => {\n $ZodType.init(inst, def);\n inst._zod.parse = (payload, _ctx) => {\n const input = payload.value;\n // @ts-ignore\n if (input instanceof File)\n return payload;\n payload.issues.push({\n expected: \"file\",\n code: \"invalid_type\",\n input,\n inst,\n });\n return payload;\n };\n});\nexport const $ZodTransform = /*@__PURE__*/ core.$constructor(\"$ZodTransform\", (inst, def) => {\n $ZodType.init(inst, def);\n inst._zod.parse = (payload, ctx) => {\n if (ctx.direction === \"backward\") {\n throw new core.$ZodEncodeError(inst.constructor.name);\n }\n const _out = def.transform(payload.value, payload);\n if (ctx.async) {\n const output = _out instanceof Promise ? _out : Promise.resolve(_out);\n return output.then((output) => {\n payload.value = output;\n return payload;\n });\n }\n if (_out instanceof Promise) {\n throw new core.$ZodAsyncError();\n }\n payload.value = _out;\n return payload;\n };\n});\nfunction handleOptionalResult(result, input) {\n if (result.issues.length && input === undefined) {\n return { issues: [], value: undefined };\n }\n return result;\n}\nexport const $ZodOptional = /*@__PURE__*/ core.$constructor(\"$ZodOptional\", (inst, def) => {\n $ZodType.init(inst, def);\n inst._zod.optin = \"optional\";\n inst._zod.optout = \"optional\";\n util.defineLazy(inst._zod, \"values\", () => {\n return def.innerType._zod.values ? new Set([...def.innerType._zod.values, undefined]) : undefined;\n });\n util.defineLazy(inst._zod, \"pattern\", () => {\n const pattern = def.innerType._zod.pattern;\n return pattern ? new RegExp(`^(${util.cleanRegex(pattern.source)})?$`) : undefined;\n });\n inst._zod.parse = (payload, ctx) => {\n if (def.innerType._zod.optin === \"optional\") {\n const result = def.innerType._zod.run(payload, ctx);\n if (result instanceof Promise)\n return result.then((r) => handleOptionalResult(r, payload.value));\n return handleOptionalResult(result, payload.value);\n }\n if (payload.value === undefined) {\n return payload;\n }\n return def.innerType._zod.run(payload, ctx);\n };\n});\nexport const $ZodExactOptional = /*@__PURE__*/ core.$constructor(\"$ZodExactOptional\", (inst, def) => {\n // Call parent init - inherits optin/optout = \"optional\"\n $ZodOptional.init(inst, def);\n // Override values/pattern to NOT add undefined\n util.defineLazy(inst._zod, \"values\", () => def.innerType._zod.values);\n util.defineLazy(inst._zod, \"pattern\", () => def.innerType._zod.pattern);\n // Override parse to just delegate (no undefined handling)\n inst._zod.parse = (payload, ctx) => {\n return def.innerType._zod.run(payload, ctx);\n };\n});\nexport const $ZodNullable = /*@__PURE__*/ core.$constructor(\"$ZodNullable\", (inst, def) => {\n $ZodType.init(inst, def);\n util.defineLazy(inst._zod, \"optin\", () => def.innerType._zod.optin);\n util.defineLazy(inst._zod, \"optout\", () => def.innerType._zod.optout);\n util.defineLazy(inst._zod, \"pattern\", () => {\n const pattern = def.innerType._zod.pattern;\n return pattern ? new RegExp(`^(${util.cleanRegex(pattern.source)}|null)$`) : undefined;\n });\n util.defineLazy(inst._zod, \"values\", () => {\n return def.innerType._zod.values ? new Set([...def.innerType._zod.values, null]) : undefined;\n });\n inst._zod.parse = (payload, ctx) => {\n // Forward direction (decode): allow null to pass through\n if (payload.value === null)\n return payload;\n return def.innerType._zod.run(payload, ctx);\n };\n});\nexport const $ZodDefault = /*@__PURE__*/ core.$constructor(\"$ZodDefault\", (inst, def) => {\n $ZodType.init(inst, def);\n // inst._zod.qin = \"true\";\n inst._zod.optin = \"optional\";\n util.defineLazy(inst._zod, \"values\", () => def.innerType._zod.values);\n inst._zod.parse = (payload, ctx) => {\n if (ctx.direction === \"backward\") {\n return def.innerType._zod.run(payload, ctx);\n }\n // Forward direction (decode): apply defaults for undefined input\n if (payload.value === undefined) {\n payload.value = def.defaultValue;\n /**\n * $ZodDefault returns the default value immediately in forward direction.\n * It doesn't pass the default value into the validator (\"prefault\"). There's no reason to pass the default value through validation. The validity of the default is enforced by TypeScript statically. Otherwise, it's the responsibility of the user to ensure the default is valid. In the case of pipes with divergent in/out types, you can specify the default on the `in` schema of your ZodPipe to set a \"prefault\" for the pipe. */\n return payload;\n }\n // Forward direction: continue with default handling\n const result = def.innerType._zod.run(payload, ctx);\n if (result instanceof Promise) {\n return result.then((result) => handleDefaultResult(result, def));\n }\n return handleDefaultResult(result, def);\n };\n});\nfunction handleDefaultResult(payload, def) {\n if (payload.value === undefined) {\n payload.value = def.defaultValue;\n }\n return payload;\n}\nexport const $ZodPrefault = /*@__PURE__*/ core.$constructor(\"$ZodPrefault\", (inst, def) => {\n $ZodType.init(inst, def);\n inst._zod.optin = \"optional\";\n util.defineLazy(inst._zod, \"values\", () => def.innerType._zod.values);\n inst._zod.parse = (payload, ctx) => {\n if (ctx.direction === \"backward\") {\n return def.innerType._zod.run(payload, ctx);\n }\n // Forward direction (decode): apply prefault for undefined input\n if (payload.value === undefined) {\n payload.value = def.defaultValue;\n }\n return def.innerType._zod.run(payload, ctx);\n };\n});\nexport const $ZodNonOptional = /*@__PURE__*/ core.$constructor(\"$ZodNonOptional\", (inst, def) => {\n $ZodType.init(inst, def);\n util.defineLazy(inst._zod, \"values\", () => {\n const v = def.innerType._zod.values;\n return v ? new Set([...v].filter((x) => x !== undefined)) : undefined;\n });\n inst._zod.parse = (payload, ctx) => {\n const result = def.innerType._zod.run(payload, ctx);\n if (result instanceof Promise) {\n return result.then((result) => handleNonOptionalResult(result, inst));\n }\n return handleNonOptionalResult(result, inst);\n };\n});\nfunction handleNonOptionalResult(payload, inst) {\n if (!payload.issues.length && payload.value === undefined) {\n payload.issues.push({\n code: \"invalid_type\",\n expected: \"nonoptional\",\n input: payload.value,\n inst,\n });\n }\n return payload;\n}\nexport const $ZodSuccess = /*@__PURE__*/ core.$constructor(\"$ZodSuccess\", (inst, def) => {\n $ZodType.init(inst, def);\n inst._zod.parse = (payload, ctx) => {\n if (ctx.direction === \"backward\") {\n throw new core.$ZodEncodeError(\"ZodSuccess\");\n }\n const result = def.innerType._zod.run(payload, ctx);\n if (result instanceof Promise) {\n return result.then((result) => {\n payload.value = result.issues.length === 0;\n return payload;\n });\n }\n payload.value = result.issues.length === 0;\n return payload;\n };\n});\nexport const $ZodCatch = /*@__PURE__*/ core.$constructor(\"$ZodCatch\", (inst, def) => {\n $ZodType.init(inst, def);\n util.defineLazy(inst._zod, \"optin\", () => def.innerType._zod.optin);\n util.defineLazy(inst._zod, \"optout\", () => def.innerType._zod.optout);\n util.defineLazy(inst._zod, \"values\", () => def.innerType._zod.values);\n inst._zod.parse = (payload, ctx) => {\n if (ctx.direction === \"backward\") {\n return def.innerType._zod.run(payload, ctx);\n }\n // Forward direction (decode): apply catch logic\n const result = def.innerType._zod.run(payload, ctx);\n if (result instanceof Promise) {\n return result.then((result) => {\n payload.value = result.value;\n if (result.issues.length) {\n payload.value = def.catchValue({\n ...payload,\n error: {\n issues: result.issues.map((iss) => util.finalizeIssue(iss, ctx, core.config())),\n },\n input: payload.value,\n });\n payload.issues = [];\n }\n return payload;\n });\n }\n payload.value = result.value;\n if (result.issues.length) {\n payload.value = def.catchValue({\n ...payload,\n error: {\n issues: result.issues.map((iss) => util.finalizeIssue(iss, ctx, core.config())),\n },\n input: payload.value,\n });\n payload.issues = [];\n }\n return payload;\n };\n});\nexport const $ZodNaN = /*@__PURE__*/ core.$constructor(\"$ZodNaN\", (inst, def) => {\n $ZodType.init(inst, def);\n inst._zod.parse = (payload, _ctx) => {\n if (typeof payload.value !== \"number\" || !Number.isNaN(payload.value)) {\n payload.issues.push({\n input: payload.value,\n inst,\n expected: \"nan\",\n code: \"invalid_type\",\n });\n return payload;\n }\n return payload;\n };\n});\nexport const $ZodPipe = /*@__PURE__*/ core.$constructor(\"$ZodPipe\", (inst, def) => {\n $ZodType.init(inst, def);\n util.defineLazy(inst._zod, \"values\", () => def.in._zod.values);\n util.defineLazy(inst._zod, \"optin\", () => def.in._zod.optin);\n util.defineLazy(inst._zod, \"optout\", () => def.out._zod.optout);\n util.defineLazy(inst._zod, \"propValues\", () => def.in._zod.propValues);\n inst._zod.parse = (payload, ctx) => {\n if (ctx.direction === \"backward\") {\n const right = def.out._zod.run(payload, ctx);\n if (right instanceof Promise) {\n return right.then((right) => handlePipeResult(right, def.in, ctx));\n }\n return handlePipeResult(right, def.in, ctx);\n }\n const left = def.in._zod.run(payload, ctx);\n if (left instanceof Promise) {\n return left.then((left) => handlePipeResult(left, def.out, ctx));\n }\n return handlePipeResult(left, def.out, ctx);\n };\n});\nfunction handlePipeResult(left, next, ctx) {\n if (left.issues.length) {\n // prevent further checks\n left.aborted = true;\n return left;\n }\n return next._zod.run({ value: left.value, issues: left.issues }, ctx);\n}\nexport const $ZodCodec = /*@__PURE__*/ core.$constructor(\"$ZodCodec\", (inst, def) => {\n $ZodType.init(inst, def);\n util.defineLazy(inst._zod, \"values\", () => def.in._zod.values);\n util.defineLazy(inst._zod, \"optin\", () => def.in._zod.optin);\n util.defineLazy(inst._zod, \"optout\", () => def.out._zod.optout);\n util.defineLazy(inst._zod, \"propValues\", () => def.in._zod.propValues);\n inst._zod.parse = (payload, ctx) => {\n const direction = ctx.direction || \"forward\";\n if (direction === \"forward\") {\n const left = def.in._zod.run(payload, ctx);\n if (left instanceof Promise) {\n return left.then((left) => handleCodecAResult(left, def, ctx));\n }\n return handleCodecAResult(left, def, ctx);\n }\n else {\n const right = def.out._zod.run(payload, ctx);\n if (right instanceof Promise) {\n return right.then((right) => handleCodecAResult(right, def, ctx));\n }\n return handleCodecAResult(right, def, ctx);\n }\n };\n});\nfunction handleCodecAResult(result, def, ctx) {\n if (result.issues.length) {\n // prevent further checks\n result.aborted = true;\n return result;\n }\n const direction = ctx.direction || \"forward\";\n if (direction === \"forward\") {\n const transformed = def.transform(result.value, result);\n if (transformed instanceof Promise) {\n return transformed.then((value) => handleCodecTxResult(result, value, def.out, ctx));\n }\n return handleCodecTxResult(result, transformed, def.out, ctx);\n }\n else {\n const transformed = def.reverseTransform(result.value, result);\n if (transformed instanceof Promise) {\n return transformed.then((value) => handleCodecTxResult(result, value, def.in, ctx));\n }\n return handleCodecTxResult(result, transformed, def.in, ctx);\n }\n}\nfunction handleCodecTxResult(left, value, nextSchema, ctx) {\n // Check if transform added any issues\n if (left.issues.length) {\n left.aborted = true;\n return left;\n }\n return nextSchema._zod.run({ value, issues: left.issues }, ctx);\n}\nexport const $ZodReadonly = /*@__PURE__*/ core.$constructor(\"$ZodReadonly\", (inst, def) => {\n $ZodType.init(inst, def);\n util.defineLazy(inst._zod, \"propValues\", () => def.innerType._zod.propValues);\n util.defineLazy(inst._zod, \"values\", () => def.innerType._zod.values);\n util.defineLazy(inst._zod, \"optin\", () => def.innerType?._zod?.optin);\n util.defineLazy(inst._zod, \"optout\", () => def.innerType?._zod?.optout);\n inst._zod.parse = (payload, ctx) => {\n if (ctx.direction === \"backward\") {\n return def.innerType._zod.run(payload, ctx);\n }\n const result = def.innerType._zod.run(payload, ctx);\n if (result instanceof Promise) {\n return result.then(handleReadonlyResult);\n }\n return handleReadonlyResult(result);\n };\n});\nfunction handleReadonlyResult(payload) {\n payload.value = Object.freeze(payload.value);\n return payload;\n}\nexport const $ZodTemplateLiteral = /*@__PURE__*/ core.$constructor(\"$ZodTemplateLiteral\", (inst, def) => {\n $ZodType.init(inst, def);\n const regexParts = [];\n for (const part of def.parts) {\n if (typeof part === \"object\" && part !== null) {\n // is Zod schema\n if (!part._zod.pattern) {\n // if (!source)\n throw new Error(`Invalid template literal part, no pattern found: ${[...part._zod.traits].shift()}`);\n }\n const source = part._zod.pattern instanceof RegExp ? part._zod.pattern.source : part._zod.pattern;\n if (!source)\n throw new Error(`Invalid template literal part: ${part._zod.traits}`);\n const start = source.startsWith(\"^\") ? 1 : 0;\n const end = source.endsWith(\"$\") ? source.length - 1 : source.length;\n regexParts.push(source.slice(start, end));\n }\n else if (part === null || util.primitiveTypes.has(typeof part)) {\n regexParts.push(util.escapeRegex(`${part}`));\n }\n else {\n throw new Error(`Invalid template literal part: ${part}`);\n }\n }\n inst._zod.pattern = new RegExp(`^${regexParts.join(\"\")}$`);\n inst._zod.parse = (payload, _ctx) => {\n if (typeof payload.value !== \"string\") {\n payload.issues.push({\n input: payload.value,\n inst,\n expected: \"string\",\n code: \"invalid_type\",\n });\n return payload;\n }\n inst._zod.pattern.lastIndex = 0;\n if (!inst._zod.pattern.test(payload.value)) {\n payload.issues.push({\n input: payload.value,\n inst,\n code: \"invalid_format\",\n format: def.format ?? \"template_literal\",\n pattern: inst._zod.pattern.source,\n });\n return payload;\n }\n return payload;\n };\n});\nexport const $ZodFunction = /*@__PURE__*/ core.$constructor(\"$ZodFunction\", (inst, def) => {\n $ZodType.init(inst, def);\n inst._def = def;\n inst._zod.def = def;\n inst.implement = (func) => {\n if (typeof func !== \"function\") {\n throw new Error(\"implement() must be called with a function\");\n }\n return function (...args) {\n const parsedArgs = inst._def.input ? parse(inst._def.input, args) : args;\n const result = Reflect.apply(func, this, parsedArgs);\n if (inst._def.output) {\n return parse(inst._def.output, result);\n }\n return result;\n };\n };\n inst.implementAsync = (func) => {\n if (typeof func !== \"function\") {\n throw new Error(\"implementAsync() must be called with a function\");\n }\n return async function (...args) {\n const parsedArgs = inst._def.input ? await parseAsync(inst._def.input, args) : args;\n const result = await Reflect.apply(func, this, parsedArgs);\n if (inst._def.output) {\n return await parseAsync(inst._def.output, result);\n }\n return result;\n };\n };\n inst._zod.parse = (payload, _ctx) => {\n if (typeof payload.value !== \"function\") {\n payload.issues.push({\n code: \"invalid_type\",\n expected: \"function\",\n input: payload.value,\n inst,\n });\n return payload;\n }\n // Check if output is a promise type to determine if we should use async implementation\n const hasPromiseOutput = inst._def.output && inst._def.output._zod.def.type === \"promise\";\n if (hasPromiseOutput) {\n payload.value = inst.implementAsync(payload.value);\n }\n else {\n payload.value = inst.implement(payload.value);\n }\n return payload;\n };\n inst.input = (...args) => {\n const F = inst.constructor;\n if (Array.isArray(args[0])) {\n return new F({\n type: \"function\",\n input: new $ZodTuple({\n type: \"tuple\",\n items: args[0],\n rest: args[1],\n }),\n output: inst._def.output,\n });\n }\n return new F({\n type: \"function\",\n input: args[0],\n output: inst._def.output,\n });\n };\n inst.output = (output) => {\n const F = inst.constructor;\n return new F({\n type: \"function\",\n input: inst._def.input,\n output,\n });\n };\n return inst;\n});\nexport const $ZodPromise = /*@__PURE__*/ core.$constructor(\"$ZodPromise\", (inst, def) => {\n $ZodType.init(inst, def);\n inst._zod.parse = (payload, ctx) => {\n return Promise.resolve(payload.value).then((inner) => def.innerType._zod.run({ value: inner, issues: [] }, ctx));\n };\n});\nexport const $ZodLazy = /*@__PURE__*/ core.$constructor(\"$ZodLazy\", (inst, def) => {\n $ZodType.init(inst, def);\n // let _innerType!: any;\n // util.defineLazy(def, \"getter\", () => {\n // if (!_innerType) {\n // _innerType = def.getter();\n // }\n // return () => _innerType;\n // });\n util.defineLazy(inst._zod, \"innerType\", () => def.getter());\n util.defineLazy(inst._zod, \"pattern\", () => inst._zod.innerType?._zod?.pattern);\n util.defineLazy(inst._zod, \"propValues\", () => inst._zod.innerType?._zod?.propValues);\n util.defineLazy(inst._zod, \"optin\", () => inst._zod.innerType?._zod?.optin ?? undefined);\n util.defineLazy(inst._zod, \"optout\", () => inst._zod.innerType?._zod?.optout ?? undefined);\n inst._zod.parse = (payload, ctx) => {\n const inner = inst._zod.innerType;\n return inner._zod.run(payload, ctx);\n };\n});\nexport const $ZodCustom = /*@__PURE__*/ core.$constructor(\"$ZodCustom\", (inst, def) => {\n checks.$ZodCheck.init(inst, def);\n $ZodType.init(inst, def);\n inst._zod.parse = (payload, _) => {\n return payload;\n };\n inst._zod.check = (payload) => {\n const input = payload.value;\n const r = def.fn(input);\n if (r instanceof Promise) {\n return r.then((r) => handleRefineResult(r, payload, input, inst));\n }\n handleRefineResult(r, payload, input, inst);\n return;\n };\n});\nfunction handleRefineResult(result, payload, input, inst) {\n if (!result) {\n const _iss = {\n code: \"custom\",\n input,\n inst, // incorporates params.error into issue reporting\n path: [...(inst._zod.def.path ?? [])], // incorporates params.error into issue reporting\n continue: !inst._zod.def.abort,\n // params: inst._zod.def.params,\n };\n if (inst._zod.def.params)\n _iss.params = inst._zod.def.params;\n payload.issues.push(util.issue(_iss));\n }\n}\n","var _a;\nexport const $output = Symbol(\"ZodOutput\");\nexport const $input = Symbol(\"ZodInput\");\nexport class $ZodRegistry {\n constructor() {\n this._map = new WeakMap();\n this._idmap = new Map();\n }\n add(schema, ..._meta) {\n const meta = _meta[0];\n this._map.set(schema, meta);\n if (meta && typeof meta === \"object\" && \"id\" in meta) {\n this._idmap.set(meta.id, schema);\n }\n return this;\n }\n clear() {\n this._map = new WeakMap();\n this._idmap = new Map();\n return this;\n }\n remove(schema) {\n const meta = this._map.get(schema);\n if (meta && typeof meta === \"object\" && \"id\" in meta) {\n this._idmap.delete(meta.id);\n }\n this._map.delete(schema);\n return this;\n }\n get(schema) {\n // return this._map.get(schema) as any;\n // inherit metadata\n const p = schema._zod.parent;\n if (p) {\n const pm = { ...(this.get(p) ?? {}) };\n delete pm.id; // do not inherit id\n const f = { ...pm, ...this._map.get(schema) };\n return Object.keys(f).length ? f : undefined;\n }\n return this._map.get(schema);\n }\n has(schema) {\n return this._map.has(schema);\n }\n}\n// registries\nexport function registry() {\n return new $ZodRegistry();\n}\n(_a = globalThis).__zod_globalRegistry ?? (_a.__zod_globalRegistry = registry());\nexport const globalRegistry = globalThis.__zod_globalRegistry;\n","import * as checks from \"./checks.js\";\nimport * as registries from \"./registries.js\";\nimport * as schemas from \"./schemas.js\";\nimport * as util from \"./util.js\";\n// @__NO_SIDE_EFFECTS__\nexport function _string(Class, params) {\n return new Class({\n type: \"string\",\n ...util.normalizeParams(params),\n });\n}\n// @__NO_SIDE_EFFECTS__\nexport function _coercedString(Class, params) {\n return new Class({\n type: \"string\",\n coerce: true,\n ...util.normalizeParams(params),\n });\n}\n// @__NO_SIDE_EFFECTS__\nexport function _email(Class, params) {\n return new Class({\n type: \"string\",\n format: \"email\",\n check: \"string_format\",\n abort: false,\n ...util.normalizeParams(params),\n });\n}\n// @__NO_SIDE_EFFECTS__\nexport function _guid(Class, params) {\n return new Class({\n type: \"string\",\n format: \"guid\",\n check: \"string_format\",\n abort: false,\n ...util.normalizeParams(params),\n });\n}\n// @__NO_SIDE_EFFECTS__\nexport function _uuid(Class, params) {\n return new Class({\n type: \"string\",\n format: \"uuid\",\n check: \"string_format\",\n abort: false,\n ...util.normalizeParams(params),\n });\n}\n// @__NO_SIDE_EFFECTS__\nexport function _uuidv4(Class, params) {\n return new Class({\n type: \"string\",\n format: \"uuid\",\n check: \"string_format\",\n abort: false,\n version: \"v4\",\n ...util.normalizeParams(params),\n });\n}\n// @__NO_SIDE_EFFECTS__\nexport function _uuidv6(Class, params) {\n return new Class({\n type: \"string\",\n format: \"uuid\",\n check: \"string_format\",\n abort: false,\n version: \"v6\",\n ...util.normalizeParams(params),\n });\n}\n// @__NO_SIDE_EFFECTS__\nexport function _uuidv7(Class, params) {\n return new Class({\n type: \"string\",\n format: \"uuid\",\n check: \"string_format\",\n abort: false,\n version: \"v7\",\n ...util.normalizeParams(params),\n });\n}\n// @__NO_SIDE_EFFECTS__\nexport function _url(Class, params) {\n return new Class({\n type: \"string\",\n format: \"url\",\n check: \"string_format\",\n abort: false,\n ...util.normalizeParams(params),\n });\n}\n// @__NO_SIDE_EFFECTS__\nexport function _emoji(Class, params) {\n return new Class({\n type: \"string\",\n format: \"emoji\",\n check: \"string_format\",\n abort: false,\n ...util.normalizeParams(params),\n });\n}\n// @__NO_SIDE_EFFECTS__\nexport function _nanoid(Class, params) {\n return new Class({\n type: \"string\",\n format: \"nanoid\",\n check: \"string_format\",\n abort: false,\n ...util.normalizeParams(params),\n });\n}\n// @__NO_SIDE_EFFECTS__\nexport function _cuid(Class, params) {\n return new Class({\n type: \"string\",\n format: \"cuid\",\n check: \"string_format\",\n abort: false,\n ...util.normalizeParams(params),\n });\n}\n// @__NO_SIDE_EFFECTS__\nexport function _cuid2(Class, params) {\n return new Class({\n type: \"string\",\n format: \"cuid2\",\n check: \"string_format\",\n abort: false,\n ...util.normalizeParams(params),\n });\n}\n// @__NO_SIDE_EFFECTS__\nexport function _ulid(Class, params) {\n return new Class({\n type: \"string\",\n format: \"ulid\",\n check: \"string_format\",\n abort: false,\n ...util.normalizeParams(params),\n });\n}\n// @__NO_SIDE_EFFECTS__\nexport function _xid(Class, params) {\n return new Class({\n type: \"string\",\n format: \"xid\",\n check: \"string_format\",\n abort: false,\n ...util.normalizeParams(params),\n });\n}\n// @__NO_SIDE_EFFECTS__\nexport function _ksuid(Class, params) {\n return new Class({\n type: \"string\",\n format: \"ksuid\",\n check: \"string_format\",\n abort: false,\n ...util.normalizeParams(params),\n });\n}\n// @__NO_SIDE_EFFECTS__\nexport function _ipv4(Class, params) {\n return new Class({\n type: \"string\",\n format: \"ipv4\",\n check: \"string_format\",\n abort: false,\n ...util.normalizeParams(params),\n });\n}\n// @__NO_SIDE_EFFECTS__\nexport function _ipv6(Class, params) {\n return new Class({\n type: \"string\",\n format: \"ipv6\",\n check: \"string_format\",\n abort: false,\n ...util.normalizeParams(params),\n });\n}\n// @__NO_SIDE_EFFECTS__\nexport function _mac(Class, params) {\n return new Class({\n type: \"string\",\n format: \"mac\",\n check: \"string_format\",\n abort: false,\n ...util.normalizeParams(params),\n });\n}\n// @__NO_SIDE_EFFECTS__\nexport function _cidrv4(Class, params) {\n return new Class({\n type: \"string\",\n format: \"cidrv4\",\n check: \"string_format\",\n abort: false,\n ...util.normalizeParams(params),\n });\n}\n// @__NO_SIDE_EFFECTS__\nexport function _cidrv6(Class, params) {\n return new Class({\n type: \"string\",\n format: \"cidrv6\",\n check: \"string_format\",\n abort: false,\n ...util.normalizeParams(params),\n });\n}\n// @__NO_SIDE_EFFECTS__\nexport function _base64(Class, params) {\n return new Class({\n type: \"string\",\n format: \"base64\",\n check: \"string_format\",\n abort: false,\n ...util.normalizeParams(params),\n });\n}\n// @__NO_SIDE_EFFECTS__\nexport function _base64url(Class, params) {\n return new Class({\n type: \"string\",\n format: \"base64url\",\n check: \"string_format\",\n abort: false,\n ...util.normalizeParams(params),\n });\n}\n// @__NO_SIDE_EFFECTS__\nexport function _e164(Class, params) {\n return new Class({\n type: \"string\",\n format: \"e164\",\n check: \"string_format\",\n abort: false,\n ...util.normalizeParams(params),\n });\n}\n// @__NO_SIDE_EFFECTS__\nexport function _jwt(Class, params) {\n return new Class({\n type: \"string\",\n format: \"jwt\",\n check: \"string_format\",\n abort: false,\n ...util.normalizeParams(params),\n });\n}\nexport const TimePrecision = {\n Any: null,\n Minute: -1,\n Second: 0,\n Millisecond: 3,\n Microsecond: 6,\n};\n// @__NO_SIDE_EFFECTS__\nexport function _isoDateTime(Class, params) {\n return new Class({\n type: \"string\",\n format: \"datetime\",\n check: \"string_format\",\n offset: false,\n local: false,\n precision: null,\n ...util.normalizeParams(params),\n });\n}\n// @__NO_SIDE_EFFECTS__\nexport function _isoDate(Class, params) {\n return new Class({\n type: \"string\",\n format: \"date\",\n check: \"string_format\",\n ...util.normalizeParams(params),\n });\n}\n// @__NO_SIDE_EFFECTS__\nexport function _isoTime(Class, params) {\n return new Class({\n type: \"string\",\n format: \"time\",\n check: \"string_format\",\n precision: null,\n ...util.normalizeParams(params),\n });\n}\n// @__NO_SIDE_EFFECTS__\nexport function _isoDuration(Class, params) {\n return new Class({\n type: \"string\",\n format: \"duration\",\n check: \"string_format\",\n ...util.normalizeParams(params),\n });\n}\n// @__NO_SIDE_EFFECTS__\nexport function _number(Class, params) {\n return new Class({\n type: \"number\",\n checks: [],\n ...util.normalizeParams(params),\n });\n}\n// @__NO_SIDE_EFFECTS__\nexport function _coercedNumber(Class, params) {\n return new Class({\n type: \"number\",\n coerce: true,\n checks: [],\n ...util.normalizeParams(params),\n });\n}\n// @__NO_SIDE_EFFECTS__\nexport function _int(Class, params) {\n return new Class({\n type: \"number\",\n check: \"number_format\",\n abort: false,\n format: \"safeint\",\n ...util.normalizeParams(params),\n });\n}\n// @__NO_SIDE_EFFECTS__\nexport function _float32(Class, params) {\n return new Class({\n type: \"number\",\n check: \"number_format\",\n abort: false,\n format: \"float32\",\n ...util.normalizeParams(params),\n });\n}\n// @__NO_SIDE_EFFECTS__\nexport function _float64(Class, params) {\n return new Class({\n type: \"number\",\n check: \"number_format\",\n abort: false,\n format: \"float64\",\n ...util.normalizeParams(params),\n });\n}\n// @__NO_SIDE_EFFECTS__\nexport function _int32(Class, params) {\n return new Class({\n type: \"number\",\n check: \"number_format\",\n abort: false,\n format: \"int32\",\n ...util.normalizeParams(params),\n });\n}\n// @__NO_SIDE_EFFECTS__\nexport function _uint32(Class, params) {\n return new Class({\n type: \"number\",\n check: \"number_format\",\n abort: false,\n format: \"uint32\",\n ...util.normalizeParams(params),\n });\n}\n// @__NO_SIDE_EFFECTS__\nexport function _boolean(Class, params) {\n return new Class({\n type: \"boolean\",\n ...util.normalizeParams(params),\n });\n}\n// @__NO_SIDE_EFFECTS__\nexport function _coercedBoolean(Class, params) {\n return new Class({\n type: \"boolean\",\n coerce: true,\n ...util.normalizeParams(params),\n });\n}\n// @__NO_SIDE_EFFECTS__\nexport function _bigint(Class, params) {\n return new Class({\n type: \"bigint\",\n ...util.normalizeParams(params),\n });\n}\n// @__NO_SIDE_EFFECTS__\nexport function _coercedBigint(Class, params) {\n return new Class({\n type: \"bigint\",\n coerce: true,\n ...util.normalizeParams(params),\n });\n}\n// @__NO_SIDE_EFFECTS__\nexport function _int64(Class, params) {\n return new Class({\n type: \"bigint\",\n check: \"bigint_format\",\n abort: false,\n format: \"int64\",\n ...util.normalizeParams(params),\n });\n}\n// @__NO_SIDE_EFFECTS__\nexport function _uint64(Class, params) {\n return new Class({\n type: \"bigint\",\n check: \"bigint_format\",\n abort: false,\n format: \"uint64\",\n ...util.normalizeParams(params),\n });\n}\n// @__NO_SIDE_EFFECTS__\nexport function _symbol(Class, params) {\n return new Class({\n type: \"symbol\",\n ...util.normalizeParams(params),\n });\n}\n// @__NO_SIDE_EFFECTS__\nexport function _undefined(Class, params) {\n return new Class({\n type: \"undefined\",\n ...util.normalizeParams(params),\n });\n}\n// @__NO_SIDE_EFFECTS__\nexport function _null(Class, params) {\n return new Class({\n type: \"null\",\n ...util.normalizeParams(params),\n });\n}\n// @__NO_SIDE_EFFECTS__\nexport function _any(Class) {\n return new Class({\n type: \"any\",\n });\n}\n// @__NO_SIDE_EFFECTS__\nexport function _unknown(Class) {\n return new Class({\n type: \"unknown\",\n });\n}\n// @__NO_SIDE_EFFECTS__\nexport function _never(Class, params) {\n return new Class({\n type: \"never\",\n ...util.normalizeParams(params),\n });\n}\n// @__NO_SIDE_EFFECTS__\nexport function _void(Class, params) {\n return new Class({\n type: \"void\",\n ...util.normalizeParams(params),\n });\n}\n// @__NO_SIDE_EFFECTS__\nexport function _date(Class, params) {\n return new Class({\n type: \"date\",\n ...util.normalizeParams(params),\n });\n}\n// @__NO_SIDE_EFFECTS__\nexport function _coercedDate(Class, params) {\n return new Class({\n type: \"date\",\n coerce: true,\n ...util.normalizeParams(params),\n });\n}\n// @__NO_SIDE_EFFECTS__\nexport function _nan(Class, params) {\n return new Class({\n type: \"nan\",\n ...util.normalizeParams(params),\n });\n}\n// @__NO_SIDE_EFFECTS__\nexport function _lt(value, params) {\n return new checks.$ZodCheckLessThan({\n check: \"less_than\",\n ...util.normalizeParams(params),\n value,\n inclusive: false,\n });\n}\n// @__NO_SIDE_EFFECTS__\nexport function _lte(value, params) {\n return new checks.$ZodCheckLessThan({\n check: \"less_than\",\n ...util.normalizeParams(params),\n value,\n inclusive: true,\n });\n}\nexport { \n/** @deprecated Use `z.lte()` instead. */\n_lte as _max, };\n// @__NO_SIDE_EFFECTS__\nexport function _gt(value, params) {\n return new checks.$ZodCheckGreaterThan({\n check: \"greater_than\",\n ...util.normalizeParams(params),\n value,\n inclusive: false,\n });\n}\n// @__NO_SIDE_EFFECTS__\nexport function _gte(value, params) {\n return new checks.$ZodCheckGreaterThan({\n check: \"greater_than\",\n ...util.normalizeParams(params),\n value,\n inclusive: true,\n });\n}\nexport { \n/** @deprecated Use `z.gte()` instead. */\n_gte as _min, };\n// @__NO_SIDE_EFFECTS__\nexport function _positive(params) {\n return _gt(0, params);\n}\n// negative\n// @__NO_SIDE_EFFECTS__\nexport function _negative(params) {\n return _lt(0, params);\n}\n// nonpositive\n// @__NO_SIDE_EFFECTS__\nexport function _nonpositive(params) {\n return _lte(0, params);\n}\n// nonnegative\n// @__NO_SIDE_EFFECTS__\nexport function _nonnegative(params) {\n return _gte(0, params);\n}\n// @__NO_SIDE_EFFECTS__\nexport function _multipleOf(value, params) {\n return new checks.$ZodCheckMultipleOf({\n check: \"multiple_of\",\n ...util.normalizeParams(params),\n value,\n });\n}\n// @__NO_SIDE_EFFECTS__\nexport function _maxSize(maximum, params) {\n return new checks.$ZodCheckMaxSize({\n check: \"max_size\",\n ...util.normalizeParams(params),\n maximum,\n });\n}\n// @__NO_SIDE_EFFECTS__\nexport function _minSize(minimum, params) {\n return new checks.$ZodCheckMinSize({\n check: \"min_size\",\n ...util.normalizeParams(params),\n minimum,\n });\n}\n// @__NO_SIDE_EFFECTS__\nexport function _size(size, params) {\n return new checks.$ZodCheckSizeEquals({\n check: \"size_equals\",\n ...util.normalizeParams(params),\n size,\n });\n}\n// @__NO_SIDE_EFFECTS__\nexport function _maxLength(maximum, params) {\n const ch = new checks.$ZodCheckMaxLength({\n check: \"max_length\",\n ...util.normalizeParams(params),\n maximum,\n });\n return ch;\n}\n// @__NO_SIDE_EFFECTS__\nexport function _minLength(minimum, params) {\n return new checks.$ZodCheckMinLength({\n check: \"min_length\",\n ...util.normalizeParams(params),\n minimum,\n });\n}\n// @__NO_SIDE_EFFECTS__\nexport function _length(length, params) {\n return new checks.$ZodCheckLengthEquals({\n check: \"length_equals\",\n ...util.normalizeParams(params),\n length,\n });\n}\n// @__NO_SIDE_EFFECTS__\nexport function _regex(pattern, params) {\n return new checks.$ZodCheckRegex({\n check: \"string_format\",\n format: \"regex\",\n ...util.normalizeParams(params),\n pattern,\n });\n}\n// @__NO_SIDE_EFFECTS__\nexport function _lowercase(params) {\n return new checks.$ZodCheckLowerCase({\n check: \"string_format\",\n format: \"lowercase\",\n ...util.normalizeParams(params),\n });\n}\n// @__NO_SIDE_EFFECTS__\nexport function _uppercase(params) {\n return new checks.$ZodCheckUpperCase({\n check: \"string_format\",\n format: \"uppercase\",\n ...util.normalizeParams(params),\n });\n}\n// @__NO_SIDE_EFFECTS__\nexport function _includes(includes, params) {\n return new checks.$ZodCheckIncludes({\n check: \"string_format\",\n format: \"includes\",\n ...util.normalizeParams(params),\n includes,\n });\n}\n// @__NO_SIDE_EFFECTS__\nexport function _startsWith(prefix, params) {\n return new checks.$ZodCheckStartsWith({\n check: \"string_format\",\n format: \"starts_with\",\n ...util.normalizeParams(params),\n prefix,\n });\n}\n// @__NO_SIDE_EFFECTS__\nexport function _endsWith(suffix, params) {\n return new checks.$ZodCheckEndsWith({\n check: \"string_format\",\n format: \"ends_with\",\n ...util.normalizeParams(params),\n suffix,\n });\n}\n// @__NO_SIDE_EFFECTS__\nexport function _property(property, schema, params) {\n return new checks.$ZodCheckProperty({\n check: \"property\",\n property,\n schema,\n ...util.normalizeParams(params),\n });\n}\n// @__NO_SIDE_EFFECTS__\nexport function _mime(types, params) {\n return new checks.$ZodCheckMimeType({\n check: \"mime_type\",\n mime: types,\n ...util.normalizeParams(params),\n });\n}\n// @__NO_SIDE_EFFECTS__\nexport function _overwrite(tx) {\n return new checks.$ZodCheckOverwrite({\n check: \"overwrite\",\n tx,\n });\n}\n// normalize\n// @__NO_SIDE_EFFECTS__\nexport function _normalize(form) {\n return _overwrite((input) => input.normalize(form));\n}\n// trim\n// @__NO_SIDE_EFFECTS__\nexport function _trim() {\n return _overwrite((input) => input.trim());\n}\n// toLowerCase\n// @__NO_SIDE_EFFECTS__\nexport function _toLowerCase() {\n return _overwrite((input) => input.toLowerCase());\n}\n// toUpperCase\n// @__NO_SIDE_EFFECTS__\nexport function _toUpperCase() {\n return _overwrite((input) => input.toUpperCase());\n}\n// slugify\n// @__NO_SIDE_EFFECTS__\nexport function _slugify() {\n return _overwrite((input) => util.slugify(input));\n}\n// @__NO_SIDE_EFFECTS__\nexport function _array(Class, element, params) {\n return new Class({\n type: \"array\",\n element,\n // get element() {\n // return element;\n // },\n ...util.normalizeParams(params),\n });\n}\n// @__NO_SIDE_EFFECTS__\nexport function _union(Class, options, params) {\n return new Class({\n type: \"union\",\n options,\n ...util.normalizeParams(params),\n });\n}\nexport function _xor(Class, options, params) {\n return new Class({\n type: \"union\",\n options,\n inclusive: false,\n ...util.normalizeParams(params),\n });\n}\n// @__NO_SIDE_EFFECTS__\nexport function _discriminatedUnion(Class, discriminator, options, params) {\n return new Class({\n type: \"union\",\n options,\n discriminator,\n ...util.normalizeParams(params),\n });\n}\n// @__NO_SIDE_EFFECTS__\nexport function _intersection(Class, left, right) {\n return new Class({\n type: \"intersection\",\n left,\n right,\n });\n}\n// export function _tuple(\n// Class: util.SchemaClass<schemas.$ZodTuple>,\n// items: [],\n// params?: string | $ZodTupleParams\n// ): schemas.$ZodTuple<[], null>;\n// @__NO_SIDE_EFFECTS__\nexport function _tuple(Class, items, _paramsOrRest, _params) {\n const hasRest = _paramsOrRest instanceof schemas.$ZodType;\n const params = hasRest ? _params : _paramsOrRest;\n const rest = hasRest ? _paramsOrRest : null;\n return new Class({\n type: \"tuple\",\n items,\n rest,\n ...util.normalizeParams(params),\n });\n}\n// @__NO_SIDE_EFFECTS__\nexport function _record(Class, keyType, valueType, params) {\n return new Class({\n type: \"record\",\n keyType,\n valueType,\n ...util.normalizeParams(params),\n });\n}\n// @__NO_SIDE_EFFECTS__\nexport function _map(Class, keyType, valueType, params) {\n return new Class({\n type: \"map\",\n keyType,\n valueType,\n ...util.normalizeParams(params),\n });\n}\n// @__NO_SIDE_EFFECTS__\nexport function _set(Class, valueType, params) {\n return new Class({\n type: \"set\",\n valueType,\n ...util.normalizeParams(params),\n });\n}\n// @__NO_SIDE_EFFECTS__\nexport function _enum(Class, values, params) {\n const entries = Array.isArray(values) ? Object.fromEntries(values.map((v) => [v, v])) : values;\n // if (Array.isArray(values)) {\n // for (const value of values) {\n // entries[value] = value;\n // }\n // } else {\n // Object.assign(entries, values);\n // }\n // const entries: util.EnumLike = {};\n // for (const val of values) {\n // entries[val] = val;\n // }\n return new Class({\n type: \"enum\",\n entries,\n ...util.normalizeParams(params),\n });\n}\n// @__NO_SIDE_EFFECTS__\n/** @deprecated This API has been merged into `z.enum()`. Use `z.enum()` instead.\n *\n * ```ts\n * enum Colors { red, green, blue }\n * z.enum(Colors);\n * ```\n */\nexport function _nativeEnum(Class, entries, params) {\n return new Class({\n type: \"enum\",\n entries,\n ...util.normalizeParams(params),\n });\n}\n// @__NO_SIDE_EFFECTS__\nexport function _literal(Class, value, params) {\n return new Class({\n type: \"literal\",\n values: Array.isArray(value) ? value : [value],\n ...util.normalizeParams(params),\n });\n}\n// @__NO_SIDE_EFFECTS__\nexport function _file(Class, params) {\n return new Class({\n type: \"file\",\n ...util.normalizeParams(params),\n });\n}\n// @__NO_SIDE_EFFECTS__\nexport function _transform(Class, fn) {\n return new Class({\n type: \"transform\",\n transform: fn,\n });\n}\n// @__NO_SIDE_EFFECTS__\nexport function _optional(Class, innerType) {\n return new Class({\n type: \"optional\",\n innerType,\n });\n}\n// @__NO_SIDE_EFFECTS__\nexport function _nullable(Class, innerType) {\n return new Class({\n type: \"nullable\",\n innerType,\n });\n}\n// @__NO_SIDE_EFFECTS__\nexport function _default(Class, innerType, defaultValue) {\n return new Class({\n type: \"default\",\n innerType,\n get defaultValue() {\n return typeof defaultValue === \"function\" ? defaultValue() : util.shallowClone(defaultValue);\n },\n });\n}\n// @__NO_SIDE_EFFECTS__\nexport function _nonoptional(Class, innerType, params) {\n return new Class({\n type: \"nonoptional\",\n innerType,\n ...util.normalizeParams(params),\n });\n}\n// @__NO_SIDE_EFFECTS__\nexport function _success(Class, innerType) {\n return new Class({\n type: \"success\",\n innerType,\n });\n}\n// @__NO_SIDE_EFFECTS__\nexport function _catch(Class, innerType, catchValue) {\n return new Class({\n type: \"catch\",\n innerType,\n catchValue: (typeof catchValue === \"function\" ? catchValue : () => catchValue),\n });\n}\n// @__NO_SIDE_EFFECTS__\nexport function _pipe(Class, in_, out) {\n return new Class({\n type: \"pipe\",\n in: in_,\n out,\n });\n}\n// @__NO_SIDE_EFFECTS__\nexport function _readonly(Class, innerType) {\n return new Class({\n type: \"readonly\",\n innerType,\n });\n}\n// @__NO_SIDE_EFFECTS__\nexport function _templateLiteral(Class, parts, params) {\n return new Class({\n type: \"template_literal\",\n parts,\n ...util.normalizeParams(params),\n });\n}\n// @__NO_SIDE_EFFECTS__\nexport function _lazy(Class, getter) {\n return new Class({\n type: \"lazy\",\n getter,\n });\n}\n// @__NO_SIDE_EFFECTS__\nexport function _promise(Class, innerType) {\n return new Class({\n type: \"promise\",\n innerType,\n });\n}\n// @__NO_SIDE_EFFECTS__\nexport function _custom(Class, fn, _params) {\n const norm = util.normalizeParams(_params);\n norm.abort ?? (norm.abort = true); // default to abort:false\n const schema = new Class({\n type: \"custom\",\n check: \"custom\",\n fn: fn,\n ...norm,\n });\n return schema;\n}\n// same as _custom but defaults to abort:false\n// @__NO_SIDE_EFFECTS__\nexport function _refine(Class, fn, _params) {\n const schema = new Class({\n type: \"custom\",\n check: \"custom\",\n fn: fn,\n ...util.normalizeParams(_params),\n });\n return schema;\n}\n// @__NO_SIDE_EFFECTS__\nexport function _superRefine(fn) {\n const ch = _check((payload) => {\n payload.addIssue = (issue) => {\n if (typeof issue === \"string\") {\n payload.issues.push(util.issue(issue, payload.value, ch._zod.def));\n }\n else {\n // for Zod 3 backwards compatibility\n const _issue = issue;\n if (_issue.fatal)\n _issue.continue = false;\n _issue.code ?? (_issue.code = \"custom\");\n _issue.input ?? (_issue.input = payload.value);\n _issue.inst ?? (_issue.inst = ch);\n _issue.continue ?? (_issue.continue = !ch._zod.def.abort); // abort is always undefined, so this is always true...\n payload.issues.push(util.issue(_issue));\n }\n };\n return fn(payload.value, payload);\n });\n return ch;\n}\n// @__NO_SIDE_EFFECTS__\nexport function _check(fn, params) {\n const ch = new checks.$ZodCheck({\n check: \"custom\",\n ...util.normalizeParams(params),\n });\n ch._zod.check = fn;\n return ch;\n}\n// @__NO_SIDE_EFFECTS__\nexport function describe(description) {\n const ch = new checks.$ZodCheck({ check: \"describe\" });\n ch._zod.onattach = [\n (inst) => {\n const existing = registries.globalRegistry.get(inst) ?? {};\n registries.globalRegistry.add(inst, { ...existing, description });\n },\n ];\n ch._zod.check = () => { }; // no-op check\n return ch;\n}\n// @__NO_SIDE_EFFECTS__\nexport function meta(metadata) {\n const ch = new checks.$ZodCheck({ check: \"meta\" });\n ch._zod.onattach = [\n (inst) => {\n const existing = registries.globalRegistry.get(inst) ?? {};\n registries.globalRegistry.add(inst, { ...existing, ...metadata });\n },\n ];\n ch._zod.check = () => { }; // no-op check\n return ch;\n}\n// @__NO_SIDE_EFFECTS__\nexport function _stringbool(Classes, _params) {\n const params = util.normalizeParams(_params);\n let truthyArray = params.truthy ?? [\"true\", \"1\", \"yes\", \"on\", \"y\", \"enabled\"];\n let falsyArray = params.falsy ?? [\"false\", \"0\", \"no\", \"off\", \"n\", \"disabled\"];\n if (params.case !== \"sensitive\") {\n truthyArray = truthyArray.map((v) => (typeof v === \"string\" ? v.toLowerCase() : v));\n falsyArray = falsyArray.map((v) => (typeof v === \"string\" ? v.toLowerCase() : v));\n }\n const truthySet = new Set(truthyArray);\n const falsySet = new Set(falsyArray);\n const _Codec = Classes.Codec ?? schemas.$ZodCodec;\n const _Boolean = Classes.Boolean ?? schemas.$ZodBoolean;\n const _String = Classes.String ?? schemas.$ZodString;\n const stringSchema = new _String({ type: \"string\", error: params.error });\n const booleanSchema = new _Boolean({ type: \"boolean\", error: params.error });\n const codec = new _Codec({\n type: \"pipe\",\n in: stringSchema,\n out: booleanSchema,\n transform: ((input, payload) => {\n let data = input;\n if (params.case !== \"sensitive\")\n data = data.toLowerCase();\n if (truthySet.has(data)) {\n return true;\n }\n else if (falsySet.has(data)) {\n return false;\n }\n else {\n payload.issues.push({\n code: \"invalid_value\",\n expected: \"stringbool\",\n values: [...truthySet, ...falsySet],\n input: payload.value,\n inst: codec,\n continue: false,\n });\n return {};\n }\n }),\n reverseTransform: ((input, _payload) => {\n if (input === true) {\n return truthyArray[0] || \"true\";\n }\n else {\n return falsyArray[0] || \"false\";\n }\n }),\n error: params.error,\n });\n return codec;\n}\n// @__NO_SIDE_EFFECTS__\nexport function _stringFormat(Class, format, fnOrRegex, _params = {}) {\n const params = util.normalizeParams(_params);\n const def = {\n ...util.normalizeParams(_params),\n check: \"string_format\",\n type: \"string\",\n format,\n fn: typeof fnOrRegex === \"function\" ? fnOrRegex : (val) => fnOrRegex.test(val),\n ...params,\n };\n if (fnOrRegex instanceof RegExp) {\n def.pattern = fnOrRegex;\n }\n const inst = new Class(def);\n return inst;\n}\n","import { globalRegistry } from \"./registries.js\";\n// function initializeContext<T extends schemas.$ZodType>(inputs: JSONSchemaGeneratorParams<T>): ToJSONSchemaContext<T> {\n// return {\n// processor: inputs.processor,\n// metadataRegistry: inputs.metadata ?? globalRegistry,\n// target: inputs.target ?? \"draft-2020-12\",\n// unrepresentable: inputs.unrepresentable ?? \"throw\",\n// };\n// }\nexport function initializeContext(params) {\n // Normalize target: convert old non-hyphenated versions to hyphenated versions\n let target = params?.target ?? \"draft-2020-12\";\n if (target === \"draft-4\")\n target = \"draft-04\";\n if (target === \"draft-7\")\n target = \"draft-07\";\n return {\n processors: params.processors ?? {},\n metadataRegistry: params?.metadata ?? globalRegistry,\n target,\n unrepresentable: params?.unrepresentable ?? \"throw\",\n override: params?.override ?? (() => { }),\n io: params?.io ?? \"output\",\n counter: 0,\n seen: new Map(),\n cycles: params?.cycles ?? \"ref\",\n reused: params?.reused ?? \"inline\",\n external: params?.external ?? undefined,\n };\n}\nexport function process(schema, ctx, _params = { path: [], schemaPath: [] }) {\n var _a;\n const def = schema._zod.def;\n // check for schema in seens\n const seen = ctx.seen.get(schema);\n if (seen) {\n seen.count++;\n // check if cycle\n const isCycle = _params.schemaPath.includes(schema);\n if (isCycle) {\n seen.cycle = _params.path;\n }\n return seen.schema;\n }\n // initialize\n const result = { schema: {}, count: 1, cycle: undefined, path: _params.path };\n ctx.seen.set(schema, result);\n // custom method overrides default behavior\n const overrideSchema = schema._zod.toJSONSchema?.();\n if (overrideSchema) {\n result.schema = overrideSchema;\n }\n else {\n const params = {\n ..._params,\n schemaPath: [..._params.schemaPath, schema],\n path: _params.path,\n };\n if (schema._zod.processJSONSchema) {\n schema._zod.processJSONSchema(ctx, result.schema, params);\n }\n else {\n const _json = result.schema;\n const processor = ctx.processors[def.type];\n if (!processor) {\n throw new Error(`[toJSONSchema]: Non-representable type encountered: ${def.type}`);\n }\n processor(schema, ctx, _json, params);\n }\n const parent = schema._zod.parent;\n if (parent) {\n // Also set ref if processor didn't (for inheritance)\n if (!result.ref)\n result.ref = parent;\n process(parent, ctx, params);\n ctx.seen.get(parent).isParent = true;\n }\n }\n // metadata\n const meta = ctx.metadataRegistry.get(schema);\n if (meta)\n Object.assign(result.schema, meta);\n if (ctx.io === \"input\" && isTransforming(schema)) {\n // examples/defaults only apply to output type of pipe\n delete result.schema.examples;\n delete result.schema.default;\n }\n // set prefault as default\n if (ctx.io === \"input\" && result.schema._prefault)\n (_a = result.schema).default ?? (_a.default = result.schema._prefault);\n delete result.schema._prefault;\n // pulling fresh from ctx.seen in case it was overwritten\n const _result = ctx.seen.get(schema);\n return _result.schema;\n}\nexport function extractDefs(ctx, schema\n// params: EmitParams\n) {\n // iterate over seen map;\n const root = ctx.seen.get(schema);\n if (!root)\n throw new Error(\"Unprocessed schema. This is a bug in Zod.\");\n // Track ids to detect duplicates across different schemas\n const idToSchema = new Map();\n for (const entry of ctx.seen.entries()) {\n const id = ctx.metadataRegistry.get(entry[0])?.id;\n if (id) {\n const existing = idToSchema.get(id);\n if (existing && existing !== entry[0]) {\n throw new Error(`Duplicate schema id \"${id}\" detected during JSON Schema conversion. Two different schemas cannot share the same id when converted together.`);\n }\n idToSchema.set(id, entry[0]);\n }\n }\n // returns a ref to the schema\n // defId will be empty if the ref points to an external schema (or #)\n const makeURI = (entry) => {\n // comparing the seen objects because sometimes\n // multiple schemas map to the same seen object.\n // e.g. lazy\n // external is configured\n const defsSegment = ctx.target === \"draft-2020-12\" ? \"$defs\" : \"definitions\";\n if (ctx.external) {\n const externalId = ctx.external.registry.get(entry[0])?.id; // ?? \"__shared\";// `__schema${ctx.counter++}`;\n // check if schema is in the external registry\n const uriGenerator = ctx.external.uri ?? ((id) => id);\n if (externalId) {\n return { ref: uriGenerator(externalId) };\n }\n // otherwise, add to __shared\n const id = entry[1].defId ?? entry[1].schema.id ?? `schema${ctx.counter++}`;\n entry[1].defId = id; // set defId so it will be reused if needed\n return { defId: id, ref: `${uriGenerator(\"__shared\")}#/${defsSegment}/${id}` };\n }\n if (entry[1] === root) {\n return { ref: \"#\" };\n }\n // self-contained schema\n const uriPrefix = `#`;\n const defUriPrefix = `${uriPrefix}/${defsSegment}/`;\n const defId = entry[1].schema.id ?? `__schema${ctx.counter++}`;\n return { defId, ref: defUriPrefix + defId };\n };\n // stored cached version in `def` property\n // remove all properties, set $ref\n const extractToDef = (entry) => {\n // if the schema is already a reference, do not extract it\n if (entry[1].schema.$ref) {\n return;\n }\n const seen = entry[1];\n const { ref, defId } = makeURI(entry);\n seen.def = { ...seen.schema };\n // defId won't be set if the schema is a reference to an external schema\n // or if the schema is the root schema\n if (defId)\n seen.defId = defId;\n // wipe away all properties except $ref\n const schema = seen.schema;\n for (const key in schema) {\n delete schema[key];\n }\n schema.$ref = ref;\n };\n // throw on cycles\n // break cycles\n if (ctx.cycles === \"throw\") {\n for (const entry of ctx.seen.entries()) {\n const seen = entry[1];\n if (seen.cycle) {\n throw new Error(\"Cycle detected: \" +\n `#/${seen.cycle?.join(\"/\")}/<root>` +\n '\\n\\nSet the `cycles` parameter to `\"ref\"` to resolve cyclical schemas with defs.');\n }\n }\n }\n // extract schemas into $defs\n for (const entry of ctx.seen.entries()) {\n const seen = entry[1];\n // convert root schema to # $ref\n if (schema === entry[0]) {\n extractToDef(entry); // this has special handling for the root schema\n continue;\n }\n // extract schemas that are in the external registry\n if (ctx.external) {\n const ext = ctx.external.registry.get(entry[0])?.id;\n if (schema !== entry[0] && ext) {\n extractToDef(entry);\n continue;\n }\n }\n // extract schemas with `id` meta\n const id = ctx.metadataRegistry.get(entry[0])?.id;\n if (id) {\n extractToDef(entry);\n continue;\n }\n // break cycles\n if (seen.cycle) {\n // any\n extractToDef(entry);\n continue;\n }\n // extract reused schemas\n if (seen.count > 1) {\n if (ctx.reused === \"ref\") {\n extractToDef(entry);\n // biome-ignore lint:\n continue;\n }\n }\n }\n}\nexport function finalize(ctx, schema) {\n const root = ctx.seen.get(schema);\n if (!root)\n throw new Error(\"Unprocessed schema. This is a bug in Zod.\");\n // flatten refs - inherit properties from parent schemas\n const flattenRef = (zodSchema) => {\n const seen = ctx.seen.get(zodSchema);\n // already processed\n if (seen.ref === null)\n return;\n const schema = seen.def ?? seen.schema;\n const _cached = { ...schema };\n const ref = seen.ref;\n seen.ref = null; // prevent infinite recursion\n if (ref) {\n flattenRef(ref);\n const refSeen = ctx.seen.get(ref);\n const refSchema = refSeen.schema;\n // merge referenced schema into current\n if (refSchema.$ref && (ctx.target === \"draft-07\" || ctx.target === \"draft-04\" || ctx.target === \"openapi-3.0\")) {\n // older drafts can't combine $ref with other properties\n schema.allOf = schema.allOf ?? [];\n schema.allOf.push(refSchema);\n }\n else {\n Object.assign(schema, refSchema);\n }\n // restore child's own properties (child wins)\n Object.assign(schema, _cached);\n const isParentRef = zodSchema._zod.parent === ref;\n // For parent chain, child is a refinement - remove parent-only properties\n if (isParentRef) {\n for (const key in schema) {\n if (key === \"$ref\" || key === \"allOf\")\n continue;\n if (!(key in _cached)) {\n delete schema[key];\n }\n }\n }\n // When ref was extracted to $defs, remove properties that match the definition\n if (refSchema.$ref && refSeen.def) {\n for (const key in schema) {\n if (key === \"$ref\" || key === \"allOf\")\n continue;\n if (key in refSeen.def && JSON.stringify(schema[key]) === JSON.stringify(refSeen.def[key])) {\n delete schema[key];\n }\n }\n }\n }\n // If parent was extracted (has $ref), propagate $ref to this schema\n // This handles cases like: readonly().meta({id}).describe()\n // where processor sets ref to innerType but parent should be referenced\n const parent = zodSchema._zod.parent;\n if (parent && parent !== ref) {\n // Ensure parent is processed first so its def has inherited properties\n flattenRef(parent);\n const parentSeen = ctx.seen.get(parent);\n if (parentSeen?.schema.$ref) {\n schema.$ref = parentSeen.schema.$ref;\n // De-duplicate with parent's definition\n if (parentSeen.def) {\n for (const key in schema) {\n if (key === \"$ref\" || key === \"allOf\")\n continue;\n if (key in parentSeen.def && JSON.stringify(schema[key]) === JSON.stringify(parentSeen.def[key])) {\n delete schema[key];\n }\n }\n }\n }\n }\n // execute overrides\n ctx.override({\n zodSchema: zodSchema,\n jsonSchema: schema,\n path: seen.path ?? [],\n });\n };\n for (const entry of [...ctx.seen.entries()].reverse()) {\n flattenRef(entry[0]);\n }\n const result = {};\n if (ctx.target === \"draft-2020-12\") {\n result.$schema = \"https://json-schema.org/draft/2020-12/schema\";\n }\n else if (ctx.target === \"draft-07\") {\n result.$schema = \"http://json-schema.org/draft-07/schema#\";\n }\n else if (ctx.target === \"draft-04\") {\n result.$schema = \"http://json-schema.org/draft-04/schema#\";\n }\n else if (ctx.target === \"openapi-3.0\") {\n // OpenAPI 3.0 schema objects should not include a $schema property\n }\n else {\n // Arbitrary string values are allowed but won't have a $schema property set\n }\n if (ctx.external?.uri) {\n const id = ctx.external.registry.get(schema)?.id;\n if (!id)\n throw new Error(\"Schema is missing an `id` property\");\n result.$id = ctx.external.uri(id);\n }\n Object.assign(result, root.def ?? root.schema);\n // build defs object\n const defs = ctx.external?.defs ?? {};\n for (const entry of ctx.seen.entries()) {\n const seen = entry[1];\n if (seen.def && seen.defId) {\n defs[seen.defId] = seen.def;\n }\n }\n // set definitions in result\n if (ctx.external) {\n }\n else {\n if (Object.keys(defs).length > 0) {\n if (ctx.target === \"draft-2020-12\") {\n result.$defs = defs;\n }\n else {\n result.definitions = defs;\n }\n }\n }\n try {\n // this \"finalizes\" this schema and ensures all cycles are removed\n // each call to finalize() is functionally independent\n // though the seen map is shared\n const finalized = JSON.parse(JSON.stringify(result));\n Object.defineProperty(finalized, \"~standard\", {\n value: {\n ...schema[\"~standard\"],\n jsonSchema: {\n input: createStandardJSONSchemaMethod(schema, \"input\", ctx.processors),\n output: createStandardJSONSchemaMethod(schema, \"output\", ctx.processors),\n },\n },\n enumerable: false,\n writable: false,\n });\n return finalized;\n }\n catch (_err) {\n throw new Error(\"Error converting schema to JSON.\");\n }\n}\nfunction isTransforming(_schema, _ctx) {\n const ctx = _ctx ?? { seen: new Set() };\n if (ctx.seen.has(_schema))\n return false;\n ctx.seen.add(_schema);\n const def = _schema._zod.def;\n if (def.type === \"transform\")\n return true;\n if (def.type === \"array\")\n return isTransforming(def.element, ctx);\n if (def.type === \"set\")\n return isTransforming(def.valueType, ctx);\n if (def.type === \"lazy\")\n return isTransforming(def.getter(), ctx);\n if (def.type === \"promise\" ||\n def.type === \"optional\" ||\n def.type === \"nonoptional\" ||\n def.type === \"nullable\" ||\n def.type === \"readonly\" ||\n def.type === \"default\" ||\n def.type === \"prefault\") {\n return isTransforming(def.innerType, ctx);\n }\n if (def.type === \"intersection\") {\n return isTransforming(def.left, ctx) || isTransforming(def.right, ctx);\n }\n if (def.type === \"record\" || def.type === \"map\") {\n return isTransforming(def.keyType, ctx) || isTransforming(def.valueType, ctx);\n }\n if (def.type === \"pipe\") {\n return isTransforming(def.in, ctx) || isTransforming(def.out, ctx);\n }\n if (def.type === \"object\") {\n for (const key in def.shape) {\n if (isTransforming(def.shape[key], ctx))\n return true;\n }\n return false;\n }\n if (def.type === \"union\") {\n for (const option of def.options) {\n if (isTransforming(option, ctx))\n return true;\n }\n return false;\n }\n if (def.type === \"tuple\") {\n for (const item of def.items) {\n if (isTransforming(item, ctx))\n return true;\n }\n if (def.rest && isTransforming(def.rest, ctx))\n return true;\n return false;\n }\n return false;\n}\n/**\n * Creates a toJSONSchema method for a schema instance.\n * This encapsulates the logic of initializing context, processing, extracting defs, and finalizing.\n */\nexport const createToJSONSchemaMethod = (schema, processors = {}) => (params) => {\n const ctx = initializeContext({ ...params, processors });\n process(schema, ctx);\n extractDefs(ctx, schema);\n return finalize(ctx, schema);\n};\nexport const createStandardJSONSchemaMethod = (schema, io, processors = {}) => (params) => {\n const { libraryOptions, target } = params ?? {};\n const ctx = initializeContext({ ...(libraryOptions ?? {}), target, io, processors });\n process(schema, ctx);\n extractDefs(ctx, schema);\n return finalize(ctx, schema);\n};\n","import { extractDefs, finalize, initializeContext, process, } from \"./to-json-schema.js\";\nimport { getEnumValues } from \"./util.js\";\nconst formatMap = {\n guid: \"uuid\",\n url: \"uri\",\n datetime: \"date-time\",\n json_string: \"json-string\",\n regex: \"\", // do not set\n};\n// ==================== SIMPLE TYPE PROCESSORS ====================\nexport const stringProcessor = (schema, ctx, _json, _params) => {\n const json = _json;\n json.type = \"string\";\n const { minimum, maximum, format, patterns, contentEncoding } = schema._zod\n .bag;\n if (typeof minimum === \"number\")\n json.minLength = minimum;\n if (typeof maximum === \"number\")\n json.maxLength = maximum;\n // custom pattern overrides format\n if (format) {\n json.format = formatMap[format] ?? format;\n if (json.format === \"\")\n delete json.format; // empty format is not valid\n // JSON Schema format: \"time\" requires a full time with offset or Z\n // z.iso.time() does not include timezone information, so format: \"time\" should never be used\n if (format === \"time\") {\n delete json.format;\n }\n }\n if (contentEncoding)\n json.contentEncoding = contentEncoding;\n if (patterns && patterns.size > 0) {\n const regexes = [...patterns];\n if (regexes.length === 1)\n json.pattern = regexes[0].source;\n else if (regexes.length > 1) {\n json.allOf = [\n ...regexes.map((regex) => ({\n ...(ctx.target === \"draft-07\" || ctx.target === \"draft-04\" || ctx.target === \"openapi-3.0\"\n ? { type: \"string\" }\n : {}),\n pattern: regex.source,\n })),\n ];\n }\n }\n};\nexport const numberProcessor = (schema, ctx, _json, _params) => {\n const json = _json;\n const { minimum, maximum, format, multipleOf, exclusiveMaximum, exclusiveMinimum } = schema._zod.bag;\n if (typeof format === \"string\" && format.includes(\"int\"))\n json.type = \"integer\";\n else\n json.type = \"number\";\n if (typeof exclusiveMinimum === \"number\") {\n if (ctx.target === \"draft-04\" || ctx.target === \"openapi-3.0\") {\n json.minimum = exclusiveMinimum;\n json.exclusiveMinimum = true;\n }\n else {\n json.exclusiveMinimum = exclusiveMinimum;\n }\n }\n if (typeof minimum === \"number\") {\n json.minimum = minimum;\n if (typeof exclusiveMinimum === \"number\" && ctx.target !== \"draft-04\") {\n if (exclusiveMinimum >= minimum)\n delete json.minimum;\n else\n delete json.exclusiveMinimum;\n }\n }\n if (typeof exclusiveMaximum === \"number\") {\n if (ctx.target === \"draft-04\" || ctx.target === \"openapi-3.0\") {\n json.maximum = exclusiveMaximum;\n json.exclusiveMaximum = true;\n }\n else {\n json.exclusiveMaximum = exclusiveMaximum;\n }\n }\n if (typeof maximum === \"number\") {\n json.maximum = maximum;\n if (typeof exclusiveMaximum === \"number\" && ctx.target !== \"draft-04\") {\n if (exclusiveMaximum <= maximum)\n delete json.maximum;\n else\n delete json.exclusiveMaximum;\n }\n }\n if (typeof multipleOf === \"number\")\n json.multipleOf = multipleOf;\n};\nexport const booleanProcessor = (_schema, _ctx, json, _params) => {\n json.type = \"boolean\";\n};\nexport const bigintProcessor = (_schema, ctx, _json, _params) => {\n if (ctx.unrepresentable === \"throw\") {\n throw new Error(\"BigInt cannot be represented in JSON Schema\");\n }\n};\nexport const symbolProcessor = (_schema, ctx, _json, _params) => {\n if (ctx.unrepresentable === \"throw\") {\n throw new Error(\"Symbols cannot be represented in JSON Schema\");\n }\n};\nexport const nullProcessor = (_schema, ctx, json, _params) => {\n if (ctx.target === \"openapi-3.0\") {\n json.type = \"string\";\n json.nullable = true;\n json.enum = [null];\n }\n else {\n json.type = \"null\";\n }\n};\nexport const undefinedProcessor = (_schema, ctx, _json, _params) => {\n if (ctx.unrepresentable === \"throw\") {\n throw new Error(\"Undefined cannot be represented in JSON Schema\");\n }\n};\nexport const voidProcessor = (_schema, ctx, _json, _params) => {\n if (ctx.unrepresentable === \"throw\") {\n throw new Error(\"Void cannot be represented in JSON Schema\");\n }\n};\nexport const neverProcessor = (_schema, _ctx, json, _params) => {\n json.not = {};\n};\nexport const anyProcessor = (_schema, _ctx, _json, _params) => {\n // empty schema accepts anything\n};\nexport const unknownProcessor = (_schema, _ctx, _json, _params) => {\n // empty schema accepts anything\n};\nexport const dateProcessor = (_schema, ctx, _json, _params) => {\n if (ctx.unrepresentable === \"throw\") {\n throw new Error(\"Date cannot be represented in JSON Schema\");\n }\n};\nexport const enumProcessor = (schema, _ctx, json, _params) => {\n const def = schema._zod.def;\n const values = getEnumValues(def.entries);\n // Number enums can have both string and number values\n if (values.every((v) => typeof v === \"number\"))\n json.type = \"number\";\n if (values.every((v) => typeof v === \"string\"))\n json.type = \"string\";\n json.enum = values;\n};\nexport const literalProcessor = (schema, ctx, json, _params) => {\n const def = schema._zod.def;\n const vals = [];\n for (const val of def.values) {\n if (val === undefined) {\n if (ctx.unrepresentable === \"throw\") {\n throw new Error(\"Literal `undefined` cannot be represented in JSON Schema\");\n }\n else {\n // do not add to vals\n }\n }\n else if (typeof val === \"bigint\") {\n if (ctx.unrepresentable === \"throw\") {\n throw new Error(\"BigInt literals cannot be represented in JSON Schema\");\n }\n else {\n vals.push(Number(val));\n }\n }\n else {\n vals.push(val);\n }\n }\n if (vals.length === 0) {\n // do nothing (an undefined literal was stripped)\n }\n else if (vals.length === 1) {\n const val = vals[0];\n json.type = val === null ? \"null\" : typeof val;\n if (ctx.target === \"draft-04\" || ctx.target === \"openapi-3.0\") {\n json.enum = [val];\n }\n else {\n json.const = val;\n }\n }\n else {\n if (vals.every((v) => typeof v === \"number\"))\n json.type = \"number\";\n if (vals.every((v) => typeof v === \"string\"))\n json.type = \"string\";\n if (vals.every((v) => typeof v === \"boolean\"))\n json.type = \"boolean\";\n if (vals.every((v) => v === null))\n json.type = \"null\";\n json.enum = vals;\n }\n};\nexport const nanProcessor = (_schema, ctx, _json, _params) => {\n if (ctx.unrepresentable === \"throw\") {\n throw new Error(\"NaN cannot be represented in JSON Schema\");\n }\n};\nexport const templateLiteralProcessor = (schema, _ctx, json, _params) => {\n const _json = json;\n const pattern = schema._zod.pattern;\n if (!pattern)\n throw new Error(\"Pattern not found in template literal\");\n _json.type = \"string\";\n _json.pattern = pattern.source;\n};\nexport const fileProcessor = (schema, _ctx, json, _params) => {\n const _json = json;\n const file = {\n type: \"string\",\n format: \"binary\",\n contentEncoding: \"binary\",\n };\n const { minimum, maximum, mime } = schema._zod.bag;\n if (minimum !== undefined)\n file.minLength = minimum;\n if (maximum !== undefined)\n file.maxLength = maximum;\n if (mime) {\n if (mime.length === 1) {\n file.contentMediaType = mime[0];\n Object.assign(_json, file);\n }\n else {\n Object.assign(_json, file); // shared props at root\n _json.anyOf = mime.map((m) => ({ contentMediaType: m })); // only contentMediaType differs\n }\n }\n else {\n Object.assign(_json, file);\n }\n};\nexport const successProcessor = (_schema, _ctx, json, _params) => {\n json.type = \"boolean\";\n};\nexport const customProcessor = (_schema, ctx, _json, _params) => {\n if (ctx.unrepresentable === \"throw\") {\n throw new Error(\"Custom types cannot be represented in JSON Schema\");\n }\n};\nexport const functionProcessor = (_schema, ctx, _json, _params) => {\n if (ctx.unrepresentable === \"throw\") {\n throw new Error(\"Function types cannot be represented in JSON Schema\");\n }\n};\nexport const transformProcessor = (_schema, ctx, _json, _params) => {\n if (ctx.unrepresentable === \"throw\") {\n throw new Error(\"Transforms cannot be represented in JSON Schema\");\n }\n};\nexport const mapProcessor = (_schema, ctx, _json, _params) => {\n if (ctx.unrepresentable === \"throw\") {\n throw new Error(\"Map cannot be represented in JSON Schema\");\n }\n};\nexport const setProcessor = (_schema, ctx, _json, _params) => {\n if (ctx.unrepresentable === \"throw\") {\n throw new Error(\"Set cannot be represented in JSON Schema\");\n }\n};\n// ==================== COMPOSITE TYPE PROCESSORS ====================\nexport const arrayProcessor = (schema, ctx, _json, params) => {\n const json = _json;\n const def = schema._zod.def;\n const { minimum, maximum } = schema._zod.bag;\n if (typeof minimum === \"number\")\n json.minItems = minimum;\n if (typeof maximum === \"number\")\n json.maxItems = maximum;\n json.type = \"array\";\n json.items = process(def.element, ctx, { ...params, path: [...params.path, \"items\"] });\n};\nexport const objectProcessor = (schema, ctx, _json, params) => {\n const json = _json;\n const def = schema._zod.def;\n json.type = \"object\";\n json.properties = {};\n const shape = def.shape;\n for (const key in shape) {\n json.properties[key] = process(shape[key], ctx, {\n ...params,\n path: [...params.path, \"properties\", key],\n });\n }\n // required keys\n const allKeys = new Set(Object.keys(shape));\n const requiredKeys = new Set([...allKeys].filter((key) => {\n const v = def.shape[key]._zod;\n if (ctx.io === \"input\") {\n return v.optin === undefined;\n }\n else {\n return v.optout === undefined;\n }\n }));\n if (requiredKeys.size > 0) {\n json.required = Array.from(requiredKeys);\n }\n // catchall\n if (def.catchall?._zod.def.type === \"never\") {\n // strict\n json.additionalProperties = false;\n }\n else if (!def.catchall) {\n // regular\n if (ctx.io === \"output\")\n json.additionalProperties = false;\n }\n else if (def.catchall) {\n json.additionalProperties = process(def.catchall, ctx, {\n ...params,\n path: [...params.path, \"additionalProperties\"],\n });\n }\n};\nexport const unionProcessor = (schema, ctx, json, params) => {\n const def = schema._zod.def;\n // Exclusive unions (inclusive === false) use oneOf (exactly one match) instead of anyOf (one or more matches)\n // This includes both z.xor() and discriminated unions\n const isExclusive = def.inclusive === false;\n const options = def.options.map((x, i) => process(x, ctx, {\n ...params,\n path: [...params.path, isExclusive ? \"oneOf\" : \"anyOf\", i],\n }));\n if (isExclusive) {\n json.oneOf = options;\n }\n else {\n json.anyOf = options;\n }\n};\nexport const intersectionProcessor = (schema, ctx, json, params) => {\n const def = schema._zod.def;\n const a = process(def.left, ctx, {\n ...params,\n path: [...params.path, \"allOf\", 0],\n });\n const b = process(def.right, ctx, {\n ...params,\n path: [...params.path, \"allOf\", 1],\n });\n const isSimpleIntersection = (val) => \"allOf\" in val && Object.keys(val).length === 1;\n const allOf = [\n ...(isSimpleIntersection(a) ? a.allOf : [a]),\n ...(isSimpleIntersection(b) ? b.allOf : [b]),\n ];\n json.allOf = allOf;\n};\nexport const tupleProcessor = (schema, ctx, _json, params) => {\n const json = _json;\n const def = schema._zod.def;\n json.type = \"array\";\n const prefixPath = ctx.target === \"draft-2020-12\" ? \"prefixItems\" : \"items\";\n const restPath = ctx.target === \"draft-2020-12\" ? \"items\" : ctx.target === \"openapi-3.0\" ? \"items\" : \"additionalItems\";\n const prefixItems = def.items.map((x, i) => process(x, ctx, {\n ...params,\n path: [...params.path, prefixPath, i],\n }));\n const rest = def.rest\n ? process(def.rest, ctx, {\n ...params,\n path: [...params.path, restPath, ...(ctx.target === \"openapi-3.0\" ? [def.items.length] : [])],\n })\n : null;\n if (ctx.target === \"draft-2020-12\") {\n json.prefixItems = prefixItems;\n if (rest) {\n json.items = rest;\n }\n }\n else if (ctx.target === \"openapi-3.0\") {\n json.items = {\n anyOf: prefixItems,\n };\n if (rest) {\n json.items.anyOf.push(rest);\n }\n json.minItems = prefixItems.length;\n if (!rest) {\n json.maxItems = prefixItems.length;\n }\n }\n else {\n json.items = prefixItems;\n if (rest) {\n json.additionalItems = rest;\n }\n }\n // length\n const { minimum, maximum } = schema._zod.bag;\n if (typeof minimum === \"number\")\n json.minItems = minimum;\n if (typeof maximum === \"number\")\n json.maxItems = maximum;\n};\nexport const recordProcessor = (schema, ctx, _json, params) => {\n const json = _json;\n const def = schema._zod.def;\n json.type = \"object\";\n // For looseRecord with regex patterns, use patternProperties\n // This correctly represents \"only validate keys matching the pattern\" semantics\n // and composes well with allOf (intersections)\n const keyType = def.keyType;\n const keyBag = keyType._zod.bag;\n const patterns = keyBag?.patterns;\n if (def.mode === \"loose\" && patterns && patterns.size > 0) {\n // Use patternProperties for looseRecord with regex patterns\n const valueSchema = process(def.valueType, ctx, {\n ...params,\n path: [...params.path, \"patternProperties\", \"*\"],\n });\n json.patternProperties = {};\n for (const pattern of patterns) {\n json.patternProperties[pattern.source] = valueSchema;\n }\n }\n else {\n // Default behavior: use propertyNames + additionalProperties\n if (ctx.target === \"draft-07\" || ctx.target === \"draft-2020-12\") {\n json.propertyNames = process(def.keyType, ctx, {\n ...params,\n path: [...params.path, \"propertyNames\"],\n });\n }\n json.additionalProperties = process(def.valueType, ctx, {\n ...params,\n path: [...params.path, \"additionalProperties\"],\n });\n }\n // Add required for keys with discrete values (enum, literal, etc.)\n const keyValues = keyType._zod.values;\n if (keyValues) {\n const validKeyValues = [...keyValues].filter((v) => typeof v === \"string\" || typeof v === \"number\");\n if (validKeyValues.length > 0) {\n json.required = validKeyValues;\n }\n }\n};\nexport const nullableProcessor = (schema, ctx, json, params) => {\n const def = schema._zod.def;\n const inner = process(def.innerType, ctx, params);\n const seen = ctx.seen.get(schema);\n if (ctx.target === \"openapi-3.0\") {\n seen.ref = def.innerType;\n json.nullable = true;\n }\n else {\n json.anyOf = [inner, { type: \"null\" }];\n }\n};\nexport const nonoptionalProcessor = (schema, ctx, _json, params) => {\n const def = schema._zod.def;\n process(def.innerType, ctx, params);\n const seen = ctx.seen.get(schema);\n seen.ref = def.innerType;\n};\nexport const defaultProcessor = (schema, ctx, json, params) => {\n const def = schema._zod.def;\n process(def.innerType, ctx, params);\n const seen = ctx.seen.get(schema);\n seen.ref = def.innerType;\n json.default = JSON.parse(JSON.stringify(def.defaultValue));\n};\nexport const prefaultProcessor = (schema, ctx, json, params) => {\n const def = schema._zod.def;\n process(def.innerType, ctx, params);\n const seen = ctx.seen.get(schema);\n seen.ref = def.innerType;\n if (ctx.io === \"input\")\n json._prefault = JSON.parse(JSON.stringify(def.defaultValue));\n};\nexport const catchProcessor = (schema, ctx, json, params) => {\n const def = schema._zod.def;\n process(def.innerType, ctx, params);\n const seen = ctx.seen.get(schema);\n seen.ref = def.innerType;\n let catchValue;\n try {\n catchValue = def.catchValue(undefined);\n }\n catch {\n throw new Error(\"Dynamic catch values are not supported in JSON Schema\");\n }\n json.default = catchValue;\n};\nexport const pipeProcessor = (schema, ctx, _json, params) => {\n const def = schema._zod.def;\n const innerType = ctx.io === \"input\" ? (def.in._zod.def.type === \"transform\" ? def.out : def.in) : def.out;\n process(innerType, ctx, params);\n const seen = ctx.seen.get(schema);\n seen.ref = innerType;\n};\nexport const readonlyProcessor = (schema, ctx, json, params) => {\n const def = schema._zod.def;\n process(def.innerType, ctx, params);\n const seen = ctx.seen.get(schema);\n seen.ref = def.innerType;\n json.readOnly = true;\n};\nexport const promiseProcessor = (schema, ctx, _json, params) => {\n const def = schema._zod.def;\n process(def.innerType, ctx, params);\n const seen = ctx.seen.get(schema);\n seen.ref = def.innerType;\n};\nexport const optionalProcessor = (schema, ctx, _json, params) => {\n const def = schema._zod.def;\n process(def.innerType, ctx, params);\n const seen = ctx.seen.get(schema);\n seen.ref = def.innerType;\n};\nexport const lazyProcessor = (schema, ctx, _json, params) => {\n const innerType = schema._zod.innerType;\n process(innerType, ctx, params);\n const seen = ctx.seen.get(schema);\n seen.ref = innerType;\n};\n// ==================== ALL PROCESSORS ====================\nexport const allProcessors = {\n string: stringProcessor,\n number: numberProcessor,\n boolean: booleanProcessor,\n bigint: bigintProcessor,\n symbol: symbolProcessor,\n null: nullProcessor,\n undefined: undefinedProcessor,\n void: voidProcessor,\n never: neverProcessor,\n any: anyProcessor,\n unknown: unknownProcessor,\n date: dateProcessor,\n enum: enumProcessor,\n literal: literalProcessor,\n nan: nanProcessor,\n template_literal: templateLiteralProcessor,\n file: fileProcessor,\n success: successProcessor,\n custom: customProcessor,\n function: functionProcessor,\n transform: transformProcessor,\n map: mapProcessor,\n set: setProcessor,\n array: arrayProcessor,\n object: objectProcessor,\n union: unionProcessor,\n intersection: intersectionProcessor,\n tuple: tupleProcessor,\n record: recordProcessor,\n nullable: nullableProcessor,\n nonoptional: nonoptionalProcessor,\n default: defaultProcessor,\n prefault: prefaultProcessor,\n catch: catchProcessor,\n pipe: pipeProcessor,\n readonly: readonlyProcessor,\n promise: promiseProcessor,\n optional: optionalProcessor,\n lazy: lazyProcessor,\n};\nexport function toJSONSchema(input, params) {\n if (\"_idmap\" in input) {\n // Registry case\n const registry = input;\n const ctx = initializeContext({ ...params, processors: allProcessors });\n const defs = {};\n // First pass: process all schemas to build the seen map\n for (const entry of registry._idmap.entries()) {\n const [_, schema] = entry;\n process(schema, ctx);\n }\n const schemas = {};\n const external = {\n registry,\n uri: params?.uri,\n defs,\n };\n // Update the context with external configuration\n ctx.external = external;\n // Second pass: emit each schema\n for (const entry of registry._idmap.entries()) {\n const [key, schema] = entry;\n extractDefs(ctx, schema);\n schemas[key] = finalize(ctx, schema);\n }\n if (Object.keys(defs).length > 0) {\n const defsSegment = ctx.target === \"draft-2020-12\" ? \"$defs\" : \"definitions\";\n schemas.__shared = {\n [defsSegment]: defs,\n };\n }\n return { schemas };\n }\n // Single schema case\n const ctx = initializeContext({ ...params, processors: allProcessors });\n process(input, ctx);\n extractDefs(ctx, input);\n return finalize(ctx, input);\n}\n","import * as core from \"../core/index.js\";\nimport { $ZodError } from \"../core/index.js\";\nimport * as util from \"../core/util.js\";\nconst initializer = (inst, issues) => {\n $ZodError.init(inst, issues);\n inst.name = \"ZodError\";\n Object.defineProperties(inst, {\n format: {\n value: (mapper) => core.formatError(inst, mapper),\n // enumerable: false,\n },\n flatten: {\n value: (mapper) => core.flattenError(inst, mapper),\n // enumerable: false,\n },\n addIssue: {\n value: (issue) => {\n inst.issues.push(issue);\n inst.message = JSON.stringify(inst.issues, util.jsonStringifyReplacer, 2);\n },\n // enumerable: false,\n },\n addIssues: {\n value: (issues) => {\n inst.issues.push(...issues);\n inst.message = JSON.stringify(inst.issues, util.jsonStringifyReplacer, 2);\n },\n // enumerable: false,\n },\n isEmpty: {\n get() {\n return inst.issues.length === 0;\n },\n // enumerable: false,\n },\n });\n // Object.defineProperty(inst, \"isEmpty\", {\n // get() {\n // return inst.issues.length === 0;\n // },\n // });\n};\nexport const ZodError = core.$constructor(\"ZodError\", initializer);\nexport const ZodRealError = core.$constructor(\"ZodError\", initializer, {\n Parent: Error,\n});\n// /** @deprecated Use `z.core.$ZodErrorMapCtx` instead. */\n// export type ErrorMapCtx = core.$ZodErrorMapCtx;\n","import * as core from \"../core/index.js\";\nimport { ZodRealError } from \"./errors.js\";\nexport const parse = /* @__PURE__ */ core._parse(ZodRealError);\nexport const parseAsync = /* @__PURE__ */ core._parseAsync(ZodRealError);\nexport const safeParse = /* @__PURE__ */ core._safeParse(ZodRealError);\nexport const safeParseAsync = /* @__PURE__ */ core._safeParseAsync(ZodRealError);\n// Codec functions\nexport const encode = /* @__PURE__ */ core._encode(ZodRealError);\nexport const decode = /* @__PURE__ */ core._decode(ZodRealError);\nexport const encodeAsync = /* @__PURE__ */ core._encodeAsync(ZodRealError);\nexport const decodeAsync = /* @__PURE__ */ core._decodeAsync(ZodRealError);\nexport const safeEncode = /* @__PURE__ */ core._safeEncode(ZodRealError);\nexport const safeDecode = /* @__PURE__ */ core._safeDecode(ZodRealError);\nexport const safeEncodeAsync = /* @__PURE__ */ core._safeEncodeAsync(ZodRealError);\nexport const safeDecodeAsync = /* @__PURE__ */ core._safeDecodeAsync(ZodRealError);\n","import * as core from \"../core/index.js\";\nimport { util } from \"../core/index.js\";\nimport * as processors from \"../core/json-schema-processors.js\";\nimport { createStandardJSONSchemaMethod, createToJSONSchemaMethod } from \"../core/to-json-schema.js\";\nimport * as checks from \"./checks.js\";\nimport * as iso from \"./iso.js\";\nimport * as parse from \"./parse.js\";\nexport const ZodType = /*@__PURE__*/ core.$constructor(\"ZodType\", (inst, def) => {\n core.$ZodType.init(inst, def);\n Object.assign(inst[\"~standard\"], {\n jsonSchema: {\n input: createStandardJSONSchemaMethod(inst, \"input\"),\n output: createStandardJSONSchemaMethod(inst, \"output\"),\n },\n });\n inst.toJSONSchema = createToJSONSchemaMethod(inst, {});\n inst.def = def;\n inst.type = def.type;\n Object.defineProperty(inst, \"_def\", { value: def });\n // base methods\n inst.check = (...checks) => {\n return inst.clone(util.mergeDefs(def, {\n checks: [\n ...(def.checks ?? []),\n ...checks.map((ch) => typeof ch === \"function\" ? { _zod: { check: ch, def: { check: \"custom\" }, onattach: [] } } : ch),\n ],\n }), {\n parent: true,\n });\n };\n inst.with = inst.check;\n inst.clone = (def, params) => core.clone(inst, def, params);\n inst.brand = () => inst;\n inst.register = ((reg, meta) => {\n reg.add(inst, meta);\n return inst;\n });\n // parsing\n inst.parse = (data, params) => parse.parse(inst, data, params, { callee: inst.parse });\n inst.safeParse = (data, params) => parse.safeParse(inst, data, params);\n inst.parseAsync = async (data, params) => parse.parseAsync(inst, data, params, { callee: inst.parseAsync });\n inst.safeParseAsync = async (data, params) => parse.safeParseAsync(inst, data, params);\n inst.spa = inst.safeParseAsync;\n // encoding/decoding\n inst.encode = (data, params) => parse.encode(inst, data, params);\n inst.decode = (data, params) => parse.decode(inst, data, params);\n inst.encodeAsync = async (data, params) => parse.encodeAsync(inst, data, params);\n inst.decodeAsync = async (data, params) => parse.decodeAsync(inst, data, params);\n inst.safeEncode = (data, params) => parse.safeEncode(inst, data, params);\n inst.safeDecode = (data, params) => parse.safeDecode(inst, data, params);\n inst.safeEncodeAsync = async (data, params) => parse.safeEncodeAsync(inst, data, params);\n inst.safeDecodeAsync = async (data, params) => parse.safeDecodeAsync(inst, data, params);\n // refinements\n inst.refine = (check, params) => inst.check(refine(check, params));\n inst.superRefine = (refinement) => inst.check(superRefine(refinement));\n inst.overwrite = (fn) => inst.check(checks.overwrite(fn));\n // wrappers\n inst.optional = () => optional(inst);\n inst.exactOptional = () => exactOptional(inst);\n inst.nullable = () => nullable(inst);\n inst.nullish = () => optional(nullable(inst));\n inst.nonoptional = (params) => nonoptional(inst, params);\n inst.array = () => array(inst);\n inst.or = (arg) => union([inst, arg]);\n inst.and = (arg) => intersection(inst, arg);\n inst.transform = (tx) => pipe(inst, transform(tx));\n inst.default = (def) => _default(inst, def);\n inst.prefault = (def) => prefault(inst, def);\n // inst.coalesce = (def, params) => coalesce(inst, def, params);\n inst.catch = (params) => _catch(inst, params);\n inst.pipe = (target) => pipe(inst, target);\n inst.readonly = () => readonly(inst);\n // meta\n inst.describe = (description) => {\n const cl = inst.clone();\n core.globalRegistry.add(cl, { description });\n return cl;\n };\n Object.defineProperty(inst, \"description\", {\n get() {\n return core.globalRegistry.get(inst)?.description;\n },\n configurable: true,\n });\n inst.meta = (...args) => {\n if (args.length === 0) {\n return core.globalRegistry.get(inst);\n }\n const cl = inst.clone();\n core.globalRegistry.add(cl, args[0]);\n return cl;\n };\n // helpers\n inst.isOptional = () => inst.safeParse(undefined).success;\n inst.isNullable = () => inst.safeParse(null).success;\n inst.apply = (fn) => fn(inst);\n return inst;\n});\n/** @internal */\nexport const _ZodString = /*@__PURE__*/ core.$constructor(\"_ZodString\", (inst, def) => {\n core.$ZodString.init(inst, def);\n ZodType.init(inst, def);\n inst._zod.processJSONSchema = (ctx, json, params) => processors.stringProcessor(inst, ctx, json, params);\n const bag = inst._zod.bag;\n inst.format = bag.format ?? null;\n inst.minLength = bag.minimum ?? null;\n inst.maxLength = bag.maximum ?? null;\n // validations\n inst.regex = (...args) => inst.check(checks.regex(...args));\n inst.includes = (...args) => inst.check(checks.includes(...args));\n inst.startsWith = (...args) => inst.check(checks.startsWith(...args));\n inst.endsWith = (...args) => inst.check(checks.endsWith(...args));\n inst.min = (...args) => inst.check(checks.minLength(...args));\n inst.max = (...args) => inst.check(checks.maxLength(...args));\n inst.length = (...args) => inst.check(checks.length(...args));\n inst.nonempty = (...args) => inst.check(checks.minLength(1, ...args));\n inst.lowercase = (params) => inst.check(checks.lowercase(params));\n inst.uppercase = (params) => inst.check(checks.uppercase(params));\n // transforms\n inst.trim = () => inst.check(checks.trim());\n inst.normalize = (...args) => inst.check(checks.normalize(...args));\n inst.toLowerCase = () => inst.check(checks.toLowerCase());\n inst.toUpperCase = () => inst.check(checks.toUpperCase());\n inst.slugify = () => inst.check(checks.slugify());\n});\nexport const ZodString = /*@__PURE__*/ core.$constructor(\"ZodString\", (inst, def) => {\n core.$ZodString.init(inst, def);\n _ZodString.init(inst, def);\n inst.email = (params) => inst.check(core._email(ZodEmail, params));\n inst.url = (params) => inst.check(core._url(ZodURL, params));\n inst.jwt = (params) => inst.check(core._jwt(ZodJWT, params));\n inst.emoji = (params) => inst.check(core._emoji(ZodEmoji, params));\n inst.guid = (params) => inst.check(core._guid(ZodGUID, params));\n inst.uuid = (params) => inst.check(core._uuid(ZodUUID, params));\n inst.uuidv4 = (params) => inst.check(core._uuidv4(ZodUUID, params));\n inst.uuidv6 = (params) => inst.check(core._uuidv6(ZodUUID, params));\n inst.uuidv7 = (params) => inst.check(core._uuidv7(ZodUUID, params));\n inst.nanoid = (params) => inst.check(core._nanoid(ZodNanoID, params));\n inst.guid = (params) => inst.check(core._guid(ZodGUID, params));\n inst.cuid = (params) => inst.check(core._cuid(ZodCUID, params));\n inst.cuid2 = (params) => inst.check(core._cuid2(ZodCUID2, params));\n inst.ulid = (params) => inst.check(core._ulid(ZodULID, params));\n inst.base64 = (params) => inst.check(core._base64(ZodBase64, params));\n inst.base64url = (params) => inst.check(core._base64url(ZodBase64URL, params));\n inst.xid = (params) => inst.check(core._xid(ZodXID, params));\n inst.ksuid = (params) => inst.check(core._ksuid(ZodKSUID, params));\n inst.ipv4 = (params) => inst.check(core._ipv4(ZodIPv4, params));\n inst.ipv6 = (params) => inst.check(core._ipv6(ZodIPv6, params));\n inst.cidrv4 = (params) => inst.check(core._cidrv4(ZodCIDRv4, params));\n inst.cidrv6 = (params) => inst.check(core._cidrv6(ZodCIDRv6, params));\n inst.e164 = (params) => inst.check(core._e164(ZodE164, params));\n // iso\n inst.datetime = (params) => inst.check(iso.datetime(params));\n inst.date = (params) => inst.check(iso.date(params));\n inst.time = (params) => inst.check(iso.time(params));\n inst.duration = (params) => inst.check(iso.duration(params));\n});\nexport function string(params) {\n return core._string(ZodString, params);\n}\nexport const ZodStringFormat = /*@__PURE__*/ core.$constructor(\"ZodStringFormat\", (inst, def) => {\n core.$ZodStringFormat.init(inst, def);\n _ZodString.init(inst, def);\n});\nexport const ZodEmail = /*@__PURE__*/ core.$constructor(\"ZodEmail\", (inst, def) => {\n // ZodStringFormat.init(inst, def);\n core.$ZodEmail.init(inst, def);\n ZodStringFormat.init(inst, def);\n});\nexport function email(params) {\n return core._email(ZodEmail, params);\n}\nexport const ZodGUID = /*@__PURE__*/ core.$constructor(\"ZodGUID\", (inst, def) => {\n // ZodStringFormat.init(inst, def);\n core.$ZodGUID.init(inst, def);\n ZodStringFormat.init(inst, def);\n});\nexport function guid(params) {\n return core._guid(ZodGUID, params);\n}\nexport const ZodUUID = /*@__PURE__*/ core.$constructor(\"ZodUUID\", (inst, def) => {\n // ZodStringFormat.init(inst, def);\n core.$ZodUUID.init(inst, def);\n ZodStringFormat.init(inst, def);\n});\nexport function uuid(params) {\n return core._uuid(ZodUUID, params);\n}\nexport function uuidv4(params) {\n return core._uuidv4(ZodUUID, params);\n}\n// ZodUUIDv6\nexport function uuidv6(params) {\n return core._uuidv6(ZodUUID, params);\n}\n// ZodUUIDv7\nexport function uuidv7(params) {\n return core._uuidv7(ZodUUID, params);\n}\nexport const ZodURL = /*@__PURE__*/ core.$constructor(\"ZodURL\", (inst, def) => {\n // ZodStringFormat.init(inst, def);\n core.$ZodURL.init(inst, def);\n ZodStringFormat.init(inst, def);\n});\nexport function url(params) {\n return core._url(ZodURL, params);\n}\nexport function httpUrl(params) {\n return core._url(ZodURL, {\n protocol: /^https?$/,\n hostname: core.regexes.domain,\n ...util.normalizeParams(params),\n });\n}\nexport const ZodEmoji = /*@__PURE__*/ core.$constructor(\"ZodEmoji\", (inst, def) => {\n // ZodStringFormat.init(inst, def);\n core.$ZodEmoji.init(inst, def);\n ZodStringFormat.init(inst, def);\n});\nexport function emoji(params) {\n return core._emoji(ZodEmoji, params);\n}\nexport const ZodNanoID = /*@__PURE__*/ core.$constructor(\"ZodNanoID\", (inst, def) => {\n // ZodStringFormat.init(inst, def);\n core.$ZodNanoID.init(inst, def);\n ZodStringFormat.init(inst, def);\n});\nexport function nanoid(params) {\n return core._nanoid(ZodNanoID, params);\n}\nexport const ZodCUID = /*@__PURE__*/ core.$constructor(\"ZodCUID\", (inst, def) => {\n // ZodStringFormat.init(inst, def);\n core.$ZodCUID.init(inst, def);\n ZodStringFormat.init(inst, def);\n});\nexport function cuid(params) {\n return core._cuid(ZodCUID, params);\n}\nexport const ZodCUID2 = /*@__PURE__*/ core.$constructor(\"ZodCUID2\", (inst, def) => {\n // ZodStringFormat.init(inst, def);\n core.$ZodCUID2.init(inst, def);\n ZodStringFormat.init(inst, def);\n});\nexport function cuid2(params) {\n return core._cuid2(ZodCUID2, params);\n}\nexport const ZodULID = /*@__PURE__*/ core.$constructor(\"ZodULID\", (inst, def) => {\n // ZodStringFormat.init(inst, def);\n core.$ZodULID.init(inst, def);\n ZodStringFormat.init(inst, def);\n});\nexport function ulid(params) {\n return core._ulid(ZodULID, params);\n}\nexport const ZodXID = /*@__PURE__*/ core.$constructor(\"ZodXID\", (inst, def) => {\n // ZodStringFormat.init(inst, def);\n core.$ZodXID.init(inst, def);\n ZodStringFormat.init(inst, def);\n});\nexport function xid(params) {\n return core._xid(ZodXID, params);\n}\nexport const ZodKSUID = /*@__PURE__*/ core.$constructor(\"ZodKSUID\", (inst, def) => {\n // ZodStringFormat.init(inst, def);\n core.$ZodKSUID.init(inst, def);\n ZodStringFormat.init(inst, def);\n});\nexport function ksuid(params) {\n return core._ksuid(ZodKSUID, params);\n}\nexport const ZodIPv4 = /*@__PURE__*/ core.$constructor(\"ZodIPv4\", (inst, def) => {\n // ZodStringFormat.init(inst, def);\n core.$ZodIPv4.init(inst, def);\n ZodStringFormat.init(inst, def);\n});\nexport function ipv4(params) {\n return core._ipv4(ZodIPv4, params);\n}\nexport const ZodMAC = /*@__PURE__*/ core.$constructor(\"ZodMAC\", (inst, def) => {\n // ZodStringFormat.init(inst, def);\n core.$ZodMAC.init(inst, def);\n ZodStringFormat.init(inst, def);\n});\nexport function mac(params) {\n return core._mac(ZodMAC, params);\n}\nexport const ZodIPv6 = /*@__PURE__*/ core.$constructor(\"ZodIPv6\", (inst, def) => {\n // ZodStringFormat.init(inst, def);\n core.$ZodIPv6.init(inst, def);\n ZodStringFormat.init(inst, def);\n});\nexport function ipv6(params) {\n return core._ipv6(ZodIPv6, params);\n}\nexport const ZodCIDRv4 = /*@__PURE__*/ core.$constructor(\"ZodCIDRv4\", (inst, def) => {\n core.$ZodCIDRv4.init(inst, def);\n ZodStringFormat.init(inst, def);\n});\nexport function cidrv4(params) {\n return core._cidrv4(ZodCIDRv4, params);\n}\nexport const ZodCIDRv6 = /*@__PURE__*/ core.$constructor(\"ZodCIDRv6\", (inst, def) => {\n core.$ZodCIDRv6.init(inst, def);\n ZodStringFormat.init(inst, def);\n});\nexport function cidrv6(params) {\n return core._cidrv6(ZodCIDRv6, params);\n}\nexport const ZodBase64 = /*@__PURE__*/ core.$constructor(\"ZodBase64\", (inst, def) => {\n // ZodStringFormat.init(inst, def);\n core.$ZodBase64.init(inst, def);\n ZodStringFormat.init(inst, def);\n});\nexport function base64(params) {\n return core._base64(ZodBase64, params);\n}\nexport const ZodBase64URL = /*@__PURE__*/ core.$constructor(\"ZodBase64URL\", (inst, def) => {\n // ZodStringFormat.init(inst, def);\n core.$ZodBase64URL.init(inst, def);\n ZodStringFormat.init(inst, def);\n});\nexport function base64url(params) {\n return core._base64url(ZodBase64URL, params);\n}\nexport const ZodE164 = /*@__PURE__*/ core.$constructor(\"ZodE164\", (inst, def) => {\n // ZodStringFormat.init(inst, def);\n core.$ZodE164.init(inst, def);\n ZodStringFormat.init(inst, def);\n});\nexport function e164(params) {\n return core._e164(ZodE164, params);\n}\nexport const ZodJWT = /*@__PURE__*/ core.$constructor(\"ZodJWT\", (inst, def) => {\n // ZodStringFormat.init(inst, def);\n core.$ZodJWT.init(inst, def);\n ZodStringFormat.init(inst, def);\n});\nexport function jwt(params) {\n return core._jwt(ZodJWT, params);\n}\nexport const ZodCustomStringFormat = /*@__PURE__*/ core.$constructor(\"ZodCustomStringFormat\", (inst, def) => {\n // ZodStringFormat.init(inst, def);\n core.$ZodCustomStringFormat.init(inst, def);\n ZodStringFormat.init(inst, def);\n});\nexport function stringFormat(format, fnOrRegex, _params = {}) {\n return core._stringFormat(ZodCustomStringFormat, format, fnOrRegex, _params);\n}\nexport function hostname(_params) {\n return core._stringFormat(ZodCustomStringFormat, \"hostname\", core.regexes.hostname, _params);\n}\nexport function hex(_params) {\n return core._stringFormat(ZodCustomStringFormat, \"hex\", core.regexes.hex, _params);\n}\nexport function hash(alg, params) {\n const enc = params?.enc ?? \"hex\";\n const format = `${alg}_${enc}`;\n const regex = core.regexes[format];\n if (!regex)\n throw new Error(`Unrecognized hash format: ${format}`);\n return core._stringFormat(ZodCustomStringFormat, format, regex, params);\n}\nexport const ZodNumber = /*@__PURE__*/ core.$constructor(\"ZodNumber\", (inst, def) => {\n core.$ZodNumber.init(inst, def);\n ZodType.init(inst, def);\n inst._zod.processJSONSchema = (ctx, json, params) => processors.numberProcessor(inst, ctx, json, params);\n inst.gt = (value, params) => inst.check(checks.gt(value, params));\n inst.gte = (value, params) => inst.check(checks.gte(value, params));\n inst.min = (value, params) => inst.check(checks.gte(value, params));\n inst.lt = (value, params) => inst.check(checks.lt(value, params));\n inst.lte = (value, params) => inst.check(checks.lte(value, params));\n inst.max = (value, params) => inst.check(checks.lte(value, params));\n inst.int = (params) => inst.check(int(params));\n inst.safe = (params) => inst.check(int(params));\n inst.positive = (params) => inst.check(checks.gt(0, params));\n inst.nonnegative = (params) => inst.check(checks.gte(0, params));\n inst.negative = (params) => inst.check(checks.lt(0, params));\n inst.nonpositive = (params) => inst.check(checks.lte(0, params));\n inst.multipleOf = (value, params) => inst.check(checks.multipleOf(value, params));\n inst.step = (value, params) => inst.check(checks.multipleOf(value, params));\n // inst.finite = (params) => inst.check(core.finite(params));\n inst.finite = () => inst;\n const bag = inst._zod.bag;\n inst.minValue =\n Math.max(bag.minimum ?? Number.NEGATIVE_INFINITY, bag.exclusiveMinimum ?? Number.NEGATIVE_INFINITY) ?? null;\n inst.maxValue =\n Math.min(bag.maximum ?? Number.POSITIVE_INFINITY, bag.exclusiveMaximum ?? Number.POSITIVE_INFINITY) ?? null;\n inst.isInt = (bag.format ?? \"\").includes(\"int\") || Number.isSafeInteger(bag.multipleOf ?? 0.5);\n inst.isFinite = true;\n inst.format = bag.format ?? null;\n});\nexport function number(params) {\n return core._number(ZodNumber, params);\n}\nexport const ZodNumberFormat = /*@__PURE__*/ core.$constructor(\"ZodNumberFormat\", (inst, def) => {\n core.$ZodNumberFormat.init(inst, def);\n ZodNumber.init(inst, def);\n});\nexport function int(params) {\n return core._int(ZodNumberFormat, params);\n}\nexport function float32(params) {\n return core._float32(ZodNumberFormat, params);\n}\nexport function float64(params) {\n return core._float64(ZodNumberFormat, params);\n}\nexport function int32(params) {\n return core._int32(ZodNumberFormat, params);\n}\nexport function uint32(params) {\n return core._uint32(ZodNumberFormat, params);\n}\nexport const ZodBoolean = /*@__PURE__*/ core.$constructor(\"ZodBoolean\", (inst, def) => {\n core.$ZodBoolean.init(inst, def);\n ZodType.init(inst, def);\n inst._zod.processJSONSchema = (ctx, json, params) => processors.booleanProcessor(inst, ctx, json, params);\n});\nexport function boolean(params) {\n return core._boolean(ZodBoolean, params);\n}\nexport const ZodBigInt = /*@__PURE__*/ core.$constructor(\"ZodBigInt\", (inst, def) => {\n core.$ZodBigInt.init(inst, def);\n ZodType.init(inst, def);\n inst._zod.processJSONSchema = (ctx, json, params) => processors.bigintProcessor(inst, ctx, json, params);\n inst.gte = (value, params) => inst.check(checks.gte(value, params));\n inst.min = (value, params) => inst.check(checks.gte(value, params));\n inst.gt = (value, params) => inst.check(checks.gt(value, params));\n inst.gte = (value, params) => inst.check(checks.gte(value, params));\n inst.min = (value, params) => inst.check(checks.gte(value, params));\n inst.lt = (value, params) => inst.check(checks.lt(value, params));\n inst.lte = (value, params) => inst.check(checks.lte(value, params));\n inst.max = (value, params) => inst.check(checks.lte(value, params));\n inst.positive = (params) => inst.check(checks.gt(BigInt(0), params));\n inst.negative = (params) => inst.check(checks.lt(BigInt(0), params));\n inst.nonpositive = (params) => inst.check(checks.lte(BigInt(0), params));\n inst.nonnegative = (params) => inst.check(checks.gte(BigInt(0), params));\n inst.multipleOf = (value, params) => inst.check(checks.multipleOf(value, params));\n const bag = inst._zod.bag;\n inst.minValue = bag.minimum ?? null;\n inst.maxValue = bag.maximum ?? null;\n inst.format = bag.format ?? null;\n});\nexport function bigint(params) {\n return core._bigint(ZodBigInt, params);\n}\nexport const ZodBigIntFormat = /*@__PURE__*/ core.$constructor(\"ZodBigIntFormat\", (inst, def) => {\n core.$ZodBigIntFormat.init(inst, def);\n ZodBigInt.init(inst, def);\n});\n// int64\nexport function int64(params) {\n return core._int64(ZodBigIntFormat, params);\n}\n// uint64\nexport function uint64(params) {\n return core._uint64(ZodBigIntFormat, params);\n}\nexport const ZodSymbol = /*@__PURE__*/ core.$constructor(\"ZodSymbol\", (inst, def) => {\n core.$ZodSymbol.init(inst, def);\n ZodType.init(inst, def);\n inst._zod.processJSONSchema = (ctx, json, params) => processors.symbolProcessor(inst, ctx, json, params);\n});\nexport function symbol(params) {\n return core._symbol(ZodSymbol, params);\n}\nexport const ZodUndefined = /*@__PURE__*/ core.$constructor(\"ZodUndefined\", (inst, def) => {\n core.$ZodUndefined.init(inst, def);\n ZodType.init(inst, def);\n inst._zod.processJSONSchema = (ctx, json, params) => processors.undefinedProcessor(inst, ctx, json, params);\n});\nfunction _undefined(params) {\n return core._undefined(ZodUndefined, params);\n}\nexport { _undefined as undefined };\nexport const ZodNull = /*@__PURE__*/ core.$constructor(\"ZodNull\", (inst, def) => {\n core.$ZodNull.init(inst, def);\n ZodType.init(inst, def);\n inst._zod.processJSONSchema = (ctx, json, params) => processors.nullProcessor(inst, ctx, json, params);\n});\nfunction _null(params) {\n return core._null(ZodNull, params);\n}\nexport { _null as null };\nexport const ZodAny = /*@__PURE__*/ core.$constructor(\"ZodAny\", (inst, def) => {\n core.$ZodAny.init(inst, def);\n ZodType.init(inst, def);\n inst._zod.processJSONSchema = (ctx, json, params) => processors.anyProcessor(inst, ctx, json, params);\n});\nexport function any() {\n return core._any(ZodAny);\n}\nexport const ZodUnknown = /*@__PURE__*/ core.$constructor(\"ZodUnknown\", (inst, def) => {\n core.$ZodUnknown.init(inst, def);\n ZodType.init(inst, def);\n inst._zod.processJSONSchema = (ctx, json, params) => processors.unknownProcessor(inst, ctx, json, params);\n});\nexport function unknown() {\n return core._unknown(ZodUnknown);\n}\nexport const ZodNever = /*@__PURE__*/ core.$constructor(\"ZodNever\", (inst, def) => {\n core.$ZodNever.init(inst, def);\n ZodType.init(inst, def);\n inst._zod.processJSONSchema = (ctx, json, params) => processors.neverProcessor(inst, ctx, json, params);\n});\nexport function never(params) {\n return core._never(ZodNever, params);\n}\nexport const ZodVoid = /*@__PURE__*/ core.$constructor(\"ZodVoid\", (inst, def) => {\n core.$ZodVoid.init(inst, def);\n ZodType.init(inst, def);\n inst._zod.processJSONSchema = (ctx, json, params) => processors.voidProcessor(inst, ctx, json, params);\n});\nfunction _void(params) {\n return core._void(ZodVoid, params);\n}\nexport { _void as void };\nexport const ZodDate = /*@__PURE__*/ core.$constructor(\"ZodDate\", (inst, def) => {\n core.$ZodDate.init(inst, def);\n ZodType.init(inst, def);\n inst._zod.processJSONSchema = (ctx, json, params) => processors.dateProcessor(inst, ctx, json, params);\n inst.min = (value, params) => inst.check(checks.gte(value, params));\n inst.max = (value, params) => inst.check(checks.lte(value, params));\n const c = inst._zod.bag;\n inst.minDate = c.minimum ? new Date(c.minimum) : null;\n inst.maxDate = c.maximum ? new Date(c.maximum) : null;\n});\nexport function date(params) {\n return core._date(ZodDate, params);\n}\nexport const ZodArray = /*@__PURE__*/ core.$constructor(\"ZodArray\", (inst, def) => {\n core.$ZodArray.init(inst, def);\n ZodType.init(inst, def);\n inst._zod.processJSONSchema = (ctx, json, params) => processors.arrayProcessor(inst, ctx, json, params);\n inst.element = def.element;\n inst.min = (minLength, params) => inst.check(checks.minLength(minLength, params));\n inst.nonempty = (params) => inst.check(checks.minLength(1, params));\n inst.max = (maxLength, params) => inst.check(checks.maxLength(maxLength, params));\n inst.length = (len, params) => inst.check(checks.length(len, params));\n inst.unwrap = () => inst.element;\n});\nexport function array(element, params) {\n return core._array(ZodArray, element, params);\n}\n// .keyof\nexport function keyof(schema) {\n const shape = schema._zod.def.shape;\n return _enum(Object.keys(shape));\n}\nexport const ZodObject = /*@__PURE__*/ core.$constructor(\"ZodObject\", (inst, def) => {\n core.$ZodObjectJIT.init(inst, def);\n ZodType.init(inst, def);\n inst._zod.processJSONSchema = (ctx, json, params) => processors.objectProcessor(inst, ctx, json, params);\n util.defineLazy(inst, \"shape\", () => {\n return def.shape;\n });\n inst.keyof = () => _enum(Object.keys(inst._zod.def.shape));\n inst.catchall = (catchall) => inst.clone({ ...inst._zod.def, catchall: catchall });\n inst.passthrough = () => inst.clone({ ...inst._zod.def, catchall: unknown() });\n inst.loose = () => inst.clone({ ...inst._zod.def, catchall: unknown() });\n inst.strict = () => inst.clone({ ...inst._zod.def, catchall: never() });\n inst.strip = () => inst.clone({ ...inst._zod.def, catchall: undefined });\n inst.extend = (incoming) => {\n return util.extend(inst, incoming);\n };\n inst.safeExtend = (incoming) => {\n return util.safeExtend(inst, incoming);\n };\n inst.merge = (other) => util.merge(inst, other);\n inst.pick = (mask) => util.pick(inst, mask);\n inst.omit = (mask) => util.omit(inst, mask);\n inst.partial = (...args) => util.partial(ZodOptional, inst, args[0]);\n inst.required = (...args) => util.required(ZodNonOptional, inst, args[0]);\n});\nexport function object(shape, params) {\n const def = {\n type: \"object\",\n shape: shape ?? {},\n ...util.normalizeParams(params),\n };\n return new ZodObject(def);\n}\n// strictObject\nexport function strictObject(shape, params) {\n return new ZodObject({\n type: \"object\",\n shape,\n catchall: never(),\n ...util.normalizeParams(params),\n });\n}\n// looseObject\nexport function looseObject(shape, params) {\n return new ZodObject({\n type: \"object\",\n shape,\n catchall: unknown(),\n ...util.normalizeParams(params),\n });\n}\nexport const ZodUnion = /*@__PURE__*/ core.$constructor(\"ZodUnion\", (inst, def) => {\n core.$ZodUnion.init(inst, def);\n ZodType.init(inst, def);\n inst._zod.processJSONSchema = (ctx, json, params) => processors.unionProcessor(inst, ctx, json, params);\n inst.options = def.options;\n});\nexport function union(options, params) {\n return new ZodUnion({\n type: \"union\",\n options: options,\n ...util.normalizeParams(params),\n });\n}\nexport const ZodXor = /*@__PURE__*/ core.$constructor(\"ZodXor\", (inst, def) => {\n ZodUnion.init(inst, def);\n core.$ZodXor.init(inst, def);\n inst._zod.processJSONSchema = (ctx, json, params) => processors.unionProcessor(inst, ctx, json, params);\n inst.options = def.options;\n});\n/** Creates an exclusive union (XOR) where exactly one option must match.\n * Unlike regular unions that succeed when any option matches, xor fails if\n * zero or more than one option matches the input. */\nexport function xor(options, params) {\n return new ZodXor({\n type: \"union\",\n options: options,\n inclusive: false,\n ...util.normalizeParams(params),\n });\n}\nexport const ZodDiscriminatedUnion = /*@__PURE__*/ core.$constructor(\"ZodDiscriminatedUnion\", (inst, def) => {\n ZodUnion.init(inst, def);\n core.$ZodDiscriminatedUnion.init(inst, def);\n});\nexport function discriminatedUnion(discriminator, options, params) {\n // const [options, params] = args;\n return new ZodDiscriminatedUnion({\n type: \"union\",\n options,\n discriminator,\n ...util.normalizeParams(params),\n });\n}\nexport const ZodIntersection = /*@__PURE__*/ core.$constructor(\"ZodIntersection\", (inst, def) => {\n core.$ZodIntersection.init(inst, def);\n ZodType.init(inst, def);\n inst._zod.processJSONSchema = (ctx, json, params) => processors.intersectionProcessor(inst, ctx, json, params);\n});\nexport function intersection(left, right) {\n return new ZodIntersection({\n type: \"intersection\",\n left: left,\n right: right,\n });\n}\nexport const ZodTuple = /*@__PURE__*/ core.$constructor(\"ZodTuple\", (inst, def) => {\n core.$ZodTuple.init(inst, def);\n ZodType.init(inst, def);\n inst._zod.processJSONSchema = (ctx, json, params) => processors.tupleProcessor(inst, ctx, json, params);\n inst.rest = (rest) => inst.clone({\n ...inst._zod.def,\n rest: rest,\n });\n});\nexport function tuple(items, _paramsOrRest, _params) {\n const hasRest = _paramsOrRest instanceof core.$ZodType;\n const params = hasRest ? _params : _paramsOrRest;\n const rest = hasRest ? _paramsOrRest : null;\n return new ZodTuple({\n type: \"tuple\",\n items: items,\n rest,\n ...util.normalizeParams(params),\n });\n}\nexport const ZodRecord = /*@__PURE__*/ core.$constructor(\"ZodRecord\", (inst, def) => {\n core.$ZodRecord.init(inst, def);\n ZodType.init(inst, def);\n inst._zod.processJSONSchema = (ctx, json, params) => processors.recordProcessor(inst, ctx, json, params);\n inst.keyType = def.keyType;\n inst.valueType = def.valueType;\n});\nexport function record(keyType, valueType, params) {\n return new ZodRecord({\n type: \"record\",\n keyType,\n valueType: valueType,\n ...util.normalizeParams(params),\n });\n}\n// type alksjf = core.output<core.$ZodRecordKey>;\nexport function partialRecord(keyType, valueType, params) {\n const k = core.clone(keyType);\n k._zod.values = undefined;\n return new ZodRecord({\n type: \"record\",\n keyType: k,\n valueType: valueType,\n ...util.normalizeParams(params),\n });\n}\nexport function looseRecord(keyType, valueType, params) {\n return new ZodRecord({\n type: \"record\",\n keyType,\n valueType: valueType,\n mode: \"loose\",\n ...util.normalizeParams(params),\n });\n}\nexport const ZodMap = /*@__PURE__*/ core.$constructor(\"ZodMap\", (inst, def) => {\n core.$ZodMap.init(inst, def);\n ZodType.init(inst, def);\n inst._zod.processJSONSchema = (ctx, json, params) => processors.mapProcessor(inst, ctx, json, params);\n inst.keyType = def.keyType;\n inst.valueType = def.valueType;\n inst.min = (...args) => inst.check(core._minSize(...args));\n inst.nonempty = (params) => inst.check(core._minSize(1, params));\n inst.max = (...args) => inst.check(core._maxSize(...args));\n inst.size = (...args) => inst.check(core._size(...args));\n});\nexport function map(keyType, valueType, params) {\n return new ZodMap({\n type: \"map\",\n keyType: keyType,\n valueType: valueType,\n ...util.normalizeParams(params),\n });\n}\nexport const ZodSet = /*@__PURE__*/ core.$constructor(\"ZodSet\", (inst, def) => {\n core.$ZodSet.init(inst, def);\n ZodType.init(inst, def);\n inst._zod.processJSONSchema = (ctx, json, params) => processors.setProcessor(inst, ctx, json, params);\n inst.min = (...args) => inst.check(core._minSize(...args));\n inst.nonempty = (params) => inst.check(core._minSize(1, params));\n inst.max = (...args) => inst.check(core._maxSize(...args));\n inst.size = (...args) => inst.check(core._size(...args));\n});\nexport function set(valueType, params) {\n return new ZodSet({\n type: \"set\",\n valueType: valueType,\n ...util.normalizeParams(params),\n });\n}\nexport const ZodEnum = /*@__PURE__*/ core.$constructor(\"ZodEnum\", (inst, def) => {\n core.$ZodEnum.init(inst, def);\n ZodType.init(inst, def);\n inst._zod.processJSONSchema = (ctx, json, params) => processors.enumProcessor(inst, ctx, json, params);\n inst.enum = def.entries;\n inst.options = Object.values(def.entries);\n const keys = new Set(Object.keys(def.entries));\n inst.extract = (values, params) => {\n const newEntries = {};\n for (const value of values) {\n if (keys.has(value)) {\n newEntries[value] = def.entries[value];\n }\n else\n throw new Error(`Key ${value} not found in enum`);\n }\n return new ZodEnum({\n ...def,\n checks: [],\n ...util.normalizeParams(params),\n entries: newEntries,\n });\n };\n inst.exclude = (values, params) => {\n const newEntries = { ...def.entries };\n for (const value of values) {\n if (keys.has(value)) {\n delete newEntries[value];\n }\n else\n throw new Error(`Key ${value} not found in enum`);\n }\n return new ZodEnum({\n ...def,\n checks: [],\n ...util.normalizeParams(params),\n entries: newEntries,\n });\n };\n});\nfunction _enum(values, params) {\n const entries = Array.isArray(values) ? Object.fromEntries(values.map((v) => [v, v])) : values;\n return new ZodEnum({\n type: \"enum\",\n entries,\n ...util.normalizeParams(params),\n });\n}\nexport { _enum as enum };\n/** @deprecated This API has been merged into `z.enum()`. Use `z.enum()` instead.\n *\n * ```ts\n * enum Colors { red, green, blue }\n * z.enum(Colors);\n * ```\n */\nexport function nativeEnum(entries, params) {\n return new ZodEnum({\n type: \"enum\",\n entries,\n ...util.normalizeParams(params),\n });\n}\nexport const ZodLiteral = /*@__PURE__*/ core.$constructor(\"ZodLiteral\", (inst, def) => {\n core.$ZodLiteral.init(inst, def);\n ZodType.init(inst, def);\n inst._zod.processJSONSchema = (ctx, json, params) => processors.literalProcessor(inst, ctx, json, params);\n inst.values = new Set(def.values);\n Object.defineProperty(inst, \"value\", {\n get() {\n if (def.values.length > 1) {\n throw new Error(\"This schema contains multiple valid literal values. Use `.values` instead.\");\n }\n return def.values[0];\n },\n });\n});\nexport function literal(value, params) {\n return new ZodLiteral({\n type: \"literal\",\n values: Array.isArray(value) ? value : [value],\n ...util.normalizeParams(params),\n });\n}\nexport const ZodFile = /*@__PURE__*/ core.$constructor(\"ZodFile\", (inst, def) => {\n core.$ZodFile.init(inst, def);\n ZodType.init(inst, def);\n inst._zod.processJSONSchema = (ctx, json, params) => processors.fileProcessor(inst, ctx, json, params);\n inst.min = (size, params) => inst.check(core._minSize(size, params));\n inst.max = (size, params) => inst.check(core._maxSize(size, params));\n inst.mime = (types, params) => inst.check(core._mime(Array.isArray(types) ? types : [types], params));\n});\nexport function file(params) {\n return core._file(ZodFile, params);\n}\nexport const ZodTransform = /*@__PURE__*/ core.$constructor(\"ZodTransform\", (inst, def) => {\n core.$ZodTransform.init(inst, def);\n ZodType.init(inst, def);\n inst._zod.processJSONSchema = (ctx, json, params) => processors.transformProcessor(inst, ctx, json, params);\n inst._zod.parse = (payload, _ctx) => {\n if (_ctx.direction === \"backward\") {\n throw new core.$ZodEncodeError(inst.constructor.name);\n }\n payload.addIssue = (issue) => {\n if (typeof issue === \"string\") {\n payload.issues.push(util.issue(issue, payload.value, def));\n }\n else {\n // for Zod 3 backwards compatibility\n const _issue = issue;\n if (_issue.fatal)\n _issue.continue = false;\n _issue.code ?? (_issue.code = \"custom\");\n _issue.input ?? (_issue.input = payload.value);\n _issue.inst ?? (_issue.inst = inst);\n // _issue.continue ??= true;\n payload.issues.push(util.issue(_issue));\n }\n };\n const output = def.transform(payload.value, payload);\n if (output instanceof Promise) {\n return output.then((output) => {\n payload.value = output;\n return payload;\n });\n }\n payload.value = output;\n return payload;\n };\n});\nexport function transform(fn) {\n return new ZodTransform({\n type: \"transform\",\n transform: fn,\n });\n}\nexport const ZodOptional = /*@__PURE__*/ core.$constructor(\"ZodOptional\", (inst, def) => {\n core.$ZodOptional.init(inst, def);\n ZodType.init(inst, def);\n inst._zod.processJSONSchema = (ctx, json, params) => processors.optionalProcessor(inst, ctx, json, params);\n inst.unwrap = () => inst._zod.def.innerType;\n});\nexport function optional(innerType) {\n return new ZodOptional({\n type: \"optional\",\n innerType: innerType,\n });\n}\nexport const ZodExactOptional = /*@__PURE__*/ core.$constructor(\"ZodExactOptional\", (inst, def) => {\n core.$ZodExactOptional.init(inst, def);\n ZodType.init(inst, def);\n inst._zod.processJSONSchema = (ctx, json, params) => processors.optionalProcessor(inst, ctx, json, params);\n inst.unwrap = () => inst._zod.def.innerType;\n});\nexport function exactOptional(innerType) {\n return new ZodExactOptional({\n type: \"optional\",\n innerType: innerType,\n });\n}\nexport const ZodNullable = /*@__PURE__*/ core.$constructor(\"ZodNullable\", (inst, def) => {\n core.$ZodNullable.init(inst, def);\n ZodType.init(inst, def);\n inst._zod.processJSONSchema = (ctx, json, params) => processors.nullableProcessor(inst, ctx, json, params);\n inst.unwrap = () => inst._zod.def.innerType;\n});\nexport function nullable(innerType) {\n return new ZodNullable({\n type: \"nullable\",\n innerType: innerType,\n });\n}\n// nullish\nexport function nullish(innerType) {\n return optional(nullable(innerType));\n}\nexport const ZodDefault = /*@__PURE__*/ core.$constructor(\"ZodDefault\", (inst, def) => {\n core.$ZodDefault.init(inst, def);\n ZodType.init(inst, def);\n inst._zod.processJSONSchema = (ctx, json, params) => processors.defaultProcessor(inst, ctx, json, params);\n inst.unwrap = () => inst._zod.def.innerType;\n inst.removeDefault = inst.unwrap;\n});\nexport function _default(innerType, defaultValue) {\n return new ZodDefault({\n type: \"default\",\n innerType: innerType,\n get defaultValue() {\n return typeof defaultValue === \"function\" ? defaultValue() : util.shallowClone(defaultValue);\n },\n });\n}\nexport const ZodPrefault = /*@__PURE__*/ core.$constructor(\"ZodPrefault\", (inst, def) => {\n core.$ZodPrefault.init(inst, def);\n ZodType.init(inst, def);\n inst._zod.processJSONSchema = (ctx, json, params) => processors.prefaultProcessor(inst, ctx, json, params);\n inst.unwrap = () => inst._zod.def.innerType;\n});\nexport function prefault(innerType, defaultValue) {\n return new ZodPrefault({\n type: \"prefault\",\n innerType: innerType,\n get defaultValue() {\n return typeof defaultValue === \"function\" ? defaultValue() : util.shallowClone(defaultValue);\n },\n });\n}\nexport const ZodNonOptional = /*@__PURE__*/ core.$constructor(\"ZodNonOptional\", (inst, def) => {\n core.$ZodNonOptional.init(inst, def);\n ZodType.init(inst, def);\n inst._zod.processJSONSchema = (ctx, json, params) => processors.nonoptionalProcessor(inst, ctx, json, params);\n inst.unwrap = () => inst._zod.def.innerType;\n});\nexport function nonoptional(innerType, params) {\n return new ZodNonOptional({\n type: \"nonoptional\",\n innerType: innerType,\n ...util.normalizeParams(params),\n });\n}\nexport const ZodSuccess = /*@__PURE__*/ core.$constructor(\"ZodSuccess\", (inst, def) => {\n core.$ZodSuccess.init(inst, def);\n ZodType.init(inst, def);\n inst._zod.processJSONSchema = (ctx, json, params) => processors.successProcessor(inst, ctx, json, params);\n inst.unwrap = () => inst._zod.def.innerType;\n});\nexport function success(innerType) {\n return new ZodSuccess({\n type: \"success\",\n innerType: innerType,\n });\n}\nexport const ZodCatch = /*@__PURE__*/ core.$constructor(\"ZodCatch\", (inst, def) => {\n core.$ZodCatch.init(inst, def);\n ZodType.init(inst, def);\n inst._zod.processJSONSchema = (ctx, json, params) => processors.catchProcessor(inst, ctx, json, params);\n inst.unwrap = () => inst._zod.def.innerType;\n inst.removeCatch = inst.unwrap;\n});\nfunction _catch(innerType, catchValue) {\n return new ZodCatch({\n type: \"catch\",\n innerType: innerType,\n catchValue: (typeof catchValue === \"function\" ? catchValue : () => catchValue),\n });\n}\nexport { _catch as catch };\nexport const ZodNaN = /*@__PURE__*/ core.$constructor(\"ZodNaN\", (inst, def) => {\n core.$ZodNaN.init(inst, def);\n ZodType.init(inst, def);\n inst._zod.processJSONSchema = (ctx, json, params) => processors.nanProcessor(inst, ctx, json, params);\n});\nexport function nan(params) {\n return core._nan(ZodNaN, params);\n}\nexport const ZodPipe = /*@__PURE__*/ core.$constructor(\"ZodPipe\", (inst, def) => {\n core.$ZodPipe.init(inst, def);\n ZodType.init(inst, def);\n inst._zod.processJSONSchema = (ctx, json, params) => processors.pipeProcessor(inst, ctx, json, params);\n inst.in = def.in;\n inst.out = def.out;\n});\nexport function pipe(in_, out) {\n return new ZodPipe({\n type: \"pipe\",\n in: in_,\n out: out,\n // ...util.normalizeParams(params),\n });\n}\nexport const ZodCodec = /*@__PURE__*/ core.$constructor(\"ZodCodec\", (inst, def) => {\n ZodPipe.init(inst, def);\n core.$ZodCodec.init(inst, def);\n});\nexport function codec(in_, out, params) {\n return new ZodCodec({\n type: \"pipe\",\n in: in_,\n out: out,\n transform: params.decode,\n reverseTransform: params.encode,\n });\n}\nexport const ZodReadonly = /*@__PURE__*/ core.$constructor(\"ZodReadonly\", (inst, def) => {\n core.$ZodReadonly.init(inst, def);\n ZodType.init(inst, def);\n inst._zod.processJSONSchema = (ctx, json, params) => processors.readonlyProcessor(inst, ctx, json, params);\n inst.unwrap = () => inst._zod.def.innerType;\n});\nexport function readonly(innerType) {\n return new ZodReadonly({\n type: \"readonly\",\n innerType: innerType,\n });\n}\nexport const ZodTemplateLiteral = /*@__PURE__*/ core.$constructor(\"ZodTemplateLiteral\", (inst, def) => {\n core.$ZodTemplateLiteral.init(inst, def);\n ZodType.init(inst, def);\n inst._zod.processJSONSchema = (ctx, json, params) => processors.templateLiteralProcessor(inst, ctx, json, params);\n});\nexport function templateLiteral(parts, params) {\n return new ZodTemplateLiteral({\n type: \"template_literal\",\n parts,\n ...util.normalizeParams(params),\n });\n}\nexport const ZodLazy = /*@__PURE__*/ core.$constructor(\"ZodLazy\", (inst, def) => {\n core.$ZodLazy.init(inst, def);\n ZodType.init(inst, def);\n inst._zod.processJSONSchema = (ctx, json, params) => processors.lazyProcessor(inst, ctx, json, params);\n inst.unwrap = () => inst._zod.def.getter();\n});\nexport function lazy(getter) {\n return new ZodLazy({\n type: \"lazy\",\n getter: getter,\n });\n}\nexport const ZodPromise = /*@__PURE__*/ core.$constructor(\"ZodPromise\", (inst, def) => {\n core.$ZodPromise.init(inst, def);\n ZodType.init(inst, def);\n inst._zod.processJSONSchema = (ctx, json, params) => processors.promiseProcessor(inst, ctx, json, params);\n inst.unwrap = () => inst._zod.def.innerType;\n});\nexport function promise(innerType) {\n return new ZodPromise({\n type: \"promise\",\n innerType: innerType,\n });\n}\nexport const ZodFunction = /*@__PURE__*/ core.$constructor(\"ZodFunction\", (inst, def) => {\n core.$ZodFunction.init(inst, def);\n ZodType.init(inst, def);\n inst._zod.processJSONSchema = (ctx, json, params) => processors.functionProcessor(inst, ctx, json, params);\n});\nexport function _function(params) {\n return new ZodFunction({\n type: \"function\",\n input: Array.isArray(params?.input) ? tuple(params?.input) : (params?.input ?? array(unknown())),\n output: params?.output ?? unknown(),\n });\n}\nexport { _function as function };\nexport const ZodCustom = /*@__PURE__*/ core.$constructor(\"ZodCustom\", (inst, def) => {\n core.$ZodCustom.init(inst, def);\n ZodType.init(inst, def);\n inst._zod.processJSONSchema = (ctx, json, params) => processors.customProcessor(inst, ctx, json, params);\n});\n// custom checks\nexport function check(fn) {\n const ch = new core.$ZodCheck({\n check: \"custom\",\n // ...util.normalizeParams(params),\n });\n ch._zod.check = fn;\n return ch;\n}\nexport function custom(fn, _params) {\n return core._custom(ZodCustom, fn ?? (() => true), _params);\n}\nexport function refine(fn, _params = {}) {\n return core._refine(ZodCustom, fn, _params);\n}\n// superRefine\nexport function superRefine(fn) {\n return core._superRefine(fn);\n}\n// Re-export describe and meta from core\nexport const describe = core.describe;\nexport const meta = core.meta;\nfunction _instanceof(cls, params = {}) {\n const inst = new ZodCustom({\n type: \"custom\",\n check: \"custom\",\n fn: (data) => data instanceof cls,\n abort: true,\n ...util.normalizeParams(params),\n });\n inst._zod.bag.Class = cls;\n // Override check to emit invalid_type instead of custom\n inst._zod.check = (payload) => {\n if (!(payload.value instanceof cls)) {\n payload.issues.push({\n code: \"invalid_type\",\n expected: cls.name,\n input: payload.value,\n inst,\n path: [...(inst._zod.def.path ?? [])],\n });\n }\n };\n return inst;\n}\nexport { _instanceof as instanceof };\n// stringbool\nexport const stringbool = (...args) => core._stringbool({\n Codec: ZodCodec,\n Boolean: ZodBoolean,\n String: ZodString,\n}, ...args);\nexport function json(params) {\n const jsonSchema = lazy(() => {\n return union([string(params), number(), boolean(), _null(), array(jsonSchema), record(string(), jsonSchema)]);\n });\n return jsonSchema;\n}\n// preprocess\n// /** @deprecated Use `z.pipe()` and `z.transform()` instead. */\nexport function preprocess(fn, schema) {\n return pipe(transform(fn), schema);\n}\n","import type {\n CredentialRequirement,\n CredentialSessionService,\n NodeConfigBase,\n NodeExecutionContext,\n NodeId,\n} from \"@codemation/core\";\n\nimport { CredentialResolverFactory } from \"@codemation/core/bootstrap\";\n\n/**\n * Builds a {@link NodeExecutionContext} whose identity for credential binding and `getCredential`\n * is a **connection-owned** workflow node id (`ConnectionNodeIdFactory` in `@codemation/core`),\n * not the executing parent node. Use for LLM slots, tool slots, or any connection-scoped owner.\n */\nexport class ConnectionCredentialExecutionContextFactory {\n private readonly credentialResolverFactory: CredentialResolverFactory;\n\n constructor(credentialSessions: CredentialSessionService) {\n this.credentialResolverFactory = new CredentialResolverFactory(credentialSessions);\n }\n\n forConnectionNode<TConfig extends NodeConfigBase>(\n ctx: NodeExecutionContext<TConfig>,\n args: Readonly<{\n connectionNodeId: NodeId;\n getCredentialRequirements: () => ReadonlyArray<CredentialRequirement>;\n }>,\n ): NodeExecutionContext<TConfig> {\n const stubConfig = { getCredentialRequirements: args.getCredentialRequirements } as NodeConfigBase;\n const getCredential = this.credentialResolverFactory.create(ctx.workflowId, args.connectionNodeId, stubConfig);\n return {\n ...ctx,\n nodeId: args.connectionNodeId,\n getCredential,\n };\n }\n}\n","import type { CredentialSessionService, Item, Items, NodeExecutionContext, ZodSchemaAny } from \"@codemation/core\";\nimport { injectable } from \"@codemation/core\";\n\nimport { isInteropZodSchema } from \"@langchain/core/utils/types\";\nimport { toJsonSchema } from \"@langchain/core/utils/json_schema\";\nimport { DynamicStructuredTool } from \"@langchain/core/tools\";\nimport { toJSONSchema } from \"zod/v4/core\";\n\nimport { ConnectionCredentialExecutionContextFactory } from \"./ConnectionCredentialExecutionContextFactory\";\nimport type { ResolvedTool } from \"./aiAgentSupport.types\";\n\n/**\n * LangChain adapters and credential context wiring for {@link AIAgentNode}.\n * Lives in a `*Factory.ts` composition-root module so construction stays explicit and testable.\n */\n@injectable()\nexport class AIAgentExecutionHelpersFactory {\n createConnectionCredentialExecutionContextFactory(\n credentialSessions: CredentialSessionService,\n ): ConnectionCredentialExecutionContextFactory {\n return new ConnectionCredentialExecutionContextFactory(credentialSessions);\n }\n\n createDynamicStructuredTool(\n entry: ResolvedTool,\n toolCredentialContext: NodeExecutionContext<any>,\n item: Item,\n itemIndex: number,\n items: Items,\n ): DynamicStructuredTool {\n if (entry.runtime.inputSchema == null) {\n throw new Error(\n `Cannot create LangChain tool \"${entry.config.name}\": missing inputSchema (broken tool runtime resolution).`,\n );\n }\n const schemaForOpenAi = this.normalizeToolInputSchemaForOpenAiDynamicStructuredTool(\n entry.config.name,\n entry.runtime.inputSchema,\n );\n return new DynamicStructuredTool({\n name: entry.config.name,\n description: entry.config.description ?? entry.runtime.defaultDescription,\n schema: schemaForOpenAi as unknown as ZodSchemaAny,\n func: async (input) => {\n const result = await entry.runtime.execute({\n config: entry.config,\n input,\n ctx: toolCredentialContext,\n item,\n itemIndex,\n items,\n });\n return JSON.stringify(result);\n },\n });\n }\n\n /**\n * Produces a plain JSON Schema object for OpenAI tool parameters and LangChain tool invocation:\n * - **Zod** → `toJSONSchema(..., { target: \"draft-07\" })` so shapes match what `@cfworker/json-schema`\n * expects (`required` must be an array; draft 2020-12 output can break validation).\n * - Otherwise LangChain `toJsonSchema` (Standard Schema + JSON passthrough); if the result is still Zod\n * (duplicate `zod` copies), fall back to Zod `toJSONSchema` with draft-07.\n * - Strip root `$schema` for OpenAI; normalize invalid `required` keywords for cfworker; ensure `properties`.\n */\n private normalizeToolInputSchemaForOpenAiDynamicStructuredTool(\n toolName: string,\n inputSchema: ZodSchemaAny,\n ): Record<string, unknown> {\n const draft07Params = { target: \"draft-07\" as const };\n let converted: unknown;\n if (isInteropZodSchema(inputSchema)) {\n converted = toJSONSchema(inputSchema as unknown as Parameters<typeof toJSONSchema>[0], draft07Params);\n } else {\n converted = toJsonSchema(inputSchema);\n if (isInteropZodSchema(converted)) {\n converted = toJSONSchema(inputSchema as unknown as Parameters<typeof toJSONSchema>[0], draft07Params);\n }\n }\n const record = converted as Record<string, unknown>;\n const { $schema: _draftSchemaOmitted, ...rest } = record;\n if (rest.type !== \"object\") {\n throw new Error(\n `Cannot create LangChain tool \"${toolName}\": tool input schema must be a JSON Schema object type (got type=${String(rest.type)}).`,\n );\n }\n if (rest.properties !== undefined && (typeof rest.properties !== \"object\" || Array.isArray(rest.properties))) {\n throw new Error(\n `Cannot create LangChain tool \"${toolName}\": tool input schema \"properties\" must be an object (got ${JSON.stringify(rest.properties)}).`,\n );\n }\n if (rest.properties === undefined) {\n rest.properties = {};\n }\n this.sanitizeJsonSchemaRequiredKeywordsForCfworker(rest);\n return rest;\n }\n\n /**\n * `@cfworker/json-schema` iterates `schema.required` with `for...of`; it must be a string array or absent.\n */\n private sanitizeJsonSchemaRequiredKeywordsForCfworker(node: unknown): void {\n if (!node || typeof node !== \"object\" || Array.isArray(node)) {\n return;\n }\n const o = node as Record<string, unknown>;\n const req = o.required;\n if (req !== undefined && !Array.isArray(req)) {\n delete o.required;\n } else if (Array.isArray(req)) {\n const strings = req.filter((x): x is string => typeof x === \"string\");\n if (strings.length === 0) {\n delete o.required;\n } else if (strings.length !== req.length) {\n o.required = strings;\n }\n }\n const props = o.properties;\n if (props && typeof props === \"object\" && !Array.isArray(props)) {\n for (const v of Object.values(props)) {\n this.sanitizeJsonSchemaRequiredKeywordsForCfworker(v);\n }\n }\n for (const key of [\"allOf\", \"anyOf\", \"oneOf\"] as const) {\n const branch = o[key];\n if (Array.isArray(branch)) {\n for (const sub of branch) {\n this.sanitizeJsonSchemaRequiredKeywordsForCfworker(sub);\n }\n }\n }\n if (o.if) this.sanitizeJsonSchemaRequiredKeywordsForCfworker(o.if);\n if (o.then) this.sanitizeJsonSchemaRequiredKeywordsForCfworker(o.then);\n if (o.else) this.sanitizeJsonSchemaRequiredKeywordsForCfworker(o.else);\n if (o.not) this.sanitizeJsonSchemaRequiredKeywordsForCfworker(o.not);\n if (o.items) this.sanitizeJsonSchemaRequiredKeywordsForCfworker(o.items);\n if (Array.isArray(o.prefixItems)) {\n for (const sub of o.prefixItems) {\n this.sanitizeJsonSchemaRequiredKeywordsForCfworker(sub);\n }\n }\n }\n}\n","import type {\n MultiInputNode,\n Node,\n NodeExecutionContext,\n NodeOutputs,\n NodeResolver,\n NodeBackedToolConfig,\n ToolExecuteArgs,\n ZodSchemaAny,\n} from \"@codemation/core\";\nimport { CoreTokens, inject, injectable } from \"@codemation/core\";\n\n@injectable()\nexport class NodeBackedToolRuntime {\n constructor(\n @inject(CoreTokens.NodeResolver)\n private readonly nodeResolver: NodeResolver,\n ) {}\n\n async execute(\n config: NodeBackedToolConfig<any, ZodSchemaAny, ZodSchemaAny>,\n args: ToolExecuteArgs,\n ): Promise<unknown> {\n const nodeInput = config.toNodeItem({\n input: args.input,\n item: args.item,\n itemIndex: args.itemIndex,\n items: args.items,\n ctx: args.ctx,\n node: config.node,\n });\n const nodeCtx = {\n ...args.ctx,\n config: config.node,\n } as NodeExecutionContext<any>;\n const resolvedNode = this.nodeResolver.resolve(config.node.type);\n const outputs = await this.executeResolvedNode(resolvedNode, nodeInput, nodeCtx);\n return config.toToolOutput({\n input: args.input,\n item: args.item,\n itemIndex: args.itemIndex,\n items: args.items,\n ctx: args.ctx,\n node: config.node,\n outputs,\n });\n }\n\n private async executeResolvedNode(\n resolvedNode: unknown,\n nodeInput: ToolExecuteArgs[\"item\"],\n ctx: NodeExecutionContext<any>,\n ): Promise<NodeOutputs> {\n if (this.isMultiInputNode(resolvedNode)) {\n return await resolvedNode.executeMulti({ in: [nodeInput] }, ctx);\n }\n if (this.isNode(resolvedNode)) {\n return await resolvedNode.execute([nodeInput], ctx);\n }\n throw new Error(`Node-backed tool expected a runnable node instance for \"${ctx.config.name ?? ctx.nodeId}\".`);\n }\n\n private isNode(value: unknown): value is Node<any> {\n return typeof value === \"object\" && value !== null && \"execute\" in value;\n }\n\n private isMultiInputNode(value: unknown): value is MultiInputNode<any> {\n return typeof value === \"object\" && value !== null && \"executeMulti\" in value;\n }\n}\n","import type {\n AgentToolCall,\n Item,\n NodeInputsByPort,\n ToolConfig,\n ToolExecuteArgs,\n ZodSchemaAny,\n} from \"@codemation/core\";\nimport type { DynamicStructuredTool } from \"@langchain/core/tools\";\n\nexport class AgentItemPortMap {\n static fromItem(item: Item): NodeInputsByPort {\n return { in: [item] };\n }\n}\n\nexport type ResolvedTool = Readonly<{\n config: ToolConfig;\n runtime: Readonly<{\n defaultDescription: string;\n inputSchema: ZodSchemaAny;\n execute(args: ToolExecuteArgs<ToolConfig, unknown>): Promise<unknown>;\n }>;\n}>;\n\nexport type ItemScopedToolBinding = Readonly<{\n config: ToolConfig;\n langChainTool: DynamicStructuredTool;\n}>;\n\nexport type PlannedToolCall = Readonly<{\n binding: ItemScopedToolBinding;\n toolCall: AgentToolCall;\n invocationIndex: number;\n nodeId: string;\n}>;\n\nexport type ExecutedToolCall = Readonly<{\n toolName: string;\n toolCallId: string;\n result: unknown;\n serialized: string;\n}>;\n","import type {\n AgentGuardrailConfig,\n AgentToolCall,\n ChatModelConfig,\n ChatModelFactory,\n Item,\n ItemNode,\n Items,\n JsonValue,\n LangChainChatModelLike,\n NodeExecutionContext,\n NodeInputsByPort,\n Tool,\n ToolConfig,\n ZodSchemaAny,\n} from \"@codemation/core\";\n\nimport type { CredentialSessionService } from \"@codemation/core\";\nimport {\n AgentGuardrailDefaults,\n AgentMessageConfigNormalizer,\n ConnectionInvocationIdFactory,\n ConnectionNodeIdFactory,\n CoreTokens,\n NodeBackedToolConfig,\n inject,\n node,\n type NodeResolver,\n} from \"@codemation/core\";\n\nimport { AIMessage, type BaseMessage } from \"@langchain/core/messages\";\nimport { z } from \"zod\";\n\nimport type { AIAgent } from \"./AIAgentConfig\";\nimport { AIAgentExecutionHelpersFactory } from \"./AIAgentExecutionHelpersFactory\";\nimport { ConnectionCredentialExecutionContextFactory } from \"./ConnectionCredentialExecutionContextFactory\";\nimport { AgentMessageFactory } from \"./AgentMessageFactory\";\nimport { AgentOutputFactory } from \"./AgentOutputFactory\";\nimport { AgentToolCallPortMap } from \"./AgentToolCallPortMapFactory\";\nimport { NodeBackedToolRuntime } from \"./NodeBackedToolRuntime\";\nimport {\n AgentItemPortMap,\n type ExecutedToolCall,\n type ItemScopedToolBinding,\n type PlannedToolCall,\n type ResolvedTool,\n} from \"./aiAgentSupport.types\";\n\ntype ResolvedGuardrails = Required<Pick<AgentGuardrailConfig, \"maxTurns\" | \"onTurnLimitReached\">> &\n Pick<AgentGuardrailConfig, \"modelInvocationOptions\">;\n\n/** Everything needed to run the agent loop for one item (shared across items in the same activation). */\ninterface PreparedAgentExecution {\n readonly ctx: NodeExecutionContext<AIAgent<any, any>>;\n readonly model: LangChainChatModelLike;\n readonly resolvedTools: ReadonlyArray<ResolvedTool>;\n readonly guardrails: ResolvedGuardrails;\n readonly languageModelConnectionNodeId: string;\n}\n\n@node({ packageName: \"@codemation/core-nodes\" })\nexport class AIAgentNode implements ItemNode<AIAgent<any, any>, unknown, unknown> {\n kind = \"node\" as const;\n outputPorts = [\"main\"] as const;\n /**\n * Engine applies {@link RunnableNodeConfig.mapInput} + parse before {@link #executeOne}. Prefer modeling\n * prompts as {@code { messages: [{ role, content }, ...] }} so persisted inputs are visible in the UI.\n */\n readonly inputSchema = z.unknown();\n\n private readonly connectionCredentialExecutionContextFactory: ConnectionCredentialExecutionContextFactory;\n /** One resolved model/tools bundle per activation context (same ctx across items in a batch). */\n private readonly preparedByExecutionContext = new WeakMap<\n NodeExecutionContext<AIAgent<any, any>>,\n Promise<PreparedAgentExecution>\n >();\n\n constructor(\n @inject(CoreTokens.NodeResolver)\n private readonly nodeResolver: NodeResolver,\n @inject(CoreTokens.CredentialSessionService)\n credentialSessions: CredentialSessionService,\n @inject(NodeBackedToolRuntime)\n private readonly nodeBackedToolRuntime: NodeBackedToolRuntime,\n @inject(AIAgentExecutionHelpersFactory)\n private readonly executionHelpers: AIAgentExecutionHelpersFactory,\n ) {\n this.connectionCredentialExecutionContextFactory =\n this.executionHelpers.createConnectionCredentialExecutionContextFactory(credentialSessions);\n }\n\n async executeOne(args: {\n input: unknown;\n item: Item;\n itemIndex: number;\n items: Items;\n ctx: NodeExecutionContext<AIAgent<any, any>>;\n }): Promise<unknown> {\n const prepared = await this.getOrPrepareExecution(args.ctx);\n const itemWithMappedJson = { ...args.item, json: args.input };\n const resultItem = await this.runAgentForItem(prepared, itemWithMappedJson, args.itemIndex, args.items);\n return resultItem.json;\n }\n\n private async getOrPrepareExecution(ctx: NodeExecutionContext<AIAgent<any, any>>): Promise<PreparedAgentExecution> {\n let pending = this.preparedByExecutionContext.get(ctx);\n if (!pending) {\n pending = this.prepareExecution(ctx);\n this.preparedByExecutionContext.set(ctx, pending);\n }\n try {\n return await pending;\n } catch (error) {\n this.preparedByExecutionContext.delete(ctx);\n throw error;\n }\n }\n\n /**\n * Resolves the chat model and tools once per activation, then reuses for every item in the batch.\n */\n private async prepareExecution(ctx: NodeExecutionContext<AIAgent<any, any>>): Promise<PreparedAgentExecution> {\n const chatModelFactory = this.nodeResolver.resolve(ctx.config.chatModel.type) as ChatModelFactory<ChatModelConfig>;\n const languageModelCredentialContext = this.connectionCredentialExecutionContextFactory.forConnectionNode(ctx, {\n connectionNodeId: ConnectionNodeIdFactory.languageModelConnectionNodeId(ctx.nodeId),\n getCredentialRequirements: () => ctx.config.chatModel.getCredentialRequirements?.() ?? [],\n });\n const model = await Promise.resolve(\n chatModelFactory.create({ config: ctx.config.chatModel, ctx: languageModelCredentialContext }),\n );\n return {\n ctx,\n model,\n resolvedTools: this.resolveTools(ctx.config.tools ?? []),\n guardrails: this.resolveGuardrails(ctx.config.guardrails),\n languageModelConnectionNodeId: ConnectionNodeIdFactory.languageModelConnectionNodeId(ctx.nodeId),\n };\n }\n\n /**\n * One item: build prompts, optionally bind tools, run the multi-turn loop, map the final model message to workflow JSON.\n */\n private async runAgentForItem(\n prepared: PreparedAgentExecution,\n item: Item,\n itemIndex: number,\n items: Items,\n ): Promise<Item> {\n const { ctx } = prepared;\n const itemInputsByPort = AgentItemPortMap.fromItem(item);\n const itemScopedTools = this.createItemScopedTools(prepared.resolvedTools, ctx, item, itemIndex, items);\n const conversation: BaseMessage[] = [...this.createPromptMessages(item, itemIndex, items, ctx)];\n const modelWithTools = this.bindToolsToModel(prepared.model, itemScopedTools);\n const finalResponse = await this.runTurnLoopUntilFinalAnswer({\n prepared,\n itemInputsByPort,\n itemScopedTools,\n conversation,\n modelWithTools,\n });\n return this.buildOutputItem(item, finalResponse);\n }\n\n /**\n * Repeatedly invokes the model until it returns without tool calls, or guardrails end the loop.\n */\n private async runTurnLoopUntilFinalAnswer(args: {\n prepared: PreparedAgentExecution;\n itemInputsByPort: NodeInputsByPort;\n itemScopedTools: ReadonlyArray<ItemScopedToolBinding>;\n conversation: BaseMessage[];\n modelWithTools: LangChainChatModelLike;\n }): Promise<AIMessage> {\n const { prepared, itemInputsByPort, itemScopedTools, conversation, modelWithTools } = args;\n const { ctx, guardrails, languageModelConnectionNodeId } = prepared;\n\n let finalResponse: AIMessage | undefined;\n\n for (let turn = 1; turn <= guardrails.maxTurns; turn++) {\n const response = await this.invokeModel(\n modelWithTools,\n languageModelConnectionNodeId,\n conversation,\n ctx,\n itemInputsByPort,\n guardrails.modelInvocationOptions,\n );\n finalResponse = response;\n\n const toolCalls = AgentMessageFactory.extractToolCalls(response);\n if (toolCalls.length === 0) {\n break;\n }\n\n if (this.cannotExecuteAnotherToolRound(turn, guardrails)) {\n this.finishOrThrowWhenTurnCapHitWithToolCalls(ctx, guardrails);\n break;\n }\n\n const plannedToolCalls = this.planToolCalls(itemScopedTools, toolCalls, ctx.nodeId);\n await this.markQueuedTools(plannedToolCalls, ctx);\n const executedToolCalls = await this.executeToolCalls(plannedToolCalls, ctx);\n this.appendAssistantAndToolMessages(conversation, response, executedToolCalls);\n }\n\n if (!finalResponse) {\n throw new Error(`AIAgent \"${ctx.config.name ?? ctx.nodeId}\" did not produce a model response.`);\n }\n return finalResponse;\n }\n\n private cannotExecuteAnotherToolRound(turn: number, guardrails: ResolvedGuardrails): boolean {\n return turn >= guardrails.maxTurns;\n }\n\n private finishOrThrowWhenTurnCapHitWithToolCalls(\n ctx: NodeExecutionContext<AIAgent<any, any>>,\n guardrails: ResolvedGuardrails,\n ): void {\n if (guardrails.onTurnLimitReached === \"respondWithLastMessage\") {\n return;\n }\n throw new Error(\n `AIAgent \"${ctx.config.name ?? ctx.nodeId}\" reached maxTurns=${guardrails.maxTurns} before producing a final response.`,\n );\n }\n\n private appendAssistantAndToolMessages(\n conversation: BaseMessage[],\n assistantMessage: AIMessage,\n executedToolCalls: ReadonlyArray<ExecutedToolCall>,\n ): void {\n conversation.push(\n assistantMessage,\n ...executedToolCalls.map((toolCall) =>\n AgentMessageFactory.createToolMessage(toolCall.toolCallId, toolCall.serialized),\n ),\n );\n }\n\n private buildOutputItem(item: Item, finalResponse: AIMessage): Item {\n return AgentOutputFactory.replaceJson(\n item,\n AgentOutputFactory.fromAgentContent(AgentMessageFactory.extractContent(finalResponse)),\n );\n }\n\n private bindToolsToModel(\n model: LangChainChatModelLike,\n itemScopedTools: ReadonlyArray<ItemScopedToolBinding>,\n ): LangChainChatModelLike {\n if (itemScopedTools.length === 0 || !model.bindTools) {\n return model;\n }\n return model.bindTools(itemScopedTools.map((entry) => entry.langChainTool));\n }\n\n private resolveTools(toolConfigs: ReadonlyArray<ToolConfig>): ReadonlyArray<ResolvedTool> {\n const resolvedTools = toolConfigs.map((config) => ({\n config,\n runtime: this.resolveToolRuntime(config),\n }));\n\n const names = new Set<string>();\n for (const entry of resolvedTools) {\n if (names.has(entry.config.name)) throw new Error(`Duplicate tool name on AIAgent: ${entry.config.name}`);\n names.add(entry.config.name);\n }\n return resolvedTools;\n }\n\n private createItemScopedTools(\n tools: ReadonlyArray<ResolvedTool>,\n ctx: NodeExecutionContext<AIAgent<any, any>>,\n item: Item,\n itemIndex: number,\n items: Items,\n ): ReadonlyArray<ItemScopedToolBinding> {\n return tools.map((entry) => {\n const toolCredentialContext = this.connectionCredentialExecutionContextFactory.forConnectionNode(ctx, {\n connectionNodeId: ConnectionNodeIdFactory.toolConnectionNodeId(ctx.nodeId, entry.config.name),\n getCredentialRequirements: () => entry.config.getCredentialRequirements?.() ?? [],\n });\n const langChainTool = this.executionHelpers.createDynamicStructuredTool(\n entry,\n toolCredentialContext,\n item,\n itemIndex,\n items,\n );\n\n return { config: entry.config, langChainTool };\n });\n }\n\n private async invokeModel(\n model: LangChainChatModelLike,\n nodeId: string,\n messages: ReadonlyArray<BaseMessage>,\n ctx: NodeExecutionContext<AIAgent<any, any>>,\n inputsByPort: NodeInputsByPort,\n options?: AgentGuardrailConfig[\"modelInvocationOptions\"],\n ): Promise<AIMessage> {\n await ctx.nodeState?.markQueued({ nodeId, activationId: ctx.activationId, inputsByPort });\n await ctx.nodeState?.markRunning({ nodeId, activationId: ctx.activationId, inputsByPort });\n try {\n const response = (await model.invoke(messages, options)) as AIMessage;\n await ctx.nodeState?.markCompleted({\n nodeId,\n activationId: ctx.activationId,\n inputsByPort,\n outputs: AgentOutputFactory.fromUnknown({\n content: AgentMessageFactory.extractContent(response),\n }),\n });\n const content = AgentMessageFactory.extractContent(response);\n await ctx.nodeState?.appendConnectionInvocation({\n invocationId: ConnectionInvocationIdFactory.create(),\n connectionNodeId: nodeId,\n parentAgentNodeId: ctx.nodeId,\n parentAgentActivationId: ctx.activationId,\n status: \"completed\",\n managedInput: this.summarizeLlmMessages(messages),\n managedOutput: content,\n finishedAt: new Date().toISOString(),\n });\n return response;\n } catch (error) {\n throw await this.failTrackedNodeInvocation(error, nodeId, ctx, inputsByPort, this.summarizeLlmMessages(messages));\n }\n }\n\n private async markQueuedTools(\n plannedToolCalls: ReadonlyArray<PlannedToolCall>,\n ctx: NodeExecutionContext<AIAgent<any, any>>,\n ): Promise<void> {\n for (const plannedToolCall of plannedToolCalls) {\n await ctx.nodeState?.markQueued({\n nodeId: plannedToolCall.nodeId,\n activationId: ctx.activationId,\n inputsByPort: AgentToolCallPortMap.fromInput(plannedToolCall.toolCall.input ?? {}),\n });\n }\n }\n\n private async executeToolCalls(\n plannedToolCalls: ReadonlyArray<PlannedToolCall>,\n ctx: NodeExecutionContext<AIAgent<any, any>>,\n ): Promise<ReadonlyArray<ExecutedToolCall>> {\n const results = await Promise.allSettled(\n plannedToolCalls.map(async (plannedToolCall) => {\n const toolCallInputsByPort = AgentToolCallPortMap.fromInput(plannedToolCall.toolCall.input ?? {});\n await ctx.nodeState?.markRunning({\n nodeId: plannedToolCall.nodeId,\n activationId: ctx.activationId,\n inputsByPort: toolCallInputsByPort,\n });\n try {\n const serialized = await plannedToolCall.binding.langChainTool.invoke(plannedToolCall.toolCall.input ?? {});\n const result = this.parseToolOutput(serialized);\n await ctx.nodeState?.markCompleted({\n nodeId: plannedToolCall.nodeId,\n activationId: ctx.activationId,\n inputsByPort: toolCallInputsByPort,\n outputs: AgentOutputFactory.fromUnknown(result),\n });\n await ctx.nodeState?.appendConnectionInvocation({\n invocationId: ConnectionInvocationIdFactory.create(),\n connectionNodeId: plannedToolCall.nodeId,\n parentAgentNodeId: ctx.nodeId,\n parentAgentActivationId: ctx.activationId,\n status: \"completed\",\n managedInput: this.toolCallInputToJson(plannedToolCall.toolCall.input),\n managedOutput: this.resultToJsonValue(result),\n finishedAt: new Date().toISOString(),\n });\n return {\n toolName: plannedToolCall.binding.config.name,\n toolCallId: plannedToolCall.toolCall.id ?? plannedToolCall.binding.config.name,\n serialized,\n result,\n } satisfies ExecutedToolCall;\n } catch (error) {\n throw await this.failTrackedNodeInvocation(\n error,\n plannedToolCall.nodeId,\n ctx,\n toolCallInputsByPort,\n this.toolCallInputToJson(plannedToolCall.toolCall.input),\n );\n }\n }),\n );\n\n const rejected = results.find((result) => result.status === \"rejected\");\n if (rejected?.status === \"rejected\") {\n throw rejected.reason instanceof Error ? rejected.reason : new Error(String(rejected.reason));\n }\n\n return results\n .filter((result): result is PromiseFulfilledResult<ExecutedToolCall> => result.status === \"fulfilled\")\n .map((result) => result.value);\n }\n\n private planToolCalls(\n bindings: ReadonlyArray<ItemScopedToolBinding>,\n toolCalls: ReadonlyArray<AgentToolCall>,\n parentNodeId: string,\n ): ReadonlyArray<PlannedToolCall> {\n const invocationCountByToolName = new Map<string, number>();\n return toolCalls.map((toolCall) => {\n const binding = bindings.find((entry) => entry.config.name === toolCall.name);\n if (!binding) throw new Error(`Unknown tool requested by model: ${toolCall.name}`);\n const invocationIndex = (invocationCountByToolName.get(binding.config.name) ?? 0) + 1;\n invocationCountByToolName.set(binding.config.name, invocationIndex);\n return {\n binding,\n toolCall,\n invocationIndex,\n nodeId: ConnectionNodeIdFactory.toolConnectionNodeId(parentNodeId, binding.config.name),\n } satisfies PlannedToolCall;\n });\n }\n\n private parseToolOutput(serialized: unknown): unknown {\n if (typeof serialized !== \"string\") return serialized;\n try {\n return JSON.parse(serialized);\n } catch {\n return serialized;\n }\n }\n\n private async failTrackedNodeInvocation(\n error: unknown,\n nodeId: string,\n ctx: NodeExecutionContext<AIAgent<any, any>>,\n inputsByPort: NodeInputsByPort,\n managedInput?: JsonValue,\n ): Promise<Error> {\n const effectiveError = error instanceof Error ? error : new Error(String(error));\n await ctx.nodeState?.markFailed({\n nodeId,\n activationId: ctx.activationId,\n inputsByPort,\n error: effectiveError,\n });\n await ctx.nodeState?.appendConnectionInvocation({\n invocationId: ConnectionInvocationIdFactory.create(),\n connectionNodeId: nodeId,\n parentAgentNodeId: ctx.nodeId,\n parentAgentActivationId: ctx.activationId,\n status: \"failed\",\n managedInput,\n error: {\n message: effectiveError.message,\n name: effectiveError.name,\n stack: effectiveError.stack,\n },\n finishedAt: new Date().toISOString(),\n });\n return effectiveError;\n }\n\n private summarizeLlmMessages(messages: ReadonlyArray<BaseMessage>): JsonValue {\n const last = messages[messages.length - 1];\n const preview =\n typeof last?.content === \"string\"\n ? last.content\n : last?.content !== undefined\n ? JSON.stringify(last.content)\n : \"\";\n return {\n messageCount: messages.length,\n lastMessagePreview: preview.slice(0, 4000),\n };\n }\n\n private toolCallInputToJson(input: unknown): JsonValue | undefined {\n return this.resultToJsonValue(input);\n }\n\n private resultToJsonValue(value: unknown): JsonValue | undefined {\n if (value === undefined) {\n return undefined;\n }\n const json = JSON.stringify(value);\n return JSON.parse(json) as JsonValue;\n }\n\n private createPromptMessages(\n item: Item,\n itemIndex: number,\n items: Items,\n ctx: NodeExecutionContext<AIAgent<any, any>>,\n ): ReadonlyArray<BaseMessage> {\n return AgentMessageFactory.createPromptMessages(\n AgentMessageConfigNormalizer.resolveFromInputOrConfig(item.json, ctx.config, {\n item,\n itemIndex,\n items,\n ctx,\n }),\n );\n }\n\n private resolveToolRuntime(config: ToolConfig): ResolvedTool[\"runtime\"] {\n if (this.isNodeBackedToolConfig(config)) {\n const inputSchema = config.getInputSchema();\n if (inputSchema == null) {\n throw new Error(\n `AIAgent tool \"${config.name}\": node-backed tool is missing inputSchema (cannot build LangChain tool).`,\n );\n }\n return {\n defaultDescription: `Run workflow node \"${config.node.name ?? config.name}\" as an AI tool.`,\n inputSchema,\n execute: async (args) => await this.nodeBackedToolRuntime.execute(config, args),\n };\n }\n const tool = this.nodeResolver.resolve(config.type) as Tool<ToolConfig, ZodSchemaAny, ZodSchemaAny>;\n if (tool.inputSchema == null) {\n throw new Error(`AIAgent tool \"${config.name}\": plugin tool \"${String(config.type)}\" is missing inputSchema.`);\n }\n return {\n defaultDescription: tool.defaultDescription,\n inputSchema: tool.inputSchema,\n execute: async (args) => await Promise.resolve(tool.execute(args)),\n };\n }\n\n /**\n * Consumer apps can resolve two copies of `@codemation/core`, breaking `instanceof NodeBackedToolConfig` and\n * sending node-backed tools down the plugin-tool branch with `inputSchema: undefined` (LangChain then crashes in\n * json-schema validation). {@link NodeBackedToolConfig#toolKind} is stable across copies.\n */\n private isNodeBackedToolConfig(config: ToolConfig): config is NodeBackedToolConfig<any, any, any> {\n return (\n config instanceof NodeBackedToolConfig ||\n (typeof config === \"object\" && config !== null && (config as { toolKind?: unknown }).toolKind === \"nodeBacked\")\n );\n }\n\n private resolveGuardrails(guardrails: AgentGuardrailConfig | undefined): ResolvedGuardrails {\n const maxTurns = guardrails?.maxTurns ?? AgentGuardrailDefaults.maxTurns;\n if (!Number.isInteger(maxTurns) || maxTurns < 1) {\n throw new Error(`AIAgent maxTurns must be a positive integer. Received: ${String(maxTurns)}`);\n }\n return {\n maxTurns,\n onTurnLimitReached: guardrails?.onTurnLimitReached ?? AgentGuardrailDefaults.onTurnLimitReached,\n modelInvocationOptions: guardrails?.modelInvocationOptions,\n };\n }\n}\n","import {\n RetryPolicy,\n type AgentGuardrailConfig,\n type AgentMessageConfig,\n type AgentNodeConfig,\n type ChatModelConfig,\n type ItemInputMapper,\n type RetryPolicySpec,\n type RunnableNodeConfig,\n type ToolConfig,\n type TypeToken,\n} from \"@codemation/core\";\nimport type { ZodType } from \"zod\";\n\nimport { AIAgentNode } from \"./AIAgentNode\";\n\nexport interface AIAgentOptions<TInputJson = unknown, _TOutputJson = unknown, TWireJson = TInputJson> {\n readonly name: string;\n readonly messages: AgentMessageConfig<TInputJson>;\n readonly chatModel: ChatModelConfig;\n readonly tools?: ReadonlyArray<ToolConfig>;\n readonly id?: string;\n readonly retryPolicy?: RetryPolicySpec;\n readonly guardrails?: AgentGuardrailConfig;\n /** Engine applies with {@link RunnableNodeConfig.inputSchema} before {@link AIAgentNode.executeOne}. */\n readonly inputSchema?: ZodType<TInputJson>;\n /** Per-item mapper before validation; use with {@link inputSchema} so persisted run inputs show the prompt payload. */\n readonly mapInput?: ItemInputMapper<TWireJson, TInputJson>;\n}\n\n/**\n * AI agent: credential bindings are keyed to connection-owned LLM/tool node ids (ConnectionNodeIdFactory),\n * not to the agent workflow node id.\n */\nexport class AIAgent<TInputJson = unknown, TOutputJson = unknown, TWireJson = TInputJson>\n implements RunnableNodeConfig<TInputJson, TOutputJson, TWireJson>, AgentNodeConfig<TInputJson, TOutputJson, TWireJson>\n{\n readonly kind = \"node\" as const;\n readonly type: TypeToken<unknown> = AIAgentNode;\n readonly execution = { hint: \"local\" } as const;\n readonly icon = \"lucide:bot\" as const;\n readonly name: string;\n readonly messages: AgentMessageConfig<TInputJson>;\n readonly chatModel: ChatModelConfig;\n readonly tools: ReadonlyArray<ToolConfig>;\n readonly id?: string;\n readonly retryPolicy: RetryPolicySpec;\n readonly guardrails?: AgentGuardrailConfig;\n readonly inputSchema?: ZodType<TInputJson>;\n readonly mapInput?: ItemInputMapper<TWireJson, TInputJson>;\n\n constructor(options: AIAgentOptions<TInputJson, TOutputJson, TWireJson>) {\n this.name = options.name;\n this.messages = options.messages;\n this.chatModel = options.chatModel;\n this.tools = options.tools ?? [];\n this.id = options.id;\n this.retryPolicy = options.retryPolicy ?? RetryPolicy.defaultForAiAgent;\n this.guardrails = options.guardrails;\n this.inputSchema = options.inputSchema;\n this.mapInput = options.mapInput;\n }\n}\n","import type { Items, NodeOutputs } from \"@codemation/core\";\n\nexport class CallbackResultNormalizer {\n static toNodeOutputs(result: Items | void, items: Items): NodeOutputs {\n return { main: result ?? items };\n }\n}\n","import type { Items, Node, NodeExecutionContext, NodeOutputs } from \"@codemation/core\";\n\nimport { node } from \"@codemation/core\";\n\nimport { Callback } from \"./CallbackNodeFactory\";\nimport { CallbackResultNormalizer } from \"./CallbackResultNormalizerFactory\";\n\n@node({ packageName: \"@codemation/core-nodes\" })\nexport class CallbackNode implements Node<Callback<any, any>> {\n kind = \"node\" as const;\n outputPorts = [\"main\"] as const;\n\n async execute(items: Items, ctx: NodeExecutionContext<Callback<any, any>>): Promise<NodeOutputs> {\n const result = await ctx.config.callback(items, ctx);\n return CallbackResultNormalizer.toNodeOutputs(result, items);\n }\n}\n","import type { Items, NodeExecutionContext, RunnableNodeConfig, TypeToken } from \"@codemation/core\";\n\nimport { CallbackNode } from \"./CallbackNode\";\n\nexport type CallbackHandler<\n TInputJson = unknown,\n TOutputJson = TInputJson,\n TConfig extends Callback<TInputJson, TOutputJson> = Callback<TInputJson, TOutputJson>,\n> = (\n items: Items<TInputJson>,\n ctx: NodeExecutionContext<TConfig>,\n) => Promise<Items<TOutputJson> | void> | Items<TOutputJson> | void;\n\nexport class Callback<TInputJson = unknown, TOutputJson = TInputJson> implements RunnableNodeConfig<\n TInputJson,\n TOutputJson\n> {\n readonly kind = \"node\" as const;\n readonly type: TypeToken<unknown> = CallbackNode;\n readonly execution = { hint: \"local\" } as const;\n readonly icon = \"lucide:braces\" as const;\n\n constructor(\n public readonly name: string = \"Callback\",\n public readonly callback: CallbackHandler<TInputJson, TOutputJson> = Callback.defaultCallback as CallbackHandler<\n TInputJson,\n TOutputJson\n >,\n public readonly id?: string,\n ) {}\n\n private static defaultCallback<TItemJson>(items: Items<TItemJson>): Items<TItemJson> {\n return items;\n }\n}\n\nexport { CallbackNode } from \"./CallbackNode\";\nexport { CallbackResultNormalizer } from \"./CallbackResultNormalizerFactory\";\n","import type { Item, Items, Node, NodeExecutionContext, NodeOutputs } from \"@codemation/core\";\n\nimport { node } from \"@codemation/core\";\n\nimport type { HttpRequestDownloadMode } from \"./httpRequest\";\nimport { HttpRequest } from \"./httpRequest\";\n\n@node({ packageName: \"@codemation/core-nodes\" })\nexport class HttpRequestNode implements Node<HttpRequest<any, any>> {\n readonly kind = \"node\" as const;\n readonly outputPorts = [\"main\"] as const;\n\n async execute(items: Items, ctx: NodeExecutionContext<HttpRequest<any, any>>): Promise<NodeOutputs> {\n const output: Item[] = [];\n for (const item of items) {\n output.push(await this.executeItem(item, ctx));\n }\n return { main: output };\n }\n\n private async executeItem(item: Item, ctx: NodeExecutionContext<HttpRequest<any, any>>): Promise<Item> {\n const url = this.resolveUrl(item, ctx);\n const response = await fetch(url, {\n method: ctx.config.method,\n });\n const headers = this.readHeaders(response.headers);\n const mimeType = this.resolveMimeType(headers);\n const bodyBinaryName = ctx.config.binaryName;\n const shouldAttachBody = this.shouldAttachBody(ctx.config.downloadMode, mimeType);\n const outputJson: Readonly<Record<string, unknown>> = {\n url,\n method: ctx.config.method,\n ok: response.ok,\n status: response.status,\n statusText: response.statusText,\n mimeType,\n headers,\n ...(shouldAttachBody ? { bodyBinaryName } : {}),\n };\n\n let outputItem: Item = {\n json: outputJson,\n };\n if (!shouldAttachBody) {\n return outputItem;\n }\n\n const attachment = await ctx.binary.attach({\n name: bodyBinaryName,\n body: response.body\n ? (response.body as unknown as Parameters<typeof ctx.binary.attach>[0][\"body\"])\n : new Uint8Array(await response.arrayBuffer()),\n mimeType,\n filename: this.resolveFilename(url, headers),\n });\n outputItem = ctx.binary.withAttachment(outputItem, bodyBinaryName, attachment);\n return outputItem;\n }\n\n private resolveUrl(item: Item, ctx: NodeExecutionContext<HttpRequest<any, any>>): string {\n const json = this.asRecord(item.json);\n const candidate = json[ctx.config.urlField];\n if (typeof candidate !== \"string\" || candidate.trim() === \"\") {\n throw new Error(`HttpRequest node expected item.json.${ctx.config.urlField} to contain a URL string.`);\n }\n return candidate;\n }\n\n private asRecord(value: unknown): Readonly<Record<string, unknown>> {\n if (value && typeof value === \"object\" && !Array.isArray(value)) {\n return value as Readonly<Record<string, unknown>>;\n }\n return { input: value };\n }\n\n private readHeaders(headers: Headers): Readonly<Record<string, string>> {\n const values: Record<string, string> = {};\n headers.forEach((value, key) => {\n values[key] = value;\n });\n return values;\n }\n\n private resolveMimeType(headers: Readonly<Record<string, string>>): string {\n const contentType = headers[\"content-type\"];\n if (!contentType) {\n return \"application/octet-stream\";\n }\n return contentType.split(\";\")[0]?.trim() || \"application/octet-stream\";\n }\n\n private shouldAttachBody(mode: HttpRequestDownloadMode, mimeType: string): boolean {\n if (mode === \"always\") {\n return true;\n }\n if (mode === \"never\") {\n return false;\n }\n return mimeType.startsWith(\"image/\") || mimeType.startsWith(\"audio/\") || mimeType.startsWith(\"video/\");\n }\n\n private resolveFilename(url: string, headers: Readonly<Record<string, string>>): string | undefined {\n const contentDisposition = headers[\"content-disposition\"];\n const fromDisposition = this.readFilenameFromContentDisposition(contentDisposition);\n if (fromDisposition) {\n return fromDisposition;\n }\n const pathname = new URL(url).pathname;\n const value = pathname.split(\"/\").at(-1);\n return value && value.trim() ? value : undefined;\n }\n\n private readFilenameFromContentDisposition(value: string | undefined): string | undefined {\n if (!value) {\n return undefined;\n }\n const parts = value.split(\";\");\n for (const part of parts) {\n const trimmed = part.trim();\n if (!trimmed.startsWith(\"filename=\")) {\n continue;\n }\n return trimmed.slice(\"filename=\".length).replace(/^\"|\"$/g, \"\");\n }\n return undefined;\n }\n}\n","import { RetryPolicy, type RetryPolicySpec, type RunnableNodeConfig, type TypeToken } from \"@codemation/core\";\n\nimport { HttpRequestNode } from \"./HttpRequestNodeFactory\";\n\nexport type HttpRequestDownloadMode = \"auto\" | \"always\" | \"never\";\n\n/** JSON emitted by {@link HttpRequest} — response metadata only (input item fields are not passed through). */\nexport type HttpRequestOutputJson = Readonly<{\n url: string;\n method: string;\n ok: boolean;\n status: number;\n statusText: string;\n mimeType: string;\n headers: Readonly<Record<string, string>>;\n bodyBinaryName?: string;\n}>;\n\nexport class HttpRequest<\n TInputJson = Readonly<{ url?: string }>,\n TOutputJson = HttpRequestOutputJson,\n> implements RunnableNodeConfig<TInputJson, TOutputJson> {\n readonly kind = \"node\" as const;\n readonly type: TypeToken<unknown> = HttpRequestNode;\n readonly execution = { hint: \"local\" } as const;\n\n constructor(\n public readonly name: string,\n public readonly args: Readonly<{\n method?: string;\n urlField?: string;\n binaryName?: string;\n downloadMode?: HttpRequestDownloadMode;\n id?: string;\n }> = {},\n public readonly retryPolicy: RetryPolicySpec = RetryPolicy.defaultForHttp,\n ) {}\n\n get id(): string | undefined {\n return this.args.id;\n }\n\n get method(): string {\n return (this.args.method ?? \"GET\").toUpperCase();\n }\n\n get urlField(): string {\n return this.args.urlField ?? \"url\";\n }\n\n get binaryName(): string {\n return this.args.binaryName ?? \"body\";\n }\n\n get downloadMode(): HttpRequestDownloadMode {\n return this.args.downloadMode ?? \"auto\";\n }\n}\n\nexport { HttpRequestNode } from \"./HttpRequestNodeFactory\";\n","import type { Items, Node, NodeExecutionContext, NodeOutputs } from \"@codemation/core\";\n\nimport { node } from \"@codemation/core\";\n\nimport type { Aggregate } from \"./aggregate\";\n\n@node({ packageName: \"@codemation/core-nodes\" })\nexport class AggregateNode implements Node<Aggregate<any, any>> {\n kind = \"node\" as const;\n outputPorts = [\"main\"] as const;\n\n async execute(items: Items, ctx: NodeExecutionContext<Aggregate<any, any>>): Promise<NodeOutputs> {\n if (items.length === 0) {\n return { main: [] };\n }\n const json = await Promise.resolve(ctx.config.aggregate(items as Items, ctx));\n return { main: [{ json }] };\n }\n}\n","import type { Items, NodeExecutionContext, RunnableNodeConfig, TypeToken } from \"@codemation/core\";\n\nimport { AggregateNode } from \"./AggregateNode\";\n\nexport class Aggregate<TIn = unknown, TOut = unknown> implements RunnableNodeConfig<TIn, TOut> {\n readonly kind = \"node\" as const;\n readonly type: TypeToken<unknown> = AggregateNode;\n readonly execution = { hint: \"local\" } as const;\n readonly icon = \"lucide:layers\" as const;\n\n constructor(\n public readonly name: string,\n public readonly aggregate: (\n items: Items<TIn>,\n ctx: NodeExecutionContext<Aggregate<TIn, TOut>>,\n ) => TOut | Promise<TOut>,\n public readonly id?: string,\n ) {}\n}\n\nexport { AggregateNode } from \"./AggregateNode\";\n","import type { Item, Items, Node, NodeExecutionContext, NodeOutputs } from \"@codemation/core\";\n\nimport { node } from \"@codemation/core\";\n\nimport type { Filter } from \"./filter\";\n\n@node({ packageName: \"@codemation/core-nodes\" })\nexport class FilterNode implements Node<Filter<any>> {\n kind = \"node\" as const;\n outputPorts = [\"main\"] as const;\n\n async execute(items: Items, ctx: NodeExecutionContext<Filter<any>>): Promise<NodeOutputs> {\n const out: Item[] = [];\n for (let i = 0; i < items.length; i++) {\n const item = items[i] as Item;\n if (ctx.config.predicate(item as Item, i, items as Items, ctx)) {\n out.push(item);\n }\n }\n return { main: out };\n }\n}\n","import type { Item, Items, NodeExecutionContext, RunnableNodeConfig, TypeToken } from \"@codemation/core\";\n\nimport { FilterNode } from \"./FilterNode\";\n\nexport class Filter<TIn = unknown> implements RunnableNodeConfig<TIn, TIn> {\n readonly kind = \"node\" as const;\n readonly type: TypeToken<unknown> = FilterNode;\n readonly execution = { hint: \"local\" } as const;\n readonly icon = \"lucide:filter\" as const;\n\n constructor(\n public readonly name: string,\n public readonly predicate: (\n item: Item<TIn>,\n index: number,\n items: Items<TIn>,\n ctx: NodeExecutionContext<Filter<TIn>>,\n ) => boolean,\n public readonly id?: string,\n ) {}\n}\n\nexport { FilterNode } from \"./FilterNode\";\n","import type { Item, Items, Node, NodeExecutionContext, NodeOutputs } from \"@codemation/core\";\n\nimport { node } from \"@codemation/core\";\n\nimport { If } from \"./if\";\n\n@node({ packageName: \"@codemation/core-nodes\" })\nexport class IfNode implements Node<If<any>> {\n kind = \"node\" as const;\n outputPorts = [\"true\", \"false\"] as const;\n\n async execute(items: Items, ctx: NodeExecutionContext<If<any>>): Promise<NodeOutputs> {\n const t: Item[] = [];\n const f: Item[] = [];\n for (let i = 0; i < items.length; i++) {\n const item = items[i] as Item<unknown>;\n const metaBase = (\n item.meta && typeof item.meta === \"object\" ? (item.meta as Record<string, unknown>) : {}\n ) as Record<string, unknown>;\n const cmBase =\n metaBase._cm && typeof metaBase._cm === \"object\"\n ? (metaBase._cm as Record<string, unknown>)\n : ({} as Record<string, unknown>);\n const originIndex = typeof cmBase.originIndex === \"number\" ? (cmBase.originIndex as number) : i;\n const tagged: Item = {\n ...item,\n meta: { ...metaBase, _cm: { ...cmBase, originIndex } },\n paired: [{ nodeId: ctx.nodeId, output: \"$in\", itemIndex: originIndex }, ...(item.paired ?? [])],\n };\n const ok = ctx.config.predicate(item, i, items, ctx);\n (ok ? t : f).push(tagged);\n }\n return { true: t, false: f };\n }\n}\n","import type { Item, Items, NodeExecutionContext, RunnableNodeConfig, TypeToken } from \"@codemation/core\";\n\nimport { IfNode } from \"./IfNode\";\n\nexport class If<TInputJson = unknown> implements RunnableNodeConfig<TInputJson, TInputJson> {\n readonly kind = \"node\" as const;\n readonly type: TypeToken<unknown> = IfNode;\n readonly execution = { hint: \"local\" } as const;\n readonly icon = \"lucide:split\" as const;\n constructor(\n public readonly name: string,\n public readonly predicate: (\n item: Item<TInputJson>,\n index: number,\n items: Items<TInputJson>,\n ctx: NodeExecutionContext<If<TInputJson>>,\n ) => boolean,\n public readonly id?: string,\n ) {}\n}\n\nexport { IfNode } from \"./IfNode\";\n","import type { Item, Items, Node, NodeExecutionContext, NodeOutputs } from \"@codemation/core\";\n\nimport { node } from \"@codemation/core\";\n\nimport type { Split } from \"./split\";\n\n@node({ packageName: \"@codemation/core-nodes\" })\nexport class SplitNode implements Node<Split<any, any>> {\n kind = \"node\" as const;\n outputPorts = [\"main\"] as const;\n\n async execute(items: Items, ctx: NodeExecutionContext<Split<any, any>>): Promise<NodeOutputs> {\n const out: Item[] = [];\n for (let i = 0; i < items.length; i++) {\n const item = items[i] as Item;\n const elements = ctx.config.getElements(item, ctx);\n for (let j = 0; j < elements.length; j++) {\n out.push({\n ...item,\n json: elements[j],\n });\n }\n }\n return { main: out };\n }\n}\n","import type { Item, NodeExecutionContext, RunnableNodeConfig, TypeToken } from \"@codemation/core\";\n\nimport { SplitNode } from \"./SplitNode\";\n\nexport class Split<TIn = unknown, TElem = unknown> implements RunnableNodeConfig<TIn, TElem> {\n readonly kind = \"node\" as const;\n readonly type: TypeToken<unknown> = SplitNode;\n readonly execution = { hint: \"local\" } as const;\n /**\n * When splitting yields zero items for a batch, downstream single-input nodes still run once with an empty batch.\n * Mirrors {@link MapData}'s empty-output behavior.\n */\n readonly continueWhenEmptyOutput = true as const;\n readonly icon = \"lucide:ungroup\" as const;\n\n constructor(\n public readonly name: string,\n public readonly getElements: (item: Item<TIn>, ctx: NodeExecutionContext<Split<TIn, TElem>>) => readonly TElem[],\n public readonly id?: string,\n ) {}\n}\n\nexport { SplitNode } from \"./SplitNode\";\n","import type {\n Items,\n NodeExecutionContext,\n NodeOutputs,\n TestableTriggerNode,\n TriggerSetupContext,\n TriggerTestItemsContext,\n} from \"@codemation/core\";\n\nimport { node } from \"@codemation/core\";\n\nimport { ManualTrigger } from \"./ManualTriggerFactory\";\n\n/**\n * Setup is intentionally a no-op: the engine host can run workflows manually\n * by calling `engine.runWorkflow(workflow, triggerNodeId, items)`.\n */\n@node({ packageName: \"@codemation/core-nodes\" })\nexport class ManualTriggerNode implements TestableTriggerNode<ManualTrigger<any>> {\n kind = \"trigger\" as const;\n outputPorts = [\"main\"] as const;\n async setup(_ctx: TriggerSetupContext<ManualTrigger<any>>): Promise<undefined> {\n return undefined;\n }\n\n async getTestItems(ctx: TriggerTestItemsContext<ManualTrigger<any>>): Promise<Items> {\n return this.resolveManualItems([], ctx.config);\n }\n\n async execute(items: Items, ctx: NodeExecutionContext<ManualTrigger<any>>): Promise<NodeOutputs> {\n return { main: this.resolveManualItems(items, ctx.config) };\n }\n\n private resolveManualItems(items: Items, config: ManualTrigger<any>): Items {\n return items.length > 0 ? items : (config.defaultItems ?? []);\n }\n}\n","import type { Items, TriggerNodeConfig, TypeToken } from \"@codemation/core\";\n\nimport { ItemsInputNormalizer } from \"@codemation/core\";\n\nimport { ManualTriggerNode } from \"./ManualTriggerNode\";\n\ntype ManualTriggerDefaultValue<TOutputJson> = Items<TOutputJson> | ReadonlyArray<TOutputJson> | TOutputJson;\n\nexport class ManualTrigger<TOutputJson = unknown> implements TriggerNodeConfig<TOutputJson> {\n private static readonly itemsInputNormalizer = new ItemsInputNormalizer();\n readonly kind = \"trigger\" as const;\n readonly type: TypeToken<unknown> = ManualTriggerNode;\n readonly icon = \"lucide:play\" as const;\n readonly defaultItems?: Items<TOutputJson>;\n readonly id?: string;\n /** Manual runs often emit an empty batch; still schedule downstream by default. */\n readonly continueWhenEmptyOutput = true as const;\n\n constructor(name?: string, id?: string);\n constructor(name: string, defaultItems: ManualTriggerDefaultValue<TOutputJson>, id?: string);\n constructor(\n public readonly name: string = \"Manual trigger\",\n defaultItemsOrId?: ManualTriggerDefaultValue<TOutputJson> | string,\n id?: string,\n ) {\n this.defaultItems = ManualTrigger.resolveDefaultItems(defaultItemsOrId);\n this.id = ManualTrigger.resolveId(defaultItemsOrId, id);\n }\n\n private static resolveDefaultItems<TOutputJson>(\n value: ManualTriggerDefaultValue<TOutputJson> | string | undefined,\n ): Items<TOutputJson> | undefined {\n if (typeof value === \"string\" || value === undefined) {\n return undefined;\n }\n return this.itemsInputNormalizer.normalize(value) as Items<TOutputJson>;\n }\n\n private static resolveId<TOutputJson>(\n value: ManualTriggerDefaultValue<TOutputJson> | string | undefined,\n id: string | undefined,\n ): string | undefined {\n return typeof value === \"string\" ? value : id;\n }\n}\n\nexport { ManualTriggerNode } from \"./ManualTriggerNode\";\n","import type { Item, ItemNode, Items, NodeExecutionContext } from \"@codemation/core\";\n\nimport { node } from \"@codemation/core\";\nimport { z } from \"zod\";\n\nimport { MapData } from \"./mapData\";\n\n@node({ packageName: \"@codemation/core-nodes\" })\nexport class MapDataNode implements ItemNode<MapData<any, any>, unknown, unknown> {\n kind = \"node\" as const;\n outputPorts = [\"main\"] as const;\n readonly inputSchema = z.unknown();\n\n async executeOne(args: {\n input: unknown;\n item: Item;\n itemIndex: number;\n items: Items;\n ctx: NodeExecutionContext<MapData<any, any>>;\n }): Promise<unknown> {\n return args.ctx.config.map(args.item, args.ctx);\n }\n}\n","import type { Item, NodeExecutionContext, RunnableNodeConfig, TypeToken } from \"@codemation/core\";\n\nimport { MapDataNode } from \"./MapDataNode\";\n\nexport class MapData<TInputJson = unknown, TOutputJson = unknown> implements RunnableNodeConfig<\n TInputJson,\n TOutputJson\n> {\n readonly kind = \"node\" as const;\n readonly type: TypeToken<unknown> = MapDataNode;\n readonly execution = { hint: \"local\" } as const;\n /** Zero mapped items should still allow downstream nodes to run. */\n readonly continueWhenEmptyOutput = true as const;\n constructor(\n public readonly name: string,\n public readonly map: (\n item: Item<TInputJson>,\n ctx: NodeExecutionContext<MapData<TInputJson, TOutputJson>>,\n ) => TOutputJson,\n public readonly id?: string,\n ) {}\n}\n\nexport { MapDataNode } from \"./MapDataNode\";\n","import type { InputPortKey, Item, Items } from \"@codemation/core\";\n\nexport function getOriginIndex(item: Item): number | undefined {\n const meta = item.meta as Record<string, unknown> | undefined;\n const cm = meta?._cm as Record<string, unknown> | undefined;\n const v = cm?.originIndex;\n return typeof v === \"number\" && Number.isFinite(v) ? v : undefined;\n}\n\nexport function orderedInputs(\n inputsByPort: Readonly<Record<InputPortKey, Items>>,\n prefer?: ReadonlyArray<InputPortKey>,\n): InputPortKey[] {\n const keys = Object.keys(inputsByPort);\n const preferred = (prefer ?? []).filter((k) => keys.includes(k));\n const rest = keys.filter((k) => !preferred.includes(k)).sort();\n return [...preferred, ...rest];\n}\n","import type { InputPortKey, Item, Items, MultiInputNode, NodeExecutionContext, NodeOutputs } from \"@codemation/core\";\n\nimport { node } from \"@codemation/core\";\n\nimport type { Merge } from \"./merge\";\nimport { getOriginIndex, orderedInputs } from \"./mergeExecutionUtils.types\";\n\n@node({ packageName: \"@codemation/core-nodes\" })\nexport class MergeNode implements MultiInputNode<Merge<any, any>> {\n kind = \"node\" as const;\n outputPorts = [\"main\"] as const;\n\n async executeMulti(\n inputsByPort: Readonly<Record<InputPortKey, Items>>,\n ctx: NodeExecutionContext<Merge<any, any>>,\n ): Promise<NodeOutputs> {\n const order = orderedInputs(inputsByPort, ctx.config.cfg.prefer);\n\n if (ctx.config.cfg.mode === \"append\") {\n const out: Item[] = [];\n for (const k of order) out.push(...(inputsByPort[k] ?? []));\n return { main: out };\n }\n\n if (ctx.config.cfg.mode === \"mergeByPosition\") {\n let maxLen = 0;\n for (const k of order) maxLen = Math.max(maxLen, (inputsByPort[k] ?? []).length);\n\n const out: Item[] = [];\n for (let i = 0; i < maxLen; i++) {\n const json: Record<string, unknown> = {};\n const paired: any[] = [];\n let meta: Record<string, unknown> | undefined;\n\n for (const k of order) {\n const item = (inputsByPort[k] ?? [])[i];\n json[k] = item?.json;\n if (item?.paired) paired.push(...item.paired);\n if (!meta && item?.meta) meta = { ...(item.meta as any) };\n }\n\n const merged: any = { json };\n if (paired.length > 0) merged.paired = paired;\n if (meta) merged.meta = meta;\n out.push(merged as Item);\n }\n\n return { main: out };\n }\n\n // passThrough (default): for each origin index, take first available input (deterministic input precedence).\n const chosenByOrigin = new Map<number, Item>();\n const fallback: Item[] = [];\n\n for (const k of order) {\n for (const item of inputsByPort[k] ?? []) {\n const origin = getOriginIndex(item);\n if (origin === undefined) {\n fallback.push(item);\n continue;\n }\n if (!chosenByOrigin.has(origin)) chosenByOrigin.set(origin, item);\n }\n }\n\n const out: Item[] = [];\n const origins = Array.from(chosenByOrigin.keys()).sort((a, b) => a - b);\n for (const o of origins) out.push(chosenByOrigin.get(o)!);\n out.push(...fallback);\n\n return { main: out };\n }\n}\n","import type { InputPortKey, RunnableNodeConfig, TypeToken } from \"@codemation/core\";\n\nimport { MergeNode } from \"./MergeNode\";\n\nexport type MergeMode = \"passThrough\" | \"append\" | \"mergeByPosition\";\n\nexport class Merge<TInputJson = unknown, TOutputJson = TInputJson> implements RunnableNodeConfig<\n TInputJson,\n TOutputJson\n> {\n readonly kind = \"node\" as const;\n readonly type: TypeToken<unknown> = MergeNode;\n readonly icon = \"lucide:git-merge\" as const;\n\n constructor(\n public readonly name: string,\n public readonly cfg: Readonly<{\n mode: MergeMode;\n /**\n * Deterministic input precedence order (only used for passThrough/append).\n * Any inputs not listed are appended in lexicographic order.\n */\n prefer?: ReadonlyArray<InputPortKey>;\n }> = { mode: \"passThrough\" },\n public readonly id?: string,\n ) {}\n}\n\nexport { MergeNode } from \"./MergeNode\";\n","import type { Items, Node, NodeExecutionContext, NodeOutputs } from \"@codemation/core\";\n\nimport { node } from \"@codemation/core\";\n\nimport { NoOp } from \"./noOp\";\n\n@node({ packageName: \"@codemation/core-nodes\" })\nexport class NoOpNode implements Node<NoOp<any>> {\n kind = \"node\" as const;\n outputPorts = [\"main\"] as const;\n\n async execute(items: Items, _ctx: NodeExecutionContext<NoOp<any>>): Promise<NodeOutputs> {\n return { main: items };\n }\n}\n","import type { RunnableNodeConfig, TypeToken } from \"@codemation/core\";\n\nimport { NoOpNode } from \"./NoOpNode\";\n\nexport class NoOp<TItemJson = unknown> implements RunnableNodeConfig<TItemJson, TItemJson> {\n readonly kind = \"node\" as const;\n readonly type: TypeToken<unknown> = NoOpNode;\n readonly execution = { hint: \"local\" } as const;\n\n constructor(\n public readonly name: string = \"NoOp\",\n public readonly id?: string,\n ) {}\n}\n\nexport { NoOpNode } from \"./NoOpNode\";\n","import type { Item, Items, Node, NodeExecutionContext, NodeOutputs, WorkflowRunnerService } from \"@codemation/core\";\n\nimport { CoreTokens, inject, node } from \"@codemation/core\";\n\nimport { SubWorkflow } from \"./subWorkflow\";\n\n@node({ packageName: \"@codemation/core-nodes\" })\nexport class SubWorkflowNode implements Node<SubWorkflow<any, any>> {\n kind = \"node\" as const;\n outputPorts = [\"main\"] as const;\n\n constructor(\n @inject(CoreTokens.WorkflowRunnerService)\n private readonly workflows: WorkflowRunnerService,\n ) {}\n\n async execute(items: Items, ctx: NodeExecutionContext<SubWorkflow<any, any>>): Promise<NodeOutputs> {\n const out: Item[] = [];\n for (let i = 0; i < items.length; i++) {\n const current = items[i]!;\n const metaBase = (\n current.meta && typeof current.meta === \"object\" ? (current.meta as Record<string, unknown>) : {}\n ) as Record<string, unknown>;\n const cmBase =\n metaBase._cm && typeof metaBase._cm === \"object\"\n ? (metaBase._cm as Record<string, unknown>)\n : ({} as Record<string, unknown>);\n const originIndex = typeof cmBase.originIndex === \"number\" ? (cmBase.originIndex as number) : undefined;\n\n const result = await this.workflows.runById({\n workflowId: ctx.config.workflowId,\n startAt: ctx.config.startAt,\n items: [current],\n parent: {\n runId: ctx.runId,\n workflowId: ctx.workflowId,\n nodeId: ctx.nodeId,\n subworkflowDepth: ctx.subworkflowDepth,\n engineMaxNodeActivations: ctx.engineMaxNodeActivations,\n engineMaxSubworkflowDepth: ctx.engineMaxSubworkflowDepth,\n },\n });\n if (result.status !== \"completed\")\n throw new Error(`Subworkflow ${ctx.config.workflowId} did not complete (status=${result.status})`);\n for (const produced of result.outputs) {\n const childMetaBase =\n produced.meta && typeof produced.meta === \"object\"\n ? (produced.meta as Record<string, unknown>)\n : ({} as Record<string, unknown>);\n const childCmBase =\n childMetaBase._cm && typeof childMetaBase._cm === \"object\"\n ? (childMetaBase._cm as Record<string, unknown>)\n : ({} as Record<string, unknown>);\n\n out.push({\n ...produced,\n meta: originIndex === undefined ? childMetaBase : { ...childMetaBase, _cm: { ...childCmBase, originIndex } },\n paired: current.paired ?? produced.paired,\n });\n }\n }\n\n return { main: out };\n }\n}\n","import type { NodeId, RunnableNodeConfig, TypeToken, UpstreamRefPlaceholder } from \"@codemation/core\";\n\nimport { SubWorkflowNode } from \"./SubWorkflowNode\";\n\nexport class SubWorkflow<TInputJson = unknown, TOutputJson = unknown> implements RunnableNodeConfig<\n TInputJson,\n TOutputJson\n> {\n readonly kind = \"node\" as const;\n readonly type: TypeToken<unknown> = SubWorkflowNode;\n constructor(\n public readonly name: string,\n public readonly workflowId: string,\n public upstreamRefs?: Array<{ nodeId: NodeId } | UpstreamRefPlaceholder>,\n public readonly startAt?: NodeId,\n public readonly id?: string,\n ) {}\n}\n\nexport { SubWorkflowNode } from \"./SubWorkflowNode\";\n","export class WaitDuration {\n static normalize(milliseconds: number): number {\n return Number.isFinite(milliseconds) && milliseconds > 0 ? Math.floor(milliseconds) : 0;\n }\n}\n","import type { Items, Node, NodeExecutionContext, NodeOutputs } from \"@codemation/core\";\n\nimport { node } from \"@codemation/core\";\n\nimport { Wait } from \"./wait\";\nimport { WaitDuration } from \"./WaitDurationFactory\";\n\n@node({ packageName: \"@codemation/core-nodes\" })\nexport class WaitNode implements Node<Wait<any>> {\n kind = \"node\" as const;\n outputPorts = [\"main\"] as const;\n\n async execute(items: Items, ctx: NodeExecutionContext<Wait<any>>): Promise<NodeOutputs> {\n const milliseconds = WaitDuration.normalize(ctx.config.milliseconds);\n if (milliseconds > 0) {\n await new Promise<void>((resolve) => {\n setTimeout(resolve, milliseconds);\n });\n }\n return { main: items };\n }\n}\n","import type { RunnableNodeConfig, TypeToken } from \"@codemation/core\";\n\nimport { WaitNode } from \"./WaitNode\";\n\nexport class Wait<TItemJson = unknown> implements RunnableNodeConfig<TItemJson, TItemJson> {\n readonly kind = \"node\" as const;\n readonly type: TypeToken<unknown> = WaitNode;\n readonly execution = { hint: \"local\" } as const;\n /** Pass-through empty batches should still advance to downstream nodes. */\n readonly continueWhenEmptyOutput = true as const;\n\n constructor(\n public readonly name: string,\n public readonly milliseconds: number,\n public readonly id?: string,\n ) {}\n}\n\nexport { WaitDuration } from \"./WaitDurationFactory\";\nexport { WaitNode } from \"./WaitNode\";\n","import type { Items, WebhookControlSignal } from \"@codemation/core\";\n\nexport class WebhookRespondNowAndContinueError extends Error implements WebhookControlSignal {\n readonly __webhookControl = true as const;\n readonly kind = \"respondNowAndContinue\" as const;\n\n constructor(\n public readonly responseItems: Items,\n public readonly continueItems: Items,\n message: string = \"Webhook responded immediately and continued the run.\",\n ) {\n super(message);\n this.name = \"WebhookRespondNowAndContinueError\";\n }\n}\n","import type { Items, WebhookControlSignal } from \"@codemation/core\";\n\nexport class WebhookRespondNowError extends Error implements WebhookControlSignal {\n readonly __webhookControl = true as const;\n readonly kind = \"respondNow\" as const;\n\n constructor(\n public readonly responseItems: Items,\n message: string = \"Webhook responded immediately.\",\n ) {\n super(message);\n this.name = \"WebhookRespondNowError\";\n }\n}\n","import type {\n ExecutableTriggerNode,\n Items,\n NodeExecutionContext,\n NodeOutputs,\n TriggerSetupContext,\n} from \"@codemation/core\";\nimport { node } from \"@codemation/core\";\nimport { WebhookTrigger } from \"./WebhookTriggerFactory\";\n\n/**\n * HTTP webhooks are not registered in trigger setup. The host exposes a single catch-all route\n * (e.g. `/api/webhooks/:endpointPath`); the engine's catalog-backed webhook matcher resolves the\n * user-defined endpoint path to this workflow + node, then runs the workflow from this trigger.\n */\n@node({ packageName: \"@codemation/core-nodes\" })\nexport class WebhookTriggerNode implements ExecutableTriggerNode<WebhookTrigger<any>> {\n readonly kind = \"trigger\" as const;\n readonly outputPorts = [\"main\"] as const;\n\n async setup(_ctx: TriggerSetupContext<WebhookTrigger<any>>): Promise<undefined> {\n return undefined;\n }\n\n async execute(items: Items, _ctx: NodeExecutionContext<WebhookTrigger<any>>): Promise<NodeOutputs> {\n if (items.length === 0) {\n throw new Error(\n `Webhook trigger \"${_ctx.config.name}\" requires a webhook request. Invoke this workflow through its webhook endpoint until manual request simulation is supported.`,\n );\n }\n const result = await _ctx.config.handler(items, _ctx);\n return { main: result ?? items };\n }\n}\n","import type { HttpMethod, Items, NodeExecutionContext, TriggerNodeConfig, TypeToken } from \"@codemation/core\";\nimport type { ZodType } from \"zod\";\nimport { WebhookTriggerNode } from \"./webhookTriggerNode\";\n\ntype WebhookInputSchema = ZodType<any, any, any>;\ntype WebhookTriggerHandler<TConfig extends WebhookTrigger<any> = WebhookTrigger<any>> = (\n items: Items,\n ctx: NodeExecutionContext<TConfig>,\n) => Promise<Items | void> | Items | void;\n\nexport class WebhookTrigger<\n TSchema extends WebhookInputSchema | undefined = undefined,\n> implements TriggerNodeConfig<unknown> {\n readonly kind = \"trigger\" as const;\n readonly type: TypeToken<unknown> = WebhookTriggerNode;\n readonly icon = \"lucide:globe\";\n\n constructor(\n public readonly name: string,\n private readonly args: Readonly<{\n endpointKey: string;\n methods: ReadonlyArray<HttpMethod>;\n inputSchema?: TSchema;\n }>,\n public readonly handler: WebhookTriggerHandler<\n WebhookTrigger<TSchema>\n > = WebhookTrigger.defaultHandler as WebhookTriggerHandler<WebhookTrigger<TSchema>>,\n public readonly id?: string,\n ) {}\n\n get endpointKey(): string {\n return this.args.endpointKey;\n }\n\n get methods(): ReadonlyArray<HttpMethod> {\n return this.args.methods;\n }\n\n get inputSchema(): TSchema | undefined {\n return this.args.inputSchema;\n }\n\n parseJsonBody(body: unknown): unknown {\n if (!this.args.inputSchema) return body;\n return this.args.inputSchema.parse(body);\n }\n\n private static defaultHandler(items: Items): Items {\n return items;\n }\n}\n","import type { Items, Node, NodeExecutionContext, NodeOutputs } from \"@codemation/core\";\nimport { node } from \"@codemation/core\";\n\nimport type { ConnectionCredentialNodeConfig } from \"./ConnectionCredentialNodeConfig\";\n\n/**\n * Placeholder runnable node for connection-owned workflow nodes (LLM/tool slots).\n * The engine does not schedule these; they exist for credentials, tokens, and UI identity.\n */\n@node({ packageName: \"@codemation/core-nodes\" })\nexport class ConnectionCredentialNode implements Node<ConnectionCredentialNodeConfig> {\n kind = \"node\" as const;\n outputPorts = [\"main\"] as const;\n\n async execute(_items: Items, _ctx: NodeExecutionContext<ConnectionCredentialNodeConfig>): Promise<NodeOutputs> {\n return { main: [] };\n }\n}\n","import type { Container } from \"@codemation/core\";\nimport { AIAgentExecutionHelpersFactory, AIAgentNode } from \"./nodes/aiAgent\";\nimport { CallbackNode } from \"./nodes/CallbackNodeFactory\";\nimport { HttpRequestNode } from \"./nodes/httpRequest\";\nimport { IfNode } from \"./nodes/if\";\nimport { ManualTriggerNode } from \"./nodes/ManualTriggerFactory\";\nimport { MapDataNode } from \"./nodes/mapData\";\nimport { NoOpNode } from \"./nodes/noOp\";\nimport { SubWorkflowNode } from \"./nodes/subWorkflow\";\nimport { WaitNode } from \"./nodes/wait\";\nimport { ConnectionCredentialNode } from \"./nodes/ConnectionCredentialNode\";\nimport { AggregateNode } from \"./nodes/aggregate\";\nimport { FilterNode } from \"./nodes/filter\";\nimport { SplitNode } from \"./nodes/split\";\n\n/**\n * Registrar for built-in nodes. In a real project, this would use tsyringe's\n * container.registerSingleton(...). For the skeleton we keep it token-based:\n * the engine resolves node implementations by class token.\n */\nexport function registerCoreNodes(container: Container): void {\n // With class tokens, resolving registers happen via the DI container setup.\n // This function exists as the standardized extension point.\n void container;\n\n // Example: if using tsyringe, you'd do:\n // tsyringeContainer.registerSingleton(IfNode, IfNode);\n // ...\n void IfNode;\n void HttpRequestNode;\n void CallbackNode;\n void MapDataNode;\n void NoOpNode;\n void SubWorkflowNode;\n void ManualTriggerNode;\n void AIAgentNode;\n void AIAgentExecutionHelpersFactory;\n void WaitNode;\n void ConnectionCredentialNode;\n void SplitNode;\n void FilterNode;\n void AggregateNode;\n}\n","import type { WorkflowId } from \"@codemation/core\";\nimport { WorkflowBuilder } from \"@codemation/core\";\nimport { Merge } from \"./nodes/merge\";\n\nexport function createWorkflowBuilder(meta: Readonly<{ id: WorkflowId; name: string }>): WorkflowBuilder {\n return new WorkflowBuilder(meta, {\n makeMergeNode: (name) => new Merge(name, { mode: \"passThrough\", prefer: [\"true\", \"false\"] }),\n });\n}\n","import type { ChatModelConfig } from \"@codemation/core\";\nimport { OpenAIChatModelConfig } from \"../chatModels/openAiChatModelConfig\";\n\nexport class WorkflowChatModelFactory {\n static create(model: string | ChatModelConfig): ChatModelConfig {\n if (typeof model !== \"string\") {\n return model;\n }\n const [provider, resolvedModel] = model.includes(\":\") ? model.split(\":\", 2) : [\"openai\", model];\n if (provider !== \"openai\") {\n throw new Error(`Unsupported workflow().agent() model provider \"${provider}\".`);\n }\n return new OpenAIChatModelConfig(\"OpenAI\", resolvedModel);\n }\n}\n","import { z } from \"zod\";\nimport { AIAgent } from \"../nodes/AIAgentConfig\";\nimport type { WorkflowAgentOptions } from \"./WorkflowAuthoringOptions.types\";\nimport { WorkflowChatModelFactory } from \"./WorkflowChatModelFactory.types\";\n\nexport class WorkflowAgentNodeFactory {\n static create<TCurrentJson, TOutputSchema extends z.ZodTypeAny | undefined>(\n nameOrOptions: string | WorkflowAgentOptions<TCurrentJson, TOutputSchema>,\n optionsOrUndefined?: WorkflowAgentOptions<TCurrentJson, TOutputSchema>,\n ): AIAgent<TCurrentJson, TOutputSchema extends z.ZodTypeAny ? z.output<TOutputSchema> : Record<string, unknown>> {\n const options = typeof nameOrOptions === \"string\" ? optionsOrUndefined! : nameOrOptions;\n const name = typeof nameOrOptions === \"string\" ? nameOrOptions : \"AI agent\";\n const prompt = options.prompt;\n const messages = [\n {\n role: \"user\" as const,\n content:\n typeof prompt === \"function\" ? ({ item }: { item: { json: TCurrentJson } }) => prompt(item.json) : prompt,\n },\n ] as const;\n return new AIAgent<\n TCurrentJson,\n TOutputSchema extends z.ZodTypeAny ? z.output<TOutputSchema> : Record<string, unknown>\n >({\n name,\n messages,\n chatModel: WorkflowChatModelFactory.create(options.model),\n tools: options.tools,\n id: options.id,\n retryPolicy: options.retryPolicy,\n guardrails: options.guardrails,\n });\n }\n}\n","import { DefinedNodeRegistry, type DefinedNode } from \"@codemation/core\";\n\nexport class WorkflowDefinedNodeResolver {\n static resolve(\n definitionOrKey: DefinedNode<string, Record<string, unknown>, unknown, unknown> | string,\n ): DefinedNode<string, Record<string, unknown>, unknown, unknown> {\n if (typeof definitionOrKey !== \"string\") {\n return definitionOrKey;\n }\n const definition = DefinedNodeRegistry.resolve(definitionOrKey);\n if (!definition) {\n throw new Error(`No helper-defined node with key \"${definitionOrKey}\" is registered in this module graph.`);\n }\n return definition;\n }\n}\n","export class WorkflowDurationParser {\n static parse(duration: number | string): number {\n if (typeof duration === \"number\") {\n return Number.isFinite(duration) && duration > 0 ? Math.floor(duration) : 0;\n }\n const normalized = duration.trim().toLowerCase();\n const match = normalized.match(/^(\\d+)(ms|s|m|h)$/);\n if (!match) {\n throw new Error(\n `Unsupported wait duration \"${duration}\". Use a number of milliseconds or values like \"500ms\", \"2s\", \"5m\".`,\n );\n }\n const value = Number(match[1]);\n const unit = match[2];\n if (unit === \"ms\") {\n return value;\n }\n if (unit === \"s\") {\n return value * 1000;\n }\n if (unit === \"m\") {\n return value * 60_000;\n }\n return value * 3_600_000;\n }\n}\n","import type { AnyRunnableNodeConfig, DefinedNode, RunnableNodeConfig, RunnableNodeOutputJson } from \"@codemation/core\";\nimport { z } from \"zod\";\nimport { MapData } from \"../nodes/mapData\";\nimport { Wait } from \"../nodes/wait\";\nimport type { WorkflowAgentOptions } from \"./WorkflowAuthoringOptions.types\";\nimport { WorkflowAgentNodeFactory } from \"./WorkflowAgentNodeFactory.types\";\nimport { WorkflowDefinedNodeResolver } from \"./WorkflowDefinedNodeResolver.types\";\nimport { WorkflowDurationParser } from \"./WorkflowDurationParser.types\";\n\nexport class WorkflowBranchBuilder<TCurrentJson> {\n constructor(private readonly steps: ReadonlyArray<AnyRunnableNodeConfig> = []) {}\n\n then<TInputJson, TOutputJson, TConfig extends RunnableNodeConfig<TInputJson, TOutputJson, TCurrentJson>>(\n config: TConfig,\n ): WorkflowBranchBuilder<RunnableNodeOutputJson<TConfig>> {\n return new WorkflowBranchBuilder<RunnableNodeOutputJson<TConfig>>([...this.steps, config]);\n }\n\n map<TNextJson>(mapper: (item: TCurrentJson) => TNextJson): WorkflowBranchBuilder<TNextJson>;\n map<TNextJson>(\n name: string,\n mapper: (item: TCurrentJson) => TNextJson,\n id?: string,\n ): WorkflowBranchBuilder<TNextJson>;\n map<TNextJson>(\n nameOrMapper: string | ((item: TCurrentJson) => TNextJson),\n mapperOrUndefined?: (item: TCurrentJson) => TNextJson,\n id?: string,\n ): WorkflowBranchBuilder<TNextJson> {\n const name = typeof nameOrMapper === \"string\" ? nameOrMapper : \"Map data\";\n const mapper = typeof nameOrMapper === \"string\" ? mapperOrUndefined! : nameOrMapper;\n return this.then(\n new MapData<TCurrentJson, TNextJson>(name, (item) => mapper(item.json as TCurrentJson), id),\n ) as WorkflowBranchBuilder<TNextJson>;\n }\n\n wait(duration: number | string): WorkflowBranchBuilder<TCurrentJson>;\n wait(name: string, duration: number | string, id?: string): WorkflowBranchBuilder<TCurrentJson>;\n wait(\n nameOrDuration: string | number,\n durationOrUndefined?: string | number,\n id?: string,\n ): WorkflowBranchBuilder<TCurrentJson> {\n const name = typeof nameOrDuration === \"string\" && durationOrUndefined !== undefined ? nameOrDuration : \"Wait\";\n const duration = durationOrUndefined ?? nameOrDuration;\n return this.then(\n new Wait<TCurrentJson>(name, WorkflowDurationParser.parse(duration), id),\n ) as WorkflowBranchBuilder<TCurrentJson>;\n }\n\n agent<TOutputSchema extends z.ZodTypeAny>(\n options: WorkflowAgentOptions<TCurrentJson, TOutputSchema>,\n ): WorkflowBranchBuilder<z.output<TOutputSchema>>;\n agent(options: WorkflowAgentOptions<TCurrentJson, undefined>): WorkflowBranchBuilder<Record<string, unknown>>;\n agent<TOutputSchema extends z.ZodTypeAny>(\n name: string,\n options: WorkflowAgentOptions<TCurrentJson, TOutputSchema | undefined>,\n ): WorkflowBranchBuilder<TOutputSchema extends z.ZodTypeAny ? z.output<TOutputSchema> : Record<string, unknown>>;\n agent<TOutputSchema extends z.ZodTypeAny>(\n nameOrOptions: string | WorkflowAgentOptions<TCurrentJson, TOutputSchema | undefined>,\n optionsOrUndefined?: WorkflowAgentOptions<TCurrentJson, TOutputSchema | undefined>,\n ): WorkflowBranchBuilder<TOutputSchema extends z.ZodTypeAny ? z.output<TOutputSchema> : Record<string, unknown>> {\n return this.then(WorkflowAgentNodeFactory.create(nameOrOptions, optionsOrUndefined)) as WorkflowBranchBuilder<\n TOutputSchema extends z.ZodTypeAny ? z.output<TOutputSchema> : Record<string, unknown>\n >;\n }\n\n node<TConfig extends Record<string, unknown>, TOutputJson>(\n definitionOrKey: DefinedNode<string, TConfig, TCurrentJson, TOutputJson> | string,\n config: TConfig,\n name?: string,\n id?: string,\n ): WorkflowBranchBuilder<TOutputJson> {\n const definition = WorkflowDefinedNodeResolver.resolve(\n definitionOrKey as DefinedNode<string, Record<string, unknown>, unknown, unknown> | string,\n ) as DefinedNode<string, TConfig, TCurrentJson, TOutputJson>;\n return this.then(\n definition.create(config, name, id) as RunnableNodeConfig<TCurrentJson, TOutputJson>,\n ) as WorkflowBranchBuilder<TOutputJson>;\n }\n\n getSteps(): ReadonlyArray<AnyRunnableNodeConfig> {\n return this.steps;\n }\n}\n","import type { DefinedNode, RunnableNodeConfig, RunnableNodeOutputJson, WorkflowDefinition } from \"@codemation/core\";\nimport { ChainCursor } from \"@codemation/core\";\nimport { z } from \"zod\";\nimport { If } from \"../nodes/if\";\nimport { MapData } from \"../nodes/mapData\";\nimport { Wait } from \"../nodes/wait\";\nimport type { WorkflowAgentOptions } from \"./WorkflowAuthoringOptions.types\";\nimport { WorkflowAgentNodeFactory } from \"./WorkflowAgentNodeFactory.types\";\nimport { WorkflowBranchBuilder } from \"./WorkflowBranchBuilder.types\";\nimport { WorkflowDefinedNodeResolver } from \"./WorkflowDefinedNodeResolver.types\";\nimport { WorkflowDurationParser } from \"./WorkflowDurationParser.types\";\n\ntype BranchCallback<TCurrentJson, TNextJson> = (\n branch: WorkflowBranchBuilder<TCurrentJson>,\n) => WorkflowBranchBuilder<TNextJson>;\ntype BranchOutputMatch<TLeft, TRight> = [TLeft] extends [TRight] ? ([TRight] extends [TLeft] ? true : false) : false;\n\nexport class WorkflowChain<TCurrentJson> {\n constructor(private readonly chain: ChainCursor<TCurrentJson>) {}\n\n then<TInputJson, TOutputJson, TConfig extends RunnableNodeConfig<TInputJson, TOutputJson, TCurrentJson>>(\n config: TConfig,\n ): WorkflowChain<RunnableNodeOutputJson<TConfig>> {\n return new WorkflowChain(this.chain.then(config));\n }\n\n map<TNextJson>(mapper: (item: TCurrentJson) => TNextJson): WorkflowChain<TNextJson>;\n map<TNextJson>(name: string, mapper: (item: TCurrentJson) => TNextJson, id?: string): WorkflowChain<TNextJson>;\n map<TNextJson>(\n nameOrMapper: string | ((item: TCurrentJson) => TNextJson),\n mapperOrUndefined?: (item: TCurrentJson) => TNextJson,\n id?: string,\n ): WorkflowChain<TNextJson> {\n const name = typeof nameOrMapper === \"string\" ? nameOrMapper : \"Map data\";\n const mapper = typeof nameOrMapper === \"string\" ? mapperOrUndefined! : nameOrMapper;\n return this.then(\n new MapData<TCurrentJson, TNextJson>(name, (item) => mapper(item.json as TCurrentJson), id),\n ) as WorkflowChain<TNextJson>;\n }\n\n wait(duration: number | string): WorkflowChain<TCurrentJson>;\n wait(name: string, duration: number | string, id?: string): WorkflowChain<TCurrentJson>;\n wait(\n nameOrDuration: string | number,\n durationOrUndefined?: string | number,\n id?: string,\n ): WorkflowChain<TCurrentJson> {\n const name = typeof nameOrDuration === \"string\" && durationOrUndefined !== undefined ? nameOrDuration : \"Wait\";\n const duration = durationOrUndefined ?? nameOrDuration;\n return this.then(\n new Wait<TCurrentJson>(name, WorkflowDurationParser.parse(duration), id),\n ) as WorkflowChain<TCurrentJson>;\n }\n\n if<TBranchJson>(\n predicate: (item: TCurrentJson) => boolean,\n branches: Readonly<{\n true?: BranchCallback<TCurrentJson, TBranchJson>;\n false?: BranchCallback<TCurrentJson, TBranchJson>;\n }>,\n ): WorkflowChain<TBranchJson>;\n if<TBranchJson>(\n name: string,\n predicate: (item: TCurrentJson) => boolean,\n branches: Readonly<{\n true?: BranchCallback<TCurrentJson, TBranchJson>;\n false?: BranchCallback<TCurrentJson, TBranchJson>;\n }>,\n ): WorkflowChain<TBranchJson>;\n if<TTrueJson, TFalseJson>(\n nameOrPredicate: string | ((item: TCurrentJson) => boolean),\n predicateOrBranches:\n | ((item: TCurrentJson) => boolean)\n | Readonly<{ true?: BranchCallback<TCurrentJson, TTrueJson>; false?: BranchCallback<TCurrentJson, TFalseJson> }>,\n branchesOrUndefined?: Readonly<{\n true?: BranchCallback<TCurrentJson, TTrueJson>;\n false?: BranchCallback<TCurrentJson, TFalseJson>;\n }>,\n ): WorkflowChain<BranchOutputMatch<TTrueJson, TFalseJson> extends true ? TTrueJson : never> {\n const name = typeof nameOrPredicate === \"string\" ? nameOrPredicate : \"If\";\n const predicate =\n typeof nameOrPredicate === \"string\" ? (predicateOrBranches as (item: TCurrentJson) => boolean) : nameOrPredicate;\n const branches = (typeof nameOrPredicate === \"string\" ? branchesOrUndefined : predicateOrBranches) as Readonly<{\n true?: BranchCallback<TCurrentJson, TTrueJson>;\n false?: BranchCallback<TCurrentJson, TFalseJson>;\n }>;\n const cursor = this.chain.then(new If<TCurrentJson>(name, (item) => predicate(item.json as TCurrentJson)));\n const trueSteps = branches.true?.(new WorkflowBranchBuilder<TCurrentJson>()).getSteps();\n const falseSteps = branches.false?.(new WorkflowBranchBuilder<TCurrentJson>()).getSteps();\n return new WorkflowChain(\n cursor.when({\n true: trueSteps,\n false: falseSteps,\n }),\n ) as WorkflowChain<BranchOutputMatch<TTrueJson, TFalseJson> extends true ? TTrueJson : never>;\n }\n\n agent<TOutputSchema extends z.ZodTypeAny>(\n options: WorkflowAgentOptions<TCurrentJson, TOutputSchema>,\n ): WorkflowChain<z.output<TOutputSchema>>;\n agent(options: WorkflowAgentOptions<TCurrentJson, undefined>): WorkflowChain<Record<string, unknown>>;\n agent<TOutputSchema extends z.ZodTypeAny>(\n name: string,\n options: WorkflowAgentOptions<TCurrentJson, TOutputSchema | undefined>,\n ): WorkflowChain<TOutputSchema extends z.ZodTypeAny ? z.output<TOutputSchema> : Record<string, unknown>>;\n agent<TOutputSchema extends z.ZodTypeAny>(\n nameOrOptions: string | WorkflowAgentOptions<TCurrentJson, TOutputSchema | undefined>,\n optionsOrUndefined?: WorkflowAgentOptions<TCurrentJson, TOutputSchema | undefined>,\n ): WorkflowChain<TOutputSchema extends z.ZodTypeAny ? z.output<TOutputSchema> : Record<string, unknown>> {\n return this.then(WorkflowAgentNodeFactory.create(nameOrOptions, optionsOrUndefined)) as WorkflowChain<\n TOutputSchema extends z.ZodTypeAny ? z.output<TOutputSchema> : Record<string, unknown>\n >;\n }\n\n node<TConfig extends Record<string, unknown>, TOutputJson>(\n definitionOrKey: DefinedNode<string, TConfig, TCurrentJson, TOutputJson> | string,\n config: TConfig,\n name?: string,\n id?: string,\n ): WorkflowChain<TOutputJson> {\n const definition = WorkflowDefinedNodeResolver.resolve(\n definitionOrKey as DefinedNode<string, Record<string, unknown>, unknown, unknown> | string,\n ) as DefinedNode<string, TConfig, TCurrentJson, TOutputJson>;\n return this.then(\n definition.create(config, name, id) as RunnableNodeConfig<TCurrentJson, TOutputJson>,\n ) as WorkflowChain<TOutputJson>;\n }\n\n build(): WorkflowDefinition {\n return this.chain.build();\n }\n}\n","import { ChainCursor } from \"@codemation/core\";\nimport { ManualTrigger } from \"../nodes/ManualTriggerFactory\";\nimport { createWorkflowBuilder } from \"../workflowBuilder.types\";\nimport { WorkflowChain } from \"./WorkflowChain.types\";\n\nexport class WorkflowAuthoringBuilder {\n constructor(\n private readonly id: string,\n private readonly workflowName: string = id,\n ) {}\n\n name(name: string): WorkflowAuthoringBuilder {\n return new WorkflowAuthoringBuilder(this.id, name);\n }\n\n manualTrigger<TOutputJson>(defaultItems: TOutputJson | ReadonlyArray<TOutputJson>): WorkflowChain<TOutputJson>;\n manualTrigger<TOutputJson>(\n name: string,\n defaultItems?: TOutputJson | ReadonlyArray<TOutputJson>,\n id?: string,\n ): WorkflowChain<TOutputJson>;\n manualTrigger<TOutputJson>(\n nameOrDefaultItems: string | TOutputJson | ReadonlyArray<TOutputJson>,\n defaultItemsOrUndefined?: TOutputJson | ReadonlyArray<TOutputJson>,\n id?: string,\n ): WorkflowChain<TOutputJson> {\n const builder = createWorkflowBuilder({ id: this.id, name: this.workflowName });\n if (typeof nameOrDefaultItems === \"string\") {\n return new WorkflowChain(\n builder.trigger(\n new ManualTrigger<TOutputJson>(\n nameOrDefaultItems,\n defaultItemsOrUndefined as TOutputJson | ReadonlyArray<TOutputJson>,\n id,\n ),\n ) as ChainCursor<TOutputJson>,\n );\n }\n return new WorkflowChain(\n builder.trigger(new ManualTrigger<TOutputJson>(\"Manual trigger\", nameOrDefaultItems)) as ChainCursor<TOutputJson>,\n );\n }\n}\n","export type { WorkflowAgentOptions } from \"./workflowAuthoring/WorkflowAuthoringOptions.types\";\nexport { WorkflowAuthoringBuilder } from \"./workflowAuthoring/WorkflowAuthoringBuilder.types\";\nexport { WorkflowBranchBuilder } from \"./workflowAuthoring/WorkflowBranchBuilder.types\";\nexport { WorkflowChain } from \"./workflowAuthoring/WorkflowChain.types\";\n\nimport { WorkflowAuthoringBuilder } from \"./workflowAuthoring/WorkflowAuthoringBuilder.types\";\n\nexport function workflow(id: string): WorkflowAuthoringBuilder {\n return new WorkflowAuthoringBuilder(id);\n}\n","import type { NodeDefinition, WorkflowDefinition, WorkflowNodeConnection } from \"@codemation/core\";\nimport { AgentConfigInspector, AgentConnectionNodeCollector } from \"@codemation/core\";\n\nimport { AIAgentNode } from \"../nodes/AIAgentNode\";\nimport { ConnectionCredentialNode } from \"../nodes/ConnectionCredentialNode\";\nimport { ConnectionCredentialNodeConfigFactory } from \"../nodes/ConnectionCredentialNodeConfigFactory\";\n\n/**\n * Materializes connection-owned child nodes and {@link WorkflowDefinition.connections} for AI agent nodes.\n */\nexport class AIAgentConnectionWorkflowExpander {\n constructor(private readonly connectionCredentialNodeConfigFactory: ConnectionCredentialNodeConfigFactory) {}\n\n expand(workflow: WorkflowDefinition): WorkflowDefinition {\n const existingChildIds = this.collectExistingChildIds(workflow);\n const connectionsByParentAndName = this.createConnectionsByParentAndName(workflow);\n const extraNodes: NodeDefinition[] = [];\n let connectionsChanged = false;\n\n for (const node of workflow.nodes) {\n if (node.type !== AIAgentNode || !AgentConfigInspector.isAgentNodeConfig(node.config)) {\n continue;\n }\n for (const connectionNode of AgentConnectionNodeCollector.collect(node.id, node.config)) {\n if (!existingChildIds.has(connectionNode.nodeId)) {\n this.assertNoIdCollision(workflow, extraNodes, existingChildIds, connectionNode.nodeId);\n extraNodes.push({\n id: connectionNode.nodeId,\n kind: \"node\",\n type: ConnectionCredentialNode,\n name: connectionNode.name,\n config: this.connectionCredentialNodeConfigFactory.create(\n connectionNode.typeName,\n connectionNode.credentialSource,\n ),\n });\n }\n const connectionKey = this.connectionKey(connectionNode.parentNodeId, connectionNode.connectionName);\n const existingConnection = connectionsByParentAndName.get(connectionKey);\n if (!existingConnection) {\n connectionsByParentAndName.set(connectionKey, {\n parentNodeId: connectionNode.parentNodeId,\n connectionName: connectionNode.connectionName,\n childNodeIds: [connectionNode.nodeId],\n });\n connectionsChanged = true;\n continue;\n }\n if (!existingConnection.childNodeIds.includes(connectionNode.nodeId)) {\n connectionsByParentAndName.set(connectionKey, {\n ...existingConnection,\n childNodeIds: [...existingConnection.childNodeIds, connectionNode.nodeId],\n });\n connectionsChanged = true;\n }\n }\n }\n\n if (extraNodes.length === 0 && !connectionsChanged) {\n return workflow;\n }\n\n return {\n ...workflow,\n nodes: [...workflow.nodes, ...extraNodes],\n connections: [...connectionsByParentAndName.values()],\n };\n }\n\n private createConnectionsByParentAndName(workflow: WorkflowDefinition): Map<string, WorkflowNodeConnection> {\n const existingByParentAndName = new Map<string, WorkflowNodeConnection>();\n for (const connection of workflow.connections ?? []) {\n existingByParentAndName.set(this.connectionKey(connection.parentNodeId, connection.connectionName), connection);\n }\n return existingByParentAndName;\n }\n\n private collectExistingChildIds(workflow: WorkflowDefinition): ReadonlySet<string> {\n const ids = new Set<string>();\n for (const connection of workflow.connections ?? []) {\n for (const childId of connection.childNodeIds) {\n ids.add(childId);\n }\n }\n return ids;\n }\n\n private connectionKey(parentNodeId: string, connectionName: string): string {\n return `${parentNodeId}\\0${connectionName}`;\n }\n\n private assertNoIdCollision(\n workflow: WorkflowDefinition,\n pending: ReadonlyArray<NodeDefinition>,\n existingChildIds: ReadonlySet<string>,\n id: string,\n ): void {\n if (pending.some((n) => n.id === id)) {\n throw new Error(\n `AIAgent connection expansion: node id \"${id}\" already exists. Rename the conflicting node or adjust the workflow.`,\n );\n }\n if (workflow.nodes.some((n) => n.id === id) && !existingChildIds.has(id)) {\n throw new Error(\n `AIAgent connection expansion: node id \"${id}\" already exists. Rename the conflicting node or adjust the workflow.`,\n );\n }\n }\n}\n","import type { CredentialRequirement, RunnableNodeConfig } from \"@codemation/core\";\n\nimport { ConnectionCredentialNode } from \"./ConnectionCredentialNode\";\n\nexport class ConnectionCredentialNodeConfig implements RunnableNodeConfig {\n readonly kind = \"node\" as const;\n readonly type = ConnectionCredentialNode;\n\n constructor(\n public readonly name: string,\n private readonly credentialSource: { getCredentialRequirements?: () => ReadonlyArray<CredentialRequirement> },\n ) {}\n\n getCredentialRequirements(): ReadonlyArray<CredentialRequirement> {\n return this.credentialSource.getCredentialRequirements?.() ?? [];\n }\n}\n","import type { CredentialRequirement } from \"@codemation/core\";\n\nimport { ConnectionCredentialNodeConfig } from \"./ConnectionCredentialNodeConfig\";\n\nexport class ConnectionCredentialNodeConfigFactory {\n create(\n name: string,\n credentialSource: { getCredentialRequirements?: () => ReadonlyArray<CredentialRequirement> },\n ): ConnectionCredentialNodeConfig {\n return new ConnectionCredentialNodeConfig(name, credentialSource);\n }\n}\n"],"x_google_ignoreList":[6,7,8,9,10,11,12,13,14,15,16,17,18,19],"mappings":"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"}
|