n8n-nodes-base
Version:
Base nodes of n8n
28 lines (26 loc) • 1.5 kB
JavaScript
/**
* GitLab Node - Version 1 - Zod Schema
* Discriminator: resource=release, operation=getAll
*
* 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('release'),
operation: z.literal('getAll'),
authentication: z.union([z.literal('accessToken'), z.literal('oAuth2'), expressionSchema]).optional(),
owner: stringOrExpression.optional(),
repository: stringOrExpression.optional(),
projectId: stringOrExpression.optional(),
returnAll: booleanOrExpression.optional(),
limit: resolveSchema({ parameters, schema: numberOrExpression, required: false, displayOptions: {"show":{"returnAll":[false]}}, defaults: {"returnAll":false} }),
additionalFields: z.object({ order_by: z.union([z.literal('created_at'), z.literal('released_at'), expressionSchema]).optional(), sort: z.union([z.literal('asc'), z.literal('desc'), expressionSchema]).optional() }).optional(),
}).optional(),
});
};