@iobroker/json-config 10.0.1 → 10.0.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.
package/README.md CHANGED
@@ -849,7 +849,7 @@ Example:
849
849
  }
850
850
  ```
851
851
 
852
- ### `certificateCollection`
852
+ ### `certCollection`
853
853
 
854
854
  select a certificate collection or just use all collections or don't use let's encrypt at all.
855
855
 
@@ -1956,6 +1956,10 @@ The schema is used here: https://github.com/SchemaStore/schemastore/blob/6da29cd
1956
1956
  ### **WORK IN PROGRESS**
1957
1957
  -->
1958
1958
  ## Changelog
1959
+ ### 10.0.2 (2026-09-15)
1960
+ - (@MiSchroe) Fixed: CRON schema accepts either simple or complex or none of them
1961
+ - (@GermanBluefox) Updated Schema
1962
+
1959
1963
  ### 10.0.1 (2026-09-12)
1960
1964
 
1961
1965
  - (@GermanBluefox) The schema was corrected: closable to closeable.
package/build/types.d.ts CHANGED
@@ -741,7 +741,7 @@ export interface ConfigItemAutocompleteSendTo extends Omit<ConfigItem, 'data'> {
741
741
  /** max length of the text in the field */
742
742
  maxLength?: number;
743
743
  /** @deprecated use maxLength */
744
- max?: string;
744
+ max?: number;
745
745
  alsoDependsOn?: string[];
746
746
  /** Instance where to send the request to. Overrides the value of `oContext.instance` */
747
747
  instance?: string;
@@ -878,7 +878,8 @@ export interface ConfigItemImageSendTo extends Omit<ConfigItem, 'data'> {
878
878
  }
879
879
 
880
880
  export interface ConfigItemSendTo extends Omit<ConfigItem, 'data'> {
881
- type: 'sendto';
881
+ /** `sendto` is a backwards compatible alias of `sendTo` */
882
+ type: 'sendTo' | 'sendto';
882
883
  command?: string;
883
884
  jsonData?: string;
884
885
  data?: Record<string, any>;
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@iobroker/json-config",
3
3
  "description": "This package contains the ioBroker JSON config UI components",
4
- "version": "10.0.1",
4
+ "version": "10.0.2",
5
5
  "author": {
6
6
  "name": "bluefox",
7
7
  "email": "dogafox@gmail.com"