@inkeep/agents-core 0.0.0-dev-20251012070910 → 0.0.0-dev-20251012074449
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-CBYAUFSZ.js → chunk-4FMDWUE4.js} +1 -1
- package/dist/{chunk-BP22PPZQ.js → chunk-VICWT3WO.js} +94 -4
- package/dist/client-exports.cjs +108 -18
- package/dist/client-exports.d.cts +2 -2
- package/dist/client-exports.d.ts +2 -2
- package/dist/client-exports.js +2 -2
- package/dist/db/schema.d.cts +2 -2
- package/dist/db/schema.d.ts +2 -2
- package/dist/index.cjs +129 -3
- package/dist/index.d.cts +4 -4
- package/dist/index.d.ts +4 -4
- package/dist/index.js +5 -5
- package/dist/{schema-Dl66M9ug.d.cts → schema-CcSN2XcZ.d.cts} +1 -1
- package/dist/{schema-C1HkCVUi.d.ts → schema-D8h85qdU.d.ts} +1 -1
- package/dist/types/index.d.cts +2 -2
- package/dist/types/index.d.ts +2 -2
- package/dist/{utility-C81bmoNF.d.cts → utility-HqRMF7sM.d.cts} +1605 -1
- package/dist/{utility-C81bmoNF.d.ts → utility-HqRMF7sM.d.ts} +1605 -1
- package/dist/validation/index.cjs +129 -3
- package/dist/validation/index.d.cts +2 -2
- package/dist/validation/index.d.ts +2 -2
- package/dist/validation/index.js +2 -2
- package/package.json +1 -1
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { AgentWithinContextOfProjectSchema, resourceIdSchema, MAX_ID_LENGTH } from './chunk-
|
|
1
|
+
import { AgentWithinContextOfProjectSchema, resourceIdSchema, MAX_ID_LENGTH } from './chunk-VICWT3WO.js';
|
|
2
2
|
import { z } from 'zod';
|
|
3
3
|
|
|
4
4
|
var TransferDataSchema = z.object({
|
|
@@ -621,14 +621,14 @@ var ErrorResponseSchema = z.object({
|
|
|
621
621
|
details: z.any().optional().openapi({
|
|
622
622
|
description: "Additional error details"
|
|
623
623
|
})
|
|
624
|
-
});
|
|
624
|
+
}).openapi("ErrorResponse");
|
|
625
625
|
var ExistsResponseSchema = z.object({
|
|
626
626
|
exists: z.boolean()
|
|
627
|
-
});
|
|
627
|
+
}).openapi("ExistsResponse");
|
|
628
628
|
var RemovedResponseSchema = z.object({
|
|
629
629
|
message: z.string(),
|
|
630
630
|
removed: z.boolean()
|
|
631
|
-
});
|
|
631
|
+
}).openapi("RemovedResponse");
|
|
632
632
|
var ProjectSelectSchema = createSelectSchema(projects);
|
|
633
633
|
var ProjectInsertSchema = createInsertSchema(projects).extend({
|
|
634
634
|
models: ProjectModelSchema,
|
|
@@ -659,6 +659,96 @@ var FullProjectDefinitionSchema = ProjectApiInsertSchema.extend({
|
|
|
659
659
|
createdAt: z.string().optional(),
|
|
660
660
|
updatedAt: z.string().optional()
|
|
661
661
|
});
|
|
662
|
+
var ProjectResponse = z.object({ data: ProjectApiSelectSchema }).openapi("ProjectResponse");
|
|
663
|
+
var SubAgentResponse = z.object({ data: SubAgentApiSelectSchema }).openapi("SubAgentResponse");
|
|
664
|
+
var AgentResponse = z.object({ data: AgentApiSelectSchema }).openapi("AgentResponse");
|
|
665
|
+
var ToolResponse = z.object({ data: ToolApiSelectSchema }).openapi("ToolResponse");
|
|
666
|
+
var ExternalAgentResponse = z.object({ data: ExternalAgentApiSelectSchema }).openapi("ExternalAgentResponse");
|
|
667
|
+
var ContextConfigResponse = z.object({ data: ContextConfigApiSelectSchema }).openapi("ContextConfigResponse");
|
|
668
|
+
var ApiKeyResponse = z.object({ data: ApiKeyApiSelectSchema }).openapi("ApiKeyResponse");
|
|
669
|
+
var CredentialReferenceResponse = z.object({ data: CredentialReferenceApiSelectSchema }).openapi("CredentialReferenceResponse");
|
|
670
|
+
var FunctionResponse = z.object({ data: FunctionApiSelectSchema }).openapi("FunctionResponse");
|
|
671
|
+
var FunctionToolResponse = z.object({ data: FunctionToolApiSelectSchema }).openapi("FunctionToolResponse");
|
|
672
|
+
var DataComponentResponse = z.object({ data: DataComponentApiSelectSchema }).openapi("DataComponentResponse");
|
|
673
|
+
var ArtifactComponentResponse = z.object({ data: ArtifactComponentApiSelectSchema }).openapi("ArtifactComponentResponse");
|
|
674
|
+
var SubAgentRelationResponse = z.object({ data: SubAgentRelationApiSelectSchema }).openapi("SubAgentRelationResponse");
|
|
675
|
+
var SubAgentToolRelationResponse = z.object({ data: SubAgentToolRelationApiSelectSchema }).openapi("SubAgentToolRelationResponse");
|
|
676
|
+
var ConversationResponse = z.object({ data: ConversationApiSelectSchema }).openapi("ConversationResponse");
|
|
677
|
+
var MessageResponse = z.object({ data: MessageApiSelectSchema }).openapi("MessageResponse");
|
|
678
|
+
var ProjectListResponse = z.object({
|
|
679
|
+
data: z.array(ProjectApiSelectSchema),
|
|
680
|
+
pagination: PaginationSchema
|
|
681
|
+
}).openapi("ProjectListResponse");
|
|
682
|
+
var SubAgentListResponse = z.object({
|
|
683
|
+
data: z.array(SubAgentApiSelectSchema),
|
|
684
|
+
pagination: PaginationSchema
|
|
685
|
+
}).openapi("SubAgentListResponse");
|
|
686
|
+
var AgentListResponse = z.object({
|
|
687
|
+
data: z.array(AgentApiSelectSchema),
|
|
688
|
+
pagination: PaginationSchema
|
|
689
|
+
}).openapi("AgentListResponse");
|
|
690
|
+
var ToolListResponse = z.object({
|
|
691
|
+
data: z.array(ToolApiSelectSchema),
|
|
692
|
+
pagination: PaginationSchema
|
|
693
|
+
}).openapi("ToolListResponse");
|
|
694
|
+
var ExternalAgentListResponse = z.object({
|
|
695
|
+
data: z.array(ExternalAgentApiSelectSchema),
|
|
696
|
+
pagination: PaginationSchema
|
|
697
|
+
}).openapi("ExternalAgentListResponse");
|
|
698
|
+
var ContextConfigListResponse = z.object({
|
|
699
|
+
data: z.array(ContextConfigApiSelectSchema),
|
|
700
|
+
pagination: PaginationSchema
|
|
701
|
+
}).openapi("ContextConfigListResponse");
|
|
702
|
+
var ApiKeyListResponse = z.object({
|
|
703
|
+
data: z.array(ApiKeyApiSelectSchema),
|
|
704
|
+
pagination: PaginationSchema
|
|
705
|
+
}).openapi("ApiKeyListResponse");
|
|
706
|
+
var CredentialReferenceListResponse = z.object({
|
|
707
|
+
data: z.array(CredentialReferenceApiSelectSchema),
|
|
708
|
+
pagination: PaginationSchema
|
|
709
|
+
}).openapi("CredentialReferenceListResponse");
|
|
710
|
+
var FunctionListResponse = z.object({
|
|
711
|
+
data: z.array(FunctionApiSelectSchema),
|
|
712
|
+
pagination: PaginationSchema
|
|
713
|
+
}).openapi("FunctionListResponse");
|
|
714
|
+
var FunctionToolListResponse = z.object({
|
|
715
|
+
data: z.array(FunctionToolApiSelectSchema),
|
|
716
|
+
pagination: PaginationSchema
|
|
717
|
+
}).openapi("FunctionToolListResponse");
|
|
718
|
+
var DataComponentListResponse = z.object({
|
|
719
|
+
data: z.array(DataComponentApiSelectSchema),
|
|
720
|
+
pagination: PaginationSchema
|
|
721
|
+
}).openapi("DataComponentListResponse");
|
|
722
|
+
var ArtifactComponentListResponse = z.object({
|
|
723
|
+
data: z.array(ArtifactComponentApiSelectSchema),
|
|
724
|
+
pagination: PaginationSchema
|
|
725
|
+
}).openapi("ArtifactComponentListResponse");
|
|
726
|
+
var SubAgentRelationListResponse = z.object({
|
|
727
|
+
data: z.array(SubAgentRelationApiSelectSchema),
|
|
728
|
+
pagination: PaginationSchema
|
|
729
|
+
}).openapi("SubAgentRelationListResponse");
|
|
730
|
+
var SubAgentToolRelationListResponse = z.object({
|
|
731
|
+
data: z.array(SubAgentToolRelationApiSelectSchema),
|
|
732
|
+
pagination: PaginationSchema
|
|
733
|
+
}).openapi("SubAgentToolRelationListResponse");
|
|
734
|
+
var ConversationListResponse = z.object({
|
|
735
|
+
data: z.array(ConversationApiSelectSchema),
|
|
736
|
+
pagination: PaginationSchema
|
|
737
|
+
}).openapi("ConversationListResponse");
|
|
738
|
+
var MessageListResponse = z.object({
|
|
739
|
+
data: z.array(MessageApiSelectSchema),
|
|
740
|
+
pagination: PaginationSchema
|
|
741
|
+
}).openapi("MessageListResponse");
|
|
742
|
+
var SubAgentDataComponentResponse = z.object({ data: SubAgentDataComponentApiSelectSchema }).openapi("SubAgentDataComponentResponse");
|
|
743
|
+
var SubAgentArtifactComponentResponse = z.object({ data: SubAgentArtifactComponentApiSelectSchema }).openapi("SubAgentArtifactComponentResponse");
|
|
744
|
+
var SubAgentDataComponentListResponse = z.object({
|
|
745
|
+
data: z.array(SubAgentDataComponentApiSelectSchema),
|
|
746
|
+
pagination: PaginationSchema
|
|
747
|
+
}).openapi("SubAgentDataComponentListResponse");
|
|
748
|
+
var SubAgentArtifactComponentListResponse = z.object({
|
|
749
|
+
data: z.array(SubAgentArtifactComponentApiSelectSchema),
|
|
750
|
+
pagination: PaginationSchema
|
|
751
|
+
}).openapi("SubAgentArtifactComponentListResponse");
|
|
662
752
|
var HeadersScopeSchema = z.object({
|
|
663
753
|
"x-inkeep-tenant-id": z.string().optional().openapi({
|
|
664
754
|
description: "Tenant identifier",
|
|
@@ -820,4 +910,4 @@ function validatePropsAsJsonSchema(props) {
|
|
|
820
910
|
}
|
|
821
911
|
}
|
|
822
912
|
|
|
823
|
-
export { AgentApiInsertSchema, AgentApiSelectSchema, AgentApiUpdateSchema, AgentInsertSchema, AgentSelectSchema, AgentStopWhenSchema, AgentUpdateSchema, AgentWithinContextOfProjectSchema, AllAgentSchema, ApiKeyApiCreationResponseSchema, ApiKeyApiInsertSchema, ApiKeyApiSelectSchema, ApiKeyApiUpdateSchema, ApiKeyInsertSchema, ApiKeySelectSchema, ApiKeyUpdateSchema, ArtifactComponentApiInsertSchema, ArtifactComponentApiSelectSchema, ArtifactComponentApiUpdateSchema, ArtifactComponentInsertSchema, ArtifactComponentSelectSchema, ArtifactComponentUpdateSchema, CanUseItemSchema, 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, ExternalAgentSelectSchema, ExternalAgentUpdateSchema, ExternalSubAgentRelationApiInsertSchema, ExternalSubAgentRelationInsertSchema, FetchConfigSchema, FetchDefinitionSchema, FullAgentAgentInsertSchema, FullProjectDefinitionSchema, FunctionApiInsertSchema, FunctionApiSelectSchema, FunctionApiUpdateSchema, FunctionInsertSchema, FunctionSelectSchema, FunctionToolApiInsertSchema, FunctionToolApiSelectSchema, FunctionToolApiUpdateSchema, FunctionToolConfigSchema, FunctionToolInsertSchema, FunctionToolSelectSchema, FunctionToolUpdateSchema, FunctionUpdateSchema, HeadersScopeSchema, 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, SandboxConfigSchema, SingleResponseSchema, StatusComponentSchema, StatusUpdateSchema, StopWhenSchema, SubAgentApiInsertSchema, SubAgentApiSelectSchema, SubAgentApiUpdateSchema, SubAgentArtifactComponentApiInsertSchema, SubAgentArtifactComponentApiSelectSchema, SubAgentArtifactComponentApiUpdateSchema, SubAgentArtifactComponentInsertSchema, SubAgentArtifactComponentSelectSchema, SubAgentArtifactComponentUpdateSchema, SubAgentDataComponentApiInsertSchema, SubAgentDataComponentApiSelectSchema, SubAgentDataComponentApiUpdateSchema, SubAgentDataComponentInsertSchema, SubAgentDataComponentSelectSchema, SubAgentDataComponentUpdateSchema, SubAgentInsertSchema, SubAgentRelationApiInsertSchema, SubAgentRelationApiSelectSchema, SubAgentRelationApiUpdateSchema, SubAgentRelationInsertSchema, SubAgentRelationQuerySchema, SubAgentRelationSelectSchema, SubAgentRelationUpdateSchema, SubAgentSelectSchema, SubAgentStopWhenSchema, SubAgentToolRelationApiInsertSchema, SubAgentToolRelationApiSelectSchema, SubAgentToolRelationApiUpdateSchema, SubAgentToolRelationInsertSchema, SubAgentToolRelationSelectSchema, SubAgentToolRelationUpdateSchema, SubAgentUpdateSchema, TaskApiInsertSchema, TaskApiSelectSchema, TaskApiUpdateSchema, TaskInsertSchema, TaskRelationApiInsertSchema, TaskRelationApiSelectSchema, TaskRelationApiUpdateSchema, TaskRelationInsertSchema, TaskRelationSelectSchema, TaskRelationUpdateSchema, TaskSelectSchema, TaskUpdateSchema, TenantIdParamsSchema, TenantParamsSchema, TenantProjectAgentIdParamsSchema, TenantProjectAgentParamsSchema, TenantProjectAgentSubAgentIdParamsSchema, TenantProjectAgentSubAgentParamsSchema, TenantProjectIdParamsSchema, TenantProjectParamsSchema, ToolApiInsertSchema, ToolApiSelectSchema, ToolApiUpdateSchema, ToolInsertSchema, ToolSelectSchema, ToolStatusSchema, ToolUpdateSchema, URL_SAFE_ID_PATTERN, resourceIdSchema, validatePropsAsJsonSchema };
|
|
913
|
+
export { AgentApiInsertSchema, AgentApiSelectSchema, AgentApiUpdateSchema, AgentInsertSchema, AgentListResponse, AgentResponse, AgentSelectSchema, AgentStopWhenSchema, AgentUpdateSchema, AgentWithinContextOfProjectSchema, AllAgentSchema, ApiKeyApiCreationResponseSchema, ApiKeyApiInsertSchema, ApiKeyApiSelectSchema, ApiKeyApiUpdateSchema, ApiKeyInsertSchema, ApiKeyListResponse, ApiKeyResponse, ApiKeySelectSchema, ApiKeyUpdateSchema, ArtifactComponentApiInsertSchema, ArtifactComponentApiSelectSchema, ArtifactComponentApiUpdateSchema, ArtifactComponentInsertSchema, ArtifactComponentListResponse, ArtifactComponentResponse, ArtifactComponentSelectSchema, ArtifactComponentUpdateSchema, CanUseItemSchema, ContextCacheApiInsertSchema, ContextCacheApiSelectSchema, ContextCacheApiUpdateSchema, ContextCacheInsertSchema, ContextCacheSelectSchema, ContextCacheUpdateSchema, ContextConfigApiInsertSchema, ContextConfigApiSelectSchema, ContextConfigApiUpdateSchema, ContextConfigInsertSchema, ContextConfigListResponse, ContextConfigResponse, ContextConfigSelectSchema, ContextConfigUpdateSchema, ConversationApiInsertSchema, ConversationApiSelectSchema, ConversationApiUpdateSchema, ConversationInsertSchema, ConversationListResponse, ConversationResponse, ConversationSelectSchema, ConversationUpdateSchema, CredentialReferenceApiInsertSchema, CredentialReferenceApiSelectSchema, CredentialReferenceApiUpdateSchema, CredentialReferenceInsertSchema, CredentialReferenceListResponse, CredentialReferenceResponse, CredentialReferenceSelectSchema, CredentialReferenceUpdateSchema, DataComponentApiInsertSchema, DataComponentApiSelectSchema, DataComponentApiUpdateSchema, DataComponentBaseSchema, DataComponentInsertSchema, DataComponentListResponse, DataComponentResponse, DataComponentSelectSchema, DataComponentUpdateSchema, ErrorResponseSchema, ExistsResponseSchema, ExternalAgentApiInsertSchema, ExternalAgentApiSelectSchema, ExternalAgentApiUpdateSchema, ExternalAgentInsertSchema, ExternalAgentListResponse, ExternalAgentResponse, ExternalAgentSelectSchema, ExternalAgentUpdateSchema, ExternalSubAgentRelationApiInsertSchema, ExternalSubAgentRelationInsertSchema, FetchConfigSchema, FetchDefinitionSchema, FullAgentAgentInsertSchema, FullProjectDefinitionSchema, FunctionApiInsertSchema, FunctionApiSelectSchema, FunctionApiUpdateSchema, FunctionInsertSchema, FunctionListResponse, FunctionResponse, FunctionSelectSchema, FunctionToolApiInsertSchema, FunctionToolApiSelectSchema, FunctionToolApiUpdateSchema, FunctionToolConfigSchema, FunctionToolInsertSchema, FunctionToolListResponse, FunctionToolResponse, FunctionToolSelectSchema, FunctionToolUpdateSchema, FunctionUpdateSchema, HeadersScopeSchema, LedgerArtifactApiInsertSchema, LedgerArtifactApiSelectSchema, LedgerArtifactApiUpdateSchema, LedgerArtifactInsertSchema, LedgerArtifactSelectSchema, LedgerArtifactUpdateSchema, ListResponseSchema, MAX_ID_LENGTH, MCPToolConfigSchema, MIN_ID_LENGTH, McpToolDefinitionSchema, McpToolSchema, McpTransportConfigSchema, MessageApiInsertSchema, MessageApiSelectSchema, MessageApiUpdateSchema, MessageInsertSchema, MessageListResponse, MessageResponse, MessageSelectSchema, MessageUpdateSchema, ModelSchema, ModelSettingsSchema, PaginationQueryParamsSchema, PaginationSchema, ProjectApiInsertSchema, ProjectApiSelectSchema, ProjectApiUpdateSchema, ProjectInsertSchema, ProjectListResponse, ProjectModelSchema, ProjectResponse, ProjectSelectSchema, ProjectUpdateSchema, RemovedResponseSchema, SandboxConfigSchema, SingleResponseSchema, StatusComponentSchema, StatusUpdateSchema, StopWhenSchema, SubAgentApiInsertSchema, SubAgentApiSelectSchema, SubAgentApiUpdateSchema, SubAgentArtifactComponentApiInsertSchema, SubAgentArtifactComponentApiSelectSchema, SubAgentArtifactComponentApiUpdateSchema, SubAgentArtifactComponentInsertSchema, SubAgentArtifactComponentListResponse, SubAgentArtifactComponentResponse, SubAgentArtifactComponentSelectSchema, SubAgentArtifactComponentUpdateSchema, SubAgentDataComponentApiInsertSchema, SubAgentDataComponentApiSelectSchema, SubAgentDataComponentApiUpdateSchema, SubAgentDataComponentInsertSchema, SubAgentDataComponentListResponse, SubAgentDataComponentResponse, SubAgentDataComponentSelectSchema, SubAgentDataComponentUpdateSchema, SubAgentInsertSchema, SubAgentListResponse, SubAgentRelationApiInsertSchema, SubAgentRelationApiSelectSchema, SubAgentRelationApiUpdateSchema, SubAgentRelationInsertSchema, SubAgentRelationListResponse, SubAgentRelationQuerySchema, SubAgentRelationResponse, SubAgentRelationSelectSchema, SubAgentRelationUpdateSchema, SubAgentResponse, SubAgentSelectSchema, SubAgentStopWhenSchema, SubAgentToolRelationApiInsertSchema, SubAgentToolRelationApiSelectSchema, SubAgentToolRelationApiUpdateSchema, SubAgentToolRelationInsertSchema, SubAgentToolRelationListResponse, SubAgentToolRelationResponse, SubAgentToolRelationSelectSchema, SubAgentToolRelationUpdateSchema, SubAgentUpdateSchema, TaskApiInsertSchema, TaskApiSelectSchema, TaskApiUpdateSchema, TaskInsertSchema, TaskRelationApiInsertSchema, TaskRelationApiSelectSchema, TaskRelationApiUpdateSchema, TaskRelationInsertSchema, TaskRelationSelectSchema, TaskRelationUpdateSchema, TaskSelectSchema, TaskUpdateSchema, TenantIdParamsSchema, TenantParamsSchema, TenantProjectAgentIdParamsSchema, TenantProjectAgentParamsSchema, TenantProjectAgentSubAgentIdParamsSchema, TenantProjectAgentSubAgentParamsSchema, TenantProjectIdParamsSchema, TenantProjectParamsSchema, ToolApiInsertSchema, ToolApiSelectSchema, ToolApiUpdateSchema, ToolInsertSchema, ToolListResponse, ToolResponse, ToolSelectSchema, ToolStatusSchema, ToolUpdateSchema, URL_SAFE_ID_PATTERN, resourceIdSchema, validatePropsAsJsonSchema };
|
package/dist/client-exports.cjs
CHANGED
|
@@ -969,7 +969,7 @@ var SubAgentRelationInsertSchema = drizzleZod.createInsertSchema(subAgentRelatio
|
|
|
969
969
|
externalSubAgentId: resourceIdSchema.optional()
|
|
970
970
|
});
|
|
971
971
|
var SubAgentRelationUpdateSchema = SubAgentRelationInsertSchema.partial();
|
|
972
|
-
createAgentScopedApiSchema(
|
|
972
|
+
var SubAgentRelationApiSelectSchema = createAgentScopedApiSchema(
|
|
973
973
|
SubAgentRelationSelectSchema
|
|
974
974
|
).openapi("SubAgentRelation");
|
|
975
975
|
createAgentScopedApiInsertSchema(
|
|
@@ -1024,7 +1024,7 @@ var AgentInsertSchema = drizzleZod.createInsertSchema(agents).extend({
|
|
|
1024
1024
|
id: resourceIdSchema
|
|
1025
1025
|
});
|
|
1026
1026
|
var AgentUpdateSchema = AgentInsertSchema.partial();
|
|
1027
|
-
createApiSchema(AgentSelectSchema).openapi("Agent");
|
|
1027
|
+
var AgentApiSelectSchema = createApiSchema(AgentSelectSchema).openapi("Agent");
|
|
1028
1028
|
var AgentApiInsertSchema = createApiInsertSchema(AgentInsertSchema).extend({
|
|
1029
1029
|
id: resourceIdSchema
|
|
1030
1030
|
}).openapi("AgentCreate");
|
|
@@ -1115,7 +1115,7 @@ var ConversationInsertSchema = drizzleZod.createInsertSchema(conversations).exte
|
|
|
1115
1115
|
contextConfigId: resourceIdSchema.optional()
|
|
1116
1116
|
});
|
|
1117
1117
|
var ConversationUpdateSchema = ConversationInsertSchema.partial();
|
|
1118
|
-
createApiSchema(ConversationSelectSchema).openapi(
|
|
1118
|
+
var ConversationApiSelectSchema = createApiSchema(ConversationSelectSchema).openapi(
|
|
1119
1119
|
"Conversation"
|
|
1120
1120
|
);
|
|
1121
1121
|
createApiInsertSchema(ConversationInsertSchema).openapi(
|
|
@@ -1131,7 +1131,7 @@ var MessageInsertSchema = drizzleZod.createInsertSchema(messages).extend({
|
|
|
1131
1131
|
taskId: resourceIdSchema.optional()
|
|
1132
1132
|
});
|
|
1133
1133
|
var MessageUpdateSchema = MessageInsertSchema.partial();
|
|
1134
|
-
createApiSchema(MessageSelectSchema).openapi("Message");
|
|
1134
|
+
var MessageApiSelectSchema = createApiSchema(MessageSelectSchema).openapi("Message");
|
|
1135
1135
|
createApiInsertSchema(MessageInsertSchema).openapi(
|
|
1136
1136
|
"MessageCreate"
|
|
1137
1137
|
);
|
|
@@ -1153,7 +1153,7 @@ DataComponentInsertSchema.omit({
|
|
|
1153
1153
|
updatedAt: true
|
|
1154
1154
|
});
|
|
1155
1155
|
var DataComponentUpdateSchema = DataComponentInsertSchema.partial();
|
|
1156
|
-
createApiSchema(
|
|
1156
|
+
var DataComponentApiSelectSchema = createApiSchema(
|
|
1157
1157
|
DataComponentSelectSchema
|
|
1158
1158
|
).openapi("DataComponent");
|
|
1159
1159
|
var DataComponentApiInsertSchema = createApiInsertSchema(
|
|
@@ -1165,7 +1165,7 @@ createApiUpdateSchema(
|
|
|
1165
1165
|
var SubAgentDataComponentSelectSchema = drizzleZod.createSelectSchema(subAgentDataComponents);
|
|
1166
1166
|
var SubAgentDataComponentInsertSchema = drizzleZod.createInsertSchema(subAgentDataComponents);
|
|
1167
1167
|
var SubAgentDataComponentUpdateSchema = SubAgentDataComponentInsertSchema.partial();
|
|
1168
|
-
createAgentScopedApiSchema(
|
|
1168
|
+
var SubAgentDataComponentApiSelectSchema = createAgentScopedApiSchema(
|
|
1169
1169
|
SubAgentDataComponentSelectSchema
|
|
1170
1170
|
);
|
|
1171
1171
|
SubAgentDataComponentInsertSchema.omit({
|
|
@@ -1182,7 +1182,7 @@ var ArtifactComponentInsertSchema = drizzleZod.createInsertSchema(artifactCompon
|
|
|
1182
1182
|
id: resourceIdSchema
|
|
1183
1183
|
});
|
|
1184
1184
|
var ArtifactComponentUpdateSchema = ArtifactComponentInsertSchema.partial();
|
|
1185
|
-
createApiSchema(
|
|
1185
|
+
var ArtifactComponentApiSelectSchema = createApiSchema(
|
|
1186
1186
|
ArtifactComponentSelectSchema
|
|
1187
1187
|
).openapi("ArtifactComponent");
|
|
1188
1188
|
var ArtifactComponentApiInsertSchema = ArtifactComponentInsertSchema.omit({
|
|
@@ -1203,7 +1203,7 @@ var SubAgentArtifactComponentInsertSchema = drizzleZod.createInsertSchema(
|
|
|
1203
1203
|
artifactComponentId: resourceIdSchema
|
|
1204
1204
|
});
|
|
1205
1205
|
var SubAgentArtifactComponentUpdateSchema = SubAgentArtifactComponentInsertSchema.partial();
|
|
1206
|
-
createAgentScopedApiSchema(
|
|
1206
|
+
var SubAgentArtifactComponentApiSelectSchema = createAgentScopedApiSchema(
|
|
1207
1207
|
SubAgentArtifactComponentSelectSchema
|
|
1208
1208
|
);
|
|
1209
1209
|
SubAgentArtifactComponentInsertSchema.omit({
|
|
@@ -1294,7 +1294,7 @@ var CredentialReferenceInsertSchema = drizzleZod.createInsertSchema(credentialRe
|
|
|
1294
1294
|
retrievalParams: zodOpenapi.z.record(zodOpenapi.z.string(), zodOpenapi.z.unknown()).nullish()
|
|
1295
1295
|
});
|
|
1296
1296
|
var CredentialReferenceUpdateSchema = CredentialReferenceInsertSchema.partial();
|
|
1297
|
-
createApiSchema(
|
|
1297
|
+
var CredentialReferenceApiSelectSchema = createApiSchema(
|
|
1298
1298
|
CredentialReferenceSelectSchema
|
|
1299
1299
|
).extend({
|
|
1300
1300
|
type: zodOpenapi.z.enum(CredentialStoreType),
|
|
@@ -1338,7 +1338,7 @@ McpToolSchema.omit({
|
|
|
1338
1338
|
credential: CredentialReferenceApiInsertSchema.optional()
|
|
1339
1339
|
});
|
|
1340
1340
|
var ToolUpdateSchema = ToolInsertSchema.partial();
|
|
1341
|
-
createApiSchema(ToolSelectSchema).openapi("Tool");
|
|
1341
|
+
var ToolApiSelectSchema = createApiSchema(ToolSelectSchema).openapi("Tool");
|
|
1342
1342
|
var ToolApiInsertSchema = createApiInsertSchema(ToolInsertSchema).openapi("ToolCreate");
|
|
1343
1343
|
createApiUpdateSchema(ToolUpdateSchema).openapi("ToolUpdate");
|
|
1344
1344
|
var FunctionToolSelectSchema = drizzleZod.createSelectSchema(functionTools);
|
|
@@ -1346,7 +1346,7 @@ var FunctionToolInsertSchema = drizzleZod.createInsertSchema(functionTools).exte
|
|
|
1346
1346
|
id: resourceIdSchema
|
|
1347
1347
|
});
|
|
1348
1348
|
var FunctionToolUpdateSchema = FunctionToolInsertSchema.partial();
|
|
1349
|
-
createApiSchema(FunctionToolSelectSchema).openapi(
|
|
1349
|
+
var FunctionToolApiSelectSchema = createApiSchema(FunctionToolSelectSchema).openapi(
|
|
1350
1350
|
"FunctionTool"
|
|
1351
1351
|
);
|
|
1352
1352
|
var FunctionToolApiInsertSchema = createAgentScopedApiInsertSchema(
|
|
@@ -1409,7 +1409,7 @@ var ContextConfigInsertSchema = drizzleZod.createInsertSchema(contextConfigs).ex
|
|
|
1409
1409
|
updatedAt: true
|
|
1410
1410
|
});
|
|
1411
1411
|
var ContextConfigUpdateSchema = ContextConfigInsertSchema.partial();
|
|
1412
|
-
createApiSchema(ContextConfigSelectSchema).omit({
|
|
1412
|
+
var ContextConfigApiSelectSchema = createApiSchema(ContextConfigSelectSchema).omit({
|
|
1413
1413
|
agentId: true
|
|
1414
1414
|
}).openapi("ContextConfig");
|
|
1415
1415
|
var ContextConfigApiInsertSchema = createApiInsertSchema(ContextConfigInsertSchema).omit({
|
|
@@ -1427,7 +1427,7 @@ var SubAgentToolRelationInsertSchema = drizzleZod.createInsertSchema(subAgentToo
|
|
|
1427
1427
|
headers: zodOpenapi.z.record(zodOpenapi.z.string(), zodOpenapi.z.string()).nullish()
|
|
1428
1428
|
});
|
|
1429
1429
|
var SubAgentToolRelationUpdateSchema = SubAgentToolRelationInsertSchema.partial();
|
|
1430
|
-
createAgentScopedApiSchema(
|
|
1430
|
+
var SubAgentToolRelationApiSelectSchema = createAgentScopedApiSchema(
|
|
1431
1431
|
SubAgentToolRelationSelectSchema
|
|
1432
1432
|
).openapi("SubAgentToolRelation");
|
|
1433
1433
|
createAgentScopedApiInsertSchema(
|
|
@@ -1491,7 +1491,7 @@ var AgentWithinContextOfProjectSchema = AgentApiInsertSchema.extend({
|
|
|
1491
1491
|
stopWhen: AgentStopWhenSchema.optional(),
|
|
1492
1492
|
prompt: zodOpenapi.z.string().max(5e3, "Agent prompt cannot exceed 5000 characters").optional()
|
|
1493
1493
|
});
|
|
1494
|
-
zodOpenapi.z.object({
|
|
1494
|
+
var PaginationSchema = zodOpenapi.z.object({
|
|
1495
1495
|
page: zodOpenapi.z.coerce.number().min(1).default(1),
|
|
1496
1496
|
limit: zodOpenapi.z.coerce.number().min(1).max(100).default(10),
|
|
1497
1497
|
total: zodOpenapi.z.number(),
|
|
@@ -1503,14 +1503,14 @@ zodOpenapi.z.object({
|
|
|
1503
1503
|
details: zodOpenapi.z.any().optional().openapi({
|
|
1504
1504
|
description: "Additional error details"
|
|
1505
1505
|
})
|
|
1506
|
-
});
|
|
1506
|
+
}).openapi("ErrorResponse");
|
|
1507
1507
|
zodOpenapi.z.object({
|
|
1508
1508
|
exists: zodOpenapi.z.boolean()
|
|
1509
|
-
});
|
|
1509
|
+
}).openapi("ExistsResponse");
|
|
1510
1510
|
zodOpenapi.z.object({
|
|
1511
1511
|
message: zodOpenapi.z.string(),
|
|
1512
1512
|
removed: zodOpenapi.z.boolean()
|
|
1513
|
-
});
|
|
1513
|
+
}).openapi("RemovedResponse");
|
|
1514
1514
|
var ProjectSelectSchema = drizzleZod.createSelectSchema(projects);
|
|
1515
1515
|
var ProjectInsertSchema = drizzleZod.createInsertSchema(projects).extend({
|
|
1516
1516
|
models: ProjectModelSchema,
|
|
@@ -1521,7 +1521,7 @@ var ProjectInsertSchema = drizzleZod.createInsertSchema(projects).extend({
|
|
|
1521
1521
|
updatedAt: true
|
|
1522
1522
|
});
|
|
1523
1523
|
var ProjectUpdateSchema = ProjectInsertSchema.partial();
|
|
1524
|
-
ProjectSelectSchema.omit({ tenantId: true }).openapi(
|
|
1524
|
+
var ProjectApiSelectSchema = ProjectSelectSchema.omit({ tenantId: true }).openapi(
|
|
1525
1525
|
"Project"
|
|
1526
1526
|
);
|
|
1527
1527
|
var ProjectApiInsertSchema = ProjectInsertSchema.omit({ tenantId: true }).openapi(
|
|
@@ -1541,6 +1541,96 @@ ProjectApiInsertSchema.extend({
|
|
|
1541
1541
|
createdAt: zodOpenapi.z.string().optional(),
|
|
1542
1542
|
updatedAt: zodOpenapi.z.string().optional()
|
|
1543
1543
|
});
|
|
1544
|
+
zodOpenapi.z.object({ data: ProjectApiSelectSchema }).openapi("ProjectResponse");
|
|
1545
|
+
zodOpenapi.z.object({ data: SubAgentApiSelectSchema }).openapi("SubAgentResponse");
|
|
1546
|
+
zodOpenapi.z.object({ data: AgentApiSelectSchema }).openapi("AgentResponse");
|
|
1547
|
+
zodOpenapi.z.object({ data: ToolApiSelectSchema }).openapi("ToolResponse");
|
|
1548
|
+
zodOpenapi.z.object({ data: ExternalAgentApiSelectSchema }).openapi("ExternalAgentResponse");
|
|
1549
|
+
zodOpenapi.z.object({ data: ContextConfigApiSelectSchema }).openapi("ContextConfigResponse");
|
|
1550
|
+
zodOpenapi.z.object({ data: ApiKeyApiSelectSchema }).openapi("ApiKeyResponse");
|
|
1551
|
+
zodOpenapi.z.object({ data: CredentialReferenceApiSelectSchema }).openapi("CredentialReferenceResponse");
|
|
1552
|
+
zodOpenapi.z.object({ data: FunctionApiSelectSchema }).openapi("FunctionResponse");
|
|
1553
|
+
zodOpenapi.z.object({ data: FunctionToolApiSelectSchema }).openapi("FunctionToolResponse");
|
|
1554
|
+
zodOpenapi.z.object({ data: DataComponentApiSelectSchema }).openapi("DataComponentResponse");
|
|
1555
|
+
zodOpenapi.z.object({ data: ArtifactComponentApiSelectSchema }).openapi("ArtifactComponentResponse");
|
|
1556
|
+
zodOpenapi.z.object({ data: SubAgentRelationApiSelectSchema }).openapi("SubAgentRelationResponse");
|
|
1557
|
+
zodOpenapi.z.object({ data: SubAgentToolRelationApiSelectSchema }).openapi("SubAgentToolRelationResponse");
|
|
1558
|
+
zodOpenapi.z.object({ data: ConversationApiSelectSchema }).openapi("ConversationResponse");
|
|
1559
|
+
zodOpenapi.z.object({ data: MessageApiSelectSchema }).openapi("MessageResponse");
|
|
1560
|
+
zodOpenapi.z.object({
|
|
1561
|
+
data: zodOpenapi.z.array(ProjectApiSelectSchema),
|
|
1562
|
+
pagination: PaginationSchema
|
|
1563
|
+
}).openapi("ProjectListResponse");
|
|
1564
|
+
zodOpenapi.z.object({
|
|
1565
|
+
data: zodOpenapi.z.array(SubAgentApiSelectSchema),
|
|
1566
|
+
pagination: PaginationSchema
|
|
1567
|
+
}).openapi("SubAgentListResponse");
|
|
1568
|
+
zodOpenapi.z.object({
|
|
1569
|
+
data: zodOpenapi.z.array(AgentApiSelectSchema),
|
|
1570
|
+
pagination: PaginationSchema
|
|
1571
|
+
}).openapi("AgentListResponse");
|
|
1572
|
+
zodOpenapi.z.object({
|
|
1573
|
+
data: zodOpenapi.z.array(ToolApiSelectSchema),
|
|
1574
|
+
pagination: PaginationSchema
|
|
1575
|
+
}).openapi("ToolListResponse");
|
|
1576
|
+
zodOpenapi.z.object({
|
|
1577
|
+
data: zodOpenapi.z.array(ExternalAgentApiSelectSchema),
|
|
1578
|
+
pagination: PaginationSchema
|
|
1579
|
+
}).openapi("ExternalAgentListResponse");
|
|
1580
|
+
zodOpenapi.z.object({
|
|
1581
|
+
data: zodOpenapi.z.array(ContextConfigApiSelectSchema),
|
|
1582
|
+
pagination: PaginationSchema
|
|
1583
|
+
}).openapi("ContextConfigListResponse");
|
|
1584
|
+
zodOpenapi.z.object({
|
|
1585
|
+
data: zodOpenapi.z.array(ApiKeyApiSelectSchema),
|
|
1586
|
+
pagination: PaginationSchema
|
|
1587
|
+
}).openapi("ApiKeyListResponse");
|
|
1588
|
+
zodOpenapi.z.object({
|
|
1589
|
+
data: zodOpenapi.z.array(CredentialReferenceApiSelectSchema),
|
|
1590
|
+
pagination: PaginationSchema
|
|
1591
|
+
}).openapi("CredentialReferenceListResponse");
|
|
1592
|
+
zodOpenapi.z.object({
|
|
1593
|
+
data: zodOpenapi.z.array(FunctionApiSelectSchema),
|
|
1594
|
+
pagination: PaginationSchema
|
|
1595
|
+
}).openapi("FunctionListResponse");
|
|
1596
|
+
zodOpenapi.z.object({
|
|
1597
|
+
data: zodOpenapi.z.array(FunctionToolApiSelectSchema),
|
|
1598
|
+
pagination: PaginationSchema
|
|
1599
|
+
}).openapi("FunctionToolListResponse");
|
|
1600
|
+
zodOpenapi.z.object({
|
|
1601
|
+
data: zodOpenapi.z.array(DataComponentApiSelectSchema),
|
|
1602
|
+
pagination: PaginationSchema
|
|
1603
|
+
}).openapi("DataComponentListResponse");
|
|
1604
|
+
zodOpenapi.z.object({
|
|
1605
|
+
data: zodOpenapi.z.array(ArtifactComponentApiSelectSchema),
|
|
1606
|
+
pagination: PaginationSchema
|
|
1607
|
+
}).openapi("ArtifactComponentListResponse");
|
|
1608
|
+
zodOpenapi.z.object({
|
|
1609
|
+
data: zodOpenapi.z.array(SubAgentRelationApiSelectSchema),
|
|
1610
|
+
pagination: PaginationSchema
|
|
1611
|
+
}).openapi("SubAgentRelationListResponse");
|
|
1612
|
+
zodOpenapi.z.object({
|
|
1613
|
+
data: zodOpenapi.z.array(SubAgentToolRelationApiSelectSchema),
|
|
1614
|
+
pagination: PaginationSchema
|
|
1615
|
+
}).openapi("SubAgentToolRelationListResponse");
|
|
1616
|
+
zodOpenapi.z.object({
|
|
1617
|
+
data: zodOpenapi.z.array(ConversationApiSelectSchema),
|
|
1618
|
+
pagination: PaginationSchema
|
|
1619
|
+
}).openapi("ConversationListResponse");
|
|
1620
|
+
zodOpenapi.z.object({
|
|
1621
|
+
data: zodOpenapi.z.array(MessageApiSelectSchema),
|
|
1622
|
+
pagination: PaginationSchema
|
|
1623
|
+
}).openapi("MessageListResponse");
|
|
1624
|
+
zodOpenapi.z.object({ data: SubAgentDataComponentApiSelectSchema }).openapi("SubAgentDataComponentResponse");
|
|
1625
|
+
zodOpenapi.z.object({ data: SubAgentArtifactComponentApiSelectSchema }).openapi("SubAgentArtifactComponentResponse");
|
|
1626
|
+
zodOpenapi.z.object({
|
|
1627
|
+
data: zodOpenapi.z.array(SubAgentDataComponentApiSelectSchema),
|
|
1628
|
+
pagination: PaginationSchema
|
|
1629
|
+
}).openapi("SubAgentDataComponentListResponse");
|
|
1630
|
+
zodOpenapi.z.object({
|
|
1631
|
+
data: zodOpenapi.z.array(SubAgentArtifactComponentApiSelectSchema),
|
|
1632
|
+
pagination: PaginationSchema
|
|
1633
|
+
}).openapi("SubAgentArtifactComponentListResponse");
|
|
1544
1634
|
zodOpenapi.z.object({
|
|
1545
1635
|
"x-inkeep-tenant-id": zodOpenapi.z.string().optional().openapi({
|
|
1546
1636
|
description: "Tenant identifier",
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
export { h as ACTIVITY_NAMES, f as ACTIVITY_STATUS, e as ACTIVITY_TYPES, g as AGENT_IDS, o as AGGREGATE_OPERATORS, A as AI_OPERATIONS, i as AI_TOOL_TYPES, n as DATA_SOURCES, j as DATA_TYPES, D as DELEGATION_FROM_SUB_AGENT_ID, b as DELEGATION_ID, a as DELEGATION_TO_SUB_AGENT_ID, F as FIELD_TYPES, O as OPERATORS, l as ORDER_DIRECTIONS, P as PANEL_TYPES, p as QUERY_DEFAULTS, k as QUERY_EXPRESSIONS, Q as QUERY_FIELD_CONFIGS, m as QUERY_TYPES, R as REDUCE_OPERATIONS, d as SPAN_KEYS, S as SPAN_NAMES, T as TRANSFER_FROM_SUB_AGENT_ID, c as TRANSFER_TO_SUB_AGENT_ID, U as UNKNOWN_VALUE } from './signoz-queries-CuWMQh1H.cjs';
|
|
2
2
|
import { z } from 'zod';
|
|
3
|
-
import { C as ConversationHistoryConfig, F as FunctionApiInsertSchema, A as ApiKeyApiUpdateSchema, a as FullAgentAgentInsertSchema } from './utility-
|
|
4
|
-
export { e as AgentStopWhen, b as AgentStopWhenSchema, h as CredentialStoreType, j as FunctionApiSelectSchema, k as FunctionApiUpdateSchema, i as MCPTransportType, g as ModelSettings, M as ModelSettingsSchema, l as SandboxConfigSchema, d as StopWhen, S as StopWhenSchema, f as SubAgentStopWhen, c as SubAgentStopWhenSchema } from './utility-
|
|
3
|
+
import { C as ConversationHistoryConfig, F as FunctionApiInsertSchema, A as ApiKeyApiUpdateSchema, a as FullAgentAgentInsertSchema } from './utility-HqRMF7sM.cjs';
|
|
4
|
+
export { e as AgentStopWhen, b as AgentStopWhenSchema, h as CredentialStoreType, j as FunctionApiSelectSchema, k as FunctionApiUpdateSchema, i as MCPTransportType, g as ModelSettings, M as ModelSettingsSchema, l as SandboxConfigSchema, d as StopWhen, S as StopWhenSchema, f as SubAgentStopWhen, c as SubAgentStopWhenSchema } from './utility-HqRMF7sM.cjs';
|
|
5
5
|
export { v as validatePropsAsJsonSchema } from './props-validation-BMR1qNiy.cjs';
|
|
6
6
|
import 'drizzle-zod';
|
|
7
7
|
import 'drizzle-orm/sqlite-core';
|
package/dist/client-exports.d.ts
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
export { h as ACTIVITY_NAMES, f as ACTIVITY_STATUS, e as ACTIVITY_TYPES, g as AGENT_IDS, o as AGGREGATE_OPERATORS, A as AI_OPERATIONS, i as AI_TOOL_TYPES, n as DATA_SOURCES, j as DATA_TYPES, D as DELEGATION_FROM_SUB_AGENT_ID, b as DELEGATION_ID, a as DELEGATION_TO_SUB_AGENT_ID, F as FIELD_TYPES, O as OPERATORS, l as ORDER_DIRECTIONS, P as PANEL_TYPES, p as QUERY_DEFAULTS, k as QUERY_EXPRESSIONS, Q as QUERY_FIELD_CONFIGS, m as QUERY_TYPES, R as REDUCE_OPERATIONS, d as SPAN_KEYS, S as SPAN_NAMES, T as TRANSFER_FROM_SUB_AGENT_ID, c as TRANSFER_TO_SUB_AGENT_ID, U as UNKNOWN_VALUE } from './signoz-queries-CuWMQh1H.js';
|
|
2
2
|
import { z } from 'zod';
|
|
3
|
-
import { C as ConversationHistoryConfig, F as FunctionApiInsertSchema, A as ApiKeyApiUpdateSchema, a as FullAgentAgentInsertSchema } from './utility-
|
|
4
|
-
export { e as AgentStopWhen, b as AgentStopWhenSchema, h as CredentialStoreType, j as FunctionApiSelectSchema, k as FunctionApiUpdateSchema, i as MCPTransportType, g as ModelSettings, M as ModelSettingsSchema, l as SandboxConfigSchema, d as StopWhen, S as StopWhenSchema, f as SubAgentStopWhen, c as SubAgentStopWhenSchema } from './utility-
|
|
3
|
+
import { C as ConversationHistoryConfig, F as FunctionApiInsertSchema, A as ApiKeyApiUpdateSchema, a as FullAgentAgentInsertSchema } from './utility-HqRMF7sM.js';
|
|
4
|
+
export { e as AgentStopWhen, b as AgentStopWhenSchema, h as CredentialStoreType, j as FunctionApiSelectSchema, k as FunctionApiUpdateSchema, i as MCPTransportType, g as ModelSettings, M as ModelSettingsSchema, l as SandboxConfigSchema, d as StopWhen, S as StopWhenSchema, f as SubAgentStopWhen, c as SubAgentStopWhenSchema } from './utility-HqRMF7sM.js';
|
|
5
5
|
export { v as validatePropsAsJsonSchema } from './props-validation-BMR1qNiy.js';
|
|
6
6
|
import 'drizzle-zod';
|
|
7
7
|
import 'drizzle-orm/sqlite-core';
|
package/dist/client-exports.js
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
export { ACTIVITY_NAMES, ACTIVITY_STATUS, ACTIVITY_TYPES, AGENT_IDS, AGGREGATE_OPERATORS, AI_OPERATIONS, AI_TOOL_TYPES, DATA_SOURCES, DATA_TYPES, DELEGATION_FROM_SUB_AGENT_ID, DELEGATION_ID, DELEGATION_TO_SUB_AGENT_ID, FIELD_TYPES, OPERATORS, ORDER_DIRECTIONS, PANEL_TYPES, QUERY_DEFAULTS, QUERY_EXPRESSIONS, QUERY_FIELD_CONFIGS, QUERY_TYPES, REDUCE_OPERATIONS, SPAN_KEYS, SPAN_NAMES, TRANSFER_FROM_SUB_AGENT_ID, TRANSFER_TO_SUB_AGENT_ID, UNKNOWN_VALUE } from './chunk-SLL6V3AE.js';
|
|
2
|
-
import { ModelSettingsSchema, FullAgentAgentInsertSchema, ArtifactComponentApiInsertSchema } from './chunk-
|
|
3
|
-
export { AgentStopWhenSchema, FunctionApiInsertSchema, FunctionApiSelectSchema, FunctionApiUpdateSchema, ModelSettingsSchema, SandboxConfigSchema, StopWhenSchema, SubAgentStopWhenSchema, validatePropsAsJsonSchema } from './chunk-
|
|
2
|
+
import { ModelSettingsSchema, FullAgentAgentInsertSchema, ArtifactComponentApiInsertSchema } from './chunk-VICWT3WO.js';
|
|
3
|
+
export { AgentStopWhenSchema, FunctionApiInsertSchema, FunctionApiSelectSchema, FunctionApiUpdateSchema, ModelSettingsSchema, SandboxConfigSchema, StopWhenSchema, SubAgentStopWhenSchema, validatePropsAsJsonSchema } from './chunk-VICWT3WO.js';
|
|
4
4
|
import { CredentialStoreType } from './chunk-YFHT5M2R.js';
|
|
5
5
|
export { CredentialStoreType, MCPTransportType } from './chunk-YFHT5M2R.js';
|
|
6
6
|
import { z } from 'zod';
|
package/dist/db/schema.d.cts
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import 'drizzle-orm';
|
|
2
2
|
import 'drizzle-orm/sqlite-core';
|
|
3
|
-
import '../utility-
|
|
4
|
-
export { q as agentFunctionToolRelations, U as agentFunctionToolRelationsRelations, E as agentRelations, H as agentToolRelationsRelations, a as agents, w as apiKeys, G as apiKeysRelations, j as artifactComponents, M as artifactComponentsRelations, b as contextCache, C as contextCacheRelations, c as contextConfigs, B as contextConfigsRelations, r as conversations, K as conversationsRelations, x as credentialReferences, I as credentialReferencesRelations, h as dataComponents, O as dataComponentsRelations, f as externalAgents, F as externalAgentsRelations, m as functionTools, T as functionToolsRelations, n as functions, R as functionsRelations, v as ledgerArtifacts, Q as ledgerArtifactsRelations, u as messages, L as messagesRelations, p as projects, z as projectsRelations, k as subAgentArtifactComponents, N as subAgentArtifactComponentsRelations, i as subAgentDataComponents, P as subAgentDataComponentsRelations, e as subAgentRelations, S as subAgentRelationsRelations, o as subAgentToolRelations, d as subAgents, D as subAgentsRelations, g as taskRelations, A as taskRelationsRelations, t as tasks, y as tasksRelations, l as tools, J as toolsRelations } from '../schema-
|
|
3
|
+
import '../utility-HqRMF7sM.cjs';
|
|
4
|
+
export { q as agentFunctionToolRelations, U as agentFunctionToolRelationsRelations, E as agentRelations, H as agentToolRelationsRelations, a as agents, w as apiKeys, G as apiKeysRelations, j as artifactComponents, M as artifactComponentsRelations, b as contextCache, C as contextCacheRelations, c as contextConfigs, B as contextConfigsRelations, r as conversations, K as conversationsRelations, x as credentialReferences, I as credentialReferencesRelations, h as dataComponents, O as dataComponentsRelations, f as externalAgents, F as externalAgentsRelations, m as functionTools, T as functionToolsRelations, n as functions, R as functionsRelations, v as ledgerArtifacts, Q as ledgerArtifactsRelations, u as messages, L as messagesRelations, p as projects, z as projectsRelations, k as subAgentArtifactComponents, N as subAgentArtifactComponentsRelations, i as subAgentDataComponents, P as subAgentDataComponentsRelations, e as subAgentRelations, S as subAgentRelationsRelations, o as subAgentToolRelations, d as subAgents, D as subAgentsRelations, g as taskRelations, A as taskRelationsRelations, t as tasks, y as tasksRelations, l as tools, J as toolsRelations } from '../schema-CcSN2XcZ.cjs';
|
|
5
5
|
import 'zod';
|
|
6
6
|
import 'drizzle-zod';
|
|
7
7
|
import '@hono/zod-openapi';
|
package/dist/db/schema.d.ts
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import 'drizzle-orm';
|
|
2
2
|
import 'drizzle-orm/sqlite-core';
|
|
3
|
-
import '../utility-
|
|
4
|
-
export { q as agentFunctionToolRelations, U as agentFunctionToolRelationsRelations, E as agentRelations, H as agentToolRelationsRelations, a as agents, w as apiKeys, G as apiKeysRelations, j as artifactComponents, M as artifactComponentsRelations, b as contextCache, C as contextCacheRelations, c as contextConfigs, B as contextConfigsRelations, r as conversations, K as conversationsRelations, x as credentialReferences, I as credentialReferencesRelations, h as dataComponents, O as dataComponentsRelations, f as externalAgents, F as externalAgentsRelations, m as functionTools, T as functionToolsRelations, n as functions, R as functionsRelations, v as ledgerArtifacts, Q as ledgerArtifactsRelations, u as messages, L as messagesRelations, p as projects, z as projectsRelations, k as subAgentArtifactComponents, N as subAgentArtifactComponentsRelations, i as subAgentDataComponents, P as subAgentDataComponentsRelations, e as subAgentRelations, S as subAgentRelationsRelations, o as subAgentToolRelations, d as subAgents, D as subAgentsRelations, g as taskRelations, A as taskRelationsRelations, t as tasks, y as tasksRelations, l as tools, J as toolsRelations } from '../schema-
|
|
3
|
+
import '../utility-HqRMF7sM.js';
|
|
4
|
+
export { q as agentFunctionToolRelations, U as agentFunctionToolRelationsRelations, E as agentRelations, H as agentToolRelationsRelations, a as agents, w as apiKeys, G as apiKeysRelations, j as artifactComponents, M as artifactComponentsRelations, b as contextCache, C as contextCacheRelations, c as contextConfigs, B as contextConfigsRelations, r as conversations, K as conversationsRelations, x as credentialReferences, I as credentialReferencesRelations, h as dataComponents, O as dataComponentsRelations, f as externalAgents, F as externalAgentsRelations, m as functionTools, T as functionToolsRelations, n as functions, R as functionsRelations, v as ledgerArtifacts, Q as ledgerArtifactsRelations, u as messages, L as messagesRelations, p as projects, z as projectsRelations, k as subAgentArtifactComponents, N as subAgentArtifactComponentsRelations, i as subAgentDataComponents, P as subAgentDataComponentsRelations, e as subAgentRelations, S as subAgentRelationsRelations, o as subAgentToolRelations, d as subAgents, D as subAgentsRelations, g as taskRelations, A as taskRelationsRelations, t as tasks, y as tasksRelations, l as tools, J as toolsRelations } from '../schema-D8h85qdU.js';
|
|
5
5
|
import 'zod';
|
|
6
6
|
import 'drizzle-zod';
|
|
7
7
|
import '@hono/zod-openapi';
|