@servicenow/sdk - v4.4.1
    Preparing search index...

    Type Alias OutputFieldWithDotwalk<C>

    OutputFieldWithDotwalk: ExtractRefTable<C> extends never
        ? (C extends Typed<infer T> ? T : unknown) & Record<
            string,
            FlowValueType,
        >
        : TableAwareRecordWithFallback<ExtractRefTable<C>>

    Resolve an output field type with dotwalk support for reference columns. If the column references a table, provides dotwalk access to that table's fields. Otherwise falls back to the base type with arbitrary property access for datapill references.

    Type Parameters