mirror of
https://github.com/domfelipe/mika-agent-assist.git
synced 2026-08-07 11:36:42 +00:00
Changes
Co-authored-by: domfelipe <53182096+domfelipe@users.noreply.github.com>
This commit is contained in:
parent
a34ff1b17b
commit
af4a6968a8
2 changed files with 69 additions and 0 deletions
|
|
@ -632,6 +632,23 @@ export type Database = {
|
|||
Args: { check_env?: string; user_uuid: string }
|
||||
Returns: boolean
|
||||
}
|
||||
vault_create_secret: {
|
||||
Args: {
|
||||
secret_description?: string
|
||||
secret_name: string
|
||||
secret_value: string
|
||||
}
|
||||
Returns: {
|
||||
secret_id: string
|
||||
}[]
|
||||
}
|
||||
vault_decrypt_secret: {
|
||||
Args: { secret_id: string }
|
||||
Returns: {
|
||||
decrypted_secret: string
|
||||
}[]
|
||||
}
|
||||
vault_delete_secret: { Args: { secret_id: string }; Returns: undefined }
|
||||
}
|
||||
Enums: {
|
||||
[_ in never]: never
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue