cloudflare / cloudflare-rs

Rust library for the Cloudflare v4 API
255 stars 79 forks source link

wildcard_proxiable not included in zones listing response #178

Closed jccomputing closed 2 years ago

jccomputing commented 2 years ago

The GET /client/v4/zone response doesn't include the wildcard_proxiable anymore.

This produces a deserialization error: Error: error decoding response body: missing field `wildcard_proxiable` at line 1 column 591

I don't know if the field has become optional or simply removed from the response.

Removing the field from the struct or converting it to an Option<bool> works.