n8n
Version:
n8n Workflow Automation Tool
12 lines • 378 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.serializedVariableSchema = void 0;
const zod_1 = require("zod");
exports.serializedVariableSchema = zod_1.z
.object({
name: zod_1.z.string().min(1),
type: zod_1.z.string().min(1),
value: zod_1.z.string().optional(),
})
.strict();
//# sourceMappingURL=variable.schema.js.map