@servicenow/sdk - v4.4.1
    Preparing search index...
    interface sys_script_client {
        active: Typed<boolean, { default: true }>;
        applies_extended: Typed<boolean, { default: false }>;
        description: Typed<string, { maxLength: 4000 }>;
        field: Typed<string, { dropdown: "dropdown_with_none" }>;
        global: Typed<boolean, { default: true }>;
        isolate_script: Typed<boolean, { default: false }>;
        messages: Typed<string, { maxLength: 4000 }>;
        name: Typed<string, { maxLength: 40 }>;
        script: Typed<string | ScriptModule<Function>, {}>;
        table: Typed<keyof Tables, {}>;
        type: Typed<
            ""
            | "onCellEdit"
            | "onChange"
            | "onLoad"
            | "onSubmit",
            {
                choices: {
                    "": "--None--";
                    onCellEdit: "onCellEdit";
                    onChange: "onChange";
                    onLoad: "onLoad";
                    onSubmit: "onSubmit";
                };
                dropdown: "dropdown_with_none";
            },
        >;
        ui_type: Typed<
            0
            | 1
            | 10,
            {
                choices: { "0": "Desktop"; "1": "Mobile/Service Portal"; "10": "All" };
                default: 0;
            },
        >;
        view: Typed<string, { maxLength: 40 }>;
    }

    Hierarchy (View Summary)

    Index

    Properties

    active: Typed<boolean, { default: true }>
    applies_extended: Typed<boolean, { default: false }>
    description: Typed<string, { maxLength: 4000 }>
    field: Typed<string, { dropdown: "dropdown_with_none" }>
    global: Typed<boolean, { default: true }>
    isolate_script: Typed<boolean, { default: false }>
    messages: Typed<string, { maxLength: 4000 }>
    name: Typed<string, { maxLength: 40 }>
    script: Typed<string | ScriptModule<Function>, {}>
    table: Typed<keyof Tables, {}>
    type: Typed<
        ""
        | "onCellEdit"
        | "onChange"
        | "onLoad"
        | "onSubmit",
        {
            choices: {
                "": "--None--";
                onCellEdit: "onCellEdit";
                onChange: "onChange";
                onLoad: "onLoad";
                onSubmit: "onSubmit";
            };
            dropdown: "dropdown_with_none";
        },
    >
    ui_type: Typed<
        0
        | 1
        | 10,
        {
            choices: { "0": "Desktop"; "1": "Mobile/Service Portal"; "10": "All" };
            default: 0;
        },
    >
    view: Typed<string, { maxLength: 40 }>