Interface ConfigEntityImportOptions

Config entity import options

interface ConfigEntityImportOptions {
    entitiesToImport?: string[];
    envReplaceParams?: string[][];
    validate: boolean;
}

Properties

entitiesToImport?: string[]

Gives a list of entities to import. If undefined or empty, it will import all entities.

envReplaceParams?: string[][]

Gives the list of key-value pairs of env replacements. Replaces each occurrence of '${key}' with its value.

validate: boolean

validate script hooks