apifm-webapi 25.10.7 → 25.10.16

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 +15 -0
  2. package/package.json +2 -2
package/index.js CHANGED
@@ -828,6 +828,9 @@ module.exports = {
828
828
  cashLogsV2: (data) => {
829
829
  return request('/user/cashLog/v2', true, 'post', data)
830
830
  },
831
+ cashLogsV3: (data) => {
832
+ return request('https://common.apifm.com/' + subDomain + '/user/cashLog/v2', false, 'post', data)
833
+ },
831
834
  statisticsComingOut: (data) => {
832
835
  return request('/user/statisticsComingOut', true, 'post', data)
833
836
  },
@@ -1774,6 +1777,18 @@ module.exports = {
1774
1777
  goodsVisitLogClear: (token) => {
1775
1778
  return request('/goods/visitLog/clear', true, 'post', { token })
1776
1779
  },
1780
+ goodsVisitLogV2: data => {
1781
+ return request('https://common.apifm.com/' + subDomain + '/goods/visitLog', false, 'post', data)
1782
+ },
1783
+ goodsVisitLogAddV2: data => {
1784
+ return request('https://common.apifm.com/' + subDomain + '/goods/visitLog/add', false, 'post', data)
1785
+ },
1786
+ goodsVisitLogDeleteV2: data => {
1787
+ return request('https://common.apifm.com/' + subDomain + '/goods/visitLog/delete', false, 'post', data)
1788
+ },
1789
+ goodsVisitLogClearV2: token => {
1790
+ return request('https://common.apifm.com/' + subDomain + '/goods/visitLog/clear', false, 'post', { token })
1791
+ },
1777
1792
  channelDataPush: (key, content) => {
1778
1793
  return request('/channelData/push', true, 'post', { key, content })
1779
1794
  },
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "apifm-webapi",
3
- "version": "25.10.7",
4
- "description": "userAmountV2 接口更新",
3
+ "version": "25.10.16",
4
+ "description": "商品浏览足迹接口升级",
5
5
  "main": "index.js",
6
6
  "scripts": {
7
7
  "test": "echo \"Error: no test specified\" && exit 1"