feat: add platform access foundation

This commit is contained in:
a.tolmachev
2026-03-29 23:17:05 +03:00
parent 9fb69c1571
commit 587584a8bf
19 changed files with 1058 additions and 34 deletions
+6
View File
@@ -102,6 +102,12 @@ impl From<RegistryError> for ApiError {
RegistryError::AgentNotFound { agent_id } => {
Self::not_found(format!("agent {agent_id} was not found"))
}
RegistryError::InvitationNotFound { invitation_id } => {
Self::not_found(format!("invitation {invitation_id} was not found"))
}
RegistryError::PlatformApiKeyNotFound { key_id } => {
Self::not_found(format!("platform api key {key_id} was not found"))
}
RegistryError::PublishedAgentNotFound {
workspace_slug,
agent_slug,