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 +1 -1
- package/main.cjs +5 -3
- package/package.json +1 -1
- package/runtime-metadata.json +4 -4
package/README.md
CHANGED
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
package/runtime-metadata.json
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
{
|
|
2
2
|
"packageName": "meshy-node",
|
|
3
|
-
"packageVersion": "0.5.
|
|
3
|
+
"packageVersion": "0.5.10",
|
|
4
4
|
"packages": {
|
|
5
5
|
"workspace": {
|
|
6
6
|
"name": "meshy",
|
|
7
|
-
"version": "0.5.
|
|
7
|
+
"version": "0.5.10"
|
|
8
8
|
},
|
|
9
9
|
"node": {
|
|
10
10
|
"name": "meshy-node",
|
|
11
|
-
"version": "0.5.
|
|
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": "
|
|
29
|
+
"commit": "e317326"
|
|
30
30
|
}
|
|
31
31
|
}
|