apifm-webapi 25.12.8 → 25.12.9

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/index.js +2 -2
  2. package/package.json +2 -2
package/index.js CHANGED
@@ -144,10 +144,10 @@ module.exports = {
144
144
  })
145
145
  },
146
146
  scoreTaskList: token => {
147
- return request('/score/taskList', true, 'get', { token })
147
+ return request(COMMON_BASE_URL + subDomain + '/score/taskList', false, 'get', { token })
148
148
  },
149
149
  scoreTaskSuccess: (token, type) => {
150
- return request('/score/taskSuccess', true, 'post', { token, type })
150
+ return request(COMMON_BASE_URL + subDomain + '/score/taskSuccess', false, 'post', { token, type })
151
151
  },
152
152
  kanjiaSet: (goodsId) => {
153
153
  return request('/shop/goods/kanjia/set', true, 'get', { goodsId })
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "apifm-webapi",
3
- "version": "25.12.8",
4
- "description": "投票和预约api地址调整",
3
+ "version": "25.12.9",
4
+ "description": "积分任务接口升级",
5
5
  "main": "index.js",
6
6
  "scripts": {
7
7
  "test": "echo \"Error: no test specified\" && exit 1"