@inkeep/agents-core 0.19.0 → 0.19.1

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/index.cjs CHANGED
@@ -214352,9 +214352,13 @@ var CredentialStoreType = {
214352
214352
  var StopWhenSchema = zodOpenapi.z.object({
214353
214353
  transferCountIs: zodOpenapi.z.number().min(1).max(100).optional(),
214354
214354
  stepCountIs: zodOpenapi.z.number().min(1).max(1e3).optional()
214355
- });
214356
- var AgentStopWhenSchema = StopWhenSchema.pick({ transferCountIs: true });
214357
- var SubAgentStopWhenSchema = StopWhenSchema.pick({ stepCountIs: true });
214355
+ }).openapi("StopWhen");
214356
+ var AgentStopWhenSchema = StopWhenSchema.pick({ transferCountIs: true }).openapi(
214357
+ "AgentStopWhen"
214358
+ );
214359
+ var SubAgentStopWhenSchema = StopWhenSchema.pick({ stepCountIs: true }).openapi(
214360
+ "SubAgentStopWhen"
214361
+ );
214358
214362
  var MIN_ID_LENGTH = 1;
214359
214363
  var MAX_ID_LENGTH = 255;
214360
214364
  var URL_SAFE_ID_PATTERN = /^[a-zA-Z0-9\-_.]+$/;
