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.
- package/index.js +15 -0
- 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
|
},
|