UNPKG

n8n-nodes-base

Version:

Base nodes of n8n

25 lines (22 loc) 1.42 kB
/** * TOTP 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('generateSecret')]).optional(), options: resolveSchema({ parameters, schema: z.object({ algorithm: z.union([z.literal('SHA1'), z.literal('SHA224'), z.literal('SHA256'), z.literal('SHA3-224'), z.literal('SHA3-256'), z.literal('SHA3-384'), z.literal('SHA3-512'), z.literal('SHA384'), z.literal('SHA512'), expressionSchema]).optional(), digits: numberOrExpression.optional(), period: numberOrExpression.optional() }), required: false, displayOptions: {"show":{"operation":["generateSecret"]}}, defaults: {"operation":"generateSecret"} }), }); // Return combined config schema return z.object({ parameters: parametersSchema.optional(), }); };