n8n
Version:
n8n Workflow Automation Tool
24 lines (23 loc) • 651 B
TypeScript
import { z } from 'zod';
export declare const valueLookupPathSchema: z.ZodObject<{
nodeType: z.ZodString;
path: z.ZodString;
}, "strip", z.ZodTypeAny, {
path: string;
nodeType: string;
}, {
path: string;
nodeType: string;
}>;
export type ValueLookupPath = z.infer<typeof valueLookupPathSchema>;
export declare const sensitiveFieldRulesSchema: z.ZodRecord<z.ZodString, z.ZodObject<{
nodeType: z.ZodString;
path: z.ZodString;
}, "strip", z.ZodTypeAny, {
path: string;
nodeType: string;
}, {
path: string;
nodeType: string;
}>>;
export type SensitiveFieldRules = z.infer<typeof sensitiveFieldRulesSchema>;