@flusys/nestjs-storage 1.0.1 → 1.1.0
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/README.md +9 -6
- package/package.json +3 -3
package/README.md
CHANGED
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
# Storage Package Guide
|
|
2
2
|
|
|
3
3
|
> **Package:** `@flusys/nestjs-storage`
|
|
4
|
+
> **Version:** 1.1.0
|
|
4
5
|
> **Type:** File storage system with pluggable providers and multi-tenant support
|
|
5
6
|
|
|
6
7
|
This comprehensive guide covers the storage package - flexible file storage with multiple provider support.
|
|
@@ -115,14 +116,11 @@ nestjs-storage/
|
|
|
115
116
|
│ │ └── index.ts
|
|
116
117
|
│ │
|
|
117
118
|
│ ├── entities/
|
|
118
|
-
│ │ ├── file-manager
|
|
119
|
-
│ │ ├── file-manager.entity.ts
|
|
119
|
+
│ │ ├── file-manager.entity.ts # FileManager (core), aliased as FileManagerBase
|
|
120
120
|
│ │ ├── file-manager-with-company.entity.ts
|
|
121
|
-
│ │ ├── folder
|
|
122
|
-
│ │ ├── folder.entity.ts
|
|
121
|
+
│ │ ├── folder.entity.ts # Folder (core), aliased as FolderBase
|
|
123
122
|
│ │ ├── folder-with-company.entity.ts
|
|
124
|
-
│ │ ├── storage-config
|
|
125
|
-
│ │ ├── storage-config.entity.ts
|
|
123
|
+
│ │ ├── storage-config.entity.ts # StorageConfig (core), aliased as StorageConfigBase
|
|
126
124
|
│ │ ├── storage-config-with-company.entity.ts
|
|
127
125
|
│ │ └── index.ts
|
|
128
126
|
│ │
|
|
@@ -145,7 +143,12 @@ nestjs-storage/
|
|
|
145
143
|
│ │ ├── file-location.enum.ts
|
|
146
144
|
│ │ └── index.ts
|
|
147
145
|
│ │
|
|
146
|
+
│ ├── middlewares/
|
|
147
|
+
│ │ ├── file-serve.middleware.ts
|
|
148
|
+
│ │ └── index.ts
|
|
149
|
+
│ │
|
|
148
150
|
│ └── utils/
|
|
151
|
+
│ ├── file-validator.util.ts
|
|
149
152
|
│ ├── image-compressor.util.ts
|
|
150
153
|
│ └── index.ts
|
|
151
154
|
```
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@flusys/nestjs-storage",
|
|
3
|
-
"version": "1.0
|
|
3
|
+
"version": "1.1.0",
|
|
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",
|
|
@@ -128,7 +128,7 @@
|
|
|
128
128
|
}
|
|
129
129
|
},
|
|
130
130
|
"dependencies": {
|
|
131
|
-
"@flusys/nestjs-core": "1.0
|
|
132
|
-
"@flusys/nestjs-shared": "1.0
|
|
131
|
+
"@flusys/nestjs-core": "1.1.0",
|
|
132
|
+
"@flusys/nestjs-shared": "1.1.0"
|
|
133
133
|
}
|
|
134
134
|
}
|