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

    Type Alias OutputsWithDependentTable<O, TTable>

    OutputsWithDependentTable: {
        [K in keyof KnownKeys<O>]: KnownKeys<O>[K] extends FlowObjectType
            ? InferFlowObject<KnownKeys<O>[K]>
            : KnownKeys<O>[K] extends FlowArrayType
                ? InferFlowArray<KnownKeys<O>[K]>
                : KnownKeys<O>[K] extends Column
                    ? ResolveOutputWithTable<KnownKeys<O>[K], TTable>
                    : TypeOfWithFlowObject<KnownKeys<O>[K]>
    }

    Transform outputs with dependent field resolution based on input table. This type takes the outputs schema AND the input table to provide correct typing. Uses KnownKeys to remove index signature from the constraint.

    Type Parameters

    • O extends Record<string, FlowValueType>

      The outputs schema

    • TTable extends TableName

      The table name from input (e.g., 'incident', 'pa_dashboards')