feat: add source registry mutations
This commit is contained in:
@@ -188,3 +188,16 @@ class ListRegistryEntriesParams(RpcParamsModel):
|
||||
|
||||
class InspectRegistryEntryParams(RpcParamsModel):
|
||||
source_id: str = Field(min_length=1)
|
||||
|
||||
|
||||
class AddRegistryEntryParams(RpcParamsModel):
|
||||
entry: dict[str, Any]
|
||||
|
||||
|
||||
class UpdateRegistryEntryParams(RpcParamsModel):
|
||||
source_id: str = Field(min_length=1)
|
||||
patch: dict[str, Any]
|
||||
|
||||
|
||||
class RegistryEntryIdParams(RpcParamsModel):
|
||||
source_id: str = Field(min_length=1)
|
||||
|
||||
Reference in New Issue
Block a user