@hahnpro/hpc-api 2025.5.0 → 2025.5.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/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # @hahnpro/hpc-api
2
2
 
3
+ ## 2025.5.1
4
+
5
+ - Added Description to Content Interface
6
+
3
7
  ## 2025.5.0
4
8
 
5
9
  ### Major Changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@hahnpro/hpc-api",
3
- "version": "2025.5.0",
3
+ "version": "2025.5.1",
4
4
  "description": "Module for easy access to the HahnPRO Cloud API",
5
5
  "license": "MIT",
6
6
  "author": {
@@ -3,6 +3,7 @@ export interface Content {
3
3
  id?: string;
4
4
  fileId: string;
5
5
  filename: string;
6
+ description?: string;
6
7
  mimetype: string;
7
8
  size: number;
8
9
  readPermissions: string[];