@iobroker/types 7.1.2-alpha.1-20260507-9a5979255 → 7.1.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.
@@ -875,6 +875,14 @@ declare global {
875
875
  /** Load it as a TypeScript module */
876
876
  type?: 'module';
877
877
  };
878
+ /**
879
+ * Defines the default value for objectsWarnLimit,
880
+ * which is the maximum number of objects that can be stored in the system.
881
+ * If this limit is exceeded, a warning will be shown in the admin UI.
882
+ * This is used to prevent performance issues caused by too many objects.
883
+ * The system default is actually 5000
884
+ */
885
+ defaultObjectsWarnLimit?: number;
878
886
 
879
887
  // Make it possible to narrow the object type using the custom property
880
888
  custom?: undefined;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@iobroker/types",
3
- "version": "7.1.2-alpha.1-20260507-9a5979255",
3
+ "version": "7.1.2",
4
4
  "engines": {
5
5
  "node": ">=12.0.0"
6
6
  },
@@ -41,5 +41,5 @@
41
41
  ]
42
42
  }
43
43
  },
44
- "gitHead": "6b6e7739b9240f64ad1ab8a7149232b338fe742e"
44
+ "gitHead": "095018313e1b815e4b496dc93462329fd5a7e45a"
45
45
  }