deepdebug-local-agent 0.3.17 → 0.3.18
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/package.json +1 -1
- package/src/server.js +10 -0
package/package.json
CHANGED
package/src/server.js
CHANGED
|
@@ -5133,6 +5133,16 @@ async function startWebSocketTunnel(port, gatewayUrl, apiKey, tenantId) {
|
|
|
5133
5133
|
}
|
|
5134
5134
|
}
|
|
5135
5135
|
|
|
5136
|
+
case 'workspace.git.create-fix-branch': {
|
|
5137
|
+
const fetch2 = (await import('node-fetch')).default;
|
|
5138
|
+
const r = await fetch2(`http://localhost:5055/workspace/git/create-fix-branch`, {
|
|
5139
|
+
method: 'POST',
|
|
5140
|
+
headers: { 'Content-Type': 'application/json' },
|
|
5141
|
+
body: JSON.stringify(params)
|
|
5142
|
+
});
|
|
5143
|
+
return await r.json();
|
|
5144
|
+
}
|
|
5145
|
+
|
|
5136
5146
|
case 'workspace.safe-patch':
|
|
5137
5147
|
case 'workspace.compile':
|
|
5138
5148
|
case 'workspace.rollback':
|