@inkeep/agents-core 0.41.1 → 0.41.2
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-schema.d.ts +104 -104
- package/dist/auth/auth-validation-schemas.d.ts +146 -146
- package/dist/auth/auth.d.ts +46 -18
- package/dist/auth/auth.js +17 -1
- package/dist/auth/permissions.d.ts +9 -9
- package/dist/data-access/agents.d.ts +21 -21
- package/dist/data-access/apiKeys.d.ts +16 -16
- package/dist/data-access/artifactComponents.d.ts +10 -10
- package/dist/data-access/contextConfigs.d.ts +12 -12
- package/dist/data-access/conversations.d.ts +16 -16
- package/dist/data-access/dataComponents.d.ts +4 -4
- package/dist/data-access/functionTools.d.ts +8 -8
- package/dist/data-access/messages.d.ts +12 -12
- package/dist/data-access/subAgentExternalAgentRelations.d.ts +24 -24
- package/dist/data-access/subAgentRelations.d.ts +28 -28
- package/dist/data-access/subAgentTeamAgentRelations.d.ts +24 -24
- package/dist/data-access/subAgents.d.ts +15 -15
- package/dist/data-access/tasks.d.ts +4 -4
- package/dist/data-access/tools.d.ts +33 -33
- package/dist/db/schema.d.ts +405 -405
- package/dist/validation/drizzle-schema-helpers.d.ts +3 -3
- package/dist/validation/schemas.d.ts +822 -822
- package/package.json +2 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@inkeep/agents-core",
|
|
3
|
-
"version": "0.41.
|
|
3
|
+
"version": "0.41.2",
|
|
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",
|
|
@@ -152,6 +152,7 @@
|
|
|
152
152
|
"scripts": {
|
|
153
153
|
"knip": "knip --directory ../.. --workspace packages/agents-core --dependencies",
|
|
154
154
|
"build": "tsdown",
|
|
155
|
+
"dev": "pnpm build --watch",
|
|
155
156
|
"test": "vitest --run",
|
|
156
157
|
"test:unit": "vitest --run src/__tests__ --exclude src/__tests__/integration/**",
|
|
157
158
|
"test:integration": "vitest --run src/__tests__/integration/",
|