@ccci/micro-server 1.0.219 → 1.0.220

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.js CHANGED
@@ -303336,7 +303336,8 @@ class Uploader {
303336
303336
  bucket,
303337
303337
  directory: dir,
303338
303338
  objectName: filename,
303339
- mimeType: file.mimetype
303339
+ mimeType: file.mimetype,
303340
+ location: `https://${process.env.MINIO_ENDPOINT}${path3}`
303340
303341
  });
303341
303342
  }
303342
303343
  return isArray ? response4 : response4[0];
@@ -5,5 +5,6 @@ export type UploadedFileType = {
5
5
  directory?: string;
6
6
  objectName?: string;
7
7
  mimeType?: string;
8
+ location?: string;
8
9
  };
9
10
  //# sourceMappingURL=UploadedFileType.d.ts.map
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ccci/micro-server",
3
- "version": "1.0.219",
3
+ "version": "1.0.220",
4
4
  "module": "index.ts",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",