@quantiya/codevibe-antigravity-plugin 1.0.12 → 2.0.2

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.
Files changed (2) hide show
  1. package/dist/server.js +5 -1
  2. package/package.json +2 -2
package/dist/server.js CHANGED
@@ -3130,7 +3130,11 @@ var McpServer = class {
3130
3130
  {
3131
3131
  sessionId,
3132
3132
  userId,
3133
- agentType: import_codevibe_core4.AgentType.ANTIGRAVITY,
3133
+ // core 2.0.2's AgentType enum dropped the ANTIGRAVITY member (the
3134
+ // antigravity 2.0 line was deferred), but the backend schema still
3135
+ // accepts "ANTIGRAVITY". Send the string the backend expects, cast to
3136
+ // AgentType so the 2.0 core type still checks.
3137
+ agentType: "ANTIGRAVITY",
3134
3138
  projectPath,
3135
3139
  metadata: { wrapperPid: this.wrapperPid ?? void 0, launch: true }
3136
3140
  },
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@quantiya/codevibe-antigravity-plugin",
3
- "version": "1.0.12",
3
+ "version": "2.0.2",
4
4
  "description": "Control Antigravity CLI from your iPhone and Android — real-time sync, approve file edits, send prompts by voice. Part of CodeVibe.",
5
5
  "main": "dist/server.js",
6
6
  "bin": {
@@ -48,7 +48,7 @@
48
48
  "node": ">=18.0.0"
49
49
  },
50
50
  "dependencies": {
51
- "@quantiya/codevibe-core": "^1.0.31",
51
+ "@quantiya/codevibe-core": "2.0.2",
52
52
  "chokidar": "^5.0.0",
53
53
  "dotenv": "^16.6.1",
54
54
  "express": "^5.1.0",