@agent-team-foundation/first-tree-hub 0.2.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/dist/cli/index.mjs +636 -0
- package/dist/core-CD3xEbyB.mjs +27914 -0
- package/dist/drizzle/0000_shocking_darkhawk.sql +92 -0
- package/dist/drizzle/0001_v2_schema_updates.sql +26 -0
- package/dist/drizzle/0002_adapter_tables.sql +64 -0
- package/dist/drizzle/0003_feishu_adapter.sql +21 -0
- package/dist/drizzle/0004_adapter_refactor.sql +13 -0
- package/dist/drizzle/0005_delegate_mention.sql +1 -0
- package/dist/drizzle/meta/0000_snapshot.json +687 -0
- package/dist/drizzle/meta/0001_snapshot.json +687 -0
- package/dist/drizzle/meta/_journal.json +48 -0
- package/dist/index.mjs +2 -0
- package/dist/web/assets/index-CHZINY3I.js +229 -0
- package/dist/web/assets/index-Drt799Rs.css +1 -0
- package/dist/web/favicon.svg +21 -0
- package/dist/web/index.html +14 -0
- package/package.json +64 -0
|
@@ -0,0 +1,48 @@
|
|
|
1
|
+
{
|
|
2
|
+
"version": "7",
|
|
3
|
+
"dialect": "postgresql",
|
|
4
|
+
"entries": [
|
|
5
|
+
{
|
|
6
|
+
"idx": 0,
|
|
7
|
+
"version": "7",
|
|
8
|
+
"when": 1774010814105,
|
|
9
|
+
"tag": "0000_shocking_darkhawk",
|
|
10
|
+
"breakpoints": true
|
|
11
|
+
},
|
|
12
|
+
{
|
|
13
|
+
"idx": 1,
|
|
14
|
+
"version": "7",
|
|
15
|
+
"when": 1774060655637,
|
|
16
|
+
"tag": "0001_v2_schema_updates",
|
|
17
|
+
"breakpoints": true
|
|
18
|
+
},
|
|
19
|
+
{
|
|
20
|
+
"idx": 2,
|
|
21
|
+
"version": "7",
|
|
22
|
+
"when": 1774489200000,
|
|
23
|
+
"tag": "0002_adapter_tables",
|
|
24
|
+
"breakpoints": true
|
|
25
|
+
},
|
|
26
|
+
{
|
|
27
|
+
"idx": 3,
|
|
28
|
+
"version": "7",
|
|
29
|
+
"when": 1774531200000,
|
|
30
|
+
"tag": "0003_feishu_adapter",
|
|
31
|
+
"breakpoints": true
|
|
32
|
+
},
|
|
33
|
+
{
|
|
34
|
+
"idx": 4,
|
|
35
|
+
"version": "7",
|
|
36
|
+
"when": 1774972800000,
|
|
37
|
+
"tag": "0004_adapter_refactor",
|
|
38
|
+
"breakpoints": true
|
|
39
|
+
},
|
|
40
|
+
{
|
|
41
|
+
"idx": 5,
|
|
42
|
+
"version": "7",
|
|
43
|
+
"when": 1774972900000,
|
|
44
|
+
"tag": "0005_delegate_mention",
|
|
45
|
+
"breakpoints": true
|
|
46
|
+
}
|
|
47
|
+
]
|
|
48
|
+
}
|
package/dist/index.mjs
ADDED
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
import { C as stopPostgres, D as FirstTreeHubSDK, M as createAdminUser, N as hasAdminUser, O as SdkError, S as isDockerAvailable, _ as checkWebSocket, a as runMigrations, b as status, c as checkClientConfig, d as checkDocker, f as checkGitHubToken, g as checkServerReachable, h as checkServerHealth, i as promptMissingFields, l as checkContextTreeRepo, m as checkServerConfig, n as isInteractive, o as checkAgentConfigs, p as checkNodeVersion, r as promptAddAgent, s as checkAgentTokens, t as startServer, u as checkDatabase, v as printResults, w as ClientRuntime, x as ensurePostgres, y as blank } from "./core-CD3xEbyB.mjs";
|
|
2
|
+
export { ClientRuntime, FirstTreeHubSDK, SdkError, blank, checkAgentConfigs, checkAgentTokens, checkClientConfig, checkContextTreeRepo, checkDatabase, checkDocker, checkGitHubToken, checkNodeVersion, checkServerConfig, checkServerHealth, checkServerReachable, checkWebSocket, createAdminUser, ensurePostgres, hasAdminUser, isDockerAvailable, isInteractive, printResults, promptAddAgent, promptMissingFields, runMigrations, startServer, status, stopPostgres };
|