@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.
@@ -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-MXQKLGQK.js';
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 = createApiSchema(AgentSelectSchema);
45
- var AgentApiInsertSchema = createApiInsertSchema(AgentInsertSchema);
46
- var AgentApiUpdateSchema = createApiUpdateSchema(AgentUpdateSchema);
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 = createApiSchema(AgentRelationSelectSchema);
57
- var AgentRelationApiInsertSchema = createApiInsertSchema(AgentRelationInsertSchema).extend({
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 = createApiUpdateSchema(AgentRelationUpdateSchema).extend({
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.optional()
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 = createApiSchema(AgentDataComponentSelectSchema);
207
- var AgentDataComponentApiInsertSchema = createApiInsertSchema(
208
- AgentDataComponentInsertSchema
213
+ var AgentDataComponentApiSelectSchema = createGraphScopedApiSchema(
214
+ AgentDataComponentSelectSchema
209
215
  );
210
- var AgentDataComponentApiUpdateSchema = createApiUpdateSchema(
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 = createApiSchema(
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 = createApiUpdateSchema(
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 = createApiSchema(ExternalAgentSelectSchema);
260
- var ExternalAgentApiInsertSchema = createApiInsertSchema(ExternalAgentInsertSchema);
261
- var ExternalAgentApiUpdateSchema = createApiUpdateSchema(ExternalAgentUpdateSchema);
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 = z.object({
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 = createApiSchema(AgentToolRelationSelectSchema);
417
- var AgentToolRelationApiInsertSchema = createApiInsertSchema(
426
+ var AgentToolRelationApiSelectSchema = createGraphScopedApiSchema(
427
+ AgentToolRelationSelectSchema
428
+ );
429
+ var AgentToolRelationApiInsertSchema = createGraphScopedApiInsertSchema(
418
430
  AgentToolRelationInsertSchema
419
431
  );
420
- var AgentToolRelationApiUpdateSchema = createApiUpdateSchema(
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
- tools: z.record(z.string(), ToolApiInsertSchema).optional(),
456
- credentialReferences: z.record(z.string(), CredentialReferenceApiInsertSchema).optional(),
457
- dataComponents: z.record(z.string(), DataComponentApiInsertSchema).optional(),
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(z.string(), z.union([FullGraphAgentInsertSchema, ExternalAgentApiInsertSchema])),
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 };