@@ -214367,23 +214371,23 @@ var resourceIdSchema = zodOpenapi.z.string().min(MIN_ID_LENGTH).max(MAX_ID_LENGT
214367
214371
  var ModelSettingsSchema = zodOpenapi.z.object({
214368
214372
  model: zodOpenapi.z.string().optional(),
214369
214373
  providerOptions: zodOpenapi.z.record(zodOpenapi.z.string(), zodOpenapi.z.any()).optional()
214370
- });
214374
+ }).openapi("ModelSettings");
214371
214375
  var ModelSchema = zodOpenapi.z.object({
214372
214376
  base: ModelSettingsSchema.optional(),
214373
214377
  structuredOutput: ModelSettingsSchema.optional(),
214374
214378
  summarizer: ModelSettingsSchema.optional()
214375
- });
214379
+ }).openapi("Model");
214376
214380
  var ProjectModelSchema = zodOpenapi.z.object({
214377
214381
  base: ModelSettingsSchema,
214378
214382
  structuredOutput: ModelSettingsSchema.optional(),
214379
214383
  summarizer: ModelSettingsSchema.optional()
214380
- });
214384
+ }).openapi("ProjectModel");
214381
214385
  var SandboxConfigSchema = zodOpenapi.z.object({
214382
214386
  provider: zodOpenapi.z.enum(["vercel", "local"]),
214383
214387
  runtime: zodOpenapi.z.enum(["node22", "typescript"]),
214384
214388
  timeout: zodOpenapi.z.number().min(1e3).max(3e5).optional(),
214385
214389
  vcpus: zodOpenapi.z.number().min(1).max(8).optional()
214386
- });
214390
+ }).openapi("SandboxConfig");
214387
214391
  var FunctionToolConfigSchema = zodOpenapi.z.object({
214388
214392
  name: zodOpenapi.z.string(),
214389
214393
  description: zodOpenapi.z.string(),
@@ -214403,9 +214407,15 @@ var SubAgentInsertSchema = drizzleZod.createInsertSchema(subAgents).extend({
214403
214407
  models: ModelSchema.optional()
214404
214408
  });
214405
214409
  var SubAgentUpdateSchema = SubAgentInsertSchema.partial();
214406
- var SubAgentApiSelectSchema = createAgentScopedApiSchema(SubAgentSelectSchema);
214407
- var SubAgentApiInsertSchema = createAgentScopedApiInsertSchema(SubAgentInsertSchema);
214408
- var SubAgentApiUpdateSchema = createAgentScopedApiUpdateSchema(SubAgentUpdateSchema);
214410
+ var SubAgentApiSelectSchema = createAgentScopedApiSchema(SubAgentSelectSchema).openapi(
214411
+ "SubAgent"
214412
+ );
214413
+ var SubAgentApiInsertSchema = createAgentScopedApiInsertSchema(
214414
+ SubAgentInsertSchema
214415
+ ).openapi("SubAgentCreate");
214416
+ var SubAgentApiUpdateSchema = createAgentScopedApiUpdateSchema(
214417
+ SubAgentUpdateSchema
214418
+ ).openapi("SubAgentUpdate");
214409
214419
  var SubAgentRelationSelectSchema = drizzleZod.createSelectSchema(subAgentRelations);
214410
214420
  var SubAgentRelationInsertSchema = drizzleZod.createInsertSchema(subAgentRelations).extend({
214411
214421
  id: resourceIdSchema,
@@ -214417,7 +214427,7 @@ var SubAgentRelationInsertSchema = drizzleZod.createInsertSchema(subAgentRelatio
214417
214427
  var SubAgentRelationUpdateSchema = SubAgentRelationInsertSchema.partial();
214418
214428
  var SubAgentRelationApiSelectSchema = createAgentScopedApiSchema(
214419
214429
  SubAgentRelationSelectSchema
214420
- );
214430
+ ).openapi("SubAgentRelation");
214421
214431
  var SubAgentRelationApiInsertSchema = createAgentScopedApiInsertSchema(
214422
214432
  SubAgentRelationInsertSchema
214423
214433
  ).extend({
@@ -214432,7 +214442,7 @@ var SubAgentRelationApiInsertSchema = createAgentScopedApiInsertSchema(
214432
214442
  message: "Must specify exactly one of targetSubAgentId or externalSubAgentId",
214433
214443
  path: ["targetSubAgentId", "externalSubAgentId"]
214434
214444
  }
214435
- );
214445
+ ).openapi("SubAgentRelationCreate");
214436
214446
  var SubAgentRelationApiUpdateSchema = createAgentScopedApiUpdateSchema(
214437
214447
  SubAgentRelationUpdateSchema
214438
214448
  ).extend({
@@ -214450,7 +214460,7 @@ var SubAgentRelationApiUpdateSchema = createAgentScopedApiUpdateSchema(
214450
214460
  message: "Must specify exactly one of targetSubAgentId or externalSubAgentId when updating sub-agent relationships",
214451
214461
  path: ["targetSubAgentId", "externalSubAgentId"]
214452
214462
  }
214453
- );
214463
+ ).openapi("SubAgentRelationUpdate");
214454
214464
  var SubAgentRelationQuerySchema = zodOpenapi.z.object({
214455
214465
  sourceSubAgentId: zodOpenapi.z.string().optional(),
214456
214466
  targetSubAgentId: zodOpenapi.z.string().optional(),
@@ -214470,11 +214480,13 @@ var AgentInsertSchema = drizzleZod.createInsertSchema(agents).extend({
214470
214480
  id: resourceIdSchema
214471
214481
  });
214472
214482
  var AgentUpdateSchema = AgentInsertSchema.partial();
214473
- var AgentApiSelectSchema = createApiSchema(AgentSelectSchema);
214483
+ var AgentApiSelectSchema = createApiSchema(AgentSelectSchema).openapi("Agent");
214474
214484
  var AgentApiInsertSchema = createApiInsertSchema(AgentInsertSchema).extend({
214475
214485
  id: resourceIdSchema
214476
- });
214477
- var AgentApiUpdateSchema = createApiUpdateSchema(AgentUpdateSchema);
214486
+ }).openapi("AgentCreate");
214487
+ var AgentApiUpdateSchema = createApiUpdateSchema(AgentUpdateSchema).openapi(
214488
+ "AgentUpdate"
214489
+ );
214478
214490
  var TaskSelectSchema = drizzleZod.createSelectSchema(tasks);
214479
214491
  var TaskInsertSchema = drizzleZod.createInsertSchema(tasks).extend({
214480
214492
  id: resourceIdSchema,
@@ -214522,7 +214534,7 @@ var McpTransportConfigSchema = zodOpenapi.z.object({
214522
214534
  description: "Reconnection options for streamable HTTP transport"
214523
214535
  }),
214524
214536
  sessionId: zodOpenapi.z.string().optional()
214525
- });
214537
+ }).openapi("McpTransportConfig");
214526
214538
  var ToolStatusSchema = zodOpenapi.z.enum(TOOL_STATUS_VALUES);
214527
214539
  var McpToolDefinitionSchema = zodOpenapi.z.object({
214528
214540
  name: zodOpenapi.z.string(),
@@ -214559,9 +214571,15 @@ var ConversationInsertSchema = drizzleZod.createInsertSchema(conversations).exte
214559
214571
  contextConfigId: resourceIdSchema.optional()
214560
214572
  });
214561
214573
  var ConversationUpdateSchema = ConversationInsertSchema.partial();
214562
- var ConversationApiSelectSchema = createApiSchema(ConversationSelectSchema);
214563
- var ConversationApiInsertSchema = createApiInsertSchema(ConversationInsertSchema);
214564
- var ConversationApiUpdateSchema = createApiUpdateSchema(ConversationUpdateSchema);
214574
+ var ConversationApiSelectSchema = createApiSchema(ConversationSelectSchema).openapi(
214575
+ "Conversation"
214576
+ );
214577
+ var ConversationApiInsertSchema = createApiInsertSchema(ConversationInsertSchema).openapi(
214578
+ "ConversationCreate"
214579
+ );
214580
+ var ConversationApiUpdateSchema = createApiUpdateSchema(ConversationUpdateSchema).openapi(
214581
+ "ConversationUpdate"
214582
+ );
214565
214583
  var MessageSelectSchema = drizzleZod.createSelectSchema(messages);
214566
214584
  var MessageInsertSchema = drizzleZod.createInsertSchema(messages).extend({
214567
214585
  id: resourceIdSchema,
@@ -214569,9 +214587,13 @@ var MessageInsertSchema = drizzleZod.createInsertSchema(messages).extend({
214569
214587
  taskId: resourceIdSchema.optional()
214570
214588
  });
214571
214589
  var MessageUpdateSchema = MessageInsertSchema.partial();
214572
- var MessageApiSelectSchema = createApiSchema(MessageSelectSchema);
214573
- var MessageApiInsertSchema = createApiInsertSchema(MessageInsertSchema);
214574
- var MessageApiUpdateSchema = createApiUpdateSchema(MessageUpdateSchema);
214590
+ var MessageApiSelectSchema = createApiSchema(MessageSelectSchema).openapi("Message");
214591
+ var MessageApiInsertSchema = createApiInsertSchema(MessageInsertSchema).openapi(
214592
+ "MessageCreate"
214593
+ );
214594
+ var MessageApiUpdateSchema = createApiUpdateSchema(MessageUpdateSchema).openapi(
214595
+ "MessageUpdate"
214596
+ );
214575
214597
  var ContextCacheSelectSchema = drizzleZod.createSelectSchema(contextCache);
214576
214598
  var ContextCacheInsertSchema = drizzleZod.createInsertSchema(contextCache);
214577
214599
  var ContextCacheUpdateSchema = ContextCacheInsertSchema.partial();
@@ -214587,9 +214609,15 @@ var DataComponentBaseSchema = DataComponentInsertSchema.omit({
214587
214609
  updatedAt: true
214588
214610
  });
214589
214611
  var DataComponentUpdateSchema = DataComponentInsertSchema.partial();
214590
- var DataComponentApiSelectSchema = createApiSchema(DataComponentSelectSchema);
214591
- var DataComponentApiInsertSchema = createApiInsertSchema(DataComponentInsertSchema);
214592
- var DataComponentApiUpdateSchema = createApiUpdateSchema(DataComponentUpdateSchema);
214612
+ var DataComponentApiSelectSchema = createApiSchema(
214613
+ DataComponentSelectSchema
214614
+ ).openapi("DataComponent");
214615
+ var DataComponentApiInsertSchema = createApiInsertSchema(
214616
+ DataComponentInsertSchema
214617
+ ).openapi("DataComponentCreate");
214618
+ var DataComponentApiUpdateSchema = createApiUpdateSchema(
214619
+ DataComponentUpdateSchema
214620
+ ).openapi("DataComponentUpdate");
214593
214621
  var SubAgentDataComponentSelectSchema = drizzleZod.createSelectSchema(subAgentDataComponents);
214594
214622
  var SubAgentDataComponentInsertSchema = drizzleZod.createInsertSchema(subAgentDataComponents);
214595
214623
  var SubAgentDataComponentUpdateSchema = SubAgentDataComponentInsertSchema.partial();
@@ -214610,16 +214638,18 @@ var ArtifactComponentInsertSchema = drizzleZod.createInsertSchema(artifactCompon
214610
214638
  id: resourceIdSchema
214611
214639
  });
214612
214640
  var ArtifactComponentUpdateSchema = ArtifactComponentInsertSchema.partial();
214613
- var ArtifactComponentApiSelectSchema = createApiSchema(ArtifactComponentSelectSchema);
214641
+ var ArtifactComponentApiSelectSchema = createApiSchema(
214642
+ ArtifactComponentSelectSchema
214643
+ ).openapi("ArtifactComponent");
214614
214644
  var ArtifactComponentApiInsertSchema = ArtifactComponentInsertSchema.omit({
214615
214645
  tenantId: true,
214616
214646
  projectId: true,
214617
214647
  createdAt: true,
214618
214648
  updatedAt: true
214619
- });
214649
+ }).openapi("ArtifactComponentCreate");
214620
214650
  var ArtifactComponentApiUpdateSchema = createApiUpdateSchema(
214621
214651
  ArtifactComponentUpdateSchema
214622
- );
214652
+ ).openapi("ArtifactComponentUpdate");
214623
214653
  var SubAgentArtifactComponentSelectSchema = drizzleZod.createSelectSchema(subAgentArtifactComponents);
