matterbridge-roborock-vacuum-plugin 1.1.1-rc04 → 1.1.1-rc05

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.
@@ -13,7 +13,7 @@ jobs:
13
13
  strategy:
14
14
  fail-fast: false
15
15
  matrix:
16
- node-version: [20.x, 22.x]
16
+ node-version: [20.x, 22.x, 24.x]
17
17
  os: [ubuntu-latest, windows-latest, macos-latest]
18
18
 
19
19
  steps:
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "matterbridge-roborock-vacuum-plugin",
3
3
  "type": "DynamicPlatform",
4
- "version": "1.1.1-rc04",
4
+ "version": "1.1.1-rc05",
5
5
  "whiteList": [],
6
6
  "blackList": [],
7
7
  "useInterval": true,
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "title": "Matterbridge Roborock Vacuum Plugin",
3
- "description": "matterbridge-roborock-vacuum-plugin v. 1.1.1-rc04 by https://github.com/RinDevJunior",
3
+ "description": "matterbridge-roborock-vacuum-plugin v. 1.1.1-rc05 by https://github.com/RinDevJunior",
4
4
  "type": "object",
5
5
  "required": ["username", "password"],
6
6
  "properties": {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "matterbridge-roborock-vacuum-plugin",
3
- "version": "1.1.1-rc04",
3
+ "version": "1.1.1-rc05",
4
4
  "description": "Matterbridge Roborock Vacuum Plugin",
5
5
  "author": "https://github.com/RinDevJunior",
6
6
  "license": "MIT",
@@ -2,14 +2,6 @@ import { PlatformRunner } from '../platformRunner';
2
2
  import { NotifyMessageTypes } from '../notifyMessageTypes';
3
3
  import { RoborockMatterbridgePlatform } from '../platform';
4
4
  import { RoborockVacuumCleaner } from '../rvc';
5
- import * as initialDataIndex from '../initialData/index';
6
-
7
- const getOperationalErrorState = jest.fn().mockReturnValue(2);
8
-
9
- jest.mock('./src/initialData/index', () => ({
10
- ...initialDataIndex,
11
- getOperationalErrorState,
12
- }));
13
5
 
14
6
  describe('PlatformRunner.updateRobot', () => {
15
7
  let platform: RoborockMatterbridgePlatform;