From 73e3427afe913a76b555639e77c22777b449eaa5 Mon Sep 17 00:00:00 2001 From: tamaina Date: Sun, 21 Jul 2024 00:14:23 +0900 Subject: [PATCH] autogen --- packages/misskey-js/src/autogen/types.ts | 12 ++++++++++++ 1 file changed, 12 insertions(+) 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; }; }; };