214624
214654
  var SubAgentArtifactComponentInsertSchema = drizzleZod.createInsertSchema(
214625
214655
  subAgentArtifactComponents
@@ -214649,9 +214679,15 @@ var ExternalAgentInsertSchema = drizzleZod.createInsertSchema(externalAgents).ex
214649
214679
  id: resourceIdSchema
214650
214680
  });
214651
214681
  var ExternalAgentUpdateSchema = ExternalAgentInsertSchema.partial();
214652
- var ExternalAgentApiSelectSchema = createAgentScopedApiSchema(ExternalAgentSelectSchema);
214653
- var ExternalAgentApiInsertSchema = createAgentScopedApiInsertSchema(ExternalAgentInsertSchema);
214654
- var ExternalAgentApiUpdateSchema = createAgentScopedApiUpdateSchema(ExternalAgentUpdateSchema);
214682
+ var ExternalAgentApiSelectSchema = createAgentScopedApiSchema(
214683
+ ExternalAgentSelectSchema
214684
+ ).openapi("ExternalAgent");
214685
+ var ExternalAgentApiInsertSchema = createAgentScopedApiInsertSchema(
214686
+ ExternalAgentInsertSchema
214687
+ ).openapi("ExternalAgentCreate");
214688
+ var ExternalAgentApiUpdateSchema = createAgentScopedApiUpdateSchema(
214689
+ ExternalAgentUpdateSchema
214690
+ ).openapi("ExternalAgentUpdate");
214655
214691
  var AllAgentSchema = zodOpenapi.z.discriminatedUnion("type", [
214656
214692
  SubAgentApiSelectSchema.extend({ type: zodOpenapi.z.literal("internal") }),
214657
214693
  ExternalAgentApiSelectSchema.extend({ type: zodOpenapi.z.literal("external") })
@@ -214675,7 +214711,7 @@ var ApiKeyApiSelectSchema = ApiKeySelectSchema.omit({
214675
214711
  projectId: true,
214676
214712
  keyHash: true
214677
214713
  // Never expose the hash
214678
- });
214714
+ }).openapi("ApiKey");
214679
214715
  var ApiKeyApiCreationResponseSchema = zodOpenapi.z.object({
214680
214716
  data: zodOpenapi.z.object({
214681
214717
  apiKey: ApiKeyApiSelectSchema,
@@ -214695,8 +214731,8 @@ var ApiKeyApiInsertSchema = ApiKeyInsertSchema.omit({
214695
214731
  // Auto-generated
214696
214732
  lastUsedAt: true
214697
214733
  // Not set on creation
214698
- });
214699
- var ApiKeyApiUpdateSchema = ApiKeyUpdateSchema;
214734
+ }).openapi("ApiKeyCreate");
214735
+ var ApiKeyApiUpdateSchema = ApiKeyUpdateSchema.openapi("ApiKeyUpdate");
214700
214736
  var CredentialReferenceSelectSchema = zodOpenapi.z.object({
214701
214737
  id: zodOpenapi.z.string(),
214702
214738
  tenantId: zodOpenapi.z.string(),
@@ -214719,17 +214755,17 @@ var CredentialReferenceApiSelectSchema = createApiSchema(
214719
214755
  ).extend({
214720
214756
  type: zodOpenapi.z.enum(CredentialStoreType),
214721
214757
  tools: zodOpenapi.z.array(ToolSelectSchema).optional()
214722
- });
214758
+ }).openapi("CredentialReference");
214723
214759
  var CredentialReferenceApiInsertSchema = createApiInsertSchema(
214724
214760
  CredentialReferenceInsertSchema
214725
214761
  ).extend({
214726
214762
  type: zodOpenapi.z.enum(CredentialStoreType)
214727
- });
214763
+ }).openapi("CredentialReferenceCreate");
214728
214764
  var CredentialReferenceApiUpdateSchema = createApiUpdateSchema(
214729
214765
  CredentialReferenceUpdateSchema
214730
214766
  ).extend({
214731
214767
  type: zodOpenapi.z.enum(CredentialStoreType).optional()
214732
- });
214768
+ }).openapi("CredentialReferenceUpdate");
214733
214769
  var McpToolSchema = ToolInsertSchema.extend({
214734
214770
  imageUrl: imageUrlSchema,
214735
214771
  availableTools: zodOpenapi.z.array(McpToolDefinitionSchema).optional(),
@@ -214758,25 +214794,35 @@ var MCPToolConfigSchema = McpToolSchema.omit({
214758
214794
  credential: CredentialReferenceApiInsertSchema.optional()
214759
214795
  });
214760
214796
  var ToolUpdateSchema = ToolInsertSchema.partial();
214761
- var ToolApiSelectSchema = createApiSchema(ToolSelectSchema);
214762
- var ToolApiInsertSchema = createApiInsertSchema(ToolInsertSchema);
214763
- var ToolApiUpdateSchema = createApiUpdateSchema(ToolUpdateSchema);
214797
+ var ToolApiSelectSchema = createApiSchema(ToolSelectSchema).openapi("Tool");
214798
+ var ToolApiInsertSchema = createApiInsertSchema(ToolInsertSchema).openapi("ToolCreate");
214799
+ var ToolApiUpdateSchema = createApiUpdateSchema(ToolUpdateSchema).openapi("ToolUpdate");
214764
214800
  var FunctionToolSelectSchema = drizzleZod.createSelectSchema(functionTools);
214765
214801
  var FunctionToolInsertSchema = drizzleZod.createInsertSchema(functionTools).extend({
214766
214802
  id: resourceIdSchema
214767
214803
  });
214768
214804
  var FunctionToolUpdateSchema = FunctionToolInsertSchema.partial();
214769
- var FunctionToolApiSelectSchema = createApiSchema(FunctionToolSelectSchema);
214770
- var FunctionToolApiInsertSchema = createAgentScopedApiInsertSchema(FunctionToolInsertSchema);
214771
- var FunctionToolApiUpdateSchema = createApiUpdateSchema(FunctionToolUpdateSchema);
214805
+ var FunctionToolApiSelectSchema = createApiSchema(FunctionToolSelectSchema).openapi(
214806
+ "FunctionTool"
214807
+ );
214808
+ var FunctionToolApiInsertSchema = createAgentScopedApiInsertSchema(
214809
+ FunctionToolInsertSchema
214810
+ ).openapi("FunctionToolCreate");
214811
+ var FunctionToolApiUpdateSchema = createApiUpdateSchema(
214812
+ FunctionToolUpdateSchema
214813
+ ).openapi("FunctionToolUpdate");
214772
214814
  var FunctionSelectSchema = drizzleZod.createSelectSchema(functions);
214773
214815
  var FunctionInsertSchema = drizzleZod.createInsertSchema(functions).extend({
214774
214816
  id: resourceIdSchema
214775
214817
  });
214776
214818
  var FunctionUpdateSchema = FunctionInsertSchema.partial();
214777
- var FunctionApiSelectSchema = createApiSchema(FunctionSelectSchema);
214778
- var FunctionApiInsertSchema = createApiInsertSchema(FunctionInsertSchema);
214779
- var FunctionApiUpdateSchema = createApiUpdateSchema(FunctionUpdateSchema);
214819
+ var FunctionApiSelectSchema = createApiSchema(FunctionSelectSchema).openapi("Function");
214820
+ var FunctionApiInsertSchema = createApiInsertSchema(FunctionInsertSchema).openapi(
214821
+ "FunctionCreate"
214822
+ );
214823
+ var FunctionApiUpdateSchema = createApiUpdateSchema(FunctionUpdateSchema).openapi(
214824
+ "FunctionUpdate"
214825
+ );
214780
214826
  var FetchConfigSchema = zodOpenapi.z.object({
214781
214827
  url: zodOpenapi.z.string().min(1, "URL is required"),
214782
214828
  method: zodOpenapi.z.enum(["GET", "POST", "PUT", "DELETE", "PATCH"]).optional().default("GET"),
@@ -214785,7 +214831,7 @@ var FetchConfigSchema = zodOpenapi.z.object({
214785
214831
  transform: zodOpenapi.z.string().optional(),
214786
214832
  // JSONPath or JS transform function
214787
214833
  timeout: zodOpenapi.z.number().min(0).optional().default(1e4).optional()
214788
- });
214834
+ }).openapi("FetchConfig");
214789
214835
  var FetchDefinitionSchema = zodOpenapi.z.object({
214790
214836
  id: zodOpenapi.z.string().min(1, "Fetch definition ID is required"),
214791
214837
  name: zodOpenapi.z.string().optional(),
@@ -214797,7 +214843,7 @@ var FetchDefinitionSchema = zodOpenapi.z.object({
214797
214843
  description: "Default value if fetch fails"
214798
214844
  }),
214799
214845
  credential: CredentialReferenceApiInsertSchema.optional()
214800
- });
214846
+ }).openapi("FetchDefinition");
214801
214847
  var ContextConfigSelectSchema = drizzleZod.createSelectSchema(contextConfigs).extend({
214802
214848
  headersSchema: zodOpenapi.z.any().optional().openapi({
214803
214849
  type: "object",
@@ -214821,13 +214867,13 @@ var ContextConfigInsertSchema = drizzleZod.createInsertSchema(contextConfigs).ex
214821
214867
  var ContextConfigUpdateSchema = ContextConfigInsertSchema.partial();
214822
214868
  var ContextConfigApiSelectSchema = createApiSchema(ContextConfigSelectSchema).omit({
214823
214869
  agentId: true
214824
- });
214870
+ }).openapi("ContextConfig");
214825
214871
  var ContextConfigApiInsertSchema = createApiInsertSchema(ContextConfigInsertSchema).omit({
214826
214872
  agentId: true
214827
- });
214873
+ }).openapi("ContextConfigCreate");
214828
214874
  var ContextConfigApiUpdateSchema = createApiUpdateSchema(ContextConfigUpdateSchema).omit({
214829
214875
  agentId: true
214830
- });
214876
+ }).openapi("ContextConfigUpdate");
214831
214877
  var SubAgentToolRelationSelectSchema = drizzleZod.createSelectSchema(subAgentToolRelations);
214832
214878
  var SubAgentToolRelationInsertSchema = drizzleZod.createInsertSchema(subAgentToolRelations).extend({
214833
214879
  id: resourceIdSchema,
@@ -214839,13 +214885,13 @@ var SubAgentToolRelationInsertSchema = drizzleZod.createInsertSchema(subAgentToo
214839
214885
  var SubAgentToolRelationUpdateSchema = SubAgentToolRelationInsertSchema.partial();
214840
214886
  var SubAgentToolRelationApiSelectSchema = createAgentScopedApiSchema(
214841
214887
  SubAgentToolRelationSelectSchema
214842
- );
214888
+ ).openapi("SubAgentToolRelation");
214843
214889
  var SubAgentToolRelationApiInsertSchema = createAgentScopedApiInsertSchema(
214844
214890
  SubAgentToolRelationInsertSchema
214845
- );
214891
+ ).openapi("SubAgentToolRelationCreate");
214846
214892
  var SubAgentToolRelationApiUpdateSchema = createAgentScopedApiUpdateSchema(
214847
214893
  SubAgentToolRelationUpdateSchema
214848
- );
214894
+ ).openapi("SubAgentToolRelationUpdate");
214849
214895
  var LedgerArtifactSelectSchema = drizzleZod.createSelectSchema(ledgerArtifacts);
214850
214896
  var LedgerArtifactInsertSchema = drizzleZod.createInsertSchema(ledgerArtifacts);
214851
214897
  var LedgerArtifactUpdateSchema = LedgerArtifactInsertSchema.partial();
@@ -214860,20 +214906,20 @@ var StatusComponentSchema = zodOpenapi.z.object({
214860
214906
  properties: zodOpenapi.z.record(zodOpenapi.z.string(), zodOpenapi.z.any()),
214861
214907
  required: zodOpenapi.z.array(zodOpenapi.z.string()).optional()
214862
214908
  }).optional()
