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.
- package/index.js +9 -0
- 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')
|