This commit is contained in:
syuilo
2024-01-26 14:25:00 +09:00
parent 2133d0552c
commit 67e6184a75
56 changed files with 3035 additions and 92 deletions

View File

@@ -1635,6 +1635,11 @@ declare namespace entities {
ReversiSurrenderRequest,
ReversiVerifyRequest,
ReversiVerifyResponse,
MahjongCreateRoomResponse,
MahjongJoinRoomRequest,
MahjongJoinRoomResponse,
MahjongShowRoomRequest,
MahjongShowRoomResponse,
Error_2 as Error,
UserLite,
UserDetailedNotMeOnly,
@@ -1673,7 +1678,8 @@ declare namespace entities {
RoleLite,
Role,
ReversiGameLite,
ReversiGameDetailed
ReversiGameDetailed,
MahjongRoomDetailed
}
}
export { entities }
@@ -2169,6 +2175,24 @@ type IWebhooksShowResponse = operations['i/webhooks/show']['responses']['200']['
// @public (undocumented)
type IWebhooksUpdateRequest = operations['i/webhooks/update']['requestBody']['content']['application/json'];
// @public (undocumented)
type MahjongCreateRoomResponse = operations['mahjong/create-room']['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 MeDetailed = components['schemas']['MeDetailed'];