@duet3d/objectmodel 3.6.0-rc.1 → 3.6.0-rc.3

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 PulsedFilamentMonitor extends FilamentMonitorBase {
16
16
  constructor();
17
17
  calibrated: PulsedFilamentMonitorCalibrated | null;
18
18
  readonly configured: PulsedFilamentMonitorConfigured;
19
+ position: number;
19
20
  update(jsonElement: any): IModelObject | null;
20
21
  }
21
22
  export default PulsedFilamentMonitor;
@@ -29,6 +29,7 @@ class PulsedFilamentMonitor extends FilamentMonitorBase_1.default {
29
29
  super(FilamentMonitorBase_1.FilamentMonitorType.pulsed);
30
30
  this.calibrated = new PulsedFilamentMonitorCalibrated();
31
31
  this.configured = new PulsedFilamentMonitorConfigured();
32
+ this.position = 0;
32
33
  ModelObject_1.default.wrapModelProperty(this, "calibrated", PulsedFilamentMonitorCalibrated);
33
34
  }
34
35
  update(jsonElement) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@duet3d/objectmodel",
3
- "version": "3.6.0-rc.1",
3
+ "version": "3.6.0-rc.3",
4
4
  "description": "TypeScript implementation of the Duet3D Object Model",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",