@iobroker/adapter-react-v5 7.4.4 → 7.4.7

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.
@@ -761,7 +761,7 @@ export declare class LegacyConnection {
761
761
  getHistoryEx(id: string, options: ioBroker.GetHistoryOptions): Promise<{
762
762
  values: ioBroker.GetHistoryResult;
763
763
  sessionId: string;
764
- stepIgnore: number;
764
+ step: number;
765
765
  }>;
766
766
  /**
767
767
  * Change the password of the given user.
@@ -2164,7 +2164,7 @@ export class LegacyConnection {
2164
2164
  return Promise.reject(new Error(NOT_CONNECTED));
2165
2165
  }
2166
2166
  return new Promise((resolve, reject) => {
2167
- this._socket.emit('getHistory', id, options, (err, values, stepIgnore, sessionId) => err ? reject(new Error(err)) : resolve({ values, sessionId, stepIgnore }));
2167
+ this._socket.emit('getHistory', id, options, (err, values, step, sessionId) => err ? reject(new Error(err)) : resolve({ values, sessionId, step }));
2168
2168
  });
2169
2169
  }
2170
2170
  /**