polarity-integration-utils
    Preparing search index...

    Type Alias Entity

    Represents a Polarity Entity object which is passed to an integration's doLookup method.

    type Entity = {
        channels: string[];
        displayValue: string;
        hashType: string;
        IPType: string;
        isDomain: boolean;
        isEmail: boolean;
        isHash: boolean;
        isHex: boolean;
        isHTMLTag: boolean;
        isIP: boolean;
        isIPv4: boolean;
        isIPv6: boolean;
        isMD5: boolean;
        isPrivateIP: boolean;
        isSHA1: boolean;
        isSHA256: boolean;
        isSHA512: boolean;
        isURL: boolean;
        latitude: number;
        longitude: number;
        requestContext: { isUserInitiated: boolean; requestType: "onDemand" };
        type: EntityType;
        types: EntityType[];
        value: string;
    }
    Index

    Properties

    channels: string[]
    displayValue: string
    hashType: string
    IPType: string
    isDomain: boolean
    isEmail: boolean
    isHash: boolean
    isHex: boolean
    isHTMLTag: boolean
    isIP: boolean
    isIPv4: boolean
    isIPv6: boolean
    isMD5: boolean
    isPrivateIP: boolean
    isSHA1: boolean
    isSHA256: boolean
    isSHA512: boolean
    isURL: boolean
    latitude: number
    longitude: number
    requestContext: { isUserInitiated: boolean; requestType: "onDemand" }
    types: EntityType[]
    value: string