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

    Type Alias StepOutputs<O, TInputs>

    StepOutputs: [O] extends [any]
        ? any
        : O extends Record<string, FlowValueType>
            ? ExtractStepTable<TInputs, O> extends never
                ? Required<FlowIOType<O>>
                : OutputsWithDependentTable<O, ExtractStepTable<TInputs, O>>
            : any

    Resolve step outputs with table-aware dot-walk.

    • When table schema is available: full IntelliSense for table fields (e.g., incident.short_description)
    • When table schema is NOT available: returns any for unrestricted dot-walk (same as Action())
    • When no dependent outputs: returns typed outputs with IntelliSense for output names

    Type Parameters

    • O
    • TInputs