@duet3d/objectmodel 3.5.0-beta.55 → 3.5.0-beta.56
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.
- package/dist/ObjectModel.d.ts +2 -0
- package/dist/ObjectModel.js +2 -0
- package/package.json +1 -1
package/dist/ObjectModel.d.ts
CHANGED
|
@@ -19,6 +19,7 @@ import State from "./state";
|
|
|
19
19
|
import Tool from "./tools";
|
|
20
20
|
import UserSession from "./userSessions";
|
|
21
21
|
import Volume from "./volumes";
|
|
22
|
+
import LedStrip from "./ledStrips";
|
|
22
23
|
/**
|
|
23
24
|
* Refer to the DSF/RRF documentation for descriptions of the object model fields
|
|
24
25
|
*/
|
|
@@ -31,6 +32,7 @@ export declare class ObjectModel extends ModelObject {
|
|
|
31
32
|
readonly heat: Heat;
|
|
32
33
|
readonly inputs: ModelCollection<InputChannel | null>;
|
|
33
34
|
readonly job: Job;
|
|
35
|
+
readonly ledStrips: ModelCollection<LedStrip>;
|
|
34
36
|
readonly limits: Limits;
|
|
35
37
|
readonly messages: ModelCollection<Message>;
|
|
36
38
|
readonly move: Move;
|
package/dist/ObjectModel.js
CHANGED
|
@@ -22,6 +22,7 @@ const state_1 = require("./state");
|
|
|
22
22
|
const tools_1 = require("./tools");
|
|
23
23
|
const userSessions_1 = require("./userSessions");
|
|
24
24
|
const volumes_1 = require("./volumes");
|
|
25
|
+
const ledStrips_1 = require("./ledStrips");
|
|
25
26
|
/**
|
|
26
27
|
* Refer to the DSF/RRF documentation for descriptions of the object model fields
|
|
27
28
|
*/
|
|
@@ -35,6 +36,7 @@ class ObjectModel extends ModelObject_1.default {
|
|
|
35
36
|
this.heat = new heat_1.default();
|
|
36
37
|
this.inputs = new ModelCollection_1.default(InputChannel_1.default);
|
|
37
38
|
this.job = new job_1.default();
|
|
39
|
+
this.ledStrips = new ModelCollection_1.default(ledStrips_1.default);
|
|
38
40
|
this.limits = new limits_1.default();
|
|
39
41
|
this.messages = new ModelCollection_1.default(messages_1.default); // must be manually cleared after updates
|
|
40
42
|
this.move = new move_1.default();
|