Add list items to table cell

Hi! I want to allow using list items inside table cells. As I understand, I just need to modify cellContent option but it doesn’t work (reason - Invalid content for node table_cell)

nodes = nodes
  .append(
    tableNodes({
      tableGroup: "block",
      cellContent:
        "(paragraph | heading) (ordered_list | bullet_list)* block*",
    })
  )

What I am doing wrong?

Just need to rewrite it as:

cellContent: "(paragraph | heading | bullet_list)* block*"