@inkeep/agents-core 0.0.0-dev-20260406183632 → 0.0.0-dev-20260406200043
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 +108 -108
- package/dist/auth/auth-validation-schemas.d.ts +17 -17
- package/dist/auth/auth.d.ts +6 -6
- package/dist/auth/permissions.d.ts +13 -13
- package/dist/client-exports.d.ts +2 -2
- package/dist/client-exports.js +2 -2
- package/dist/data-access/manage/functionTools.d.ts +2 -2
- package/dist/data-access/manage/skills.d.ts +1 -1
- package/dist/data-access/manage/subAgentExternalAgentRelations.d.ts +6 -6
- package/dist/data-access/manage/subAgentRelations.d.ts +10 -10
- package/dist/data-access/manage/subAgentTeamAgentRelations.d.ts +6 -6
- package/dist/data-access/manage/tools.d.ts +6 -6
- package/dist/data-access/manage/triggers.d.ts +4 -4
- package/dist/data-access/runtime/apps.d.ts +10 -10
- package/dist/data-access/runtime/feedback.d.ts +2 -2
- package/dist/data-access/runtime/messages.d.ts +3 -3
- package/dist/data-access/runtime/scheduledTriggerInvocations.d.ts +4 -4
- package/dist/db/manage/dolt-safe-jsonb.d.ts +2 -2
- package/dist/db/manage/manage-schema.d.ts +453 -453
- package/dist/db/runtime/runtime-schema.d.ts +407 -407
- package/dist/index.d.ts +2 -2
- package/dist/index.js +2 -2
- package/dist/middleware/no-auth.d.ts +2 -2
- package/dist/validation/drizzle-schema-helpers.d.ts +3 -3
- package/dist/validation/index.d.ts +2 -2
- package/dist/validation/index.js +2 -2
- package/dist/validation/schemas/shared.d.ts +3 -1
- package/dist/validation/schemas/shared.js +6 -1
- package/dist/validation/schemas/skills.d.ts +25 -25
- package/dist/validation/schemas.d.ts +1551 -1551
- package/dist/validation/schemas.js +5 -4
- package/package.json +1 -1
|
@@ -4,7 +4,7 @@ import { apiKeys, apps, contextCache, conversations, datasetRun, datasetRunConve
|
|
|
4
4
|
import { CredentialStoreType, MCPServerType, MCPTransportType, TOOL_STATUS_VALUES, VALID_RELATION_TYPES } from "../types/utility.js";
|
|
5
5
|
import { jmespathString, validateJMESPathSecure, validateRegex } from "../utils/jmespath-utils.js";
|
|
6
6
|
import { ResolvedRefSchema } from "./dolt-schemas.js";
|
|
7
|
-
import { PaginationQueryParamsSchema, PaginationSchema, ResourceIdSchema, StringRecordSchema, createAgentScopedApiInsertSchema, createAgentScopedApiSchema, createAgentScopedApiUpdateSchema, createApiInsertSchema, createApiSchema, createApiUpdateSchema, omitGeneratedFields, omitTenantScope, omitTimestamps } from "./schemas/shared.js";
|
|
7
|
+
import { PaginationQueryParamsSchema, PaginationSchema, ProjectResourceIdSchema, ResourceIdSchema, StringRecordSchema, createAgentScopedApiInsertSchema, createAgentScopedApiSchema, createAgentScopedApiUpdateSchema, createApiInsertSchema, createApiSchema, createApiUpdateSchema, omitGeneratedFields, omitTenantScope, omitTimestamps } from "./schemas/shared.js";
|
|
8
8
|
import { createInsertSchema, createSelectSchema, registerFieldSchemas } from "./drizzle-schema-helpers.js";
|
|
9
9
|
import { ArtifactComponentExtendSchema, DataComponentExtendSchema, DescriptionSchema, NameSchema } from "./extend-schemas.js";
|
|
10
10
|
import { SkillApiInsertSchema, SkillIndexSchema } from "./schemas/skills.js";
|
|
@@ -1328,6 +1328,7 @@ const ProjectSelectSchema = registerFieldSchemas(createSelectSchema(projects).ex
|
|
|
1328
1328
|
stopWhen: StopWhenSchema.nullable()
|
|
1329
1329
|
}));
|
|
1330
1330
|
const ProjectInsertSchema = createInsertSchema(projects).extend({
|
|
1331
|
+
id: ProjectResourceIdSchema,
|
|
1331
1332
|
models: ProjectModelSchema,
|
|
1332
1333
|
stopWhen: StopWhenSchema.optional()
|
|
1333
1334
|
}).omit({
|
|
@@ -1568,7 +1569,7 @@ const HeadersScopeSchema = z.object({
|
|
|
1568
1569
|
}),
|
|
1569
1570
|
"x-inkeep-project-id": z.string().optional().openapi({
|
|
1570
1571
|
description: "Project identifier",
|
|
1571
|
-
example: "
|
|
1572
|
+
example: "project-456"
|
|
1572
1573
|
}),
|
|
1573
1574
|
"x-inkeep-agent-id": z.string().optional().openapi({
|
|
1574
1575
|
description: "Agent identifier",
|
|
@@ -1583,13 +1584,13 @@ const TenantId = z.string().openapi("TenantIdPathParam", {
|
|
|
1583
1584
|
description: "Tenant identifier",
|
|
1584
1585
|
example: "tenant_123"
|
|
1585
1586
|
});
|
|
1586
|
-
const ProjectId =
|
|
1587
|
+
const ProjectId = ProjectResourceIdSchema.openapi("ProjectIdPathParam", {
|
|
1587
1588
|
param: {
|
|
1588
1589
|
name: "projectId",
|
|
1589
1590
|
in: "path"
|
|
1590
1591
|
},
|
|
1591
1592
|
description: "Project identifier",
|
|
1592
|
-
example: "
|
|
1593
|
+
example: "project-456"
|
|
1593
1594
|
});
|
|
1594
1595
|
const AgentId = z.string().openapi("AgentIdPathParam", {
|
|
1595
1596
|
param: {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@inkeep/agents-core",
|
|
3
|
-
"version": "0.0.0-dev-
|
|
3
|
+
"version": "0.0.0-dev-20260406200043",
|
|
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",
|