1
0
mirror of https://github.com/misskey-dev/misskey.git synced 2026-05-26 03:14:14 +02:00

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

@@ -1918,6 +1918,17 @@ declare namespace entities {
InviteLimitResponse,
InviteListRequest,
InviteListResponse,
MahjongCancelMatchRequest,
MahjongCancelMatchResponse,
MahjongCreateRoomResponse,
MahjongGamesRequest,
MahjongGamesResponse,
MahjongJoinRoomRequest,
MahjongJoinRoomResponse,
MahjongShowRoomRequest,
MahjongShowRoomResponse,
MahjongVerifyRequest,
MahjongVerifyResponse,
MetaRequest,
MetaResponse,
MiauthGenTokenRequest,
@@ -2718,9 +2729,42 @@ type IWebhooksTestRequest = operations['i___webhooks___test']['requestBody']['co
// @public (undocumented)
type IWebhooksUpdateRequest = operations['i___webhooks___update']['requestBody']['content']['application/json'];
// @public (undocumented)
type MahjongCancelMatchRequest = operations['mahjong___cancel-match']['requestBody']['content']['application/json'];
// @public (undocumented)
type MahjongCancelMatchResponse = operations['mahjong___cancel-match']['responses']['200']['content']['application/json'];
// @public (undocumented)
type MahjongCreateRoomResponse = operations['mahjong___create-room']['responses']['200']['content']['application/json'];
// @public (undocumented)
type MahjongGamesRequest = operations['mahjong___games']['requestBody']['content']['application/json'];
// @public (undocumented)
type MahjongGamesResponse = operations['mahjong___games']['responses']['200']['content']['application/json'];
// @public (undocumented)
type MahjongJoinRoomRequest = operations['mahjong___join-room']['requestBody']['content']['application/json'];
// @public (undocumented)
type MahjongJoinRoomResponse = operations['mahjong___join-room']['responses']['200']['content']['application/json'];
// @public (undocumented)
type MahjongRoomDetailed = components['schemas']['MahjongRoomDetailed'];
// @public (undocumented)
type MahjongShowRoomRequest = operations['mahjong___show-room']['requestBody']['content']['application/json'];
// @public (undocumented)
type MahjongShowRoomResponse = operations['mahjong___show-room']['responses']['200']['content']['application/json'];
// @public (undocumented)
type MahjongVerifyRequest = operations['mahjong___verify']['requestBody']['content']['application/json'];
// @public (undocumented)
type MahjongVerifyResponse = operations['mahjong___verify']['responses']['200']['content']['application/json'];
// @public (undocumented)
type MeDetailed = components['schemas']['MeDetailed'];