@duet3d/objectmodel 3.5.0-rc.4 → 3.5.0-rc.5

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.
@@ -52,6 +52,7 @@ export declare class PluginManifest extends ModelObject {
52
52
  sbcExecutable: string | null;
53
53
  sbcExecutableArguments: string | null;
54
54
  sbcExtraExecutables: Array<string>;
55
+ sbcAutoRestart: boolean;
55
56
  sbcOutputRedirected: boolean;
56
57
  sbcPermissions: ModelSet<SbcPermission>;
57
58
  sbcPackageDependencies: Array<string>;
@@ -57,6 +57,7 @@ class PluginManifest extends ModelObject_1.default {
57
57
  this.sbcExecutable = null;
58
58
  this.sbcExecutableArguments = null;
59
59
  this.sbcExtraExecutables = [];
60
+ this.sbcAutoRestart = false;
60
61
  this.sbcOutputRedirected = true;
61
62
  this.sbcPermissions = new ModelSet_1.default();
62
63
  this.sbcPackageDependencies = [];
@@ -9,7 +9,7 @@ export declare enum FilamentMonitorStatus {
9
9
  sensorError = "sensorError"
10
10
  }
11
11
  export declare enum FilamentMonitorType {
12
- simple = "simple",
12
+ switch = "switch",
13
13
  laser = "laser",
14
14
  pulsed = "pulsed",
15
15
  rotatingMagnet = "rotatingMagnet",
@@ -14,7 +14,7 @@ var FilamentMonitorStatus;
14
14
  })(FilamentMonitorStatus || (exports.FilamentMonitorStatus = FilamentMonitorStatus = {}));
15
15
  var FilamentMonitorType;
16
16
  (function (FilamentMonitorType) {
17
- FilamentMonitorType["simple"] = "simple";
17
+ FilamentMonitorType["switch"] = "switch";
18
18
  FilamentMonitorType["laser"] = "laser";
19
19
  FilamentMonitorType["pulsed"] = "pulsed";
20
20
  FilamentMonitorType["rotatingMagnet"] = "rotatingMagnet";
@@ -10,7 +10,8 @@ export declare enum ProbeType {
10
10
  zSwitch_obsolete = 7,
11
11
  unfilteredDigital = 8,
12
12
  blTouch = 9,
13
- zMotorStall = 10
13
+ zMotorStall = 10,
14
+ scanningAnalog = 11
14
15
  }
15
16
  export declare class Probe extends ModelObject {
16
17
  calibA: number | null;
@@ -15,6 +15,7 @@ var ProbeType;
15
15
  ProbeType[ProbeType["unfilteredDigital"] = 8] = "unfilteredDigital";
16
16
  ProbeType[ProbeType["blTouch"] = 9] = "blTouch";
17
17
  ProbeType[ProbeType["zMotorStall"] = 10] = "zMotorStall";
18
+ ProbeType[ProbeType["scanningAnalog"] = 11] = "scanningAnalog";
18
19
  })(ProbeType || (exports.ProbeType = ProbeType = {}));
19
20
  class Probe extends ModelObject_1.default {
20
21
  constructor() {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@duet3d/objectmodel",
3
- "version": "3.5.0-rc.4",
3
+ "version": "3.5.0-rc.5",
4
4
  "description": "TypeScript implementation of the Duet3D Object Model",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",