elseware-nodejs 1.8.0 → 1.8.1
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.cjs +2 -1
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +1 -0
- package/dist/index.d.ts +1 -0
- package/dist/index.js +2 -1
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.cjs
CHANGED
|
@@ -5368,7 +5368,8 @@ var CloudinaryService = class {
|
|
|
5368
5368
|
const result = await cloudinary.uploader.upload(filePath, {
|
|
5369
5369
|
folder: folderPath,
|
|
5370
5370
|
public_id: options.publicId,
|
|
5371
|
-
resource_type: options.resourceType || "auto"
|
|
5371
|
+
resource_type: options.resourceType || "auto",
|
|
5372
|
+
transformation: options.transformation
|
|
5372
5373
|
});
|
|
5373
5374
|
return result.public_id;
|
|
5374
5375
|
}
|