n8n-nodes-base
Version:
Base nodes of n8n
24 lines (21 loc) • 1.25 kB
JavaScript
/**
* WooCommerce Trigger 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 }) {
// Parameters schema
const parametersSchema = z.object({
event: z.union([z.literal('coupon.created'), z.literal('coupon.deleted'), z.literal('coupon.updated'), z.literal('customer.created'), z.literal('customer.deleted'), z.literal('customer.updated'), z.literal('order.created'), z.literal('order.deleted'), z.literal('order.updated'), z.literal('product.created'), z.literal('product.deleted'), z.literal('product.updated'), expressionSchema]).optional(),
});
// Return combined config schema
return z.object({
parameters: parametersSchema.optional(),
});
};