@duet3d/objectmodel 3.5.0-rc.4 → 3.5.0-rc.6
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 = [];
|
package/dist/sensors/Probe.d.ts
CHANGED
package/dist/sensors/Probe.js
CHANGED
|
@@ -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() {
|