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.
Files changed (2) hide show
  1. package/index.js +9 -0
  2. 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
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "apifm-webapi",
3
- "version": "3.50.0",
3
+ "version": "3.51.0",
4
4
  "description": "增加SDK方法",
5
5
  "main": "index.js",
6
6
  "scripts": {