apifm-webapi 25.6.31 → 25.10.7

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 +14 -0
  2. package/package.json +2 -2
package/index.js CHANGED
@@ -669,6 +669,11 @@ module.exports = {
669
669
  token
670
670
  })
671
671
  },
672
+ userAmountV2: (token) => {
673
+ return request('https://common.apifm.com/' + subDomain + '/user/amount', false, 'get', {
674
+ token
675
+ })
676
+ },
672
677
  orderCreate: (data) => {
673
678
  return request('/order/create', true, 'post', data)
674
679
  },
@@ -1013,6 +1018,9 @@ module.exports = {
1013
1018
  orderId
1014
1019
  })
1015
1020
  },
1021
+ refundApplySetBackLogistics: (data) => {
1022
+ return request('/order/refundApply/setBackLogistics', true, 'post', data)
1023
+ },
1016
1024
  cmsCategories: () => {
1017
1025
  return request('/cms/category/list', true, 'get', {})
1018
1026
  },
@@ -1434,6 +1442,9 @@ module.exports = {
1434
1442
  scoreMyStatistics: (data) => {
1435
1443
  return request('/score/myStatistics', true, 'get', data)
1436
1444
  },
1445
+ expireScorestatistics: (data) => {
1446
+ return request('/score/expireScorestatistics', true, 'post', data)
1447
+ },
1437
1448
  voteItems: (data) => {
1438
1449
  return request('/vote/items', true, 'post', data)
1439
1450
  },
@@ -1612,6 +1623,9 @@ module.exports = {
1612
1623
  commonIPV2: (ip = '') => {
1613
1624
  return request('https://common.apifm.com/' + subDomain + '/common/ip', false, 'get', { ip })
1614
1625
  },
1626
+ commonIPV3: (ip = '') => {
1627
+ return request('https://common.apifm.com/' + subDomain + '/common/ip/v2', false, 'get', { ip })
1628
+ },
1615
1629
  peisongfei: () => {
1616
1630
  return request('/fee/peisong/list', true, 'get')
1617
1631
  },
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "apifm-webapi",
3
- "version": "25.06.31",
4
- "description": "map接口升级到version 2.0",
3
+ "version": "25.10.7",
4
+ "description": "userAmountV2 接口更新",
5
5
  "main": "index.js",
6
6
  "scripts": {
7
7
  "test": "echo \"Error: no test specified\" && exit 1"