@inkeep/agents-core 0.0.0-dev-20250911232805 → 0.0.0-dev-20250912000125
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/{chunk-ZJ46PKID.js → chunk-2JIQGWUM.js} +1 -1
- package/dist/{chunk-DT762NC3.js → chunk-M4JXMAG7.js} +1 -1
- package/dist/{chunk-P3JAXV7M.js → chunk-MKBO26DX.js} +1 -5
- package/dist/client-exports.d.cts +3 -3
- package/dist/client-exports.d.ts +3 -3
- package/dist/db/schema.d.cts +2 -2
- package/dist/db/schema.d.ts +2 -2
- package/dist/db/schema.js +1 -1
- package/dist/index.cjs +4 -113
- package/dist/index.d.cts +124 -124
- package/dist/index.d.ts +124 -124
- package/dist/index.js +8 -114
- package/dist/{schema-Dbc3UMpd.d.cts → schema-2Sd93dmu.d.cts} +1 -1
- package/dist/{schema-DFDqtBpV.d.ts → schema-BhCjDbs3.d.ts} +1 -1
- package/dist/types/index.d.cts +2 -2
- package/dist/types/index.d.ts +2 -2
- package/dist/validation/index.d.cts +2 -2
- package/dist/validation/index.d.ts +2 -2
- package/dist/validation/index.js +1 -1
- package/package.json +1 -1
- package/dist/{entities-CNJaf-rG.d.ts → entities-BbN3GqYV.d.cts} +114 -114
- package/dist/{entities-CNJaf-rG.d.cts → entities-BbN3GqYV.d.ts} +114 -114
|
@@ -942,10 +942,9 @@ declare const AgentUpdateSchema: z$1.ZodObject<{
|
|
|
942
942
|
in: {};
|
|
943
943
|
}>;
|
|
944
944
|
declare const AgentApiSelectSchema: z$1.ZodObject<{
|
|
945
|
-
id: z$1.ZodString;
|
|
946
945
|
name: z$1.ZodString;
|
|
946
|
+
id: z$1.ZodString;
|
|
947
947
|
description: z$1.ZodString;
|
|
948
|
-
prompt: z$1.ZodString;
|
|
949
948
|
createdAt: z$1.ZodString;
|
|
950
949
|
updatedAt: z$1.ZodString;
|
|
951
950
|
models: z$1.ZodNullable<z$1.ZodType<{
|
|
@@ -1010,13 +1009,13 @@ declare const AgentApiSelectSchema: z$1.ZodObject<{
|
|
|
1010
1009
|
}, {
|
|
1011
1010
|
stepCountIs?: number;
|
|
1012
1011
|
}>>>;
|
|
1012
|
+
prompt: z$1.ZodString;
|
|
1013
1013
|
conversationHistoryConfig: z$1.ZodNullable<z$1.ZodType<ConversationHistoryConfig, ConversationHistoryConfig, z$1.core.$ZodTypeInternals<ConversationHistoryConfig, ConversationHistoryConfig>>>;
|
|
1014
1014
|
}, z$1.core.$strip>;
|
|
1015
1015
|
declare const AgentApiInsertSchema: z$1.ZodObject<{
|
|
1016
|
-
id: z$1.ZodString;
|
|
1017
1016
|
name: z$1.ZodString;
|
|
1017
|
+
id: z$1.ZodString;
|
|
1018
1018
|
description: z$1.ZodString;
|
|
1019
|
-
prompt: z$1.ZodString;
|
|
1020
1019
|
createdAt: z$1.ZodOptional<z$1.ZodString>;
|
|
1021
1020
|
updatedAt: z$1.ZodOptional<z$1.ZodString>;
|
|
1022
1021
|
models: z$1.ZodOptional<z$1.ZodObject<{
|
|
@@ -1042,13 +1041,13 @@ declare const AgentApiInsertSchema: z$1.ZodObject<{
|
|
|
1042
1041
|
}, {
|
|
1043
1042
|
stepCountIs?: number;
|
|
1044
1043
|
}>>>>;
|
|
1044
|
+
prompt: z$1.ZodString;
|
|
1045
1045
|
conversationHistoryConfig: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodType<ConversationHistoryConfig, ConversationHistoryConfig, z$1.core.$ZodTypeInternals<ConversationHistoryConfig, ConversationHistoryConfig>>>>;
|
|
1046
1046
|
}, z$1.core.$strip>;
|
|
1047
1047
|
declare const AgentApiUpdateSchema: z$1.ZodObject<{
|
|
1048
|
-
id: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodString>>;
|
|
1049
1048
|
name: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodString>>;
|
|
1049
|
+
id: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodString>>;
|
|
1050
1050
|
description: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodString>>;
|
|
1051
|
-
prompt: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodString>>;
|
|
1052
1051
|
createdAt: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodOptional<z$1.ZodString>>>;
|
|
1053
1052
|
updatedAt: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodOptional<z$1.ZodString>>>;
|
|
1054
1053
|
models: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodOptional<z$1.ZodObject<{
|
|
@@ -1074,6 +1073,7 @@ declare const AgentApiUpdateSchema: z$1.ZodObject<{
|
|
|
1074
1073
|
}, {
|
|
1075
1074
|
stepCountIs?: number;
|
|
1076
1075
|
}>>>>>>;
|
|
1076
|
+
prompt: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodString>>;
|
|
1077
1077
|
conversationHistoryConfig: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodOptional<z$1.ZodNullable<z$1.ZodType<ConversationHistoryConfig, ConversationHistoryConfig, z$1.core.$ZodTypeInternals<ConversationHistoryConfig, ConversationHistoryConfig>>>>>>;
|
|
1078
1078
|
}, z$1.core.$strip>;
|
|
1079
1079
|
declare const AgentRelationSelectSchema: drizzle_zod.BuildSchema<"select", {
|
|
@@ -1300,9 +1300,9 @@ declare const AgentRelationUpdateSchema: z$1.ZodObject<{
|
|
|
1300
1300
|
}>;
|
|
1301
1301
|
declare const AgentRelationApiSelectSchema: z$1.ZodObject<{
|
|
1302
1302
|
id: z$1.ZodString;
|
|
1303
|
-
graphId: z$1.ZodString;
|
|
1304
1303
|
createdAt: z$1.ZodString;
|
|
1305
1304
|
updatedAt: z$1.ZodString;
|
|
1305
|
+
graphId: z$1.ZodString;
|
|
1306
1306
|
sourceAgentId: z$1.ZodString;
|
|
1307
1307
|
targetAgentId: z$1.ZodNullable<z$1.ZodString>;
|
|
1308
1308
|
externalAgentId: z$1.ZodNullable<z$1.ZodString>;
|
|
@@ -1310,9 +1310,9 @@ declare const AgentRelationApiSelectSchema: z$1.ZodObject<{
|
|
|
1310
1310
|
}, z$1.core.$strip>;
|
|
1311
1311
|
declare const AgentRelationApiInsertSchema: z$1.ZodObject<{
|
|
1312
1312
|
id: z$1.ZodString;
|
|
1313
|
-
graphId: z$1.ZodString;
|
|
1314
1313
|
createdAt: z$1.ZodOptional<z$1.ZodString>;
|
|
1315
1314
|
updatedAt: z$1.ZodOptional<z$1.ZodString>;
|
|
1315
|
+
graphId: z$1.ZodString;
|
|
1316
1316
|
sourceAgentId: z$1.ZodString;
|
|
1317
1317
|
targetAgentId: z$1.ZodOptional<z$1.ZodString>;
|
|
1318
1318
|
externalAgentId: z$1.ZodOptional<z$1.ZodString>;
|
|
@@ -1323,9 +1323,9 @@ declare const AgentRelationApiInsertSchema: z$1.ZodObject<{
|
|
|
1323
1323
|
}, z$1.core.$strip>;
|
|
1324
1324
|
declare const AgentRelationApiUpdateSchema: z$1.ZodObject<{
|
|
1325
1325
|
id: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodString>>;
|
|
1326
|
-
graphId: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodString>>;
|
|
1327
1326
|
createdAt: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodOptional<z$1.ZodString>>>;
|
|
1328
1327
|
updatedAt: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodOptional<z$1.ZodString>>>;
|
|
1328
|
+
graphId: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodString>>;
|
|
1329
1329
|
sourceAgentId: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodString>>;
|
|
1330
1330
|
targetAgentId: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodOptional<z$1.ZodString>>>;
|
|
1331
1331
|
externalAgentId: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodOptional<z$1.ZodString>>>;
|
|
@@ -1356,9 +1356,9 @@ declare const ExternalAgentRelationInsertSchema: z$1.ZodObject<{
|
|
|
1356
1356
|
}>;
|
|
1357
1357
|
declare const ExternalAgentRelationApiInsertSchema: z$1.ZodObject<{
|
|
1358
1358
|
id: z$1.ZodString;
|
|
1359
|
-
graphId: z$1.ZodString;
|
|
1360
1359
|
createdAt: z$1.ZodOptional<z$1.ZodString>;
|
|
1361
1360
|
updatedAt: z$1.ZodOptional<z$1.ZodString>;
|
|
1361
|
+
graphId: z$1.ZodString;
|
|
1362
1362
|
sourceAgentId: z$1.ZodString;
|
|
1363
1363
|
targetAgentId: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodString>>;
|
|
1364
1364
|
externalAgentId: z$1.ZodString;
|
|
@@ -1940,12 +1940,11 @@ declare const AgentGraphUpdateSchema: z$1.ZodObject<{
|
|
|
1940
1940
|
in: {};
|
|
1941
1941
|
}>;
|
|
1942
1942
|
declare const AgentGraphApiSelectSchema: z$1.ZodObject<{
|
|
1943
|
-
id: z$1.ZodString;
|
|
1944
1943
|
name: z$1.ZodString;
|
|
1944
|
+
id: z$1.ZodString;
|
|
1945
1945
|
description: z$1.ZodNullable<z$1.ZodString>;
|
|
1946
1946
|
createdAt: z$1.ZodString;
|
|
1947
1947
|
updatedAt: z$1.ZodString;
|
|
1948
|
-
defaultAgentId: z$1.ZodString;
|
|
1949
1948
|
models: z$1.ZodNullable<z$1.ZodType<{
|
|
1950
1949
|
base?: {
|
|
1951
1950
|
model?: string | undefined;
|
|
@@ -2008,7 +2007,8 @@ declare const AgentGraphApiSelectSchema: z$1.ZodObject<{
|
|
|
2008
2007
|
}, {
|
|
2009
2008
|
transferCountIs?: number;
|
|
2010
2009
|
}>>>;
|
|
2011
|
-
|
|
2010
|
+
contextConfigId: z$1.ZodNullable<z$1.ZodString>;
|
|
2011
|
+
defaultAgentId: z$1.ZodString;
|
|
2012
2012
|
statusUpdates: z$1.ZodNullable<z$1.ZodType<{
|
|
2013
2013
|
enabled?: boolean | undefined;
|
|
2014
2014
|
numEvents?: number | undefined;
|
|
@@ -2066,14 +2066,13 @@ declare const AgentGraphApiSelectSchema: z$1.ZodObject<{
|
|
|
2066
2066
|
} | undefined;
|
|
2067
2067
|
}[] | undefined;
|
|
2068
2068
|
}>>>;
|
|
2069
|
-
|
|
2069
|
+
graphPrompt: z$1.ZodNullable<z$1.ZodString>;
|
|
2070
2070
|
}, z$1.core.$strip>;
|
|
2071
2071
|
declare const AgentGraphApiInsertSchema: z$1.ZodObject<{
|
|
2072
2072
|
name: z$1.ZodString;
|
|
2073
2073
|
description: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodString>>;
|
|
2074
2074
|
createdAt: z$1.ZodOptional<z$1.ZodString>;
|
|
2075
2075
|
updatedAt: z$1.ZodOptional<z$1.ZodString>;
|
|
2076
|
-
defaultAgentId: z$1.ZodString;
|
|
2077
2076
|
models: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodType<{
|
|
2078
2077
|
base?: {
|
|
2079
2078
|
model?: string | undefined;
|
|
@@ -2136,7 +2135,8 @@ declare const AgentGraphApiInsertSchema: z$1.ZodObject<{
|
|
|
2136
2135
|
}, {
|
|
2137
2136
|
transferCountIs?: number;
|
|
2138
2137
|
}>>>>;
|
|
2139
|
-
|
|
2138
|
+
contextConfigId: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodString>>;
|
|
2139
|
+
defaultAgentId: z$1.ZodString;
|
|
2140
2140
|
statusUpdates: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodType<{
|
|
2141
2141
|
enabled?: boolean | undefined;
|
|
2142
2142
|
numEvents?: number | undefined;
|
|
@@ -2194,16 +2194,15 @@ declare const AgentGraphApiInsertSchema: z$1.ZodObject<{
|
|
|
2194
2194
|
} | undefined;
|
|
2195
2195
|
}[] | undefined;
|
|
2196
2196
|
}>>>>;
|
|
2197
|
-
|
|
2197
|
+
graphPrompt: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodString>>;
|
|
2198
2198
|
id: z$1.ZodOptional<z$1.ZodString>;
|
|
2199
2199
|
}, z$1.core.$strip>;
|
|
2200
2200
|
declare const AgentGraphApiUpdateSchema: z$1.ZodObject<{
|
|
2201
|
-
id: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodString>>;
|
|
2202
2201
|
name: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodString>>;
|
|
2202
|
+
id: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodString>>;
|
|
2203
2203
|
description: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodOptional<z$1.ZodNullable<z$1.ZodString>>>>;
|
|
2204
2204
|
createdAt: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodOptional<z$1.ZodString>>>;
|
|
2205
2205
|
updatedAt: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodOptional<z$1.ZodString>>>;
|
|
2206
|
-
defaultAgentId: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodString>>;
|
|
2207
2206
|
models: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodOptional<z$1.ZodNullable<z$1.ZodType<{
|
|
2208
2207
|
base?: {
|
|
2209
2208
|
model?: string | undefined;
|
|
@@ -2266,7 +2265,8 @@ declare const AgentGraphApiUpdateSchema: z$1.ZodObject<{
|
|
|
2266
2265
|
}, {
|
|
2267
2266
|
transferCountIs?: number;
|
|
2268
2267
|
}>>>>>>;
|
|
2269
|
-
|
|
2268
|
+
contextConfigId: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodOptional<z$1.ZodNullable<z$1.ZodString>>>>;
|
|
2269
|
+
defaultAgentId: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodString>>;
|
|
2270
2270
|
statusUpdates: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodOptional<z$1.ZodNullable<z$1.ZodType<{
|
|
2271
2271
|
enabled?: boolean | undefined;
|
|
2272
2272
|
numEvents?: number | undefined;
|
|
@@ -2324,7 +2324,7 @@ declare const AgentGraphApiUpdateSchema: z$1.ZodObject<{
|
|
|
2324
2324
|
} | undefined;
|
|
2325
2325
|
}[] | undefined;
|
|
2326
2326
|
}>>>>>>;
|
|
2327
|
-
|
|
2327
|
+
graphPrompt: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodOptional<z$1.ZodNullable<z$1.ZodString>>>>;
|
|
2328
2328
|
}, z$1.core.$strip>;
|
|
2329
2329
|
declare const TaskSelectSchema: drizzle_zod.BuildSchema<"select", {
|
|
2330
2330
|
tenantId: drizzle_orm_sqlite_core.SQLiteColumn<{
|
|
@@ -2530,29 +2530,29 @@ declare const TaskUpdateSchema: z$1.ZodObject<{
|
|
|
2530
2530
|
in: {};
|
|
2531
2531
|
}>;
|
|
2532
2532
|
declare const TaskApiSelectSchema: z$1.ZodObject<{
|
|
2533
|
+
metadata: z$1.ZodNullable<z$1.ZodType<TaskMetadataConfig, TaskMetadataConfig, z$1.core.$ZodTypeInternals<TaskMetadataConfig, TaskMetadataConfig>>>;
|
|
2533
2534
|
id: z$1.ZodString;
|
|
2534
2535
|
createdAt: z$1.ZodString;
|
|
2535
2536
|
updatedAt: z$1.ZodString;
|
|
2536
|
-
metadata: z$1.ZodNullable<z$1.ZodType<TaskMetadataConfig, TaskMetadataConfig, z$1.core.$ZodTypeInternals<TaskMetadataConfig, TaskMetadataConfig>>>;
|
|
2537
2537
|
status: z$1.ZodString;
|
|
2538
2538
|
contextId: z$1.ZodString;
|
|
2539
2539
|
agentId: z$1.ZodString;
|
|
2540
2540
|
}, z$1.core.$strip>;
|
|
2541
2541
|
declare const TaskApiInsertSchema: z$1.ZodObject<{
|
|
2542
|
+
metadata: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodType<TaskMetadataConfig, TaskMetadataConfig, z$1.core.$ZodTypeInternals<TaskMetadataConfig, TaskMetadataConfig>>>>;
|
|
2542
2543
|
id: z$1.ZodString;
|
|
2543
2544
|
createdAt: z$1.ZodOptional<z$1.ZodString>;
|
|
2544
2545
|
updatedAt: z$1.ZodOptional<z$1.ZodString>;
|
|
2545
|
-
metadata: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodType<TaskMetadataConfig, TaskMetadataConfig, z$1.core.$ZodTypeInternals<TaskMetadataConfig, TaskMetadataConfig>>>>;
|
|
2546
2546
|
status: z$1.ZodString;
|
|
2547
2547
|
conversationId: z$1.ZodOptional<z$1.ZodString>;
|
|
2548
2548
|
contextId: z$1.ZodString;
|
|
2549
2549
|
agentId: z$1.ZodString;
|
|
2550
2550
|
}, z$1.core.$strip>;
|
|
2551
2551
|
declare const TaskApiUpdateSchema: z$1.ZodObject<{
|
|
2552
|
+
metadata: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodOptional<z$1.ZodNullable<z$1.ZodType<TaskMetadataConfig, TaskMetadataConfig, z$1.core.$ZodTypeInternals<TaskMetadataConfig, TaskMetadataConfig>>>>>>;
|
|
2552
2553
|
id: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodString>>;
|
|
2553
2554
|
createdAt: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodOptional<z$1.ZodString>>>;
|
|
2554
2555
|
updatedAt: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodOptional<z$1.ZodString>>>;
|
|
2555
|
-
metadata: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodOptional<z$1.ZodNullable<z$1.ZodType<TaskMetadataConfig, TaskMetadataConfig, z$1.core.$ZodTypeInternals<TaskMetadataConfig, TaskMetadataConfig>>>>>>;
|
|
2556
2556
|
status: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodString>>;
|
|
2557
2557
|
conversationId: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodOptional<z$1.ZodString>>>;
|
|
2558
2558
|
contextId: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodString>>;
|
|
@@ -3354,20 +3354,20 @@ declare const ConversationUpdateSchema: z$1.ZodObject<{
|
|
|
3354
3354
|
in: {};
|
|
3355
3355
|
}>;
|
|
3356
3356
|
declare const ConversationApiSelectSchema: z$1.ZodObject<{
|
|
3357
|
+
metadata: z$1.ZodNullable<z$1.ZodType<ConversationMetadata, ConversationMetadata, z$1.core.$ZodTypeInternals<ConversationMetadata, ConversationMetadata>>>;
|
|
3357
3358
|
id: z$1.ZodString;
|
|
3358
3359
|
createdAt: z$1.ZodString;
|
|
3359
3360
|
updatedAt: z$1.ZodString;
|
|
3360
|
-
metadata: z$1.ZodNullable<z$1.ZodType<ConversationMetadata, ConversationMetadata, z$1.core.$ZodTypeInternals<ConversationMetadata, ConversationMetadata>>>;
|
|
3361
3361
|
title: z$1.ZodNullable<z$1.ZodString>;
|
|
3362
3362
|
userId: z$1.ZodNullable<z$1.ZodString>;
|
|
3363
3363
|
activeAgentId: z$1.ZodString;
|
|
3364
3364
|
lastContextResolution: z$1.ZodNullable<z$1.ZodString>;
|
|
3365
3365
|
}, z$1.core.$strip>;
|
|
3366
3366
|
declare const ConversationApiInsertSchema: z$1.ZodObject<{
|
|
3367
|
+
metadata: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodType<ConversationMetadata, ConversationMetadata, z$1.core.$ZodTypeInternals<ConversationMetadata, ConversationMetadata>>>>;
|
|
3367
3368
|
id: z$1.ZodString;
|
|
3368
3369
|
createdAt: z$1.ZodOptional<z$1.ZodString>;
|
|
3369
3370
|
updatedAt: z$1.ZodOptional<z$1.ZodString>;
|
|
3370
|
-
metadata: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodType<ConversationMetadata, ConversationMetadata, z$1.core.$ZodTypeInternals<ConversationMetadata, ConversationMetadata>>>>;
|
|
3371
3371
|
title: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodString>>;
|
|
3372
3372
|
contextConfigId: z$1.ZodOptional<z$1.ZodString>;
|
|
3373
3373
|
userId: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodString>>;
|
|
@@ -3375,10 +3375,10 @@ declare const ConversationApiInsertSchema: z$1.ZodObject<{
|
|
|
3375
3375
|
lastContextResolution: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodString>>;
|
|
3376
3376
|
}, z$1.core.$strip>;
|
|
3377
3377
|
declare const ConversationApiUpdateSchema: z$1.ZodObject<{
|
|
3378
|
+
metadata: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodOptional<z$1.ZodNullable<z$1.ZodType<ConversationMetadata, ConversationMetadata, z$1.core.$ZodTypeInternals<ConversationMetadata, ConversationMetadata>>>>>>;
|
|
3378
3379
|
id: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodString>>;
|
|
3379
3380
|
createdAt: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodOptional<z$1.ZodString>>>;
|
|
3380
3381
|
updatedAt: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodOptional<z$1.ZodString>>>;
|
|
3381
|
-
metadata: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodOptional<z$1.ZodNullable<z$1.ZodType<ConversationMetadata, ConversationMetadata, z$1.core.$ZodTypeInternals<ConversationMetadata, ConversationMetadata>>>>>>;
|
|
3382
3382
|
title: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodOptional<z$1.ZodNullable<z$1.ZodString>>>>;
|
|
3383
3383
|
contextConfigId: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodOptional<z$1.ZodString>>>;
|
|
3384
3384
|
userId: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodOptional<z$1.ZodNullable<z$1.ZodString>>>>;
|
|
@@ -3818,10 +3818,10 @@ declare const MessageUpdateSchema: z$1.ZodObject<{
|
|
|
3818
3818
|
in: {};
|
|
3819
3819
|
}>;
|
|
3820
3820
|
declare const MessageApiSelectSchema: z$1.ZodObject<{
|
|
3821
|
+
metadata: z$1.ZodNullable<z$1.ZodType<MessageMetadata, MessageMetadata, z$1.core.$ZodTypeInternals<MessageMetadata, MessageMetadata>>>;
|
|
3821
3822
|
id: z$1.ZodString;
|
|
3822
3823
|
createdAt: z$1.ZodString;
|
|
3823
3824
|
updatedAt: z$1.ZodString;
|
|
3824
|
-
metadata: z$1.ZodNullable<z$1.ZodType<MessageMetadata, MessageMetadata, z$1.core.$ZodTypeInternals<MessageMetadata, MessageMetadata>>>;
|
|
3825
3825
|
content: z$1.ZodType<MessageContent, MessageContent, z$1.core.$ZodTypeInternals<MessageContent, MessageContent>>;
|
|
3826
3826
|
role: z$1.ZodString;
|
|
3827
3827
|
conversationId: z$1.ZodString;
|
|
@@ -3838,10 +3838,10 @@ declare const MessageApiSelectSchema: z$1.ZodObject<{
|
|
|
3838
3838
|
a2aSessionId: z$1.ZodNullable<z$1.ZodString>;
|
|
3839
3839
|
}, z$1.core.$strip>;
|
|
3840
3840
|
declare const MessageApiInsertSchema: z$1.ZodObject<{
|
|
3841
|
+
metadata: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodType<MessageMetadata, MessageMetadata, z$1.core.$ZodTypeInternals<MessageMetadata, MessageMetadata>>>>;
|
|
3841
3842
|
id: z$1.ZodString;
|
|
3842
3843
|
createdAt: z$1.ZodOptional<z$1.ZodString>;
|
|
3843
3844
|
updatedAt: z$1.ZodOptional<z$1.ZodString>;
|
|
3844
|
-
metadata: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodType<MessageMetadata, MessageMetadata, z$1.core.$ZodTypeInternals<MessageMetadata, MessageMetadata>>>>;
|
|
3845
3845
|
content: z$1.ZodType<MessageContent, MessageContent, z$1.core.$ZodTypeInternals<MessageContent, MessageContent>>;
|
|
3846
3846
|
role: z$1.ZodString;
|
|
3847
3847
|
conversationId: z$1.ZodString;
|
|
@@ -3858,10 +3858,10 @@ declare const MessageApiInsertSchema: z$1.ZodObject<{
|
|
|
3858
3858
|
a2aSessionId: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodString>>;
|
|
3859
3859
|
}, z$1.core.$strip>;
|
|
3860
3860
|
declare const MessageApiUpdateSchema: z$1.ZodObject<{
|
|
3861
|
+
metadata: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodOptional<z$1.ZodNullable<z$1.ZodType<MessageMetadata, MessageMetadata, z$1.core.$ZodTypeInternals<MessageMetadata, MessageMetadata>>>>>>;
|
|
3861
3862
|
id: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodString>>;
|
|
3862
3863
|
createdAt: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodOptional<z$1.ZodString>>>;
|
|
3863
3864
|
updatedAt: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodOptional<z$1.ZodString>>>;
|
|
3864
|
-
metadata: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodOptional<z$1.ZodNullable<z$1.ZodType<MessageMetadata, MessageMetadata, z$1.core.$ZodTypeInternals<MessageMetadata, MessageMetadata>>>>>>;
|
|
3865
3865
|
content: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodType<MessageContent, MessageContent, z$1.core.$ZodTypeInternals<MessageContent, MessageContent>>>>;
|
|
3866
3866
|
role: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodString>>;
|
|
3867
3867
|
conversationId: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodString>>;
|
|
@@ -4391,9 +4391,9 @@ declare const ContextCacheUpdateSchema: z$1.ZodObject<{
|
|
|
4391
4391
|
}>;
|
|
4392
4392
|
declare const ContextCacheApiSelectSchema: z$1.ZodObject<{
|
|
4393
4393
|
id: z$1.ZodString;
|
|
4394
|
-
value: z$1.ZodType<drizzle_zod.Json, unknown, z$1.core.$ZodTypeInternals<drizzle_zod.Json, unknown>>;
|
|
4395
4394
|
createdAt: z$1.ZodString;
|
|
4396
4395
|
updatedAt: z$1.ZodString;
|
|
4396
|
+
value: z$1.ZodType<drizzle_zod.Json, unknown, z$1.core.$ZodTypeInternals<drizzle_zod.Json, unknown>>;
|
|
4397
4397
|
conversationId: z$1.ZodString;
|
|
4398
4398
|
contextConfigId: z$1.ZodString;
|
|
4399
4399
|
contextVariableKey: z$1.ZodString;
|
|
@@ -4404,9 +4404,9 @@ declare const ContextCacheApiSelectSchema: z$1.ZodObject<{
|
|
|
4404
4404
|
}, z$1.core.$strip>;
|
|
4405
4405
|
declare const ContextCacheApiInsertSchema: z$1.ZodObject<{
|
|
4406
4406
|
id: z$1.ZodString;
|
|
4407
|
-
value: z$1.ZodType<drizzle_zod.Json, unknown, z$1.core.$ZodTypeInternals<drizzle_zod.Json, unknown>>;
|
|
4408
4407
|
createdAt: z$1.ZodOptional<z$1.ZodString>;
|
|
4409
4408
|
updatedAt: z$1.ZodOptional<z$1.ZodString>;
|
|
4409
|
+
value: z$1.ZodType<drizzle_zod.Json, unknown, z$1.core.$ZodTypeInternals<drizzle_zod.Json, unknown>>;
|
|
4410
4410
|
conversationId: z$1.ZodString;
|
|
4411
4411
|
contextConfigId: z$1.ZodString;
|
|
4412
4412
|
contextVariableKey: z$1.ZodString;
|
|
@@ -4417,9 +4417,9 @@ declare const ContextCacheApiInsertSchema: z$1.ZodObject<{
|
|
|
4417
4417
|
}, z$1.core.$strip>;
|
|
4418
4418
|
declare const ContextCacheApiUpdateSchema: z$1.ZodObject<{
|
|
4419
4419
|
id: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodString>>;
|
|
4420
|
-
value: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodType<drizzle_zod.Json, unknown, z$1.core.$ZodTypeInternals<drizzle_zod.Json, unknown>>>>;
|
|
4421
4420
|
createdAt: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodOptional<z$1.ZodString>>>;
|
|
4422
4421
|
updatedAt: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodOptional<z$1.ZodString>>>;
|
|
4422
|
+
value: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodType<drizzle_zod.Json, unknown, z$1.core.$ZodTypeInternals<drizzle_zod.Json, unknown>>>>;
|
|
4423
4423
|
conversationId: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodString>>;
|
|
4424
4424
|
contextConfigId: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodString>>;
|
|
4425
4425
|
contextVariableKey: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodString>>;
|
|
@@ -4596,10 +4596,10 @@ declare const DataComponentInsertSchema: z$1.ZodObject<{
|
|
|
4596
4596
|
in: {};
|
|
4597
4597
|
}>;
|
|
4598
4598
|
declare const DataComponentBaseSchema: z$1.ZodObject<{
|
|
4599
|
+
name: z$1.ZodString;
|
|
4599
4600
|
tenantId: z$1.ZodString;
|
|
4600
4601
|
projectId: z$1.ZodString;
|
|
4601
4602
|
id: z$1.ZodString;
|
|
4602
|
-
name: z$1.ZodString;
|
|
4603
4603
|
description: z$1.ZodString;
|
|
4604
4604
|
props: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodType<Record<string, unknown>, Record<string, unknown>, z$1.core.$ZodTypeInternals<Record<string, unknown>, Record<string, unknown>>>>>;
|
|
4605
4605
|
}, {
|
|
@@ -4620,24 +4620,24 @@ declare const DataComponentUpdateSchema: z$1.ZodObject<{
|
|
|
4620
4620
|
in: {};
|
|
4621
4621
|
}>;
|
|
4622
4622
|
declare const DataComponentApiSelectSchema: z$1.ZodObject<{
|
|
4623
|
-
id: z$1.ZodString;
|
|
4624
4623
|
name: z$1.ZodString;
|
|
4624
|
+
id: z$1.ZodString;
|
|
4625
4625
|
description: z$1.ZodString;
|
|
4626
4626
|
createdAt: z$1.ZodString;
|
|
4627
4627
|
updatedAt: z$1.ZodString;
|
|
4628
4628
|
props: z$1.ZodNullable<z$1.ZodType<Record<string, unknown>, Record<string, unknown>, z$1.core.$ZodTypeInternals<Record<string, unknown>, Record<string, unknown>>>>;
|
|
4629
4629
|
}, z$1.core.$strip>;
|
|
4630
4630
|
declare const DataComponentApiInsertSchema: z$1.ZodObject<{
|
|
4631
|
-
id: z$1.ZodString;
|
|
4632
4631
|
name: z$1.ZodString;
|
|
4632
|
+
id: z$1.ZodString;
|
|
4633
4633
|
description: z$1.ZodString;
|
|
4634
4634
|
createdAt: z$1.ZodOptional<z$1.ZodString>;
|
|
4635
4635
|
updatedAt: z$1.ZodOptional<z$1.ZodString>;
|
|
4636
4636
|
props: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodType<Record<string, unknown>, Record<string, unknown>, z$1.core.$ZodTypeInternals<Record<string, unknown>, Record<string, unknown>>>>>;
|
|
4637
4637
|
}, z$1.core.$strip>;
|
|
4638
4638
|
declare const DataComponentApiUpdateSchema: z$1.ZodObject<{
|
|
4639
|
-
id: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodString>>;
|
|
4640
4639
|
name: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodString>>;
|
|
4640
|
+
id: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodString>>;
|
|
4641
4641
|
description: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodString>>;
|
|
4642
4642
|
createdAt: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodOptional<z$1.ZodString>>>;
|
|
4643
4643
|
updatedAt: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodOptional<z$1.ZodString>>>;
|
|
@@ -5106,8 +5106,8 @@ declare const ArtifactComponentUpdateSchema: z$1.ZodObject<{
|
|
|
5106
5106
|
in: {};
|
|
5107
5107
|
}>;
|
|
5108
5108
|
declare const ArtifactComponentApiSelectSchema: z$1.ZodObject<{
|
|
5109
|
-
id: z$1.ZodString;
|
|
5110
5109
|
name: z$1.ZodString;
|
|
5110
|
+
id: z$1.ZodString;
|
|
5111
5111
|
description: z$1.ZodString;
|
|
5112
5112
|
createdAt: z$1.ZodString;
|
|
5113
5113
|
updatedAt: z$1.ZodString;
|
|
@@ -5125,8 +5125,8 @@ declare const ArtifactComponentApiInsertSchema: z$1.ZodObject<{
|
|
|
5125
5125
|
in: {};
|
|
5126
5126
|
}>;
|
|
5127
5127
|
declare const ArtifactComponentApiUpdateSchema: z$1.ZodObject<{
|
|
5128
|
-
id: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodString>>;
|
|
5129
5128
|
name: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodString>>;
|
|
5129
|
+
id: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodString>>;
|
|
5130
5130
|
description: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodString>>;
|
|
5131
5131
|
createdAt: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodOptional<z$1.ZodString>>>;
|
|
5132
5132
|
updatedAt: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodOptional<z$1.ZodString>>>;
|
|
@@ -5336,40 +5336,39 @@ declare const ExternalAgentUpdateSchema: z$1.ZodObject<{
|
|
|
5336
5336
|
in: {};
|
|
5337
5337
|
}>;
|
|
5338
5338
|
declare const ExternalAgentApiSelectSchema: z$1.ZodObject<{
|
|
5339
|
-
id: z$1.ZodString;
|
|
5340
5339
|
name: z$1.ZodString;
|
|
5340
|
+
id: z$1.ZodString;
|
|
5341
5341
|
description: z$1.ZodString;
|
|
5342
|
-
credentialReferenceId: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodString>>;
|
|
5343
5342
|
createdAt: z$1.ZodString;
|
|
5344
5343
|
updatedAt: z$1.ZodString;
|
|
5345
|
-
baseUrl: z$1.ZodString;
|
|
5346
5344
|
headers: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodRecord<z$1.ZodString, z$1.ZodString>>>;
|
|
5345
|
+
credentialReferenceId: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodString>>;
|
|
5346
|
+
baseUrl: z$1.ZodString;
|
|
5347
5347
|
}, z$1.core.$strip>;
|
|
5348
5348
|
declare const ExternalAgentApiInsertSchema: z$1.ZodObject<{
|
|
5349
|
-
id: z$1.ZodString;
|
|
5350
5349
|
name: z$1.ZodString;
|
|
5350
|
+
id: z$1.ZodString;
|
|
5351
5351
|
description: z$1.ZodString;
|
|
5352
|
-
credentialReferenceId: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodString>>;
|
|
5353
5352
|
createdAt: z$1.ZodOptional<z$1.ZodString>;
|
|
5354
5353
|
updatedAt: z$1.ZodOptional<z$1.ZodString>;
|
|
5355
|
-
baseUrl: z$1.ZodString;
|
|
5356
5354
|
headers: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodType<Record<string, string>, Record<string, string>, z$1.core.$ZodTypeInternals<Record<string, string>, Record<string, string>>>>>;
|
|
5355
|
+
credentialReferenceId: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodString>>;
|
|
5356
|
+
baseUrl: z$1.ZodString;
|
|
5357
5357
|
}, z$1.core.$strip>;
|
|
5358
5358
|
declare const ExternalAgentApiUpdateSchema: z$1.ZodObject<{
|
|
5359
|
-
id: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodString>>;
|
|
5360
5359
|
name: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodString>>;
|
|
5360
|
+
id: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodString>>;
|
|
5361
5361
|
description: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodString>>;
|
|
5362
|
-
credentialReferenceId: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodOptional<z$1.ZodNullable<z$1.ZodString>>>>;
|
|
5363
5362
|
createdAt: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodOptional<z$1.ZodString>>>;
|
|
5364
5363
|
updatedAt: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodOptional<z$1.ZodString>>>;
|
|
5365
|
-
baseUrl: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodString>>;
|
|
5366
5364
|
headers: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodOptional<z$1.ZodNullable<z$1.ZodType<Record<string, string>, Record<string, string>, z$1.core.$ZodTypeInternals<Record<string, string>, Record<string, string>>>>>>>;
|
|
5365
|
+
credentialReferenceId: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodOptional<z$1.ZodNullable<z$1.ZodString>>>>;
|
|
5366
|
+
baseUrl: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodString>>;
|
|
5367
5367
|
}, z$1.core.$strip>;
|
|
5368
5368
|
declare const AllAgentSchema: z$1.ZodDiscriminatedUnion<[z$1.ZodObject<{
|
|
5369
|
-
id: z$1.ZodString;
|
|
5370
5369
|
name: z$1.ZodString;
|
|
5370
|
+
id: z$1.ZodString;
|
|
5371
5371
|
description: z$1.ZodString;
|
|
5372
|
-
prompt: z$1.ZodString;
|
|
5373
5372
|
createdAt: z$1.ZodString;
|
|
5374
5373
|
updatedAt: z$1.ZodString;
|
|
5375
5374
|
models: z$1.ZodNullable<z$1.ZodType<{
|
|
@@ -5434,17 +5433,18 @@ declare const AllAgentSchema: z$1.ZodDiscriminatedUnion<[z$1.ZodObject<{
|
|
|
5434
5433
|
}, {
|
|
5435
5434
|
stepCountIs?: number;
|
|
5436
5435
|
}>>>;
|
|
5436
|
+
prompt: z$1.ZodString;
|
|
5437
5437
|
conversationHistoryConfig: z$1.ZodNullable<z$1.ZodType<ConversationHistoryConfig, ConversationHistoryConfig, z$1.core.$ZodTypeInternals<ConversationHistoryConfig, ConversationHistoryConfig>>>;
|
|
5438
5438
|
type: z$1.ZodLiteral<"internal">;
|
|
5439
5439
|
}, z$1.core.$strip>, z$1.ZodObject<{
|
|
5440
|
-
id: z$1.ZodString;
|
|
5441
5440
|
name: z$1.ZodString;
|
|
5441
|
+
id: z$1.ZodString;
|
|
5442
5442
|
description: z$1.ZodString;
|
|
5443
|
-
credentialReferenceId: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodString>>;
|
|
5444
5443
|
createdAt: z$1.ZodString;
|
|
5445
5444
|
updatedAt: z$1.ZodString;
|
|
5446
|
-
baseUrl: z$1.ZodString;
|
|
5447
5445
|
headers: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodRecord<z$1.ZodString, z$1.ZodString>>>;
|
|
5446
|
+
credentialReferenceId: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodString>>;
|
|
5447
|
+
baseUrl: z$1.ZodString;
|
|
5448
5448
|
type: z$1.ZodLiteral<"external">;
|
|
5449
5449
|
}, z$1.core.$strip>], "type">;
|
|
5450
5450
|
declare const ApiKeySelectSchema: drizzle_zod.BuildSchema<"select", {
|
|
@@ -5675,23 +5675,23 @@ declare const ApiKeyInsertSchema: z$1.ZodObject<{
|
|
|
5675
5675
|
in: {};
|
|
5676
5676
|
}>;
|
|
5677
5677
|
declare const ApiKeyUpdateSchema: z$1.ZodObject<{
|
|
5678
|
+
updatedAt: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodString>>;
|
|
5678
5679
|
graphId: z$1.ZodOptional<z$1.ZodString>;
|
|
5679
5680
|
lastUsedAt: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodNullable<z$1.ZodString>>>;
|
|
5680
5681
|
expiresAt: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodNullable<z$1.ZodString>>>;
|
|
5681
|
-
updatedAt: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodString>>;
|
|
5682
5682
|
}, {
|
|
5683
5683
|
out: {};
|
|
5684
5684
|
in: {};
|
|
5685
5685
|
}>;
|
|
5686
5686
|
declare const ApiKeyApiSelectSchema: z$1.ZodObject<{
|
|
5687
5687
|
id: z$1.ZodString;
|
|
5688
|
+
createdAt: z$1.ZodString;
|
|
5689
|
+
updatedAt: z$1.ZodString;
|
|
5688
5690
|
graphId: z$1.ZodString;
|
|
5689
5691
|
publicId: z$1.ZodString;
|
|
5690
5692
|
keyPrefix: z$1.ZodString;
|
|
5691
5693
|
lastUsedAt: z$1.ZodNullable<z$1.ZodString>;
|
|
5692
5694
|
expiresAt: z$1.ZodNullable<z$1.ZodString>;
|
|
5693
|
-
createdAt: z$1.ZodString;
|
|
5694
|
-
updatedAt: z$1.ZodString;
|
|
5695
5695
|
}, {
|
|
5696
5696
|
out: {};
|
|
5697
5697
|
in: {};
|
|
@@ -5700,13 +5700,13 @@ declare const ApiKeyApiCreationResponseSchema: z$1.ZodObject<{
|
|
|
5700
5700
|
data: z$1.ZodObject<{
|
|
5701
5701
|
apiKey: z$1.ZodObject<{
|
|
5702
5702
|
id: z$1.ZodString;
|
|
5703
|
+
createdAt: z$1.ZodString;
|
|
5704
|
+
updatedAt: z$1.ZodString;
|
|
5703
5705
|
graphId: z$1.ZodString;
|
|
5704
5706
|
publicId: z$1.ZodString;
|
|
5705
5707
|
keyPrefix: z$1.ZodString;
|
|
5706
5708
|
lastUsedAt: z$1.ZodNullable<z$1.ZodString>;
|
|
5707
5709
|
expiresAt: z$1.ZodNullable<z$1.ZodString>;
|
|
5708
|
-
createdAt: z$1.ZodString;
|
|
5709
|
-
updatedAt: z$1.ZodString;
|
|
5710
5710
|
}, {
|
|
5711
5711
|
out: {};
|
|
5712
5712
|
in: {};
|
|
@@ -5715,19 +5715,19 @@ declare const ApiKeyApiCreationResponseSchema: z$1.ZodObject<{
|
|
|
5715
5715
|
}, z$1.core.$strip>;
|
|
5716
5716
|
}, z$1.core.$strip>;
|
|
5717
5717
|
declare const ApiKeyApiInsertSchema: z$1.ZodObject<{
|
|
5718
|
-
graphId: z$1.ZodString;
|
|
5719
|
-
expiresAt: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodString>>;
|
|
5720
5718
|
createdAt: z$1.ZodOptional<z$1.ZodString>;
|
|
5721
5719
|
updatedAt: z$1.ZodOptional<z$1.ZodString>;
|
|
5720
|
+
graphId: z$1.ZodString;
|
|
5721
|
+
expiresAt: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodString>>;
|
|
5722
5722
|
}, {
|
|
5723
5723
|
out: {};
|
|
5724
5724
|
in: {};
|
|
5725
5725
|
}>;
|
|
5726
5726
|
declare const ApiKeyApiUpdateSchema: z$1.ZodObject<{
|
|
5727
|
+
updatedAt: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodString>>;
|
|
5727
5728
|
graphId: z$1.ZodOptional<z$1.ZodString>;
|
|
5728
5729
|
lastUsedAt: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodNullable<z$1.ZodString>>>;
|
|
5729
5730
|
expiresAt: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodNullable<z$1.ZodString>>>;
|
|
5730
|
-
updatedAt: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodString>>;
|
|
5731
5731
|
}, {
|
|
5732
5732
|
out: {};
|
|
5733
5733
|
in: {};
|
|
@@ -5831,8 +5831,8 @@ declare const McpToolSchema: z$1.ZodObject<{
|
|
|
5831
5831
|
in: {};
|
|
5832
5832
|
}>;
|
|
5833
5833
|
declare const MCPToolConfigSchema: z$1.ZodObject<{
|
|
5834
|
-
id: z$1.ZodString;
|
|
5835
5834
|
name: z$1.ZodString;
|
|
5835
|
+
id: z$1.ZodString;
|
|
5836
5836
|
headers: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodType<Record<string, string>, Record<string, string>, z$1.core.$ZodTypeInternals<Record<string, string>, Record<string, string>>>>>;
|
|
5837
5837
|
capabilities: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodType<ToolServerCapabilities, ToolServerCapabilities, z$1.core.$ZodTypeInternals<ToolServerCapabilities, ToolServerCapabilities>>>>;
|
|
5838
5838
|
imageUrl: z$1.ZodOptional<z$1.ZodString>;
|
|
@@ -5905,8 +5905,13 @@ declare const ToolUpdateSchema: z$1.ZodObject<{
|
|
|
5905
5905
|
in: {};
|
|
5906
5906
|
}>;
|
|
5907
5907
|
declare const ToolApiSelectSchema: z$1.ZodObject<{
|
|
5908
|
-
id: z$1.ZodString;
|
|
5909
5908
|
name: z$1.ZodString;
|
|
5909
|
+
id: z$1.ZodString;
|
|
5910
|
+
createdAt: z$1.ZodString;
|
|
5911
|
+
updatedAt: z$1.ZodString;
|
|
5912
|
+
headers: z$1.ZodNullable<z$1.ZodType<Record<string, string>, Record<string, string>, z$1.core.$ZodTypeInternals<Record<string, string>, Record<string, string>>>>;
|
|
5913
|
+
status: z$1.ZodString;
|
|
5914
|
+
capabilities: z$1.ZodNullable<z$1.ZodType<ToolServerCapabilities, ToolServerCapabilities, z$1.core.$ZodTypeInternals<ToolServerCapabilities, ToolServerCapabilities>>>;
|
|
5910
5915
|
config: z$1.ZodType<{
|
|
5911
5916
|
type: "mcp";
|
|
5912
5917
|
mcp: ToolMcpConfig;
|
|
@@ -5921,11 +5926,6 @@ declare const ToolApiSelectSchema: z$1.ZodObject<{
|
|
|
5921
5926
|
mcp: ToolMcpConfig;
|
|
5922
5927
|
}>>;
|
|
5923
5928
|
credentialReferenceId: z$1.ZodNullable<z$1.ZodString>;
|
|
5924
|
-
createdAt: z$1.ZodString;
|
|
5925
|
-
updatedAt: z$1.ZodString;
|
|
5926
|
-
headers: z$1.ZodNullable<z$1.ZodType<Record<string, string>, Record<string, string>, z$1.core.$ZodTypeInternals<Record<string, string>, Record<string, string>>>>;
|
|
5927
|
-
status: z$1.ZodString;
|
|
5928
|
-
capabilities: z$1.ZodNullable<z$1.ZodType<ToolServerCapabilities, ToolServerCapabilities, z$1.core.$ZodTypeInternals<ToolServerCapabilities, ToolServerCapabilities>>>;
|
|
5929
5929
|
imageUrl: z$1.ZodNullable<z$1.ZodString>;
|
|
5930
5930
|
lastHealthCheck: z$1.ZodNullable<z$1.ZodString>;
|
|
5931
5931
|
lastError: z$1.ZodNullable<z$1.ZodString>;
|
|
@@ -5933,8 +5933,13 @@ declare const ToolApiSelectSchema: z$1.ZodObject<{
|
|
|
5933
5933
|
lastToolsSync: z$1.ZodNullable<z$1.ZodString>;
|
|
5934
5934
|
}, z$1.core.$strip>;
|
|
5935
5935
|
declare const ToolApiInsertSchema: z$1.ZodObject<{
|
|
5936
|
-
id: z$1.ZodString;
|
|
5937
5936
|
name: z$1.ZodString;
|
|
5937
|
+
id: z$1.ZodString;
|
|
5938
|
+
createdAt: z$1.ZodOptional<z$1.ZodString>;
|
|
5939
|
+
updatedAt: z$1.ZodOptional<z$1.ZodString>;
|
|
5940
|
+
headers: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodType<Record<string, string>, Record<string, string>, z$1.core.$ZodTypeInternals<Record<string, string>, Record<string, string>>>>>;
|
|
5941
|
+
status: z$1.ZodOptional<z$1.ZodString>;
|
|
5942
|
+
capabilities: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodType<ToolServerCapabilities, ToolServerCapabilities, z$1.core.$ZodTypeInternals<ToolServerCapabilities, ToolServerCapabilities>>>>;
|
|
5938
5943
|
config: z$1.ZodType<{
|
|
5939
5944
|
type: "mcp";
|
|
5940
5945
|
mcp: ToolMcpConfig;
|
|
@@ -5949,11 +5954,6 @@ declare const ToolApiInsertSchema: z$1.ZodObject<{
|
|
|
5949
5954
|
mcp: ToolMcpConfig;
|
|
5950
5955
|
}>>;
|
|
5951
5956
|
credentialReferenceId: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodString>>;
|
|
5952
|
-
createdAt: z$1.ZodOptional<z$1.ZodString>;
|
|
5953
|
-
updatedAt: z$1.ZodOptional<z$1.ZodString>;
|
|
5954
|
-
headers: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodType<Record<string, string>, Record<string, string>, z$1.core.$ZodTypeInternals<Record<string, string>, Record<string, string>>>>>;
|
|
5955
|
-
status: z$1.ZodOptional<z$1.ZodString>;
|
|
5956
|
-
capabilities: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodType<ToolServerCapabilities, ToolServerCapabilities, z$1.core.$ZodTypeInternals<ToolServerCapabilities, ToolServerCapabilities>>>>;
|
|
5957
5957
|
imageUrl: z$1.ZodOptional<z$1.ZodString>;
|
|
5958
5958
|
lastHealthCheck: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodString>>;
|
|
5959
5959
|
lastError: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodString>>;
|
|
@@ -5961,8 +5961,13 @@ declare const ToolApiInsertSchema: z$1.ZodObject<{
|
|
|
5961
5961
|
lastToolsSync: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodString>>;
|
|
5962
5962
|
}, z$1.core.$strip>;
|
|
5963
5963
|
declare const ToolApiUpdateSchema: z$1.ZodObject<{
|
|
5964
|
-
id: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodString>>;
|
|
5965
5964
|
name: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodString>>;
|
|
5965
|
+
id: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodString>>;
|
|
5966
|
+
createdAt: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodOptional<z$1.ZodString>>>;
|
|
5967
|
+
updatedAt: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodOptional<z$1.ZodString>>>;
|
|
5968
|
+
headers: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodOptional<z$1.ZodNullable<z$1.ZodType<Record<string, string>, Record<string, string>, z$1.core.$ZodTypeInternals<Record<string, string>, Record<string, string>>>>>>>;
|
|
5969
|
+
status: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodOptional<z$1.ZodString>>>;
|
|
5970
|
+
capabilities: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodOptional<z$1.ZodNullable<z$1.ZodType<ToolServerCapabilities, ToolServerCapabilities, z$1.core.$ZodTypeInternals<ToolServerCapabilities, ToolServerCapabilities>>>>>>;
|
|
5966
5971
|
config: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodType<{
|
|
5967
5972
|
type: "mcp";
|
|
5968
5973
|
mcp: ToolMcpConfig;
|
|
@@ -5977,11 +5982,6 @@ declare const ToolApiUpdateSchema: z$1.ZodObject<{
|
|
|
5977
5982
|
mcp: ToolMcpConfig;
|
|
5978
5983
|
}>>>>;
|
|
5979
5984
|
credentialReferenceId: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodOptional<z$1.ZodNullable<z$1.ZodString>>>>;
|
|
5980
|
-
createdAt: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodOptional<z$1.ZodString>>>;
|
|
5981
|
-
updatedAt: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodOptional<z$1.ZodString>>>;
|
|
5982
|
-
headers: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodOptional<z$1.ZodNullable<z$1.ZodType<Record<string, string>, Record<string, string>, z$1.core.$ZodTypeInternals<Record<string, string>, Record<string, string>>>>>>>;
|
|
5983
|
-
status: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodOptional<z$1.ZodString>>>;
|
|
5984
|
-
capabilities: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodOptional<z$1.ZodNullable<z$1.ZodType<ToolServerCapabilities, ToolServerCapabilities, z$1.core.$ZodTypeInternals<ToolServerCapabilities, ToolServerCapabilities>>>>>>;
|
|
5985
5985
|
imageUrl: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodOptional<z$1.ZodString>>>;
|
|
5986
5986
|
lastHealthCheck: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodOptional<z$1.ZodNullable<z$1.ZodString>>>>;
|
|
5987
5987
|
lastError: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodOptional<z$1.ZodNullable<z$1.ZodString>>>>;
|
|
@@ -6051,10 +6051,10 @@ declare const ContextConfigSelectSchema: z$1.ZodObject<{
|
|
|
6051
6051
|
in: {};
|
|
6052
6052
|
}>;
|
|
6053
6053
|
declare const ContextConfigInsertSchema: z$1.ZodObject<{
|
|
6054
|
+
name: z$1.ZodString;
|
|
6054
6055
|
tenantId: z$1.ZodString;
|
|
6055
6056
|
projectId: z$1.ZodString;
|
|
6056
6057
|
id: z$1.ZodString;
|
|
6057
|
-
name: z$1.ZodString;
|
|
6058
6058
|
description: z$1.ZodString;
|
|
6059
6059
|
requestContextSchema: z$1.ZodOptional<z$1.ZodUnknown>;
|
|
6060
6060
|
contextVariables: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodType<Record<string, ContextFetchDefinition>, Record<string, ContextFetchDefinition>, z$1.core.$ZodTypeInternals<Record<string, ContextFetchDefinition>, Record<string, ContextFetchDefinition>>>>>;
|
|
@@ -6063,10 +6063,10 @@ declare const ContextConfigInsertSchema: z$1.ZodObject<{
|
|
|
6063
6063
|
in: {};
|
|
6064
6064
|
}>;
|
|
6065
6065
|
declare const ContextConfigUpdateSchema: z$1.ZodObject<{
|
|
6066
|
+
name: z$1.ZodOptional<z$1.ZodString>;
|
|
6066
6067
|
tenantId: z$1.ZodOptional<z$1.ZodString>;
|
|
6067
6068
|
projectId: z$1.ZodOptional<z$1.ZodString>;
|
|
6068
6069
|
id: z$1.ZodOptional<z$1.ZodString>;
|
|
6069
|
-
name: z$1.ZodOptional<z$1.ZodString>;
|
|
6070
6070
|
description: z$1.ZodOptional<z$1.ZodString>;
|
|
6071
6071
|
requestContextSchema: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodUnknown>>;
|
|
6072
6072
|
contextVariables: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodNullable<z$1.ZodType<Record<string, ContextFetchDefinition>, Record<string, ContextFetchDefinition>, z$1.core.$ZodTypeInternals<Record<string, ContextFetchDefinition>, Record<string, ContextFetchDefinition>>>>>>;
|
|
@@ -6075,24 +6075,24 @@ declare const ContextConfigUpdateSchema: z$1.ZodObject<{
|
|
|
6075
6075
|
in: {};
|
|
6076
6076
|
}>;
|
|
6077
6077
|
declare const ContextConfigApiSelectSchema: z$1.ZodObject<{
|
|
6078
|
-
id: z$1.ZodString;
|
|
6079
6078
|
name: z$1.ZodString;
|
|
6079
|
+
id: z$1.ZodString;
|
|
6080
6080
|
description: z$1.ZodString;
|
|
6081
|
-
createdAt: z$1.ZodString;
|
|
6082
|
-
updatedAt: z$1.ZodString;
|
|
6083
6081
|
requestContextSchema: z$1.ZodOptional<z$1.ZodUnknown>;
|
|
6084
6082
|
contextVariables: z$1.ZodNullable<z$1.ZodType<Record<string, ContextFetchDefinition>, Record<string, ContextFetchDefinition>, z$1.core.$ZodTypeInternals<Record<string, ContextFetchDefinition>, Record<string, ContextFetchDefinition>>>>;
|
|
6083
|
+
createdAt: z$1.ZodString;
|
|
6084
|
+
updatedAt: z$1.ZodString;
|
|
6085
6085
|
}, z$1.core.$strip>;
|
|
6086
6086
|
declare const ContextConfigApiInsertSchema: z$1.ZodObject<{
|
|
6087
|
-
id: z$1.ZodString;
|
|
6088
6087
|
name: z$1.ZodString;
|
|
6088
|
+
id: z$1.ZodString;
|
|
6089
6089
|
description: z$1.ZodString;
|
|
6090
6090
|
requestContextSchema: z$1.ZodOptional<z$1.ZodUnknown>;
|
|
6091
6091
|
contextVariables: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodType<Record<string, ContextFetchDefinition>, Record<string, ContextFetchDefinition>, z$1.core.$ZodTypeInternals<Record<string, ContextFetchDefinition>, Record<string, ContextFetchDefinition>>>>>;
|
|
6092
6092
|
}, z$1.core.$strip>;
|
|
6093
6093
|
declare const ContextConfigApiUpdateSchema: z$1.ZodObject<{
|
|
6094
|
-
id: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodString>>;
|
|
6095
6094
|
name: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodString>>;
|
|
6095
|
+
id: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodString>>;
|
|
6096
6096
|
description: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodString>>;
|
|
6097
6097
|
requestContextSchema: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodOptional<z$1.ZodUnknown>>>;
|
|
6098
6098
|
contextVariables: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodOptional<z$1.ZodNullable<z$1.ZodType<Record<string, ContextFetchDefinition>, Record<string, ContextFetchDefinition>, z$1.core.$ZodTypeInternals<Record<string, ContextFetchDefinition>, Record<string, ContextFetchDefinition>>>>>>>;
|
|
@@ -6974,13 +6974,13 @@ declare const LedgerArtifactUpdateSchema: z$1.ZodObject<{
|
|
|
6974
6974
|
in: {};
|
|
6975
6975
|
}>;
|
|
6976
6976
|
declare const LedgerArtifactApiSelectSchema: z$1.ZodObject<{
|
|
6977
|
-
id: z$1.ZodString;
|
|
6978
6977
|
type: z$1.ZodString;
|
|
6979
6978
|
name: z$1.ZodNullable<z$1.ZodString>;
|
|
6979
|
+
metadata: z$1.ZodNullable<z$1.ZodType<drizzle_zod.Json, unknown, z$1.core.$ZodTypeInternals<drizzle_zod.Json, unknown>>>;
|
|
6980
|
+
id: z$1.ZodString;
|
|
6980
6981
|
description: z$1.ZodNullable<z$1.ZodString>;
|
|
6981
6982
|
createdAt: z$1.ZodString;
|
|
6982
6983
|
updatedAt: z$1.ZodString;
|
|
6983
|
-
metadata: z$1.ZodNullable<z$1.ZodType<drizzle_zod.Json, unknown, z$1.core.$ZodTypeInternals<drizzle_zod.Json, unknown>>>;
|
|
6984
6984
|
contextId: z$1.ZodString;
|
|
6985
6985
|
visibility: z$1.ZodNullable<z$1.ZodString>;
|
|
6986
6986
|
taskId: z$1.ZodNullable<z$1.ZodString>;
|
|
@@ -6991,13 +6991,13 @@ declare const LedgerArtifactApiSelectSchema: z$1.ZodObject<{
|
|
|
6991
6991
|
derivedFrom: z$1.ZodNullable<z$1.ZodString>;
|
|
6992
6992
|
}, z$1.core.$strip>;
|
|
6993
6993
|
declare const LedgerArtifactApiInsertSchema: z$1.ZodObject<{
|
|
6994
|
-
id: z$1.ZodString;
|
|
6995
6994
|
type: z$1.ZodOptional<z$1.ZodString>;
|
|
6996
6995
|
name: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodString>>;
|
|
6996
|
+
metadata: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodType<drizzle_zod.Json, unknown, z$1.core.$ZodTypeInternals<drizzle_zod.Json, unknown>>>>;
|
|
6997
|
+
id: z$1.ZodString;
|
|
6997
6998
|
description: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodString>>;
|
|
6998
6999
|
createdAt: z$1.ZodOptional<z$1.ZodString>;
|
|
6999
7000
|
updatedAt: z$1.ZodOptional<z$1.ZodString>;
|
|
7000
|
-
metadata: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodType<drizzle_zod.Json, unknown, z$1.core.$ZodTypeInternals<drizzle_zod.Json, unknown>>>>;
|
|
7001
7001
|
contextId: z$1.ZodString;
|
|
7002
7002
|
visibility: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodString>>;
|
|
7003
7003
|
taskId: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodString>>;
|
|
@@ -7008,13 +7008,13 @@ declare const LedgerArtifactApiInsertSchema: z$1.ZodObject<{
|
|
|
7008
7008
|
derivedFrom: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodString>>;
|
|
7009
7009
|
}, z$1.core.$strip>;
|
|
7010
7010
|
declare const LedgerArtifactApiUpdateSchema: z$1.ZodObject<{
|
|
7011
|
-
id: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodString>>;
|
|
7012
7011
|
type: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodOptional<z$1.ZodString>>>;
|
|
7013
7012
|
name: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodOptional<z$1.ZodNullable<z$1.ZodString>>>>;
|
|
7013
|
+
metadata: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodOptional<z$1.ZodNullable<z$1.ZodType<drizzle_zod.Json, unknown, z$1.core.$ZodTypeInternals<drizzle_zod.Json, unknown>>>>>>;
|
|
7014
|
+
id: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodString>>;
|
|
7014
7015
|
description: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodOptional<z$1.ZodNullable<z$1.ZodString>>>>;
|
|
7015
7016
|
createdAt: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodOptional<z$1.ZodString>>>;
|
|
7016
7017
|
updatedAt: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodOptional<z$1.ZodString>>>;
|
|
7017
|
-
metadata: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodOptional<z$1.ZodNullable<z$1.ZodType<drizzle_zod.Json, unknown, z$1.core.$ZodTypeInternals<drizzle_zod.Json, unknown>>>>>>;
|
|
7018
7018
|
contextId: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodString>>;
|
|
7019
7019
|
visibility: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodOptional<z$1.ZodNullable<z$1.ZodString>>>>;
|
|
7020
7020
|
taskId: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodOptional<z$1.ZodNullable<z$1.ZodString>>>>;
|
|
@@ -7049,10 +7049,9 @@ declare const StatusUpdateSchema: z$1.ZodObject<{
|
|
|
7049
7049
|
}, z$1.core.$strip>>>;
|
|
7050
7050
|
}, z$1.core.$strip>;
|
|
7051
7051
|
declare const FullGraphAgentInsertSchema: z$1.ZodObject<{
|
|
7052
|
-
id: z$1.ZodString;
|
|
7053
7052
|
name: z$1.ZodString;
|
|
7053
|
+
id: z$1.ZodString;
|
|
7054
7054
|
description: z$1.ZodString;
|
|
7055
|
-
prompt: z$1.ZodString;
|
|
7056
7055
|
createdAt: z$1.ZodOptional<z$1.ZodString>;
|
|
7057
7056
|
updatedAt: z$1.ZodOptional<z$1.ZodString>;
|
|
7058
7057
|
models: z$1.ZodOptional<z$1.ZodObject<{
|
|
@@ -7078,6 +7077,7 @@ declare const FullGraphAgentInsertSchema: z$1.ZodObject<{
|
|
|
7078
7077
|
}, {
|
|
7079
7078
|
stepCountIs?: number;
|
|
7080
7079
|
}>>>>;
|
|
7080
|
+
prompt: z$1.ZodString;
|
|
7081
7081
|
conversationHistoryConfig: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodType<ConversationHistoryConfig, ConversationHistoryConfig, z$1.core.$ZodTypeInternals<ConversationHistoryConfig, ConversationHistoryConfig>>>>;
|
|
7082
7082
|
tools: z$1.ZodArray<z$1.ZodString>;
|
|
7083
7083
|
selectedTools: z$1.ZodOptional<z$1.ZodRecord<z$1.ZodString, z$1.ZodArray<z$1.ZodString>>>;
|
|
@@ -7091,14 +7091,13 @@ declare const FullGraphDefinitionSchema: z$1.ZodObject<{
|
|
|
7091
7091
|
description: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodString>>;
|
|
7092
7092
|
createdAt: z$1.ZodOptional<z$1.ZodString>;
|
|
7093
7093
|
updatedAt: z$1.ZodOptional<z$1.ZodString>;
|
|
7094
|
-
defaultAgentId: z$1.ZodString;
|
|
7095
7094
|
contextConfigId: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodString>>;
|
|
7095
|
+
defaultAgentId: z$1.ZodString;
|
|
7096
7096
|
id: z$1.ZodOptional<z$1.ZodString>;
|
|
7097
7097
|
agents: z$1.ZodRecord<z$1.ZodString, z$1.ZodUnion<readonly [z$1.ZodObject<{
|
|
7098
|
-
id: z$1.ZodString;
|
|
7099
7098
|
name: z$1.ZodString;
|
|
7099
|
+
id: z$1.ZodString;
|
|
7100
7100
|
description: z$1.ZodString;
|
|
7101
|
-
prompt: z$1.ZodString;
|
|
7102
7101
|
createdAt: z$1.ZodOptional<z$1.ZodString>;
|
|
7103
7102
|
updatedAt: z$1.ZodOptional<z$1.ZodString>;
|
|
7104
7103
|
models: z$1.ZodOptional<z$1.ZodObject<{
|
|
@@ -7124,6 +7123,7 @@ declare const FullGraphDefinitionSchema: z$1.ZodObject<{
|
|
|
7124
7123
|
}, {
|
|
7125
7124
|
stepCountIs?: number;
|
|
7126
7125
|
}>>>>;
|
|
7126
|
+
prompt: z$1.ZodString;
|
|
7127
7127
|
conversationHistoryConfig: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodType<ConversationHistoryConfig, ConversationHistoryConfig, z$1.core.$ZodTypeInternals<ConversationHistoryConfig, ConversationHistoryConfig>>>>;
|
|
7128
7128
|
tools: z$1.ZodArray<z$1.ZodString>;
|
|
7129
7129
|
selectedTools: z$1.ZodOptional<z$1.ZodRecord<z$1.ZodString, z$1.ZodArray<z$1.ZodString>>>;
|
|
@@ -7132,18 +7132,23 @@ declare const FullGraphDefinitionSchema: z$1.ZodObject<{
|
|
|
7132
7132
|
canTransferTo: z$1.ZodOptional<z$1.ZodArray<z$1.ZodString>>;
|
|
7133
7133
|
canDelegateTo: z$1.ZodOptional<z$1.ZodArray<z$1.ZodString>>;
|
|
7134
7134
|
}, z$1.core.$strip>, z$1.ZodObject<{
|
|
7135
|
-
id: z$1.ZodString;
|
|
7136
7135
|
name: z$1.ZodString;
|
|
7136
|
+
id: z$1.ZodString;
|
|
7137
7137
|
description: z$1.ZodString;
|
|
7138
|
-
credentialReferenceId: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodString>>;
|
|
7139
7138
|
createdAt: z$1.ZodOptional<z$1.ZodString>;
|
|
7140
7139
|
updatedAt: z$1.ZodOptional<z$1.ZodString>;
|
|
7141
|
-
baseUrl: z$1.ZodString;
|
|
7142
7140
|
headers: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodType<Record<string, string>, Record<string, string>, z$1.core.$ZodTypeInternals<Record<string, string>, Record<string, string>>>>>;
|
|
7141
|
+
credentialReferenceId: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodString>>;
|
|
7142
|
+
baseUrl: z$1.ZodString;
|
|
7143
7143
|
}, z$1.core.$strip>]>>;
|
|
7144
7144
|
tools: z$1.ZodRecord<z$1.ZodString, z$1.ZodObject<{
|
|
7145
|
-
id: z$1.ZodString;
|
|
7146
7145
|
name: z$1.ZodString;
|
|
7146
|
+
id: z$1.ZodString;
|
|
7147
|
+
createdAt: z$1.ZodOptional<z$1.ZodString>;
|
|
7148
|
+
updatedAt: z$1.ZodOptional<z$1.ZodString>;
|
|
7149
|
+
headers: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodType<Record<string, string>, Record<string, string>, z$1.core.$ZodTypeInternals<Record<string, string>, Record<string, string>>>>>;
|
|
7150
|
+
status: z$1.ZodOptional<z$1.ZodString>;
|
|
7151
|
+
capabilities: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodType<ToolServerCapabilities, ToolServerCapabilities, z$1.core.$ZodTypeInternals<ToolServerCapabilities, ToolServerCapabilities>>>>;
|
|
7147
7152
|
config: z$1.ZodType<{
|
|
7148
7153
|
type: "mcp";
|
|
7149
7154
|
mcp: ToolMcpConfig;
|
|
@@ -7158,11 +7163,6 @@ declare const FullGraphDefinitionSchema: z$1.ZodObject<{
|
|
|
7158
7163
|
mcp: ToolMcpConfig;
|
|
7159
7164
|
}>>;
|
|
7160
7165
|
credentialReferenceId: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodString>>;
|
|
7161
|
-
createdAt: z$1.ZodOptional<z$1.ZodString>;
|
|
7162
|
-
updatedAt: z$1.ZodOptional<z$1.ZodString>;
|
|
7163
|
-
headers: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodType<Record<string, string>, Record<string, string>, z$1.core.$ZodTypeInternals<Record<string, string>, Record<string, string>>>>>;
|
|
7164
|
-
status: z$1.ZodOptional<z$1.ZodString>;
|
|
7165
|
-
capabilities: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodType<ToolServerCapabilities, ToolServerCapabilities, z$1.core.$ZodTypeInternals<ToolServerCapabilities, ToolServerCapabilities>>>>;
|
|
7166
7166
|
imageUrl: z$1.ZodOptional<z$1.ZodString>;
|
|
7167
7167
|
lastHealthCheck: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodString>>;
|
|
7168
7168
|
lastError: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodString>>;
|
|
@@ -7180,8 +7180,8 @@ declare const FullGraphDefinitionSchema: z$1.ZodObject<{
|
|
|
7180
7180
|
}>;
|
|
7181
7181
|
}, z$1.core.$strip>>>;
|
|
7182
7182
|
dataComponents: z$1.ZodOptional<z$1.ZodRecord<z$1.ZodString, z$1.ZodObject<{
|
|
7183
|
-
id: z$1.ZodString;
|
|
7184
7183
|
name: z$1.ZodString;
|
|
7184
|
+
id: z$1.ZodString;
|
|
7185
7185
|
description: z$1.ZodString;
|
|
7186
7186
|
createdAt: z$1.ZodOptional<z$1.ZodString>;
|
|
7187
7187
|
updatedAt: z$1.ZodOptional<z$1.ZodString>;
|
|
@@ -7198,8 +7198,8 @@ declare const FullGraphDefinitionSchema: z$1.ZodObject<{
|
|
|
7198
7198
|
in: {};
|
|
7199
7199
|
}>>>;
|
|
7200
7200
|
contextConfig: z$1.ZodOptional<z$1.ZodObject<{
|
|
7201
|
-
id: z$1.ZodString;
|
|
7202
7201
|
name: z$1.ZodString;
|
|
7202
|
+
id: z$1.ZodString;
|
|
7203
7203
|
description: z$1.ZodString;
|
|
7204
7204
|
requestContextSchema: z$1.ZodOptional<z$1.ZodUnknown>;
|
|
7205
7205
|
contextVariables: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodType<Record<string, ContextFetchDefinition>, Record<string, ContextFetchDefinition>, z$1.core.$ZodTypeInternals<Record<string, ContextFetchDefinition>, Record<string, ContextFetchDefinition>>>>>;
|
|
@@ -7455,9 +7455,9 @@ declare const ProjectSelectSchema: drizzle_zod.BuildSchema<"select", {
|
|
|
7455
7455
|
}>;
|
|
7456
7456
|
}, undefined, undefined>;
|
|
7457
7457
|
declare const ProjectInsertSchema: z$1.ZodObject<{
|
|
7458
|
+
name: z$1.ZodString;
|
|
7458
7459
|
tenantId: z$1.ZodString;
|
|
7459
7460
|
id: z$1.ZodString;
|
|
7460
|
-
name: z$1.ZodString;
|
|
7461
7461
|
description: z$1.ZodString;
|
|
7462
7462
|
models: z$1.ZodOptional<z$1.ZodObject<{
|
|
7463
7463
|
base: z$1.ZodObject<{
|
|
@@ -7491,9 +7491,9 @@ declare const ProjectInsertSchema: z$1.ZodObject<{
|
|
|
7491
7491
|
in: {};
|
|
7492
7492
|
}>;
|
|
7493
7493
|
declare const ProjectUpdateSchema: z$1.ZodObject<{
|
|
7494
|
+
name: z$1.ZodOptional<z$1.ZodString>;
|
|
7494
7495
|
tenantId: z$1.ZodOptional<z$1.ZodString>;
|
|
7495
7496
|
id: z$1.ZodOptional<z$1.ZodString>;
|
|
7496
|
-
name: z$1.ZodOptional<z$1.ZodString>;
|
|
7497
7497
|
description: z$1.ZodOptional<z$1.ZodString>;
|
|
7498
7498
|
models: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodObject<{
|
|
7499
7499
|
base: z$1.ZodObject<{
|
|
@@ -7527,8 +7527,8 @@ declare const ProjectUpdateSchema: z$1.ZodObject<{
|
|
|
7527
7527
|
in: {};
|
|
7528
7528
|
}>;
|
|
7529
7529
|
declare const ProjectApiSelectSchema: z$1.ZodObject<{
|
|
7530
|
-
id: z$1.ZodString;
|
|
7531
7530
|
name: z$1.ZodString;
|
|
7531
|
+
id: z$1.ZodString;
|
|
7532
7532
|
description: z$1.ZodString;
|
|
7533
7533
|
createdAt: z$1.ZodString;
|
|
7534
7534
|
updatedAt: z$1.ZodString;
|
|
@@ -7603,8 +7603,8 @@ declare const ProjectApiSelectSchema: z$1.ZodObject<{
|
|
|
7603
7603
|
in: {};
|
|
7604
7604
|
}>;
|
|
7605
7605
|
declare const ProjectApiInsertSchema: z$1.ZodObject<{
|
|
7606
|
-
id: z$1.ZodString;
|
|
7607
7606
|
name: z$1.ZodString;
|
|
7607
|
+
id: z$1.ZodString;
|
|
7608
7608
|
description: z$1.ZodString;
|
|
7609
7609
|
models: z$1.ZodOptional<z$1.ZodObject<{
|
|
7610
7610
|
base: z$1.ZodObject<{
|
|
@@ -7638,8 +7638,8 @@ declare const ProjectApiInsertSchema: z$1.ZodObject<{
|
|
|
7638
7638
|
in: {};
|
|
7639
7639
|
}>;
|
|
7640
7640
|
declare const ProjectApiUpdateSchema: z$1.ZodObject<{
|
|
7641
|
-
id: z$1.ZodOptional<z$1.ZodString>;
|
|
7642
7641
|
name: z$1.ZodOptional<z$1.ZodString>;
|
|
7642
|
+
id: z$1.ZodOptional<z$1.ZodString>;
|
|
7643
7643
|
description: z$1.ZodOptional<z$1.ZodString>;
|
|
7644
7644
|
models: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodObject<{
|
|
7645
7645
|
base: z$1.ZodObject<{
|