From 1c566baecc592be0516815eebaa974bf98b04125 Mon Sep 17 00:00:00 2001 From: Dominik Schmidt Date: Tue, 14 Apr 2026 22:30:22 +0200 Subject: [PATCH 1/2] feat: Add @libre.graph.user.following property to driveItem --- api/openapi-spec/v1.0.yaml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/api/openapi-spec/v1.0.yaml b/api/openapi-spec/v1.0.yaml index da69c85..2524531 100644 --- a/api/openapi-spec/v1.0.yaml +++ b/api/openapi-spec/v1.0.yaml @@ -4921,6 +4921,12 @@ components: '@UI.Hidden': description: Properties or facets (see UI.Facet) annotated with this term will not be rendered if the annotation evaluates to true. Users can set this to hide permissions. type: boolean + '@libre.graph.user.following': + description: | + Indicates whether the current user is following this DriveItem. Read-only. + Use the FollowDriveItem and UnfollowDriveItem operations to change the following state. + type: boolean + readOnly: true sharingLinkType: type: string enum: [ internal, view, upload, edit, createOnly, blocksDownload ] From 5641097c017ae7b6789b7e9292afc607d9d449e8 Mon Sep 17 00:00:00 2001 From: Dominik Schmidt Date: Tue, 14 Apr 2026 23:32:57 +0200 Subject: [PATCH 2/2] Add tags property to DriveItem in OpenAPI spec --- api/openapi-spec/v1.0.yaml | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/api/openapi-spec/v1.0.yaml b/api/openapi-spec/v1.0.yaml index 2524531..7e919c6 100644 --- a/api/openapi-spec/v1.0.yaml +++ b/api/openapi-spec/v1.0.yaml @@ -4927,6 +4927,14 @@ components: Use the FollowDriveItem and UnfollowDriveItem operations to change the following state. type: boolean readOnly: true + '@libre.graph.tags': + description: | + The list of tags assigned to this DriveItem. Read-only. + Use the AssignTags and UnassignTags operations to modify tags. + type: array + items: + type: string + readOnly: true sharingLinkType: type: string enum: [ internal, view, upload, edit, createOnly, blocksDownload ]