Member Junction
    Preparing search index...

    A record fetched from an external system

    interface ExternalRecord {
        ExternalID: string;
        Fields: Record<string, unknown>;
        IsDeleted?: boolean;
        ModifiedAt?: Date;
        ObjectType: string;
    }
    Index

    Properties

    ExternalID: string

    Unique identifier in the external system

    Fields: Record<string, unknown>

    Field name→value pairs from the external system

    IsDeleted?: boolean

    Whether this record has been deleted in the external system

    ModifiedAt?: Date

    When this record was last modified externally

    ObjectType: string

    Object type name in the external system (e.g., "Contact", "Company")