Fake Mirrors
    Preparing search index...

    Interface EnabledFullTargetModel

    Represents an enabled full target model.

    interface EnabledFullTargetModel {
        accessLevel: "transparent" | "landing";
        allowWebSockets: boolean;
        bodySizeLimit: number;
        campaignId: string;
        connectTimeout: number;
        createdAt: Date;
        donorDomain: string;
        donorPort: number;
        donorSecure: boolean;
        donorSub: string;
        faviconIco: string;
        headersSizeLimit: number;
        isEnabled: true;
        labels: string[];
        mainPage: string;
        messageCount: number;
        mirrorDomain: string;
        mirrorPort: number;
        mirrorSecure: boolean;
        mirrorSub: string;
        notFoundPage: string;
        robotsTxt: string;
        simpleTimeout: number;
        sitemapXml: string;
        streamTimeout: number;
        targetId: string;
        get donorHost(): string;
        get donorHostname(): string;
        get donorProtocol(): string;
        get donorUrl(): string;
        get mirrorHost(): string;
        get mirrorHostname(): string;
        get mirrorProtocol(): string;
        get mirrorUrl(): string;
        hasLabel(value: string): boolean;
    }

    Hierarchy (View Summary)

    Properties

    accessLevel: "transparent" | "landing"

    The access level

    allowWebSockets: boolean

    Whether to allow WebSocket connections

    bodySizeLimit: number

    Maximum body size in bytes

    campaignId: string

    The ID of the campaign this target belongs to

    connectTimeout: number

    Connection timeout

    createdAt: Date

    The date and time when the target was created

    donorDomain: string

    The donor domain name

    donorPort: number

    The donor server port

    donorSecure: boolean

    Whether the donor server uses HTTPS

    donorSub: string

    The donor subdomain

    faviconIco: string

    Custom favicon content

    headersSizeLimit: number

    Maximum headers size in bytes

    isEnabled: true

    Guaranteed to be true for enabled targets

    labels: string[]

    Array of labels for categorization

    mainPage: string

    Custom main page content

    messageCount: number

    Total number of messages processed for this target

    mirrorDomain: string

    The mirror domain

    mirrorPort: number

    The mirror server port

    mirrorSecure: boolean

    Whether the mirror uses HTTPS

    mirrorSub: string

    The mirror subdomain

    notFoundPage: string

    Custom 404 page content

    robotsTxt: string

    Custom robots.txt content

    simpleTimeout: number

    Simple request timeout

    sitemapXml: string

    Custom sitemap.xml content

    streamTimeout: number

    Streaming request timeout

    targetId: string

    The unique identifier of the target

    Accessors

    Methods