@iobroker/js-controller-adapter 7.1.0 → 7.1.1-alpha.29-20260402-93ef165ef
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.
|
@@ -3216,7 +3216,7 @@ class AdapterClass extends import_node_events.EventEmitter {
|
|
|
3216
3216
|
* @deprecated use `this.extendObject` instead
|
|
3217
3217
|
*/
|
|
3218
3218
|
createDevice(deviceName, common, _native, options, callback) {
|
|
3219
|
-
this._logger.info(`${this.namespaceLog} Method "createDevice" is deprecated and will be removed in js-controller
|
|
3219
|
+
this._logger.info(`${this.namespaceLog} Method "createDevice" is deprecated and will be removed in js-controller 8.x, use "extendObject/setObjectNotExists" instead`);
|
|
3220
3220
|
if (typeof options === "function") {
|
|
3221
3221
|
callback = options;
|
|
3222
3222
|
options = null;
|
|
@@ -3271,7 +3271,7 @@ class AdapterClass extends import_node_events.EventEmitter {
|
|
|
3271
3271
|
* @deprecated use `this.extendObject` instead
|
|
3272
3272
|
*/
|
|
3273
3273
|
createChannel(parentDevice, channelName, roleOrCommon, _native, options, callback) {
|
|
3274
|
-
this._logger.info(`${this.namespaceLog} Method "createChannel" is deprecated and will be removed in js-controller
|
|
3274
|
+
this._logger.info(`${this.namespaceLog} Method "createChannel" is deprecated and will be removed in js-controller 8.x, use "extendObject/setObjectNotExists" instead`);
|
|
3275
3275
|
if (typeof options === "function") {
|
|
3276
3276
|
callback = options;
|
|
3277
3277
|
options = null;
|
|
@@ -3325,7 +3325,7 @@ class AdapterClass extends import_node_events.EventEmitter {
|
|
|
3325
3325
|
* @deprecated use `this.extendObject` instead
|
|
3326
3326
|
*/
|
|
3327
3327
|
createState(parentDevice, parentChannel, stateName, roleOrCommon, _native, options, callback) {
|
|
3328
|
-
this._logger.info(`${this.namespaceLog} Method "createState" is deprecated and will be removed in js-controller
|
|
3328
|
+
this._logger.info(`${this.namespaceLog} Method "createState" is deprecated and will be removed in js-controller 8.x, use "extendObject/setObjectNotExists" instead`);
|
|
3329
3329
|
if (typeof options === "function") {
|
|
3330
3330
|
callback = options;
|
|
3331
3331
|
options = null;
|
|
@@ -3482,7 +3482,7 @@ class AdapterClass extends import_node_events.EventEmitter {
|
|
|
3482
3482
|
* ```
|
|
3483
3483
|
*/
|
|
3484
3484
|
deleteDevice(deviceName, options, callback) {
|
|
3485
|
-
this._logger.info(`${this.namespaceLog} Method "deleteDevice" is deprecated and will be removed in js-controller
|
|
3485
|
+
this._logger.info(`${this.namespaceLog} Method "deleteDevice" is deprecated and will be removed in js-controller 8.x, use "delObject" instead`);
|
|
3486
3486
|
if (typeof options === "function") {
|
|
3487
3487
|
callback = options;
|
|
3488
3488
|
options = null;
|
|
@@ -3689,7 +3689,7 @@ class AdapterClass extends import_node_events.EventEmitter {
|
|
|
3689
3689
|
* ```
|
|
3690
3690
|
*/
|
|
3691
3691
|
deleteChannel(parentDevice, channelName, options, callback) {
|
|
3692
|
-
this._logger.info(`${this.namespaceLog} Method "deleteChannel" is deprecated and will be removed in js-controller
|
|
3692
|
+
this._logger.info(`${this.namespaceLog} Method "deleteChannel" is deprecated and will be removed in js-controller 8.x, use "delObject" instead`);
|
|
3693
3693
|
if (typeof options === "function") {
|
|
3694
3694
|
callback = options;
|
|
3695
3695
|
options = null;
|
|
@@ -3763,7 +3763,7 @@ class AdapterClass extends import_node_events.EventEmitter {
|
|
|
3763
3763
|
* @deprecated use `this.delObject` instead
|
|
3764
3764
|
*/
|
|
3765
3765
|
deleteState(parentDevice, parentChannel, stateName, options, callback) {
|
|
3766
|
-
this._logger.info(`${this.namespaceLog} Method "deleteState" is deprecated and will be removed in js-controller
|
|
3766
|
+
this._logger.info(`${this.namespaceLog} Method "deleteState" is deprecated and will be removed in js-controller 8.x, use "delObject" instead`);
|
|
3767
3767
|
if (typeof parentChannel === "function" && stateName === void 0) {
|
|
3768
3768
|
stateName = parentDevice;
|
|
3769
3769
|
callback = parentChannel;
|