@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
|
@@ -1547,14 +1547,14 @@ var ErrorResponseSchema = zodOpenapi.z.object({
|
|
|
1547
1547
|
details: zodOpenapi.z.any().optional().openapi({
|
|
1548
1548
|
description: "Additional error details"
|
|
1549
1549
|
})
|
|
1550
|
-
});
|
|
1550
|
+
}).openapi("ErrorResponse");
|
|
1551
1551
|
var ExistsResponseSchema = zodOpenapi.z.object({
|
|
1552
1552
|
exists: zodOpenapi.z.boolean()
|
|
1553
|
-
});
|
|
1553
|
+
}).openapi("ExistsResponse");
|
|
1554
1554
|
var RemovedResponseSchema = zodOpenapi.z.object({
|
|
1555
1555
|
message: zodOpenapi.z.string(),
|
|
1556
1556
|
removed: zodOpenapi.z.boolean()
|
|
1557
|
-
});
|
|
1557
|
+
}).openapi("RemovedResponse");
|
|
1558
1558
|
var ProjectSelectSchema = drizzleZod.createSelectSchema(projects);
|
|
1559
1559
|
var ProjectInsertSchema = drizzleZod.createInsertSchema(projects).extend({
|
|
1560
1560
|
models: ProjectModelSchema,
|
|
@@ -1585,6 +1585,96 @@ var FullProjectDefinitionSchema = ProjectApiInsertSchema.extend({
|
|
|
1585
1585
|
createdAt: zodOpenapi.z.string().optional(),
|
|
1586
1586
|
updatedAt: zodOpenapi.z.string().optional()
|
|
1587
1587
|
});
|
|
1588
|
+
var ProjectResponse = zodOpenapi.z.object({ data: ProjectApiSelectSchema }).openapi("ProjectResponse");
|
|
1589
|
+
var SubAgentResponse = zodOpenapi.z.object({ data: SubAgentApiSelectSchema }).openapi("SubAgentResponse");
|
|
1590
|
+
var AgentResponse = zodOpenapi.z.object({ data: AgentApiSelectSchema }).openapi("AgentResponse");
|
|
1591
|
+
var ToolResponse = zodOpenapi.z.object({ data: ToolApiSelectSchema }).openapi("ToolResponse");
|
|
1592
|
+
var ExternalAgentResponse = zodOpenapi.z.object({ data: ExternalAgentApiSelectSchema }).openapi("ExternalAgentResponse");
|
|
1593
|
+
var ContextConfigResponse = zodOpenapi.z.object({ data: ContextConfigApiSelectSchema }).openapi("ContextConfigResponse");
|
|
1594
|
+
var ApiKeyResponse = zodOpenapi.z.object({ data: ApiKeyApiSelectSchema }).openapi("ApiKeyResponse");
|
|
1595
|
+
var CredentialReferenceResponse = zodOpenapi.z.object({ data: CredentialReferenceApiSelectSchema }).openapi("CredentialReferenceResponse");
|
|
1596
|
+
var FunctionResponse = zodOpenapi.z.object({ data: FunctionApiSelectSchema }).openapi("FunctionResponse");
|
|
1597
|
+
var FunctionToolResponse = zodOpenapi.z.object({ data: FunctionToolApiSelectSchema }).openapi("FunctionToolResponse");
|
|
1598
|
+
var DataComponentResponse = zodOpenapi.z.object({ data: DataComponentApiSelectSchema }).openapi("DataComponentResponse");
|
|
1599
|
+
var ArtifactComponentResponse = zodOpenapi.z.object({ data: ArtifactComponentApiSelectSchema }).openapi("ArtifactComponentResponse");
|
|
1600
|
+
var SubAgentRelationResponse = zodOpenapi.z.object({ data: SubAgentRelationApiSelectSchema }).openapi("SubAgentRelationResponse");
|
|
1601
|
+
var SubAgentToolRelationResponse = zodOpenapi.z.object({ data: SubAgentToolRelationApiSelectSchema }).openapi("SubAgentToolRelationResponse");
|
|
1602
|
+
var ConversationResponse = zodOpenapi.z.object({ data: ConversationApiSelectSchema }).openapi("ConversationResponse");
|
|
1603
|
+
var MessageResponse = zodOpenapi.z.object({ data: MessageApiSelectSchema }).openapi("MessageResponse");
|
|
1604
|
+
var ProjectListResponse = zodOpenapi.z.object({
|
|
1605
|
+
data: zodOpenapi.z.array(ProjectApiSelectSchema),
|
|
1606
|
+
pagination: PaginationSchema
|
|
1607
|
+
}).openapi("ProjectListResponse");
|
|
1608
|
+
var SubAgentListResponse = zodOpenapi.z.object({
|
|
1609
|
+
data: zodOpenapi.z.array(SubAgentApiSelectSchema),
|
|
1610
|
+
pagination: PaginationSchema
|
|
1611
|
+
}).openapi("SubAgentListResponse");
|
|
1612
|
+
var AgentListResponse = zodOpenapi.z.object({
|
|
1613
|
+
data: zodOpenapi.z.array(AgentApiSelectSchema),
|
|
1614
|
+
pagination: PaginationSchema
|
|
1615
|
+
}).openapi("AgentListResponse");
|
|
1616
|
+
var ToolListResponse = zodOpenapi.z.object({
|
|
1617
|
+
data: zodOpenapi.z.array(ToolApiSelectSchema),
|
|
1618
|
+
pagination: PaginationSchema
|
|
1619
|
+
}).openapi("ToolListResponse");
|
|
1620
|
+
var ExternalAgentListResponse = zodOpenapi.z.object({
|
|
1621
|
+
data: zodOpenapi.z.array(ExternalAgentApiSelectSchema),
|
|
1622
|
+
pagination: PaginationSchema
|
|
1623
|
+
}).openapi("ExternalAgentListResponse");
|
|
1624
|
+
var ContextConfigListResponse = zodOpenapi.z.object({
|
|
1625
|
+
data: zodOpenapi.z.array(ContextConfigApiSelectSchema),
|
|
1626
|
+
pagination: PaginationSchema
|
|
1627
|
+
}).openapi("ContextConfigListResponse");
|
|
1628
|
+
var ApiKeyListResponse = zodOpenapi.z.object({
|
|
1629
|
+
data: zodOpenapi.z.array(ApiKeyApiSelectSchema),
|
|
1630
|
+
pagination: PaginationSchema
|
|
1631
|
+
}).openapi("ApiKeyListResponse");
|
|
1632
|
+
var CredentialReferenceListResponse = zodOpenapi.z.object({
|
|
1633
|
+
data: zodOpenapi.z.array(CredentialReferenceApiSelectSchema),
|
|
1634
|
+
pagination: PaginationSchema
|
|
1635
|
+
}).openapi("CredentialReferenceListResponse");
|
|
1636
|
+
var FunctionListResponse = zodOpenapi.z.object({
|
|
1637
|
+
data: zodOpenapi.z.array(FunctionApiSelectSchema),
|
|
1638
|
+
pagination: PaginationSchema
|
|
1639
|
+
}).openapi("FunctionListResponse");
|
|
1640
|
+
var FunctionToolListResponse = zodOpenapi.z.object({
|
|
1641
|
+
data: zodOpenapi.z.array(FunctionToolApiSelectSchema),
|
|
1642
|
+
pagination: PaginationSchema
|
|
1643
|
+
}).openapi("FunctionToolListResponse");
|
|
1644
|
+
var DataComponentListResponse = zodOpenapi.z.object({
|
|
1645
|
+
data: zodOpenapi.z.array(DataComponentApiSelectSchema),
|
|
1646
|
+
pagination: PaginationSchema
|
|
1647
|
+
}).openapi("DataComponentListResponse");
|
|
1648
|
+
var ArtifactComponentListResponse = zodOpenapi.z.object({
|
|
1649
|
+
data: zodOpenapi.z.array(ArtifactComponentApiSelectSchema),
|
|
1650
|
+
pagination: PaginationSchema
|
|
1651
|
+
}).openapi("ArtifactComponentListResponse");
|
|
1652
|
+
var SubAgentRelationListResponse = zodOpenapi.z.object({
|
|
1653
|
+
data: zodOpenapi.z.array(SubAgentRelationApiSelectSchema),
|
|
1654
|
+
pagination: PaginationSchema
|
|
1655
|
+
}).openapi("SubAgentRelationListResponse");
|
|
1656
|
+
var SubAgentToolRelationListResponse = zodOpenapi.z.object({
|
|
1657
|
+
data: zodOpenapi.z.array(SubAgentToolRelationApiSelectSchema),
|
|
1658
|
+
pagination: PaginationSchema
|
|
1659
|
+
}).openapi("SubAgentToolRelationListResponse");
|
|
1660
|
+
var ConversationListResponse = zodOpenapi.z.object({
|
|
1661
|
+
data: zodOpenapi.z.array(ConversationApiSelectSchema),
|
|
1662
|
+
pagination: PaginationSchema
|
|
1663
|
+
}).openapi("ConversationListResponse");
|
|
1664
|
+
var MessageListResponse = zodOpenapi.z.object({
|
|
1665
|
+
data: zodOpenapi.z.array(MessageApiSelectSchema),
|
|
1666
|
+
pagination: PaginationSchema
|
|
1667
|
+
}).openapi("MessageListResponse");
|
|
1668
|
+
var SubAgentDataComponentResponse = zodOpenapi.z.object({ data: SubAgentDataComponentApiSelectSchema }).openapi("SubAgentDataComponentResponse");
|
|
1669
|
+
var SubAgentArtifactComponentResponse = zodOpenapi.z.object({ data: SubAgentArtifactComponentApiSelectSchema }).openapi("SubAgentArtifactComponentResponse");
|
|
1670
|
+
var SubAgentDataComponentListResponse = zodOpenapi.z.object({
|
|
1671
|
+
data: zodOpenapi.z.array(SubAgentDataComponentApiSelectSchema),
|
|
1672
|
+
pagination: PaginationSchema
|
|
1673
|
+
}).openapi("SubAgentDataComponentListResponse");
|
|
1674
|
+
var SubAgentArtifactComponentListResponse = zodOpenapi.z.object({
|
|
1675
|
+
data: zodOpenapi.z.array(SubAgentArtifactComponentApiSelectSchema),
|
|
1676
|
+
pagination: PaginationSchema
|
|
1677
|
+
}).openapi("SubAgentArtifactComponentListResponse");
|
|
1588
1678
|
var HeadersScopeSchema = zodOpenapi.z.object({
|
|
1589
1679
|
"x-inkeep-tenant-id": zodOpenapi.z.string().optional().openapi({
|
|
1590
1680
|
description: "Tenant identifier",
|
|
@@ -1882,6 +1972,8 @@ exports.AgentApiInsertSchema = AgentApiInsertSchema;
|
|
|
1882
1972
|
exports.AgentApiSelectSchema = AgentApiSelectSchema;
|
|
1883
1973
|
exports.AgentApiUpdateSchema = AgentApiUpdateSchema;
|
|
1884
1974
|
exports.AgentInsertSchema = AgentInsertSchema;
|
|
1975
|
+
exports.AgentListResponse = AgentListResponse;
|
|
1976
|
+
exports.AgentResponse = AgentResponse;
|
|
1885
1977
|
exports.AgentSelectSchema = AgentSelectSchema;
|
|
1886
1978
|
exports.AgentStopWhenSchema = AgentStopWhenSchema;
|
|
1887
1979
|
exports.AgentUpdateSchema = AgentUpdateSchema;
|
|
@@ -1892,12 +1984,16 @@ exports.ApiKeyApiInsertSchema = ApiKeyApiInsertSchema;
|
|
|
1892
1984
|
exports.ApiKeyApiSelectSchema = ApiKeyApiSelectSchema;
|
|
1893
1985
|
exports.ApiKeyApiUpdateSchema = ApiKeyApiUpdateSchema;
|
|
1894
1986
|
exports.ApiKeyInsertSchema = ApiKeyInsertSchema;
|
|
1987
|
+
exports.ApiKeyListResponse = ApiKeyListResponse;
|
|
1988
|
+
exports.ApiKeyResponse = ApiKeyResponse;
|
|
1895
1989
|
exports.ApiKeySelectSchema = ApiKeySelectSchema;
|
|
1896
1990
|
exports.ApiKeyUpdateSchema = ApiKeyUpdateSchema;
|
|
1897
1991
|
exports.ArtifactComponentApiInsertSchema = ArtifactComponentApiInsertSchema;
|
|
1898
1992
|
exports.ArtifactComponentApiSelectSchema = ArtifactComponentApiSelectSchema;
|
|
1899
1993
|
exports.ArtifactComponentApiUpdateSchema = ArtifactComponentApiUpdateSchema;
|
|
1900
1994
|
exports.ArtifactComponentInsertSchema = ArtifactComponentInsertSchema;
|
|
1995
|
+
exports.ArtifactComponentListResponse = ArtifactComponentListResponse;
|
|
1996
|
+
exports.ArtifactComponentResponse = ArtifactComponentResponse;
|
|
1901
1997
|
exports.ArtifactComponentSelectSchema = ArtifactComponentSelectSchema;
|
|
1902
1998
|
exports.ArtifactComponentUpdateSchema = ArtifactComponentUpdateSchema;
|
|
1903
1999
|
exports.CanUseItemSchema = CanUseItemSchema;
|
|
@@ -1911,18 +2007,24 @@ exports.ContextConfigApiInsertSchema = ContextConfigApiInsertSchema;
|
|
|
1911
2007
|
exports.ContextConfigApiSelectSchema = ContextConfigApiSelectSchema;
|
|
1912
2008
|
exports.ContextConfigApiUpdateSchema = ContextConfigApiUpdateSchema;
|
|
1913
2009
|
exports.ContextConfigInsertSchema = ContextConfigInsertSchema;
|
|
2010
|
+
exports.ContextConfigListResponse = ContextConfigListResponse;
|
|
2011
|
+
exports.ContextConfigResponse = ContextConfigResponse;
|
|
1914
2012
|
exports.ContextConfigSelectSchema = ContextConfigSelectSchema;
|
|
1915
2013
|
exports.ContextConfigUpdateSchema = ContextConfigUpdateSchema;
|
|
1916
2014
|
exports.ConversationApiInsertSchema = ConversationApiInsertSchema;
|
|
1917
2015
|
exports.ConversationApiSelectSchema = ConversationApiSelectSchema;
|
|
1918
2016
|
exports.ConversationApiUpdateSchema = ConversationApiUpdateSchema;
|
|
1919
2017
|
exports.ConversationInsertSchema = ConversationInsertSchema;
|
|
2018
|
+
exports.ConversationListResponse = ConversationListResponse;
|
|
2019
|
+
exports.ConversationResponse = ConversationResponse;
|
|
1920
2020
|
exports.ConversationSelectSchema = ConversationSelectSchema;
|
|
1921
2021
|
exports.ConversationUpdateSchema = ConversationUpdateSchema;
|
|
1922
2022
|
exports.CredentialReferenceApiInsertSchema = CredentialReferenceApiInsertSchema;
|
|
1923
2023
|
exports.CredentialReferenceApiSelectSchema = CredentialReferenceApiSelectSchema;
|
|
1924
2024
|
exports.CredentialReferenceApiUpdateSchema = CredentialReferenceApiUpdateSchema;
|
|
1925
2025
|
exports.CredentialReferenceInsertSchema = CredentialReferenceInsertSchema;
|
|
2026
|
+
exports.CredentialReferenceListResponse = CredentialReferenceListResponse;
|
|
2027
|
+
exports.CredentialReferenceResponse = CredentialReferenceResponse;
|
|
1926
2028
|
exports.CredentialReferenceSelectSchema = CredentialReferenceSelectSchema;
|
|
1927
2029
|
exports.CredentialReferenceUpdateSchema = CredentialReferenceUpdateSchema;
|
|
1928
2030
|
exports.DataComponentApiInsertSchema = DataComponentApiInsertSchema;
|
|
@@ -1930,6 +2032,8 @@ exports.DataComponentApiSelectSchema = DataComponentApiSelectSchema;
|
|
|
1930
2032
|
exports.DataComponentApiUpdateSchema = DataComponentApiUpdateSchema;
|
|
1931
2033
|
exports.DataComponentBaseSchema = DataComponentBaseSchema;
|
|
1932
2034
|
exports.DataComponentInsertSchema = DataComponentInsertSchema;
|
|
2035
|
+
exports.DataComponentListResponse = DataComponentListResponse;
|
|
2036
|
+
exports.DataComponentResponse = DataComponentResponse;
|
|
1933
2037
|
exports.DataComponentSelectSchema = DataComponentSelectSchema;
|
|
1934
2038
|
exports.DataComponentUpdateSchema = DataComponentUpdateSchema;
|
|
1935
2039
|
exports.DataOperationDetailsSchema = DataOperationDetailsSchema;
|
|
@@ -1942,6 +2046,8 @@ exports.ExternalAgentApiInsertSchema = ExternalAgentApiInsertSchema;
|
|
|
1942
2046
|
exports.ExternalAgentApiSelectSchema = ExternalAgentApiSelectSchema;
|
|
1943
2047
|
exports.ExternalAgentApiUpdateSchema = ExternalAgentApiUpdateSchema;
|
|
1944
2048
|
exports.ExternalAgentInsertSchema = ExternalAgentInsertSchema;
|
|
2049
|
+
exports.ExternalAgentListResponse = ExternalAgentListResponse;
|
|
2050
|
+
exports.ExternalAgentResponse = ExternalAgentResponse;
|
|
1945
2051
|
exports.ExternalAgentSelectSchema = ExternalAgentSelectSchema;
|
|
1946
2052
|
exports.ExternalAgentUpdateSchema = ExternalAgentUpdateSchema;
|
|
1947
2053
|
exports.ExternalSubAgentRelationApiInsertSchema = ExternalSubAgentRelationApiInsertSchema;
|
|
@@ -1954,12 +2060,16 @@ exports.FunctionApiInsertSchema = FunctionApiInsertSchema;
|
|
|
1954
2060
|
exports.FunctionApiSelectSchema = FunctionApiSelectSchema;
|
|
1955
2061
|
exports.FunctionApiUpdateSchema = FunctionApiUpdateSchema;
|
|
1956
2062
|
exports.FunctionInsertSchema = FunctionInsertSchema;
|
|
2063
|
+
exports.FunctionListResponse = FunctionListResponse;
|
|
2064
|
+
exports.FunctionResponse = FunctionResponse;
|
|
1957
2065
|
exports.FunctionSelectSchema = FunctionSelectSchema;
|
|
1958
2066
|
exports.FunctionToolApiInsertSchema = FunctionToolApiInsertSchema;
|
|
1959
2067
|
exports.FunctionToolApiSelectSchema = FunctionToolApiSelectSchema;
|
|
1960
2068
|
exports.FunctionToolApiUpdateSchema = FunctionToolApiUpdateSchema;
|
|
1961
2069
|
exports.FunctionToolConfigSchema = FunctionToolConfigSchema;
|
|
1962
2070
|
exports.FunctionToolInsertSchema = FunctionToolInsertSchema;
|
|
2071
|
+
exports.FunctionToolListResponse = FunctionToolListResponse;
|
|
2072
|
+
exports.FunctionToolResponse = FunctionToolResponse;
|
|
1963
2073
|
exports.FunctionToolSelectSchema = FunctionToolSelectSchema;
|
|
1964
2074
|
exports.FunctionToolUpdateSchema = FunctionToolUpdateSchema;
|
|
1965
2075
|
exports.FunctionUpdateSchema = FunctionUpdateSchema;
|
|
@@ -1981,6 +2091,8 @@ exports.MessageApiInsertSchema = MessageApiInsertSchema;
|
|
|
1981
2091
|
exports.MessageApiSelectSchema = MessageApiSelectSchema;
|
|
1982
2092
|
exports.MessageApiUpdateSchema = MessageApiUpdateSchema;
|
|
1983
2093
|
exports.MessageInsertSchema = MessageInsertSchema;
|
|
2094
|
+
exports.MessageListResponse = MessageListResponse;
|
|
2095
|
+
exports.MessageResponse = MessageResponse;
|
|
1984
2096
|
exports.MessageSelectSchema = MessageSelectSchema;
|
|
1985
2097
|
exports.MessageUpdateSchema = MessageUpdateSchema;
|
|
1986
2098
|
exports.ModelSchema = ModelSchema;
|
|
@@ -1991,7 +2103,9 @@ exports.ProjectApiInsertSchema = ProjectApiInsertSchema;
|
|
|
1991
2103
|
exports.ProjectApiSelectSchema = ProjectApiSelectSchema;
|
|
1992
2104
|
exports.ProjectApiUpdateSchema = ProjectApiUpdateSchema;
|
|
1993
2105
|
exports.ProjectInsertSchema = ProjectInsertSchema;
|
|
2106
|
+
exports.ProjectListResponse = ProjectListResponse;
|
|
1994
2107
|
exports.ProjectModelSchema = ProjectModelSchema;
|
|
2108
|
+
exports.ProjectResponse = ProjectResponse;
|
|
1995
2109
|
exports.ProjectSelectSchema = ProjectSelectSchema;
|
|
1996
2110
|
exports.ProjectUpdateSchema = ProjectUpdateSchema;
|
|
1997
2111
|
exports.RemovedResponseSchema = RemovedResponseSchema;
|
|
@@ -2007,28 +2121,38 @@ exports.SubAgentArtifactComponentApiInsertSchema = SubAgentArtifactComponentApiI
|
|
|
2007
2121
|
exports.SubAgentArtifactComponentApiSelectSchema = SubAgentArtifactComponentApiSelectSchema;
|
|
2008
2122
|
exports.SubAgentArtifactComponentApiUpdateSchema = SubAgentArtifactComponentApiUpdateSchema;
|
|
2009
2123
|
exports.SubAgentArtifactComponentInsertSchema = SubAgentArtifactComponentInsertSchema;
|
|
2124
|
+
exports.SubAgentArtifactComponentListResponse = SubAgentArtifactComponentListResponse;
|
|
2125
|
+
exports.SubAgentArtifactComponentResponse = SubAgentArtifactComponentResponse;
|
|
2010
2126
|
exports.SubAgentArtifactComponentSelectSchema = SubAgentArtifactComponentSelectSchema;
|
|
2011
2127
|
exports.SubAgentArtifactComponentUpdateSchema = SubAgentArtifactComponentUpdateSchema;
|
|
2012
2128
|
exports.SubAgentDataComponentApiInsertSchema = SubAgentDataComponentApiInsertSchema;
|
|
2013
2129
|
exports.SubAgentDataComponentApiSelectSchema = SubAgentDataComponentApiSelectSchema;
|
|
2014
2130
|
exports.SubAgentDataComponentApiUpdateSchema = SubAgentDataComponentApiUpdateSchema;
|
|
2015
2131
|
exports.SubAgentDataComponentInsertSchema = SubAgentDataComponentInsertSchema;
|
|
2132
|
+
exports.SubAgentDataComponentListResponse = SubAgentDataComponentListResponse;
|
|
2133
|
+
exports.SubAgentDataComponentResponse = SubAgentDataComponentResponse;
|
|
2016
2134
|
exports.SubAgentDataComponentSelectSchema = SubAgentDataComponentSelectSchema;
|
|
2017
2135
|
exports.SubAgentDataComponentUpdateSchema = SubAgentDataComponentUpdateSchema;
|
|
2018
2136
|
exports.SubAgentInsertSchema = SubAgentInsertSchema;
|
|
2137
|
+
exports.SubAgentListResponse = SubAgentListResponse;
|
|
2019
2138
|
exports.SubAgentRelationApiInsertSchema = SubAgentRelationApiInsertSchema;
|
|
2020
2139
|
exports.SubAgentRelationApiSelectSchema = SubAgentRelationApiSelectSchema;
|
|
2021
2140
|
exports.SubAgentRelationApiUpdateSchema = SubAgentRelationApiUpdateSchema;
|
|
2022
2141
|
exports.SubAgentRelationInsertSchema = SubAgentRelationInsertSchema;
|
|
2142
|
+
exports.SubAgentRelationListResponse = SubAgentRelationListResponse;
|
|
2023
2143
|
exports.SubAgentRelationQuerySchema = SubAgentRelationQuerySchema;
|
|
2144
|
+
exports.SubAgentRelationResponse = SubAgentRelationResponse;
|
|
2024
2145
|
exports.SubAgentRelationSelectSchema = SubAgentRelationSelectSchema;
|
|
2025
2146
|
exports.SubAgentRelationUpdateSchema = SubAgentRelationUpdateSchema;
|
|
2147
|
+
exports.SubAgentResponse = SubAgentResponse;
|
|
2026
2148
|
exports.SubAgentSelectSchema = SubAgentSelectSchema;
|
|
2027
2149
|
exports.SubAgentStopWhenSchema = SubAgentStopWhenSchema;
|
|
2028
2150
|
exports.SubAgentToolRelationApiInsertSchema = SubAgentToolRelationApiInsertSchema;
|
|
2029
2151
|
exports.SubAgentToolRelationApiSelectSchema = SubAgentToolRelationApiSelectSchema;
|
|
2030
2152
|
exports.SubAgentToolRelationApiUpdateSchema = SubAgentToolRelationApiUpdateSchema;
|
|
2031
2153
|
exports.SubAgentToolRelationInsertSchema = SubAgentToolRelationInsertSchema;
|
|
2154
|
+
exports.SubAgentToolRelationListResponse = SubAgentToolRelationListResponse;
|
|
2155
|
+
exports.SubAgentToolRelationResponse = SubAgentToolRelationResponse;
|
|
2032
2156
|
exports.SubAgentToolRelationSelectSchema = SubAgentToolRelationSelectSchema;
|
|
2033
2157
|
exports.SubAgentToolRelationUpdateSchema = SubAgentToolRelationUpdateSchema;
|
|
2034
2158
|
exports.SubAgentUpdateSchema = SubAgentUpdateSchema;
|
|
@@ -2056,6 +2180,8 @@ exports.ToolApiInsertSchema = ToolApiInsertSchema;
|
|
|
2056
2180
|
exports.ToolApiSelectSchema = ToolApiSelectSchema;
|
|
2057
2181
|
exports.ToolApiUpdateSchema = ToolApiUpdateSchema;
|
|
2058
2182
|
exports.ToolInsertSchema = ToolInsertSchema;
|
|
2183
|
+
exports.ToolListResponse = ToolListResponse;
|
|
2184
|
+
exports.ToolResponse = ToolResponse;
|
|
2059
2185
|
exports.ToolSelectSchema = ToolSelectSchema;
|
|
2060
2186
|
exports.ToolStatusSchema = ToolStatusSchema;
|
|
2061
2187
|
exports.ToolUpdateSchema = ToolUpdateSchema;
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { z } from 'zod';
|
|
2
|
-
import { d6 as SubAgentDefinition, d5 as InternalSubAgentDefinition, cM as ExternalSubAgentApiInsert, fP as AgentWithinContextOfProjectSchema, B as FullAgentDefinition } from '../utility-
|
|
3
|
-
export { dY as AgentApiInsertSchema, dX as AgentApiSelectSchema, dZ as AgentApiUpdateSchema, dV as AgentInsertSchema, dU as AgentSelectSchema, e as AgentStopWhen, b as AgentStopWhenSchema, dW as AgentUpdateSchema, f0 as AllAgentSchema, f5 as ApiKeyApiCreationResponseSchema, f6 as ApiKeyApiInsertSchema, f4 as ApiKeyApiSelectSchema, A as ApiKeyApiUpdateSchema, f2 as ApiKeyInsertSchema, f1 as ApiKeySelectSchema, f3 as ApiKeyUpdateSchema, eO as ArtifactComponentApiInsertSchema, eN as ArtifactComponentApiSelectSchema, eP as ArtifactComponentApiUpdateSchema, eL as ArtifactComponentInsertSchema, eK as ArtifactComponentSelectSchema, eM as ArtifactComponentUpdateSchema, fO as CanUseItemSchema, ev as ContextCacheApiInsertSchema, eu as ContextCacheApiSelectSchema, ew as ContextCacheApiUpdateSchema, es as ContextCacheInsertSchema, er as ContextCacheSelectSchema, et as ContextCacheUpdateSchema, fy as ContextConfigApiInsertSchema, fx as ContextConfigApiSelectSchema, fz as ContextConfigApiUpdateSchema, fv as ContextConfigInsertSchema, fu as ContextConfigSelectSchema, fw as ContextConfigUpdateSchema, ej as ConversationApiInsertSchema, ei as ConversationApiSelectSchema, ek as ConversationApiUpdateSchema, eg as ConversationInsertSchema, ef as ConversationSelectSchema, eh as ConversationUpdateSchema, fb as CredentialReferenceApiInsertSchema, fa as CredentialReferenceApiSelectSchema, fc as CredentialReferenceApiUpdateSchema, f8 as CredentialReferenceInsertSchema, f7 as CredentialReferenceSelectSchema, f9 as CredentialReferenceUpdateSchema, eC as DataComponentApiInsertSchema, eB as DataComponentApiSelectSchema, eD as DataComponentApiUpdateSchema, ez as DataComponentBaseSchema, ey as DataComponentInsertSchema, ex as DataComponentSelectSchema, eA as DataComponentUpdateSchema, fT as ErrorResponseSchema, fU as ExistsResponseSchema, e_ as ExternalAgentApiInsertSchema, eZ as ExternalAgentApiSelectSchema, e$ as ExternalAgentApiUpdateSchema, eX as ExternalAgentInsertSchema, eW as ExternalAgentSelectSchema, eY as ExternalAgentUpdateSchema, dT as ExternalSubAgentRelationApiInsertSchema, dS as ExternalSubAgentRelationInsertSchema, fs as FetchConfigSchema, ft as FetchDefinitionSchema, a as FullAgentAgentInsertSchema, g0 as FullProjectDefinitionSchema, F as FunctionApiInsertSchema, j as FunctionApiSelectSchema, k as FunctionApiUpdateSchema, fq as FunctionInsertSchema, fp as FunctionSelectSchema, fn as FunctionToolApiInsertSchema, fm as FunctionToolApiSelectSchema, fo as FunctionToolApiUpdateSchema, dE as FunctionToolConfig, dD as FunctionToolConfigSchema, fk as FunctionToolInsertSchema, fj as FunctionToolSelectSchema, fl as FunctionToolUpdateSchema, fr as FunctionUpdateSchema,
|
|
2
|
+
import { d6 as SubAgentDefinition, d5 as InternalSubAgentDefinition, cM as ExternalSubAgentApiInsert, fP as AgentWithinContextOfProjectSchema, B as FullAgentDefinition } from '../utility-HqRMF7sM.cjs';
|
|
3
|
+
export { dY as AgentApiInsertSchema, dX as AgentApiSelectSchema, dZ as AgentApiUpdateSchema, dV as AgentInsertSchema, gj as AgentListResponse, g3 as AgentResponse, dU as AgentSelectSchema, e as AgentStopWhen, b as AgentStopWhenSchema, dW as AgentUpdateSchema, f0 as AllAgentSchema, f5 as ApiKeyApiCreationResponseSchema, f6 as ApiKeyApiInsertSchema, f4 as ApiKeyApiSelectSchema, A as ApiKeyApiUpdateSchema, f2 as ApiKeyInsertSchema, gn as ApiKeyListResponse, g7 as ApiKeyResponse, f1 as ApiKeySelectSchema, f3 as ApiKeyUpdateSchema, eO as ArtifactComponentApiInsertSchema, eN as ArtifactComponentApiSelectSchema, eP as ArtifactComponentApiUpdateSchema, eL as ArtifactComponentInsertSchema, gs as ArtifactComponentListResponse, gc as ArtifactComponentResponse, eK as ArtifactComponentSelectSchema, eM as ArtifactComponentUpdateSchema, fO as CanUseItemSchema, ev as ContextCacheApiInsertSchema, eu as ContextCacheApiSelectSchema, ew as ContextCacheApiUpdateSchema, es as ContextCacheInsertSchema, er as ContextCacheSelectSchema, et as ContextCacheUpdateSchema, fy as ContextConfigApiInsertSchema, fx as ContextConfigApiSelectSchema, fz as ContextConfigApiUpdateSchema, fv as ContextConfigInsertSchema, gm as ContextConfigListResponse, g6 as ContextConfigResponse, fu as ContextConfigSelectSchema, fw as ContextConfigUpdateSchema, ej as ConversationApiInsertSchema, ei as ConversationApiSelectSchema, ek as ConversationApiUpdateSchema, eg as ConversationInsertSchema, gv as ConversationListResponse, gf as ConversationResponse, ef as ConversationSelectSchema, eh as ConversationUpdateSchema, fb as CredentialReferenceApiInsertSchema, fa as CredentialReferenceApiSelectSchema, fc as CredentialReferenceApiUpdateSchema, f8 as CredentialReferenceInsertSchema, go as CredentialReferenceListResponse, g8 as CredentialReferenceResponse, f7 as CredentialReferenceSelectSchema, f9 as CredentialReferenceUpdateSchema, eC as DataComponentApiInsertSchema, eB as DataComponentApiSelectSchema, eD as DataComponentApiUpdateSchema, ez as DataComponentBaseSchema, ey as DataComponentInsertSchema, gr as DataComponentListResponse, gb as DataComponentResponse, ex as DataComponentSelectSchema, eA as DataComponentUpdateSchema, fT as ErrorResponseSchema, fU as ExistsResponseSchema, e_ as ExternalAgentApiInsertSchema, eZ as ExternalAgentApiSelectSchema, e$ as ExternalAgentApiUpdateSchema, eX as ExternalAgentInsertSchema, gl as ExternalAgentListResponse, g5 as ExternalAgentResponse, eW as ExternalAgentSelectSchema, eY as ExternalAgentUpdateSchema, dT as ExternalSubAgentRelationApiInsertSchema, dS as ExternalSubAgentRelationInsertSchema, fs as FetchConfigSchema, ft as FetchDefinitionSchema, a as FullAgentAgentInsertSchema, g0 as FullProjectDefinitionSchema, F as FunctionApiInsertSchema, j as FunctionApiSelectSchema, k as FunctionApiUpdateSchema, fq as FunctionInsertSchema, gp as FunctionListResponse, g9 as FunctionResponse, fp as FunctionSelectSchema, fn as FunctionToolApiInsertSchema, fm as FunctionToolApiSelectSchema, fo as FunctionToolApiUpdateSchema, dE as FunctionToolConfig, dD as FunctionToolConfigSchema, fk as FunctionToolInsertSchema, gq as FunctionToolListResponse, ga as FunctionToolResponse, fj as FunctionToolSelectSchema, fl as FunctionToolUpdateSchema, fr as FunctionUpdateSchema, gB as HeadersScopeSchema, fK as LedgerArtifactApiInsertSchema, fJ as LedgerArtifactApiSelectSchema, fL as LedgerArtifactApiUpdateSchema, fH as LedgerArtifactInsertSchema, fG as LedgerArtifactSelectSchema, fI as LedgerArtifactUpdateSchema, fR as ListResponseSchema, dx as MAX_ID_LENGTH, fe as MCPToolConfigSchema, dw as MIN_ID_LENGTH, ec as McpToolDefinitionSchema, fd as McpToolSchema, ea as McpTransportConfigSchema, ep as MessageApiInsertSchema, eo as MessageApiSelectSchema, eq as MessageApiUpdateSchema, em as MessageInsertSchema, gw as MessageListResponse, gg as MessageResponse, el as MessageSelectSchema, en as MessageUpdateSchema, dA as ModelSchema, g as ModelSettings, M as ModelSettingsSchema, gK as PaginationQueryParamsSchema, fQ as PaginationSchema, f_ as ProjectApiInsertSchema, fZ as ProjectApiSelectSchema, f$ as ProjectApiUpdateSchema, fX as ProjectInsertSchema, gh as ProjectListResponse, dB as ProjectModelSchema, g1 as ProjectResponse, fW as ProjectSelectSchema, fY as ProjectUpdateSchema, fV as RemovedResponseSchema, dC as SandboxConfig, l as SandboxConfigSchema, fS as SingleResponseSchema, fM as StatusComponentSchema, fN as StatusUpdateSchema, d as StopWhen, S as StopWhenSchema, dJ as SubAgentApiInsertSchema, dI as SubAgentApiSelectSchema, dK as SubAgentApiUpdateSchema, eU as SubAgentArtifactComponentApiInsertSchema, eT as SubAgentArtifactComponentApiSelectSchema, eV as SubAgentArtifactComponentApiUpdateSchema, eR as SubAgentArtifactComponentInsertSchema, gA as SubAgentArtifactComponentListResponse, gy as SubAgentArtifactComponentResponse, eQ as SubAgentArtifactComponentSelectSchema, eS as SubAgentArtifactComponentUpdateSchema, eI as SubAgentDataComponentApiInsertSchema, eH as SubAgentDataComponentApiSelectSchema, eJ as SubAgentDataComponentApiUpdateSchema, eF as SubAgentDataComponentInsertSchema, gz as SubAgentDataComponentListResponse, gx as SubAgentDataComponentResponse, eE as SubAgentDataComponentSelectSchema, eG as SubAgentDataComponentUpdateSchema, dG as SubAgentInsertSchema, gi as SubAgentListResponse, dP as SubAgentRelationApiInsertSchema, dO as SubAgentRelationApiSelectSchema, dQ as SubAgentRelationApiUpdateSchema, dM as SubAgentRelationInsertSchema, gt as SubAgentRelationListResponse, dR as SubAgentRelationQuerySchema, gd as SubAgentRelationResponse, dL as SubAgentRelationSelectSchema, dN as SubAgentRelationUpdateSchema, g2 as SubAgentResponse, dF as SubAgentSelectSchema, f as SubAgentStopWhen, c as SubAgentStopWhenSchema, fE as SubAgentToolRelationApiInsertSchema, fD as SubAgentToolRelationApiSelectSchema, fF as SubAgentToolRelationApiUpdateSchema, fB as SubAgentToolRelationInsertSchema, gu as SubAgentToolRelationListResponse, ge as SubAgentToolRelationResponse, fA as SubAgentToolRelationSelectSchema, fC as SubAgentToolRelationUpdateSchema, dH as SubAgentUpdateSchema, e2 as TaskApiInsertSchema, e1 as TaskApiSelectSchema, e3 as TaskApiUpdateSchema, d$ as TaskInsertSchema, e8 as TaskRelationApiInsertSchema, e7 as TaskRelationApiSelectSchema, e9 as TaskRelationApiUpdateSchema, e5 as TaskRelationInsertSchema, e4 as TaskRelationSelectSchema, e6 as TaskRelationUpdateSchema, d_ as TaskSelectSchema, e0 as TaskUpdateSchema, gD as TenantIdParamsSchema, gC as TenantParamsSchema, gH as TenantProjectAgentIdParamsSchema, gG as TenantProjectAgentParamsSchema, gJ as TenantProjectAgentSubAgentIdParamsSchema, gI as TenantProjectAgentSubAgentParamsSchema, gF as TenantProjectIdParamsSchema, gE as TenantProjectParamsSchema, fh as ToolApiInsertSchema, fg as ToolApiSelectSchema, fi as ToolApiUpdateSchema, ee as ToolInsertSchema, gk as ToolListResponse, g4 as ToolResponse, ed as ToolSelectSchema, eb as ToolStatusSchema, ff as ToolUpdateSchema, dy as URL_SAFE_ID_PATTERN, dz as resourceIdSchema } from '../utility-HqRMF7sM.cjs';
|
|
4
4
|
export { P as PropsValidationResult, v as validatePropsAsJsonSchema } from '../props-validation-BMR1qNiy.cjs';
|
|
5
5
|
import 'drizzle-zod';
|
|
6
6
|
import 'drizzle-orm/sqlite-core';
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { z } from 'zod';
|
|
2
|
-
import { d6 as SubAgentDefinition, d5 as InternalSubAgentDefinition, cM as ExternalSubAgentApiInsert, fP as AgentWithinContextOfProjectSchema, B as FullAgentDefinition } from '../utility-
|
|
3
|
-
export { dY as AgentApiInsertSchema, dX as AgentApiSelectSchema, dZ as AgentApiUpdateSchema, dV as AgentInsertSchema, dU as AgentSelectSchema, e as AgentStopWhen, b as AgentStopWhenSchema, dW as AgentUpdateSchema, f0 as AllAgentSchema, f5 as ApiKeyApiCreationResponseSchema, f6 as ApiKeyApiInsertSchema, f4 as ApiKeyApiSelectSchema, A as ApiKeyApiUpdateSchema, f2 as ApiKeyInsertSchema, f1 as ApiKeySelectSchema, f3 as ApiKeyUpdateSchema, eO as ArtifactComponentApiInsertSchema, eN as ArtifactComponentApiSelectSchema, eP as ArtifactComponentApiUpdateSchema, eL as ArtifactComponentInsertSchema, eK as ArtifactComponentSelectSchema, eM as ArtifactComponentUpdateSchema, fO as CanUseItemSchema, ev as ContextCacheApiInsertSchema, eu as ContextCacheApiSelectSchema, ew as ContextCacheApiUpdateSchema, es as ContextCacheInsertSchema, er as ContextCacheSelectSchema, et as ContextCacheUpdateSchema, fy as ContextConfigApiInsertSchema, fx as ContextConfigApiSelectSchema, fz as ContextConfigApiUpdateSchema, fv as ContextConfigInsertSchema, fu as ContextConfigSelectSchema, fw as ContextConfigUpdateSchema, ej as ConversationApiInsertSchema, ei as ConversationApiSelectSchema, ek as ConversationApiUpdateSchema, eg as ConversationInsertSchema, ef as ConversationSelectSchema, eh as ConversationUpdateSchema, fb as CredentialReferenceApiInsertSchema, fa as CredentialReferenceApiSelectSchema, fc as CredentialReferenceApiUpdateSchema, f8 as CredentialReferenceInsertSchema, f7 as CredentialReferenceSelectSchema, f9 as CredentialReferenceUpdateSchema, eC as DataComponentApiInsertSchema, eB as DataComponentApiSelectSchema, eD as DataComponentApiUpdateSchema, ez as DataComponentBaseSchema, ey as DataComponentInsertSchema, ex as DataComponentSelectSchema, eA as DataComponentUpdateSchema, fT as ErrorResponseSchema, fU as ExistsResponseSchema, e_ as ExternalAgentApiInsertSchema, eZ as ExternalAgentApiSelectSchema, e$ as ExternalAgentApiUpdateSchema, eX as ExternalAgentInsertSchema, eW as ExternalAgentSelectSchema, eY as ExternalAgentUpdateSchema, dT as ExternalSubAgentRelationApiInsertSchema, dS as ExternalSubAgentRelationInsertSchema, fs as FetchConfigSchema, ft as FetchDefinitionSchema, a as FullAgentAgentInsertSchema, g0 as FullProjectDefinitionSchema, F as FunctionApiInsertSchema, j as FunctionApiSelectSchema, k as FunctionApiUpdateSchema, fq as FunctionInsertSchema, fp as FunctionSelectSchema, fn as FunctionToolApiInsertSchema, fm as FunctionToolApiSelectSchema, fo as FunctionToolApiUpdateSchema, dE as FunctionToolConfig, dD as FunctionToolConfigSchema, fk as FunctionToolInsertSchema, fj as FunctionToolSelectSchema, fl as FunctionToolUpdateSchema, fr as FunctionUpdateSchema,
|
|
2
|
+
import { d6 as SubAgentDefinition, d5 as InternalSubAgentDefinition, cM as ExternalSubAgentApiInsert, fP as AgentWithinContextOfProjectSchema, B as FullAgentDefinition } from '../utility-HqRMF7sM.js';
|
|
3
|
+
export { dY as AgentApiInsertSchema, dX as AgentApiSelectSchema, dZ as AgentApiUpdateSchema, dV as AgentInsertSchema, gj as AgentListResponse, g3 as AgentResponse, dU as AgentSelectSchema, e as AgentStopWhen, b as AgentStopWhenSchema, dW as AgentUpdateSchema, f0 as AllAgentSchema, f5 as ApiKeyApiCreationResponseSchema, f6 as ApiKeyApiInsertSchema, f4 as ApiKeyApiSelectSchema, A as ApiKeyApiUpdateSchema, f2 as ApiKeyInsertSchema, gn as ApiKeyListResponse, g7 as ApiKeyResponse, f1 as ApiKeySelectSchema, f3 as ApiKeyUpdateSchema, eO as ArtifactComponentApiInsertSchema, eN as ArtifactComponentApiSelectSchema, eP as ArtifactComponentApiUpdateSchema, eL as ArtifactComponentInsertSchema, gs as ArtifactComponentListResponse, gc as ArtifactComponentResponse, eK as ArtifactComponentSelectSchema, eM as ArtifactComponentUpdateSchema, fO as CanUseItemSchema, ev as ContextCacheApiInsertSchema, eu as ContextCacheApiSelectSchema, ew as ContextCacheApiUpdateSchema, es as ContextCacheInsertSchema, er as ContextCacheSelectSchema, et as ContextCacheUpdateSchema, fy as ContextConfigApiInsertSchema, fx as ContextConfigApiSelectSchema, fz as ContextConfigApiUpdateSchema, fv as ContextConfigInsertSchema, gm as ContextConfigListResponse, g6 as ContextConfigResponse, fu as ContextConfigSelectSchema, fw as ContextConfigUpdateSchema, ej as ConversationApiInsertSchema, ei as ConversationApiSelectSchema, ek as ConversationApiUpdateSchema, eg as ConversationInsertSchema, gv as ConversationListResponse, gf as ConversationResponse, ef as ConversationSelectSchema, eh as ConversationUpdateSchema, fb as CredentialReferenceApiInsertSchema, fa as CredentialReferenceApiSelectSchema, fc as CredentialReferenceApiUpdateSchema, f8 as CredentialReferenceInsertSchema, go as CredentialReferenceListResponse, g8 as CredentialReferenceResponse, f7 as CredentialReferenceSelectSchema, f9 as CredentialReferenceUpdateSchema, eC as DataComponentApiInsertSchema, eB as DataComponentApiSelectSchema, eD as DataComponentApiUpdateSchema, ez as DataComponentBaseSchema, ey as DataComponentInsertSchema, gr as DataComponentListResponse, gb as DataComponentResponse, ex as DataComponentSelectSchema, eA as DataComponentUpdateSchema, fT as ErrorResponseSchema, fU as ExistsResponseSchema, e_ as ExternalAgentApiInsertSchema, eZ as ExternalAgentApiSelectSchema, e$ as ExternalAgentApiUpdateSchema, eX as ExternalAgentInsertSchema, gl as ExternalAgentListResponse, g5 as ExternalAgentResponse, eW as ExternalAgentSelectSchema, eY as ExternalAgentUpdateSchema, dT as ExternalSubAgentRelationApiInsertSchema, dS as ExternalSubAgentRelationInsertSchema, fs as FetchConfigSchema, ft as FetchDefinitionSchema, a as FullAgentAgentInsertSchema, g0 as FullProjectDefinitionSchema, F as FunctionApiInsertSchema, j as FunctionApiSelectSchema, k as FunctionApiUpdateSchema, fq as FunctionInsertSchema, gp as FunctionListResponse, g9 as FunctionResponse, fp as FunctionSelectSchema, fn as FunctionToolApiInsertSchema, fm as FunctionToolApiSelectSchema, fo as FunctionToolApiUpdateSchema, dE as FunctionToolConfig, dD as FunctionToolConfigSchema, fk as FunctionToolInsertSchema, gq as FunctionToolListResponse, ga as FunctionToolResponse, fj as FunctionToolSelectSchema, fl as FunctionToolUpdateSchema, fr as FunctionUpdateSchema, gB as HeadersScopeSchema, fK as LedgerArtifactApiInsertSchema, fJ as LedgerArtifactApiSelectSchema, fL as LedgerArtifactApiUpdateSchema, fH as LedgerArtifactInsertSchema, fG as LedgerArtifactSelectSchema, fI as LedgerArtifactUpdateSchema, fR as ListResponseSchema, dx as MAX_ID_LENGTH, fe as MCPToolConfigSchema, dw as MIN_ID_LENGTH, ec as McpToolDefinitionSchema, fd as McpToolSchema, ea as McpTransportConfigSchema, ep as MessageApiInsertSchema, eo as MessageApiSelectSchema, eq as MessageApiUpdateSchema, em as MessageInsertSchema, gw as MessageListResponse, gg as MessageResponse, el as MessageSelectSchema, en as MessageUpdateSchema, dA as ModelSchema, g as ModelSettings, M as ModelSettingsSchema, gK as PaginationQueryParamsSchema, fQ as PaginationSchema, f_ as ProjectApiInsertSchema, fZ as ProjectApiSelectSchema, f$ as ProjectApiUpdateSchema, fX as ProjectInsertSchema, gh as ProjectListResponse, dB as ProjectModelSchema, g1 as ProjectResponse, fW as ProjectSelectSchema, fY as ProjectUpdateSchema, fV as RemovedResponseSchema, dC as SandboxConfig, l as SandboxConfigSchema, fS as SingleResponseSchema, fM as StatusComponentSchema, fN as StatusUpdateSchema, d as StopWhen, S as StopWhenSchema, dJ as SubAgentApiInsertSchema, dI as SubAgentApiSelectSchema, dK as SubAgentApiUpdateSchema, eU as SubAgentArtifactComponentApiInsertSchema, eT as SubAgentArtifactComponentApiSelectSchema, eV as SubAgentArtifactComponentApiUpdateSchema, eR as SubAgentArtifactComponentInsertSchema, gA as SubAgentArtifactComponentListResponse, gy as SubAgentArtifactComponentResponse, eQ as SubAgentArtifactComponentSelectSchema, eS as SubAgentArtifactComponentUpdateSchema, eI as SubAgentDataComponentApiInsertSchema, eH as SubAgentDataComponentApiSelectSchema, eJ as SubAgentDataComponentApiUpdateSchema, eF as SubAgentDataComponentInsertSchema, gz as SubAgentDataComponentListResponse, gx as SubAgentDataComponentResponse, eE as SubAgentDataComponentSelectSchema, eG as SubAgentDataComponentUpdateSchema, dG as SubAgentInsertSchema, gi as SubAgentListResponse, dP as SubAgentRelationApiInsertSchema, dO as SubAgentRelationApiSelectSchema, dQ as SubAgentRelationApiUpdateSchema, dM as SubAgentRelationInsertSchema, gt as SubAgentRelationListResponse, dR as SubAgentRelationQuerySchema, gd as SubAgentRelationResponse, dL as SubAgentRelationSelectSchema, dN as SubAgentRelationUpdateSchema, g2 as SubAgentResponse, dF as SubAgentSelectSchema, f as SubAgentStopWhen, c as SubAgentStopWhenSchema, fE as SubAgentToolRelationApiInsertSchema, fD as SubAgentToolRelationApiSelectSchema, fF as SubAgentToolRelationApiUpdateSchema, fB as SubAgentToolRelationInsertSchema, gu as SubAgentToolRelationListResponse, ge as SubAgentToolRelationResponse, fA as SubAgentToolRelationSelectSchema, fC as SubAgentToolRelationUpdateSchema, dH as SubAgentUpdateSchema, e2 as TaskApiInsertSchema, e1 as TaskApiSelectSchema, e3 as TaskApiUpdateSchema, d$ as TaskInsertSchema, e8 as TaskRelationApiInsertSchema, e7 as TaskRelationApiSelectSchema, e9 as TaskRelationApiUpdateSchema, e5 as TaskRelationInsertSchema, e4 as TaskRelationSelectSchema, e6 as TaskRelationUpdateSchema, d_ as TaskSelectSchema, e0 as TaskUpdateSchema, gD as TenantIdParamsSchema, gC as TenantParamsSchema, gH as TenantProjectAgentIdParamsSchema, gG as TenantProjectAgentParamsSchema, gJ as TenantProjectAgentSubAgentIdParamsSchema, gI as TenantProjectAgentSubAgentParamsSchema, gF as TenantProjectIdParamsSchema, gE as TenantProjectParamsSchema, fh as ToolApiInsertSchema, fg as ToolApiSelectSchema, fi as ToolApiUpdateSchema, ee as ToolInsertSchema, gk as ToolListResponse, g4 as ToolResponse, ed as ToolSelectSchema, eb as ToolStatusSchema, ff as ToolUpdateSchema, dy as URL_SAFE_ID_PATTERN, dz as resourceIdSchema } from '../utility-HqRMF7sM.js';
|
|
4
4
|
export { P as PropsValidationResult, v as validatePropsAsJsonSchema } from '../props-validation-BMR1qNiy.js';
|
|
5
5
|
import 'drizzle-zod';
|
|
6
6
|
import 'drizzle-orm/sqlite-core';
|
package/dist/validation/index.js
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export { A2AMessageMetadataSchema, DataOperationDetailsSchema, DataOperationEventSchema, DelegationReturnedDataSchema, DelegationSentDataSchema, TransferDataSchema, generateIdFromName, isExternalAgent, isInternalAgent, isValidResourceId, validateAgentRelationships, validateAgentStructure, validateAndTypeAgentData, validateArtifactComponentReferences, validateDataComponentReferences, validateToolReferences } from '../chunk-
|
|
2
|
-
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 } from '../chunk-
|
|
1
|
+
export { A2AMessageMetadataSchema, DataOperationDetailsSchema, DataOperationEventSchema, DelegationReturnedDataSchema, DelegationSentDataSchema, TransferDataSchema, generateIdFromName, isExternalAgent, isInternalAgent, isValidResourceId, validateAgentRelationships, validateAgentStructure, validateAndTypeAgentData, validateArtifactComponentReferences, validateDataComponentReferences, validateToolReferences } from '../chunk-4FMDWUE4.js';
|
|
2
|
+
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 } from '../chunk-VICWT3WO.js';
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@inkeep/agents-core",
|
|
3
|
-
"version": "0.0.0-dev-
|
|
3
|
+
"version": "0.0.0-dev-20251012074449",
|
|
4
4
|
"description": "Agents Core contains the database schema, types, and validation schemas for Inkeep Agent Framework, along with core components.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"license": "SEE LICENSE IN LICENSE.md",
|