apifm-webapi 25.11.7 → 25.11.26
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 +12 -0
- package/package.json +2 -2
package/index.js
CHANGED
|
@@ -874,6 +874,9 @@ module.exports = {
|
|
|
874
874
|
statisticsComingOut: (data) => {
|
|
875
875
|
return request('/user/statisticsComingOut', true, 'post', data)
|
|
876
876
|
},
|
|
877
|
+
statisticsComingOutV2: (data) => {
|
|
878
|
+
return request(COMMON_BASE_URL + subDomain + '/user/statisticsComingOut', false, 'post', data)
|
|
879
|
+
},
|
|
877
880
|
payLogs: (data) => {
|
|
878
881
|
return request('/user/payLogs', true, 'post', data)
|
|
879
882
|
},
|
|
@@ -1646,6 +1649,12 @@ module.exports = {
|
|
|
1646
1649
|
token
|
|
1647
1650
|
})
|
|
1648
1651
|
},
|
|
1652
|
+
growthLogsV2: (data) => {
|
|
1653
|
+
return request(COMMON_BASE_URL + subDomain + '/growthLog/logs', true, 'post', data)
|
|
1654
|
+
},
|
|
1655
|
+
exchangeScoreToGrowthV2: (data) => {
|
|
1656
|
+
return request(COMMON_BASE_URL + subDomain + '/growthLog/exchange', true, 'post', data)
|
|
1657
|
+
},
|
|
1649
1658
|
qqlogin: (code) => {
|
|
1650
1659
|
return request('/user/qqconnect/authorization', true, 'get', {
|
|
1651
1660
|
code
|
|
@@ -2355,6 +2364,9 @@ module.exports = {
|
|
|
2355
2364
|
aliappQrcode: content => {
|
|
2356
2365
|
return request('/user/aliapp/qrcode', true, 'post', { content })
|
|
2357
2366
|
},
|
|
2367
|
+
aliappMiniappBindMobile: (data) => {
|
|
2368
|
+
return request('/user/aliapp/bindMobile', true, 'post', data)
|
|
2369
|
+
},
|
|
2358
2370
|
// 企业应用 组织/成员/网盘
|
|
2359
2371
|
organizePrices: () => {
|
|
2360
2372
|
return request('/organizeInfo/prices', true, 'get')
|