Protocols/serviceProto.ts

190 lines
3.0 KiB
TypeScript
Raw Normal View History

2023-09-10 07:17:58 +00:00
import { ServiceProto } from "tsrpc-proto";
import { ReqLogin, ResLogin } from "./account/PtlLogin";
import { MsgChat } from "./MsgChat";
import { MsgExit } from "./room/MsgExit";
import { MsgGoToGame } from "./room/MsgGoToGame";
import { ReqCreate, ResCreate } from "./room/PtlCreate";
import { ReqExit, ResExit } from "./room/PtlExit";
import { ReqJoin, ResJoin } from "./room/PtlJoin";
import { ReqList, ResList } from "./room/PtlList";
2023-08-31 11:28:49 +00:00
export interface ServiceType {
2023-09-10 07:17:58 +00:00
api: {
"account/Login": {
req: ReqLogin,
res: ResLogin
},
"room/Create": {
req: ReqCreate,
res: ResCreate
},
"room/Exit": {
req: ReqExit,
res: ResExit
},
"room/Join": {
req: ReqJoin,
res: ResJoin
},
"room/List": {
req: ReqList,
res: ResList
}
},
msg: {
"Chat": MsgChat,
"room/Exit": MsgExit,
"room/GoToGame": MsgGoToGame
}
2023-08-31 11:28:49 +00:00
}
export const serviceProto: ServiceProto<ServiceType> = {
2023-09-10 07:17:58 +00:00
"version": 10,
"services": [
{
"id": 4,
"name": "account/Login",
"type": "api"
},
{
"id": 0,
"name": "Chat",
"type": "msg"
},
{
"id": 10,
"name": "room/Exit",
"type": "msg"
},
{
"id": 11,
"name": "room/GoToGame",
"type": "msg"
},
{
"id": 6,
"name": "room/Create",
"type": "api"
},
{
"id": 7,
"name": "room/Exit",
"type": "api"
},
{
"id": 8,
"name": "room/Join",
"type": "api"
},
{
"id": 9,
"name": "room/List",
"type": "api"
}
],
"types": {
"account/PtlLogin/ReqLogin": {
"type": "Interface",
"properties": [
{
"id": 0,
"name": "name",
"type": {
"type": "String"
}
}
]
},
"account/PtlLogin/ResLogin": {
"type": "Number"
},
"MsgChat/MsgChat": {
"type": "Interface",
"properties": [
{
"id": 0,
"name": "content",
"type": {
"type": "String"
}
},
{
"id": 1,
"name": "time",
"type": {
"type": "Date"
}
}
]
},
"room/MsgExit/MsgExit": {
"type": "Number"
},
"room/MsgGoToGame/MsgGoToGame": {
"type": "Number"
},
"room/PtlCreate/ReqCreate": {
"type": "Interface",
"properties": [
{
"id": 1,
"name": "null",
"type": {
"type": "String"
}
}
]
},
"room/PtlCreate/ResCreate": {
"type": "Number"
},
"room/PtlExit/ReqExit": {
"type": "Interface",
"properties": [
{
"id": 0,
"name": "null",
"type": {
"type": "String"
}
}
]
},
"room/PtlExit/ResExit": {
"type": "Number"
},
"room/PtlJoin/ReqJoin": {
"type": "Interface",
"properties": [
{
"id": 0,
"name": "roomId",
"type": {
"type": "Number"
}
}
]
},
"room/PtlJoin/ResJoin": {
"type": "Number"
},
"room/PtlList/ReqList": {
"type": "Interface",
"properties": [
{
"id": 0,
"name": "null",
"type": {
"type": "String"
}
}
]
},
"room/PtlList/ResList": {
"type": "Array",
"elementType": {
"type": "Any"
}
}
}
2023-08-31 08:59:11 +00:00
};