apifm-webapi 26.3.13 → 26.3.24

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 +1 -1
package/index.js CHANGED
@@ -1723,6 +1723,21 @@ module.exports = {
1723
1723
  mockApi: (groupName, apiName, method) => {
1724
1724
  return request(`/mock/${groupName}/${apiName}`, true, method)
1725
1725
  },
1726
+ tourJourneyList: (type, refId) => {
1727
+ return request('/tourJourney/list', true, 'get', { type, refId })
1728
+ },
1729
+ userBankSelectBanks: () => {
1730
+ return request('/userBank/banks', true, 'get')
1731
+ },
1732
+ userBankInfo: token => {
1733
+ return request(COMMON_BASE_URL + subDomain + '/userBank/info', false, 'get', { token })
1734
+ },
1735
+ userBankBind: data => {
1736
+ return request(COMMON_BASE_URL + subDomain + '/userBank/bind', false, 'post', data)
1737
+ },
1738
+ userBankUnBind: token => {
1739
+ return request(COMMON_BASE_URL + subDomain + '/userBank/unbind', false, 'post', { token })
1740
+ },
1726
1741
  commonIP: (ip) => {
1727
1742
  return request('/common/ip', false, 'get', { ip })
1728
1743
  },
@@ -2845,4 +2860,7 @@ module.exports = {
2845
2860
  fsmRepairUpload: data => {
2846
2861
  return request(COMMON_BASE_URL + subDomain + '/fsmRepair/upload', false, 'post', data)
2847
2862
  },
2863
+ fsmRepairReturnFactory: (data) => {
2864
+ return request(COMMON_BASE_URL + subDomain + '/fsmRepair/returnFactory', false, 'post', data)
2865
+ },
2848
2866
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "apifm-webapi",
3
- "version": "26.3.13",
3
+ "version": "26.3.24",
4
4
  "description": "接口升级",
5
5
  "main": "index.js",
6
6
  "scripts": {