microsoftgraph / msgraph-metadata

Microsoft Graph metadata captured and used for generating client library code files.
https://graph.microsoft.com
MIT License
107 stars 33 forks source link

Remove optional parameter `forceTakeover` to the `verify` action #708

Closed andrueastman closed 1 month ago

andrueastman commented 1 month ago

Similar to https://github.com/microsoftgraph/msgraph-metadata/issues/694

Graph SDK releases are currently blocked because of a breaking change in the SDK generation related to introduction of a new optional parameter forceTakeover to the verify action as shown below:

      <Action Name="verify" EntitySetPath="bindingParameter" IsBound="true">
        <Parameter Name="bindingParameter" Type="graph.domain" Nullable="false" />
        <Parameter Name="forceTakeover" Type="Edm.Boolean">
          <Annotation Term="Org.OData.Core.V1.OptionalParameter" />
        </Parameter>
        <ReturnType Type="graph.domain" />
      </Action>

This issue has been created to unblock the SDK generation issue and would require further work on Kiota after this issue is fixed.

To unblock weekly SDK releases, could we temporarily remove this parameter?