This commit is contained in:
tamaina 2024-07-21 00:14:23 +09:00
parent 307e1c4d96
commit 73e3427afe
1 changed files with 12 additions and 0 deletions

View File

@ -9034,6 +9034,18 @@ export type operations = {
expiresAt: string | null; expiresAt: string | null;
roleId: string; roleId: string;
})[]; })[];
publicKeys: {
userId: string;
keyId: string;
keyPem: string;
}[] | null;
keyPairs: ({
userId: string;
publicKey: string;
privateKey: string;
ed25519PublicKey: string | null;
ed25519PrivateKey: string | null;
}) | null;
}; };
}; };
}; };