@jamiexiongr/panda-hub 0.1.7 → 0.1.8
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/dist/chunk-AEQMWH7D.mjs +4076 -0
- package/dist/{chunk-JBN6ZR6W.mjs → chunk-WFHIGEWQ.mjs} +11476 -24350
- package/dist/{chunk-D2AAEM52.mjs → chunk-YPDN7Z3X.mjs} +4 -3
- package/dist/cli.mjs +3 -2
- package/dist/hub-web-push-KM4VOXLQ.mjs +157 -0
- package/dist/index.mjs +3 -2
- package/dist/src-MV7FXZYF.mjs +1375 -0
- package/package.json +3 -2
- package/dist/src-J33JUYSS.mjs +0 -92
package/package.json
CHANGED
|
@@ -1,13 +1,14 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@jamiexiongr/panda-hub",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.8",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"private": false,
|
|
6
6
|
"description": "Panda hub runtime",
|
|
7
7
|
"dependencies": {
|
|
8
8
|
"@fastify/cors": "^10.0.2",
|
|
9
9
|
"@fastify/websocket": "^11.0.2",
|
|
10
|
-
"fastify": "^5.2.1"
|
|
10
|
+
"fastify": "^5.2.1",
|
|
11
|
+
"web-push": "^3.6.7"
|
|
11
12
|
},
|
|
12
13
|
"bin": {
|
|
13
14
|
"panda-hub": "./bin/panda-hub.cjs"
|
package/dist/src-J33JUYSS.mjs
DELETED
|
@@ -1,92 +0,0 @@
|
|
|
1
|
-
import {
|
|
2
|
-
CodexAdapter,
|
|
3
|
-
appendSessionIndexUpdate,
|
|
4
|
-
buildTailscaleHttpsUrl,
|
|
5
|
-
configureTailscaleServe,
|
|
6
|
-
createCodexLiveSessionStream,
|
|
7
|
-
createCodexRolloutMonitor,
|
|
8
|
-
deleteRolloutFile,
|
|
9
|
-
discoverLocalCodexData,
|
|
10
|
-
ensurePandaHubApiKey,
|
|
11
|
-
getOrderedWorkspaceRoots,
|
|
12
|
-
getPandaHubApiKeyFilePath,
|
|
13
|
-
getPinnedSessionIds,
|
|
14
|
-
getPinnedWorkspaceRoots,
|
|
15
|
-
getSavedWorkspaceRoots,
|
|
16
|
-
getWorkspaceRootLabels,
|
|
17
|
-
isTailscaleRunning,
|
|
18
|
-
isWithinWorkspaceRoot,
|
|
19
|
-
moveRolloutFileFromArchived,
|
|
20
|
-
moveRolloutFileToArchived,
|
|
21
|
-
normalizeWorkspacePathKey,
|
|
22
|
-
printTerminalQr,
|
|
23
|
-
readCodexGlobalState,
|
|
24
|
-
readCodexTimeline,
|
|
25
|
-
readCodexTimelineDetails,
|
|
26
|
-
readPandaSessionPrefs,
|
|
27
|
-
readPandaThreadPrefs,
|
|
28
|
-
readTailscaleStatus,
|
|
29
|
-
resolveAgentNetworkIdentity,
|
|
30
|
-
resolveCliOptionValue,
|
|
31
|
-
resolvePandaHubApiKey,
|
|
32
|
-
resolveTailscalePublicationMode,
|
|
33
|
-
resolveTailscaleServeEnabled,
|
|
34
|
-
resolveTailscaleServePort,
|
|
35
|
-
setSessionPinned,
|
|
36
|
-
setWorkspaceRootLabel,
|
|
37
|
-
setWorkspaceRootOrder,
|
|
38
|
-
setWorkspaceRootPinned,
|
|
39
|
-
setWorkspaceRootVisibility,
|
|
40
|
-
sortByStoredWorkspaceOrder,
|
|
41
|
-
startAgentHubSync,
|
|
42
|
-
startPandaSessionService,
|
|
43
|
-
writeCodexGlobalState,
|
|
44
|
-
writePandaSessionPrefs,
|
|
45
|
-
writePandaThreadPrefs
|
|
46
|
-
} from "./chunk-JBN6ZR6W.mjs";
|
|
47
|
-
export {
|
|
48
|
-
CodexAdapter,
|
|
49
|
-
appendSessionIndexUpdate,
|
|
50
|
-
buildTailscaleHttpsUrl,
|
|
51
|
-
configureTailscaleServe,
|
|
52
|
-
createCodexLiveSessionStream,
|
|
53
|
-
createCodexRolloutMonitor,
|
|
54
|
-
deleteRolloutFile,
|
|
55
|
-
discoverLocalCodexData,
|
|
56
|
-
ensurePandaHubApiKey,
|
|
57
|
-
getOrderedWorkspaceRoots,
|
|
58
|
-
getPandaHubApiKeyFilePath,
|
|
59
|
-
getPinnedSessionIds,
|
|
60
|
-
getPinnedWorkspaceRoots,
|
|
61
|
-
getSavedWorkspaceRoots,
|
|
62
|
-
getWorkspaceRootLabels,
|
|
63
|
-
isTailscaleRunning,
|
|
64
|
-
isWithinWorkspaceRoot,
|
|
65
|
-
moveRolloutFileFromArchived,
|
|
66
|
-
moveRolloutFileToArchived,
|
|
67
|
-
normalizeWorkspacePathKey,
|
|
68
|
-
printTerminalQr,
|
|
69
|
-
readCodexGlobalState,
|
|
70
|
-
readCodexTimeline,
|
|
71
|
-
readCodexTimelineDetails,
|
|
72
|
-
readPandaSessionPrefs,
|
|
73
|
-
readPandaThreadPrefs,
|
|
74
|
-
readTailscaleStatus,
|
|
75
|
-
resolveAgentNetworkIdentity,
|
|
76
|
-
resolveCliOptionValue,
|
|
77
|
-
resolvePandaHubApiKey,
|
|
78
|
-
resolveTailscalePublicationMode,
|
|
79
|
-
resolveTailscaleServeEnabled,
|
|
80
|
-
resolveTailscaleServePort,
|
|
81
|
-
setSessionPinned,
|
|
82
|
-
setWorkspaceRootLabel,
|
|
83
|
-
setWorkspaceRootOrder,
|
|
84
|
-
setWorkspaceRootPinned,
|
|
85
|
-
setWorkspaceRootVisibility,
|
|
86
|
-
sortByStoredWorkspaceOrder,
|
|
87
|
-
startAgentHubSync,
|
|
88
|
-
startPandaSessionService,
|
|
89
|
-
writeCodexGlobalState,
|
|
90
|
-
writePandaSessionPrefs,
|
|
91
|
-
writePandaThreadPrefs
|
|
92
|
-
};
|