diff --git a/doc/AAWheel.py b/doc/AAWheel.py index 5e7dd4c2..e2f1bf92 100644 --- a/doc/AAWheel.py +++ b/doc/AAWheel.py @@ -40,6 +40,23 @@ class AAWheel(object): ['side_effect', _common.WheelSideEffect(), '附加效应'], ] }, + { + 'method': 'GET', + 'name': '/api/v1/activity/claim', + 'desc': '请求格子完成大奖', + 'group': '!AAWheel', + 'url': 'https://wheel-test.kingsome.cn/api/v1/activity/claim', + 'headers': _common.JwtHeader, + 'is_json_params': True, + 'params': [ + + ], + 'response': [ + _common.RspHead(), + ['award', _common.WheelAward(), '奖励信息'], + ['side_effect', _common.WheelSideEffect(), '附加效应'], + ] + }, { 'method': 'GET', 'name': '/api/v1/friend/list', diff --git a/doc/_common.py b/doc/_common.py index 475e296f..3db89b4f 100644 --- a/doc/_common.py +++ b/doc/_common.py @@ -1990,7 +1990,7 @@ class WheelSideEffect(object): def __init__(self): self.fields = [ ['user_info', WheelUser(), '用户信息变更(用来更新本地客户端字段(有则更新无则不变))'], - ['!effects', [], '变更列表 buff:刷新buff列表 bag:背包'], + ['!effects', [], '变更列表 buff:刷新buff列表 bag:背包 fullgrid:奖励格子拿完'], ] class WheelFriend(object):