msgraph-typescript-typings
msgraph-typescript-typings copied to clipboard
resourceProvisioningOptions missing from Group
It seems like the resourceProvisioningOptions property is missing from the Group entity
Global for all libraries.
That property is not set on the v1.0 metadata for Group entity. It is there for beta. Is it supposed to be there for v1.0?
It's included in the v1.0 API reference so I'd expect it to be in the typings too.
It is also returned by the /v1.0/groups API call, so it doesn't look like a case of beta documentation leaking to V1. @nikithauc, I think we should ask the service team to update their metadata.
It is also returned by the /v1.0/groups API call, so it doesn't look like a case of beta documentation leaking to V1. @nikithauc, I think we should ask the service team to update their metadata.
Is the missing resource breaking anything ?
It's not breaking anything for me, but since it's missing, I need to cast the response from Graph to any
which defies the purpose of using typings.
The effect is similar in other languages, the property will show up not as a direct property of the Group object, but in the generic AdditionalData
dictionary, which requires additional steps to wrap and unwrap.
I started an email about this. Let me add y'all.