covenant-protocol 0.3.1 → 0.4.0
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/linuxcnc-protocol.d.ts +6 -0
- package/package.json +2 -2
package/linuxcnc-protocol.d.ts
CHANGED
|
@@ -140,6 +140,12 @@ export interface LinuxCNCProtocol extends ChannelProtocol {
|
|
|
140
140
|
result: RcsStatus;
|
|
141
141
|
};
|
|
142
142
|
|
|
143
|
+
/** Close the currently loaded G-code program */
|
|
144
|
+
"cmd/program-close": {
|
|
145
|
+
args: {};
|
|
146
|
+
result: RcsStatus;
|
|
147
|
+
};
|
|
148
|
+
|
|
143
149
|
/** Run program from line */
|
|
144
150
|
"cmd/program-run": {
|
|
145
151
|
args: { startLine?: number };
|
package/package.json
CHANGED
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "covenant-protocol",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.4.0",
|
|
4
4
|
"description": "Protocol definitions for communicating with LinuxCNC through Eden's AppBus",
|
|
5
5
|
"types": "index.d.ts",
|
|
6
6
|
"author": "Dariusz Majnert",
|
|
7
7
|
"license": "MIT",
|
|
8
8
|
"dependencies": {
|
|
9
9
|
"@edenapp/types": "^0.2.1",
|
|
10
|
-
"@linuxcnc-node/types": "^
|
|
10
|
+
"@linuxcnc-node/types": "^3.0.0"
|
|
11
11
|
},
|
|
12
12
|
"peerDependencies": {
|
|
13
13
|
"typescript": "*"
|