@tmsfe/tms-core 0.0.116 → 0.0.117

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.
Files changed (2) hide show
  1. package/package.json +1 -1
  2. package/src/request.js +1 -1
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tmsfe/tms-core",
3
- "version": "0.0.116",
3
+ "version": "0.0.117",
4
4
  "description": "tms运行时框架",
5
5
  "repository": {
6
6
  "type": "git",
package/src/request.js CHANGED
@@ -320,7 +320,7 @@ export default class Request {
320
320
  }
321
321
 
322
322
  // 打车、代驾日志不截断,方便用于回放
323
- const fullApi = path.indexOf('/takecar/') !== -1 || path.indexOf('/dd/api/v2/order') !== -1;
323
+ const fullApi = path.indexOf('/takecar/') !== -1 || path.indexOf('dd/api/v2/order') !== -1;
324
324
 
325
325
  let result = JSON.stringify(res);
326
326
  if (isSuccess && !fullApi && result.length > 500) {