summaryrefslogtreecommitdiff
path: root/packages/misskey-js/src/autogen
diff options
context:
space:
mode:
authorかっこかり <67428053+kakkokari-gtyih@users.noreply.github.com>2025-09-13 08:33:14 +0900
committerGitHub <noreply@github.com>2025-09-13 08:33:14 +0900
commit5b4115e21a6822a434a9bfbbd53f22b3ca961239 (patch)
treeeaac22e870a95feccc47ccc2693b794d0ccd299f /packages/misskey-js/src/autogen
parentUpdate CHANGELOG.md (diff)
downloadmisskey-5b4115e21a6822a434a9bfbbd53f22b3ca961239.tar.gz
misskey-5b4115e21a6822a434a9bfbbd53f22b3ca961239.tar.bz2
misskey-5b4115e21a6822a434a9bfbbd53f22b3ca961239.zip
refactor(frontend): フロントエンドの型エラー解消(途中まで) (#16539)
* fix(frontend): FormLinkをボタンとして使用した際にエラーが出る問題を修正 * refactor(frontend): フロントエンドの型エラー解消 * remove unused ts-expect-error * migrate * remove unrelated changes * fix lint * more type fixes
Diffstat (limited to 'packages/misskey-js/src/autogen')
-rw-r--r--packages/misskey-js/src/autogen/types.ts9
1 files changed, 7 insertions, 2 deletions
diff --git a/packages/misskey-js/src/autogen/types.ts b/packages/misskey-js/src/autogen/types.ts
index d92ef599f3..ff76f653fc 100644
--- a/packages/misskey-js/src/autogen/types.ts
+++ b/packages/misskey-js/src/autogen/types.ts
@@ -6049,7 +6049,9 @@ export interface operations {
[name: string]: unknown;
};
content: {
- 'application/json': components['schemas']['MeDetailed'];
+ 'application/json': components['schemas']['MeDetailed'] & {
+ token: string;
+ };
};
};
/** @description Client error */
@@ -35333,7 +35335,10 @@ export interface operations {
[name: string]: unknown;
};
content: {
- 'application/json': components['schemas']['UserList'];
+ 'application/json': components['schemas']['UserList'] & {
+ likedCount?: number;
+ isLiked?: boolean;
+ };
};
};
/** @description Client error */