@meshagent/meshagent-react 0.40.1 → 0.41.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/CHANGELOG.md CHANGED
@@ -1,3 +1,15 @@
1
+ ## [0.41.0]
2
+ - Added spec-based route models and route CRUD/listing APIs, including room and agent routes, with legacy-payload compatibility.
3
+ - Managed-agent toolkit descriptions were simplified to omit `thumbnailUrl` and `pricing`.
4
+ - Breaking change: consumers that read the old toolkit metadata fields need to update to the new shape.
5
+
6
+ ## [0.40.3]
7
+ - TypeScript client now supports route-spec CRUD/listing for room-backed and agent-backed routes.
8
+ - Toolkit serialization was slimmed down by removing `thumbnailUrl` and `pricing` from toolkit and tool payloads, so consumers must no longer rely on those fields.
9
+
10
+ ## [0.40.2]
11
+ - Stability
12
+
1
13
  ## [0.40.1]
2
14
  - Stability
3
15
 
@@ -10,7 +10,6 @@ function getToolkitDefinition(toolkit, isPublic) {
10
10
  name: toolkit.name,
11
11
  title: toolkit.title,
12
12
  description: toolkit.description,
13
- thumbnailUrl: toolkit.thumbnailUrl ?? null,
14
13
  rules: [...toolkit.rules],
15
14
  tools: toolkit.tools.map((tool) => ({
16
15
  name: tool.name,
@@ -18,7 +17,6 @@ function getToolkitDefinition(toolkit, isPublic) {
18
17
  description: tool.description,
19
18
  inputSpec: tool.inputSpec?.toJson() ?? null,
20
19
  outputSpec: tool.outputSpec?.toJson() ?? null,
21
- thumbnailUrl: tool.thumbnailUrl ?? null,
22
20
  })),
23
21
  });
24
22
  }
@@ -7,7 +7,6 @@ function getToolkitDefinition(toolkit, isPublic) {
7
7
  name: toolkit.name,
8
8
  title: toolkit.title,
9
9
  description: toolkit.description,
10
- thumbnailUrl: toolkit.thumbnailUrl ?? null,
11
10
  rules: [...toolkit.rules],
12
11
  tools: toolkit.tools.map((tool) => ({
13
12
  name: tool.name,
@@ -15,7 +14,6 @@ function getToolkitDefinition(toolkit, isPublic) {
15
14
  description: tool.description,
16
15
  inputSpec: tool.inputSpec?.toJson() ?? null,
17
16
  outputSpec: tool.outputSpec?.toJson() ?? null,
18
- thumbnailUrl: tool.thumbnailUrl ?? null,
19
17
  })),
20
18
  });
21
19
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@meshagent/meshagent-react",
3
- "version": "0.40.1",
3
+ "version": "0.41.0",
4
4
  "description": "Meshagent React Client",
5
5
  "homepage": "https://github.com/meshagent/meshagent-react",
6
6
  "scripts": {
@@ -36,7 +36,7 @@
36
36
  "base-64": "^1.0.0",
37
37
  "livekit-client": "^2.15.5",
38
38
  "react": "^19.1.0",
39
- "@meshagent/meshagent": "^0.40.1",
39
+ "@meshagent/meshagent": "^0.41.0",
40
40
  "react-dom": "^19.1.0",
41
41
  "typescript": "^5.8.3",
42
42
  "uuid": "^14.0.0",