polarity-integration-utils
    Preparing search index...

    Interface IntegrationConfig

    Integration config.json type

    interface IntegrationConfig {
        acronym: string;
        block: ViewComponent;
        copyOnDemand?: boolean;
        customTypes?: CustomType[];
        dataTypes?: (string | CustomType)[];
        defaultColor?: string;
        description?: string;
        entityTypes?: string[];
        logging?: {
            level: "trace" | "debug" | "info" | "warn" | "error" | "fatal";
        };
        name: string;
        onDemandOnly?: boolean;
        options?: IntegrationOption[];
        polarityIntegrationUuid: string;
        request?: {
            ca?: string;
            cert?: string;
            key?: string;
            passphrase?: string;
            proxy?: string;
            rejectUnauthorized?: boolean;
        };
        styles?: string[];
        summary?: ViewComponent;
        supportsAdditionalCustomTypes?: boolean;
    }
    Index
    acronym: string
    copyOnDemand?: boolean
    customTypes?: CustomType[]
    dataTypes?: (string | CustomType)[]
    defaultColor?: string
    description?: string
    entityTypes?: string[]
    logging?: { level: "trace" | "debug" | "info" | "warn" | "error" | "fatal" }
    name: string
    onDemandOnly?: boolean
    options?: IntegrationOption[]
    polarityIntegrationUuid: string
    request?: {
        ca?: string;
        cert?: string;
        key?: string;
        passphrase?: string;
        proxy?: string;
        rejectUnauthorized?: boolean;
    }
    styles?: string[]
    summary?: ViewComponent
    supportsAdditionalCustomTypes?: boolean