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

    Variable sys_script_clientConst

    sys_script_client: {
        extends: "sys_metadata";
        name: "sys_script_client";
        schema: {
            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 }>;
        };
    } = ...

    Type Declaration

    • Readonlyextends: "sys_metadata"
    • Readonlyname: "sys_script_client"
    • Readonlyschema: {
          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 }>;
      }