@servicenow/sdk - v4.4.1
    Preparing search index...
    FindDependentFieldName: {
        [K in keyof O]: IsDocumentIdColumn<O[K]> extends true
            ? ExtractDependentField<O[K]>
            : never
    }[keyof O]

    Find the first DocumentIdColumn output field that has a 'dependent' property and extract its dependent field name. Returns the dependent field name (e.g., 'table_name', 'source_table') or never if none found. Only considers DocumentIdColumn outputs, not other columns that might have a dependent property.

    Type Parameters