livedesk 0.1.110 → 0.1.111

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.
@@ -555,6 +555,10 @@ function normalizeRemoteInputEvent(value = {}) {
555
555
  location: Number.isFinite(location) ? Math.max(0, Math.min(255, Math.trunc(location))) : 0,
556
556
  text: safeText(input.text || input.Text, 256),
557
557
  repeat: input.repeat === true || input.Repeat === true,
558
+ shiftKey: input.shiftKey === true || input.ShiftKey === true,
559
+ ctrlKey: input.ctrlKey === true || input.ControlKey === true || input.CtrlKey === true,
560
+ altKey: input.altKey === true || input.AltKey === true,
561
+ metaKey: input.metaKey === true || input.MetaKey === true || input.commandKey === true || input.CommandKey === true,
558
562
  controlLeaseId: safeString(input.controlLeaseId || input.ControlLeaseId, 128),
559
563
  issuedAt: safeString(input.issuedAt || input.IssuedAt, 80)
560
564
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "livedesk",
3
- "version": "0.1.110",
3
+ "version": "0.1.111",
4
4
  "description": "LiveDesk Hub and client launcher",
5
5
  "type": "module",
6
6
  "bin": {
@@ -30,7 +30,7 @@
30
30
  "node": ">=20"
31
31
  },
32
32
  "dependencies": {
33
- "@livedesk/client": "0.1.80",
33
+ "@livedesk/client": "0.1.81",
34
34
  "cors": "^2.8.5",
35
35
  "express": "^4.21.2",
36
36
  "ws": "^8.18.3"