GeoLeaf Core API - v3.0.0
    Preparing search index...

    Everything the enrichment pass needs to turn a declared profile into a usable one.

    Gathered into one object rather than a long parameter list because the pass threads all of it through several helpers; adding a field here is cheaper than re-threading a signature.

    interface EnrichedProfileParams {
        profile: ProfileWithFiles;
        baseUrl: string;
        profileId: string;
        themes: Record<string, unknown> | null;
        mapping?: Record<string, unknown> | null;
        layersSource: unknown[];
        layersConfigs: LayerConfigResult[];
    }
    Index

    Properties

    baseUrl: string
    profileId: string
    themes: Record<string, unknown> | null
    mapping?: Record<string, unknown> | null
    layersSource: unknown[]
    layersConfigs: LayerConfigResult[]