apifm-webapi 25.11.2 → 25.11.5

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
@@ -1147,6 +1147,21 @@ module.exports = {
1147
1147
  depositBackApply: (token, id) => {
1148
1148
  return request('/deposit/back/apply', true, 'post', { token, id })
1149
1149
  },
1150
+ depositListV2: (data) => {
1151
+ return request('https://common.apifm.com/' + subDomain + '/deposit/list', false, 'post', data)
1152
+ },
1153
+ payDepositV2: (data) => {
1154
+ return request('https://common.apifm.com/' + subDomain + '/deposit/pay', false, 'post', data)
1155
+ },
1156
+ payStatusDepositV2: (data) => {
1157
+ return request('https://common.apifm.com/' + subDomain + '/deposit/payStatus', false, 'post', data)
1158
+ },
1159
+ depositInfoV2: (token, id) => {
1160
+ return request('https://common.apifm.com/' + subDomain + '/deposit/info', false, 'get', { token, id })
1161
+ },
1162
+ depositBackApplyV2: (token, id) => {
1163
+ return request('https://common.apifm.com/' + subDomain + '/deposit/back/apply', false, 'post', { token, id })
1164
+ },
1150
1165
  shopAreaCities: () => {
1151
1166
  return request('/shopArea/cities', true, 'get')
1152
1167
  },
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "apifm-webapi",
3
- "version": "25.11.2",
4
- "description": "课程模块接口升级",
3
+ "version": "25.11.5",
4
+ "description": "押金接口升级",
5
5
  "main": "index.js",
6
6
  "scripts": {
7
7
  "test": "echo \"Error: no test specified\" && exit 1"