@livedesk/client 0.1.192 → 0.1.194

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.
@@ -3872,6 +3872,8 @@ function buildClientAgentEnvironment(prepared) {
3872
3872
  env.LIVEDESK_CLIENT_SLOT = String(prepared?.slot || env.LIVEDESK_CLIENT_SLOT || '');
3873
3873
  env.LIVEDESK_DEVICE_ID = String(prepared?.deviceId || env.LIVEDESK_DEVICE_ID || '');
3874
3874
  env.LIVEDESK_CLIENT_ENGINE = String(prepared?.engine || env.LIVEDESK_CLIENT_ENGINE || 'auto');
3875
+ env.LIVEDESK_CLIENT_TRANSPORT = String(env.LIVEDESK_CLIENT_TRANSPORT || 'auto');
3876
+ env.LIVEDESK_UDP_ENABLED = String(env.LIVEDESK_UDP_ENABLED || '1');
3875
3877
  env.LIVEDESK_CLIENT_UPDATE_STATE_PATH = CLIENT_UPDATE_STATE_PATH;
3876
3878
  env.LIVEDESK_CLIENT_UPDATE_ARGS_BASE64 = Buffer
3877
3879
  .from(JSON.stringify(buildClientUpdateRestartArgs(prepared)), 'utf8')
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@livedesk/client",
3
- "version": "0.1.192",
3
+ "version": "0.1.194",
4
4
  "description": "LiveDesk local remote client",
5
5
  "type": "module",
6
6
  "bin": {
@@ -41,10 +41,10 @@
41
41
  "ws": "^8.18.3"
42
42
  },
43
43
  "optionalDependencies": {
44
- "@livedesk/fast-linux-x64": "0.1.399",
45
- "@livedesk/fast-osx-arm64": "0.1.399",
46
- "@livedesk/fast-osx-x64": "0.1.399",
47
- "@livedesk/fast-win-x64": "0.1.399"
44
+ "@livedesk/fast-linux-x64": "0.1.401",
45
+ "@livedesk/fast-osx-arm64": "0.1.401",
46
+ "@livedesk/fast-osx-x64": "0.1.401",
47
+ "@livedesk/fast-win-x64": "0.1.401"
48
48
  },
49
49
  "publishConfig": {
50
50
  "access": "public"