apifm-webapi 3.60.1 → 3.60.3
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 +11 -0
- package/package.json +2 -2
package/index.js
CHANGED
|
@@ -644,6 +644,9 @@ module.exports = {
|
|
|
644
644
|
token
|
|
645
645
|
})
|
|
646
646
|
},
|
|
647
|
+
orderStatisticsv2: data => {
|
|
648
|
+
return request('/order/statistics', true, 'get', data);
|
|
649
|
+
},
|
|
647
650
|
siteStatisticsSaleroom: (data) => {
|
|
648
651
|
return request('/site/statistics/saleroom', true, 'get', data)
|
|
649
652
|
},
|
|
@@ -1097,6 +1100,14 @@ module.exports = {
|
|
|
1097
1100
|
type: 2
|
|
1098
1101
|
})
|
|
1099
1102
|
},
|
|
1103
|
+
bindOpenidV2: (token, code, appid) => {
|
|
1104
|
+
return request('/user/wxapp/bindOpenid/v2', true, 'post', {
|
|
1105
|
+
token, code, appid
|
|
1106
|
+
})
|
|
1107
|
+
},
|
|
1108
|
+
bindWxmpOpenid: data => {
|
|
1109
|
+
return request('/user/wxmp/bindOpenid', true, 'post', data)
|
|
1110
|
+
},
|
|
1100
1111
|
encryptedData: (code, encryptedData, iv) => {
|
|
1101
1112
|
return request('/user/wxapp/decode/encryptedData', true, 'post', {
|
|
1102
1113
|
code, encryptedData, iv
|
package/package.json
CHANGED