Contentful Personalization & Analytics
    Preparing search index...

    Minimal Contentful client interface required by the PreviewPanel. This allows the panel to fetch audience and experience entries directly.

    interface ContentfulClient {
        getEntries: (
            query: {
                content_type: string;
                include?: number;
                limit?: number;
                skip?: number;
            },
        ) => Promise<ContentfulEntryCollection>;
    }
    Index

    Properties

    Properties

    getEntries: (
        query: {
            content_type: string;
            include?: number;
            limit?: number;
            skip?: number;
        },
    ) => Promise<ContentfulEntryCollection>