@freelog/tools-lib 0.1.62 → 0.1.63

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@freelog/tools-lib",
3
- "version": "0.1.62",
3
+ "version": "0.1.63",
4
4
  "license": "MIT",
5
5
  "main": "dist/index.js",
6
6
  "typings": "dist/index.d.ts",
@@ -218,7 +218,8 @@ export function batchGetAuths({nodeId, ...params}: BatchGetAuthsParamsType) {
218
218
  // return FUtil.Axios.post(`/v2/testNodes/${nodeId}/rules/rematch`, params);
219
219
  return FUtil.Request({
220
220
  method: 'GET',
221
- url: `/v2/auths/testResources/nodes/${nodeId}/result`,
221
+ // url: `/v2/auths/testResources/nodes/${nodeId}/result`,
222
+ url: `/v2/auths/exhibits/${nodeId}/test/batchAuth/results`,
222
223
  params: params,
223
224
  });
224
225
  }