@duet3d/objectmodel 3.7.0-alpha.11 → 3.7.0-alpha.12

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.
@@ -16,6 +16,7 @@ export declare class InputChannel extends ModelObject {
16
16
  active: boolean;
17
17
  axesRelative: boolean;
18
18
  compatibility: Compatibility;
19
+ currentFile: string | null;
19
20
  distanceUnit: DistanceUnit;
20
21
  drivesRelative: boolean;
21
22
  feedRate: number;
@@ -20,6 +20,7 @@ export class InputChannel extends ModelObject {
20
20
  this.active = true;
21
21
  this.axesRelative = false;
22
22
  this.compatibility = Compatibility.RepRapFirmware;
23
+ this.currentFile = null;
23
24
  this.distanceUnit = DistanceUnit.mm;
24
25
  this.drivesRelative = true;
25
26
  this.feedRate = 50;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@duet3d/objectmodel",
3
- "version": "3.7.0-alpha.11",
3
+ "version": "3.7.0-alpha.12",
4
4
  "description": "TypeScript implementation of the Duet3D Object Model",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",