@tangle-network/create-agent-app 0.45.62 → 0.45.64
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
CHANGED
package/template/_package.json
CHANGED
|
@@ -19,16 +19,16 @@
|
|
|
19
19
|
"@tangle-network/agent-app": "__AGENT_APP_VERSION__"
|
|
20
20
|
},
|
|
21
21
|
"peerDependencies": {
|
|
22
|
-
"@tangle-network/agent-eval": "0.
|
|
22
|
+
"@tangle-network/agent-eval": "0.148.0",
|
|
23
23
|
"@tangle-network/agent-integrations": ">=0.52.0",
|
|
24
|
-
"@tangle-network/agent-interface": "1.
|
|
25
|
-
"@tangle-network/agent-runtime": "0.
|
|
24
|
+
"@tangle-network/agent-interface": "1.1.0",
|
|
25
|
+
"@tangle-network/agent-runtime": "0.141.1"
|
|
26
26
|
},
|
|
27
27
|
"devDependencies": {
|
|
28
|
-
"@tangle-network/agent-eval": "0.
|
|
28
|
+
"@tangle-network/agent-eval": "0.148.0",
|
|
29
29
|
"@tangle-network/agent-integrations": "0.53.54",
|
|
30
|
-
"@tangle-network/agent-interface": "1.
|
|
31
|
-
"@tangle-network/agent-runtime": "0.
|
|
30
|
+
"@tangle-network/agent-interface": "1.1.0",
|
|
31
|
+
"@tangle-network/agent-runtime": "0.141.1",
|
|
32
32
|
"@types/node": "^22.20.1",
|
|
33
33
|
"typescript": "^7.0.2",
|
|
34
34
|
"vitest": "^4.1.10",
|
|
@@ -18,19 +18,19 @@
|
|
|
18
18
|
},
|
|
19
19
|
"dependencies": {
|
|
20
20
|
"@tangle-network/agent-app": "__AGENT_APP_VERSION__",
|
|
21
|
-
"@tangle-network/agent-interface": "1.
|
|
22
|
-
"@tangle-network/agent-runtime": "0.
|
|
23
|
-
"@tangle-network/sandbox": "0.27.
|
|
21
|
+
"@tangle-network/agent-interface": "1.1.0",
|
|
22
|
+
"@tangle-network/agent-runtime": "0.141.1",
|
|
23
|
+
"@tangle-network/sandbox": "0.27.2",
|
|
24
24
|
"better-auth": "^1.6.16",
|
|
25
25
|
"drizzle-orm": "^0.45.2"
|
|
26
26
|
},
|
|
27
27
|
"peerDependencies": {
|
|
28
|
-
"@tangle-network/agent-eval": "0.
|
|
28
|
+
"@tangle-network/agent-eval": "0.148.0",
|
|
29
29
|
"@tangle-network/agent-integrations": ">=0.52.0"
|
|
30
30
|
},
|
|
31
31
|
"devDependencies": {
|
|
32
32
|
"@cloudflare/workers-types": "^5.20260801.1",
|
|
33
|
-
"@tangle-network/agent-eval": "0.
|
|
33
|
+
"@tangle-network/agent-eval": "0.148.0",
|
|
34
34
|
"@tangle-network/agent-integrations": "0.53.54",
|
|
35
35
|
"@types/better-sqlite3": "^7.6.13",
|
|
36
36
|
"@types/node": "^22.20.1",
|
|
@@ -31,6 +31,8 @@ CREATE TABLE IF NOT EXISTS sessions (
|
|
|
31
31
|
|
|
32
32
|
CREATE TABLE IF NOT EXISTS accounts (
|
|
33
33
|
id TEXT PRIMARY KEY,
|
|
34
|
+
-- better-auth 1.7's drizzle adapter requires this column (1.6 predates it).
|
|
35
|
+
issuer TEXT,
|
|
34
36
|
account_id TEXT NOT NULL,
|
|
35
37
|
provider_id TEXT NOT NULL,
|
|
36
38
|
user_id TEXT NOT NULL,
|
|
@@ -42,6 +42,8 @@ export const sessions = sqliteTable('sessions', {
|
|
|
42
42
|
|
|
43
43
|
export const accounts = sqliteTable('accounts', {
|
|
44
44
|
id: text('id').primaryKey(),
|
|
45
|
+
// better-auth 1.7's drizzle adapter requires this column (1.6 predates it).
|
|
46
|
+
issuer: text('issuer'),
|
|
45
47
|
accountId: text('account_id').notNull(),
|
|
46
48
|
providerId: text('provider_id').notNull(),
|
|
47
49
|
userId: text('user_id').notNull(),
|