@danypops/pi-papyrus 0.59.4 → 0.59.5
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.
|
@@ -129,7 +129,9 @@ export function registerNotesVehicle(pi: ExtensionAPI): Promise<RegisteredPiVehi
|
|
|
129
129
|
const client = createReconnectingVehicleClient(
|
|
130
130
|
async () => {
|
|
131
131
|
const resolved = resolveTarget();
|
|
132
|
-
|
|
132
|
+
const remote = new RemoteVehicleClient({ baseUrl: resolved.baseUrl, token: resolved.token });
|
|
133
|
+
await remote.negotiate({ minimumVersion: 1, maximumVersion: 1, requiredCapabilities: [], optionalCapabilities: [] });
|
|
134
|
+
return remote;
|
|
133
135
|
},
|
|
134
136
|
{
|
|
135
137
|
// The random loopback port is process-instance identity for Papyrus: it changes on
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@danypops/pi-papyrus",
|
|
3
|
-
"version": "0.59.
|
|
3
|
+
"version": "0.59.5",
|
|
4
4
|
"description": "Pi host extension for Papyrus: native tools, TUI panels, and context injection over the daemon-backed graph store",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"type": "module",
|
|
@@ -21,9 +21,9 @@
|
|
|
21
21
|
"dependencies": {
|
|
22
22
|
"@danypops/jittor": "^0.19.2",
|
|
23
23
|
"@danypops/papyrus": "^0.60.10",
|
|
24
|
-
"@danypops/vehicle-client": "^0.10.
|
|
25
|
-
"@danypops/vehicle-core": "^0.
|
|
26
|
-
"@danypops/vehicle-server": "^0.
|
|
24
|
+
"@danypops/vehicle-client": "^0.10.8",
|
|
25
|
+
"@danypops/vehicle-core": "^0.19.1",
|
|
26
|
+
"@danypops/vehicle-server": "^0.27.1",
|
|
27
27
|
"beautiful-mermaid": "1.1.3",
|
|
28
28
|
"malevich-tui-components": "^0.32.1"
|
|
29
29
|
},
|