UNPKG

n8n-nodes-base

Version:

Base nodes of n8n

26 lines (23 loc) 1.37 kB
/** * Customer Datastore (n8n training) Node - Version 1 - Zod Validation Schemas * * These schemas validate node configuration at runtime. * Use .parse() for strict validation or .safeParse() for error handling. * * Schema helpers (z, expressionSchema, etc.) are passed as parameters * by the schema-validator, not imported from external files. * * @generated - CommonJS JavaScript for runtime loading */ module.exports = function getSchema({ parameters, z, expressionSchema, stringOrExpression, numberOrExpression, booleanOrExpression, resourceLocatorValueSchema, resourceMapperValueSchema, filterValueSchema, assignmentCollectionValueSchema, iDataObjectSchema, resolveSchema }) { // Parameters schema const parametersSchema = z.object({ operation: z.union([z.literal('getOnePerson'), z.literal('getAllPeople')]).optional(), returnAll: resolveSchema({ parameters, schema: booleanOrExpression, required: false, displayOptions: {"show":{"operation":["getAllPeople"]}}, defaults: {"operation":"getOnePerson"} }), limit: resolveSchema({ parameters, schema: numberOrExpression, required: false, displayOptions: {"show":{"operation":["getAllPeople"],"returnAll":[false]}}, defaults: {"operation":"getOnePerson","returnAll":false} }), }); // Return combined config schema return z.object({ parameters: parametersSchema.optional(), }); };