@inkeep/agents-core 0.0.0-dev-20250911063109 → 0.0.0-dev-20250911071658
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/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/index.d.cts +124 -124
- package/dist/index.d.ts +124 -124
- package/dist/{schema-Dz_UqY76.d.cts → schema-DDI2Py7i.d.cts} +1 -1
- package/dist/{schema-CGaPaV-v.d.ts → schema-xZJcE9v-.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/package.json +3 -2
- package/dist/{entities-CI0T2xx-.d.cts → entities-Cc3_mgG5.d.cts} +114 -114
- package/dist/{entities-CI0T2xx-.d.ts → entities-Cc3_mgG5.d.ts} +114 -114
|
@@ -956,9 +956,10 @@ declare const AgentUpdateSchema: z$1.ZodObject<{
|
|
|
956
956
|
in: {};
|
|
957
957
|
}>;
|
|
958
958
|
declare const AgentApiSelectSchema: z$1.ZodObject<{
|
|
959
|
-
name: z$1.ZodString;
|
|
960
959
|
id: z$1.ZodString;
|
|
960
|
+
name: z$1.ZodString;
|
|
961
961
|
description: z$1.ZodString;
|
|
962
|
+
prompt: z$1.ZodString;
|
|
962
963
|
createdAt: z$1.ZodString;
|
|
963
964
|
updatedAt: z$1.ZodString;
|
|
964
965
|
models: z$1.ZodNullable<z$1.ZodType<{
|
|
@@ -1023,13 +1024,13 @@ declare const AgentApiSelectSchema: z$1.ZodObject<{
|
|
|
1023
1024
|
}, {
|
|
1024
1025
|
stepCountIs?: number;
|
|
1025
1026
|
}>>>;
|
|
1026
|
-
prompt: z$1.ZodString;
|
|
1027
1027
|
conversationHistoryConfig: z$1.ZodNullable<z$1.ZodType<ConversationHistoryConfig, ConversationHistoryConfig, z$1.core.$ZodTypeInternals<ConversationHistoryConfig, ConversationHistoryConfig>>>;
|
|
1028
1028
|
}, z$1.core.$strip>;
|
|
1029
1029
|
declare const AgentApiInsertSchema: z$1.ZodObject<{
|
|
1030
|
-
name: z$1.ZodString;
|
|
1031
1030
|
id: z$1.ZodString;
|
|
1031
|
+
name: z$1.ZodString;
|
|
1032
1032
|
description: z$1.ZodString;
|
|
1033
|
+
prompt: z$1.ZodString;
|
|
1033
1034
|
createdAt: z$1.ZodOptional<z$1.ZodString>;
|
|
1034
1035
|
updatedAt: z$1.ZodOptional<z$1.ZodString>;
|
|
1035
1036
|
models: z$1.ZodOptional<z$1.ZodObject<{
|
|
@@ -1055,13 +1056,13 @@ declare const AgentApiInsertSchema: z$1.ZodObject<{
|
|
|
1055
1056
|
}, {
|
|
1056
1057
|
stepCountIs?: number;
|
|
1057
1058
|
}>>>>;
|
|
1058
|
-
prompt: z$1.ZodString;
|
|
1059
1059
|
conversationHistoryConfig: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodType<ConversationHistoryConfig, ConversationHistoryConfig, z$1.core.$ZodTypeInternals<ConversationHistoryConfig, ConversationHistoryConfig>>>>;
|
|
1060
1060
|
}, z$1.core.$strip>;
|
|
1061
1061
|
declare const AgentApiUpdateSchema: z$1.ZodObject<{
|
|
1062
|
-
name: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodString>>;
|
|
1063
1062
|
id: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodString>>;
|
|
1063
|
+
name: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodString>>;
|
|
1064
1064
|
description: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodString>>;
|
|
1065
|
+
prompt: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodString>>;
|
|
1065
1066
|
createdAt: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodOptional<z$1.ZodString>>>;
|
|
1066
1067
|
updatedAt: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodOptional<z$1.ZodString>>>;
|
|
1067
1068
|
models: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodOptional<z$1.ZodObject<{
|
|
@@ -1087,7 +1088,6 @@ declare const AgentApiUpdateSchema: z$1.ZodObject<{
|
|
|
1087
1088
|
}, {
|
|
1088
1089
|
stepCountIs?: number;
|
|
1089
1090
|
}>>>>>>;
|
|
1090
|
-
prompt: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodString>>;
|
|
1091
1091
|
conversationHistoryConfig: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodOptional<z$1.ZodNullable<z$1.ZodType<ConversationHistoryConfig, ConversationHistoryConfig, z$1.core.$ZodTypeInternals<ConversationHistoryConfig, ConversationHistoryConfig>>>>>>;
|
|
1092
1092
|
}, z$1.core.$strip>;
|
|
1093
1093
|
declare const AgentRelationSelectSchema: drizzle_zod.BuildSchema<"select", {
|
|
@@ -1314,9 +1314,9 @@ declare const AgentRelationUpdateSchema: z$1.ZodObject<{
|
|
|
1314
1314
|
}>;
|
|
1315
1315
|
declare const AgentRelationApiSelectSchema: z$1.ZodObject<{
|
|
1316
1316
|
id: z$1.ZodString;
|
|
1317
|
+
graphId: z$1.ZodString;
|
|
1317
1318
|
createdAt: z$1.ZodString;
|
|
1318
1319
|
updatedAt: z$1.ZodString;
|
|
1319
|
-
graphId: z$1.ZodString;
|
|
1320
1320
|
sourceAgentId: z$1.ZodString;
|
|
1321
1321
|
targetAgentId: z$1.ZodNullable<z$1.ZodString>;
|
|
1322
1322
|
externalAgentId: z$1.ZodNullable<z$1.ZodString>;
|
|
@@ -1324,9 +1324,9 @@ declare const AgentRelationApiSelectSchema: z$1.ZodObject<{
|
|
|
1324
1324
|
}, z$1.core.$strip>;
|
|
1325
1325
|
declare const AgentRelationApiInsertSchema: z$1.ZodObject<{
|
|
1326
1326
|
id: z$1.ZodString;
|
|
1327
|
+
graphId: z$1.ZodString;
|
|
1327
1328
|
createdAt: z$1.ZodOptional<z$1.ZodString>;
|
|
1328
1329
|
updatedAt: z$1.ZodOptional<z$1.ZodString>;
|
|
1329
|
-
graphId: z$1.ZodString;
|
|
1330
1330
|
sourceAgentId: z$1.ZodString;
|
|
1331
1331
|
targetAgentId: z$1.ZodOptional<z$1.ZodString>;
|
|
1332
1332
|
externalAgentId: z$1.ZodOptional<z$1.ZodString>;
|
|
@@ -1337,9 +1337,9 @@ declare const AgentRelationApiInsertSchema: z$1.ZodObject<{
|
|
|
1337
1337
|
}, z$1.core.$strip>;
|
|
1338
1338
|
declare const AgentRelationApiUpdateSchema: z$1.ZodObject<{
|
|
1339
1339
|
id: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodString>>;
|
|
1340
|
+
graphId: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodString>>;
|
|
1340
1341
|
createdAt: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodOptional<z$1.ZodString>>>;
|
|
1341
1342
|
updatedAt: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodOptional<z$1.ZodString>>>;
|
|
1342
|
-
graphId: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodString>>;
|
|
1343
1343
|
sourceAgentId: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodString>>;
|
|
1344
1344
|
targetAgentId: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodOptional<z$1.ZodString>>>;
|
|
1345
1345
|
externalAgentId: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodOptional<z$1.ZodString>>>;
|
|
@@ -1370,9 +1370,9 @@ declare const ExternalAgentRelationInsertSchema: z$1.ZodObject<{
|
|
|
1370
1370
|
}>;
|
|
1371
1371
|
declare const ExternalAgentRelationApiInsertSchema: z$1.ZodObject<{
|
|
1372
1372
|
id: z$1.ZodString;
|
|
1373
|
+
graphId: z$1.ZodString;
|
|
1373
1374
|
createdAt: z$1.ZodOptional<z$1.ZodString>;
|
|
1374
1375
|
updatedAt: z$1.ZodOptional<z$1.ZodString>;
|
|
1375
|
-
graphId: z$1.ZodString;
|
|
1376
1376
|
sourceAgentId: z$1.ZodString;
|
|
1377
1377
|
targetAgentId: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodString>>;
|
|
1378
1378
|
externalAgentId: z$1.ZodString;
|
|
@@ -1954,11 +1954,12 @@ declare const AgentGraphUpdateSchema: z$1.ZodObject<{
|
|
|
1954
1954
|
in: {};
|
|
1955
1955
|
}>;
|
|
1956
1956
|
declare const AgentGraphApiSelectSchema: z$1.ZodObject<{
|
|
1957
|
-
name: z$1.ZodString;
|
|
1958
1957
|
id: z$1.ZodString;
|
|
1958
|
+
name: z$1.ZodString;
|
|
1959
1959
|
description: z$1.ZodNullable<z$1.ZodString>;
|
|
1960
1960
|
createdAt: z$1.ZodString;
|
|
1961
1961
|
updatedAt: z$1.ZodString;
|
|
1962
|
+
defaultAgentId: z$1.ZodString;
|
|
1962
1963
|
models: z$1.ZodNullable<z$1.ZodType<{
|
|
1963
1964
|
base?: {
|
|
1964
1965
|
model?: string | undefined;
|
|
@@ -2021,8 +2022,7 @@ declare const AgentGraphApiSelectSchema: z$1.ZodObject<{
|
|
|
2021
2022
|
}, {
|
|
2022
2023
|
transferCountIs?: number;
|
|
2023
2024
|
}>>>;
|
|
2024
|
-
|
|
2025
|
-
defaultAgentId: z$1.ZodString;
|
|
2025
|
+
graphPrompt: z$1.ZodNullable<z$1.ZodString>;
|
|
2026
2026
|
statusUpdates: z$1.ZodNullable<z$1.ZodType<{
|
|
2027
2027
|
enabled?: boolean | undefined;
|
|
2028
2028
|
numEvents?: number | undefined;
|
|
@@ -2080,13 +2080,14 @@ declare const AgentGraphApiSelectSchema: z$1.ZodObject<{
|
|
|
2080
2080
|
} | undefined;
|
|
2081
2081
|
}[] | undefined;
|
|
2082
2082
|
}>>>;
|
|
2083
|
-
|
|
2083
|
+
contextConfigId: z$1.ZodNullable<z$1.ZodString>;
|
|
2084
2084
|
}, z$1.core.$strip>;
|
|
2085
2085
|
declare const AgentGraphApiInsertSchema: z$1.ZodObject<{
|
|
2086
2086
|
name: z$1.ZodString;
|
|
2087
2087
|
description: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodString>>;
|
|
2088
2088
|
createdAt: z$1.ZodOptional<z$1.ZodString>;
|
|
2089
2089
|
updatedAt: z$1.ZodOptional<z$1.ZodString>;
|
|
2090
|
+
defaultAgentId: z$1.ZodString;
|
|
2090
2091
|
models: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodType<{
|
|
2091
2092
|
base?: {
|
|
2092
2093
|
model?: string | undefined;
|
|
@@ -2149,8 +2150,7 @@ declare const AgentGraphApiInsertSchema: z$1.ZodObject<{
|
|
|
2149
2150
|
}, {
|
|
2150
2151
|
transferCountIs?: number;
|
|
2151
2152
|
}>>>>;
|
|
2152
|
-
|
|
2153
|
-
defaultAgentId: z$1.ZodString;
|
|
2153
|
+
graphPrompt: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodString>>;
|
|
2154
2154
|
statusUpdates: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodType<{
|
|
2155
2155
|
enabled?: boolean | undefined;
|
|
2156
2156
|
numEvents?: number | undefined;
|
|
@@ -2208,15 +2208,16 @@ declare const AgentGraphApiInsertSchema: z$1.ZodObject<{
|
|
|
2208
2208
|
} | undefined;
|
|
2209
2209
|
}[] | undefined;
|
|
2210
2210
|
}>>>>;
|
|
2211
|
-
|
|
2211
|
+
contextConfigId: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodString>>;
|
|
2212
2212
|
id: z$1.ZodOptional<z$1.ZodString>;
|
|
2213
2213
|
}, z$1.core.$strip>;
|
|
2214
2214
|
declare const AgentGraphApiUpdateSchema: z$1.ZodObject<{
|
|
2215
|
-
name: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodString>>;
|
|
2216
2215
|
id: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodString>>;
|
|
2216
|
+
name: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodString>>;
|
|
2217
2217
|
description: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodOptional<z$1.ZodNullable<z$1.ZodString>>>>;
|
|
2218
2218
|
createdAt: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodOptional<z$1.ZodString>>>;
|
|
2219
2219
|
updatedAt: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodOptional<z$1.ZodString>>>;
|
|
2220
|
+
defaultAgentId: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodString>>;
|
|
2220
2221
|
models: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodOptional<z$1.ZodNullable<z$1.ZodType<{
|
|
2221
2222
|
base?: {
|
|
2222
2223
|
model?: string | undefined;
|
|
@@ -2279,8 +2280,7 @@ declare const AgentGraphApiUpdateSchema: z$1.ZodObject<{
|
|
|
2279
2280
|
}, {
|
|
2280
2281
|
transferCountIs?: number;
|
|
2281
2282
|
}>>>>>>;
|
|
2282
|
-
|
|
2283
|
-
defaultAgentId: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodString>>;
|
|
2283
|
+
graphPrompt: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodOptional<z$1.ZodNullable<z$1.ZodString>>>>;
|
|
2284
2284
|
statusUpdates: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodOptional<z$1.ZodNullable<z$1.ZodType<{
|
|
2285
2285
|
enabled?: boolean | undefined;
|
|
2286
2286
|
numEvents?: number | undefined;
|
|
@@ -2338,7 +2338,7 @@ declare const AgentGraphApiUpdateSchema: z$1.ZodObject<{
|
|
|
2338
2338
|
} | undefined;
|
|
2339
2339
|
}[] | undefined;
|
|
2340
2340
|
}>>>>>>;
|
|
2341
|
-
|
|
2341
|
+
contextConfigId: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodOptional<z$1.ZodNullable<z$1.ZodString>>>>;
|
|
2342
2342
|
}, z$1.core.$strip>;
|
|
2343
2343
|
declare const TaskSelectSchema: drizzle_zod.BuildSchema<"select", {
|
|
2344
2344
|
tenantId: drizzle_orm_sqlite_core.SQLiteColumn<{
|
|
@@ -2544,29 +2544,29 @@ declare const TaskUpdateSchema: z$1.ZodObject<{
|
|
|
2544
2544
|
in: {};
|
|
2545
2545
|
}>;
|
|
2546
2546
|
declare const TaskApiSelectSchema: z$1.ZodObject<{
|
|
2547
|
-
metadata: z$1.ZodNullable<z$1.ZodType<TaskMetadataConfig, TaskMetadataConfig, z$1.core.$ZodTypeInternals<TaskMetadataConfig, TaskMetadataConfig>>>;
|
|
2548
2547
|
id: z$1.ZodString;
|
|
2549
2548
|
createdAt: z$1.ZodString;
|
|
2550
2549
|
updatedAt: z$1.ZodString;
|
|
2550
|
+
metadata: z$1.ZodNullable<z$1.ZodType<TaskMetadataConfig, TaskMetadataConfig, z$1.core.$ZodTypeInternals<TaskMetadataConfig, TaskMetadataConfig>>>;
|
|
2551
2551
|
status: z$1.ZodString;
|
|
2552
2552
|
contextId: z$1.ZodString;
|
|
2553
2553
|
agentId: z$1.ZodString;
|
|
2554
2554
|
}, z$1.core.$strip>;
|
|
2555
2555
|
declare const TaskApiInsertSchema: z$1.ZodObject<{
|
|
2556
|
-
metadata: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodType<TaskMetadataConfig, TaskMetadataConfig, z$1.core.$ZodTypeInternals<TaskMetadataConfig, TaskMetadataConfig>>>>;
|
|
2557
2556
|
id: z$1.ZodString;
|
|
2558
2557
|
createdAt: z$1.ZodOptional<z$1.ZodString>;
|
|
2559
2558
|
updatedAt: z$1.ZodOptional<z$1.ZodString>;
|
|
2559
|
+
metadata: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodType<TaskMetadataConfig, TaskMetadataConfig, z$1.core.$ZodTypeInternals<TaskMetadataConfig, TaskMetadataConfig>>>>;
|
|
2560
2560
|
status: z$1.ZodString;
|
|
2561
2561
|
conversationId: z$1.ZodOptional<z$1.ZodString>;
|
|
2562
2562
|
contextId: z$1.ZodString;
|
|
2563
2563
|
agentId: z$1.ZodString;
|
|
2564
2564
|
}, z$1.core.$strip>;
|
|
2565
2565
|
declare const TaskApiUpdateSchema: z$1.ZodObject<{
|
|
2566
|
-
metadata: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodOptional<z$1.ZodNullable<z$1.ZodType<TaskMetadataConfig, TaskMetadataConfig, z$1.core.$ZodTypeInternals<TaskMetadataConfig, TaskMetadataConfig>>>>>>;
|
|
2567
2566
|
id: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodString>>;
|
|
2568
2567
|
createdAt: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodOptional<z$1.ZodString>>>;
|
|
2569
2568
|
updatedAt: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodOptional<z$1.ZodString>>>;
|
|
2569
|
+
metadata: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodOptional<z$1.ZodNullable<z$1.ZodType<TaskMetadataConfig, TaskMetadataConfig, z$1.core.$ZodTypeInternals<TaskMetadataConfig, TaskMetadataConfig>>>>>>;
|
|
2570
2570
|
status: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodString>>;
|
|
2571
2571
|
conversationId: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodOptional<z$1.ZodString>>>;
|
|
2572
2572
|
contextId: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodString>>;
|
|
@@ -3368,20 +3368,20 @@ declare const ConversationUpdateSchema: z$1.ZodObject<{
|
|
|
3368
3368
|
in: {};
|
|
3369
3369
|
}>;
|
|
3370
3370
|
declare const ConversationApiSelectSchema: z$1.ZodObject<{
|
|
3371
|
-
metadata: z$1.ZodNullable<z$1.ZodType<ConversationMetadata, ConversationMetadata, z$1.core.$ZodTypeInternals<ConversationMetadata, ConversationMetadata>>>;
|
|
3372
3371
|
id: z$1.ZodString;
|
|
3373
3372
|
createdAt: z$1.ZodString;
|
|
3374
3373
|
updatedAt: z$1.ZodString;
|
|
3374
|
+
metadata: z$1.ZodNullable<z$1.ZodType<ConversationMetadata, ConversationMetadata, z$1.core.$ZodTypeInternals<ConversationMetadata, ConversationMetadata>>>;
|
|
3375
3375
|
title: z$1.ZodNullable<z$1.ZodString>;
|
|
3376
3376
|
userId: z$1.ZodNullable<z$1.ZodString>;
|
|
3377
3377
|
activeAgentId: z$1.ZodString;
|
|
3378
3378
|
lastContextResolution: z$1.ZodNullable<z$1.ZodString>;
|
|
3379
3379
|
}, z$1.core.$strip>;
|
|
3380
3380
|
declare const ConversationApiInsertSchema: z$1.ZodObject<{
|
|
3381
|
-
metadata: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodType<ConversationMetadata, ConversationMetadata, z$1.core.$ZodTypeInternals<ConversationMetadata, ConversationMetadata>>>>;
|
|
3382
3381
|
id: z$1.ZodString;
|
|
3383
3382
|
createdAt: z$1.ZodOptional<z$1.ZodString>;
|
|
3384
3383
|
updatedAt: z$1.ZodOptional<z$1.ZodString>;
|
|
3384
|
+
metadata: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodType<ConversationMetadata, ConversationMetadata, z$1.core.$ZodTypeInternals<ConversationMetadata, ConversationMetadata>>>>;
|
|
3385
3385
|
title: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodString>>;
|
|
3386
3386
|
contextConfigId: z$1.ZodOptional<z$1.ZodString>;
|
|
3387
3387
|
userId: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodString>>;
|
|
@@ -3389,10 +3389,10 @@ declare const ConversationApiInsertSchema: z$1.ZodObject<{
|
|
|
3389
3389
|
lastContextResolution: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodString>>;
|
|
3390
3390
|
}, z$1.core.$strip>;
|
|
3391
3391
|
declare const ConversationApiUpdateSchema: z$1.ZodObject<{
|
|
3392
|
-
metadata: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodOptional<z$1.ZodNullable<z$1.ZodType<ConversationMetadata, ConversationMetadata, z$1.core.$ZodTypeInternals<ConversationMetadata, ConversationMetadata>>>>>>;
|
|
3393
3392
|
id: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodString>>;
|
|
3394
3393
|
createdAt: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodOptional<z$1.ZodString>>>;
|
|
3395
3394
|
updatedAt: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodOptional<z$1.ZodString>>>;
|
|
3395
|
+
metadata: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodOptional<z$1.ZodNullable<z$1.ZodType<ConversationMetadata, ConversationMetadata, z$1.core.$ZodTypeInternals<ConversationMetadata, ConversationMetadata>>>>>>;
|
|
3396
3396
|
title: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodOptional<z$1.ZodNullable<z$1.ZodString>>>>;
|
|
3397
3397
|
contextConfigId: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodOptional<z$1.ZodString>>>;
|
|
3398
3398
|
userId: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodOptional<z$1.ZodNullable<z$1.ZodString>>>>;
|
|
@@ -3832,10 +3832,10 @@ declare const MessageUpdateSchema: z$1.ZodObject<{
|
|
|
3832
3832
|
in: {};
|
|
3833
3833
|
}>;
|
|
3834
3834
|
declare const MessageApiSelectSchema: z$1.ZodObject<{
|
|
3835
|
-
metadata: z$1.ZodNullable<z$1.ZodType<MessageMetadata, MessageMetadata, z$1.core.$ZodTypeInternals<MessageMetadata, MessageMetadata>>>;
|
|
3836
3835
|
id: z$1.ZodString;
|
|
3837
3836
|
createdAt: z$1.ZodString;
|
|
3838
3837
|
updatedAt: z$1.ZodString;
|
|
3838
|
+
metadata: z$1.ZodNullable<z$1.ZodType<MessageMetadata, MessageMetadata, z$1.core.$ZodTypeInternals<MessageMetadata, MessageMetadata>>>;
|
|
3839
3839
|
role: z$1.ZodString;
|
|
3840
3840
|
content: z$1.ZodType<MessageContent, MessageContent, z$1.core.$ZodTypeInternals<MessageContent, MessageContent>>;
|
|
3841
3841
|
conversationId: z$1.ZodString;
|
|
@@ -3852,10 +3852,10 @@ declare const MessageApiSelectSchema: z$1.ZodObject<{
|
|
|
3852
3852
|
a2aSessionId: z$1.ZodNullable<z$1.ZodString>;
|
|
3853
3853
|
}, z$1.core.$strip>;
|
|
3854
3854
|
declare const MessageApiInsertSchema: z$1.ZodObject<{
|
|
3855
|
-
metadata: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodType<MessageMetadata, MessageMetadata, z$1.core.$ZodTypeInternals<MessageMetadata, MessageMetadata>>>>;
|
|
3856
3855
|
id: z$1.ZodString;
|
|
3857
3856
|
createdAt: z$1.ZodOptional<z$1.ZodString>;
|
|
3858
3857
|
updatedAt: z$1.ZodOptional<z$1.ZodString>;
|
|
3858
|
+
metadata: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodType<MessageMetadata, MessageMetadata, z$1.core.$ZodTypeInternals<MessageMetadata, MessageMetadata>>>>;
|
|
3859
3859
|
role: z$1.ZodString;
|
|
3860
3860
|
content: z$1.ZodType<MessageContent, MessageContent, z$1.core.$ZodTypeInternals<MessageContent, MessageContent>>;
|
|
3861
3861
|
conversationId: z$1.ZodString;
|
|
@@ -3872,10 +3872,10 @@ declare const MessageApiInsertSchema: z$1.ZodObject<{
|
|
|
3872
3872
|
a2aSessionId: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodString>>;
|
|
3873
3873
|
}, z$1.core.$strip>;
|
|
3874
3874
|
declare const MessageApiUpdateSchema: z$1.ZodObject<{
|
|
3875
|
-
metadata: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodOptional<z$1.ZodNullable<z$1.ZodType<MessageMetadata, MessageMetadata, z$1.core.$ZodTypeInternals<MessageMetadata, MessageMetadata>>>>>>;
|
|
3876
3875
|
id: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodString>>;
|
|
3877
3876
|
createdAt: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodOptional<z$1.ZodString>>>;
|
|
3878
3877
|
updatedAt: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodOptional<z$1.ZodString>>>;
|
|
3878
|
+
metadata: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodOptional<z$1.ZodNullable<z$1.ZodType<MessageMetadata, MessageMetadata, z$1.core.$ZodTypeInternals<MessageMetadata, MessageMetadata>>>>>>;
|
|
3879
3879
|
role: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodString>>;
|
|
3880
3880
|
content: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodType<MessageContent, MessageContent, z$1.core.$ZodTypeInternals<MessageContent, MessageContent>>>>;
|
|
3881
3881
|
conversationId: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodString>>;
|
|
@@ -4405,9 +4405,9 @@ declare const ContextCacheUpdateSchema: z$1.ZodObject<{
|
|
|
4405
4405
|
}>;
|
|
4406
4406
|
declare const ContextCacheApiSelectSchema: z$1.ZodObject<{
|
|
4407
4407
|
id: z$1.ZodString;
|
|
4408
|
+
value: z$1.ZodType<drizzle_zod.Json, unknown, z$1.core.$ZodTypeInternals<drizzle_zod.Json, unknown>>;
|
|
4408
4409
|
createdAt: z$1.ZodString;
|
|
4409
4410
|
updatedAt: z$1.ZodString;
|
|
4410
|
-
value: z$1.ZodType<drizzle_zod.Json, unknown, z$1.core.$ZodTypeInternals<drizzle_zod.Json, unknown>>;
|
|
4411
4411
|
conversationId: z$1.ZodString;
|
|
4412
4412
|
contextConfigId: z$1.ZodString;
|
|
4413
4413
|
contextVariableKey: z$1.ZodString;
|
|
@@ -4418,9 +4418,9 @@ declare const ContextCacheApiSelectSchema: z$1.ZodObject<{
|
|
|
4418
4418
|
}, z$1.core.$strip>;
|
|
4419
4419
|
declare const ContextCacheApiInsertSchema: z$1.ZodObject<{
|
|
4420
4420
|
id: z$1.ZodString;
|
|
4421
|
+
value: z$1.ZodType<drizzle_zod.Json, unknown, z$1.core.$ZodTypeInternals<drizzle_zod.Json, unknown>>;
|
|
4421
4422
|
createdAt: z$1.ZodOptional<z$1.ZodString>;
|
|
4422
4423
|
updatedAt: z$1.ZodOptional<z$1.ZodString>;
|
|
4423
|
-
value: z$1.ZodType<drizzle_zod.Json, unknown, z$1.core.$ZodTypeInternals<drizzle_zod.Json, unknown>>;
|
|
4424
4424
|
conversationId: z$1.ZodString;
|
|
4425
4425
|
contextConfigId: z$1.ZodString;
|
|
4426
4426
|
contextVariableKey: z$1.ZodString;
|
|
@@ -4431,9 +4431,9 @@ declare const ContextCacheApiInsertSchema: z$1.ZodObject<{
|
|
|
4431
4431
|
}, z$1.core.$strip>;
|
|
4432
4432
|
declare const ContextCacheApiUpdateSchema: z$1.ZodObject<{
|
|
4433
4433
|
id: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodString>>;
|
|
4434
|
+
value: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodType<drizzle_zod.Json, unknown, z$1.core.$ZodTypeInternals<drizzle_zod.Json, unknown>>>>;
|
|
4434
4435
|
createdAt: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodOptional<z$1.ZodString>>>;
|
|
4435
4436
|
updatedAt: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodOptional<z$1.ZodString>>>;
|
|
4436
|
-
value: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodType<drizzle_zod.Json, unknown, z$1.core.$ZodTypeInternals<drizzle_zod.Json, unknown>>>>;
|
|
4437
4437
|
conversationId: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodString>>;
|
|
4438
4438
|
contextConfigId: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodString>>;
|
|
4439
4439
|
contextVariableKey: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodString>>;
|
|
@@ -4610,10 +4610,10 @@ declare const DataComponentInsertSchema: z$1.ZodObject<{
|
|
|
4610
4610
|
in: {};
|
|
4611
4611
|
}>;
|
|
4612
4612
|
declare const DataComponentBaseSchema: z$1.ZodObject<{
|
|
4613
|
-
name: z$1.ZodString;
|
|
4614
4613
|
tenantId: z$1.ZodString;
|
|
4615
4614
|
projectId: z$1.ZodString;
|
|
4616
4615
|
id: z$1.ZodString;
|
|
4616
|
+
name: z$1.ZodString;
|
|
4617
4617
|
description: z$1.ZodString;
|
|
4618
4618
|
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>>>>>;
|
|
4619
4619
|
}, {
|
|
@@ -4634,24 +4634,24 @@ declare const DataComponentUpdateSchema: z$1.ZodObject<{
|
|
|
4634
4634
|
in: {};
|
|
4635
4635
|
}>;
|
|
4636
4636
|
declare const DataComponentApiSelectSchema: z$1.ZodObject<{
|
|
4637
|
-
name: z$1.ZodString;
|
|
4638
4637
|
id: z$1.ZodString;
|
|
4638
|
+
name: z$1.ZodString;
|
|
4639
4639
|
description: z$1.ZodString;
|
|
4640
4640
|
createdAt: z$1.ZodString;
|
|
4641
4641
|
updatedAt: z$1.ZodString;
|
|
4642
4642
|
props: z$1.ZodNullable<z$1.ZodType<Record<string, unknown>, Record<string, unknown>, z$1.core.$ZodTypeInternals<Record<string, unknown>, Record<string, unknown>>>>;
|
|
4643
4643
|
}, z$1.core.$strip>;
|
|
4644
4644
|
declare const DataComponentApiInsertSchema: z$1.ZodObject<{
|
|
4645
|
-
name: z$1.ZodString;
|
|
4646
4645
|
id: z$1.ZodString;
|
|
4646
|
+
name: z$1.ZodString;
|
|
4647
4647
|
description: z$1.ZodString;
|
|
4648
4648
|
createdAt: z$1.ZodOptional<z$1.ZodString>;
|
|
4649
4649
|
updatedAt: z$1.ZodOptional<z$1.ZodString>;
|
|
4650
4650
|
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>>>>>;
|
|
4651
4651
|
}, z$1.core.$strip>;
|
|
4652
4652
|
declare const DataComponentApiUpdateSchema: z$1.ZodObject<{
|
|
4653
|
-
name: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodString>>;
|
|
4654
4653
|
id: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodString>>;
|
|
4654
|
+
name: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodString>>;
|
|
4655
4655
|
description: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodString>>;
|
|
4656
4656
|
createdAt: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodOptional<z$1.ZodString>>>;
|
|
4657
4657
|
updatedAt: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodOptional<z$1.ZodString>>>;
|
|
@@ -5120,8 +5120,8 @@ declare const ArtifactComponentUpdateSchema: z$1.ZodObject<{
|
|
|
5120
5120
|
in: {};
|
|
5121
5121
|
}>;
|
|
5122
5122
|
declare const ArtifactComponentApiSelectSchema: z$1.ZodObject<{
|
|
5123
|
-
name: z$1.ZodString;
|
|
5124
5123
|
id: z$1.ZodString;
|
|
5124
|
+
name: z$1.ZodString;
|
|
5125
5125
|
description: z$1.ZodString;
|
|
5126
5126
|
createdAt: z$1.ZodString;
|
|
5127
5127
|
updatedAt: z$1.ZodString;
|
|
@@ -5139,8 +5139,8 @@ declare const ArtifactComponentApiInsertSchema: z$1.ZodObject<{
|
|
|
5139
5139
|
in: {};
|
|
5140
5140
|
}>;
|
|
5141
5141
|
declare const ArtifactComponentApiUpdateSchema: z$1.ZodObject<{
|
|
5142
|
-
name: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodString>>;
|
|
5143
5142
|
id: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodString>>;
|
|
5143
|
+
name: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodString>>;
|
|
5144
5144
|
description: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodString>>;
|
|
5145
5145
|
createdAt: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodOptional<z$1.ZodString>>>;
|
|
5146
5146
|
updatedAt: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodOptional<z$1.ZodString>>>;
|
|
@@ -5350,39 +5350,40 @@ declare const ExternalAgentUpdateSchema: z$1.ZodObject<{
|
|
|
5350
5350
|
in: {};
|
|
5351
5351
|
}>;
|
|
5352
5352
|
declare const ExternalAgentApiSelectSchema: z$1.ZodObject<{
|
|
5353
|
-
name: z$1.ZodString;
|
|
5354
|
-
headers: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodRecord<z$1.ZodString, z$1.ZodString>>>;
|
|
5355
5353
|
id: z$1.ZodString;
|
|
5354
|
+
name: z$1.ZodString;
|
|
5356
5355
|
description: z$1.ZodString;
|
|
5356
|
+
credentialReferenceId: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodString>>;
|
|
5357
5357
|
createdAt: z$1.ZodString;
|
|
5358
5358
|
updatedAt: z$1.ZodString;
|
|
5359
|
-
credentialReferenceId: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodString>>;
|
|
5360
5359
|
baseUrl: z$1.ZodString;
|
|
5360
|
+
headers: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodRecord<z$1.ZodString, z$1.ZodString>>>;
|
|
5361
5361
|
}, z$1.core.$strip>;
|
|
5362
5362
|
declare const ExternalAgentApiInsertSchema: z$1.ZodObject<{
|
|
5363
|
-
name: z$1.ZodString;
|
|
5364
|
-
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>>>>>;
|
|
5365
5363
|
id: z$1.ZodString;
|
|
5364
|
+
name: z$1.ZodString;
|
|
5366
5365
|
description: z$1.ZodString;
|
|
5366
|
+
credentialReferenceId: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodString>>;
|
|
5367
5367
|
createdAt: z$1.ZodOptional<z$1.ZodString>;
|
|
5368
5368
|
updatedAt: z$1.ZodOptional<z$1.ZodString>;
|
|
5369
|
-
credentialReferenceId: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodString>>;
|
|
5370
5369
|
baseUrl: z$1.ZodString;
|
|
5370
|
+
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>>>>>;
|
|
5371
5371
|
}, z$1.core.$strip>;
|
|
5372
5372
|
declare const ExternalAgentApiUpdateSchema: z$1.ZodObject<{
|
|
5373
|
-
name: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodString>>;
|
|
5374
|
-
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>>>>>>>;
|
|
5375
5373
|
id: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodString>>;
|
|
5374
|
+
name: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodString>>;
|
|
5376
5375
|
description: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodString>>;
|
|
5376
|
+
credentialReferenceId: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodOptional<z$1.ZodNullable<z$1.ZodString>>>>;
|
|
5377
5377
|
createdAt: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodOptional<z$1.ZodString>>>;
|
|
5378
5378
|
updatedAt: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodOptional<z$1.ZodString>>>;
|
|
5379
|
-
credentialReferenceId: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodOptional<z$1.ZodNullable<z$1.ZodString>>>>;
|
|
5380
5379
|
baseUrl: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodString>>;
|
|
5380
|
+
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>>>>>>>;
|
|
5381
5381
|
}, z$1.core.$strip>;
|
|
5382
5382
|
declare const AllAgentSchema: z$1.ZodDiscriminatedUnion<[z$1.ZodObject<{
|
|
5383
|
-
name: z$1.ZodString;
|
|
5384
5383
|
id: z$1.ZodString;
|
|
5384
|
+
name: z$1.ZodString;
|
|
5385
5385
|
description: z$1.ZodString;
|
|
5386
|
+
prompt: z$1.ZodString;
|
|
5386
5387
|
createdAt: z$1.ZodString;
|
|
5387
5388
|
updatedAt: z$1.ZodString;
|
|
5388
5389
|
models: z$1.ZodNullable<z$1.ZodType<{
|
|
@@ -5447,18 +5448,17 @@ declare const AllAgentSchema: z$1.ZodDiscriminatedUnion<[z$1.ZodObject<{
|
|
|
5447
5448
|
}, {
|
|
5448
5449
|
stepCountIs?: number;
|
|
5449
5450
|
}>>>;
|
|
5450
|
-
prompt: z$1.ZodString;
|
|
5451
5451
|
conversationHistoryConfig: z$1.ZodNullable<z$1.ZodType<ConversationHistoryConfig, ConversationHistoryConfig, z$1.core.$ZodTypeInternals<ConversationHistoryConfig, ConversationHistoryConfig>>>;
|
|
5452
5452
|
type: z$1.ZodLiteral<"internal">;
|
|
5453
5453
|
}, z$1.core.$strip>, z$1.ZodObject<{
|
|
5454
|
-
name: z$1.ZodString;
|
|
5455
|
-
headers: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodRecord<z$1.ZodString, z$1.ZodString>>>;
|
|
5456
5454
|
id: z$1.ZodString;
|
|
5455
|
+
name: z$1.ZodString;
|
|
5457
5456
|
description: z$1.ZodString;
|
|
5457
|
+
credentialReferenceId: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodString>>;
|
|
5458
5458
|
createdAt: z$1.ZodString;
|
|
5459
5459
|
updatedAt: z$1.ZodString;
|
|
5460
|
-
credentialReferenceId: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodString>>;
|
|
5461
5460
|
baseUrl: z$1.ZodString;
|
|
5461
|
+
headers: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodRecord<z$1.ZodString, z$1.ZodString>>>;
|
|
5462
5462
|
type: z$1.ZodLiteral<"external">;
|
|
5463
5463
|
}, z$1.core.$strip>], "type">;
|
|
5464
5464
|
declare const ApiKeySelectSchema: drizzle_zod.BuildSchema<"select", {
|
|
@@ -5689,23 +5689,23 @@ declare const ApiKeyInsertSchema: z$1.ZodObject<{
|
|
|
5689
5689
|
in: {};
|
|
5690
5690
|
}>;
|
|
5691
5691
|
declare const ApiKeyUpdateSchema: z$1.ZodObject<{
|
|
5692
|
-
updatedAt: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodString>>;
|
|
5693
5692
|
graphId: z$1.ZodOptional<z$1.ZodString>;
|
|
5694
5693
|
lastUsedAt: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodNullable<z$1.ZodString>>>;
|
|
5695
5694
|
expiresAt: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodNullable<z$1.ZodString>>>;
|
|
5695
|
+
updatedAt: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodString>>;
|
|
5696
5696
|
}, {
|
|
5697
5697
|
out: {};
|
|
5698
5698
|
in: {};
|
|
5699
5699
|
}>;
|
|
5700
5700
|
declare const ApiKeyApiSelectSchema: z$1.ZodObject<{
|
|
5701
5701
|
id: z$1.ZodString;
|
|
5702
|
-
createdAt: z$1.ZodString;
|
|
5703
|
-
updatedAt: z$1.ZodString;
|
|
5704
5702
|
graphId: z$1.ZodString;
|
|
5705
5703
|
publicId: z$1.ZodString;
|
|
5706
5704
|
keyPrefix: z$1.ZodString;
|
|
5707
5705
|
lastUsedAt: z$1.ZodNullable<z$1.ZodString>;
|
|
5708
5706
|
expiresAt: z$1.ZodNullable<z$1.ZodString>;
|
|
5707
|
+
createdAt: z$1.ZodString;
|
|
5708
|
+
updatedAt: z$1.ZodString;
|
|
5709
5709
|
}, {
|
|
5710
5710
|
out: {};
|
|
5711
5711
|
in: {};
|
|
@@ -5714,13 +5714,13 @@ declare const ApiKeyApiCreationResponseSchema: z$1.ZodObject<{
|
|
|
5714
5714
|
data: z$1.ZodObject<{
|
|
5715
5715
|
apiKey: z$1.ZodObject<{
|
|
5716
5716
|
id: z$1.ZodString;
|
|
5717
|
-
createdAt: z$1.ZodString;
|
|
5718
|
-
updatedAt: z$1.ZodString;
|
|
5719
5717
|
graphId: z$1.ZodString;
|
|
5720
5718
|
publicId: z$1.ZodString;
|
|
5721
5719
|
keyPrefix: z$1.ZodString;
|
|
5722
5720
|
lastUsedAt: z$1.ZodNullable<z$1.ZodString>;
|
|
5723
5721
|
expiresAt: z$1.ZodNullable<z$1.ZodString>;
|
|
5722
|
+
createdAt: z$1.ZodString;
|
|
5723
|
+
updatedAt: z$1.ZodString;
|
|
5724
5724
|
}, {
|
|
5725
5725
|
out: {};
|
|
5726
5726
|
in: {};
|
|
@@ -5729,19 +5729,19 @@ declare const ApiKeyApiCreationResponseSchema: z$1.ZodObject<{
|
|
|
5729
5729
|
}, z$1.core.$strip>;
|
|
5730
5730
|
}, z$1.core.$strip>;
|
|
5731
5731
|
declare const ApiKeyApiInsertSchema: z$1.ZodObject<{
|
|
5732
|
-
createdAt: z$1.ZodOptional<z$1.ZodString>;
|
|
5733
|
-
updatedAt: z$1.ZodOptional<z$1.ZodString>;
|
|
5734
5732
|
graphId: z$1.ZodString;
|
|
5735
5733
|
expiresAt: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodString>>;
|
|
5734
|
+
createdAt: z$1.ZodOptional<z$1.ZodString>;
|
|
5735
|
+
updatedAt: z$1.ZodOptional<z$1.ZodString>;
|
|
5736
5736
|
}, {
|
|
5737
5737
|
out: {};
|
|
5738
5738
|
in: {};
|
|
5739
5739
|
}>;
|
|
5740
5740
|
declare const ApiKeyApiUpdateSchema: z$1.ZodObject<{
|
|
5741
|
-
updatedAt: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodString>>;
|
|
5742
5741
|
graphId: z$1.ZodOptional<z$1.ZodString>;
|
|
5743
5742
|
lastUsedAt: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodNullable<z$1.ZodString>>>;
|
|
5744
5743
|
expiresAt: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodNullable<z$1.ZodString>>>;
|
|
5744
|
+
updatedAt: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodString>>;
|
|
5745
5745
|
}, {
|
|
5746
5746
|
out: {};
|
|
5747
5747
|
in: {};
|
|
@@ -5845,9 +5845,9 @@ declare const McpToolSchema: z$1.ZodObject<{
|
|
|
5845
5845
|
in: {};
|
|
5846
5846
|
}>;
|
|
5847
5847
|
declare const MCPToolConfigSchema: z$1.ZodObject<{
|
|
5848
|
+
id: z$1.ZodString;
|
|
5848
5849
|
name: z$1.ZodString;
|
|
5849
5850
|
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>>>>>;
|
|
5850
|
-
id: z$1.ZodString;
|
|
5851
5851
|
capabilities: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodType<ToolServerCapabilities, ToolServerCapabilities, z$1.core.$ZodTypeInternals<ToolServerCapabilities, ToolServerCapabilities>>>>;
|
|
5852
5852
|
imageUrl: z$1.ZodOptional<z$1.ZodString>;
|
|
5853
5853
|
lastError: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodString>>;
|
|
@@ -5919,13 +5919,8 @@ declare const ToolUpdateSchema: z$1.ZodObject<{
|
|
|
5919
5919
|
in: {};
|
|
5920
5920
|
}>;
|
|
5921
5921
|
declare const ToolApiSelectSchema: z$1.ZodObject<{
|
|
5922
|
-
name: z$1.ZodString;
|
|
5923
|
-
headers: z$1.ZodNullable<z$1.ZodType<Record<string, string>, Record<string, string>, z$1.core.$ZodTypeInternals<Record<string, string>, Record<string, string>>>>;
|
|
5924
5922
|
id: z$1.ZodString;
|
|
5925
|
-
|
|
5926
|
-
updatedAt: z$1.ZodString;
|
|
5927
|
-
status: z$1.ZodString;
|
|
5928
|
-
capabilities: z$1.ZodNullable<z$1.ZodType<ToolServerCapabilities, ToolServerCapabilities, z$1.core.$ZodTypeInternals<ToolServerCapabilities, ToolServerCapabilities>>>;
|
|
5923
|
+
name: z$1.ZodString;
|
|
5929
5924
|
config: z$1.ZodType<{
|
|
5930
5925
|
type: "mcp";
|
|
5931
5926
|
mcp: ToolMcpConfig;
|
|
@@ -5940,6 +5935,11 @@ declare const ToolApiSelectSchema: z$1.ZodObject<{
|
|
|
5940
5935
|
mcp: ToolMcpConfig;
|
|
5941
5936
|
}>>;
|
|
5942
5937
|
credentialReferenceId: z$1.ZodNullable<z$1.ZodString>;
|
|
5938
|
+
createdAt: z$1.ZodString;
|
|
5939
|
+
updatedAt: z$1.ZodString;
|
|
5940
|
+
headers: 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.ZodString;
|
|
5942
|
+
capabilities: z$1.ZodNullable<z$1.ZodType<ToolServerCapabilities, ToolServerCapabilities, z$1.core.$ZodTypeInternals<ToolServerCapabilities, ToolServerCapabilities>>>;
|
|
5943
5943
|
imageUrl: z$1.ZodNullable<z$1.ZodString>;
|
|
5944
5944
|
lastHealthCheck: z$1.ZodNullable<z$1.ZodString>;
|
|
5945
5945
|
lastError: z$1.ZodNullable<z$1.ZodString>;
|
|
@@ -5947,13 +5947,8 @@ declare const ToolApiSelectSchema: z$1.ZodObject<{
|
|
|
5947
5947
|
lastToolsSync: z$1.ZodNullable<z$1.ZodString>;
|
|
5948
5948
|
}, z$1.core.$strip>;
|
|
5949
5949
|
declare const ToolApiInsertSchema: z$1.ZodObject<{
|
|
5950
|
-
name: z$1.ZodString;
|
|
5951
|
-
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>>>>>;
|
|
5952
5950
|
id: z$1.ZodString;
|
|
5953
|
-
|
|
5954
|
-
updatedAt: z$1.ZodOptional<z$1.ZodString>;
|
|
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>>>>;
|
|
5951
|
+
name: z$1.ZodString;
|
|
5957
5952
|
config: z$1.ZodType<{
|
|
5958
5953
|
type: "mcp";
|
|
5959
5954
|
mcp: ToolMcpConfig;
|
|
@@ -5968,6 +5963,11 @@ declare const ToolApiInsertSchema: z$1.ZodObject<{
|
|
|
5968
5963
|
mcp: ToolMcpConfig;
|
|
5969
5964
|
}>>;
|
|
5970
5965
|
credentialReferenceId: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodString>>;
|
|
5966
|
+
createdAt: z$1.ZodOptional<z$1.ZodString>;
|
|
5967
|
+
updatedAt: z$1.ZodOptional<z$1.ZodString>;
|
|
5968
|
+
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>>>>>;
|
|
5969
|
+
status: z$1.ZodOptional<z$1.ZodString>;
|
|
5970
|
+
capabilities: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodType<ToolServerCapabilities, ToolServerCapabilities, z$1.core.$ZodTypeInternals<ToolServerCapabilities, ToolServerCapabilities>>>>;
|
|
5971
5971
|
imageUrl: z$1.ZodOptional<z$1.ZodString>;
|
|
5972
5972
|
lastHealthCheck: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodString>>;
|
|
5973
5973
|
lastError: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodString>>;
|
|
@@ -5975,13 +5975,8 @@ declare const ToolApiInsertSchema: z$1.ZodObject<{
|
|
|
5975
5975
|
lastToolsSync: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodString>>;
|
|
5976
5976
|
}, z$1.core.$strip>;
|
|
5977
5977
|
declare const ToolApiUpdateSchema: z$1.ZodObject<{
|
|
5978
|
-
name: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodString>>;
|
|
5979
|
-
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>>>>>>>;
|
|
5980
5978
|
id: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodString>>;
|
|
5981
|
-
|
|
5982
|
-
updatedAt: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodOptional<z$1.ZodString>>>;
|
|
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>>>>>>;
|
|
5979
|
+
name: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodString>>;
|
|
5985
5980
|
config: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodType<{
|
|
5986
5981
|
type: "mcp";
|
|
5987
5982
|
mcp: ToolMcpConfig;
|
|
@@ -5996,6 +5991,11 @@ declare const ToolApiUpdateSchema: z$1.ZodObject<{
|
|
|
5996
5991
|
mcp: ToolMcpConfig;
|
|
5997
5992
|
}>>>>;
|
|
5998
5993
|
credentialReferenceId: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodOptional<z$1.ZodNullable<z$1.ZodString>>>>;
|
|
5994
|
+
createdAt: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodOptional<z$1.ZodString>>>;
|
|
5995
|
+
updatedAt: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodOptional<z$1.ZodString>>>;
|
|
5996
|
+
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>>>>>>>;
|
|
5997
|
+
status: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodOptional<z$1.ZodString>>>;
|
|
5998
|
+
capabilities: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodOptional<z$1.ZodNullable<z$1.ZodType<ToolServerCapabilities, ToolServerCapabilities, z$1.core.$ZodTypeInternals<ToolServerCapabilities, ToolServerCapabilities>>>>>>;
|
|
5999
5999
|
imageUrl: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodOptional<z$1.ZodString>>>;
|
|
6000
6000
|
lastHealthCheck: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodOptional<z$1.ZodNullable<z$1.ZodString>>>>;
|
|
6001
6001
|
lastError: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodOptional<z$1.ZodNullable<z$1.ZodString>>>>;
|
|
@@ -6065,10 +6065,10 @@ declare const ContextConfigSelectSchema: z$1.ZodObject<{
|
|
|
6065
6065
|
in: {};
|
|
6066
6066
|
}>;
|
|
6067
6067
|
declare const ContextConfigInsertSchema: z$1.ZodObject<{
|
|
6068
|
-
name: z$1.ZodString;
|
|
6069
6068
|
tenantId: z$1.ZodString;
|
|
6070
6069
|
projectId: z$1.ZodString;
|
|
6071
6070
|
id: z$1.ZodString;
|
|
6071
|
+
name: z$1.ZodString;
|
|
6072
6072
|
description: z$1.ZodString;
|
|
6073
6073
|
requestContextSchema: z$1.ZodOptional<z$1.ZodUnknown>;
|
|
6074
6074
|
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>>>>>;
|
|
@@ -6077,10 +6077,10 @@ declare const ContextConfigInsertSchema: z$1.ZodObject<{
|
|
|
6077
6077
|
in: {};
|
|
6078
6078
|
}>;
|
|
6079
6079
|
declare const ContextConfigUpdateSchema: z$1.ZodObject<{
|
|
6080
|
-
name: z$1.ZodOptional<z$1.ZodString>;
|
|
6081
6080
|
tenantId: z$1.ZodOptional<z$1.ZodString>;
|
|
6082
6081
|
projectId: z$1.ZodOptional<z$1.ZodString>;
|
|
6083
6082
|
id: z$1.ZodOptional<z$1.ZodString>;
|
|
6083
|
+
name: z$1.ZodOptional<z$1.ZodString>;
|
|
6084
6084
|
description: z$1.ZodOptional<z$1.ZodString>;
|
|
6085
6085
|
requestContextSchema: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodUnknown>>;
|
|
6086
6086
|
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>>>>>>;
|
|
@@ -6089,24 +6089,24 @@ declare const ContextConfigUpdateSchema: z$1.ZodObject<{
|
|
|
6089
6089
|
in: {};
|
|
6090
6090
|
}>;
|
|
6091
6091
|
declare const ContextConfigApiSelectSchema: z$1.ZodObject<{
|
|
6092
|
-
name: z$1.ZodString;
|
|
6093
6092
|
id: z$1.ZodString;
|
|
6093
|
+
name: z$1.ZodString;
|
|
6094
6094
|
description: z$1.ZodString;
|
|
6095
|
-
requestContextSchema: z$1.ZodOptional<z$1.ZodUnknown>;
|
|
6096
|
-
contextVariables: z$1.ZodNullable<z$1.ZodType<Record<string, ContextFetchDefinition>, Record<string, ContextFetchDefinition>, z$1.core.$ZodTypeInternals<Record<string, ContextFetchDefinition>, Record<string, ContextFetchDefinition>>>>;
|
|
6097
6095
|
createdAt: z$1.ZodString;
|
|
6098
6096
|
updatedAt: z$1.ZodString;
|
|
6097
|
+
requestContextSchema: z$1.ZodOptional<z$1.ZodUnknown>;
|
|
6098
|
+
contextVariables: z$1.ZodNullable<z$1.ZodType<Record<string, ContextFetchDefinition>, Record<string, ContextFetchDefinition>, z$1.core.$ZodTypeInternals<Record<string, ContextFetchDefinition>, Record<string, ContextFetchDefinition>>>>;
|
|
6099
6099
|
}, z$1.core.$strip>;
|
|
6100
6100
|
declare const ContextConfigApiInsertSchema: z$1.ZodObject<{
|
|
6101
|
-
name: z$1.ZodString;
|
|
6102
6101
|
id: z$1.ZodString;
|
|
6102
|
+
name: z$1.ZodString;
|
|
6103
6103
|
description: z$1.ZodString;
|
|
6104
6104
|
requestContextSchema: z$1.ZodOptional<z$1.ZodUnknown>;
|
|
6105
6105
|
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>>>>>;
|
|
6106
6106
|
}, z$1.core.$strip>;
|
|
6107
6107
|
declare const ContextConfigApiUpdateSchema: z$1.ZodObject<{
|
|
6108
|
-
name: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodString>>;
|
|
6109
6108
|
id: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodString>>;
|
|
6109
|
+
name: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodString>>;
|
|
6110
6110
|
description: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodString>>;
|
|
6111
6111
|
requestContextSchema: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodOptional<z$1.ZodUnknown>>>;
|
|
6112
6112
|
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>>>>>>>;
|
|
@@ -6964,13 +6964,13 @@ declare const LedgerArtifactUpdateSchema: z$1.ZodObject<{
|
|
|
6964
6964
|
in: {};
|
|
6965
6965
|
}>;
|
|
6966
6966
|
declare const LedgerArtifactApiSelectSchema: z$1.ZodObject<{
|
|
6967
|
+
id: z$1.ZodString;
|
|
6967
6968
|
type: z$1.ZodString;
|
|
6968
6969
|
name: z$1.ZodNullable<z$1.ZodString>;
|
|
6969
|
-
metadata: z$1.ZodNullable<z$1.ZodType<drizzle_zod.Json, unknown, z$1.core.$ZodTypeInternals<drizzle_zod.Json, unknown>>>;
|
|
6970
|
-
id: z$1.ZodString;
|
|
6971
6970
|
description: z$1.ZodNullable<z$1.ZodString>;
|
|
6972
6971
|
createdAt: z$1.ZodString;
|
|
6973
6972
|
updatedAt: z$1.ZodString;
|
|
6973
|
+
metadata: z$1.ZodNullable<z$1.ZodType<drizzle_zod.Json, unknown, z$1.core.$ZodTypeInternals<drizzle_zod.Json, unknown>>>;
|
|
6974
6974
|
contextId: z$1.ZodString;
|
|
6975
6975
|
visibility: z$1.ZodNullable<z$1.ZodString>;
|
|
6976
6976
|
taskId: z$1.ZodNullable<z$1.ZodString>;
|
|
@@ -6981,13 +6981,13 @@ declare const LedgerArtifactApiSelectSchema: z$1.ZodObject<{
|
|
|
6981
6981
|
derivedFrom: z$1.ZodNullable<z$1.ZodString>;
|
|
6982
6982
|
}, z$1.core.$strip>;
|
|
6983
6983
|
declare const LedgerArtifactApiInsertSchema: z$1.ZodObject<{
|
|
6984
|
+
id: z$1.ZodString;
|
|
6984
6985
|
type: z$1.ZodOptional<z$1.ZodString>;
|
|
6985
6986
|
name: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodString>>;
|
|
6986
|
-
metadata: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodType<drizzle_zod.Json, unknown, z$1.core.$ZodTypeInternals<drizzle_zod.Json, unknown>>>>;
|
|
6987
|
-
id: z$1.ZodString;
|
|
6988
6987
|
description: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodString>>;
|
|
6989
6988
|
createdAt: z$1.ZodOptional<z$1.ZodString>;
|
|
6990
6989
|
updatedAt: z$1.ZodOptional<z$1.ZodString>;
|
|
6990
|
+
metadata: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodType<drizzle_zod.Json, unknown, z$1.core.$ZodTypeInternals<drizzle_zod.Json, unknown>>>>;
|
|
6991
6991
|
contextId: z$1.ZodString;
|
|
6992
6992
|
visibility: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodString>>;
|
|
6993
6993
|
taskId: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodString>>;
|
|
@@ -6998,13 +6998,13 @@ declare const LedgerArtifactApiInsertSchema: z$1.ZodObject<{
|
|
|
6998
6998
|
derivedFrom: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodString>>;
|
|
6999
6999
|
}, z$1.core.$strip>;
|
|
7000
7000
|
declare const LedgerArtifactApiUpdateSchema: z$1.ZodObject<{
|
|
7001
|
+
id: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodString>>;
|
|
7001
7002
|
type: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodOptional<z$1.ZodString>>>;
|
|
7002
7003
|
name: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodOptional<z$1.ZodNullable<z$1.ZodString>>>>;
|
|
7003
|
-
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>>>>>>;
|
|
7004
|
-
id: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodString>>;
|
|
7005
7004
|
description: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodOptional<z$1.ZodNullable<z$1.ZodString>>>>;
|
|
7006
7005
|
createdAt: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodOptional<z$1.ZodString>>>;
|
|
7007
7006
|
updatedAt: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodOptional<z$1.ZodString>>>;
|
|
7007
|
+
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>>>>>>;
|
|
7008
7008
|
contextId: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodString>>;
|
|
7009
7009
|
visibility: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodOptional<z$1.ZodNullable<z$1.ZodString>>>>;
|
|
7010
7010
|
taskId: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodOptional<z$1.ZodNullable<z$1.ZodString>>>>;
|
|
@@ -7039,9 +7039,10 @@ declare const StatusUpdateSchema: z$1.ZodObject<{
|
|
|
7039
7039
|
}, z$1.core.$strip>>>;
|
|
7040
7040
|
}, z$1.core.$strip>;
|
|
7041
7041
|
declare const FullGraphAgentInsertSchema: z$1.ZodObject<{
|
|
7042
|
-
name: z$1.ZodString;
|
|
7043
7042
|
id: z$1.ZodString;
|
|
7043
|
+
name: z$1.ZodString;
|
|
7044
7044
|
description: z$1.ZodString;
|
|
7045
|
+
prompt: z$1.ZodString;
|
|
7045
7046
|
createdAt: z$1.ZodOptional<z$1.ZodString>;
|
|
7046
7047
|
updatedAt: z$1.ZodOptional<z$1.ZodString>;
|
|
7047
7048
|
models: z$1.ZodOptional<z$1.ZodObject<{
|
|
@@ -7067,7 +7068,6 @@ declare const FullGraphAgentInsertSchema: z$1.ZodObject<{
|
|
|
7067
7068
|
}, {
|
|
7068
7069
|
stepCountIs?: number;
|
|
7069
7070
|
}>>>>;
|
|
7070
|
-
prompt: z$1.ZodString;
|
|
7071
7071
|
conversationHistoryConfig: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodType<ConversationHistoryConfig, ConversationHistoryConfig, z$1.core.$ZodTypeInternals<ConversationHistoryConfig, ConversationHistoryConfig>>>>;
|
|
7072
7072
|
tools: z$1.ZodArray<z$1.ZodString>;
|
|
7073
7073
|
dataComponents: z$1.ZodOptional<z$1.ZodArray<z$1.ZodString>>;
|
|
@@ -7080,13 +7080,14 @@ declare const FullGraphDefinitionSchema: z$1.ZodObject<{
|
|
|
7080
7080
|
description: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodString>>;
|
|
7081
7081
|
createdAt: z$1.ZodOptional<z$1.ZodString>;
|
|
7082
7082
|
updatedAt: z$1.ZodOptional<z$1.ZodString>;
|
|
7083
|
-
contextConfigId: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodString>>;
|
|
7084
7083
|
defaultAgentId: z$1.ZodString;
|
|
7084
|
+
contextConfigId: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodString>>;
|
|
7085
7085
|
id: z$1.ZodOptional<z$1.ZodString>;
|
|
7086
7086
|
agents: z$1.ZodRecord<z$1.ZodString, z$1.ZodUnion<readonly [z$1.ZodObject<{
|
|
7087
|
-
name: z$1.ZodString;
|
|
7088
7087
|
id: z$1.ZodString;
|
|
7088
|
+
name: z$1.ZodString;
|
|
7089
7089
|
description: z$1.ZodString;
|
|
7090
|
+
prompt: z$1.ZodString;
|
|
7090
7091
|
createdAt: z$1.ZodOptional<z$1.ZodString>;
|
|
7091
7092
|
updatedAt: z$1.ZodOptional<z$1.ZodString>;
|
|
7092
7093
|
models: z$1.ZodOptional<z$1.ZodObject<{
|
|
@@ -7112,7 +7113,6 @@ declare const FullGraphDefinitionSchema: z$1.ZodObject<{
|
|
|
7112
7113
|
}, {
|
|
7113
7114
|
stepCountIs?: number;
|
|
7114
7115
|
}>>>>;
|
|
7115
|
-
prompt: z$1.ZodString;
|
|
7116
7116
|
conversationHistoryConfig: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodType<ConversationHistoryConfig, ConversationHistoryConfig, z$1.core.$ZodTypeInternals<ConversationHistoryConfig, ConversationHistoryConfig>>>>;
|
|
7117
7117
|
tools: z$1.ZodArray<z$1.ZodString>;
|
|
7118
7118
|
dataComponents: z$1.ZodOptional<z$1.ZodArray<z$1.ZodString>>;
|
|
@@ -7120,23 +7120,18 @@ declare const FullGraphDefinitionSchema: z$1.ZodObject<{
|
|
|
7120
7120
|
canTransferTo: z$1.ZodOptional<z$1.ZodArray<z$1.ZodString>>;
|
|
7121
7121
|
canDelegateTo: z$1.ZodOptional<z$1.ZodArray<z$1.ZodString>>;
|
|
7122
7122
|
}, z$1.core.$strip>, z$1.ZodObject<{
|
|
7123
|
-
name: z$1.ZodString;
|
|
7124
|
-
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>>>>>;
|
|
7125
7123
|
id: z$1.ZodString;
|
|
7124
|
+
name: z$1.ZodString;
|
|
7126
7125
|
description: z$1.ZodString;
|
|
7126
|
+
credentialReferenceId: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodString>>;
|
|
7127
7127
|
createdAt: z$1.ZodOptional<z$1.ZodString>;
|
|
7128
7128
|
updatedAt: z$1.ZodOptional<z$1.ZodString>;
|
|
7129
|
-
credentialReferenceId: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodString>>;
|
|
7130
7129
|
baseUrl: z$1.ZodString;
|
|
7130
|
+
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>>>>>;
|
|
7131
7131
|
}, z$1.core.$strip>]>>;
|
|
7132
7132
|
tools: z$1.ZodRecord<z$1.ZodString, z$1.ZodObject<{
|
|
7133
|
-
name: z$1.ZodString;
|
|
7134
|
-
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>>>>>;
|
|
7135
7133
|
id: z$1.ZodString;
|
|
7136
|
-
|
|
7137
|
-
updatedAt: z$1.ZodOptional<z$1.ZodString>;
|
|
7138
|
-
status: z$1.ZodOptional<z$1.ZodString>;
|
|
7139
|
-
capabilities: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodType<ToolServerCapabilities, ToolServerCapabilities, z$1.core.$ZodTypeInternals<ToolServerCapabilities, ToolServerCapabilities>>>>;
|
|
7134
|
+
name: z$1.ZodString;
|
|
7140
7135
|
config: z$1.ZodType<{
|
|
7141
7136
|
type: "mcp";
|
|
7142
7137
|
mcp: ToolMcpConfig;
|
|
@@ -7151,6 +7146,11 @@ declare const FullGraphDefinitionSchema: z$1.ZodObject<{
|
|
|
7151
7146
|
mcp: ToolMcpConfig;
|
|
7152
7147
|
}>>;
|
|
7153
7148
|
credentialReferenceId: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodString>>;
|
|
7149
|
+
createdAt: z$1.ZodOptional<z$1.ZodString>;
|
|
7150
|
+
updatedAt: z$1.ZodOptional<z$1.ZodString>;
|
|
7151
|
+
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>>>>>;
|
|
7152
|
+
status: z$1.ZodOptional<z$1.ZodString>;
|
|
7153
|
+
capabilities: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodType<ToolServerCapabilities, ToolServerCapabilities, z$1.core.$ZodTypeInternals<ToolServerCapabilities, ToolServerCapabilities>>>>;
|
|
7154
7154
|
imageUrl: z$1.ZodOptional<z$1.ZodString>;
|
|
7155
7155
|
lastHealthCheck: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodString>>;
|
|
7156
7156
|
lastError: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodString>>;
|
|
@@ -7168,8 +7168,8 @@ declare const FullGraphDefinitionSchema: z$1.ZodObject<{
|
|
|
7168
7168
|
}>;
|
|
7169
7169
|
}, z$1.core.$strip>>>;
|
|
7170
7170
|
dataComponents: z$1.ZodOptional<z$1.ZodRecord<z$1.ZodString, z$1.ZodObject<{
|
|
7171
|
-
name: z$1.ZodString;
|
|
7172
7171
|
id: z$1.ZodString;
|
|
7172
|
+
name: z$1.ZodString;
|
|
7173
7173
|
description: z$1.ZodString;
|
|
7174
7174
|
createdAt: z$1.ZodOptional<z$1.ZodString>;
|
|
7175
7175
|
updatedAt: z$1.ZodOptional<z$1.ZodString>;
|
|
@@ -7186,8 +7186,8 @@ declare const FullGraphDefinitionSchema: z$1.ZodObject<{
|
|
|
7186
7186
|
in: {};
|
|
7187
7187
|
}>>>;
|
|
7188
7188
|
contextConfig: z$1.ZodOptional<z$1.ZodObject<{
|
|
7189
|
-
name: z$1.ZodString;
|
|
7190
7189
|
id: z$1.ZodString;
|
|
7190
|
+
name: z$1.ZodString;
|
|
7191
7191
|
description: z$1.ZodString;
|
|
7192
7192
|
requestContextSchema: z$1.ZodOptional<z$1.ZodUnknown>;
|
|
7193
7193
|
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>>>>>;
|
|
@@ -7451,9 +7451,9 @@ declare const ProjectSelectSchema: drizzle_zod.BuildSchema<"select", {
|
|
|
7451
7451
|
}>;
|
|
7452
7452
|
}, undefined, undefined>;
|
|
7453
7453
|
declare const ProjectInsertSchema: z$1.ZodObject<{
|
|
7454
|
-
name: z$1.ZodString;
|
|
7455
7454
|
tenantId: z$1.ZodString;
|
|
7456
7455
|
id: z$1.ZodString;
|
|
7456
|
+
name: z$1.ZodString;
|
|
7457
7457
|
description: z$1.ZodString;
|
|
7458
7458
|
models: z$1.ZodOptional<z$1.ZodObject<{
|
|
7459
7459
|
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>;
|
|
7495
7494
|
tenantId: z$1.ZodOptional<z$1.ZodString>;
|
|
7496
7495
|
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<{
|
|
@@ -7531,8 +7531,8 @@ declare const ProjectUpdateSchema: z$1.ZodObject<{
|
|
|
7531
7531
|
in: {};
|
|
7532
7532
|
}>;
|
|
7533
7533
|
declare const ProjectApiSelectSchema: z$1.ZodObject<{
|
|
7534
|
-
name: z$1.ZodString;
|
|
7535
7534
|
id: z$1.ZodString;
|
|
7535
|
+
name: z$1.ZodString;
|
|
7536
7536
|
description: z$1.ZodString;
|
|
7537
7537
|
createdAt: z$1.ZodString;
|
|
7538
7538
|
updatedAt: z$1.ZodString;
|
|
@@ -7623,8 +7623,8 @@ declare const ProjectApiSelectSchema: z$1.ZodObject<{
|
|
|
7623
7623
|
in: {};
|
|
7624
7624
|
}>;
|
|
7625
7625
|
declare const ProjectApiInsertSchema: z$1.ZodObject<{
|
|
7626
|
-
name: z$1.ZodString;
|
|
7627
7626
|
id: z$1.ZodString;
|
|
7627
|
+
name: z$1.ZodString;
|
|
7628
7628
|
description: z$1.ZodString;
|
|
7629
7629
|
models: z$1.ZodOptional<z$1.ZodObject<{
|
|
7630
7630
|
base: z$1.ZodObject<{
|
|
@@ -7662,8 +7662,8 @@ declare const ProjectApiInsertSchema: z$1.ZodObject<{
|
|
|
7662
7662
|
in: {};
|
|
7663
7663
|
}>;
|
|
7664
7664
|
declare const ProjectApiUpdateSchema: z$1.ZodObject<{
|
|
7665
|
-
name: z$1.ZodOptional<z$1.ZodString>;
|
|
7666
7665
|
id: z$1.ZodOptional<z$1.ZodString>;
|
|
7666
|
+
name: z$1.ZodOptional<z$1.ZodString>;
|
|
7667
7667
|
description: z$1.ZodOptional<z$1.ZodString>;
|
|
7668
7668
|
models: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodObject<{
|
|
7669
7669
|
base: z$1.ZodObject<{
|