From b93f54bc44d21ded22a60a63921e57a8fcd7ef0e Mon Sep 17 00:00:00 2001 From: Guillaume Sachet Date: Wed, 4 Jun 2025 11:39:32 +0200 Subject: [PATCH] refactor(filesystem): update UpdateFileRequest message to replace 'name' with 'id' --- proto/digitalkin/filesystem/v1/filesystem.proto | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/proto/digitalkin/filesystem/v1/filesystem.proto b/proto/digitalkin/filesystem/v1/filesystem.proto index d61cbfc..d8eb10d 100644 --- a/proto/digitalkin/filesystem/v1/filesystem.proto +++ b/proto/digitalkin/filesystem/v1/filesystem.proto @@ -246,8 +246,8 @@ message UpdateFileRequest { // context: Context ID for the file string context = 1 [(buf.validate.field).required = true, (buf.validate.field).string.pattern = "^(missions:|setups:).*$"]; - // name: Current name of the file - string name = 2 [(buf.validate.field).required = true, (buf.validate.field).string.min_len = 1]; + // id: Current id of the file + string id = 2 [(buf.validate.field).required = true]; // new_name: New name for the file (optional) string new_name = 3;