Genesyscloud_user schema breaking in v1.35.0?

Upgraded to genesyscloud provider v1.35.0 and my genesyscloud_user resources are exploding. The routing_skill block seems to have shifted to a required list structure, but the docs still show the old map syntax. Here’s the config that’s failing:

resource "genesyscloud_user" "agent" {
 name = "Test Agent"
 routing_skill {
 skill_id = "abc-123"
 level = 5
 }
}

Terraform says Inappropriate value for attribute "routing_skill": list of object required. Am I missing a migration step or is the provider broken?