build(deps): bump github.com/opencloud-eu/libre-graph-api-go

Bumps [github.com/opencloud-eu/libre-graph-api-go](https://github.com/opencloud-eu/libre-graph-api-go) from 1.0.5 to 1.0.6.
- [Commits](https://github.com/opencloud-eu/libre-graph-api-go/compare/v1.0.5...v1.0.6)

---
updated-dependencies:
- dependency-name: github.com/opencloud-eu/libre-graph-api-go
  dependency-version: 1.0.6
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <support@github.com>
This commit is contained in:
dependabot[bot]
2025-05-20 14:27:03 +00:00
committed by GitHub
parent b954681c3b
commit 765a5bccd7
7 changed files with 578 additions and 4 deletions
+6
View File
@@ -85,6 +85,8 @@ type APIClient struct {
MeDrivesApi *MeDrivesApiService
MePhotoApi *MePhotoApiService
MeUserApi *MeUserApiService
RoleManagementApi *RoleManagementApiService
@@ -95,6 +97,8 @@ type APIClient struct {
UserAppRoleAssignmentApi *UserAppRoleAssignmentApiService
UserPhotoApi *UserPhotoApiService
UsersApi *UsersApiService
}
@@ -132,11 +136,13 @@ func NewAPIClient(cfg *Configuration) *APIClient {
c.MeDriveRootApi = (*MeDriveRootApiService)(&c.common)
c.MeDriveRootChildrenApi = (*MeDriveRootChildrenApiService)(&c.common)
c.MeDrivesApi = (*MeDrivesApiService)(&c.common)
c.MePhotoApi = (*MePhotoApiService)(&c.common)
c.MeUserApi = (*MeUserApiService)(&c.common)
c.RoleManagementApi = (*RoleManagementApiService)(&c.common)
c.TagsApi = (*TagsApiService)(&c.common)
c.UserApi = (*UserApiService)(&c.common)
c.UserAppRoleAssignmentApi = (*UserAppRoleAssignmentApiService)(&c.common)
c.UserPhotoApi = (*UserPhotoApiService)(&c.common)
c.UsersApi = (*UsersApiService)(&c.common)
return c