@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
|
@@ -9,6 +9,7 @@ import * as Contract from './contracts';
|
|
|
9
9
|
import * as Transaction from './transactions';
|
|
10
10
|
import * as Captcha from './captcha';
|
|
11
11
|
import * as Event from './events';
|
|
12
|
+
import * as Activity from './activities';
|
|
12
13
|
declare const FServiceAPI: {
|
|
13
14
|
Node: typeof Node;
|
|
14
15
|
Exhibit: typeof Exhibit;
|
|
@@ -21,5 +22,6 @@ declare const FServiceAPI: {
|
|
|
21
22
|
Transaction: typeof Transaction;
|
|
22
23
|
Captcha: typeof Captcha;
|
|
23
24
|
Event: typeof Event;
|
|
25
|
+
Activity: typeof Activity;
|
|
24
26
|
};
|
|
25
27
|
export default FServiceAPI;
|
|
@@ -2782,6 +2782,27 @@ var Event = {
|
|
|
2782
2782
|
transaction: transaction
|
|
2783
2783
|
};
|
|
2784
2784
|
|
|
2785
|
+
function list4Client(params) {
|
|
2786
|
+
return FUtil.Request({
|
|
2787
|
+
method: 'GET',
|
|
2788
|
+
url: "/v2/activities/list4Client",
|
|
2789
|
+
params: params
|
|
2790
|
+
});
|
|
2791
|
+
}
|
|
2792
|
+
function find4Client(params) {
|
|
2793
|
+
return FUtil.Request({
|
|
2794
|
+
method: 'GET',
|
|
2795
|
+
url: "/v2/activities/find4Client",
|
|
2796
|
+
params: params
|
|
2797
|
+
});
|
|
2798
|
+
}
|
|
2799
|
+
|
|
2800
|
+
var Activity = {
|
|
2801
|
+
__proto__: null,
|
|
2802
|
+
list4Client: list4Client,
|
|
2803
|
+
find4Client: find4Client
|
|
2804
|
+
};
|
|
2805
|
+
|
|
2785
2806
|
var FServiceAPI = {
|
|
2786
2807
|
Node: Node,
|
|
2787
2808
|
Exhibit: Exhibit,
|
|
@@ -2793,7 +2814,8 @@ var FServiceAPI = {
|
|
|
2793
2814
|
Contract: Contract,
|
|
2794
2815
|
Transaction: Transaction,
|
|
2795
2816
|
Captcha: Captcha,
|
|
2796
|
-
Event: Event
|
|
2817
|
+
Event: Event,
|
|
2818
|
+
Activity: Activity
|
|
2797
2819
|
};
|
|
2798
2820
|
|
|
2799
2821
|
exports.FServiceAPI = FServiceAPI;
|