@@ -31,9 +31,9 @@ export interface PluginHandlerSettings {
3131 /** The scope in which the plugin will be executed */
3232 scope : 'adapter' | 'controller' ;
3333 /** The object namespace for the plugin, e.g. `system.adapter.<adaptername>.0.plugins.name`, or `system.host.<hostname>.plugins.name` */
34- namespace : `system.adapter.${string } .${number } `;
34+ namespace : `system.adapter.${string } .${number } ` | `system.host.${ string } ` ;
3535 /** The namespace which will be used for logging */
36- logNamespace : string ;
36+ logNamespace : `${`system.adapter.${ string } .${ number } ` | `system.host.${ string } ` } Plugin ${ string } ` ;
3737 /** The logger object to use for logging */
3838 log : ioBroker . Logger ;
3939 /** The complete ioBroker configuration object */
@@ -48,11 +48,11 @@ export interface PluginSettings {
4848 /** The scope in which the plugin will be executed */
4949 pluginScope : 'adapter' | 'controller' ;
5050 /** The object namespace for the parent of the plugin, e.g. `system.adapter.<adaptername>.0`, or `system.host.<hostname>.` */
51- parentNamespace : `system.adapter.${string } .${number } `;
51+ parentNamespace : `system.adapter.${string } .${number } ` | `system.host.${ string } ` ;
5252 /** The object namespace for the plugin, e.g. `system.adapter.<adaptername>.0.plugins.name`, or `system.host.<hostname>.plugins.name` */
53- pluginNamespace : `system.adapter.${string } .${number } .plugins.${string } `;
53+ pluginNamespace : `system.adapter.${string } .${number } .plugins.${string } ` | `system.host.${ string } .plugins.${ string } ` ;
5454 /** The namespace which will be used for logging */
55- pluginLogNamespace : string ;
55+ pluginLogNamespace : `${`system.adapter.${ string } .${ number } ` | `system.host.${ string } ` } Plugin ${ string } ` ;
5656 /** The logger object to use for logging */
5757 log : ioBroker . Logger ;
5858 /** The complete ioBroker configuration object */
0 commit comments