apifm-webapi 3.50.0 → 3.51.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 +9 -0
- package/package.json +1 -1
package/index.js
CHANGED
|
@@ -1519,4 +1519,13 @@ module.exports = {
|
|
|
1519
1519
|
bottleMsgSalvage: token => {
|
|
1520
1520
|
return request('/bottleMsg/salvage', true, 'get', { token })
|
|
1521
1521
|
},
|
|
1522
|
+
userInvoiceInfo: token => {
|
|
1523
|
+
return request('/userInvoice/info', true, 'get', { token })
|
|
1524
|
+
},
|
|
1525
|
+
userInvoiceUnbind: token => {
|
|
1526
|
+
return request('/userInvoice/unbind', true, 'post', { token })
|
|
1527
|
+
},
|
|
1528
|
+
userInvoiceBind: data => {
|
|
1529
|
+
return request('/userInvoice/bind', true, 'post', data)
|
|
1530
|
+
},
|
|
1522
1531
|
}
|