@inkeep/agents-core 0.18.0 → 0.19.0
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/README.md +4 -4
- package/dist/{chunk-E4SFK6AI.js → chunk-3GZBRBXP.js} +84 -87
- package/dist/{chunk-JTHQYGCX.js → chunk-3XUV5Q4D.js} +34 -34
- package/dist/{chunk-ID4CFGVF.js → chunk-B6F3RF4T.js} +87 -120
- package/dist/chunk-E6R6PML7.js +19 -0
- package/dist/chunk-HYS7HUYJ.js +27 -0
- package/dist/{chunk-TCLX6C3C.js → chunk-SLL6V3AE.js} +25 -18
- package/dist/{chunk-R2EERZSW.js → chunk-YECQCT5N.js} +1 -1
- package/dist/client-exports.cjs +201 -231
- package/dist/client-exports.d.cts +13 -14
- package/dist/client-exports.d.ts +13 -14
- package/dist/client-exports.js +10 -10
- package/dist/constants/models.cjs +31 -0
- package/dist/constants/models.d.cts +33 -0
- package/dist/constants/models.d.ts +33 -0
- package/dist/constants/models.js +1 -0
- package/dist/db/schema.cjs +85 -118
- package/dist/db/schema.d.cts +2 -3
- package/dist/db/schema.d.ts +2 -3
- package/dist/db/schema.js +1 -1
- package/dist/index.cjs +213943 -1046
- package/dist/index.d.cts +209 -208
- package/dist/index.d.ts +209 -208
- package/dist/index.js +213657 -767
- package/dist/{schema-Bjy5TkFv.d.cts → schema-Dp-qgdBT.d.ts} +56 -54
- package/dist/{schema-CfWbqju2.d.ts → schema-DrDaCn6H.d.cts} +56 -54
- package/dist/{signoz-queries-CifqdbnO.d.ts → signoz-queries-CuWMQh1H.d.cts} +19 -14
- package/dist/{signoz-queries-CifqdbnO.d.cts → signoz-queries-CuWMQh1H.d.ts} +19 -14
- package/dist/types/index.d.cts +2 -3
- package/dist/types/index.d.ts +2 -3
- package/dist/{utility-Fxoh7s82.d.cts → utility-BxbySenH.d.cts} +158 -307
- package/dist/{utility-Fxoh7s82.d.ts → utility-BxbySenH.d.ts} +158 -307
- package/dist/utils/schema-conversion.js +1 -1
- package/dist/validation/index.cjs +212 -249
- package/dist/validation/index.d.cts +12 -13
- package/dist/validation/index.d.ts +12 -13
- package/dist/validation/index.js +2 -2
- package/drizzle/0007_mighty_typhoid_mary.sql +227 -0
- package/drizzle/meta/0007_snapshot.json +2766 -0
- package/drizzle/meta/_journal.json +7 -0
- package/package.json +6 -1
- package/dist/chunk-MKBO26DX.js +0 -9
|
@@ -2,7 +2,6 @@ import { z as z$1 } from 'zod';
|
|
|
2
2
|
import * as drizzle_zod from 'drizzle-zod';
|
|
3
3
|
import * as drizzle_orm_sqlite_core from 'drizzle-orm/sqlite-core';
|
|
4
4
|
import { z } from '@hono/zod-openapi';
|
|
5
|
-
import { StreamableHTTPReconnectionOptions } from '@modelcontextprotocol/sdk/client/streamableHttp.js';
|
|
6
5
|
|
|
7
6
|
interface PartBase {
|
|
8
7
|
metadata?: {
|
|
@@ -382,14 +381,14 @@ declare const StopWhenSchema: z.ZodObject<{
|
|
|
382
381
|
transferCountIs: z.ZodOptional<z.ZodNumber>;
|
|
383
382
|
stepCountIs: z.ZodOptional<z.ZodNumber>;
|
|
384
383
|
}, z.core.$strip>;
|
|
385
|
-
declare const
|
|
384
|
+
declare const AgentStopWhenSchema: z.ZodObject<{
|
|
386
385
|
transferCountIs: z.ZodOptional<z.ZodNumber>;
|
|
387
386
|
}, z.core.$strip>;
|
|
388
387
|
declare const SubAgentStopWhenSchema: z.ZodObject<{
|
|
389
388
|
stepCountIs: z.ZodOptional<z.ZodNumber>;
|
|
390
389
|
}, z.core.$strip>;
|
|
391
390
|
type StopWhen = z.infer<typeof StopWhenSchema>;
|
|
392
|
-
type
|
|
391
|
+
type AgentStopWhen = z.infer<typeof AgentStopWhenSchema>;
|
|
393
392
|
type SubAgentStopWhen = z.infer<typeof SubAgentStopWhenSchema>;
|
|
394
393
|
declare const MIN_ID_LENGTH = 1;
|
|
395
394
|
declare const MAX_ID_LENGTH = 255;
|
|
@@ -634,8 +633,8 @@ declare const SubAgentSelectSchema: drizzle_zod.BuildSchema<"select", {
|
|
|
634
633
|
}, {}, {
|
|
635
634
|
length: number | undefined;
|
|
636
635
|
}>;
|
|
637
|
-
|
|
638
|
-
name: "
|
|
636
|
+
agentId: drizzle_orm_sqlite_core.SQLiteColumn<{
|
|
637
|
+
name: "agent_id";
|
|
639
638
|
tableName: "sub_agents";
|
|
640
639
|
dataType: "string";
|
|
641
640
|
columnType: "SQLiteText";
|
|
@@ -727,7 +726,7 @@ declare const SubAgentInsertSchema: z.ZodObject<{
|
|
|
727
726
|
}>>>>;
|
|
728
727
|
name: z.ZodString;
|
|
729
728
|
description: z.ZodString;
|
|
730
|
-
|
|
729
|
+
agentId: z.ZodString;
|
|
731
730
|
projectId: z.ZodString;
|
|
732
731
|
tenantId: z.ZodString;
|
|
733
732
|
id: z.ZodString;
|
|
@@ -765,7 +764,7 @@ declare const SubAgentUpdateSchema: z.ZodObject<{
|
|
|
765
764
|
}>>>>>;
|
|
766
765
|
name: z.ZodOptional<z.ZodString>;
|
|
767
766
|
description: z.ZodOptional<z.ZodString>;
|
|
768
|
-
|
|
767
|
+
agentId: z.ZodOptional<z.ZodString>;
|
|
769
768
|
projectId: z.ZodOptional<z.ZodString>;
|
|
770
769
|
tenantId: z.ZodOptional<z.ZodString>;
|
|
771
770
|
id: z.ZodOptional<z.ZodString>;
|
|
@@ -1037,8 +1036,8 @@ declare const SubAgentRelationSelectSchema: drizzle_zod.BuildSchema<"select", {
|
|
|
1037
1036
|
}, {}, {
|
|
1038
1037
|
length: number | undefined;
|
|
1039
1038
|
}>;
|
|
1040
|
-
|
|
1041
|
-
name: "
|
|
1039
|
+
agentId: drizzle_orm_sqlite_core.SQLiteColumn<{
|
|
1040
|
+
name: "agent_id";
|
|
1042
1041
|
tableName: "sub_agent_relations";
|
|
1043
1042
|
dataType: "string";
|
|
1044
1043
|
columnType: "SQLiteText";
|
|
@@ -1121,7 +1120,7 @@ declare const SubAgentRelationInsertSchema: z.ZodObject<{
|
|
|
1121
1120
|
projectId: z.ZodString;
|
|
1122
1121
|
tenantId: z.ZodString;
|
|
1123
1122
|
id: z.ZodString;
|
|
1124
|
-
|
|
1123
|
+
agentId: z.ZodString;
|
|
1125
1124
|
sourceSubAgentId: z.ZodString;
|
|
1126
1125
|
targetSubAgentId: z.ZodOptional<z.ZodString>;
|
|
1127
1126
|
externalSubAgentId: z.ZodOptional<z.ZodString>;
|
|
@@ -1136,7 +1135,7 @@ declare const SubAgentRelationUpdateSchema: z.ZodObject<{
|
|
|
1136
1135
|
projectId: z.ZodOptional<z.ZodString>;
|
|
1137
1136
|
tenantId: z.ZodOptional<z.ZodString>;
|
|
1138
1137
|
id: z.ZodOptional<z.ZodString>;
|
|
1139
|
-
|
|
1138
|
+
agentId: z.ZodOptional<z.ZodString>;
|
|
1140
1139
|
sourceSubAgentId: z.ZodOptional<z.ZodString>;
|
|
1141
1140
|
targetSubAgentId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
1142
1141
|
externalSubAgentId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
@@ -1190,7 +1189,7 @@ declare const ExternalSubAgentRelationInsertSchema: z.ZodObject<{
|
|
|
1190
1189
|
projectId: z.ZodString;
|
|
1191
1190
|
tenantId: z.ZodString;
|
|
1192
1191
|
id: z.ZodString;
|
|
1193
|
-
|
|
1192
|
+
agentId: z.ZodString;
|
|
1194
1193
|
sourceSubAgentId: z.ZodString;
|
|
1195
1194
|
externalSubAgentId: z.ZodString;
|
|
1196
1195
|
}, {
|
|
@@ -1199,7 +1198,7 @@ declare const ExternalSubAgentRelationInsertSchema: z.ZodObject<{
|
|
|
1199
1198
|
}>;
|
|
1200
1199
|
declare const ExternalSubAgentRelationApiInsertSchema: z.ZodObject<{
|
|
1201
1200
|
id: z.ZodString;
|
|
1202
|
-
|
|
1201
|
+
agentId: z.ZodString;
|
|
1203
1202
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
1204
1203
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
1205
1204
|
sourceSubAgentId: z.ZodString;
|
|
@@ -1207,10 +1206,10 @@ declare const ExternalSubAgentRelationApiInsertSchema: z.ZodObject<{
|
|
|
1207
1206
|
externalSubAgentId: z.ZodString;
|
|
1208
1207
|
relationType: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
1209
1208
|
}, z.core.$strip>;
|
|
1210
|
-
declare const
|
|
1209
|
+
declare const AgentSelectSchema: drizzle_zod.BuildSchema<"select", {
|
|
1211
1210
|
createdAt: drizzle_orm_sqlite_core.SQLiteColumn<{
|
|
1212
1211
|
name: "created_at";
|
|
1213
|
-
tableName: "
|
|
1212
|
+
tableName: "agent";
|
|
1214
1213
|
dataType: "string";
|
|
1215
1214
|
columnType: "SQLiteText";
|
|
1216
1215
|
data: string;
|
|
@@ -1229,7 +1228,7 @@ declare const AgentGraphSelectSchema: drizzle_zod.BuildSchema<"select", {
|
|
|
1229
1228
|
}>;
|
|
1230
1229
|
updatedAt: drizzle_orm_sqlite_core.SQLiteColumn<{
|
|
1231
1230
|
name: "updated_at";
|
|
1232
|
-
tableName: "
|
|
1231
|
+
tableName: "agent";
|
|
1233
1232
|
dataType: "string";
|
|
1234
1233
|
columnType: "SQLiteText";
|
|
1235
1234
|
data: string;
|
|
@@ -1248,7 +1247,7 @@ declare const AgentGraphSelectSchema: drizzle_zod.BuildSchema<"select", {
|
|
|
1248
1247
|
}>;
|
|
1249
1248
|
name: drizzle_orm_sqlite_core.SQLiteColumn<{
|
|
1250
1249
|
name: "name";
|
|
1251
|
-
tableName: "
|
|
1250
|
+
tableName: "agent";
|
|
1252
1251
|
dataType: "string";
|
|
1253
1252
|
columnType: "SQLiteText";
|
|
1254
1253
|
data: string;
|
|
@@ -1267,7 +1266,7 @@ declare const AgentGraphSelectSchema: drizzle_zod.BuildSchema<"select", {
|
|
|
1267
1266
|
}>;
|
|
1268
1267
|
description: drizzle_orm_sqlite_core.SQLiteColumn<{
|
|
1269
1268
|
name: "description";
|
|
1270
|
-
tableName: "
|
|
1269
|
+
tableName: "agent";
|
|
1271
1270
|
dataType: "string";
|
|
1272
1271
|
columnType: "SQLiteText";
|
|
1273
1272
|
data: string;
|
|
@@ -1286,7 +1285,7 @@ declare const AgentGraphSelectSchema: drizzle_zod.BuildSchema<"select", {
|
|
|
1286
1285
|
}>;
|
|
1287
1286
|
defaultSubAgentId: drizzle_orm_sqlite_core.SQLiteColumn<{
|
|
1288
1287
|
name: "default_sub_agent_id";
|
|
1289
|
-
tableName: "
|
|
1288
|
+
tableName: "agent";
|
|
1290
1289
|
dataType: "string";
|
|
1291
1290
|
columnType: "SQLiteText";
|
|
1292
1291
|
data: string;
|
|
@@ -1305,7 +1304,7 @@ declare const AgentGraphSelectSchema: drizzle_zod.BuildSchema<"select", {
|
|
|
1305
1304
|
}>;
|
|
1306
1305
|
contextConfigId: drizzle_orm_sqlite_core.SQLiteColumn<{
|
|
1307
1306
|
name: "context_config_id";
|
|
1308
|
-
tableName: "
|
|
1307
|
+
tableName: "agent";
|
|
1309
1308
|
dataType: "string";
|
|
1310
1309
|
columnType: "SQLiteText";
|
|
1311
1310
|
data: string;
|
|
@@ -1324,7 +1323,7 @@ declare const AgentGraphSelectSchema: drizzle_zod.BuildSchema<"select", {
|
|
|
1324
1323
|
}>;
|
|
1325
1324
|
models: drizzle_orm_sqlite_core.SQLiteColumn<{
|
|
1326
1325
|
name: "models";
|
|
1327
|
-
tableName: "
|
|
1326
|
+
tableName: "agent";
|
|
1328
1327
|
dataType: "json";
|
|
1329
1328
|
columnType: "SQLiteTextJson";
|
|
1330
1329
|
data: {
|
|
@@ -1369,7 +1368,7 @@ declare const AgentGraphSelectSchema: drizzle_zod.BuildSchema<"select", {
|
|
|
1369
1368
|
}>;
|
|
1370
1369
|
statusUpdates: drizzle_orm_sqlite_core.SQLiteColumn<{
|
|
1371
1370
|
name: "status_updates";
|
|
1372
|
-
tableName: "
|
|
1371
|
+
tableName: "agent";
|
|
1373
1372
|
dataType: "json";
|
|
1374
1373
|
columnType: "SQLiteTextJson";
|
|
1375
1374
|
data: {
|
|
@@ -1414,9 +1413,9 @@ declare const AgentGraphSelectSchema: drizzle_zod.BuildSchema<"select", {
|
|
|
1414
1413
|
}[] | undefined;
|
|
1415
1414
|
};
|
|
1416
1415
|
}>;
|
|
1417
|
-
|
|
1418
|
-
name: "
|
|
1419
|
-
tableName: "
|
|
1416
|
+
prompt: drizzle_orm_sqlite_core.SQLiteColumn<{
|
|
1417
|
+
name: "prompt";
|
|
1418
|
+
tableName: "agent";
|
|
1420
1419
|
dataType: "string";
|
|
1421
1420
|
columnType: "SQLiteText";
|
|
1422
1421
|
data: string;
|
|
@@ -1435,7 +1434,7 @@ declare const AgentGraphSelectSchema: drizzle_zod.BuildSchema<"select", {
|
|
|
1435
1434
|
}>;
|
|
1436
1435
|
stopWhen: drizzle_orm_sqlite_core.SQLiteColumn<{
|
|
1437
1436
|
name: "stop_when";
|
|
1438
|
-
tableName: "
|
|
1437
|
+
tableName: "agent";
|
|
1439
1438
|
dataType: "json";
|
|
1440
1439
|
columnType: "SQLiteTextJson";
|
|
1441
1440
|
data: {
|
|
@@ -1458,7 +1457,7 @@ declare const AgentGraphSelectSchema: drizzle_zod.BuildSchema<"select", {
|
|
|
1458
1457
|
}>;
|
|
1459
1458
|
projectId: drizzle_orm_sqlite_core.SQLiteColumn<{
|
|
1460
1459
|
name: "project_id";
|
|
1461
|
-
tableName: "
|
|
1460
|
+
tableName: "agent";
|
|
1462
1461
|
dataType: "string";
|
|
1463
1462
|
columnType: "SQLiteText";
|
|
1464
1463
|
data: string;
|
|
@@ -1477,7 +1476,7 @@ declare const AgentGraphSelectSchema: drizzle_zod.BuildSchema<"select", {
|
|
|
1477
1476
|
}>;
|
|
1478
1477
|
tenantId: drizzle_orm_sqlite_core.SQLiteColumn<{
|
|
1479
1478
|
name: "tenant_id";
|
|
1480
|
-
tableName: "
|
|
1479
|
+
tableName: "agent";
|
|
1481
1480
|
dataType: "string";
|
|
1482
1481
|
columnType: "SQLiteText";
|
|
1483
1482
|
data: string;
|
|
@@ -1496,7 +1495,7 @@ declare const AgentGraphSelectSchema: drizzle_zod.BuildSchema<"select", {
|
|
|
1496
1495
|
}>;
|
|
1497
1496
|
id: drizzle_orm_sqlite_core.SQLiteColumn<{
|
|
1498
1497
|
name: "id";
|
|
1499
|
-
tableName: "
|
|
1498
|
+
tableName: "agent";
|
|
1500
1499
|
dataType: "string";
|
|
1501
1500
|
columnType: "SQLiteText";
|
|
1502
1501
|
data: string;
|
|
@@ -1514,7 +1513,7 @@ declare const AgentGraphSelectSchema: drizzle_zod.BuildSchema<"select", {
|
|
|
1514
1513
|
length: number | undefined;
|
|
1515
1514
|
}>;
|
|
1516
1515
|
}, undefined, undefined>;
|
|
1517
|
-
declare const
|
|
1516
|
+
declare const AgentInsertSchema: z.ZodObject<{
|
|
1518
1517
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
1519
1518
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
1520
1519
|
name: z.ZodString;
|
|
@@ -1631,7 +1630,7 @@ declare const AgentGraphInsertSchema: z.ZodObject<{
|
|
|
1631
1630
|
} | undefined;
|
|
1632
1631
|
}[] | undefined;
|
|
1633
1632
|
}>>>>;
|
|
1634
|
-
|
|
1633
|
+
prompt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
1635
1634
|
stopWhen: z.ZodOptional<z.ZodNullable<z.ZodType<{
|
|
1636
1635
|
transferCountIs?: number | undefined;
|
|
1637
1636
|
}, {
|
|
@@ -1648,7 +1647,7 @@ declare const AgentGraphInsertSchema: z.ZodObject<{
|
|
|
1648
1647
|
out: {};
|
|
1649
1648
|
in: {};
|
|
1650
1649
|
}>;
|
|
1651
|
-
declare const
|
|
1650
|
+
declare const AgentUpdateSchema: z.ZodObject<{
|
|
1652
1651
|
createdAt: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
1653
1652
|
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
1654
1653
|
name: z.ZodOptional<z.ZodString>;
|
|
@@ -1765,7 +1764,7 @@ declare const AgentGraphUpdateSchema: z.ZodObject<{
|
|
|
1765
1764
|
} | undefined;
|
|
1766
1765
|
}[] | undefined;
|
|
1767
1766
|
}>>>>>;
|
|
1768
|
-
|
|
1767
|
+
prompt: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
1769
1768
|
stopWhen: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<{
|
|
1770
1769
|
transferCountIs?: number | undefined;
|
|
1771
1770
|
}, {
|
|
@@ -1782,10 +1781,11 @@ declare const AgentGraphUpdateSchema: z.ZodObject<{
|
|
|
1782
1781
|
out: {};
|
|
1783
1782
|
in: {};
|
|
1784
1783
|
}>;
|
|
1785
|
-
declare const
|
|
1784
|
+
declare const AgentApiSelectSchema: z.ZodObject<{
|
|
1786
1785
|
id: z.ZodString;
|
|
1787
1786
|
name: z.ZodString;
|
|
1788
1787
|
description: z.ZodNullable<z.ZodString>;
|
|
1788
|
+
prompt: z.ZodNullable<z.ZodString>;
|
|
1789
1789
|
createdAt: z.ZodString;
|
|
1790
1790
|
updatedAt: z.ZodString;
|
|
1791
1791
|
models: z.ZodNullable<z.ZodType<{
|
|
@@ -1909,11 +1909,11 @@ declare const AgentGraphApiSelectSchema: z.ZodObject<{
|
|
|
1909
1909
|
} | undefined;
|
|
1910
1910
|
}[] | undefined;
|
|
1911
1911
|
}>>>;
|
|
1912
|
-
graphPrompt: z.ZodNullable<z.ZodString>;
|
|
1913
1912
|
}, z.core.$strip>;
|
|
1914
|
-
declare const
|
|
1913
|
+
declare const AgentApiInsertSchema: z.ZodObject<{
|
|
1915
1914
|
name: z.ZodString;
|
|
1916
1915
|
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
1916
|
+
prompt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
1917
1917
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
1918
1918
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
1919
1919
|
models: z.ZodOptional<z.ZodNullable<z.ZodType<{
|
|
@@ -2037,13 +2037,13 @@ declare const AgentGraphApiInsertSchema: z.ZodObject<{
|
|
|
2037
2037
|
} | undefined;
|
|
2038
2038
|
}[] | undefined;
|
|
2039
2039
|
}>>>>;
|
|
2040
|
-
graphPrompt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
2041
2040
|
id: z.ZodString;
|
|
2042
2041
|
}, z.core.$strip>;
|
|
2043
|
-
declare const
|
|
2042
|
+
declare const AgentApiUpdateSchema: z.ZodObject<{
|
|
2044
2043
|
id: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
2045
2044
|
name: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
2046
2045
|
description: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
2046
|
+
prompt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
2047
2047
|
createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
2048
2048
|
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
2049
2049
|
models: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<{
|
|
@@ -2167,7 +2167,6 @@ declare const AgentGraphApiUpdateSchema: z.ZodObject<{
|
|
|
2167
2167
|
} | undefined;
|
|
2168
2168
|
}[] | undefined;
|
|
2169
2169
|
}>>>>>>;
|
|
2170
|
-
graphPrompt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
2171
2170
|
}, z.core.$strip>;
|
|
2172
2171
|
declare const TaskSelectSchema: drizzle_zod.BuildSchema<"select", {
|
|
2173
2172
|
createdAt: drizzle_orm_sqlite_core.SQLiteColumn<{
|
|
@@ -2284,8 +2283,8 @@ declare const TaskSelectSchema: drizzle_zod.BuildSchema<"select", {
|
|
|
2284
2283
|
}, {}, {
|
|
2285
2284
|
length: number | undefined;
|
|
2286
2285
|
}>;
|
|
2287
|
-
|
|
2288
|
-
name: "
|
|
2286
|
+
agentId: drizzle_orm_sqlite_core.SQLiteColumn<{
|
|
2287
|
+
name: "agent_id";
|
|
2289
2288
|
tableName: "tasks";
|
|
2290
2289
|
dataType: "string";
|
|
2291
2290
|
columnType: "SQLiteText";
|
|
@@ -2368,7 +2367,7 @@ declare const TaskInsertSchema: z.ZodObject<{
|
|
|
2368
2367
|
status: z.ZodString;
|
|
2369
2368
|
metadata: z.ZodOptional<z.ZodNullable<z.ZodType<TaskMetadataConfig, TaskMetadataConfig, z.core.$ZodTypeInternals<TaskMetadataConfig, TaskMetadataConfig>>>>;
|
|
2370
2369
|
subAgentId: z.ZodString;
|
|
2371
|
-
|
|
2370
|
+
agentId: z.ZodString;
|
|
2372
2371
|
projectId: z.ZodString;
|
|
2373
2372
|
tenantId: z.ZodString;
|
|
2374
2373
|
id: z.ZodString;
|
|
@@ -2384,7 +2383,7 @@ declare const TaskUpdateSchema: z.ZodObject<{
|
|
|
2384
2383
|
status: z.ZodOptional<z.ZodString>;
|
|
2385
2384
|
metadata: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<TaskMetadataConfig, TaskMetadataConfig, z.core.$ZodTypeInternals<TaskMetadataConfig, TaskMetadataConfig>>>>>;
|
|
2386
2385
|
subAgentId: z.ZodOptional<z.ZodString>;
|
|
2387
|
-
|
|
2386
|
+
agentId: z.ZodOptional<z.ZodString>;
|
|
2388
2387
|
projectId: z.ZodOptional<z.ZodString>;
|
|
2389
2388
|
tenantId: z.ZodOptional<z.ZodString>;
|
|
2390
2389
|
id: z.ZodOptional<z.ZodString>;
|
|
@@ -2395,7 +2394,7 @@ declare const TaskUpdateSchema: z.ZodObject<{
|
|
|
2395
2394
|
}>;
|
|
2396
2395
|
declare const TaskApiSelectSchema: z.ZodObject<{
|
|
2397
2396
|
id: z.ZodString;
|
|
2398
|
-
|
|
2397
|
+
agentId: z.ZodString;
|
|
2399
2398
|
createdAt: z.ZodString;
|
|
2400
2399
|
updatedAt: z.ZodString;
|
|
2401
2400
|
status: z.ZodString;
|
|
@@ -2405,7 +2404,7 @@ declare const TaskApiSelectSchema: z.ZodObject<{
|
|
|
2405
2404
|
}, z.core.$strip>;
|
|
2406
2405
|
declare const TaskApiInsertSchema: z.ZodObject<{
|
|
2407
2406
|
id: z.ZodString;
|
|
2408
|
-
|
|
2407
|
+
agentId: z.ZodString;
|
|
2409
2408
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
2410
2409
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
2411
2410
|
status: z.ZodString;
|
|
@@ -2416,7 +2415,7 @@ declare const TaskApiInsertSchema: z.ZodObject<{
|
|
|
2416
2415
|
}, z.core.$strip>;
|
|
2417
2416
|
declare const TaskApiUpdateSchema: z.ZodObject<{
|
|
2418
2417
|
id: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
2419
|
-
|
|
2418
|
+
agentId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
2420
2419
|
createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
2421
2420
|
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
2422
2421
|
status: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
@@ -2636,7 +2635,7 @@ declare const McpTransportConfigSchema: z.ZodObject<{
|
|
|
2636
2635
|
}>;
|
|
2637
2636
|
requestInit: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
2638
2637
|
eventSourceInit: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
2639
|
-
reconnectionOptions: z.ZodOptional<z.
|
|
2638
|
+
reconnectionOptions: z.ZodOptional<z.ZodAny>;
|
|
2640
2639
|
sessionId: z.ZodOptional<z.ZodString>;
|
|
2641
2640
|
}, z.core.$strip>;
|
|
2642
2641
|
declare const ToolStatusSchema: z.ZodEnum<{
|
|
@@ -2922,7 +2921,7 @@ declare const ToolInsertSchema: z.ZodObject<{
|
|
|
2922
2921
|
type: z.ZodLiteral<"mcp">;
|
|
2923
2922
|
mcp: z.ZodObject<{
|
|
2924
2923
|
server: z.ZodObject<{
|
|
2925
|
-
url: z.
|
|
2924
|
+
url: z.ZodURL;
|
|
2926
2925
|
}, z.core.$strip>;
|
|
2927
2926
|
transport: z.ZodOptional<z.ZodObject<{
|
|
2928
2927
|
type: z.ZodEnum<{
|
|
@@ -2931,7 +2930,7 @@ declare const ToolInsertSchema: z.ZodObject<{
|
|
|
2931
2930
|
}>;
|
|
2932
2931
|
requestInit: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
2933
2932
|
eventSourceInit: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
2934
|
-
reconnectionOptions: z.ZodOptional<z.
|
|
2933
|
+
reconnectionOptions: z.ZodOptional<z.ZodAny>;
|
|
2935
2934
|
sessionId: z.ZodOptional<z.ZodString>;
|
|
2936
2935
|
}, z.core.$strip>>;
|
|
2937
2936
|
activeTools: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
@@ -4489,8 +4488,8 @@ declare const SubAgentDataComponentSelectSchema: drizzle_zod.BuildSchema<"select
|
|
|
4489
4488
|
}, {}, {
|
|
4490
4489
|
length: number | undefined;
|
|
4491
4490
|
}>;
|
|
4492
|
-
|
|
4493
|
-
name: "
|
|
4491
|
+
agentId: drizzle_orm_sqlite_core.SQLiteColumn<{
|
|
4492
|
+
name: "agent_id";
|
|
4494
4493
|
tableName: "sub_agent_data_components";
|
|
4495
4494
|
dataType: "string";
|
|
4496
4495
|
columnType: "SQLiteText";
|
|
@@ -4624,8 +4623,8 @@ declare const SubAgentDataComponentInsertSchema: drizzle_zod.BuildSchema<"insert
|
|
|
4624
4623
|
}, {}, {
|
|
4625
4624
|
length: number | undefined;
|
|
4626
4625
|
}>;
|
|
4627
|
-
|
|
4628
|
-
name: "
|
|
4626
|
+
agentId: drizzle_orm_sqlite_core.SQLiteColumn<{
|
|
4627
|
+
name: "agent_id";
|
|
4629
4628
|
tableName: "sub_agent_data_components";
|
|
4630
4629
|
dataType: "string";
|
|
4631
4630
|
columnType: "SQLiteText";
|
|
@@ -4705,7 +4704,7 @@ declare const SubAgentDataComponentUpdateSchema: z.ZodObject<{
|
|
|
4705
4704
|
dataComponentId: z.ZodOptional<z.ZodString>;
|
|
4706
4705
|
createdAt: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
4707
4706
|
subAgentId: z.ZodOptional<z.ZodString>;
|
|
4708
|
-
|
|
4707
|
+
agentId: z.ZodOptional<z.ZodString>;
|
|
4709
4708
|
projectId: z.ZodOptional<z.ZodString>;
|
|
4710
4709
|
tenantId: z.ZodOptional<z.ZodString>;
|
|
4711
4710
|
id: z.ZodOptional<z.ZodString>;
|
|
@@ -4720,7 +4719,7 @@ declare const SubAgentDataComponentApiSelectSchema: z.ZodObject<{
|
|
|
4720
4719
|
dataComponentId: z.ZodString;
|
|
4721
4720
|
}, z.core.$strip>;
|
|
4722
4721
|
declare const SubAgentDataComponentApiInsertSchema: z.ZodObject<{
|
|
4723
|
-
|
|
4722
|
+
agentId: z.ZodString;
|
|
4724
4723
|
subAgentId: z.ZodString;
|
|
4725
4724
|
dataComponentId: z.ZodString;
|
|
4726
4725
|
}, {
|
|
@@ -4996,8 +4995,8 @@ declare const SubAgentArtifactComponentSelectSchema: drizzle_zod.BuildSchema<"se
|
|
|
4996
4995
|
}, {}, {
|
|
4997
4996
|
length: number | undefined;
|
|
4998
4997
|
}>;
|
|
4999
|
-
|
|
5000
|
-
name: "
|
|
4998
|
+
agentId: drizzle_orm_sqlite_core.SQLiteColumn<{
|
|
4999
|
+
name: "agent_id";
|
|
5001
5000
|
tableName: "sub_agent_artifact_components";
|
|
5002
5001
|
dataType: "string";
|
|
5003
5002
|
columnType: "SQLiteText";
|
|
@@ -5075,7 +5074,7 @@ declare const SubAgentArtifactComponentSelectSchema: drizzle_zod.BuildSchema<"se
|
|
|
5075
5074
|
}, undefined, undefined>;
|
|
5076
5075
|
declare const SubAgentArtifactComponentInsertSchema: z.ZodObject<{
|
|
5077
5076
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
5078
|
-
|
|
5077
|
+
agentId: z.ZodString;
|
|
5079
5078
|
projectId: z.ZodString;
|
|
5080
5079
|
tenantId: z.ZodString;
|
|
5081
5080
|
id: z.ZodString;
|
|
@@ -5087,7 +5086,7 @@ declare const SubAgentArtifactComponentInsertSchema: z.ZodObject<{
|
|
|
5087
5086
|
}>;
|
|
5088
5087
|
declare const SubAgentArtifactComponentUpdateSchema: z.ZodObject<{
|
|
5089
5088
|
createdAt: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
5090
|
-
|
|
5089
|
+
agentId: z.ZodOptional<z.ZodString>;
|
|
5091
5090
|
projectId: z.ZodOptional<z.ZodString>;
|
|
5092
5091
|
tenantId: z.ZodOptional<z.ZodString>;
|
|
5093
5092
|
id: z.ZodOptional<z.ZodString>;
|
|
@@ -5104,7 +5103,7 @@ declare const SubAgentArtifactComponentApiSelectSchema: z.ZodObject<{
|
|
|
5104
5103
|
artifactComponentId: z.ZodString;
|
|
5105
5104
|
}, z.core.$strip>;
|
|
5106
5105
|
declare const SubAgentArtifactComponentApiInsertSchema: z.ZodObject<{
|
|
5107
|
-
|
|
5106
|
+
agentId: z.ZodString;
|
|
5108
5107
|
subAgentId: z.ZodString;
|
|
5109
5108
|
artifactComponentId: z.ZodString;
|
|
5110
5109
|
}, {
|
|
@@ -5123,7 +5122,7 @@ declare const ExternalAgentSelectSchema: z.ZodObject<{
|
|
|
5123
5122
|
baseUrl: z.ZodString;
|
|
5124
5123
|
name: z.ZodString;
|
|
5125
5124
|
description: z.ZodString;
|
|
5126
|
-
|
|
5125
|
+
agentId: z.ZodString;
|
|
5127
5126
|
projectId: z.ZodString;
|
|
5128
5127
|
tenantId: z.ZodString;
|
|
5129
5128
|
id: z.ZodString;
|
|
@@ -5141,7 +5140,7 @@ declare const ExternalAgentInsertSchema: z.ZodObject<{
|
|
|
5141
5140
|
headers: z.ZodOptional<z.ZodNullable<z.ZodType<Record<string, string>, Record<string, string>, z.core.$ZodTypeInternals<Record<string, string>, Record<string, string>>>>>;
|
|
5142
5141
|
name: z.ZodString;
|
|
5143
5142
|
description: z.ZodString;
|
|
5144
|
-
|
|
5143
|
+
agentId: z.ZodString;
|
|
5145
5144
|
projectId: z.ZodString;
|
|
5146
5145
|
tenantId: z.ZodString;
|
|
5147
5146
|
id: z.ZodString;
|
|
@@ -5157,7 +5156,7 @@ declare const ExternalAgentUpdateSchema: z.ZodObject<{
|
|
|
5157
5156
|
headers: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<Record<string, string>, Record<string, string>, z.core.$ZodTypeInternals<Record<string, string>, Record<string, string>>>>>>;
|
|
5158
5157
|
name: z.ZodOptional<z.ZodString>;
|
|
5159
5158
|
description: z.ZodOptional<z.ZodString>;
|
|
5160
|
-
|
|
5159
|
+
agentId: z.ZodOptional<z.ZodString>;
|
|
5161
5160
|
projectId: z.ZodOptional<z.ZodString>;
|
|
5162
5161
|
tenantId: z.ZodOptional<z.ZodString>;
|
|
5163
5162
|
id: z.ZodOptional<z.ZodString>;
|
|
@@ -5430,8 +5429,8 @@ declare const ApiKeySelectSchema: drizzle_zod.BuildSchema<"select", {
|
|
|
5430
5429
|
}, {}, {
|
|
5431
5430
|
length: number | undefined;
|
|
5432
5431
|
}>;
|
|
5433
|
-
|
|
5434
|
-
name: "
|
|
5432
|
+
agentId: drizzle_orm_sqlite_core.SQLiteColumn<{
|
|
5433
|
+
name: "agent_id";
|
|
5435
5434
|
tableName: "api_keys";
|
|
5436
5435
|
dataType: "string";
|
|
5437
5436
|
columnType: "SQLiteText";
|
|
@@ -5519,14 +5518,14 @@ declare const ApiKeyInsertSchema: z.ZodObject<{
|
|
|
5519
5518
|
projectId: z.ZodString;
|
|
5520
5519
|
tenantId: z.ZodString;
|
|
5521
5520
|
id: z.ZodString;
|
|
5522
|
-
|
|
5521
|
+
agentId: z.ZodString;
|
|
5523
5522
|
}, {
|
|
5524
5523
|
out: {};
|
|
5525
5524
|
in: {};
|
|
5526
5525
|
}>;
|
|
5527
5526
|
declare const ApiKeyUpdateSchema: z.ZodObject<{
|
|
5528
5527
|
name: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
5529
|
-
|
|
5528
|
+
agentId: z.ZodOptional<z.ZodString>;
|
|
5530
5529
|
lastUsedAt: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
5531
5530
|
expiresAt: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
5532
5531
|
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
@@ -5537,7 +5536,7 @@ declare const ApiKeyUpdateSchema: z.ZodObject<{
|
|
|
5537
5536
|
declare const ApiKeyApiSelectSchema: z.ZodObject<{
|
|
5538
5537
|
id: z.ZodString;
|
|
5539
5538
|
name: z.ZodNullable<z.ZodString>;
|
|
5540
|
-
|
|
5539
|
+
agentId: z.ZodString;
|
|
5541
5540
|
publicId: z.ZodString;
|
|
5542
5541
|
keyPrefix: z.ZodString;
|
|
5543
5542
|
lastUsedAt: z.ZodNullable<z.ZodString>;
|
|
@@ -5553,7 +5552,7 @@ declare const ApiKeyApiCreationResponseSchema: z.ZodObject<{
|
|
|
5553
5552
|
apiKey: z.ZodObject<{
|
|
5554
5553
|
id: z.ZodString;
|
|
5555
5554
|
name: z.ZodNullable<z.ZodString>;
|
|
5556
|
-
|
|
5555
|
+
agentId: z.ZodString;
|
|
5557
5556
|
publicId: z.ZodString;
|
|
5558
5557
|
keyPrefix: z.ZodString;
|
|
5559
5558
|
lastUsedAt: z.ZodNullable<z.ZodString>;
|
|
@@ -5569,7 +5568,7 @@ declare const ApiKeyApiCreationResponseSchema: z.ZodObject<{
|
|
|
5569
5568
|
}, z.core.$strip>;
|
|
5570
5569
|
declare const ApiKeyApiInsertSchema: z.ZodObject<{
|
|
5571
5570
|
name: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
5572
|
-
|
|
5571
|
+
agentId: z.ZodString;
|
|
5573
5572
|
expiresAt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
5574
5573
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
5575
5574
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
@@ -5579,7 +5578,7 @@ declare const ApiKeyApiInsertSchema: z.ZodObject<{
|
|
|
5579
5578
|
}>;
|
|
5580
5579
|
declare const ApiKeyApiUpdateSchema: z.ZodObject<{
|
|
5581
5580
|
name: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
5582
|
-
|
|
5581
|
+
agentId: z.ZodOptional<z.ZodString>;
|
|
5583
5582
|
lastUsedAt: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
5584
5583
|
expiresAt: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
5585
5584
|
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
@@ -5928,7 +5927,7 @@ declare const McpToolSchema: z.ZodObject<{
|
|
|
5928
5927
|
type: z.ZodLiteral<"mcp">;
|
|
5929
5928
|
mcp: z.ZodObject<{
|
|
5930
5929
|
server: z.ZodObject<{
|
|
5931
|
-
url: z.
|
|
5930
|
+
url: z.ZodURL;
|
|
5932
5931
|
}, z.core.$strip>;
|
|
5933
5932
|
transport: z.ZodOptional<z.ZodObject<{
|
|
5934
5933
|
type: z.ZodEnum<{
|
|
@@ -5937,7 +5936,7 @@ declare const McpToolSchema: z.ZodObject<{
|
|
|
5937
5936
|
}>;
|
|
5938
5937
|
requestInit: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
5939
5938
|
eventSourceInit: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
5940
|
-
reconnectionOptions: z.ZodOptional<z.
|
|
5939
|
+
reconnectionOptions: z.ZodOptional<z.ZodAny>;
|
|
5941
5940
|
sessionId: z.ZodOptional<z.ZodString>;
|
|
5942
5941
|
}, z.core.$strip>>;
|
|
5943
5942
|
activeTools: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
@@ -5990,7 +5989,7 @@ declare const MCPToolConfigSchema: z.ZodObject<{
|
|
|
5990
5989
|
}>;
|
|
5991
5990
|
requestInit: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
5992
5991
|
eventSourceInit: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
5993
|
-
reconnectionOptions: z.ZodOptional<z.
|
|
5992
|
+
reconnectionOptions: z.ZodOptional<z.ZodAny>;
|
|
5994
5993
|
sessionId: z.ZodOptional<z.ZodString>;
|
|
5995
5994
|
}, z.core.$strip>>;
|
|
5996
5995
|
credential: z.ZodOptional<z.ZodObject<{
|
|
@@ -6026,7 +6025,7 @@ declare const ToolUpdateSchema: z.ZodObject<{
|
|
|
6026
6025
|
type: z.ZodLiteral<"mcp">;
|
|
6027
6026
|
mcp: z.ZodObject<{
|
|
6028
6027
|
server: z.ZodObject<{
|
|
6029
|
-
url: z.
|
|
6028
|
+
url: z.ZodURL;
|
|
6030
6029
|
}, z.core.$strip>;
|
|
6031
6030
|
transport: z.ZodOptional<z.ZodObject<{
|
|
6032
6031
|
type: z.ZodEnum<{
|
|
@@ -6035,7 +6034,7 @@ declare const ToolUpdateSchema: z.ZodObject<{
|
|
|
6035
6034
|
}>;
|
|
6036
6035
|
requestInit: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
6037
6036
|
eventSourceInit: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
6038
|
-
reconnectionOptions: z.ZodOptional<z.
|
|
6037
|
+
reconnectionOptions: z.ZodOptional<z.ZodAny>;
|
|
6039
6038
|
sessionId: z.ZodOptional<z.ZodString>;
|
|
6040
6039
|
}, z.core.$strip>>;
|
|
6041
6040
|
activeTools: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
@@ -6078,7 +6077,7 @@ declare const ToolApiInsertSchema: z.ZodObject<{
|
|
|
6078
6077
|
type: z.ZodLiteral<"mcp">;
|
|
6079
6078
|
mcp: z.ZodObject<{
|
|
6080
6079
|
server: z.ZodObject<{
|
|
6081
|
-
url: z.
|
|
6080
|
+
url: z.ZodURL;
|
|
6082
6081
|
}, z.core.$strip>;
|
|
6083
6082
|
transport: z.ZodOptional<z.ZodObject<{
|
|
6084
6083
|
type: z.ZodEnum<{
|
|
@@ -6087,7 +6086,7 @@ declare const ToolApiInsertSchema: z.ZodObject<{
|
|
|
6087
6086
|
}>;
|
|
6088
6087
|
requestInit: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
6089
6088
|
eventSourceInit: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
6090
|
-
reconnectionOptions: z.ZodOptional<z.
|
|
6089
|
+
reconnectionOptions: z.ZodOptional<z.ZodAny>;
|
|
6091
6090
|
sessionId: z.ZodOptional<z.ZodString>;
|
|
6092
6091
|
}, z.core.$strip>>;
|
|
6093
6092
|
activeTools: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
@@ -6109,7 +6108,7 @@ declare const ToolApiUpdateSchema: z.ZodObject<{
|
|
|
6109
6108
|
type: z.ZodLiteral<"mcp">;
|
|
6110
6109
|
mcp: z.ZodObject<{
|
|
6111
6110
|
server: z.ZodObject<{
|
|
6112
|
-
url: z.
|
|
6111
|
+
url: z.ZodURL;
|
|
6113
6112
|
}, z.core.$strip>;
|
|
6114
6113
|
transport: z.ZodOptional<z.ZodObject<{
|
|
6115
6114
|
type: z.ZodEnum<{
|
|
@@ -6118,7 +6117,7 @@ declare const ToolApiUpdateSchema: z.ZodObject<{
|
|
|
6118
6117
|
}>;
|
|
6119
6118
|
requestInit: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
6120
6119
|
eventSourceInit: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
6121
|
-
reconnectionOptions: z.ZodOptional<z.
|
|
6120
|
+
reconnectionOptions: z.ZodOptional<z.ZodAny>;
|
|
6122
6121
|
sessionId: z.ZodOptional<z.ZodString>;
|
|
6123
6122
|
}, z.core.$strip>>;
|
|
6124
6123
|
activeTools: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
@@ -6228,8 +6227,8 @@ declare const FunctionToolSelectSchema: drizzle_zod.BuildSchema<"select", {
|
|
|
6228
6227
|
}, {}, {
|
|
6229
6228
|
length: number | undefined;
|
|
6230
6229
|
}>;
|
|
6231
|
-
|
|
6232
|
-
name: "
|
|
6230
|
+
agentId: drizzle_orm_sqlite_core.SQLiteColumn<{
|
|
6231
|
+
name: "agent_id";
|
|
6233
6232
|
tableName: "function_tools";
|
|
6234
6233
|
dataType: "string";
|
|
6235
6234
|
columnType: "SQLiteText";
|
|
@@ -6311,7 +6310,7 @@ declare const FunctionToolInsertSchema: z.ZodObject<{
|
|
|
6311
6310
|
name: z.ZodString;
|
|
6312
6311
|
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
6313
6312
|
functionId: z.ZodString;
|
|
6314
|
-
|
|
6313
|
+
agentId: z.ZodString;
|
|
6315
6314
|
projectId: z.ZodString;
|
|
6316
6315
|
tenantId: z.ZodString;
|
|
6317
6316
|
id: z.ZodString;
|
|
@@ -6325,7 +6324,7 @@ declare const FunctionToolUpdateSchema: z.ZodObject<{
|
|
|
6325
6324
|
name: z.ZodOptional<z.ZodString>;
|
|
6326
6325
|
description: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
6327
6326
|
functionId: z.ZodOptional<z.ZodString>;
|
|
6328
|
-
|
|
6327
|
+
agentId: z.ZodOptional<z.ZodString>;
|
|
6329
6328
|
projectId: z.ZodOptional<z.ZodString>;
|
|
6330
6329
|
tenantId: z.ZodOptional<z.ZodString>;
|
|
6331
6330
|
id: z.ZodOptional<z.ZodString>;
|
|
@@ -6337,7 +6336,7 @@ declare const FunctionToolApiSelectSchema: z.ZodObject<{
|
|
|
6337
6336
|
id: z.ZodString;
|
|
6338
6337
|
name: z.ZodString;
|
|
6339
6338
|
description: z.ZodNullable<z.ZodString>;
|
|
6340
|
-
|
|
6339
|
+
agentId: z.ZodString;
|
|
6341
6340
|
createdAt: z.ZodString;
|
|
6342
6341
|
updatedAt: z.ZodString;
|
|
6343
6342
|
functionId: z.ZodString;
|
|
@@ -6354,7 +6353,7 @@ declare const FunctionToolApiUpdateSchema: z.ZodObject<{
|
|
|
6354
6353
|
id: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
6355
6354
|
name: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
6356
6355
|
description: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
6357
|
-
|
|
6356
|
+
agentId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
6358
6357
|
createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
6359
6358
|
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
6360
6359
|
functionId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
@@ -6599,7 +6598,7 @@ declare const FetchDefinitionSchema: z.ZodObject<{
|
|
|
6599
6598
|
timeout: z.ZodOptional<z.ZodDefault<z.ZodOptional<z.ZodNumber>>>;
|
|
6600
6599
|
}, z.core.$strip>;
|
|
6601
6600
|
responseSchema: z.ZodOptional<z.ZodAny>;
|
|
6602
|
-
defaultValue: z.ZodOptional<z.
|
|
6601
|
+
defaultValue: z.ZodOptional<z.ZodAny>;
|
|
6603
6602
|
credential: z.ZodOptional<z.ZodObject<{
|
|
6604
6603
|
id: z.ZodString;
|
|
6605
6604
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
@@ -6617,11 +6616,11 @@ declare const ContextConfigSelectSchema: z.ZodObject<{
|
|
|
6617
6616
|
createdAt: z.ZodString;
|
|
6618
6617
|
updatedAt: z.ZodString;
|
|
6619
6618
|
contextVariables: z.ZodNullable<z.ZodType<Record<string, ContextFetchDefinition>, Record<string, ContextFetchDefinition>, z.core.$ZodTypeInternals<Record<string, ContextFetchDefinition>, Record<string, ContextFetchDefinition>>>>;
|
|
6620
|
-
|
|
6619
|
+
agentId: z.ZodString;
|
|
6621
6620
|
projectId: z.ZodString;
|
|
6622
6621
|
tenantId: z.ZodString;
|
|
6623
6622
|
id: z.ZodString;
|
|
6624
|
-
headersSchema: z.ZodOptional<z.
|
|
6623
|
+
headersSchema: z.ZodOptional<z.ZodAny>;
|
|
6625
6624
|
}, {
|
|
6626
6625
|
out: {};
|
|
6627
6626
|
in: {};
|
|
@@ -6630,9 +6629,9 @@ declare const ContextConfigInsertSchema: z.ZodObject<{
|
|
|
6630
6629
|
tenantId: z.ZodString;
|
|
6631
6630
|
projectId: z.ZodString;
|
|
6632
6631
|
id: z.ZodOptional<z.ZodString>;
|
|
6633
|
-
|
|
6634
|
-
headersSchema: z.ZodOptional<z.
|
|
6635
|
-
contextVariables: z.ZodOptional<z.ZodNullable<z.
|
|
6632
|
+
agentId: z.ZodString;
|
|
6633
|
+
headersSchema: z.ZodOptional<z.ZodNullable<z.ZodAny>>;
|
|
6634
|
+
contextVariables: z.ZodOptional<z.ZodNullable<z.ZodAny>>;
|
|
6636
6635
|
}, {
|
|
6637
6636
|
out: {};
|
|
6638
6637
|
in: {};
|
|
@@ -6641,9 +6640,9 @@ declare const ContextConfigUpdateSchema: z.ZodObject<{
|
|
|
6641
6640
|
tenantId: z.ZodOptional<z.ZodString>;
|
|
6642
6641
|
projectId: z.ZodOptional<z.ZodString>;
|
|
6643
6642
|
id: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
6644
|
-
|
|
6645
|
-
headersSchema: z.ZodOptional<z.ZodOptional<z.
|
|
6646
|
-
contextVariables: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.
|
|
6643
|
+
agentId: z.ZodOptional<z.ZodString>;
|
|
6644
|
+
headersSchema: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodAny>>>;
|
|
6645
|
+
contextVariables: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodAny>>>;
|
|
6647
6646
|
}, {
|
|
6648
6647
|
out: {};
|
|
6649
6648
|
in: {};
|
|
@@ -6652,18 +6651,18 @@ declare const ContextConfigApiSelectSchema: z.ZodObject<{
|
|
|
6652
6651
|
id: z.ZodString;
|
|
6653
6652
|
createdAt: z.ZodString;
|
|
6654
6653
|
updatedAt: z.ZodString;
|
|
6655
|
-
headersSchema: z.ZodOptional<z.
|
|
6654
|
+
headersSchema: z.ZodOptional<z.ZodAny>;
|
|
6656
6655
|
contextVariables: z.ZodNullable<z.ZodType<Record<string, ContextFetchDefinition>, Record<string, ContextFetchDefinition>, z.core.$ZodTypeInternals<Record<string, ContextFetchDefinition>, Record<string, ContextFetchDefinition>>>>;
|
|
6657
6656
|
}, z.core.$strip>;
|
|
6658
6657
|
declare const ContextConfigApiInsertSchema: z.ZodObject<{
|
|
6659
6658
|
id: z.ZodOptional<z.ZodString>;
|
|
6660
|
-
headersSchema: z.ZodOptional<z.
|
|
6661
|
-
contextVariables: z.ZodOptional<z.ZodNullable<z.
|
|
6659
|
+
headersSchema: z.ZodOptional<z.ZodNullable<z.ZodAny>>;
|
|
6660
|
+
contextVariables: z.ZodOptional<z.ZodNullable<z.ZodAny>>;
|
|
6662
6661
|
}, z.core.$strip>;
|
|
6663
6662
|
declare const ContextConfigApiUpdateSchema: z.ZodObject<{
|
|
6664
6663
|
id: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
6665
|
-
headersSchema: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.
|
|
6666
|
-
contextVariables: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.
|
|
6664
|
+
headersSchema: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodAny>>>>;
|
|
6665
|
+
contextVariables: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodAny>>>>;
|
|
6667
6666
|
}, z.core.$strip>;
|
|
6668
6667
|
declare const SubAgentToolRelationSelectSchema: drizzle_zod.BuildSchema<"select", {
|
|
6669
6668
|
createdAt: drizzle_orm_sqlite_core.SQLiteColumn<{
|
|
@@ -6780,8 +6779,8 @@ declare const SubAgentToolRelationSelectSchema: drizzle_zod.BuildSchema<"select"
|
|
|
6780
6779
|
}, {}, {
|
|
6781
6780
|
length: number | undefined;
|
|
6782
6781
|
}>;
|
|
6783
|
-
|
|
6784
|
-
name: "
|
|
6782
|
+
agentId: drizzle_orm_sqlite_core.SQLiteColumn<{
|
|
6783
|
+
name: "agent_id";
|
|
6785
6784
|
tableName: "sub_agent_tool_relations";
|
|
6786
6785
|
dataType: "string";
|
|
6787
6786
|
columnType: "SQLiteText";
|
|
@@ -6860,7 +6859,7 @@ declare const SubAgentToolRelationSelectSchema: drizzle_zod.BuildSchema<"select"
|
|
|
6860
6859
|
declare const SubAgentToolRelationInsertSchema: z.ZodObject<{
|
|
6861
6860
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
6862
6861
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
6863
|
-
|
|
6862
|
+
agentId: z.ZodString;
|
|
6864
6863
|
projectId: z.ZodString;
|
|
6865
6864
|
tenantId: z.ZodString;
|
|
6866
6865
|
id: z.ZodString;
|
|
@@ -6875,7 +6874,7 @@ declare const SubAgentToolRelationInsertSchema: z.ZodObject<{
|
|
|
6875
6874
|
declare const SubAgentToolRelationUpdateSchema: z.ZodObject<{
|
|
6876
6875
|
createdAt: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
6877
6876
|
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
6878
|
-
|
|
6877
|
+
agentId: z.ZodOptional<z.ZodString>;
|
|
6879
6878
|
projectId: z.ZodOptional<z.ZodString>;
|
|
6880
6879
|
tenantId: z.ZodOptional<z.ZodString>;
|
|
6881
6880
|
id: z.ZodOptional<z.ZodString>;
|
|
@@ -7709,7 +7708,7 @@ declare const CanUseItemSchema: z.ZodObject<{
|
|
|
7709
7708
|
toolSelection: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodString>>>;
|
|
7710
7709
|
headers: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodString>>>;
|
|
7711
7710
|
}, z.core.$strip>;
|
|
7712
|
-
declare const
|
|
7711
|
+
declare const FullAgentAgentInsertSchema: z.ZodObject<{
|
|
7713
7712
|
id: z.ZodString;
|
|
7714
7713
|
name: z.ZodString;
|
|
7715
7714
|
description: z.ZodString;
|
|
@@ -7752,7 +7751,7 @@ declare const FullGraphAgentInsertSchema: z.ZodObject<{
|
|
|
7752
7751
|
canTransferTo: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
7753
7752
|
canDelegateTo: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
7754
7753
|
}, z.core.$strip>;
|
|
7755
|
-
declare const
|
|
7754
|
+
declare const AgentWithinContextOfProjectSchema: z.ZodObject<{
|
|
7756
7755
|
name: z.ZodString;
|
|
7757
7756
|
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
7758
7757
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
@@ -7820,154 +7819,7 @@ declare const FullGraphDefinitionSchema: z.ZodObject<{
|
|
|
7820
7819
|
type: z.ZodLiteral<"mcp">;
|
|
7821
7820
|
mcp: z.ZodObject<{
|
|
7822
7821
|
server: z.ZodObject<{
|
|
7823
|
-
url: z.
|
|
7824
|
-
}, z.core.$strip>;
|
|
7825
|
-
transport: z.ZodOptional<z.ZodObject<{
|
|
7826
|
-
type: z.ZodEnum<{
|
|
7827
|
-
readonly streamableHttp: "streamable_http";
|
|
7828
|
-
readonly sse: "sse";
|
|
7829
|
-
}>;
|
|
7830
|
-
requestInit: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
7831
|
-
eventSourceInit: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
7832
|
-
reconnectionOptions: z.ZodOptional<z.ZodCustom<StreamableHTTPReconnectionOptions, StreamableHTTPReconnectionOptions>>;
|
|
7833
|
-
sessionId: z.ZodOptional<z.ZodString>;
|
|
7834
|
-
}, z.core.$strip>>;
|
|
7835
|
-
activeTools: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
7836
|
-
}, z.core.$strip>;
|
|
7837
|
-
}, z.core.$strip>;
|
|
7838
|
-
credentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
7839
|
-
createdAt: z.ZodOptional<z.ZodString>;
|
|
7840
|
-
updatedAt: z.ZodOptional<z.ZodString>;
|
|
7841
|
-
headers: z.ZodOptional<z.ZodNullable<z.ZodType<Record<string, string>, Record<string, string>, z.core.$ZodTypeInternals<Record<string, string>, Record<string, string>>>>>;
|
|
7842
|
-
capabilities: z.ZodOptional<z.ZodNullable<z.ZodType<ToolServerCapabilities, ToolServerCapabilities, z.core.$ZodTypeInternals<ToolServerCapabilities, ToolServerCapabilities>>>>;
|
|
7843
|
-
imageUrl: z.ZodOptional<z.ZodString>;
|
|
7844
|
-
lastError: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
7845
|
-
}, z.core.$strip>>>;
|
|
7846
|
-
functionTools: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
7847
|
-
id: z.ZodString;
|
|
7848
|
-
name: z.ZodString;
|
|
7849
|
-
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
7850
|
-
createdAt: z.ZodOptional<z.ZodString>;
|
|
7851
|
-
updatedAt: z.ZodOptional<z.ZodString>;
|
|
7852
|
-
functionId: z.ZodString;
|
|
7853
|
-
}, z.core.$strip>>>;
|
|
7854
|
-
functions: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
7855
|
-
id: z.ZodString;
|
|
7856
|
-
createdAt: z.ZodOptional<z.ZodString>;
|
|
7857
|
-
updatedAt: z.ZodOptional<z.ZodString>;
|
|
7858
|
-
inputSchema: z.ZodOptional<z.ZodNullable<z.ZodType<Record<string, unknown>, Record<string, unknown>, z.core.$ZodTypeInternals<Record<string, unknown>, Record<string, unknown>>>>>;
|
|
7859
|
-
executeCode: z.ZodString;
|
|
7860
|
-
dependencies: z.ZodOptional<z.ZodNullable<z.ZodType<Record<string, string>, Record<string, string>, z.core.$ZodTypeInternals<Record<string, string>, Record<string, string>>>>>;
|
|
7861
|
-
}, z.core.$strip>>>;
|
|
7862
|
-
contextConfig: z.ZodOptional<z.ZodObject<{
|
|
7863
|
-
id: z.ZodOptional<z.ZodString>;
|
|
7864
|
-
headersSchema: z.ZodOptional<z.ZodUnknown>;
|
|
7865
|
-
contextVariables: z.ZodOptional<z.ZodNullable<z.ZodType<Record<string, ContextFetchDefinition>, Record<string, ContextFetchDefinition>, z.core.$ZodTypeInternals<Record<string, ContextFetchDefinition>, Record<string, ContextFetchDefinition>>>>>;
|
|
7866
|
-
}, z.core.$strip>>;
|
|
7867
|
-
statusUpdates: z.ZodOptional<z.ZodObject<{
|
|
7868
|
-
enabled: z.ZodOptional<z.ZodBoolean>;
|
|
7869
|
-
numEvents: z.ZodOptional<z.ZodNumber>;
|
|
7870
|
-
timeInSeconds: z.ZodOptional<z.ZodNumber>;
|
|
7871
|
-
prompt: z.ZodOptional<z.ZodString>;
|
|
7872
|
-
statusComponents: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
7873
|
-
type: z.ZodString;
|
|
7874
|
-
description: z.ZodOptional<z.ZodString>;
|
|
7875
|
-
detailsSchema: z.ZodOptional<z.ZodObject<{
|
|
7876
|
-
type: z.ZodLiteral<"object">;
|
|
7877
|
-
properties: z.ZodRecord<z.ZodString, z.ZodAny>;
|
|
7878
|
-
required: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
7879
|
-
}, z.core.$strip>>;
|
|
7880
|
-
}, z.core.$strip>>>;
|
|
7881
|
-
}, z.core.$strip>>;
|
|
7882
|
-
models: z.ZodOptional<z.ZodObject<{
|
|
7883
|
-
base: z.ZodOptional<z.ZodObject<{
|
|
7884
|
-
model: z.ZodOptional<z.ZodString>;
|
|
7885
|
-
providerOptions: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
7886
|
-
}, z.core.$strip>>;
|
|
7887
|
-
structuredOutput: z.ZodOptional<z.ZodObject<{
|
|
7888
|
-
model: z.ZodOptional<z.ZodString>;
|
|
7889
|
-
providerOptions: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
7890
|
-
}, z.core.$strip>>;
|
|
7891
|
-
summarizer: z.ZodOptional<z.ZodObject<{
|
|
7892
|
-
model: z.ZodOptional<z.ZodString>;
|
|
7893
|
-
providerOptions: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
7894
|
-
}, z.core.$strip>>;
|
|
7895
|
-
}, z.core.$strip>>;
|
|
7896
|
-
stopWhen: z.ZodOptional<z.ZodObject<{
|
|
7897
|
-
transferCountIs: z.ZodOptional<z.ZodNumber>;
|
|
7898
|
-
}, z.core.$strip>>;
|
|
7899
|
-
graphPrompt: z.ZodOptional<z.ZodString>;
|
|
7900
|
-
}, z.core.$strip>;
|
|
7901
|
-
declare const GraphWithinContextOfProjectSchema: z.ZodObject<{
|
|
7902
|
-
name: z.ZodString;
|
|
7903
|
-
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
7904
|
-
createdAt: z.ZodOptional<z.ZodString>;
|
|
7905
|
-
updatedAt: z.ZodOptional<z.ZodString>;
|
|
7906
|
-
defaultSubAgentId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
7907
|
-
contextConfigId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
7908
|
-
id: z.ZodString;
|
|
7909
|
-
subAgents: z.ZodRecord<z.ZodString, z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
7910
|
-
id: z.ZodString;
|
|
7911
|
-
name: z.ZodString;
|
|
7912
|
-
description: z.ZodString;
|
|
7913
|
-
prompt: z.ZodString;
|
|
7914
|
-
createdAt: z.ZodOptional<z.ZodString>;
|
|
7915
|
-
updatedAt: z.ZodOptional<z.ZodString>;
|
|
7916
|
-
models: z.ZodOptional<z.ZodObject<{
|
|
7917
|
-
base: z.ZodOptional<z.ZodObject<{
|
|
7918
|
-
model: z.ZodOptional<z.ZodString>;
|
|
7919
|
-
providerOptions: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
7920
|
-
}, z.core.$strip>>;
|
|
7921
|
-
structuredOutput: z.ZodOptional<z.ZodObject<{
|
|
7922
|
-
model: z.ZodOptional<z.ZodString>;
|
|
7923
|
-
providerOptions: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
7924
|
-
}, z.core.$strip>>;
|
|
7925
|
-
summarizer: z.ZodOptional<z.ZodObject<{
|
|
7926
|
-
model: z.ZodOptional<z.ZodString>;
|
|
7927
|
-
providerOptions: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
7928
|
-
}, z.core.$strip>>;
|
|
7929
|
-
}, z.core.$strip>>;
|
|
7930
|
-
stopWhen: z.ZodOptional<z.ZodNullable<z.ZodType<{
|
|
7931
|
-
stepCountIs?: number | undefined;
|
|
7932
|
-
}, {
|
|
7933
|
-
stepCountIs?: number | undefined;
|
|
7934
|
-
}, z.core.$ZodTypeInternals<{
|
|
7935
|
-
stepCountIs?: number | undefined;
|
|
7936
|
-
}, {
|
|
7937
|
-
stepCountIs?: number | undefined;
|
|
7938
|
-
}>>>>;
|
|
7939
|
-
conversationHistoryConfig: z.ZodOptional<z.ZodNullable<z.ZodType<ConversationHistoryConfig, ConversationHistoryConfig, z.core.$ZodTypeInternals<ConversationHistoryConfig, ConversationHistoryConfig>>>>;
|
|
7940
|
-
type: z.ZodLiteral<"internal">;
|
|
7941
|
-
canUse: z.ZodArray<z.ZodObject<{
|
|
7942
|
-
agentToolRelationId: z.ZodOptional<z.ZodString>;
|
|
7943
|
-
toolId: z.ZodString;
|
|
7944
|
-
toolSelection: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodString>>>;
|
|
7945
|
-
headers: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodString>>>;
|
|
7946
|
-
}, z.core.$strip>>;
|
|
7947
|
-
dataComponents: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
7948
|
-
artifactComponents: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
7949
|
-
canTransferTo: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
7950
|
-
canDelegateTo: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
7951
|
-
}, z.core.$strip>, z.ZodObject<{
|
|
7952
|
-
id: z.ZodString;
|
|
7953
|
-
name: z.ZodString;
|
|
7954
|
-
description: z.ZodString;
|
|
7955
|
-
credentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
7956
|
-
createdAt: z.ZodOptional<z.ZodString>;
|
|
7957
|
-
updatedAt: z.ZodOptional<z.ZodString>;
|
|
7958
|
-
baseUrl: z.ZodString;
|
|
7959
|
-
headers: z.ZodOptional<z.ZodNullable<z.ZodType<Record<string, string>, Record<string, string>, z.core.$ZodTypeInternals<Record<string, string>, Record<string, string>>>>>;
|
|
7960
|
-
type: z.ZodLiteral<"external">;
|
|
7961
|
-
}, z.core.$strip>], "type">>;
|
|
7962
|
-
tools: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
7963
|
-
id: z.ZodString;
|
|
7964
|
-
name: z.ZodString;
|
|
7965
|
-
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
7966
|
-
config: z.ZodObject<{
|
|
7967
|
-
type: z.ZodLiteral<"mcp">;
|
|
7968
|
-
mcp: z.ZodObject<{
|
|
7969
|
-
server: z.ZodObject<{
|
|
7970
|
-
url: z.ZodString;
|
|
7822
|
+
url: z.ZodURL;
|
|
7971
7823
|
}, z.core.$strip>;
|
|
7972
7824
|
transport: z.ZodOptional<z.ZodObject<{
|
|
7973
7825
|
type: z.ZodEnum<{
|
|
@@ -7976,7 +7828,7 @@ declare const GraphWithinContextOfProjectSchema: z.ZodObject<{
|
|
|
7976
7828
|
}>;
|
|
7977
7829
|
requestInit: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
7978
7830
|
eventSourceInit: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
7979
|
-
reconnectionOptions: z.ZodOptional<z.
|
|
7831
|
+
reconnectionOptions: z.ZodOptional<z.ZodAny>;
|
|
7980
7832
|
sessionId: z.ZodOptional<z.ZodString>;
|
|
7981
7833
|
}, z.core.$strip>>;
|
|
7982
7834
|
activeTools: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
@@ -8008,8 +7860,8 @@ declare const GraphWithinContextOfProjectSchema: z.ZodObject<{
|
|
|
8008
7860
|
}, z.core.$strip>>>;
|
|
8009
7861
|
contextConfig: z.ZodOptional<z.ZodObject<{
|
|
8010
7862
|
id: z.ZodOptional<z.ZodString>;
|
|
8011
|
-
headersSchema: z.ZodOptional<z.
|
|
8012
|
-
contextVariables: z.ZodOptional<z.ZodNullable<z.
|
|
7863
|
+
headersSchema: z.ZodOptional<z.ZodNullable<z.ZodAny>>;
|
|
7864
|
+
contextVariables: z.ZodOptional<z.ZodNullable<z.ZodAny>>;
|
|
8013
7865
|
}, z.core.$strip>>;
|
|
8014
7866
|
statusUpdates: z.ZodOptional<z.ZodObject<{
|
|
8015
7867
|
enabled: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -8043,7 +7895,7 @@ declare const GraphWithinContextOfProjectSchema: z.ZodObject<{
|
|
|
8043
7895
|
stopWhen: z.ZodOptional<z.ZodObject<{
|
|
8044
7896
|
transferCountIs: z.ZodOptional<z.ZodNumber>;
|
|
8045
7897
|
}, z.core.$strip>>;
|
|
8046
|
-
|
|
7898
|
+
prompt: z.ZodOptional<z.ZodString>;
|
|
8047
7899
|
}, z.core.$strip>;
|
|
8048
7900
|
declare const PaginationSchema: z.ZodObject<{
|
|
8049
7901
|
page: z.ZodDefault<z.ZodCoercedNumber<unknown>>;
|
|
@@ -8066,7 +7918,7 @@ declare const SingleResponseSchema: <T extends z.ZodTypeAny>(itemSchema: T) => z
|
|
|
8066
7918
|
declare const ErrorResponseSchema: z.ZodObject<{
|
|
8067
7919
|
error: z.ZodString;
|
|
8068
7920
|
message: z.ZodOptional<z.ZodString>;
|
|
8069
|
-
details: z.ZodOptional<z.
|
|
7921
|
+
details: z.ZodOptional<z.ZodAny>;
|
|
8070
7922
|
}, z.core.$strip>;
|
|
8071
7923
|
declare const ExistsResponseSchema: z.ZodObject<{
|
|
8072
7924
|
exists: z.ZodBoolean;
|
|
@@ -8190,7 +8042,7 @@ declare const ProjectSelectSchema: drizzle_zod.BuildSchema<"select", {
|
|
|
8190
8042
|
dataType: "json";
|
|
8191
8043
|
columnType: "SQLiteTextJson";
|
|
8192
8044
|
data: {
|
|
8193
|
-
provider: "vercel" | "
|
|
8045
|
+
provider: "vercel" | "local";
|
|
8194
8046
|
runtime: "node22" | "typescript";
|
|
8195
8047
|
timeout?: number;
|
|
8196
8048
|
vcpus?: number;
|
|
@@ -8207,7 +8059,7 @@ declare const ProjectSelectSchema: drizzle_zod.BuildSchema<"select", {
|
|
|
8207
8059
|
generated: undefined;
|
|
8208
8060
|
}, {}, {
|
|
8209
8061
|
$type: {
|
|
8210
|
-
provider: "vercel" | "
|
|
8062
|
+
provider: "vercel" | "local";
|
|
8211
8063
|
runtime: "node22" | "typescript";
|
|
8212
8064
|
timeout?: number;
|
|
8213
8065
|
vcpus?: number;
|
|
@@ -8441,22 +8293,22 @@ declare const ProjectApiSelectSchema: z.ZodObject<{
|
|
|
8441
8293
|
stepCountIs?: number | undefined;
|
|
8442
8294
|
}>>>;
|
|
8443
8295
|
sandboxConfig: z.ZodNullable<z.ZodType<{
|
|
8444
|
-
provider: "vercel" | "
|
|
8296
|
+
provider: "vercel" | "local";
|
|
8445
8297
|
runtime: "node22" | "typescript";
|
|
8446
8298
|
timeout?: number;
|
|
8447
8299
|
vcpus?: number;
|
|
8448
8300
|
}, {
|
|
8449
|
-
provider: "vercel" | "
|
|
8301
|
+
provider: "vercel" | "local";
|
|
8450
8302
|
runtime: "node22" | "typescript";
|
|
8451
8303
|
timeout?: number;
|
|
8452
8304
|
vcpus?: number;
|
|
8453
8305
|
}, z.core.$ZodTypeInternals<{
|
|
8454
|
-
provider: "vercel" | "
|
|
8306
|
+
provider: "vercel" | "local";
|
|
8455
8307
|
runtime: "node22" | "typescript";
|
|
8456
8308
|
timeout?: number;
|
|
8457
8309
|
vcpus?: number;
|
|
8458
8310
|
}, {
|
|
8459
|
-
provider: "vercel" | "
|
|
8311
|
+
provider: "vercel" | "local";
|
|
8460
8312
|
runtime: "node22" | "typescript";
|
|
8461
8313
|
timeout?: number;
|
|
8462
8314
|
vcpus?: number;
|
|
@@ -8575,7 +8427,7 @@ declare const FullProjectDefinitionSchema: z.ZodObject<{
|
|
|
8575
8427
|
timeout: z.ZodOptional<z.ZodNumber>;
|
|
8576
8428
|
vcpus: z.ZodOptional<z.ZodNumber>;
|
|
8577
8429
|
}, z.core.$strip>>;
|
|
8578
|
-
|
|
8430
|
+
agents: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
8579
8431
|
name: z.ZodString;
|
|
8580
8432
|
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
8581
8433
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
@@ -8583,7 +8435,7 @@ declare const FullProjectDefinitionSchema: z.ZodObject<{
|
|
|
8583
8435
|
defaultSubAgentId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
8584
8436
|
contextConfigId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
8585
8437
|
id: z.ZodString;
|
|
8586
|
-
subAgents: z.ZodRecord<z.ZodString, z.
|
|
8438
|
+
subAgents: z.ZodRecord<z.ZodString, z.ZodUnion<readonly [z.ZodObject<{
|
|
8587
8439
|
id: z.ZodString;
|
|
8588
8440
|
name: z.ZodString;
|
|
8589
8441
|
description: z.ZodString;
|
|
@@ -8634,8 +8486,7 @@ declare const FullProjectDefinitionSchema: z.ZodObject<{
|
|
|
8634
8486
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
8635
8487
|
baseUrl: z.ZodString;
|
|
8636
8488
|
headers: z.ZodOptional<z.ZodNullable<z.ZodType<Record<string, string>, Record<string, string>, z.core.$ZodTypeInternals<Record<string, string>, Record<string, string>>>>>;
|
|
8637
|
-
|
|
8638
|
-
}, z.core.$strip>], "type">>;
|
|
8489
|
+
}, z.core.$strip>]>>;
|
|
8639
8490
|
tools: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
8640
8491
|
id: z.ZodString;
|
|
8641
8492
|
name: z.ZodString;
|
|
@@ -8644,7 +8495,7 @@ declare const FullProjectDefinitionSchema: z.ZodObject<{
|
|
|
8644
8495
|
type: z.ZodLiteral<"mcp">;
|
|
8645
8496
|
mcp: z.ZodObject<{
|
|
8646
8497
|
server: z.ZodObject<{
|
|
8647
|
-
url: z.
|
|
8498
|
+
url: z.ZodURL;
|
|
8648
8499
|
}, z.core.$strip>;
|
|
8649
8500
|
transport: z.ZodOptional<z.ZodObject<{
|
|
8650
8501
|
type: z.ZodEnum<{
|
|
@@ -8653,7 +8504,7 @@ declare const FullProjectDefinitionSchema: z.ZodObject<{
|
|
|
8653
8504
|
}>;
|
|
8654
8505
|
requestInit: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
8655
8506
|
eventSourceInit: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
8656
|
-
reconnectionOptions: z.ZodOptional<z.
|
|
8507
|
+
reconnectionOptions: z.ZodOptional<z.ZodAny>;
|
|
8657
8508
|
sessionId: z.ZodOptional<z.ZodString>;
|
|
8658
8509
|
}, z.core.$strip>>;
|
|
8659
8510
|
activeTools: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
@@ -8685,8 +8536,8 @@ declare const FullProjectDefinitionSchema: z.ZodObject<{
|
|
|
8685
8536
|
}, z.core.$strip>>>;
|
|
8686
8537
|
contextConfig: z.ZodOptional<z.ZodObject<{
|
|
8687
8538
|
id: z.ZodOptional<z.ZodString>;
|
|
8688
|
-
headersSchema: z.ZodOptional<z.
|
|
8689
|
-
contextVariables: z.ZodOptional<z.ZodNullable<z.
|
|
8539
|
+
headersSchema: z.ZodOptional<z.ZodNullable<z.ZodAny>>;
|
|
8540
|
+
contextVariables: z.ZodOptional<z.ZodNullable<z.ZodAny>>;
|
|
8690
8541
|
}, z.core.$strip>>;
|
|
8691
8542
|
statusUpdates: z.ZodOptional<z.ZodObject<{
|
|
8692
8543
|
enabled: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -8720,7 +8571,7 @@ declare const FullProjectDefinitionSchema: z.ZodObject<{
|
|
|
8720
8571
|
stopWhen: z.ZodOptional<z.ZodObject<{
|
|
8721
8572
|
transferCountIs: z.ZodOptional<z.ZodNumber>;
|
|
8722
8573
|
}, z.core.$strip>>;
|
|
8723
|
-
|
|
8574
|
+
prompt: z.ZodOptional<z.ZodString>;
|
|
8724
8575
|
}, z.core.$strip>>;
|
|
8725
8576
|
tools: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
8726
8577
|
id: z.ZodString;
|
|
@@ -8730,7 +8581,7 @@ declare const FullProjectDefinitionSchema: z.ZodObject<{
|
|
|
8730
8581
|
type: z.ZodLiteral<"mcp">;
|
|
8731
8582
|
mcp: z.ZodObject<{
|
|
8732
8583
|
server: z.ZodObject<{
|
|
8733
|
-
url: z.
|
|
8584
|
+
url: z.ZodURL;
|
|
8734
8585
|
}, z.core.$strip>;
|
|
8735
8586
|
transport: z.ZodOptional<z.ZodObject<{
|
|
8736
8587
|
type: z.ZodEnum<{
|
|
@@ -8739,7 +8590,7 @@ declare const FullProjectDefinitionSchema: z.ZodObject<{
|
|
|
8739
8590
|
}>;
|
|
8740
8591
|
requestInit: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
8741
8592
|
eventSourceInit: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
8742
|
-
reconnectionOptions: z.ZodOptional<z.
|
|
8593
|
+
reconnectionOptions: z.ZodOptional<z.ZodAny>;
|
|
8743
8594
|
sessionId: z.ZodOptional<z.ZodString>;
|
|
8744
8595
|
}, z.core.$strip>>;
|
|
8745
8596
|
activeTools: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
@@ -8814,7 +8665,7 @@ declare const FullProjectDefinitionSchema: z.ZodObject<{
|
|
|
8814
8665
|
declare const HeadersScopeSchema: z.ZodObject<{
|
|
8815
8666
|
'x-inkeep-tenant-id': z.ZodOptional<z.ZodString>;
|
|
8816
8667
|
'x-inkeep-project-id': z.ZodOptional<z.ZodString>;
|
|
8817
|
-
'x-inkeep-
|
|
8668
|
+
'x-inkeep-agent-id': z.ZodOptional<z.ZodString>;
|
|
8818
8669
|
}, z.core.$strip>;
|
|
8819
8670
|
declare const TenantParamsSchema: z.ZodObject<{
|
|
8820
8671
|
tenantId: z.ZodString;
|
|
@@ -8832,27 +8683,27 @@ declare const TenantProjectIdParamsSchema: z.ZodObject<{
|
|
|
8832
8683
|
projectId: z.ZodString;
|
|
8833
8684
|
id: z.ZodString;
|
|
8834
8685
|
}, z.core.$strip>;
|
|
8835
|
-
declare const
|
|
8686
|
+
declare const TenantProjectAgentParamsSchema: z.ZodObject<{
|
|
8836
8687
|
tenantId: z.ZodString;
|
|
8837
8688
|
projectId: z.ZodString;
|
|
8838
|
-
|
|
8689
|
+
agentId: z.ZodString;
|
|
8839
8690
|
}, z.core.$strip>;
|
|
8840
|
-
declare const
|
|
8691
|
+
declare const TenantProjectAgentIdParamsSchema: z.ZodObject<{
|
|
8841
8692
|
tenantId: z.ZodString;
|
|
8842
8693
|
projectId: z.ZodString;
|
|
8843
|
-
|
|
8694
|
+
agentId: z.ZodString;
|
|
8844
8695
|
id: z.ZodString;
|
|
8845
8696
|
}, z.core.$strip>;
|
|
8846
|
-
declare const
|
|
8697
|
+
declare const TenantProjectAgentSubAgentParamsSchema: z.ZodObject<{
|
|
8847
8698
|
tenantId: z.ZodString;
|
|
8848
8699
|
projectId: z.ZodString;
|
|
8849
|
-
|
|
8700
|
+
agentId: z.ZodString;
|
|
8850
8701
|
subAgentId: z.ZodString;
|
|
8851
8702
|
}, z.core.$strip>;
|
|
8852
|
-
declare const
|
|
8703
|
+
declare const TenantProjectAgentSubAgentIdParamsSchema: z.ZodObject<{
|
|
8853
8704
|
tenantId: z.ZodString;
|
|
8854
8705
|
projectId: z.ZodString;
|
|
8855
|
-
|
|
8706
|
+
agentId: z.ZodString;
|
|
8856
8707
|
subAgentId: z.ZodString;
|
|
8857
8708
|
id: z.ZodString;
|
|
8858
8709
|
}, z.core.$strip>;
|
|
@@ -8876,12 +8727,12 @@ type SubAgentRelationApiUpdate = z$1.infer<typeof SubAgentRelationApiUpdateSchem
|
|
|
8876
8727
|
type SubAgentRelationQuery = z$1.infer<typeof SubAgentRelationQuerySchema>;
|
|
8877
8728
|
type ExternalSubAgentRelationInsert = z$1.infer<typeof ExternalSubAgentRelationInsertSchema>;
|
|
8878
8729
|
type ExternalSubAgentRelationApiInsert = z$1.infer<typeof ExternalSubAgentRelationApiInsertSchema>;
|
|
8879
|
-
type
|
|
8880
|
-
type
|
|
8881
|
-
type
|
|
8882
|
-
type
|
|
8883
|
-
type
|
|
8884
|
-
type
|
|
8730
|
+
type AgentSelect = z$1.infer<typeof AgentSelectSchema>;
|
|
8731
|
+
type AgentInsert = z$1.infer<typeof AgentInsertSchema>;
|
|
8732
|
+
type AgentUpdate = z$1.infer<typeof AgentUpdateSchema>;
|
|
8733
|
+
type AgentApiSelect = z$1.infer<typeof AgentApiSelectSchema>;
|
|
8734
|
+
type AgentApiInsert = z$1.infer<typeof AgentApiInsertSchema>;
|
|
8735
|
+
type AgentApiUpdate = z$1.infer<typeof AgentApiUpdateSchema>;
|
|
8885
8736
|
type TaskSelect = z$1.infer<typeof TaskSelectSchema>;
|
|
8886
8737
|
type TaskInsert = z$1.infer<typeof TaskInsertSchema>;
|
|
8887
8738
|
type TaskUpdate = z$1.infer<typeof TaskUpdateSchema>;
|
|
@@ -8965,7 +8816,7 @@ type ExternalAgentSelect = z$1.infer<typeof ExternalAgentSelectSchema>;
|
|
|
8965
8816
|
type ExternalAgentInsert = z$1.infer<typeof ExternalAgentInsertSchema>;
|
|
8966
8817
|
type ExternalAgentUpdate = z$1.infer<typeof ExternalAgentUpdateSchema>;
|
|
8967
8818
|
type ExternalAgentApiSelect = z$1.infer<typeof ExternalAgentApiSelectSchema>;
|
|
8968
|
-
type
|
|
8819
|
+
type ExternalSubAgentApiInsert = z$1.infer<typeof ExternalAgentApiInsertSchema>;
|
|
8969
8820
|
type ExternalAgentApiUpdate = z$1.infer<typeof ExternalAgentApiUpdateSchema>;
|
|
8970
8821
|
type AllAgentSelect = z$1.infer<typeof AllAgentSchema>;
|
|
8971
8822
|
type ApiKeySelect = z$1.infer<typeof ApiKeySelectSchema>;
|
|
@@ -8993,8 +8844,8 @@ type LedgerArtifactUpdate = z$1.infer<typeof LedgerArtifactUpdateSchema>;
|
|
|
8993
8844
|
type LedgerArtifactApiSelect = z$1.infer<typeof LedgerArtifactApiSelectSchema>;
|
|
8994
8845
|
type LedgerArtifactApiInsert = z$1.infer<typeof LedgerArtifactApiInsertSchema>;
|
|
8995
8846
|
type LedgerArtifactApiUpdate = z$1.infer<typeof LedgerArtifactApiUpdateSchema>;
|
|
8996
|
-
type
|
|
8997
|
-
type
|
|
8847
|
+
type FullAgentDefinition = z$1.infer<typeof AgentWithinContextOfProjectSchema>;
|
|
8848
|
+
type FullAgentAgentInsert = z$1.infer<typeof FullAgentAgentInsertSchema>;
|
|
8998
8849
|
type FullProjectDefinition = z$1.infer<typeof FullProjectDefinitionSchema>;
|
|
8999
8850
|
type CanUseItem = {
|
|
9000
8851
|
toolId: string;
|
|
@@ -9002,14 +8853,14 @@ type CanUseItem = {
|
|
|
9002
8853
|
headers?: Record<string, string> | null;
|
|
9003
8854
|
agentToolRelationId?: string;
|
|
9004
8855
|
};
|
|
9005
|
-
type
|
|
8856
|
+
type InternalSubAgentDefinition = z$1.infer<typeof SubAgentApiInsertSchema> & {
|
|
9006
8857
|
canUse: CanUseItem[];
|
|
9007
8858
|
dataComponents?: string[];
|
|
9008
8859
|
artifactComponents?: string[];
|
|
9009
8860
|
canTransferTo?: string[];
|
|
9010
8861
|
canDelegateTo?: string[];
|
|
9011
8862
|
};
|
|
9012
|
-
type
|
|
8863
|
+
type SubAgentDefinition = InternalSubAgentDefinition | ExternalSubAgentApiInsert;
|
|
9013
8864
|
type ToolDefinition = ToolApiInsert & {
|
|
9014
8865
|
credentialReferenceId?: string | null;
|
|
9015
8866
|
};
|
|
@@ -9050,10 +8901,10 @@ type ProjectScopeConfig = {
|
|
|
9050
8901
|
tenantId: string;
|
|
9051
8902
|
projectId: string;
|
|
9052
8903
|
};
|
|
9053
|
-
type
|
|
9054
|
-
|
|
8904
|
+
type AgentScopeConfig = ProjectScopeConfig & {
|
|
8905
|
+
agentId: string;
|
|
9055
8906
|
};
|
|
9056
|
-
type
|
|
8907
|
+
type SubAgentScopeConfig = AgentScopeConfig & {
|
|
9057
8908
|
subAgentId: string;
|
|
9058
8909
|
};
|
|
9059
8910
|
interface ConversationScopeOptions {
|
|
@@ -9179,18 +9030,18 @@ type TaskMetadataConfig = {
|
|
|
9179
9030
|
message_id: string;
|
|
9180
9031
|
created_at: string;
|
|
9181
9032
|
updated_at: string;
|
|
9182
|
-
|
|
9183
|
-
|
|
9033
|
+
root_sub_agent_id?: string;
|
|
9034
|
+
sub_agent_id?: string;
|
|
9184
9035
|
tool_id?: string;
|
|
9185
|
-
|
|
9036
|
+
agent_id?: string;
|
|
9186
9037
|
stream_request_id?: string;
|
|
9187
9038
|
};
|
|
9188
9039
|
interface ProjectInfo {
|
|
9189
9040
|
projectId: string;
|
|
9190
9041
|
}
|
|
9191
9042
|
interface ProjectResourceCounts {
|
|
9043
|
+
subAgents: number;
|
|
9192
9044
|
agents: number;
|
|
9193
|
-
agentGraphs: number;
|
|
9194
9045
|
tools: number;
|
|
9195
9046
|
contextConfigs: number;
|
|
9196
9047
|
externalAgents: number;
|
|
@@ -9213,7 +9064,7 @@ declare const CredentialStoreType: {
|
|
|
9213
9064
|
interface CreateApiKeyParams {
|
|
9214
9065
|
tenantId: string;
|
|
9215
9066
|
projectId: string;
|
|
9216
|
-
|
|
9067
|
+
agentId: string;
|
|
9217
9068
|
name: string;
|
|
9218
9069
|
expiresAt?: string;
|
|
9219
9070
|
}
|
|
@@ -9232,8 +9083,8 @@ interface ExecutionContext {
|
|
|
9232
9083
|
tenantId: string;
|
|
9233
9084
|
/** Project ID extracted from API key */
|
|
9234
9085
|
projectId: string;
|
|
9235
|
-
/**
|
|
9236
|
-
|
|
9086
|
+
/** Agent ID extracted from API key */
|
|
9087
|
+
agentId: string;
|
|
9237
9088
|
/** Base URL for internal API calls */
|
|
9238
9089
|
baseUrl: string;
|
|
9239
9090
|
/** API key ID for tracking */
|
|
@@ -9242,4 +9093,4 @@ interface ExecutionContext {
|
|
|
9242
9093
|
subAgentId?: string;
|
|
9243
9094
|
}
|
|
9244
9095
|
|
|
9245
|
-
export { type CredentialReferenceUpdate as $, ApiKeyApiUpdateSchema as A, type ApiKeySelect as B, type ConversationHistoryConfig as C, type ApiKeyInsert as D, type ApiKeyUpdate as E, FunctionApiInsertSchema as F, GraphStopWhenSchema as G, type CreateApiKeyParams as H, type ApiKeyCreateResult as I, type ArtifactComponentSelect as J, type ArtifactComponentInsert as K, type ArtifactComponentUpdate as L, ModelSettingsSchema as M, type AgentScopeConfig as N, type ContextCacheSelect as O, type Part as P, type ContextCacheInsert as Q, type ContextConfigInsert as R, StopWhenSchema as S, type TaskMetadataConfig as T, type ContextConfigUpdate as U, type ConversationSelect as V, type ConversationInsert as W, type ConversationUpdate as X, type CredentialReferenceSelect as Y, type ToolSelect as Z, type CredentialReferenceInsert as _, FullGraphAgentInsertSchema as a, type InvalidRequestError as a$, type DataComponentSelect as a0, type DataComponentInsert as a1, type DataComponentUpdate as a2, type ExternalAgentInsert as a3, type ExternalAgentSelect as a4, type ExternalAgentUpdate as a5, type FunctionApiInsert as a6, type FunctionToolApiInsert as a7, type FunctionToolApiUpdate as a8, type Artifact as a9, type FileBase as aA, type FileWithBytes as aB, type FileWithUri as aC, type FilePart as aD, type DataPart as aE, TaskState as aF, type AgentCapabilities as aG, type AgentProvider as aH, type AgentSkill as aI, type SecuritySchemeBase as aJ, type APIKeySecurityScheme as aK, type HTTPAuthSecurityScheme as aL, type OAuthFlows as aM, type AuthorizationCodeOAuthFlow as aN, type ClientCredentialsOAuthFlow as aO, type ImplicitOAuthFlow as aP, type PasswordOAuthFlow as aQ, type OAuth2SecurityScheme as aR, type OpenIdConnectSecurityScheme as aS, type SecurityScheme as aT, type AgentCard as aU, type Message as aV, type TaskStatus as aW, type Task as aX, type TaskStatusUpdateEvent as aY, type TaskArtifactUpdateEvent as aZ, type JSONParseError as a_, type LedgerArtifactSelect as aa, type MessageVisibility as ab, type MessageInsert as ac, type MessageUpdate as ad, type FullProjectDefinition as ae, type ProjectInfo as af, type ProjectSelect as ag, type PaginationResult as ah, type ProjectResourceCounts as ai, type ProjectInsert as aj, type ProjectUpdate as ak, type SubAgentRelationInsert as al, type ExternalSubAgentRelationInsert as am, type SubAgentRelationUpdate as an, type SubAgentToolRelationUpdate as ao, type SubAgentInsert as ap, type SubAgentUpdate as aq, type SubAgentSelect as ar, type TaskInsert as as, type TaskSelect as at, type McpTool as au, type ToolInsert as av, type ToolUpdate as aw, type ExecutionContext as ax, type PartBase as ay, type TextPart as az, SubAgentStopWhenSchema as b, type TaskRelationInsert as b$, type MethodNotFoundError as b0, type InvalidParamsError as b1, type InternalError as b2, type TaskNotFoundError as b3, type TaskNotCancelableError as b4, type PushNotificationNotSupportedError as b5, type UnsupportedOperationError as b6, type ContentTypeNotSupportedError as b7, type InvalidAgentResponseError as b8, type A2AError as b9, type CancelTaskResponse as bA, type SetTaskPushNotificationConfigSuccessResponse as bB, type SetTaskPushNotificationConfigResponse as bC, type GetTaskPushNotificationConfigSuccessResponse as bD, type GetTaskPushNotificationConfigResponse as bE, type A2ARequest as bF, type A2AResponse as bG, type MessagePart as bH, type TaskArtifact as bI, type SubAgentApiSelect as bJ, type SubAgentApiInsert as bK, type SubAgentApiUpdate as bL, type SubAgentRelationSelect as bM, type SubAgentRelationApiSelect as bN, type SubAgentRelationApiInsert as bO, type SubAgentRelationApiUpdate as bP, type SubAgentRelationQuery as bQ, type ExternalSubAgentRelationApiInsert as bR, type AgentGraphSelect as bS, type AgentGraphApiSelect as bT, type AgentGraphApiInsert as bU, type AgentGraphApiUpdate as bV, type TaskUpdate as bW, type TaskApiSelect as bX, type TaskApiInsert as bY, type TaskApiUpdate as bZ, type TaskRelationSelect as b_, type PushNotificationAuthenticationInfo as ba, type PushNotificationConfig as bb, type TaskPushNotificationConfig as bc, type TaskIdParams as bd, type TaskQueryParams as be, type MessageSendConfiguration as bf, type MessageSendParams as bg, type JSONRPCMessage as bh, type JSONRPCRequest as bi, type JSONRPCError as bj, type JSONRPCResult as bk, type JSONRPCErrorResponse as bl, type SendMessageRequest as bm, type SendStreamingMessageRequest as bn, type GetTaskRequest as bo, type CancelTaskRequest as bp, type SetTaskPushNotificationConfigRequest as bq, type GetTaskPushNotificationConfigRequest as br, type TaskResubscriptionRequest as bs, type SendMessageSuccessResponse as bt, type SendMessageResponse as bu, type SendStreamingMessageSuccessResponse as bv, type SendStreamingMessageResponse as bw, type GetTaskSuccessResponse as bx, type GetTaskResponse as by, type CancelTaskSuccessResponse as bz, type StopWhen as c, type LedgerArtifactUpdate as c$, type TaskRelationUpdate as c0, type TaskRelationApiSelect as c1, type TaskRelationApiInsert as c2, type TaskRelationApiUpdate as c3, type ToolApiSelect as c4, type ToolApiInsert as c5, type ToolApiUpdate as c6, type FunctionSelect as c7, type FunctionInsert as c8, type FunctionUpdate as c9, type SubAgentDataComponentApiInsert as cA, type SubAgentDataComponentApiUpdate as cB, type ArtifactComponentApiSelect as cC, type ArtifactComponentApiInsert as cD, type ArtifactComponentApiUpdate as cE, type SubAgentArtifactComponentSelect as cF, type SubAgentArtifactComponentInsert as cG, type SubAgentArtifactComponentUpdate as cH, type SubAgentArtifactComponentApiSelect as cI, type SubAgentArtifactComponentApiInsert as cJ, type SubAgentArtifactComponentApiUpdate as cK, type ExternalAgentApiSelect as cL, type ExternalAgentApiInsert as cM, type ExternalAgentApiUpdate as cN, type AllAgentSelect as cO, type ApiKeyApiSelect as cP, type ApiKeyApiInsert as cQ, type ApiKeyApiUpdate as cR, type ApiKeyApiCreationResponse as cS, type CredentialReferenceApiSelect as cT, type CredentialReferenceApiUpdate as cU, type SubAgentToolRelationSelect as cV, type SubAgentToolRelationInsert as cW, type SubAgentToolRelationApiSelect as cX, type SubAgentToolRelationApiInsert as cY, type SubAgentToolRelationApiUpdate as cZ, type LedgerArtifactInsert as c_, type FunctionApiSelect as ca, type FunctionApiUpdate as cb, type FunctionToolApiSelect as cc, type ConversationApiSelect as cd, type ConversationApiInsert as ce, type ConversationApiUpdate as cf, type MessageSelect as cg, type MessageApiSelect as ch, type MessageApiInsert as ci, type MessageApiUpdate as cj, type ContextConfigApiSelect as ck, type ContextConfigApiInsert as cl, type ContextConfigApiUpdate as cm, type FetchDefinition as cn, type FetchConfig as co, type ContextCacheUpdate as cp, type ContextCacheApiSelect as cq, type ContextCacheApiInsert as cr, type ContextCacheApiUpdate as cs, type DataComponentApiSelect as ct, type DataComponentApiInsert as cu, type DataComponentApiUpdate as cv, type SubAgentDataComponentSelect as cw, type SubAgentDataComponentInsert as cx, type SubAgentDataComponentUpdate as cy, type SubAgentDataComponentApiSelect as cz, type GraphStopWhen as d, TaskInsertSchema as d$, type LedgerArtifactApiSelect as d0, type LedgerArtifactApiInsert as d1, type LedgerArtifactApiUpdate as d2, type FullGraphAgentInsert as d3, type CanUseItem as d4, type InternalAgentDefinition as d5, type AgentDefinition as d6, type ToolDefinition as d7, type ProjectApiSelect as d8, type ProjectApiInsert as d9, ModelSchema as dA, ProjectModelSchema as dB, type SandboxConfig as dC, FunctionToolConfigSchema as dD, type FunctionToolConfig as dE, SubAgentSelectSchema as dF, SubAgentInsertSchema as dG, SubAgentUpdateSchema as dH, SubAgentApiSelectSchema as dI, SubAgentApiInsertSchema as dJ, SubAgentApiUpdateSchema as dK, SubAgentRelationSelectSchema as dL, SubAgentRelationInsertSchema as dM, SubAgentRelationUpdateSchema as dN, SubAgentRelationApiSelectSchema as dO, SubAgentRelationApiInsertSchema as dP, SubAgentRelationApiUpdateSchema as dQ, SubAgentRelationQuerySchema as dR, ExternalSubAgentRelationInsertSchema as dS, ExternalSubAgentRelationApiInsertSchema as dT, AgentGraphSelectSchema as dU, AgentGraphInsertSchema as dV, AgentGraphUpdateSchema as dW, AgentGraphApiSelectSchema as dX, AgentGraphApiInsertSchema as dY, AgentGraphApiUpdateSchema as dZ, TaskSelectSchema as d_, type ProjectApiUpdate as da, type Pagination as db, type SummaryEvent as dc, type MessageType as dd, type MessageRole as de, type MessageMode as df, type Models as dg, type ProjectModels as dh, type StatusUpdateSettings as di, type StatusComponent as dj, type ConversationScopeOptions as dk, type AgentConversationHistoryConfig as dl, type ContextCacheEntry as dm, type McpAuthType as dn, type McpServerAuth as dp, type McpTransportConfig as dq, type McpServerCapabilities as dr, type McpToolDefinition as ds, TOOL_STATUS_VALUES as dt, VALID_RELATION_TYPES as du, MCPServerType as dv, MIN_ID_LENGTH as dw, MAX_ID_LENGTH as dx, URL_SAFE_ID_PATTERN as dy, resourceIdSchema as dz, type SubAgentStopWhen as e, ExternalAgentApiUpdateSchema as e$, TaskUpdateSchema as e0, TaskApiSelectSchema as e1, TaskApiInsertSchema as e2, TaskApiUpdateSchema as e3, TaskRelationSelectSchema as e4, TaskRelationInsertSchema as e5, TaskRelationUpdateSchema as e6, TaskRelationApiSelectSchema as e7, TaskRelationApiInsertSchema as e8, TaskRelationApiUpdateSchema as e9, DataComponentUpdateSchema as eA, DataComponentApiSelectSchema as eB, DataComponentApiInsertSchema as eC, DataComponentApiUpdateSchema as eD, SubAgentDataComponentSelectSchema as eE, SubAgentDataComponentInsertSchema as eF, SubAgentDataComponentUpdateSchema as eG, SubAgentDataComponentApiSelectSchema as eH, SubAgentDataComponentApiInsertSchema as eI, SubAgentDataComponentApiUpdateSchema as eJ, ArtifactComponentSelectSchema as eK, ArtifactComponentInsertSchema as eL, ArtifactComponentUpdateSchema as eM, ArtifactComponentApiSelectSchema as eN, ArtifactComponentApiInsertSchema as eO, ArtifactComponentApiUpdateSchema as eP, SubAgentArtifactComponentSelectSchema as eQ, SubAgentArtifactComponentInsertSchema as eR, SubAgentArtifactComponentUpdateSchema as eS, SubAgentArtifactComponentApiSelectSchema as eT, SubAgentArtifactComponentApiInsertSchema as eU, SubAgentArtifactComponentApiUpdateSchema as eV, ExternalAgentSelectSchema as eW, ExternalAgentInsertSchema as eX, ExternalAgentUpdateSchema as eY, ExternalAgentApiSelectSchema as eZ, ExternalAgentApiInsertSchema as e_, McpTransportConfigSchema as ea, ToolStatusSchema as eb, McpToolDefinitionSchema as ec, ToolSelectSchema as ed, ToolInsertSchema as ee, ConversationSelectSchema as ef, ConversationInsertSchema as eg, ConversationUpdateSchema as eh, ConversationApiSelectSchema as ei, ConversationApiInsertSchema as ej, ConversationApiUpdateSchema as ek, MessageSelectSchema as el, MessageInsertSchema as em, MessageUpdateSchema as en, MessageApiSelectSchema as eo, MessageApiInsertSchema as ep, MessageApiUpdateSchema as eq, ContextCacheSelectSchema as er, ContextCacheInsertSchema as es, ContextCacheUpdateSchema as et, ContextCacheApiSelectSchema as eu, ContextCacheApiInsertSchema as ev, ContextCacheApiUpdateSchema as ew, DataComponentSelectSchema as ex, DataComponentInsertSchema as ey, DataComponentBaseSchema as ez, type ModelSettings as f, ProjectApiInsertSchema as f$, AllAgentSchema as f0, ApiKeySelectSchema as f1, ApiKeyInsertSchema as f2, ApiKeyUpdateSchema as f3, ApiKeyApiSelectSchema as f4, ApiKeyApiCreationResponseSchema as f5, ApiKeyApiInsertSchema as f6, CredentialReferenceSelectSchema as f7, CredentialReferenceInsertSchema as f8, CredentialReferenceUpdateSchema as f9, SubAgentToolRelationSelectSchema as fA, SubAgentToolRelationInsertSchema as fB, SubAgentToolRelationUpdateSchema as fC, SubAgentToolRelationApiSelectSchema as fD, SubAgentToolRelationApiInsertSchema as fE, SubAgentToolRelationApiUpdateSchema as fF, LedgerArtifactSelectSchema as fG, LedgerArtifactInsertSchema as fH, LedgerArtifactUpdateSchema as fI, LedgerArtifactApiSelectSchema as fJ, LedgerArtifactApiInsertSchema as fK, LedgerArtifactApiUpdateSchema as fL, StatusComponentSchema as fM, StatusUpdateSchema as fN, CanUseItemSchema as fO, FullGraphDefinitionSchema as fP, GraphWithinContextOfProjectSchema as fQ, PaginationSchema as fR, ListResponseSchema as fS, SingleResponseSchema as fT, ErrorResponseSchema as fU, ExistsResponseSchema as fV, RemovedResponseSchema as fW, ProjectSelectSchema as fX, ProjectInsertSchema as fY, ProjectUpdateSchema as fZ, ProjectApiSelectSchema as f_, CredentialReferenceApiSelectSchema as fa, CredentialReferenceApiInsertSchema as fb, CredentialReferenceApiUpdateSchema as fc, McpToolSchema as fd, MCPToolConfigSchema as fe, ToolUpdateSchema as ff, ToolApiSelectSchema as fg, ToolApiInsertSchema as fh, ToolApiUpdateSchema as fi, FunctionToolSelectSchema as fj, FunctionToolInsertSchema as fk, FunctionToolUpdateSchema as fl, FunctionToolApiSelectSchema as fm, FunctionToolApiInsertSchema as fn, FunctionToolApiUpdateSchema as fo, FunctionSelectSchema as fp, FunctionInsertSchema as fq, FunctionUpdateSchema as fr, FetchConfigSchema as fs, FetchDefinitionSchema as ft, ContextConfigSelectSchema as fu, ContextConfigInsertSchema as fv, ContextConfigUpdateSchema as fw, ContextConfigApiSelectSchema as fx, ContextConfigApiInsertSchema as fy, ContextConfigApiUpdateSchema as fz, CredentialStoreType as g, ProjectApiUpdateSchema as g0, FullProjectDefinitionSchema as g1, HeadersScopeSchema as g2, TenantParamsSchema as g3, TenantIdParamsSchema as g4, TenantProjectParamsSchema as g5, TenantProjectIdParamsSchema as g6, TenantProjectGraphParamsSchema as g7, TenantProjectGraphIdParamsSchema as g8, TenantProjectGraphSubAgentParamsSchema as g9, TenantProjectGraphSubAgentIdParamsSchema as ga, PaginationQueryParamsSchema as gb, MCPTransportType as h, FunctionApiSelectSchema as i, FunctionApiUpdateSchema as j, SandboxConfigSchema as k, type ContextFetchDefinition as l, type ToolMcpConfig as m, type ToolServerCapabilities as n, type ConversationMetadata as o, type MessageContent as p, type MessageMetadata as q, type CredentialReferenceApiInsert as r, type ContextConfigSelect as s, type MCPToolConfig as t, type GraphScopeConfig as u, type ProjectScopeConfig as v, type PaginationConfig as w, type AgentGraphInsert as x, type AgentGraphUpdate as y, type FullGraphDefinition as z };
|
|
9096
|
+
export { type CredentialReferenceInsert as $, ApiKeyApiUpdateSchema as A, type FullAgentDefinition as B, type ConversationHistoryConfig as C, type AgentSelect as D, type ApiKeySelect as E, FunctionApiInsertSchema as F, type ApiKeyInsert as G, type ApiKeyUpdate as H, type CreateApiKeyParams as I, type ApiKeyCreateResult as J, type ArtifactComponentSelect as K, type ArtifactComponentInsert as L, ModelSettingsSchema as M, type ArtifactComponentUpdate as N, type SubAgentScopeConfig as O, type Part as P, type ContextCacheSelect as Q, type ContextCacheInsert as R, StopWhenSchema as S, type TaskMetadataConfig as T, type ContextConfigInsert as U, type ContextConfigUpdate as V, type ConversationSelect as W, type ConversationInsert as X, type ConversationUpdate as Y, type CredentialReferenceSelect as Z, type ToolSelect as _, FullAgentAgentInsertSchema as a, type JSONParseError as a$, type CredentialReferenceUpdate as a0, type DataComponentSelect as a1, type DataComponentInsert as a2, type DataComponentUpdate as a3, type ExternalAgentInsert as a4, type ExternalAgentSelect as a5, type ExternalAgentUpdate as a6, type FunctionApiInsert as a7, type FunctionToolApiInsert as a8, type FunctionToolApiUpdate as a9, type TextPart as aA, type FileBase as aB, type FileWithBytes as aC, type FileWithUri as aD, type FilePart as aE, type DataPart as aF, TaskState as aG, type AgentCapabilities as aH, type AgentProvider as aI, type AgentSkill as aJ, type SecuritySchemeBase as aK, type APIKeySecurityScheme as aL, type HTTPAuthSecurityScheme as aM, type OAuthFlows as aN, type AuthorizationCodeOAuthFlow as aO, type ClientCredentialsOAuthFlow as aP, type ImplicitOAuthFlow as aQ, type PasswordOAuthFlow as aR, type OAuth2SecurityScheme as aS, type OpenIdConnectSecurityScheme as aT, type SecurityScheme as aU, type AgentCard as aV, type Message as aW, type TaskStatus as aX, type Task as aY, type TaskStatusUpdateEvent as aZ, type TaskArtifactUpdateEvent as a_, type Artifact as aa, type LedgerArtifactSelect as ab, type MessageVisibility as ac, type MessageInsert as ad, type MessageUpdate as ae, type FullProjectDefinition as af, type ProjectInfo as ag, type ProjectSelect as ah, type PaginationResult as ai, type ProjectResourceCounts as aj, type ProjectInsert as ak, type ProjectUpdate as al, type SubAgentRelationInsert as am, type ExternalSubAgentRelationInsert as an, type SubAgentRelationUpdate as ao, type SubAgentToolRelationUpdate as ap, type SubAgentInsert as aq, type SubAgentUpdate as ar, type SubAgentSelect as as, type TaskInsert as at, type TaskSelect as au, type McpTool as av, type ToolInsert as aw, type ToolUpdate as ax, type ExecutionContext as ay, type PartBase as az, AgentStopWhenSchema as b, type TaskRelationInsert as b$, type InvalidRequestError as b0, type MethodNotFoundError as b1, type InvalidParamsError as b2, type InternalError as b3, type TaskNotFoundError as b4, type TaskNotCancelableError as b5, type PushNotificationNotSupportedError as b6, type UnsupportedOperationError as b7, type ContentTypeNotSupportedError as b8, type InvalidAgentResponseError as b9, type CancelTaskSuccessResponse as bA, type CancelTaskResponse as bB, type SetTaskPushNotificationConfigSuccessResponse as bC, type SetTaskPushNotificationConfigResponse as bD, type GetTaskPushNotificationConfigSuccessResponse as bE, type GetTaskPushNotificationConfigResponse as bF, type A2ARequest as bG, type A2AResponse as bH, type MessagePart as bI, type TaskArtifact as bJ, type SubAgentApiSelect as bK, type SubAgentApiInsert as bL, type SubAgentApiUpdate as bM, type SubAgentRelationSelect as bN, type SubAgentRelationApiSelect as bO, type SubAgentRelationApiInsert as bP, type SubAgentRelationApiUpdate as bQ, type SubAgentRelationQuery as bR, type ExternalSubAgentRelationApiInsert as bS, type AgentApiSelect as bT, type AgentApiInsert as bU, type AgentApiUpdate as bV, type TaskUpdate as bW, type TaskApiSelect as bX, type TaskApiInsert as bY, type TaskApiUpdate as bZ, type TaskRelationSelect as b_, type A2AError as ba, type PushNotificationAuthenticationInfo as bb, type PushNotificationConfig as bc, type TaskPushNotificationConfig as bd, type TaskIdParams as be, type TaskQueryParams as bf, type MessageSendConfiguration as bg, type MessageSendParams as bh, type JSONRPCMessage as bi, type JSONRPCRequest as bj, type JSONRPCError as bk, type JSONRPCResult as bl, type JSONRPCErrorResponse as bm, type SendMessageRequest as bn, type SendStreamingMessageRequest as bo, type GetTaskRequest as bp, type CancelTaskRequest as bq, type SetTaskPushNotificationConfigRequest as br, type GetTaskPushNotificationConfigRequest as bs, type TaskResubscriptionRequest as bt, type SendMessageSuccessResponse as bu, type SendMessageResponse as bv, type SendStreamingMessageSuccessResponse as bw, type SendStreamingMessageResponse as bx, type GetTaskSuccessResponse as by, type GetTaskResponse as bz, SubAgentStopWhenSchema as c, type LedgerArtifactUpdate as c$, type TaskRelationUpdate as c0, type TaskRelationApiSelect as c1, type TaskRelationApiInsert as c2, type TaskRelationApiUpdate as c3, type ToolApiSelect as c4, type ToolApiInsert as c5, type ToolApiUpdate as c6, type FunctionSelect as c7, type FunctionInsert as c8, type FunctionUpdate as c9, type SubAgentDataComponentApiInsert as cA, type SubAgentDataComponentApiUpdate as cB, type ArtifactComponentApiSelect as cC, type ArtifactComponentApiInsert as cD, type ArtifactComponentApiUpdate as cE, type SubAgentArtifactComponentSelect as cF, type SubAgentArtifactComponentInsert as cG, type SubAgentArtifactComponentUpdate as cH, type SubAgentArtifactComponentApiSelect as cI, type SubAgentArtifactComponentApiInsert as cJ, type SubAgentArtifactComponentApiUpdate as cK, type ExternalAgentApiSelect as cL, type ExternalSubAgentApiInsert as cM, type ExternalAgentApiUpdate as cN, type AllAgentSelect as cO, type ApiKeyApiSelect as cP, type ApiKeyApiInsert as cQ, type ApiKeyApiUpdate as cR, type ApiKeyApiCreationResponse as cS, type CredentialReferenceApiSelect as cT, type CredentialReferenceApiUpdate as cU, type SubAgentToolRelationSelect as cV, type SubAgentToolRelationInsert as cW, type SubAgentToolRelationApiSelect as cX, type SubAgentToolRelationApiInsert as cY, type SubAgentToolRelationApiUpdate as cZ, type LedgerArtifactInsert as c_, type FunctionApiSelect as ca, type FunctionApiUpdate as cb, type FunctionToolApiSelect as cc, type ConversationApiSelect as cd, type ConversationApiInsert as ce, type ConversationApiUpdate as cf, type MessageSelect as cg, type MessageApiSelect as ch, type MessageApiInsert as ci, type MessageApiUpdate as cj, type ContextConfigApiSelect as ck, type ContextConfigApiInsert as cl, type ContextConfigApiUpdate as cm, type FetchDefinition as cn, type FetchConfig as co, type ContextCacheUpdate as cp, type ContextCacheApiSelect as cq, type ContextCacheApiInsert as cr, type ContextCacheApiUpdate as cs, type DataComponentApiSelect as ct, type DataComponentApiInsert as cu, type DataComponentApiUpdate as cv, type SubAgentDataComponentSelect as cw, type SubAgentDataComponentInsert as cx, type SubAgentDataComponentUpdate as cy, type SubAgentDataComponentApiSelect as cz, type StopWhen as d, TaskInsertSchema as d$, type LedgerArtifactApiSelect as d0, type LedgerArtifactApiInsert as d1, type LedgerArtifactApiUpdate as d2, type FullAgentAgentInsert as d3, type CanUseItem as d4, type InternalSubAgentDefinition as d5, type SubAgentDefinition as d6, type ToolDefinition as d7, type ProjectApiSelect as d8, type ProjectApiInsert as d9, ModelSchema as dA, ProjectModelSchema as dB, type SandboxConfig as dC, FunctionToolConfigSchema as dD, type FunctionToolConfig as dE, SubAgentSelectSchema as dF, SubAgentInsertSchema as dG, SubAgentUpdateSchema as dH, SubAgentApiSelectSchema as dI, SubAgentApiInsertSchema as dJ, SubAgentApiUpdateSchema as dK, SubAgentRelationSelectSchema as dL, SubAgentRelationInsertSchema as dM, SubAgentRelationUpdateSchema as dN, SubAgentRelationApiSelectSchema as dO, SubAgentRelationApiInsertSchema as dP, SubAgentRelationApiUpdateSchema as dQ, SubAgentRelationQuerySchema as dR, ExternalSubAgentRelationInsertSchema as dS, ExternalSubAgentRelationApiInsertSchema as dT, AgentSelectSchema as dU, AgentInsertSchema as dV, AgentUpdateSchema as dW, AgentApiSelectSchema as dX, AgentApiInsertSchema as dY, AgentApiUpdateSchema as dZ, TaskSelectSchema as d_, type ProjectApiUpdate as da, type Pagination as db, type SummaryEvent as dc, type MessageType as dd, type MessageRole as de, type MessageMode as df, type Models as dg, type ProjectModels as dh, type StatusUpdateSettings as di, type StatusComponent as dj, type ConversationScopeOptions as dk, type AgentConversationHistoryConfig as dl, type ContextCacheEntry as dm, type McpAuthType as dn, type McpServerAuth as dp, type McpTransportConfig as dq, type McpServerCapabilities as dr, type McpToolDefinition as ds, TOOL_STATUS_VALUES as dt, VALID_RELATION_TYPES as du, MCPServerType as dv, MIN_ID_LENGTH as dw, MAX_ID_LENGTH as dx, URL_SAFE_ID_PATTERN as dy, resourceIdSchema as dz, type AgentStopWhen as e, ExternalAgentApiUpdateSchema as e$, TaskUpdateSchema as e0, TaskApiSelectSchema as e1, TaskApiInsertSchema as e2, TaskApiUpdateSchema as e3, TaskRelationSelectSchema as e4, TaskRelationInsertSchema as e5, TaskRelationUpdateSchema as e6, TaskRelationApiSelectSchema as e7, TaskRelationApiInsertSchema as e8, TaskRelationApiUpdateSchema as e9, DataComponentUpdateSchema as eA, DataComponentApiSelectSchema as eB, DataComponentApiInsertSchema as eC, DataComponentApiUpdateSchema as eD, SubAgentDataComponentSelectSchema as eE, SubAgentDataComponentInsertSchema as eF, SubAgentDataComponentUpdateSchema as eG, SubAgentDataComponentApiSelectSchema as eH, SubAgentDataComponentApiInsertSchema as eI, SubAgentDataComponentApiUpdateSchema as eJ, ArtifactComponentSelectSchema as eK, ArtifactComponentInsertSchema as eL, ArtifactComponentUpdateSchema as eM, ArtifactComponentApiSelectSchema as eN, ArtifactComponentApiInsertSchema as eO, ArtifactComponentApiUpdateSchema as eP, SubAgentArtifactComponentSelectSchema as eQ, SubAgentArtifactComponentInsertSchema as eR, SubAgentArtifactComponentUpdateSchema as eS, SubAgentArtifactComponentApiSelectSchema as eT, SubAgentArtifactComponentApiInsertSchema as eU, SubAgentArtifactComponentApiUpdateSchema as eV, ExternalAgentSelectSchema as eW, ExternalAgentInsertSchema as eX, ExternalAgentUpdateSchema as eY, ExternalAgentApiSelectSchema as eZ, ExternalAgentApiInsertSchema as e_, McpTransportConfigSchema as ea, ToolStatusSchema as eb, McpToolDefinitionSchema as ec, ToolSelectSchema as ed, ToolInsertSchema as ee, ConversationSelectSchema as ef, ConversationInsertSchema as eg, ConversationUpdateSchema as eh, ConversationApiSelectSchema as ei, ConversationApiInsertSchema as ej, ConversationApiUpdateSchema as ek, MessageSelectSchema as el, MessageInsertSchema as em, MessageUpdateSchema as en, MessageApiSelectSchema as eo, MessageApiInsertSchema as ep, MessageApiUpdateSchema as eq, ContextCacheSelectSchema as er, ContextCacheInsertSchema as es, ContextCacheUpdateSchema as et, ContextCacheApiSelectSchema as eu, ContextCacheApiInsertSchema as ev, ContextCacheApiUpdateSchema as ew, DataComponentSelectSchema as ex, DataComponentInsertSchema as ey, DataComponentBaseSchema as ez, type SubAgentStopWhen as f, ProjectApiUpdateSchema as f$, AllAgentSchema as f0, ApiKeySelectSchema as f1, ApiKeyInsertSchema as f2, ApiKeyUpdateSchema as f3, ApiKeyApiSelectSchema as f4, ApiKeyApiCreationResponseSchema as f5, ApiKeyApiInsertSchema as f6, CredentialReferenceSelectSchema as f7, CredentialReferenceInsertSchema as f8, CredentialReferenceUpdateSchema as f9, SubAgentToolRelationSelectSchema as fA, SubAgentToolRelationInsertSchema as fB, SubAgentToolRelationUpdateSchema as fC, SubAgentToolRelationApiSelectSchema as fD, SubAgentToolRelationApiInsertSchema as fE, SubAgentToolRelationApiUpdateSchema as fF, LedgerArtifactSelectSchema as fG, LedgerArtifactInsertSchema as fH, LedgerArtifactUpdateSchema as fI, LedgerArtifactApiSelectSchema as fJ, LedgerArtifactApiInsertSchema as fK, LedgerArtifactApiUpdateSchema as fL, StatusComponentSchema as fM, StatusUpdateSchema as fN, CanUseItemSchema as fO, AgentWithinContextOfProjectSchema as fP, PaginationSchema as fQ, ListResponseSchema as fR, SingleResponseSchema as fS, ErrorResponseSchema as fT, ExistsResponseSchema as fU, RemovedResponseSchema as fV, ProjectSelectSchema as fW, ProjectInsertSchema as fX, ProjectUpdateSchema as fY, ProjectApiSelectSchema as fZ, ProjectApiInsertSchema as f_, CredentialReferenceApiSelectSchema as fa, CredentialReferenceApiInsertSchema as fb, CredentialReferenceApiUpdateSchema as fc, McpToolSchema as fd, MCPToolConfigSchema as fe, ToolUpdateSchema as ff, ToolApiSelectSchema as fg, ToolApiInsertSchema as fh, ToolApiUpdateSchema as fi, FunctionToolSelectSchema as fj, FunctionToolInsertSchema as fk, FunctionToolUpdateSchema as fl, FunctionToolApiSelectSchema as fm, FunctionToolApiInsertSchema as fn, FunctionToolApiUpdateSchema as fo, FunctionSelectSchema as fp, FunctionInsertSchema as fq, FunctionUpdateSchema as fr, FetchConfigSchema as fs, FetchDefinitionSchema as ft, ContextConfigSelectSchema as fu, ContextConfigInsertSchema as fv, ContextConfigUpdateSchema as fw, ContextConfigApiSelectSchema as fx, ContextConfigApiInsertSchema as fy, ContextConfigApiUpdateSchema as fz, type ModelSettings as g, FullProjectDefinitionSchema as g0, HeadersScopeSchema as g1, TenantParamsSchema as g2, TenantIdParamsSchema as g3, TenantProjectParamsSchema as g4, TenantProjectIdParamsSchema as g5, TenantProjectAgentParamsSchema as g6, TenantProjectAgentIdParamsSchema as g7, TenantProjectAgentSubAgentParamsSchema as g8, TenantProjectAgentSubAgentIdParamsSchema as g9, PaginationQueryParamsSchema as ga, CredentialStoreType as h, MCPTransportType as i, FunctionApiSelectSchema as j, FunctionApiUpdateSchema as k, SandboxConfigSchema as l, type ContextFetchDefinition as m, type ToolMcpConfig as n, type ToolServerCapabilities as o, type ConversationMetadata as p, type MessageContent as q, type MessageMetadata as r, type CredentialReferenceApiInsert as s, type ContextConfigSelect as t, type MCPToolConfig as u, type AgentScopeConfig as v, type ProjectScopeConfig as w, type PaginationConfig as x, type AgentInsert as y, type AgentUpdate as z };
|