214863
- });
214909
+ }).openapi("StatusComponent");
214864
214910
  var StatusUpdateSchema = zodOpenapi.z.object({
214865
214911
  enabled: zodOpenapi.z.boolean().optional(),
214866
214912
  numEvents: zodOpenapi.z.number().min(1).max(100).optional(),
214867
214913
  timeInSeconds: zodOpenapi.z.number().min(1).max(600).optional(),
214868
214914
  prompt: zodOpenapi.z.string().max(2e3, "Custom prompt cannot exceed 2000 characters").optional(),
214869
214915
  statusComponents: zodOpenapi.z.array(StatusComponentSchema).optional()
214870
- });
214916
+ }).openapi("StatusUpdate");
214871
214917
  var CanUseItemSchema = zodOpenapi.z.object({
214872
214918
  agentToolRelationId: zodOpenapi.z.string().optional(),
214873
214919
  toolId: zodOpenapi.z.string(),
214874
214920
  toolSelection: zodOpenapi.z.array(zodOpenapi.z.string()).nullish(),
214875
214921
  headers: zodOpenapi.z.record(zodOpenapi.z.string(), zodOpenapi.z.string()).nullish()
214876
- });
214922
+ }).openapi("CanUseItem");
214877
214923
  var FullAgentAgentInsertSchema = SubAgentApiInsertSchema.extend({
214878
214924
  type: zodOpenapi.z.literal("internal"),
214879
214925
  canUse: zodOpenapi.z.array(CanUseItemSchema),
@@ -214906,7 +214952,7 @@ var PaginationSchema = zodOpenapi.z.object({
214906
214952
  limit: zodOpenapi.z.coerce.number().min(1).max(100).default(10),
214907
214953
  total: zodOpenapi.z.number(),
214908
214954
  pages: zodOpenapi.z.number()
214909
- });
214955
+ }).openapi("Pagination");
214910
214956
  var ListResponseSchema = (itemSchema) => zodOpenapi.z.object({
214911
214957
  data: zodOpenapi.z.array(itemSchema),
214912
214958
  pagination: PaginationSchema
@@ -214920,14 +214966,14 @@ var ErrorResponseSchema = zodOpenapi.z.object({
214920
214966
  details: zodOpenapi.z.any().optional().openapi({
214921
214967
  description: "Additional error details"
214922
214968
  })
214923
- });
214969
+ }).openapi("ErrorResponse");
214924
214970
  var ExistsResponseSchema = zodOpenapi.z.object({
214925
214971
  exists: zodOpenapi.z.boolean()
214926
- });
214972
+ }).openapi("ExistsResponse");
214927
214973
  var RemovedResponseSchema = zodOpenapi.z.object({
214928
214974
  message: zodOpenapi.z.string(),
214929
214975
  removed: zodOpenapi.z.boolean()
214930
- });
214976
+ }).openapi("RemovedResponse");
214931
214977
  var ProjectSelectSchema = drizzleZod.createSelectSchema(projects);
