@livedesk/client 0.1.18 → 0.1.19

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.
@@ -6,7 +6,7 @@ import path from 'path';
6
6
  import crypto from 'crypto';
7
7
  import { promises as fs, statfsSync } from 'fs';
8
8
 
9
- const AGENT_VERSION = '0.1.17-livedesk.1';
9
+ const AGENT_VERSION = '0.1.19-livedesk.1';
10
10
  const DEFAULT_MANAGER = '127.0.0.1:5197';
11
11
  const DEFAULT_HEARTBEAT_MS = 5000;
12
12
  const DEFAULT_AI_MODEL = 'gpt-5.4-mini';
@@ -644,6 +644,13 @@ function getFastRuntime() {
644
644
  dll: join(packageRoot, 'fast', 'osx-x64', 'mindexec-remote-fast.dll')
645
645
  };
646
646
  }
647
+ if (platform === 'linux' && arch === 'x64') {
648
+ return {
649
+ rid: 'linux-x64',
650
+ executable: join(packageRoot, 'fast', 'linux-x64', 'mindexec-remote-fast'),
651
+ dll: join(packageRoot, 'fast', 'linux-x64', 'mindexec-remote-fast.dll')
652
+ };
653
+ }
647
654
 
648
655
  return null;
649
656
  }
@@ -0,0 +1,24 @@
1
+ {
2
+ "runtimeTarget": {
3
+ "name": ".NETCoreApp,Version=v9.0/linux-x64",
4
+ "signature": ""
5
+ },
6
+ "compilationOptions": {},
7
+ "targets": {
8
+ ".NETCoreApp,Version=v9.0": {},
9
+ ".NETCoreApp,Version=v9.0/linux-x64": {
10
+ "mindexec-remote-fast/1.0.0": {
11
+ "runtime": {
12
+ "mindexec-remote-fast.dll": {}
13
+ }
14
+ }
15
+ }
16
+ },
17
+ "libraries": {
18
+ "mindexec-remote-fast/1.0.0": {
19
+ "type": "project",
20
+ "serviceable": false,
21
+ "sha512": ""
22
+ }
23
+ }
24
+ }
@@ -0,0 +1,13 @@
1
+ {
2
+ "runtimeOptions": {
3
+ "tfm": "net9.0",
4
+ "framework": {
5
+ "name": "Microsoft.NETCore.App",
6
+ "version": "9.0.0"
7
+ },
8
+ "configProperties": {
9
+ "System.Reflection.Metadata.MetadataUpdater.IsSupported": false,
10
+ "System.Runtime.Serialization.EnableUnsafeBinaryFormatterSerialization": false
11
+ }
12
+ }
13
+ }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@livedesk/client",
3
- "version": "0.1.18",
3
+ "version": "0.1.19",
4
4
  "description": "LiveDesk local remote client",
5
5
  "type": "module",
6
6
  "bin": {