@servicenow/sdk - v4.4.1
    Preparing search index...
    interface sp_instance {
        active: Typed<boolean, { default: true; label: "Active" }>;
        class_name: Typed<string, { label: "Bootstrap class name" }>;
        color: Typed<
            "default"
            | "primary"
            | "warning"
            | "danger"
            | "success"
            | "info",
            {
                choices: {
                    danger: { label: "Danger" };
                    default: { label: "Default" };
                    info: { label: "Info" };
                    primary: { label: "Primary" };
                    success: { label: "Success" };
                    warning: { label: "Warning" };
                };
                default: "default";
                label: "Bootstrap color";
            },
        >;
        css: Typed<string, { label: "CSS" }>;
        glyph: Typed<string, { label: "Glyph" }>;
        id: Typed<string, {}>;
        order: Typed<number, { default: 1; label: "Order" }>;
        roles: Typed<(string | Role)[], { label: "Roles" }>;
        short_description: Typed<string, { label: "Short description" }>;
        size: Typed<
            "md"
            | "sm"
            | "lg"
            | "xs",
            {
                choices: {
                    lg: { label: "Large" };
                    md: { label: "Medium" };
                    sm: { label: "Small" };
                    xs: { label: "Extra Small" };
                };
                default: "md";
                label: "Bootstrap size";
            },
        >;
        sp_column: Typed<
            | string
            | ExplicitKey<"sp_column">
            | TableBrand<"sp_column">
            | Record<"sp_column">,
            { label: "Column"; referenceTable: "sp_column" },
        >;
        sp_widget: Typed<
            | string
            | ExplicitKey<"sp_widget">
            | TableBrand<"sp_widget">
            | Record<"sp_widget">,
            { label: "Widget"; referenceTable: "sp_widget" },
        >;
        title: Typed<string, { label: "Title" }>;
        url: Typed<string, { label: "HREF / URL" }>;
        widget_parameters: Typed<
            string
            | ScriptModule<Function>,
            { label: "Additional options, JSON format" },
        >;
    }

    Hierarchy (View Summary)

    Index

    Properties

    active: Typed<boolean, { default: true; label: "Active" }>
    class_name: Typed<string, { label: "Bootstrap class name" }>
    color: Typed<
        "default"
        | "primary"
        | "warning"
        | "danger"
        | "success"
        | "info",
        {
            choices: {
                danger: { label: "Danger" };
                default: { label: "Default" };
                info: { label: "Info" };
                primary: { label: "Primary" };
                success: { label: "Success" };
                warning: { label: "Warning" };
            };
            default: "default";
            label: "Bootstrap color";
        },
    >
    css: Typed<string, { label: "CSS" }>
    glyph: Typed<string, { label: "Glyph" }>
    id: Typed<string, {}>
    order: Typed<number, { default: 1; label: "Order" }>
    roles: Typed<(string | Role)[], { label: "Roles" }>
    short_description: Typed<string, { label: "Short description" }>
    size: Typed<
        "md"
        | "sm"
        | "lg"
        | "xs",
        {
            choices: {
                lg: { label: "Large" };
                md: { label: "Medium" };
                sm: { label: "Small" };
                xs: { label: "Extra Small" };
            };
            default: "md";
            label: "Bootstrap size";
        },
    >
    sp_column: Typed<
        | string
        | ExplicitKey<"sp_column">
        | TableBrand<"sp_column">
        | Record<"sp_column">,
        { label: "Column"; referenceTable: "sp_column" },
    >
    sp_widget: Typed<
        | string
        | ExplicitKey<"sp_widget">
        | TableBrand<"sp_widget">
        | Record<"sp_widget">,
        { label: "Widget"; referenceTable: "sp_widget" },
    >
    title: Typed<string, { label: "Title" }>
    url: Typed<string, { label: "HREF / URL" }>
    widget_parameters: Typed<
        string
        | ScriptModule<Function>,
        { label: "Additional options, JSON format" },
    >