The type of a Document cannot be updated with ==type
In v12 I can do this
await actor.update({[`type`]: "npc"})
await actor.update({[`type`]: "npc"})
In v13 I get the errors which suggest using == or recursive: false. Neither of which seems to work. What is the proper way to change a document type in v13?