@hahnpro/hpc-api 2025.10.2 → 2025.10.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.
package/CHANGELOG.md CHANGED
@@ -1,5 +1,11 @@
1
1
  # @hahnpro/hpc-api
2
2
 
3
+ ## 2025.10.4
4
+
5
+ ### Patch Changes
6
+
7
+ - Removed DeleteAssetQuery interface property `securityCheck?: boolean` as it is not supported by the HPC API anymore.
8
+
3
9
  ## 2025.6.2
4
10
 
5
11
  ### Patch Changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@hahnpro/hpc-api",
3
- "version": "2025.10.2",
3
+ "version": "2025.10.4",
4
4
  "description": "Module for easy access to the HahnPRO Cloud API",
5
5
  "license": "MIT",
6
6
  "author": {
@@ -6,6 +6,5 @@ export interface DeleteAssetTypeQuery extends DeleteQuery {
6
6
  removeFromAllowedParents?: boolean;
7
7
  }
8
8
  export interface DeleteAssetQuery extends DeleteQuery {
9
- securityCheck?: boolean;
10
9
  removeChildren?: boolean;
11
10
  }