@parall/daemon 1.34.0 → 1.36.0
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/bundle/manifest.json +13 -9
- package/bundle/parall-browser-pod.js +40665 -0
- package/bundle/parall-claude-agent.js +564 -91
- package/bundle/parall-codex-agent.js +559 -90
- package/bundle/parall-daemon.js +1000 -66
- package/dist/browser-pod.d.ts +294 -0
- package/dist/browser-pod.d.ts.map +1 -0
- package/dist/browser-pod.js +765 -0
- package/dist/clip-runtime/browser-profile-manager.d.ts +10 -0
- package/dist/clip-runtime/browser-profile-manager.d.ts.map +1 -1
- package/dist/clip-runtime/browser-profile-manager.js +38 -26
- package/dist/clip-runtime/browser-state-store.d.ts +157 -0
- package/dist/clip-runtime/browser-state-store.d.ts.map +1 -0
- package/dist/clip-runtime/browser-state-store.js +370 -0
- package/dist/clip-runtime/browser-viewer-streamer.d.ts +222 -0
- package/dist/clip-runtime/browser-viewer-streamer.d.ts.map +1 -0
- package/dist/clip-runtime/browser-viewer-streamer.js +691 -0
- package/dist/clip-runtime/clip-provider.d.ts +56 -0
- package/dist/clip-runtime/clip-provider.d.ts.map +1 -1
- package/dist/clip-runtime/clip-provider.js +141 -17
- package/dist/clip-runtime/subprocess.d.ts +11 -0
- package/dist/clip-runtime/subprocess.d.ts.map +1 -0
- package/dist/clip-runtime/subprocess.js +33 -0
- package/dist/supervisor.d.ts +10 -2
- package/dist/supervisor.d.ts.map +1 -1
- package/dist/supervisor.js +61 -19
- package/package.json +11 -8
package/bundle/manifest.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
|
-
"version": "1.
|
|
3
|
-
"built_at": "2026-06-
|
|
2
|
+
"version": "1.36.0",
|
|
3
|
+
"built_at": "2026-06-25T07:09:21.712Z",
|
|
4
4
|
"min_node_version": "20.0.0",
|
|
5
5
|
"files": {
|
|
6
6
|
"bb-browser-daemon.js": {
|
|
@@ -15,22 +15,26 @@
|
|
|
15
15
|
"sha256": "1239d4d885dcad42201a27ed9324f8f0f760b78700d8db9ced39a511cffe7eae",
|
|
16
16
|
"size": 18
|
|
17
17
|
},
|
|
18
|
+
"parall-browser-pod.js": {
|
|
19
|
+
"sha256": "7c0bded4f1699cac24ed1e055bc1b41460069cb8dc0a3fcdd610e542ecfbd0d4",
|
|
20
|
+
"size": 1679190
|
|
21
|
+
},
|
|
18
22
|
"parall-claude-agent.js": {
|
|
19
|
-
"sha256": "
|
|
20
|
-
"size":
|
|
23
|
+
"sha256": "d24517c2d6e91d65d8e2c90ad116499763cba190836e9bee6220076b6bb09d5d",
|
|
24
|
+
"size": 1571389
|
|
21
25
|
},
|
|
22
26
|
"parall-codex-agent.js": {
|
|
23
|
-
"sha256": "
|
|
24
|
-
"size":
|
|
27
|
+
"sha256": "57e50e1dadb169b1f743fff12b2a6302dd5c9d02577d0b6c19fc47c3869e23f2",
|
|
28
|
+
"size": 1602399
|
|
25
29
|
},
|
|
26
30
|
"parall-daemon.js": {
|
|
27
|
-
"sha256": "
|
|
28
|
-
"size":
|
|
31
|
+
"sha256": "42f1583a6c5a361e0f86705adf5cda5e89cfd72df55ee63a621f0ab8cd46623f",
|
|
32
|
+
"size": 1610683
|
|
29
33
|
},
|
|
30
34
|
"parall-openclaw-agent.js": {
|
|
31
35
|
"sha256": "505433b4bf3a4b8dbb7b96978d8693d6c48079f4513282ff1ee59a6d13b3eddf",
|
|
32
36
|
"size": 9801
|
|
33
37
|
}
|
|
34
38
|
},
|
|
35
|
-
"signature": "
|
|
39
|
+
"signature": "HdvsMI5dEwkWkLrfqo1yVMKDjqo55tnhwdWgx0XRv4jQrDDVLWJXeVslKFj7DMkBXYIRMGp3xNmK5WIUfrIuBQ=="
|
|
36
40
|
}
|