|
@@ -30,12 +30,17 @@ import { ReqHcInfo, ResHcInfo } from './hc/PtlHcInfo';
|
|
import { ReqHcMerge, ResHcMerge } from './hc/PtlHcMerge';
|
|
import { ReqHcMerge, ResHcMerge } from './hc/PtlHcMerge';
|
|
import { ReqItemInfo, ResItemInfo } from './item/PtlItemInfo';
|
|
import { ReqItemInfo, ResItemInfo } from './item/PtlItemInfo';
|
|
import { MsgItemChange_s } from './item/server/MsgItemChange_s';
|
|
import { MsgItemChange_s } from './item/server/MsgItemChange_s';
|
|
|
|
+import { ReqMailDelAll, ResMailDelAll } from './mail/PtlMailDelAll';
|
|
|
|
+import { ReqMailDelOne, ResMailDelOne } from './mail/PtlMailDelOne';
|
|
import { ReqMailInfo, ResMailInfo } from './mail/PtlMailInfo';
|
|
import { ReqMailInfo, ResMailInfo } from './mail/PtlMailInfo';
|
|
|
|
+import { ReqMailRwdAll, ResMailRwdAll } from './mail/PtlMailRwdAll';
|
|
|
|
+import { ReqMailRwdOne, ResMailRwdOne } from './mail/PtlMailRwdOne';
|
|
import { MsgMailNew_s } from './mail/server/MsgMailNew_s';
|
|
import { MsgMailNew_s } from './mail/server/MsgMailNew_s';
|
|
import { ReqPlatLogin, ResPlatLogin } from './plat/PtlPlatLogin';
|
|
import { ReqPlatLogin, ResPlatLogin } from './plat/PtlPlatLogin';
|
|
import { ReqPlayerLogin, ResPlayerLogin } from './player/PtlPlayerLogin';
|
|
import { ReqPlayerLogin, ResPlayerLogin } from './player/PtlPlayerLogin';
|
|
import { ReqTaskInfo, ResTaskInfo } from './task/PtlTaskInfo';
|
|
import { ReqTaskInfo, ResTaskInfo } from './task/PtlTaskInfo';
|
|
import { ReqTaskRwd, ResTaskRwd } from './task/PtlTaskRwd';
|
|
import { ReqTaskRwd, ResTaskRwd } from './task/PtlTaskRwd';
|
|
|
|
+import { MsgTaskCons_s } from './task/server/MsgTaskCons_s';
|
|
import { ReqUserFight, ResUserFight } from './user/PtlUserFight';
|
|
import { ReqUserFight, ResUserFight } from './user/PtlUserFight';
|
|
import { ReqUserLogin, ResUserLogin } from './user/PtlUserLogin';
|
|
import { ReqUserLogin, ResUserLogin } from './user/PtlUserLogin';
|
|
import { ReqUserSetName, ResUserSetName } from './user/PtlUserSetName';
|
|
import { ReqUserSetName, ResUserSetName } from './user/PtlUserSetName';
|
|
@@ -151,10 +156,26 @@ export interface ServiceType {
|
|
req: ReqItemInfo,
|
|
req: ReqItemInfo,
|
|
res: ResItemInfo
|
|
res: ResItemInfo
|
|
},
|
|
},
|
|
|
|
+ "mail/MailDelAll": {
|
|
|
|
+ req: ReqMailDelAll,
|
|
|
|
+ res: ResMailDelAll
|
|
|
|
+ },
|
|
|
|
+ "mail/MailDelOne": {
|
|
|
|
+ req: ReqMailDelOne,
|
|
|
|
+ res: ResMailDelOne
|
|
|
|
+ },
|
|
"mail/MailInfo": {
|
|
"mail/MailInfo": {
|
|
req: ReqMailInfo,
|
|
req: ReqMailInfo,
|
|
res: ResMailInfo
|
|
res: ResMailInfo
|
|
},
|
|
},
|
|
|
|
+ "mail/MailRwdAll": {
|
|
|
|
+ req: ReqMailRwdAll,
|
|
|
|
+ res: ResMailRwdAll
|
|
|
|
+ },
|
|
|
|
+ "mail/MailRwdOne": {
|
|
|
|
+ req: ReqMailRwdOne,
|
|
|
|
+ res: ResMailRwdOne
|
|
|
|
+ },
|
|
"plat/PlatLogin": {
|
|
"plat/PlatLogin": {
|
|
req: ReqPlatLogin,
|
|
req: ReqPlatLogin,
|
|
res: ResPlatLogin
|
|
res: ResPlatLogin
|
|
@@ -190,12 +211,13 @@ export interface ServiceType {
|
|
"eps/server/EpsChange_s": MsgEpsChange_s,
|
|
"eps/server/EpsChange_s": MsgEpsChange_s,
|
|
"item/server/ItemChange_s": MsgItemChange_s,
|
|
"item/server/ItemChange_s": MsgItemChange_s,
|
|
"mail/server/MailNew_s": MsgMailNew_s,
|
|
"mail/server/MailNew_s": MsgMailNew_s,
|
|
|
|
+ "task/server/TaskCons_s": MsgTaskCons_s,
|
|
"user/server/UserUplevel_s": MsgUserUplevel_s
|
|
"user/server/UserUplevel_s": MsgUserUplevel_s
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
|
|
export const serviceProto: ServiceProto<ServiceType> = {
|
|
export const serviceProto: ServiceProto<ServiceType> = {
|
|
- "version": 50,
|
|
|
|
|
|
+ "version": 51,
|
|
"services": [
|
|
"services": [
|
|
{
|
|
{
|
|
"id": 39,
|
|
"id": 39,
|
|
@@ -434,6 +456,22 @@ export const serviceProto: ServiceProto<ServiceType> = {
|
|
"type": "msg"
|
|
"type": "msg"
|
|
},
|
|
},
|
|
{
|
|
{
|
|
|
|
+ "id": 79,
|
|
|
|
+ "name": "mail/MailDelAll",
|
|
|
|
+ "type": "api",
|
|
|
|
+ "conf": {
|
|
|
|
+ "connet": "ws"
|
|
|
|
+ }
|
|
|
|
+ },
|
|
|
|
+ {
|
|
|
|
+ "id": 80,
|
|
|
|
+ "name": "mail/MailDelOne",
|
|
|
|
+ "type": "api",
|
|
|
|
+ "conf": {
|
|
|
|
+ "connet": "ws"
|
|
|
|
+ }
|
|
|
|
+ },
|
|
|
|
+ {
|
|
"id": 77,
|
|
"id": 77,
|
|
"name": "mail/MailInfo",
|
|
"name": "mail/MailInfo",
|
|
"type": "api",
|
|
"type": "api",
|
|
@@ -442,6 +480,22 @@ export const serviceProto: ServiceProto<ServiceType> = {
|
|
}
|
|
}
|
|
},
|
|
},
|
|
{
|
|
{
|
|
|
|
+ "id": 81,
|
|
|
|
+ "name": "mail/MailRwdAll",
|
|
|
|
+ "type": "api",
|
|
|
|
+ "conf": {
|
|
|
|
+ "connet": "ws"
|
|
|
|
+ }
|
|
|
|
+ },
|
|
|
|
+ {
|
|
|
|
+ "id": 82,
|
|
|
|
+ "name": "mail/MailRwdOne",
|
|
|
|
+ "type": "api",
|
|
|
|
+ "conf": {
|
|
|
|
+ "connet": "ws"
|
|
|
|
+ }
|
|
|
|
+ },
|
|
|
|
+ {
|
|
"id": 78,
|
|
"id": 78,
|
|
"name": "mail/server/MailNew_s",
|
|
"name": "mail/server/MailNew_s",
|
|
"type": "msg"
|
|
"type": "msg"
|
|
@@ -479,6 +533,11 @@ export const serviceProto: ServiceProto<ServiceType> = {
|
|
}
|
|
}
|
|
},
|
|
},
|
|
{
|
|
{
|
|
|
|
+ "id": 83,
|
|
|
|
+ "name": "task/server/TaskCons_s",
|
|
|
|
+ "type": "msg"
|
|
|
|
+ },
|
|
|
|
+ {
|
|
"id": 68,
|
|
"id": 68,
|
|
"name": "user/UserFight",
|
|
"name": "user/UserFight",
|
|
"type": "api",
|
|
"type": "api",
|
|
@@ -1195,10 +1254,6 @@ export const serviceProto: ServiceProto<ServiceType> = {
|
|
"value": 0
|
|
"value": 0
|
|
},
|
|
},
|
|
{
|
|
{
|
|
- "id": 1,
|
|
|
|
- "value": 1
|
|
|
|
- },
|
|
|
|
- {
|
|
|
|
"id": 2,
|
|
"id": 2,
|
|
"value": 2
|
|
"value": 2
|
|
},
|
|
},
|
|
@@ -1207,6 +1262,10 @@ export const serviceProto: ServiceProto<ServiceType> = {
|
|
"value": 3
|
|
"value": 3
|
|
},
|
|
},
|
|
{
|
|
{
|
|
|
|
+ "id": 5,
|
|
|
|
+ "value": 50
|
|
|
|
+ },
|
|
|
|
+ {
|
|
"id": 4,
|
|
"id": 4,
|
|
"value": 4
|
|
"value": 4
|
|
}
|
|
}
|
|
@@ -1275,6 +1334,18 @@ export const serviceProto: ServiceProto<ServiceType> = {
|
|
}
|
|
}
|
|
}
|
|
}
|
|
},
|
|
},
|
|
|
|
+ "mail/PtlMailDelAll/ReqMailDelAll": {
|
|
|
|
+ "type": "Interface"
|
|
|
|
+ },
|
|
|
|
+ "mail/PtlMailDelAll/ResMailDelAll": {
|
|
|
|
+ "type": "Interface"
|
|
|
|
+ },
|
|
|
|
+ "mail/PtlMailDelOne/ReqMailDelOne": {
|
|
|
|
+ "type": "Interface"
|
|
|
|
+ },
|
|
|
|
+ "mail/PtlMailDelOne/ResMailDelOne": {
|
|
|
|
+ "type": "Interface"
|
|
|
|
+ },
|
|
"mail/PtlMailInfo/ReqMailInfo": {
|
|
"mail/PtlMailInfo/ReqMailInfo": {
|
|
"type": "Interface"
|
|
"type": "Interface"
|
|
},
|
|
},
|
|
@@ -1283,63 +1354,121 @@ export const serviceProto: ServiceProto<ServiceType> = {
|
|
"indexSignature": {
|
|
"indexSignature": {
|
|
"keyType": "String",
|
|
"keyType": "String",
|
|
"type": {
|
|
"type": {
|
|
|
|
+ "type": "Reference",
|
|
|
|
+ "target": "mail/PtlMailInfo/MailInfo"
|
|
|
|
+ }
|
|
|
|
+ }
|
|
|
|
+ },
|
|
|
|
+ "mail/PtlMailInfo/MailInfo": {
|
|
|
|
+ "type": "Interface",
|
|
|
|
+ "properties": [
|
|
|
|
+ {
|
|
|
|
+ "id": 0,
|
|
|
|
+ "name": "id",
|
|
|
|
+ "type": {
|
|
|
|
+ "type": "String"
|
|
|
|
+ }
|
|
|
|
+ },
|
|
|
|
+ {
|
|
|
|
+ "id": 1,
|
|
|
|
+ "name": "title",
|
|
|
|
+ "type": {
|
|
|
|
+ "type": "String"
|
|
|
|
+ }
|
|
|
|
+ },
|
|
|
|
+ {
|
|
|
|
+ "id": 2,
|
|
|
|
+ "name": "content",
|
|
|
|
+ "type": {
|
|
|
|
+ "type": "String"
|
|
|
|
+ }
|
|
|
|
+ },
|
|
|
|
+ {
|
|
|
|
+ "id": 3,
|
|
|
|
+ "name": "items",
|
|
|
|
+ "type": {
|
|
|
|
+ "type": "Array",
|
|
|
|
+ "elementType": {
|
|
|
|
+ "type": "Array",
|
|
|
|
+ "elementType": {
|
|
|
|
+ "type": "Number"
|
|
|
|
+ }
|
|
|
|
+ }
|
|
|
|
+ }
|
|
|
|
+ },
|
|
|
|
+ {
|
|
|
|
+ "id": 4,
|
|
|
|
+ "name": "fts",
|
|
|
|
+ "type": {
|
|
|
|
+ "type": "Number"
|
|
|
|
+ }
|
|
|
|
+ },
|
|
|
|
+ {
|
|
|
|
+ "id": 5,
|
|
|
|
+ "name": "rts",
|
|
|
|
+ "type": {
|
|
|
|
+ "type": "Number"
|
|
|
|
+ }
|
|
|
|
+ },
|
|
|
|
+ {
|
|
|
|
+ "id": 6,
|
|
|
|
+ "name": "ets",
|
|
|
|
+ "type": {
|
|
|
|
+ "type": "Number"
|
|
|
|
+ }
|
|
|
|
+ },
|
|
|
|
+ {
|
|
|
|
+ "id": 7,
|
|
|
|
+ "name": "dts",
|
|
|
|
+ "type": {
|
|
|
|
+ "type": "Number"
|
|
|
|
+ }
|
|
|
|
+ }
|
|
|
|
+ ]
|
|
|
|
+ },
|
|
|
|
+ "mail/PtlMailRwdAll/ReqMailRwdAll": {
|
|
|
|
+ "type": "Interface"
|
|
|
|
+ },
|
|
|
|
+ "mail/PtlMailRwdAll/ResMailRwdAll": {
|
|
|
|
+ "type": "Interface",
|
|
|
|
+ "indexSignature": {
|
|
|
|
+ "keyType": "String",
|
|
|
|
+ "type": {
|
|
"type": "Interface",
|
|
"type": "Interface",
|
|
"properties": [
|
|
"properties": [
|
|
{
|
|
{
|
|
"id": 0,
|
|
"id": 0,
|
|
- "name": "id",
|
|
|
|
- "type": {
|
|
|
|
- "type": "String"
|
|
|
|
- }
|
|
|
|
- },
|
|
|
|
- {
|
|
|
|
- "id": 1,
|
|
|
|
- "name": "title",
|
|
|
|
- "type": {
|
|
|
|
- "type": "String"
|
|
|
|
- }
|
|
|
|
- },
|
|
|
|
- {
|
|
|
|
- "id": 2,
|
|
|
|
- "name": "content",
|
|
|
|
- "type": {
|
|
|
|
- "type": "String"
|
|
|
|
- }
|
|
|
|
- },
|
|
|
|
- {
|
|
|
|
- "id": 3,
|
|
|
|
- "name": "items",
|
|
|
|
- "type": {
|
|
|
|
- "type": "Array",
|
|
|
|
- "elementType": {
|
|
|
|
- "type": "Number"
|
|
|
|
- }
|
|
|
|
- }
|
|
|
|
- },
|
|
|
|
- {
|
|
|
|
- "id": 4,
|
|
|
|
- "name": "fts",
|
|
|
|
- "type": {
|
|
|
|
- "type": "Number"
|
|
|
|
- }
|
|
|
|
- },
|
|
|
|
- {
|
|
|
|
- "id": 5,
|
|
|
|
"name": "rts",
|
|
"name": "rts",
|
|
"type": {
|
|
"type": {
|
|
"type": "Number"
|
|
"type": "Number"
|
|
}
|
|
}
|
|
- },
|
|
|
|
- {
|
|
|
|
- "id": 6,
|
|
|
|
- "name": "ets",
|
|
|
|
- "type": {
|
|
|
|
- "type": "Number"
|
|
|
|
- }
|
|
|
|
- },
|
|
|
|
|
|
+ }
|
|
|
|
+ ]
|
|
|
|
+ }
|
|
|
|
+ }
|
|
|
|
+ },
|
|
|
|
+ "mail/PtlMailRwdOne/ReqMailRwdOne": {
|
|
|
|
+ "type": "Interface",
|
|
|
|
+ "properties": [
|
|
|
|
+ {
|
|
|
|
+ "id": 0,
|
|
|
|
+ "name": "id",
|
|
|
|
+ "type": {
|
|
|
|
+ "type": "String"
|
|
|
|
+ }
|
|
|
|
+ }
|
|
|
|
+ ]
|
|
|
|
+ },
|
|
|
|
+ "mail/PtlMailRwdOne/ResMailRwdOne": {
|
|
|
|
+ "type": "Interface",
|
|
|
|
+ "indexSignature": {
|
|
|
|
+ "keyType": "String",
|
|
|
|
+ "type": {
|
|
|
|
+ "type": "Interface",
|
|
|
|
+ "properties": [
|
|
{
|
|
{
|
|
- "id": 7,
|
|
|
|
- "name": "dts",
|
|
|
|
|
|
+ "id": 0,
|
|
|
|
+ "name": "rts",
|
|
"type": {
|
|
"type": {
|
|
"type": "Number"
|
|
"type": "Number"
|
|
}
|
|
}
|
|
@@ -1349,7 +1478,14 @@ export const serviceProto: ServiceProto<ServiceType> = {
|
|
}
|
|
}
|
|
},
|
|
},
|
|
"mail/server/MsgMailNew_s/MsgMailNew_s": {
|
|
"mail/server/MsgMailNew_s/MsgMailNew_s": {
|
|
- "type": "Interface"
|
|
|
|
|
|
+ "type": "Interface",
|
|
|
|
+ "indexSignature": {
|
|
|
|
+ "keyType": "String",
|
|
|
|
+ "type": {
|
|
|
|
+ "type": "Reference",
|
|
|
|
+ "target": "mail/PtlMailInfo/MailInfo"
|
|
|
|
+ }
|
|
|
|
+ }
|
|
},
|
|
},
|
|
"plat/PtlPlatLogin/ReqPlatLogin": {
|
|
"plat/PtlPlatLogin/ReqPlatLogin": {
|
|
"type": "Interface",
|
|
"type": "Interface",
|
|
@@ -1641,6 +1777,18 @@ export const serviceProto: ServiceProto<ServiceType> = {
|
|
}
|
|
}
|
|
]
|
|
]
|
|
},
|
|
},
|
|
|
|
+ "task/server/MsgTaskCons_s/MsgTaskCons_s": {
|
|
|
|
+ "type": "Interface",
|
|
|
|
+ "properties": [
|
|
|
|
+ {
|
|
|
|
+ "id": 0,
|
|
|
|
+ "name": "cons",
|
|
|
|
+ "type": {
|
|
|
|
+ "type": "Number"
|
|
|
|
+ }
|
|
|
|
+ }
|
|
|
|
+ ]
|
|
|
|
+ },
|
|
"user/PtlUserFight/ReqUserFight": {
|
|
"user/PtlUserFight/ReqUserFight": {
|
|
"type": "Interface"
|
|
"type": "Interface"
|
|
},
|
|
},
|