apifm-webapi 25.6.31 → 25.7.2
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 +2 -2
package/index.js
CHANGED
|
@@ -1612,6 +1612,9 @@ module.exports = {
|
|
|
1612
1612
|
commonIPV2: (ip = '') => {
|
|
1613
1613
|
return request('https://common.apifm.com/' + subDomain + '/common/ip', false, 'get', { ip })
|
|
1614
1614
|
},
|
|
1615
|
+
commonIPV3: (ip = '') => {
|
|
1616
|
+
return request('https://common.apifm.com/' + subDomain + '/common/ip/v2', false, 'get', { ip })
|
|
1617
|
+
},
|
|
1615
1618
|
peisongfei: () => {
|
|
1616
1619
|
return request('/fee/peisong/list', true, 'get')
|
|
1617
1620
|
},
|
package/package.json
CHANGED