apifm-webapi 1.46.0 → 1.47.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.
- package/index.js +3 -0
- package/package.json +1 -1
package/index.js
CHANGED
|
@@ -213,6 +213,9 @@ module.exports = {
|
|
|
213
213
|
ttpay: (data) => {
|
|
214
214
|
return request('/pay/tt/microapp', true, 'post', data)
|
|
215
215
|
},
|
|
216
|
+
ttEcpay: (data) => {
|
|
217
|
+
return request('/pay/tt/ecpay', true, 'post', data)
|
|
218
|
+
},
|
|
216
219
|
payQuery: (token, outTradeId) => {
|
|
217
220
|
return request('/pay/query', true, 'get', { token, outTradeId })
|
|
218
221
|
},
|