feat: add native KDBX scaffolding and in-memory KeePass API
This commit is contained in:
@@ -38,21 +38,3 @@ export type KeePassGroupInput = {
|
||||
name: string;
|
||||
path?: string;
|
||||
};
|
||||
|
||||
export type KeePassCommand =
|
||||
| { command: "list-entries" }
|
||||
| { command: "find-entries"; query: KeePassFindQuery }
|
||||
| { command: "list-groups" }
|
||||
| { command: "create-entry"; entry: KeePassEntryInput }
|
||||
| { command: "create-group"; group: KeePassGroupInput }
|
||||
| { command: "save" };
|
||||
|
||||
export type KeePassResponse<T> =
|
||||
| {
|
||||
ok: true;
|
||||
data: T;
|
||||
}
|
||||
| {
|
||||
ok: false;
|
||||
error: string;
|
||||
};
|
||||
Reference in New Issue
Block a user