@duet3d/objectmodel 3.7.0-beta.1 → 3.7.0-beta.2

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.
@@ -578,7 +578,7 @@
578
578
  "move.motionSystems[].restorePoints[].extruderPos": "The virtual extruder position at the start of this move",
579
579
  "move.motionSystems[].restorePoints[].fanPwm": "PWM value of the tool fan (0..1)",
580
580
  "move.motionSystems[].restorePoints[].feedRate": "Requested feedrate (in mm/s)",
581
- "move.motionSystems[].restorePoints[].gCommandNumber": "Which of G0/G1/G2/G3 generated the move at this restore point",
581
+ "move.motionSystems[].restorePoints[].gCommandNumber": "Which of G0/G1/G2/G3 generated the move at this restore point, or -1 if unknown",
582
582
  "move.motionSystems[].restorePoints[].ioBits": "The output port bits setting for this move or null if not applicable",
583
583
  "move.motionSystems[].restorePoints[].laserPwm": "Laser PWM value (0..1) or null if not applicable",
584
584
  "move.motionSystems[].restorePoints[].toolNumber": "The tool number that was active",
@@ -1047,7 +1047,7 @@
1047
1047
  "state.restorePoints[].extruderPos": "The virtual extruder position at the start of this move",
1048
1048
  "state.restorePoints[].fanPwm": "PWM value of the tool fan (0..1)",
1049
1049
  "state.restorePoints[].feedRate": "Requested feedrate (in mm/s)",
1050
- "state.restorePoints[].gCommandNumber": "Which of G0/G1/G2/G3 generated the move at this restore point",
1050
+ "state.restorePoints[].gCommandNumber": "Which of G0/G1/G2/G3 generated the move at this restore point, or -1 if unknown",
1051
1051
  "state.restorePoints[].ioBits": "The output port bits setting for this move or null if not applicable",
1052
1052
  "state.restorePoints[].laserPwm": "Laser PWM value (0..1) or null if not applicable",
1053
1053
  "state.restorePoints[].toolNumber": "The tool number that was active",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@duet3d/objectmodel",
3
- "version": "3.7.0-beta.1",
3
+ "version": "3.7.0-beta.2",
4
4
  "description": "TypeScript implementation of the Duet3D Object Model",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",
@@ -15,8 +15,8 @@
15
15
  "./documentation.json": "./dist/documentation.json"
16
16
  },
17
17
  "scripts": {
18
- "test": "jest --config jestconfig.json",
19
- "build": "tsc && tsx scripts/extract-metadata.ts",
18
+ "test": "tsc -p tsconfig.test.json --noEmit && jest --config jestconfig.json",
19
+ "build": "tsc && node scripts/extract-metadata.ts",
20
20
  "prepare": "npm run build",
21
21
  "prepublishOnly": "npm test"
22
22
  },
@@ -31,12 +31,12 @@
31
31
  },
32
32
  "homepage": "https://github.com/Duet3D/ObjectModel#readme",
33
33
  "devDependencies": {
34
+ "@swc/core": "^1.15.43",
35
+ "@swc/jest": "^0.2.39",
34
36
  "@types/jest": "^30.0.0",
35
- "@types/node": "^25.0.0",
36
- "jest": "^30.2.0",
37
- "ts-jest": "^29.1.2",
38
- "tsx": "^4.20.0",
39
- "typescript": "^6.0.3"
37
+ "@types/node": "^26.1.1",
38
+ "jest": "^30.4.2",
39
+ "typescript": "^7.0.2"
40
40
  },
41
41
  "files": [
42
42
  "/dist"