Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 11 additions & 1 deletion raystack/frontier/v1beta1/frontier.proto
Original file line number Diff line number Diff line change
Expand Up @@ -1848,9 +1848,19 @@
Project project = 1;
}

message UpdateProjectRequestBody {
string name = 1 [
(buf.validate.field).string.pattern = "^[A-Za-z0-9-_]+$",
(google.api.field_behavior) = REQUIRED
];
string title = 2;
google.protobuf.Struct metadata = 3;
reserved 4;
}

message UpdateProjectRequest {
string id = 1;

Check failure on line 1862 in raystack/frontier/v1beta1/frontier.proto

View workflow job for this annotation

GitHub Actions / validate

Field "2" with name "body" on message "UpdateProjectRequest" changed type from "raystack.frontier.v1beta1.ProjectRequestBody" to "raystack.frontier.v1beta1.UpdateProjectRequestBody".
ProjectRequestBody body = 2;
UpdateProjectRequestBody body = 2;
}
Comment thread
rohilsurana marked this conversation as resolved.

message UpdateProjectResponse {
Expand Down
Loading