@inkeep/agents-core 0.48.1 → 0.48.3
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/auth/auth-validation-schemas.d.ts +17 -17
- package/dist/auth/auth.d.ts +53 -53
- package/dist/auth/permissions.d.ts +13 -13
- package/dist/data-access/manage/skills.d.ts +1 -1
- package/dist/data-access/manage/triggers.d.ts +2 -2
- package/dist/data-access/runtime/conversations.d.ts +11 -11
- package/dist/data-access/runtime/messages.d.ts +9 -9
- package/dist/data-access/runtime/scheduledTriggerInvocations.d.ts +3 -3
- package/dist/data-access/runtime/tasks.d.ts +4 -4
- package/dist/db/manage/manage-schema.d.ts +449 -449
- package/dist/db/runtime/runtime-schema.d.ts +296 -296
- package/dist/index.d.ts +3 -2
- package/dist/index.js +3 -2
- package/dist/types/@vercel__functions/index.d.ts +11 -0
- package/dist/utils/index.d.ts +3 -2
- package/dist/utils/index.js +3 -2
- package/dist/utils/tracer-factory.d.ts +13 -1
- package/dist/utils/tracer-factory.js +21 -1
- package/dist/utils/wait-until.d.ts +22 -0
- package/dist/utils/wait-until.js +40 -0
- package/dist/validation/dolt-schemas.d.ts +1 -1
- package/dist/validation/drizzle-schema-helpers.d.ts +3 -3
- package/dist/validation/schemas.d.ts +352 -352
- package/package.json +6 -5
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@inkeep/agents-core",
|
|
3
|
-
"version": "0.48.
|
|
3
|
+
"version": "0.48.3",
|
|
4
4
|
"description": "Agents Core contains the database schema, types, and validation schemas for Inkeep Agent Framework, along with core components.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"license": "SEE LICENSE IN LICENSE.md",
|
|
@@ -112,8 +112,10 @@
|
|
|
112
112
|
"@modelcontextprotocol/sdk": "^1.17.2",
|
|
113
113
|
"@nangohq/node": "^0.69.5",
|
|
114
114
|
"@nangohq/types": "^0.69.5",
|
|
115
|
-
"@
|
|
115
|
+
"@napi-rs/keyring": "^1.2.0",
|
|
116
|
+
"@openrouter/ai-sdk-provider": "^2.1.0",
|
|
116
117
|
"@opentelemetry/api": "^1.9.0",
|
|
118
|
+
"@vercel/functions": "^1.6.0",
|
|
117
119
|
"ai": "6.0.14",
|
|
118
120
|
"ajv": "^8.17.1",
|
|
119
121
|
"better-auth": "~1.4.10",
|
|
@@ -134,8 +136,7 @@
|
|
|
134
136
|
"pino-pretty": "^13.1.1",
|
|
135
137
|
"postgres": "^3.4.8",
|
|
136
138
|
"traverse": "^0.6.10",
|
|
137
|
-
"ts-pattern": "^5.7.1"
|
|
138
|
-
"@napi-rs/keyring": "^1.2.0"
|
|
139
|
+
"ts-pattern": "^5.7.1"
|
|
139
140
|
},
|
|
140
141
|
"peerDependencies": {
|
|
141
142
|
"@hono/zod-openapi": "^1.1.5",
|
|
@@ -183,7 +184,7 @@
|
|
|
183
184
|
"directory": "packages/agents-core"
|
|
184
185
|
},
|
|
185
186
|
"scripts": {
|
|
186
|
-
"knip": "knip --directory ../.. --workspace packages/agents-core --dependencies",
|
|
187
|
+
"knip": "knip --directory ../.. --workspace packages/agents-core --config packages/agents-core/knip.config.ts --dependencies",
|
|
187
188
|
"build": "tsdown",
|
|
188
189
|
"dev": "pnpm build --watch",
|
|
189
190
|
"test": "vitest --run",
|