apifm-webapi 25.11.7 → 25.11.10

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 +9 -0
  2. package/package.json +2 -2
package/index.js CHANGED
@@ -1646,6 +1646,12 @@ module.exports = {
1646
1646
  token
1647
1647
  })
1648
1648
  },
1649
+ growthLogsV2: (data) => {
1650
+ return request(COMMON_BASE_URL + subDomain + '/growthLog/logs', true, 'post', data)
1651
+ },
1652
+ exchangeScoreToGrowthV2: (data) => {
1653
+ return request(COMMON_BASE_URL + subDomain + '/growthLog/exchange', true, 'post', data)
1654
+ },
1649
1655
  qqlogin: (code) => {
1650
1656
  return request('/user/qqconnect/authorization', true, 'get', {
1651
1657
  code
@@ -2355,6 +2361,9 @@ module.exports = {
2355
2361
  aliappQrcode: content => {
2356
2362
  return request('/user/aliapp/qrcode', true, 'post', { content })
2357
2363
  },
2364
+ aliappMiniappBindMobile: (data) => {
2365
+ return request('/user/aliapp/bindMobile', true, 'post', data)
2366
+ },
2358
2367
  // 企业应用 组织/成员/网盘
2359
2368
  organizePrices: () => {
2360
2369
  return request('/organizeInfo/prices', true, 'get')
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "apifm-webapi",
3
- "version": "25.11.7",
4
- "description": "提现接口升级",
3
+ "version": "25.11.10",
4
+ "description": "成长值、支付宝小程序绑定手机号",
5
5
  "main": "index.js",
6
6
  "scripts": {
7
7
  "test": "echo \"Error: no test specified\" && exit 1"