Bump libre-graph-api for $count support on the permissions endpoints

This commit is contained in:
Ralf Haferkamp
2025-06-03 14:53:40 +02:00
parent fdab4dd174
commit daafbc9119
8 changed files with 101 additions and 4 deletions
+10
View File
@@ -152,6 +152,7 @@ type ApiListMyDrivesBetaRequest struct {
ApiService *MeDrivesApiService
orderby *string
filter *string
expand *string
}
// The $orderby system query option allows clients to request resources in either ascending order using asc or descending order using desc.
@@ -166,6 +167,12 @@ func (r ApiListMyDrivesBetaRequest) Filter(filter string) ApiListMyDrivesBetaReq
return r
}
// Expand related entities
func (r ApiListMyDrivesBetaRequest) Expand(expand string) ApiListMyDrivesBetaRequest {
r.expand = &expand
return r
}
func (r ApiListMyDrivesBetaRequest) Execute() (*CollectionOfDrives, *http.Response, error) {
return r.ApiService.ListMyDrivesBetaExecute(r)
}
@@ -210,6 +217,9 @@ func (a *MeDrivesApiService) ListMyDrivesBetaExecute(r ApiListMyDrivesBetaReques
if r.filter != nil {
parameterAddToHeaderOrQuery(localVarQueryParams, "$filter", r.filter, "form", "")
}
if r.expand != nil {
parameterAddToHeaderOrQuery(localVarQueryParams, "$expand", r.expand, "form", "")
}
// to determine the Content-Type header
localVarHTTPContentTypes := []string{}