@bts-soft/core 2.4.2 → 2.4.4

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 +2 -0
  2. package/package.json +3 -3
package/README.md CHANGED
@@ -265,9 +265,11 @@ The system enforces strict validation for file extensions and sizes. Limits can
265
265
  | **Videos** | `mp4`, `webm`, `avi`, `mov` | 100 MB | Chunked upload support with duration extraction. |
266
266
  | **Audio** | `mp3`, `wav`, `ogg`, `m4a` | 50 MB | Optimized for playback and metadata extraction. |
267
267
  | **Raw Files** | `pdf`, `doc`, `zip`, `txt` | 10 MB | Stored as 'raw' binary with original headers. |
268
+ | **3D Models** | `glb`, `gltf`, `fbx`, `obj`, `stl` | 100 MB | Stored as binary models with high-capacity limits. |
268
269
 
269
270
  ### Configuration Reference
270
271
 
272
+
271
273
  ```env
272
274
  # Provider Selection
273
275
  UPLOAD_PROVIDER=cloudinary # or 'local'
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@bts-soft/core",
3
- "version": "2.4.2",
3
+ "version": "2.4.4",
4
4
  "author": "Omar Sabry",
5
5
  "description": "All bts-soft packages - meta-package bundling common, cache, validation, upload, and notifications for NestJS.",
6
6
  "main": "dist/index.js",
@@ -15,10 +15,10 @@
15
15
  },
16
16
  "dependencies": {
17
17
  "@bts-soft/notifications": "1.5.1",
18
- "@bts-soft/common": "1.2.8",
18
+ "@bts-soft/common": "1.2.9",
19
19
  "@bts-soft/cache": "1.0.9",
20
20
  "@bts-soft/validation": "1.1.4",
21
- "@bts-soft/upload": "1.4.1"
21
+ "@bts-soft/upload": "1.4.2"
22
22
  },
23
23
  "peerDependencies": {
24
24
  "@nestjs/common": ">=11.0.0",