@inkeep/agents-core 0.0.0-dev-20250919020857 → 0.0.0-dev-20250919131621
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/{chunk-BAPMUHVN.js → chunk-IIW7VAP3.js} +20 -12
- package/dist/{chunk-MXQKLGQK.js → chunk-LFWFXR4O.js} +123 -82
- package/dist/{chunk-KNC2AOJM.js → chunk-ZORVFHVU.js} +76 -29
- package/dist/client-exports.cjs +195 -111
- package/dist/client-exports.js +4 -5
- package/dist/db/schema.cjs +121 -80
- package/dist/db/schema.js +1 -1
- package/dist/index.cjs +529 -598
- package/dist/index.js +318 -485
- package/dist/validation/index.cjs +213 -118
- package/dist/validation/index.js +2 -2
- package/package.json +1 -1
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { agents, agentRelations, agentGraph, tasks, taskRelations, tools, conversations, messages, contextCache, dataComponents, agentDataComponents, artifactComponents, agentArtifactComponents, externalAgents, apiKeys, contextConfigs, agentToolRelations, ledgerArtifacts, projects } from './chunk-
|
|
1
|
+
import { agents, agentRelations, agentGraph, tasks, taskRelations, tools, conversations, messages, contextCache, dataComponents, agentDataComponents, artifactComponents, agentArtifactComponents, externalAgents, apiKeys, credentialReferences, contextConfigs, agentToolRelations, ledgerArtifacts, projects } from './chunk-LFWFXR4O.js';
|
|
2
2
|
import { VALID_RELATION_TYPES, MCPTransportType, TOOL_STATUS_VALUES, CredentialStoreType, MCPServerType } from './chunk-SVGQSPW4.js';
|
|
3
3
|
import { z } from '@hono/zod-openapi';
|
|
4
4
|
import { createSelectSchema, createInsertSchema } from 'drizzle-zod';
|
|
@@ -35,15 +35,18 @@ var ProjectModelSchema = z.object({
|
|
|
35
35
|
var createApiSchema = (schema) => schema.omit({ tenantId: true, projectId: true });
|
|
36
36
|
var createApiInsertSchema = (schema) => schema.omit({ tenantId: true, projectId: true });
|
|
37
37
|
var createApiUpdateSchema = (schema) => schema.omit({ tenantId: true, projectId: true }).partial();
|
|
38
|
+
var createGraphScopedApiSchema = (schema) => schema.omit({ tenantId: true, projectId: true, graphId: true });
|
|
39
|
+
var createGraphScopedApiInsertSchema = (schema) => schema.omit({ tenantId: true, projectId: true, graphId: true });
|
|
40
|
+
var createGraphScopedApiUpdateSchema = (schema) => schema.omit({ tenantId: true, projectId: true, graphId: true }).partial();
|
|
38
41
|
var AgentSelectSchema = createSelectSchema(agents);
|
|
39
42
|
var AgentInsertSchema = createInsertSchema(agents).extend({
|
|
40
43
|
id: resourceIdSchema,
|
|
41
44
|
models: ModelSchema.optional()
|
|
42
45
|
});
|
|
43
46
|
var AgentUpdateSchema = AgentInsertSchema.partial();
|
|
44
|
-
var AgentApiSelectSchema =
|
|
45
|
-
var AgentApiInsertSchema =
|
|
46
|
-
var AgentApiUpdateSchema =
|
|
47
|
+
var AgentApiSelectSchema = createGraphScopedApiSchema(AgentSelectSchema);
|
|
48
|
+
var AgentApiInsertSchema = createGraphScopedApiInsertSchema(AgentInsertSchema);
|
|
49
|
+
var AgentApiUpdateSchema = createGraphScopedApiUpdateSchema(AgentUpdateSchema);
|
|
47
50
|
var AgentRelationSelectSchema = createSelectSchema(agentRelations);
|
|
48
51
|
var AgentRelationInsertSchema = createInsertSchema(agentRelations).extend({
|
|
49
52
|
id: resourceIdSchema,
|
|
@@ -53,8 +56,10 @@ var AgentRelationInsertSchema = createInsertSchema(agentRelations).extend({
|
|
|
53
56
|
externalAgentId: resourceIdSchema.optional()
|
|
54
57
|
});
|
|
55
58
|
var AgentRelationUpdateSchema = AgentRelationInsertSchema.partial();
|
|
56
|
-
var AgentRelationApiSelectSchema =
|
|
57
|
-
var AgentRelationApiInsertSchema =
|
|
59
|
+
var AgentRelationApiSelectSchema = createGraphScopedApiSchema(AgentRelationSelectSchema);
|
|
60
|
+
var AgentRelationApiInsertSchema = createGraphScopedApiInsertSchema(
|
|
61
|
+
AgentRelationInsertSchema
|
|
62
|
+
).extend({
|
|
58
63
|
relationType: z.enum(VALID_RELATION_TYPES)
|
|
59
64
|
}).refine(
|
|
60
65
|
(data) => {
|
|
@@ -67,7 +72,9 @@ var AgentRelationApiInsertSchema = createApiInsertSchema(AgentRelationInsertSche
|
|
|
67
72
|
path: ["targetAgentId", "externalAgentId"]
|
|
68
73
|
}
|
|
69
74
|
);
|
|
70
|
-
var AgentRelationApiUpdateSchema =
|
|
75
|
+
var AgentRelationApiUpdateSchema = createGraphScopedApiUpdateSchema(
|
|
76
|
+
AgentRelationUpdateSchema
|
|
77
|
+
).extend({
|
|
71
78
|
relationType: z.enum(VALID_RELATION_TYPES).optional()
|
|
72
79
|
}).refine(
|
|
73
80
|
(data) => {
|
|
@@ -104,7 +111,7 @@ var AgentGraphInsertSchema = createInsertSchema(agentGraph).extend({
|
|
|
104
111
|
var AgentGraphUpdateSchema = AgentGraphInsertSchema.partial();
|
|
105
112
|
var AgentGraphApiSelectSchema = createApiSchema(AgentGraphSelectSchema);
|
|
106
113
|
var AgentGraphApiInsertSchema = createApiInsertSchema(AgentGraphInsertSchema).extend({
|
|
107
|
-
id: resourceIdSchema
|
|
114
|
+
id: resourceIdSchema
|
|
108
115
|
});
|
|
109
116
|
var AgentGraphApiUpdateSchema = createApiUpdateSchema(AgentGraphUpdateSchema);
|
|
110
117
|
var TaskSelectSchema = createSelectSchema(tasks);
|
|
@@ -203,11 +210,16 @@ var DataComponentApiUpdateSchema = createApiUpdateSchema(DataComponentUpdateSche
|
|
|
203
210
|
var AgentDataComponentSelectSchema = createSelectSchema(agentDataComponents);
|
|
204
211
|
var AgentDataComponentInsertSchema = createInsertSchema(agentDataComponents);
|
|
205
212
|
var AgentDataComponentUpdateSchema = AgentDataComponentInsertSchema.partial();
|
|
206
|
-
var AgentDataComponentApiSelectSchema =
|
|
207
|
-
|
|
208
|
-
AgentDataComponentInsertSchema
|
|
213
|
+
var AgentDataComponentApiSelectSchema = createGraphScopedApiSchema(
|
|
214
|
+
AgentDataComponentSelectSchema
|
|
209
215
|
);
|
|
210
|
-
var
|
|
216
|
+
var AgentDataComponentApiInsertSchema = AgentDataComponentInsertSchema.omit({
|
|
217
|
+
tenantId: true,
|
|
218
|
+
projectId: true,
|
|
219
|
+
id: true,
|
|
220
|
+
createdAt: true
|
|
221
|
+
});
|
|
222
|
+
var AgentDataComponentApiUpdateSchema = createGraphScopedApiUpdateSchema(
|
|
211
223
|
AgentDataComponentUpdateSchema
|
|
212
224
|
);
|
|
213
225
|
var ArtifactComponentSelectSchema = createSelectSchema(artifactComponents);
|
|
@@ -236,7 +248,7 @@ var AgentArtifactComponentInsertSchema = createInsertSchema(
|
|
|
236
248
|
artifactComponentId: resourceIdSchema
|
|
237
249
|
});
|
|
238
250
|
var AgentArtifactComponentUpdateSchema = AgentArtifactComponentInsertSchema.partial();
|
|
239
|
-
var AgentArtifactComponentApiSelectSchema =
|
|
251
|
+
var AgentArtifactComponentApiSelectSchema = createGraphScopedApiSchema(
|
|
240
252
|
AgentArtifactComponentSelectSchema
|
|
241
253
|
);
|
|
242
254
|
var AgentArtifactComponentApiInsertSchema = AgentArtifactComponentInsertSchema.omit({
|
|
@@ -245,7 +257,7 @@ var AgentArtifactComponentApiInsertSchema = AgentArtifactComponentInsertSchema.o
|
|
|
245
257
|
id: true,
|
|
246
258
|
createdAt: true
|
|
247
259
|
});
|
|
248
|
-
var AgentArtifactComponentApiUpdateSchema =
|
|
260
|
+
var AgentArtifactComponentApiUpdateSchema = createGraphScopedApiUpdateSchema(
|
|
249
261
|
AgentArtifactComponentUpdateSchema
|
|
250
262
|
);
|
|
251
263
|
var ExternalAgentSelectSchema = createSelectSchema(externalAgents).extend({
|
|
@@ -256,9 +268,9 @@ var ExternalAgentInsertSchema = createInsertSchema(externalAgents).extend({
|
|
|
256
268
|
id: resourceIdSchema
|
|
257
269
|
});
|
|
258
270
|
var ExternalAgentUpdateSchema = ExternalAgentInsertSchema.partial();
|
|
259
|
-
var ExternalAgentApiSelectSchema =
|
|
260
|
-
var ExternalAgentApiInsertSchema =
|
|
261
|
-
var ExternalAgentApiUpdateSchema =
|
|
271
|
+
var ExternalAgentApiSelectSchema = createGraphScopedApiSchema(ExternalAgentSelectSchema);
|
|
272
|
+
var ExternalAgentApiInsertSchema = createGraphScopedApiInsertSchema(ExternalAgentInsertSchema);
|
|
273
|
+
var ExternalAgentApiUpdateSchema = createGraphScopedApiUpdateSchema(ExternalAgentUpdateSchema);
|
|
262
274
|
var AllAgentSchema = z.discriminatedUnion("type", [
|
|
263
275
|
AgentApiSelectSchema.extend({ type: z.literal("internal") }),
|
|
264
276
|
ExternalAgentApiSelectSchema.extend({ type: z.literal("external") })
|
|
@@ -314,10 +326,8 @@ var CredentialReferenceSelectSchema = z.object({
|
|
|
314
326
|
createdAt: z.string(),
|
|
315
327
|
updatedAt: z.string()
|
|
316
328
|
});
|
|
317
|
-
var CredentialReferenceInsertSchema =
|
|
329
|
+
var CredentialReferenceInsertSchema = createInsertSchema(credentialReferences).extend({
|
|
318
330
|
id: resourceIdSchema,
|
|
319
|
-
tenantId: z.string(),
|
|
320
|
-
projectId: z.string(),
|
|
321
331
|
type: z.string(),
|
|
322
332
|
credentialStoreId: resourceIdSchema,
|
|
323
333
|
retrievalParams: z.record(z.string(), z.unknown()).nullish()
|
|
@@ -413,11 +423,13 @@ var AgentToolRelationInsertSchema = createInsertSchema(agentToolRelations).exten
|
|
|
413
423
|
selectedTools: z.array(z.string()).nullish()
|
|
414
424
|
});
|
|
415
425
|
var AgentToolRelationUpdateSchema = AgentToolRelationInsertSchema.partial();
|
|
416
|
-
var AgentToolRelationApiSelectSchema =
|
|
417
|
-
|
|
426
|
+
var AgentToolRelationApiSelectSchema = createGraphScopedApiSchema(
|
|
427
|
+
AgentToolRelationSelectSchema
|
|
428
|
+
);
|
|
429
|
+
var AgentToolRelationApiInsertSchema = createGraphScopedApiInsertSchema(
|
|
418
430
|
AgentToolRelationInsertSchema
|
|
419
431
|
);
|
|
420
|
-
var AgentToolRelationApiUpdateSchema =
|
|
432
|
+
var AgentToolRelationApiUpdateSchema = createGraphScopedApiUpdateSchema(
|
|
421
433
|
AgentToolRelationUpdateSchema
|
|
422
434
|
);
|
|
423
435
|
var LedgerArtifactSelectSchema = createSelectSchema(ledgerArtifacts);
|
|
@@ -443,6 +455,7 @@ var StatusUpdateSchema = z.object({
|
|
|
443
455
|
statusComponents: z.array(StatusComponentSchema).optional()
|
|
444
456
|
});
|
|
445
457
|
var FullGraphAgentInsertSchema = AgentApiInsertSchema.extend({
|
|
458
|
+
type: z.literal("internal"),
|
|
446
459
|
tools: z.array(z.string()),
|
|
447
460
|
selectedTools: z.record(z.string(), z.array(z.string())).optional(),
|
|
448
461
|
dataComponents: z.array(z.string()).optional(),
|
|
@@ -452,10 +465,9 @@ var FullGraphAgentInsertSchema = AgentApiInsertSchema.extend({
|
|
|
452
465
|
});
|
|
453
466
|
var FullGraphDefinitionSchema = AgentGraphApiInsertSchema.extend({
|
|
454
467
|
agents: z.record(z.string(), z.union([FullGraphAgentInsertSchema, ExternalAgentApiInsertSchema])),
|
|
455
|
-
|
|
456
|
-
credentialReferences
|
|
457
|
-
|
|
458
|
-
artifactComponents: z.record(z.string(), ArtifactComponentApiInsertSchema).optional(),
|
|
468
|
+
// Removed project-scoped resources - these are now managed at project level:
|
|
469
|
+
// tools, credentialReferences, dataComponents, artifactComponents
|
|
470
|
+
// Agent relationships to these resources are maintained via agent.tools, agent.dataComponents, etc.
|
|
459
471
|
contextConfig: z.optional(ContextConfigApiInsertSchema),
|
|
460
472
|
statusUpdates: z.optional(StatusUpdateSchema),
|
|
461
473
|
models: ModelSchema.optional(),
|
|
@@ -463,7 +475,13 @@ var FullGraphDefinitionSchema = AgentGraphApiInsertSchema.extend({
|
|
|
463
475
|
graphPrompt: z.string().max(5e3, "Graph prompt cannot exceed 5000 characters").optional()
|
|
464
476
|
});
|
|
465
477
|
var GraphWithinContextOfProjectSchema = AgentGraphApiInsertSchema.extend({
|
|
466
|
-
agents: z.record(
|
|
478
|
+
agents: z.record(
|
|
479
|
+
z.string(),
|
|
480
|
+
z.discriminatedUnion("type", [
|
|
481
|
+
FullGraphAgentInsertSchema,
|
|
482
|
+
ExternalAgentApiInsertSchema.extend({ type: z.literal("external") })
|
|
483
|
+
])
|
|
484
|
+
),
|
|
467
485
|
models: ModelSchema.optional(),
|
|
468
486
|
stopWhen: GraphStopWhenSchema.optional(),
|
|
469
487
|
graphPrompt: z.string().max(5e3, "Graph prompt cannot exceed 5000 characters").optional()
|
|
@@ -546,6 +564,35 @@ var TenantProjectParamsSchema = z.object({
|
|
|
546
564
|
example: "project_456"
|
|
547
565
|
})
|
|
548
566
|
}).openapi("TenantProjectParams");
|
|
567
|
+
var TenantProjectGraphParamsSchema = z.object({
|
|
568
|
+
tenantId: z.string().openapi({
|
|
569
|
+
description: "Tenant identifier",
|
|
570
|
+
example: "tenant_123"
|
|
571
|
+
}),
|
|
572
|
+
projectId: z.string().openapi({
|
|
573
|
+
description: "Project identifier",
|
|
574
|
+
example: "project_456"
|
|
575
|
+
}),
|
|
576
|
+
graphId: z.string().openapi({
|
|
577
|
+
description: "Graph identifier",
|
|
578
|
+
example: "graph_789"
|
|
579
|
+
})
|
|
580
|
+
}).openapi("TenantProjectGraphParams");
|
|
581
|
+
var TenantProjectGraphIdParamsSchema = z.object({
|
|
582
|
+
tenantId: z.string().openapi({
|
|
583
|
+
description: "Tenant identifier",
|
|
584
|
+
example: "tenant_123"
|
|
585
|
+
}),
|
|
586
|
+
projectId: z.string().openapi({
|
|
587
|
+
description: "Project identifier",
|
|
588
|
+
example: "project_456"
|
|
589
|
+
}),
|
|
590
|
+
graphId: z.string().openapi({
|
|
591
|
+
description: "Graph identifier",
|
|
592
|
+
example: "graph_789"
|
|
593
|
+
}),
|
|
594
|
+
id: resourceIdSchema
|
|
595
|
+
}).openapi("TenantProjectGraphIdParams");
|
|
549
596
|
var TenantProjectIdParamsSchema = z.object({
|
|
550
597
|
tenantId: z.string().openapi({
|
|
551
598
|
description: "Tenant identifier",
|
|
@@ -572,4 +619,4 @@ var PaginationQueryParamsSchema = z.object({
|
|
|
572
619
|
limit: z.coerce.number().min(1).max(100).default(10)
|
|
573
620
|
});
|
|
574
621
|
|
|
575
|
-
export { AgentApiInsertSchema, AgentApiSelectSchema, AgentApiUpdateSchema, AgentArtifactComponentApiInsertSchema, AgentArtifactComponentApiSelectSchema, AgentArtifactComponentApiUpdateSchema, AgentArtifactComponentInsertSchema, AgentArtifactComponentSelectSchema, AgentArtifactComponentUpdateSchema, AgentDataComponentApiInsertSchema, AgentDataComponentApiSelectSchema, AgentDataComponentApiUpdateSchema, AgentDataComponentInsertSchema, AgentDataComponentSelectSchema, AgentDataComponentUpdateSchema, AgentGraphApiInsertSchema, AgentGraphApiSelectSchema, AgentGraphApiUpdateSchema, AgentGraphInsertSchema, AgentGraphSelectSchema, AgentGraphUpdateSchema, AgentInsertSchema, AgentRelationApiInsertSchema, AgentRelationApiSelectSchema, AgentRelationApiUpdateSchema, AgentRelationInsertSchema, AgentRelationQuerySchema, AgentRelationSelectSchema, AgentRelationUpdateSchema, AgentSelectSchema, AgentStopWhenSchema, AgentToolRelationApiInsertSchema, AgentToolRelationApiSelectSchema, AgentToolRelationApiUpdateSchema, AgentToolRelationInsertSchema, AgentToolRelationSelectSchema, AgentToolRelationUpdateSchema, AgentUpdateSchema, AllAgentSchema, ApiKeyApiCreationResponseSchema, ApiKeyApiInsertSchema, ApiKeyApiSelectSchema, ApiKeyApiUpdateSchema, ApiKeyInsertSchema, ApiKeySelectSchema, ApiKeyUpdateSchema, ArtifactComponentApiInsertSchema, ArtifactComponentApiSelectSchema, ArtifactComponentApiUpdateSchema, ArtifactComponentInsertSchema, ArtifactComponentSelectSchema, ArtifactComponentUpdateSchema, ContextCacheApiInsertSchema, ContextCacheApiSelectSchema, ContextCacheApiUpdateSchema, ContextCacheInsertSchema, ContextCacheSelectSchema, ContextCacheUpdateSchema, ContextConfigApiInsertSchema, ContextConfigApiSelectSchema, ContextConfigApiUpdateSchema, ContextConfigInsertSchema, ContextConfigSelectSchema, ContextConfigUpdateSchema, ConversationApiInsertSchema, ConversationApiSelectSchema, ConversationApiUpdateSchema, ConversationInsertSchema, ConversationSelectSchema, ConversationUpdateSchema, CredentialReferenceApiInsertSchema, CredentialReferenceApiSelectSchema, CredentialReferenceApiUpdateSchema, CredentialReferenceInsertSchema, CredentialReferenceSelectSchema, CredentialReferenceUpdateSchema, DataComponentApiInsertSchema, DataComponentApiSelectSchema, DataComponentApiUpdateSchema, DataComponentBaseSchema, DataComponentInsertSchema, DataComponentSelectSchema, DataComponentUpdateSchema, ErrorResponseSchema, ExistsResponseSchema, ExternalAgentApiInsertSchema, ExternalAgentApiSelectSchema, ExternalAgentApiUpdateSchema, ExternalAgentInsertSchema, ExternalAgentRelationApiInsertSchema, ExternalAgentRelationInsertSchema, ExternalAgentSelectSchema, ExternalAgentUpdateSchema, FetchConfigSchema, FetchDefinitionSchema, FullGraphAgentInsertSchema, FullGraphDefinitionSchema, FullProjectDefinitionSchema, GraphStopWhenSchema, GraphWithinContextOfProjectSchema, HeadersScopeSchema, IdParamsSchema, LedgerArtifactApiInsertSchema, LedgerArtifactApiSelectSchema, LedgerArtifactApiUpdateSchema, LedgerArtifactInsertSchema, LedgerArtifactSelectSchema, LedgerArtifactUpdateSchema, ListResponseSchema, MAX_ID_LENGTH, MCPToolConfigSchema, MIN_ID_LENGTH, McpToolDefinitionSchema, McpToolSchema, McpTransportConfigSchema, MessageApiInsertSchema, MessageApiSelectSchema, MessageApiUpdateSchema, MessageInsertSchema, MessageSelectSchema, MessageUpdateSchema, ModelSchema, ModelSettingsSchema, PaginationQueryParamsSchema, PaginationSchema, ProjectApiInsertSchema, ProjectApiSelectSchema, ProjectApiUpdateSchema, ProjectInsertSchema, ProjectModelSchema, ProjectSelectSchema, ProjectUpdateSchema, RemovedResponseSchema, SingleResponseSchema, StatusComponentSchema, StatusUpdateSchema, StopWhenSchema, TaskApiInsertSchema, TaskApiSelectSchema, TaskApiUpdateSchema, TaskInsertSchema, TaskRelationApiInsertSchema, TaskRelationApiSelectSchema, TaskRelationApiUpdateSchema, TaskRelationInsertSchema, TaskRelationSelectSchema, TaskRelationUpdateSchema, TaskSelectSchema, TaskUpdateSchema, TenantIdParamsSchema, TenantParamsSchema, TenantProjectIdParamsSchema, TenantProjectParamsSchema, ToolApiInsertSchema, ToolApiSelectSchema, ToolApiUpdateSchema, ToolInsertSchema, ToolSelectSchema, ToolStatusSchema, ToolUpdateSchema, URL_SAFE_ID_PATTERN, resourceIdSchema };
|
|
622
|
+
export { AgentApiInsertSchema, AgentApiSelectSchema, AgentApiUpdateSchema, AgentArtifactComponentApiInsertSchema, AgentArtifactComponentApiSelectSchema, AgentArtifactComponentApiUpdateSchema, AgentArtifactComponentInsertSchema, AgentArtifactComponentSelectSchema, AgentArtifactComponentUpdateSchema, AgentDataComponentApiInsertSchema, AgentDataComponentApiSelectSchema, AgentDataComponentApiUpdateSchema, AgentDataComponentInsertSchema, AgentDataComponentSelectSchema, AgentDataComponentUpdateSchema, AgentGraphApiInsertSchema, AgentGraphApiSelectSchema, AgentGraphApiUpdateSchema, AgentGraphInsertSchema, AgentGraphSelectSchema, AgentGraphUpdateSchema, AgentInsertSchema, AgentRelationApiInsertSchema, AgentRelationApiSelectSchema, AgentRelationApiUpdateSchema, AgentRelationInsertSchema, AgentRelationQuerySchema, AgentRelationSelectSchema, AgentRelationUpdateSchema, AgentSelectSchema, AgentStopWhenSchema, AgentToolRelationApiInsertSchema, AgentToolRelationApiSelectSchema, AgentToolRelationApiUpdateSchema, AgentToolRelationInsertSchema, AgentToolRelationSelectSchema, AgentToolRelationUpdateSchema, AgentUpdateSchema, AllAgentSchema, ApiKeyApiCreationResponseSchema, ApiKeyApiInsertSchema, ApiKeyApiSelectSchema, ApiKeyApiUpdateSchema, ApiKeyInsertSchema, ApiKeySelectSchema, ApiKeyUpdateSchema, ArtifactComponentApiInsertSchema, ArtifactComponentApiSelectSchema, ArtifactComponentApiUpdateSchema, ArtifactComponentInsertSchema, ArtifactComponentSelectSchema, ArtifactComponentUpdateSchema, ContextCacheApiInsertSchema, ContextCacheApiSelectSchema, ContextCacheApiUpdateSchema, ContextCacheInsertSchema, ContextCacheSelectSchema, ContextCacheUpdateSchema, ContextConfigApiInsertSchema, ContextConfigApiSelectSchema, ContextConfigApiUpdateSchema, ContextConfigInsertSchema, ContextConfigSelectSchema, ContextConfigUpdateSchema, ConversationApiInsertSchema, ConversationApiSelectSchema, ConversationApiUpdateSchema, ConversationInsertSchema, ConversationSelectSchema, ConversationUpdateSchema, CredentialReferenceApiInsertSchema, CredentialReferenceApiSelectSchema, CredentialReferenceApiUpdateSchema, CredentialReferenceInsertSchema, CredentialReferenceSelectSchema, CredentialReferenceUpdateSchema, DataComponentApiInsertSchema, DataComponentApiSelectSchema, DataComponentApiUpdateSchema, DataComponentBaseSchema, DataComponentInsertSchema, DataComponentSelectSchema, DataComponentUpdateSchema, ErrorResponseSchema, ExistsResponseSchema, ExternalAgentApiInsertSchema, ExternalAgentApiSelectSchema, ExternalAgentApiUpdateSchema, ExternalAgentInsertSchema, ExternalAgentRelationApiInsertSchema, ExternalAgentRelationInsertSchema, ExternalAgentSelectSchema, ExternalAgentUpdateSchema, FetchConfigSchema, FetchDefinitionSchema, FullGraphAgentInsertSchema, FullGraphDefinitionSchema, FullProjectDefinitionSchema, GraphStopWhenSchema, GraphWithinContextOfProjectSchema, HeadersScopeSchema, IdParamsSchema, LedgerArtifactApiInsertSchema, LedgerArtifactApiSelectSchema, LedgerArtifactApiUpdateSchema, LedgerArtifactInsertSchema, LedgerArtifactSelectSchema, LedgerArtifactUpdateSchema, ListResponseSchema, MAX_ID_LENGTH, MCPToolConfigSchema, MIN_ID_LENGTH, McpToolDefinitionSchema, McpToolSchema, McpTransportConfigSchema, MessageApiInsertSchema, MessageApiSelectSchema, MessageApiUpdateSchema, MessageInsertSchema, MessageSelectSchema, MessageUpdateSchema, ModelSchema, ModelSettingsSchema, PaginationQueryParamsSchema, PaginationSchema, ProjectApiInsertSchema, ProjectApiSelectSchema, ProjectApiUpdateSchema, ProjectInsertSchema, ProjectModelSchema, ProjectSelectSchema, ProjectUpdateSchema, RemovedResponseSchema, SingleResponseSchema, StatusComponentSchema, StatusUpdateSchema, StopWhenSchema, TaskApiInsertSchema, TaskApiSelectSchema, TaskApiUpdateSchema, TaskInsertSchema, TaskRelationApiInsertSchema, TaskRelationApiSelectSchema, TaskRelationApiUpdateSchema, TaskRelationInsertSchema, TaskRelationSelectSchema, TaskRelationUpdateSchema, TaskSelectSchema, TaskUpdateSchema, TenantIdParamsSchema, TenantParamsSchema, TenantProjectGraphIdParamsSchema, TenantProjectGraphParamsSchema, TenantProjectIdParamsSchema, TenantProjectParamsSchema, ToolApiInsertSchema, ToolApiSelectSchema, ToolApiUpdateSchema, ToolInsertSchema, ToolSelectSchema, ToolStatusSchema, ToolUpdateSchema, URL_SAFE_ID_PATTERN, resourceIdSchema };
|