@iobroker/types 5.0.15-alpha.0-20231024-8aaeaa08 → 5.0.15

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.
@@ -348,6 +348,8 @@ declare global {
348
348
  logTransporter?: boolean;
349
349
  /** Type of the admin UI */
350
350
  adminUI?: AdminUi;
351
+ /** Optional memory limit for this instance */
352
+ memoryLimitMB?: number;
351
353
 
352
354
  // Make it possible to narrow the object type using the custom property
353
355
  custom?: undefined;
@@ -578,6 +580,8 @@ declare global {
578
580
  preserveSettings?: string | string[];
579
581
  /** Which adapters must be restarted after installing or updating this adapter. */
580
582
  restartAdapters?: string[];
583
+ /** CRON schedule to restart mode `daemon` adapters */
584
+ restartSchedule?: string;
581
585
  /** If the adapter runs in `schedule` mode, this contains the CRON */
582
586
  schedule?: string;
583
587
  serviceStates?: boolean | string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@iobroker/types",
3
- "version": "5.0.15-alpha.0-20231024-8aaeaa08",
3
+ "version": "5.0.15",
4
4
  "engines": {
5
5
  "node": ">=12.0.0"
6
6
  },
@@ -41,5 +41,5 @@
41
41
  ]
42
42
  }
43
43
  },
44
- "gitHead": "8906ccd305ffae6d104f74af12006ae294fcfaef"
44
+ "gitHead": "b1443c30fa3dcc9801d78606ca927121421a137d"
45
45
  }