meshy-node 0.5.9 → 0.5.10

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/README.md CHANGED
@@ -1,6 +1,6 @@
1
1
  # meshy-node
2
2
 
3
- Version: 0.5.9
3
+ Version: 0.5.10
4
4
 
5
5
  This package contains the built Meshy standalone node runtime only.
6
6
  It intentionally excludes repository source files and TypeScript sources.
package/main.cjs CHANGED
@@ -58802,7 +58802,7 @@ var SystemAuthInfoSchema = external_exports.object({
58802
58802
  allowedUsers: external_exports.array(external_exports.string())
58803
58803
  });
58804
58804
  var SystemAgentInfoSchema = external_exports.object({
58805
- id: external_exports.enum(["claude", "codex"]),
58805
+ id: external_exports.enum(["claude", "codex", "copilot"]),
58806
58806
  label: external_exports.string(),
58807
58807
  command: external_exports.string(),
58808
58808
  available: external_exports.boolean(),
@@ -58846,14 +58846,16 @@ var NodeSettingsSnapshotSchema = external_exports.object({
58846
58846
  az: SystemComponentStatusSchema.optional(),
58847
58847
  devtunnel: SystemComponentStatusSchema.optional(),
58848
58848
  claude: SystemComponentStatusSchema.optional(),
58849
- codex: SystemComponentStatusSchema.optional()
58849
+ codex: SystemComponentStatusSchema.optional(),
58850
+ copilot: SystemComponentStatusSchema.optional()
58850
58851
  }).optional()
58851
58852
  }).optional(),
58852
58853
  components: external_exports.object({
58853
58854
  az: SystemComponentStatusSchema.optional(),
58854
58855
  devtunnel: SystemComponentStatusSchema.optional(),
58855
58856
  claude: SystemComponentStatusSchema.optional(),
58856
- codex: SystemComponentStatusSchema.optional()
58857
+ codex: SystemComponentStatusSchema.optional(),
58858
+ copilot: SystemComponentStatusSchema.optional()
58857
58859
  }).optional(),
58858
58860
  repository: SystemRepositoryInfoSchema.optional(),
58859
58861
  packages: external_exports.object({
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "meshy-node",
3
- "version": "0.5.9",
3
+ "version": "0.5.10",
4
4
  "private": false,
5
5
  "description": "Standalone Meshy node package with bundled runtime and dashboard assets.",
6
6
  "type": "commonjs",
@@ -1,14 +1,14 @@
1
1
  {
2
2
  "packageName": "meshy-node",
3
- "packageVersion": "0.5.9",
3
+ "packageVersion": "0.5.10",
4
4
  "packages": {
5
5
  "workspace": {
6
6
  "name": "meshy",
7
- "version": "0.5.9"
7
+ "version": "0.5.10"
8
8
  },
9
9
  "node": {
10
10
  "name": "meshy-node",
11
- "version": "0.5.9"
11
+ "version": "0.5.10"
12
12
  },
13
13
  "core": {
14
14
  "name": "@meshy/core",
@@ -26,6 +26,6 @@
26
26
  "repository": {
27
27
  "url": "https://github.com/ai-microsoft/meshy",
28
28
  "branch": "SupportCopilotCli",
29
- "commit": "707ab53"
29
+ "commit": "e317326"
30
30
  }
31
31
  }