@servicenow/sdk - v4.4.1
    Preparing search index...
    IsVisibleField: T extends { attributes: infer A }
        ? A extends | { visible: "false"
        | false }
        | { visible_in_fd: "false" | false }
            ? false
            : true
        : true

    Helper to determine if a field should be included (visible and not hidden). Returns false if the field has attributes.visible='false' or attributes.visible_in_fd='false'

    Type Parameters

    • T