fix(misskey-js): update type definitions

This commit is contained in:
zyoshoka
2025-04-18 22:24:45 +09:00
parent 0a5b433557
commit 3aebda7161
5 changed files with 518 additions and 0 deletions

View File

@@ -468,6 +468,17 @@ export type InviteDeleteRequest = operations['invite___delete']['requestBody']['
export type InviteLimitResponse = operations['invite___limit']['responses']['200']['content']['application/json'];
export type InviteListRequest = operations['invite___list']['requestBody']['content']['application/json'];
export type InviteListResponse = operations['invite___list']['responses']['200']['content']['application/json'];
export type MahjongCancelMatchRequest = operations['mahjong___cancel-match']['requestBody']['content']['application/json'];
export type MahjongCancelMatchResponse = operations['mahjong___cancel-match']['responses']['200']['content']['application/json'];
export type MahjongCreateRoomResponse = operations['mahjong___create-room']['responses']['200']['content']['application/json'];
export type MahjongGamesRequest = operations['mahjong___games']['requestBody']['content']['application/json'];
export type MahjongGamesResponse = operations['mahjong___games']['responses']['200']['content']['application/json'];
export type MahjongJoinRoomRequest = operations['mahjong___join-room']['requestBody']['content']['application/json'];
export type MahjongJoinRoomResponse = operations['mahjong___join-room']['responses']['200']['content']['application/json'];
export type MahjongShowRoomRequest = operations['mahjong___show-room']['requestBody']['content']['application/json'];
export type MahjongShowRoomResponse = operations['mahjong___show-room']['responses']['200']['content']['application/json'];
export type MahjongVerifyRequest = operations['mahjong___verify']['requestBody']['content']['application/json'];
export type MahjongVerifyResponse = operations['mahjong___verify']['responses']['200']['content']['application/json'];
export type MetaRequest = operations['meta']['requestBody']['content']['application/json'];
export type MetaResponse = operations['meta']['responses']['200']['content']['application/json'];
export type MiauthGenTokenRequest = operations['miauth___gen-token']['requestBody']['content']['application/json'];