@freelog/tools-lib 0.1.62 → 0.1.66
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/informalNodes.d.ts +1 -1
- package/dist/tools-lib.cjs.development.js +3 -3
- 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 +3 -3
- package/dist/tools-lib.esm.js.map +1 -1
- package/package.json +1 -1
- package/src/service-API/informalNodes.ts +3 -2
- package/src/service-API/nodes.ts +65 -65
|
@@ -80,7 +80,7 @@ interface RulesRematchParamsType {
|
|
|
80
80
|
export declare function rulesRematch({ nodeId, ...params }: RulesRematchParamsType): Promise<any>;
|
|
81
81
|
interface BatchGetAuthsParamsType {
|
|
82
82
|
nodeId: number;
|
|
83
|
-
|
|
83
|
+
exhibitIds: string;
|
|
84
84
|
authType: 1 | 2 | 3;
|
|
85
85
|
}
|
|
86
86
|
export declare function batchGetAuths({ nodeId, ...params }: BatchGetAuthsParamsType): Promise<any>;
|
|
@@ -1507,8 +1507,7 @@ function details(params) {
|
|
|
1507
1507
|
// return FUtil.Axios.get(`/v2/nodes/${(params as NodeDetailParamsType1).nodeId}`);
|
|
1508
1508
|
return FUtil.Request({
|
|
1509
1509
|
method: 'GET',
|
|
1510
|
-
url: "/v2/nodes/" + params.nodeId
|
|
1511
|
-
params: params
|
|
1510
|
+
url: "/v2/nodes/" + params.nodeId
|
|
1512
1511
|
});
|
|
1513
1512
|
} // return FUtil.Axios.get(`/v2/nodes/detail`, {
|
|
1514
1513
|
// params,
|
|
@@ -2580,7 +2579,8 @@ function batchGetAuths(_ref14) {
|
|
|
2580
2579
|
// return FUtil.Axios.post(`/v2/testNodes/${nodeId}/rules/rematch`, params);
|
|
2581
2580
|
return FUtil.Request({
|
|
2582
2581
|
method: 'GET',
|
|
2583
|
-
url:
|
|
2582
|
+
// url: `/v2/auths/testResources/nodes/${nodeId}/result`,
|
|
2583
|
+
url: "/v2/auths/exhibits/" + nodeId + "/test/batchAuth/results",
|
|
2584
2584
|
params: params
|
|
2585
2585
|
});
|
|
2586
2586
|
}
|