apifm-webapi 3.65.0 → 3.66.0

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 +18 -0
  2. package/package.json +2 -2
package/index.js CHANGED
@@ -337,6 +337,9 @@ module.exports = {
337
337
  register_mobile: (data) => {
338
338
  return request('/user/m/register', true, 'post', data)
339
339
  },
340
+ bannerTypes: () => {
341
+ return request('/banner/types', true, 'get')
342
+ },
340
343
  banners: (data) => {
341
344
  return request('/banner/list', true, 'get', data)
342
345
  },
@@ -684,6 +687,9 @@ module.exports = {
684
687
  withDrawLogs: (data) => {
685
688
  return request('/user/withDraw/list', true, 'post', data)
686
689
  },
690
+ withDrawSetting: () => {
691
+ return request('/user/withDraw/setting', true, 'get')
692
+ },
687
693
  province: () => {
688
694
  return request('/common/region/v2/province', false, 'get')
689
695
  },
@@ -870,6 +876,12 @@ module.exports = {
870
876
  cmsArticleUseless: (data) => {
871
877
  return request('/cms/news/useful', true, 'post', data)
872
878
  },
879
+ cmsArticleModifyExtNumber: (data) => {
880
+ return request('/cms/news/modifyExtNumber', true, 'post', data)
881
+ },
882
+ newsOwnerUserViewStatistics: (data) => {
883
+ return request('/newsOwnerUserViewStatistics/list', true, 'post', data)
884
+ },
873
885
  cmsPage: (key) => {
874
886
  return request('/cms/page/info', true, 'get', { key })
875
887
  },
@@ -1685,6 +1697,9 @@ module.exports = {
1685
1697
  cardMyLogs: data => {
1686
1698
  return request('/card/logs', true, 'post', data)
1687
1699
  },
1700
+ cardExchangeFromPwd: data => {
1701
+ return request('/card/exchange', true, 'post', data)
1702
+ },
1688
1703
  // 收藏卡片
1689
1704
  collectCardHis: data => {
1690
1705
  return request('/collectCard/del', true, 'post', data)
@@ -1949,4 +1964,7 @@ module.exports = {
1949
1964
  shopCategoryDetail: (id) => {
1950
1965
  return request('/shopCategory/info', true, 'get', { id })
1951
1966
  },
1967
+ contactList: () => {
1968
+ return request('/contact/list', true, 'get')
1969
+ }
1952
1970
  }
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "apifm-webapi",
3
- "version": "3.65.0",
4
- "description": "shippingCarInfoAddItemV2",
3
+ "version": "3.66.0",
4
+ "description": "2023-07-24",
5
5
  "main": "index.js",
6
6
  "scripts": {
7
7
  "test": "echo \"Error: no test specified\" && exit 1"