From 1aa30ec777a8c0687464299c8ea2f724c7132581 Mon Sep 17 00:00:00 2001 From: Florian Dewald Date: Mon, 27 Oct 2025 21:40:12 +0100 Subject: [PATCH] Rebase with main and regenerate protobuf --- proto/gen/api/v1/attachment_service.pb.go | 1 - proto/gen/api/v1/user_service.pb.go | 1 + web/src/types/proto/api/v1/attachment_service.ts | 5 +---- 3 files changed, 2 insertions(+), 5 deletions(-) diff --git a/proto/gen/api/v1/attachment_service.pb.go b/proto/gen/api/v1/attachment_service.pb.go index 4121e684c..2e9d2dea7 100644 --- a/proto/gen/api/v1/attachment_service.pb.go +++ b/proto/gen/api/v1/attachment_service.pb.go @@ -47,7 +47,6 @@ type Attachment struct { // Format: memos/{memo} Memo *string `protobuf:"bytes,8,opt,name=memo,proto3,oneof" json:"memo,omitempty"` // Optional. Output only. Whether to use thumbnails for this attachment when stored in S3. - // This is determined by the workspace setting at the time of attachment creation. UseThumbnailForS3Image *bool `protobuf:"varint,9,opt,name=use_thumbnail_for_s3_image,json=useThumbnailForS3Image,proto3,oneof" json:"use_thumbnail_for_s3_image,omitempty"` unknownFields protoimpl.UnknownFields sizeCache protoimpl.SizeCache diff --git a/proto/gen/api/v1/user_service.pb.go b/proto/gen/api/v1/user_service.pb.go index 332ec9387..2067416b6 100644 --- a/proto/gen/api/v1/user_service.pb.go +++ b/proto/gen/api/v1/user_service.pb.go @@ -428,6 +428,7 @@ type GetUserRequest struct { // Supports both numeric IDs and username strings: // - users/{id} (e.g., users/101) // - users/{username} (e.g., users/steven) + // // Format: users/{id_or_username} Name string `protobuf:"bytes,1,opt,name=name,proto3" json:"name,omitempty"` // Optional. The fields to return in the response. diff --git a/web/src/types/proto/api/v1/attachment_service.ts b/web/src/types/proto/api/v1/attachment_service.ts index ff60bc282..36fbf7f3b 100644 --- a/web/src/types/proto/api/v1/attachment_service.ts +++ b/web/src/types/proto/api/v1/attachment_service.ts @@ -40,10 +40,7 @@ export interface Attachment { memo?: | string | undefined; - /** - * Optional. Output only. Whether to use thumbnails for this attachment when stored in S3. - * This is determined by the workspace setting at the time of attachment creation. - */ + /** Optional. Output only. Whether to use thumbnails for this attachment when stored in S3. */ useThumbnailForS3Image?: boolean | undefined; }