先锋赛季账号汇总数据接口

This commit is contained in:
2025-02-26 11:43:04 +08:00
parent 92fbd8dfd0
commit 2ca1138fbb
9 changed files with 308 additions and 2 deletions

View File

@@ -571,6 +571,28 @@
]
}
},
"/gapi/task/v1/pioneer_reward": {
"get": {
"summary": "赛季奖励数据",
"operationId": "PioneerReward",
"responses": {
"200": {
"description": "A successful response.",
"schema": {
"$ref": "#/definitions/PioneerReward"
}
}
},
"tags": [
"task"
],
"security": [
{
"apiKey": []
}
]
}
},
"/gapi/task/v1/reward": {
"get": {
"summary": "领取任务奖励",
@@ -1046,6 +1068,44 @@
"type"
]
},
"PioneerReward": {
"type": "object",
"properties": {
"in_game": {
"type": "number",
"format": "double",
"description": " 游戏代币"
},
"stake": {
"type": "number",
"format": "double",
"description": " 挖矿代币"
},
"ambassador": {
"type": "number",
"format": "double",
"description": " 大使额外代币"
},
"nft_bonus": {
"type": "number",
"format": "double",
"description": " nft 加成"
},
"total": {
"type": "number",
"format": "double",
"description": " 总额"
}
},
"title": "PioneerReward",
"required": [
"in_game",
"stake",
"ambassador",
"nft_bonus",
"total"
]
},
"Result": {
"type": "object",
"properties": {