@freelog/tools-lib 0.1.81 → 0.1.82
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/dist/service-API/index.d.ts +2 -0
- package/dist/tools-lib.cjs.development.js +23 -1
- package/dist/tools-lib.cjs.development.js.map +1 -1
- package/dist/tools-lib.cjs.production.min.js +1 -1
- package/dist/tools-lib.cjs.production.min.js.map +1 -1
- package/dist/tools-lib.esm.js +23 -1
- package/dist/tools-lib.esm.js.map +1 -1
- package/package.json +1 -1
- package/src/service-API/index.ts +29 -27
package/dist/tools-lib.esm.js
CHANGED
|
@@ -2776,6 +2776,27 @@ var Event = {
|
|
|
2776
2776
|
transaction: transaction
|
|
2777
2777
|
};
|
|
2778
2778
|
|
|
2779
|
+
function list4Client(params) {
|
|
2780
|
+
return FUtil.Request({
|
|
2781
|
+
method: 'GET',
|
|
2782
|
+
url: "/v2/activities/list4Client",
|
|
2783
|
+
params: params
|
|
2784
|
+
});
|
|
2785
|
+
}
|
|
2786
|
+
function find4Client(params) {
|
|
2787
|
+
return FUtil.Request({
|
|
2788
|
+
method: 'GET',
|
|
2789
|
+
url: "/v2/activities/find4Client",
|
|
2790
|
+
params: params
|
|
2791
|
+
});
|
|
2792
|
+
}
|
|
2793
|
+
|
|
2794
|
+
var Activity = {
|
|
2795
|
+
__proto__: null,
|
|
2796
|
+
list4Client: list4Client,
|
|
2797
|
+
find4Client: find4Client
|
|
2798
|
+
};
|
|
2799
|
+
|
|
2779
2800
|
var FServiceAPI = {
|
|
2780
2801
|
Node: Node,
|
|
2781
2802
|
Exhibit: Exhibit,
|
|
@@ -2787,7 +2808,8 @@ var FServiceAPI = {
|
|
|
2787
2808
|
Contract: Contract,
|
|
2788
2809
|
Transaction: Transaction,
|
|
2789
2810
|
Captcha: Captcha,
|
|
2790
|
-
Event: Event
|
|
2811
|
+
Event: Event,
|
|
2812
|
+
Activity: Activity
|
|
2791
2813
|
};
|
|
2792
2814
|
|
|
2793
2815
|
export { FServiceAPI, FUtil };
|