From ac9d02712441fb5ed03efca7c11b6e3ccb51ff8a Mon Sep 17 00:00:00 2001
From: Semyon Krestyaninov <krestyaninov@perx.ru>
Date: Mon, 20 May 2024 11:52:07 +0000
Subject: [PATCH] =?UTF-8?q?fix(files):=20=D0=98=D0=B7=D0=BC=D0=B5=D0=BD?=
 =?UTF-8?q?=D0=B5=D0=BD=20=D1=82=D0=B8=D0=BF=20=D0=BF=D0=BE=D0=BB=D1=8F=20?=
 =?UTF-8?q?Size=20=D1=81=20`int32`=20=D0=BD=D0=B0=20`uint64`=20=D0=B4?=
 =?UTF-8?q?=D0=BB=D1=8F=20=D1=81=D1=82=D1=80=D1=83=D0=BA=D1=82=D1=83=D1=80?=
 =?UTF-8?q?=D1=8B=20File=20=D0=B2=20=D1=81=D0=B5=D1=80=D0=B2=D0=B8=D1=81?=
 =?UTF-8?q?=D0=B5=20Files?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit

#Close #PRXS-2551
---
 proto/files/files.proto | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/proto/files/files.proto b/proto/files/files.proto
index ff3cf8c..2629883 100644
--- a/proto/files/files.proto
+++ b/proto/files/files.proto
@@ -11,7 +11,7 @@ package files;
 message File {
   string id = 1;        // Уникальный идентификатор файла в хранилище
   string name = 2;      // Имя файла
-  int32 size = 3;       // Размер файла
+  uint64 size = 3;      // Размер файла
   string mime_type = 4; // Mime-type файла
   string url = 5;       // Адрес для загрузки файла
 }
-- 
GitLab