214932
214978
  var ProjectInsertSchema = drizzleZod.createInsertSchema(projects).extend({
214933
214979
  models: ProjectModelSchema,
@@ -214938,9 +214984,15 @@ var ProjectInsertSchema = drizzleZod.createInsertSchema(projects).extend({
214938
214984
  updatedAt: true
214939
214985
  });
214940
214986
  var ProjectUpdateSchema = ProjectInsertSchema.partial();
214941
- var ProjectApiSelectSchema = ProjectSelectSchema.omit({ tenantId: true });
214942
- var ProjectApiInsertSchema = ProjectInsertSchema.omit({ tenantId: true });
214943
- var ProjectApiUpdateSchema = ProjectUpdateSchema.omit({ tenantId: true });
214987
+ var ProjectApiSelectSchema = ProjectSelectSchema.omit({ tenantId: true }).openapi(
214988
+ "Project"
214989
+ );
214990
+ var ProjectApiInsertSchema = ProjectInsertSchema.omit({ tenantId: true }).openapi(
214991
+ "ProjectCreate"
214992
+ );
214993
+ var ProjectApiUpdateSchema = ProjectUpdateSchema.omit({ tenantId: true }).openapi(
214994
+ "ProjectUpdate"
214995
+ );
214944
214996
  var FullProjectDefinitionSchema = ProjectApiInsertSchema.extend({
214945
214997
  agents: zodOpenapi.z.record(zodOpenapi.z.string(), AgentWithinContextOfProjectSchema),
214946
214998
  tools: zodOpenapi.z.record(zodOpenapi.z.string(), ToolApiInsertSchema),
@@ -214952,6 +215004,96 @@ var FullProjectDefinitionSchema = ProjectApiInsertSchema.extend({
214952
215004
  createdAt: zodOpenapi.z.string().optional(),
214953
215005
  updatedAt: zodOpenapi.z.string().optional()
214954
215006
  });
215007
+ var ProjectResponse = zodOpenapi.z.object({ data: ProjectApiSelectSchema }).openapi("ProjectResponse");
215008
+ var SubAgentResponse = zodOpenapi.z.object({ data: SubAgentApiSelectSchema }).openapi("SubAgentResponse");
215009
+ var AgentResponse = zodOpenapi.z.object({ data: AgentApiSelectSchema }).openapi("AgentResponse");
215010
+ var ToolResponse = zodOpenapi.z.object({ data: ToolApiSelectSchema }).openapi("ToolResponse");
215011
+ var ExternalAgentResponse = zodOpenapi.z.object({ data: ExternalAgentApiSelectSchema }).openapi("ExternalAgentResponse");
215012
+ var ContextConfigResponse = zodOpenapi.z.object({ data: ContextConfigApiSelectSchema }).openapi("ContextConfigResponse");
215013
+ var ApiKeyResponse = zodOpenapi.z.object({ data: ApiKeyApiSelectSchema }).openapi("ApiKeyResponse");
215014
+ var CredentialReferenceResponse = zodOpenapi.z.object({ data: CredentialReferenceApiSelectSchema }).openapi("CredentialReferenceResponse");
215015
+ var FunctionResponse = zodOpenapi.z.object({ data: FunctionApiSelectSchema }).openapi("FunctionResponse");
215016
+ var FunctionToolResponse = zodOpenapi.z.object({ data: FunctionToolApiSelectSchema }).openapi("FunctionToolResponse");
215017
+ var DataComponentResponse = zodOpenapi.z.object({ data: DataComponentApiSelectSchema }).openapi("DataComponentResponse");
215018
+ var ArtifactComponentResponse = zodOpenapi.z.object({ data: ArtifactComponentApiSelectSchema }).openapi("ArtifactComponentResponse");
215019
+ var SubAgentRelationResponse = zodOpenapi.z.object({ data: SubAgentRelationApiSelectSchema }).openapi("SubAgentRelationResponse");
215020
+ var SubAgentToolRelationResponse = zodOpenapi.z.object({ data: SubAgentToolRelationApiSelectSchema }).openapi("SubAgentToolRelationResponse");
215021
+ var ConversationResponse = zodOpenapi.z.object({ data: ConversationApiSelectSchema }).openapi("ConversationResponse");
215022
+ var MessageResponse = zodOpenapi.z.object({ data: MessageApiSelectSchema }).openapi("MessageResponse");
215023
+ var ProjectListResponse = zodOpenapi.z.object({
215024
+ data: zodOpenapi.z.array(ProjectApiSelectSchema),
215025
+ pagination: PaginationSchema
215026
+ }).openapi("ProjectListResponse");
215027
+ var SubAgentListResponse = zodOpenapi.z.object({
215028
+ data: zodOpenapi.z.array(SubAgentApiSelectSchema),
215029
+ pagination: PaginationSchema
215030
+ }).openapi("SubAgentListResponse");
215031
+ var AgentListResponse = zodOpenapi.z.object({
215032
+ data: zodOpenapi.z.array(AgentApiSelectSchema),
215033
+ pagination: PaginationSchema
215034
+ }).openapi("AgentListResponse");
215035
+ var ToolListResponse = zodOpenapi.z.object({
215036
+ data: zodOpenapi.z.array(ToolApiSelectSchema),
215037
+ pagination: PaginationSchema
215038
+ }).openapi("ToolListResponse");
215039
+ var ExternalAgentListResponse = zodOpenapi.z.object({
215040
+ data: zodOpenapi.z.array(ExternalAgentApiSelectSchema),
215041
+ pagination: PaginationSchema
215042
+ }).openapi("ExternalAgentListResponse");
215043
+ var ContextConfigListResponse = zodOpenapi.z.object({
215044
+ data: zodOpenapi.z.array(ContextConfigApiSelectSchema),
215045
+ pagination: PaginationSchema
215046
+ }).openapi("ContextConfigListResponse");
215047
+ var ApiKeyListResponse = zodOpenapi.z.object({
215048
+ data: zodOpenapi.z.array(ApiKeyApiSelectSchema),
215049
+ pagination: PaginationSchema
215050
+ }).openapi("ApiKeyListResponse");
215051
+ var CredentialReferenceListResponse = zodOpenapi.z.object({
215052
+ data: zodOpenapi.z.array(CredentialReferenceApiSelectSchema),
215053
+ pagination: PaginationSchema
215054
+ }).openapi("CredentialReferenceListResponse");
215055
+ var FunctionListResponse = zodOpenapi.z.object({
215056
+ data: zodOpenapi.z.array(FunctionApiSelectSchema),
215057
+ pagination: PaginationSchema
215058
+ }).openapi("FunctionListResponse");
215059
+ var FunctionToolListResponse = zodOpenapi.z.object({
215060
+ data: zodOpenapi.z.array(FunctionToolApiSelectSchema),
215061
+ pagination: PaginationSchema
215062
+ }).openapi("FunctionToolListResponse");
215063
+ var DataComponentListResponse = zodOpenapi.z.object({
215064
+ data: zodOpenapi.z.array(DataComponentApiSelectSchema),
215065
+ pagination: PaginationSchema
215066
+ }).openapi("DataComponentListResponse");
215067
+ var ArtifactComponentListResponse = zodOpenapi.z.object({
215068
+ data: zodOpenapi.z.array(ArtifactComponentApiSelectSchema),
215069
+ pagination: PaginationSchema
215070
+ }).openapi("ArtifactComponentListResponse");
215071
+ var SubAgentRelationListResponse = zodOpenapi.z.object({
215072
+ data: zodOpenapi.z.array(SubAgentRelationApiSelectSchema),
215073
+ pagination: PaginationSchema
215074
+ }).openapi("SubAgentRelationListResponse");
215075
+ var SubAgentToolRelationListResponse = zodOpenapi.z.object({
215076
+ data: zodOpenapi.z.array(SubAgentToolRelationApiSelectSchema),
215077
+ pagination: PaginationSchema
215078
+ }).openapi("SubAgentToolRelationListResponse");
215079
+ var ConversationListResponse = zodOpenapi.z.object({
215080
+ data: zodOpenapi.z.array(ConversationApiSelectSchema),
215081
+ pagination: PaginationSchema
215082
+ }).openapi("ConversationListResponse");
215083
+ var MessageListResponse = zodOpenapi.z.object({
215084
+ data: zodOpenapi.z.array(MessageApiSelectSchema),
215085
+ pagination: PaginationSchema
215086
+ }).openapi("MessageListResponse");
215087
+ var SubAgentDataComponentResponse = zodOpenapi.z.object({ data: SubAgentDataComponentApiSelectSchema }).openapi("SubAgentDataComponentResponse");
215088
+ var SubAgentArtifactComponentResponse = zodOpenapi.z.object({ data: SubAgentArtifactComponentApiSelectSchema }).openapi("SubAgentArtifactComponentResponse");
215089
+ var SubAgentDataComponentListResponse = zodOpenapi.z.object({
215090
+ data: zodOpenapi.z.array(SubAgentDataComponentApiSelectSchema),
215091
+ pagination: PaginationSchema
215092
+ }).openapi("SubAgentDataComponentListResponse");
215093
+ var SubAgentArtifactComponentListResponse = zodOpenapi.z.object({
215094
+ data: zodOpenapi.z.array(SubAgentArtifactComponentApiSelectSchema),
215095
+ pagination: PaginationSchema
215096
+ }).openapi("SubAgentArtifactComponentListResponse");
214955
215097
  var HeadersScopeSchema = zodOpenapi.z.object({
214956
215098
  "x-inkeep-tenant-id": zodOpenapi.z.string().optional().openapi({
214957
215099
  description: "Tenant identifier",
@@ -224988,6 +225130,8 @@ exports.AgentApiInsertSchema = AgentApiInsertSchema;
224988
225130
  exports.AgentApiSelectSchema = AgentApiSelectSchema;
224989
225131
  exports.AgentApiUpdateSchema = AgentApiUpdateSchema;
224990
225132
  exports.AgentInsertSchema = AgentInsertSchema;
225133
+ exports.AgentListResponse = AgentListResponse;
225134
+ exports.AgentResponse = AgentResponse;
224991
225135
  exports.AgentSelectSchema = AgentSelectSchema;
224992
225136
  exports.AgentStopWhenSchema = AgentStopWhenSchema;
224993
225137
  exports.AgentUpdateSchema = AgentUpdateSchema;
@@ -224998,12 +225142,16 @@ exports.ApiKeyApiInsertSchema = ApiKeyApiInsertSchema;
224998
225142
  exports.ApiKeyApiSelectSchema = ApiKeyApiSelectSchema;
224999
225143
  exports.ApiKeyApiUpdateSchema = ApiKeyApiUpdateSchema;
225000
225144
  exports.ApiKeyInsertSchema = ApiKeyInsertSchema;
225145
+ exports.ApiKeyListResponse = ApiKeyListResponse;
225146
+ exports.ApiKeyResponse = ApiKeyResponse;
225001
225147
  exports.ApiKeySelectSchema = ApiKeySelectSchema;
225002
225148
  exports.ApiKeyUpdateSchema = ApiKeyUpdateSchema;
225003
225149
  exports.ArtifactComponentApiInsertSchema = ArtifactComponentApiInsertSchema;
225004
225150
  exports.ArtifactComponentApiSelectSchema = ArtifactComponentApiSelectSchema;
225005
225151
  exports.ArtifactComponentApiUpdateSchema = ArtifactComponentApiUpdateSchema;
225006
225152
  exports.ArtifactComponentInsertSchema = ArtifactComponentInsertSchema;
225153
+ exports.ArtifactComponentListResponse = ArtifactComponentListResponse;
225154
+ exports.ArtifactComponentResponse = ArtifactComponentResponse;
225007
225155
  exports.ArtifactComponentSelectSchema = ArtifactComponentSelectSchema;
225008
225156
  exports.ArtifactComponentUpdateSchema = ArtifactComponentUpdateSchema;
225009
225157
  exports.CanUseItemSchema = CanUseItemSchema;
@@ -225019,6 +225167,8 @@ exports.ContextConfigApiSelectSchema = ContextConfigApiSelectSchema;
225019
225167
  exports.ContextConfigApiUpdateSchema = ContextConfigApiUpdateSchema;
225020
225168
  exports.ContextConfigBuilder = ContextConfigBuilder;
225021
225169
  exports.ContextConfigInsertSchema = ContextConfigInsertSchema;
225170
+ exports.ContextConfigListResponse = ContextConfigListResponse;
225171
+ exports.ContextConfigResponse = ContextConfigResponse;
225022
225172
  exports.ContextConfigSelectSchema = ContextConfigSelectSchema;
225023
225173
  exports.ContextConfigUpdateSchema = ContextConfigUpdateSchema;
225024
225174
  exports.ContextFetcher = ContextFetcher;
@@ -225027,12 +225177,16 @@ exports.ConversationApiInsertSchema = ConversationApiInsertSchema;
225027
225177
  exports.ConversationApiSelectSchema = ConversationApiSelectSchema;
225028
225178
  exports.ConversationApiUpdateSchema = ConversationApiUpdateSchema;
225029
225179
  exports.ConversationInsertSchema = ConversationInsertSchema;
225180
+ exports.ConversationListResponse = ConversationListResponse;
225181
+ exports.ConversationResponse = ConversationResponse;
225030
225182
  exports.ConversationSelectSchema = ConversationSelectSchema;
225031
225183
  exports.ConversationUpdateSchema = ConversationUpdateSchema;
225032
225184
  exports.CredentialReferenceApiInsertSchema = CredentialReferenceApiInsertSchema;
225033
225185
  exports.CredentialReferenceApiSelectSchema = CredentialReferenceApiSelectSchema;
225034
225186
  exports.CredentialReferenceApiUpdateSchema = CredentialReferenceApiUpdateSchema;
225035
225187
  exports.CredentialReferenceInsertSchema = CredentialReferenceInsertSchema;
225188
+ exports.CredentialReferenceListResponse = CredentialReferenceListResponse;
225189
+ exports.CredentialReferenceResponse = CredentialReferenceResponse;
225036
225190
  exports.CredentialReferenceSelectSchema = CredentialReferenceSelectSchema;
225037
225191
  exports.CredentialReferenceUpdateSchema = CredentialReferenceUpdateSchema;
225038
225192
  exports.CredentialStoreRegistry = CredentialStoreRegistry;
@@ -225048,6 +225202,8 @@ exports.DataComponentApiSelectSchema = DataComponentApiSelectSchema;
225048
225202
  exports.DataComponentApiUpdateSchema = DataComponentApiUpdateSchema;
225049
225203
  exports.DataComponentBaseSchema = DataComponentBaseSchema;
225050
225204
  exports.DataComponentInsertSchema = DataComponentInsertSchema;
225205
+ exports.DataComponentListResponse = DataComponentListResponse;
225206
+ exports.DataComponentResponse = DataComponentResponse;
225051
225207
  exports.DataComponentSelectSchema = DataComponentSelectSchema;
225052
225208
  exports.DataComponentUpdateSchema = DataComponentUpdateSchema;
225053
225209
  exports.DataOperationDetailsSchema = DataOperationDetailsSchema;
@@ -225062,6 +225218,8 @@ exports.ExternalAgentApiInsertSchema = ExternalAgentApiInsertSchema;
225062
225218
  exports.ExternalAgentApiSelectSchema = ExternalAgentApiSelectSchema;
225063
225219
  exports.ExternalAgentApiUpdateSchema = ExternalAgentApiUpdateSchema;
225064
225220
  exports.ExternalAgentInsertSchema = ExternalAgentInsertSchema;
225221
+ exports.ExternalAgentListResponse = ExternalAgentListResponse;
225222
+ exports.ExternalAgentResponse = ExternalAgentResponse;
225065
225223
  exports.ExternalAgentSelectSchema = ExternalAgentSelectSchema;
225066
225224
  exports.ExternalAgentUpdateSchema = ExternalAgentUpdateSchema;
225067
225225
  exports.ExternalSubAgentRelationApiInsertSchema = ExternalSubAgentRelationApiInsertSchema;
@@ -225075,12 +225233,16 @@ exports.FunctionApiInsertSchema = FunctionApiInsertSchema;
225075
225233
  exports.FunctionApiSelectSchema = FunctionApiSelectSchema;
225076
225234
  exports.FunctionApiUpdateSchema = FunctionApiUpdateSchema;
225077
225235
  exports.FunctionInsertSchema = FunctionInsertSchema;
225236
+ exports.FunctionListResponse = FunctionListResponse;
225237
+ exports.FunctionResponse = FunctionResponse;
225078
225238
  exports.FunctionSelectSchema = FunctionSelectSchema;
225079
225239
  exports.FunctionToolApiInsertSchema = FunctionToolApiInsertSchema;
225080
225240
  exports.FunctionToolApiSelectSchema = FunctionToolApiSelectSchema;
225081
225241
  exports.FunctionToolApiUpdateSchema = FunctionToolApiUpdateSchema;
225082
225242
  exports.FunctionToolConfigSchema = FunctionToolConfigSchema;
225083
225243
  exports.FunctionToolInsertSchema = FunctionToolInsertSchema;
225244
+ exports.FunctionToolListResponse = FunctionToolListResponse;
225245
+ exports.FunctionToolResponse = FunctionToolResponse;
225084
225246
  exports.FunctionToolSelectSchema = FunctionToolSelectSchema;
225085
225247
  exports.FunctionToolUpdateSchema = FunctionToolUpdateSchema;
225086
225248
  exports.FunctionUpdateSchema = FunctionUpdateSchema;
@@ -225109,6 +225271,8 @@ exports.MessageApiInsertSchema = MessageApiInsertSchema;
225109
225271
  exports.MessageApiSelectSchema = MessageApiSelectSchema;
225110
225272
  exports.MessageApiUpdateSchema = MessageApiUpdateSchema;
225111
225273
  exports.MessageInsertSchema = MessageInsertSchema;
225274
+ exports.MessageListResponse = MessageListResponse;
225275
+ exports.MessageResponse = MessageResponse;
225112
225276
  exports.MessageSelectSchema = MessageSelectSchema;
225113
225277
  exports.MessageUpdateSchema = MessageUpdateSchema;
225114
225278
  exports.ModelSchema = ModelSchema;
@@ -225125,7 +225289,9 @@ exports.ProjectApiInsertSchema = ProjectApiInsertSchema;
225125
225289
  exports.ProjectApiSelectSchema = ProjectApiSelectSchema;
225126
225290
  exports.ProjectApiUpdateSchema = ProjectApiUpdateSchema;
225127
225291
  exports.ProjectInsertSchema = ProjectInsertSchema;
225292
+ exports.ProjectListResponse = ProjectListResponse;
225128
225293
  exports.ProjectModelSchema = ProjectModelSchema;
225294
+ exports.ProjectResponse = ProjectResponse;
225129
225295
  exports.ProjectSelectSchema = ProjectSelectSchema;
225130
225296
  exports.ProjectUpdateSchema = ProjectUpdateSchema;
225131
225297
  exports.QUERY_DEFAULTS = QUERY_DEFAULTS;
@@ -225148,28 +225314,38 @@ exports.SubAgentArtifactComponentApiInsertSchema = SubAgentArtifactComponentApiI
225148
225314
  exports.SubAgentArtifactComponentApiSelectSchema = SubAgentArtifactComponentApiSelectSchema;
225149
225315
  exports.SubAgentArtifactComponentApiUpdateSchema = SubAgentArtifactComponentApiUpdateSchema;
225150
225316
  exports.SubAgentArtifactComponentInsertSchema = SubAgentArtifactComponentInsertSchema;
225317
+ exports.SubAgentArtifactComponentListResponse = SubAgentArtifactComponentListResponse;
225318
+ exports.SubAgentArtifactComponentResponse = SubAgentArtifactComponentResponse;
225151
225319
  exports.SubAgentArtifactComponentSelectSchema = SubAgentArtifactComponentSelectSchema;
225152
225320
  exports.SubAgentArtifactComponentUpdateSchema = SubAgentArtifactComponentUpdateSchema;
225153
225321
  exports.SubAgentDataComponentApiInsertSchema = SubAgentDataComponentApiInsertSchema;
225154
225322
  exports.SubAgentDataComponentApiSelectSchema = SubAgentDataComponentApiSelectSchema;
225155
225323
  exports.SubAgentDataComponentApiUpdateSchema = SubAgentDataComponentApiUpdateSchema;
225156
225324
  exports.SubAgentDataComponentInsertSchema = SubAgentDataComponentInsertSchema;
225325
+ exports.SubAgentDataComponentListResponse = SubAgentDataComponentListResponse;
225326
+ exports.SubAgentDataComponentResponse = SubAgentDataComponentResponse;
225157
225327
  exports.SubAgentDataComponentSelectSchema = SubAgentDataComponentSelectSchema;
225158
225328
  exports.SubAgentDataComponentUpdateSchema = SubAgentDataComponentUpdateSchema;
225159
225329
  exports.SubAgentInsertSchema = SubAgentInsertSchema;
225330
+ exports.SubAgentListResponse = SubAgentListResponse;
225160
225331
  exports.SubAgentRelationApiInsertSchema = SubAgentRelationApiInsertSchema;
225161
225332
  exports.SubAgentRelationApiSelectSchema = SubAgentRelationApiSelectSchema;
225162
225333
  exports.SubAgentRelationApiUpdateSchema = SubAgentRelationApiUpdateSchema;
225163
225334
  exports.SubAgentRelationInsertSchema = SubAgentRelationInsertSchema;
225335
+ exports.SubAgentRelationListResponse = SubAgentRelationListResponse;
225164
225336
  exports.SubAgentRelationQuerySchema = SubAgentRelationQuerySchema;
225337
+ exports.SubAgentRelationResponse = SubAgentRelationResponse;
225165
225338
  exports.SubAgentRelationSelectSchema = SubAgentRelationSelectSchema;
225166
225339
  exports.SubAgentRelationUpdateSchema = SubAgentRelationUpdateSchema;
225340
+ exports.SubAgentResponse = SubAgentResponse;
225167
225341
  exports.SubAgentSelectSchema = SubAgentSelectSchema;
225168
225342
  exports.SubAgentStopWhenSchema = SubAgentStopWhenSchema;
225169
225343
  exports.SubAgentToolRelationApiInsertSchema = SubAgentToolRelationApiInsertSchema;
225170
225344
  exports.SubAgentToolRelationApiSelectSchema = SubAgentToolRelationApiSelectSchema;
225171
225345
  exports.SubAgentToolRelationApiUpdateSchema = SubAgentToolRelationApiUpdateSchema;
225172
225346
  exports.SubAgentToolRelationInsertSchema = SubAgentToolRelationInsertSchema;
225347
+ exports.SubAgentToolRelationListResponse = SubAgentToolRelationListResponse;
225348
+ exports.SubAgentToolRelationResponse = SubAgentToolRelationResponse;
225173
225349
  exports.SubAgentToolRelationSelectSchema = SubAgentToolRelationSelectSchema;
225174
225350
  exports.SubAgentToolRelationUpdateSchema = SubAgentToolRelationUpdateSchema;
225175
225351
  exports.SubAgentUpdateSchema = SubAgentUpdateSchema;
@@ -225202,6 +225378,8 @@ exports.ToolApiInsertSchema = ToolApiInsertSchema;
225202
225378
  exports.ToolApiSelectSchema = ToolApiSelectSchema;
225203
225379
  exports.ToolApiUpdateSchema = ToolApiUpdateSchema;
225204
225380
  exports.ToolInsertSchema = ToolInsertSchema;
225381
+ exports.ToolListResponse = ToolListResponse;
225382
+ exports.ToolResponse = ToolResponse;
225205
225383
  exports.ToolSelectSchema = ToolSelectSchema;
225206
225384
  exports.ToolStatusSchema = ToolStatusSchema;
225207
225385
  exports.ToolUpdateSchema = ToolUpdateSchema;