knt-shared 1.6.4 → 1.6.5

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/index.esm.js CHANGED
@@ -9078,13 +9078,15 @@ function transformBackUrl(transferUrl, config) {
9078
9078
  if (isString(transferUrl)) {
9079
9079
  resultObj = {
9080
9080
  url: transferUrl,
9081
- path: void 0
9081
+ path: void 0,
9082
+ status: "done"
9082
9083
  };
9083
9084
  } else if (isObject(transferUrl)) {
9084
9085
  const fileObj = transferUrl;
9085
9086
  resultObj = {
9086
9087
  url: fileObj[mergedConfig.fullFilePath],
9087
- path: fileObj[mergedConfig.filePath]
9088
+ path: fileObj[mergedConfig.filePath],
9089
+ status: "done"
9088
9090
  };
9089
9091
  } else {
9090
9092
  return void 0;