diff --git a/packages/misskey-js/src/autogen/types.ts b/packages/misskey-js/src/autogen/types.ts
index 2a7e5a323d..64aafdc4d1 100644
--- a/packages/misskey-js/src/autogen/types.ts
+++ b/packages/misskey-js/src/autogen/types.ts
@@ -9034,6 +9034,18 @@ export type operations = {
                 expiresAt: string | null;
                 roleId: string;
               })[];
+            publicKeys: {
+                userId: string;
+                keyId: string;
+                keyPem: string;
+              }[] | null;
+            keyPairs: ({
+              userId: string;
+              publicKey: string;
+              privateKey: string;
+              ed25519PublicKey: string | null;
+              ed25519PrivateKey: string | null;
+            }) | null;
           };
         };
       };