n8n-nodes-base
Version:
Base nodes of n8n
26 lines (24 loc) • 1.71 kB
JavaScript
/**
* Brevo Node - Version 1 - Zod Schema
* Discriminator: resource=attribute, operation=update
*
* 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 }) {
return z.object({
parameters: z.object({
resource: z.literal('attribute'),
operation: z.literal('update'),
updateAttributeCategory: z.union([z.literal('calculated'), z.literal('category'), z.literal('global'), expressionSchema]).optional(),
updateAttributeName: stringOrExpression.optional(),
updateAttributeValue: resolveSchema({ parameters, schema: stringOrExpression, required: false, displayOptions: {"hide":{"updateAttributeCategory":["category"]}}, defaults: {"updateAttributeCategory":"calculated"} }),
updateAttributeCategoryList: resolveSchema({ parameters, schema: z.object({ updateCategoryEnumeration: z.unknown().optional() }), required: false, displayOptions: {"show":{"updateAttributeCategory":["category"]}}, defaults: {"updateAttributeCategory":"calculated"} }),
requestOptions: z.object({ batching: z.unknown().optional(), allowUnauthorizedCerts: z.boolean().optional(), proxy: stringOrExpression.optional(), timeout: numberOrExpression.optional() }).optional(),
}).optional(),
});
};