Skip to content
Closed
Show file tree
Hide file tree
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
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -24,4 +24,5 @@ run.sh
*.log

# Dist folders in tools
/tools/**/dist/
/tools/**/dist/
.serena
Original file line number Diff line number Diff line change
Expand Up @@ -246,6 +246,8 @@ message SetupSummary {
string setup_version_id = 10;
// Current version label
string setup_version = 11;
// structure: Arborescence of the data files for services
string structure = 12;
// Tags
repeated string tags = 12;
repeated string tags = 13;
}
14 changes: 14 additions & 0 deletions proto/agentic_mesh_protocol/setup/v1/setup.proto
Original file line number Diff line number Diff line change
Expand Up @@ -136,6 +136,8 @@ message GetSetupRequest {
string setup_id = 1 [(buf.validate.field).required = true];
// version: The unique identifier of the active setup version.
optional string version = 2;
// structure_key: Specific key query from setup version.
string structure_key = 3;
}

// GetSetupResponse
Expand Down Expand Up @@ -163,6 +165,10 @@ message CreateSetupRequest {
string name = 1 [(buf.validate.field).required = true];
// content: Key-value pairs for the initial configuration content.
google.protobuf.Struct content = 2 [(buf.validate.field).required = true];
// description: Technical descritpion of module
string description = 3 [(buf.validate.field).required = true];
// structure: Arborescence of the data files for services
string structure = 4 [(buf.validate.field).required = true];
}

// CreateSetupResponse
Expand All @@ -179,6 +185,8 @@ message CreateSetupResponse {
Setup setup = 2;
// setup_version: The newly created setup version.
SetupVersion setup_version = 3;
// structure: Arborescence of the data files for services
string structure = 4;
}

// UpdateSetupRequest
Expand All @@ -198,6 +206,10 @@ message UpdateSetupRequest {
google.protobuf.Struct content = 3 [(buf.validate.field).required = true];
// set_as_current: Whether the new version becomes the current one.
bool set_as_current = 4;
// description: Technical descritpion of module
string description = 5 [(buf.validate.field).required = true];
// structure: Arborescence of the data files for services
string structure = 6 [(buf.validate.field).required = true];
}

// UpdateSetupResponse
Expand All @@ -214,6 +226,8 @@ message UpdateSetupResponse {
Setup setup = 2;
// setup_version: The updated setup version.
SetupVersion setup_version = 3;
// structure: Arborescence of the data files for services
string structure = 4 [(buf.validate.field).required = true];
}

// DeleteSetupRequest
Expand Down
4 changes: 2 additions & 2 deletions proto/buf.lock
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,5 @@
version: v2
deps:
- name: buf.build/bufbuild/protovalidate
commit: 50325440f8f24053b047484a6bf60b76
digest: b5:74cb6f5c0853c3c10aafc701614194bbd63326bdb8ef4068214454b8894b03ba4113e04b3a33a8321cdf05336e37db4dc14a5e2495db8462566914f36086ba31
commit: 511051f7f4374c3ca873b53ae68a9288
digest: b5:a4a2d4d808a25984cced60769c822c5d496ef0b740f56ac0c9e6b97aaa25b86a9332a00ffd74e0cd202be29e91bd3edfb0bf2ba4dacfe48ff2d8217f9986e3c8
Loading