apifm-webapi 25.4.17 → 25.4.24
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 +2 -2
package/index.js
CHANGED
|
@@ -1951,6 +1951,15 @@ module.exports = {
|
|
|
1951
1951
|
cardExchangeFromPwd: data => {
|
|
1952
1952
|
return request('/card/exchange', true, 'post', data)
|
|
1953
1953
|
},
|
|
1954
|
+
cardShareOpen: data => {
|
|
1955
|
+
return request('/card/share/open', true, 'post', data)
|
|
1956
|
+
},
|
|
1957
|
+
cardShareClose: data => {
|
|
1958
|
+
return request('/card/share/close', true, 'post', data)
|
|
1959
|
+
},
|
|
1960
|
+
cardShareFetch: data => {
|
|
1961
|
+
return request('/card/share/fetch', true, 'post', data)
|
|
1962
|
+
},
|
|
1954
1963
|
// 收藏卡片
|
|
1955
1964
|
collectCardHis: data => {
|
|
1956
1965
|
return request('/collectCard/del', true, 'post', data)
|
package/package.json
CHANGED