Genesyscloud_user schema break in provider v1.35.0

Upgraded the CX as Code provider to v1.35.0 and my pipelines are failing hard. The genesyscloud_user resource seems to have shifted how it handles the routing_skills attribute. In 1.34.0 it was a flat list of strings. Now it looks like it wants a block structure, but the docs are vague.

hcl
resource "genesyscloud_user" "test_user" {
 name = "Trace Test User"
 email = "trace.user@example.com"
 routing_skills = ["support", "sales"]
}

Running terraform plan gives this:

Error: Unsupported argument

 on main.tf line 5, in resource "genesyscloud_user" "test_user":
 5: routing_skills = ["support", "sales"]

An argument named "routing_skills" is not expected here.

I need to provision users for my OTel injection service. The context propagation relies on specific skill assignments being present before the Data Action runs. If the user isn’t set up right, the spans get dropped.

Did they rename it to routing_skill_ids or something else? Or is this a bug in the 1.35.0 release? My backend is in Asia/Manila and I can’t afford downtime while I guess at the schema.