UNPKG

@n8n-plus/n8n-plus

Version:

n8n Workflow Automation Tool (plus edition)

17 lines 670 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.packageManifestSchema = exports.manifestEntrySchema = void 0; const zod_1 = require("zod"); exports.manifestEntrySchema = zod_1.z.object({ id: zod_1.z.string().min(1), name: zod_1.z.string(), target: zod_1.z.string().min(1), }); exports.packageManifestSchema = zod_1.z.object({ packageFormatVersion: zod_1.z.string().min(1), exportedAt: zod_1.z.string().min(1), sourceN8nVersion: zod_1.z.string().min(1), sourceId: zod_1.z.string().min(1), workflows: zod_1.z.array(exports.manifestEntrySchema).optional(), }); //# sourceMappingURL=manifest.schema.js.map