Interface RenameKeysNodeParameters

Source
interface RenameKeysNodeParameters {
    additionalOptions?: {
        regexReplacement?: {
            replacements: {
                options?: {
                    caseInsensitive?: boolean;
                    depth?: number;
                };
                regExNotice?: string;
                replaceRegex?: string;
                searchRegex?: string;
            }[];
        };
    };
    keys?: {
        key: { currentKey?: string; newKey?: string }[];
    };
}

Properties§

Source§

readonly additionalOptions?: {
    regexReplacement?: {
        replacements: {
            options?: {
                caseInsensitive?: boolean;
                depth?: number;
            };
            regExNotice?: string;
            replaceRegex?: string;
            searchRegex?: string;
        }[];
    };
}

Default: {}

Source§

readonly keys?: { key: { currentKey?: string; newKey?: string }[] }

Adds a key which should be renamed Default: {} Type options: {"multipleValues":true,"sortable":true}