@servicenow/sdk - v4.4.1
    Preparing search index...
    TriggerInputTypes: T["inputs"] extends Record<string, Column>
        ? FlowIOType<T["inputs"]>
        : Record<string, never>

    Maps trigger inputs to their TypeScript types with mandatory field support.

    • If inputs are defined: mandatory fields are required, others are optional
    • If inputs are undefined: no inputs are allowed (Record<string, never>)

    Reuses FlowIOType from FlowTypes.ts since Column extends FlowValueType.

    Type Parameters