Frodo Library - v4.8.5
    Preparing search index...

    Interface ConfigEntityImportOptions

    Config entity import options

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

    Properties

    entitiesToImport?: string[]

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

    validate: boolean

    validate script hooks

    wait?: boolean

    Wait for each entity's config write to fully propagate before returning, rather than the async-by-default behavior. Defaults to false to match this option's pre-existing behavior for bulk/whole-config imports (where waiting on every entity could be slow); pass true for an import an immediately-following read or dependent write needs to be consistent with (e.g. importing a single managed-object type just before creating a relationship property that targets it).