feat: next

This commit is contained in:
2025-05-12 11:30:33 -04:00
parent cdeaa13d92
commit 07cec78aa5
36 changed files with 1553 additions and 327 deletions

View File

@ -2,11 +2,14 @@ syntax = "proto3";
package item.v1;
import "buf/validate/validate.proto";
import "google/protobuf/timestamp.proto";
message Item {
int64 id = 1;
string name = 2;
string name = 2 [
(buf.validate.field).string.min_len = 3
];
google.protobuf.Timestamp added = 3;
string description = 4;
float price = 5;