Member Junction
    Preparing search index...

    Configuration passed to a search provider during initialization. Populated from the SearchProvider entity record.

    interface SearchProviderConfig {
        CredentialID: string;
        MaxResultsOverride: number;
        Name: string;
        Priority: number;
        ProviderConfig: Record<string, unknown>;
        SupportsPreview: boolean;
    }
    Index

    Properties

    CredentialID: string

    Optional credential ID for providers that need authentication

    MaxResultsOverride: number

    Per-provider max results override (null = use engine default)

    Name: string

    The provider's display name from the metadata record

    Priority: number

    Priority value from the metadata record (lower = higher priority)

    ProviderConfig: Record<string, unknown>

    Optional JSON config blob from ProviderConfig column (already parsed)

    SupportsPreview: boolean

    Whether this provider should participate in preview/autocomplete searches