@flusys/nestjs-storage 4.0.0-rc → 4.0.2

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/README.md +1 -1
  2. package/package.json +5 -4
package/README.md CHANGED
@@ -1,7 +1,7 @@
1
1
  # Storage Package Guide
2
2
 
3
3
  > **Package:** `@flusys/nestjs-storage`
4
- > **Version:** 3.0.1
4
+ > **Version:** 4.0.2
5
5
  > **Type:** File storage system with pluggable providers and multi-tenant support
6
6
 
7
7
  This comprehensive guide covers the storage package - flexible file storage with multiple provider support.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@flusys/nestjs-storage",
3
- "version": "4.0.0-rc",
3
+ "version": "4.0.2",
4
4
  "description": "Modular storage package with optional AWS S3, Azure Blob, and SFTP providers",
5
5
  "main": "cjs/index.js",
6
6
  "module": "fesm/index.js",
@@ -102,7 +102,8 @@
102
102
  "@aws-sdk/lib-storage": "^3.400.0",
103
103
  "@aws-sdk/s3-request-presigner": "^3.400.0",
104
104
  "@azure/storage-blob": "^12.15.0",
105
- "ssh2-sftp-client": "^12.0.0"
105
+ "ssh2-sftp-client": "^12.0.0",
106
+ "express": "^4.18.0"
106
107
  },
107
108
  "peerDependenciesMeta": {
108
109
  "sharp": {
@@ -128,7 +129,7 @@
128
129
  }
129
130
  },
130
131
  "dependencies": {
131
- "@flusys/nestjs-core": "4.0.0-rc",
132
- "@flusys/nestjs-shared": "4.0.0-rc"
132
+ "@flusys/nestjs-core": "4.0.2",
133
+ "@flusys/nestjs-shared": "4.0.2"
133
134
  }
134
135
  }