@inkeep/agents-core 0.0.0-dev-20250911052037 → 0.0.0-dev-20250911063109
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-xZJcE9v-.d.ts → schema-CGaPaV-v.d.ts} +1 -1
- package/dist/{schema-DDI2Py7i.d.cts → schema-Dz_UqY76.d.cts} +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 +1 -1
- package/dist/{entities-Cc3_mgG5.d.cts → entities-CI0T2xx-.d.cts} +114 -114
- package/dist/{entities-Cc3_mgG5.d.ts → entities-CI0T2xx-.d.ts} +114 -114
|
@@ -956,10 +956,9 @@ declare const AgentUpdateSchema: z$1.ZodObject<{
|
|
|
956
956
|
in: {};
|
|
957
957
|
}>;
|
|
958
958
|
declare const AgentApiSelectSchema: z$1.ZodObject<{
|
|
959
|
-
id: z$1.ZodString;
|
|
960
959
|
name: z$1.ZodString;
|
|
960
|
+
id: z$1.ZodString;
|
|
961
961
|
description: z$1.ZodString;
|
|
962
|
-
prompt: z$1.ZodString;
|
|
963
962
|
createdAt: z$1.ZodString;
|
|
964
963
|
updatedAt: z$1.ZodString;
|
|
965
964
|
models: z$1.ZodNullable<z$1.ZodType<{
|
|
@@ -1024,13 +1023,13 @@ declare const AgentApiSelectSchema: z$1.ZodObject<{
|
|
|
1024
1023
|
}, {
|
|
1025
1024
|
stepCountIs?: number;
|
|
1026
1025
|
}>>>;
|
|
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
|
-
id: z$1.ZodString;
|
|
1031
1030
|
name: z$1.ZodString;
|
|
1031
|
+
id: z$1.ZodString;
|
|
1032
1032
|
description: z$1.ZodString;
|
|
1033
|
-
prompt: z$1.ZodString;
|
|
1034
1033
|
createdAt: z$1.ZodOptional<z$1.ZodString>;
|
|
1035
1034
|
updatedAt: z$1.ZodOptional<z$1.ZodString>;
|
|
1036
1035
|
models: z$1.ZodOptional<z$1.ZodObject<{
|
|
@@ -1056,13 +1055,13 @@ declare const AgentApiInsertSchema: z$1.ZodObject<{
|
|
|
1056
1055
|
}, {
|
|
1057
1056
|
stepCountIs?: number;
|
|
1058
1057
|
}>>>>;
|
|
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
|
-
id: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodString>>;
|
|
1063
1062
|
name: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodString>>;
|
|
1063
|
+
id: 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>>;
|
|
1066
1065
|
createdAt: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodOptional<z$1.ZodString>>>;
|
|
1067
1066
|
updatedAt: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodOptional<z$1.ZodString>>>;
|
|
1068
1067
|
models: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodOptional<z$1.ZodObject<{
|
|
@@ -1088,6 +1087,7 @@ declare const AgentApiUpdateSchema: z$1.ZodObject<{
|
|
|
1088
1087
|
}, {
|
|
1089
1088
|
stepCountIs?: number;
|
|
1090
1089
|
}>>>>>>;
|
|
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;
|
|
1318
1317
|
createdAt: z$1.ZodString;
|
|
1319
1318
|
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;
|
|
1328
1327
|
createdAt: z$1.ZodOptional<z$1.ZodString>;
|
|
1329
1328
|
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>>;
|
|
1341
1340
|
createdAt: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodOptional<z$1.ZodString>>>;
|
|
1342
1341
|
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;
|
|
1374
1373
|
createdAt: z$1.ZodOptional<z$1.ZodString>;
|
|
1375
1374
|
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,12 +1954,11 @@ declare const AgentGraphUpdateSchema: z$1.ZodObject<{
|
|
|
1954
1954
|
in: {};
|
|
1955
1955
|
}>;
|
|
1956
1956
|
declare const AgentGraphApiSelectSchema: z$1.ZodObject<{
|
|
1957
|
-
id: z$1.ZodString;
|
|
1958
1957
|
name: z$1.ZodString;
|
|
1958
|
+
id: 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;
|
|
1963
1962
|
models: z$1.ZodNullable<z$1.ZodType<{
|
|
1964
1963
|
base?: {
|
|
1965
1964
|
model?: string | undefined;
|
|
@@ -2022,7 +2021,8 @@ declare const AgentGraphApiSelectSchema: z$1.ZodObject<{
|
|
|
2022
2021
|
}, {
|
|
2023
2022
|
transferCountIs?: number;
|
|
2024
2023
|
}>>>;
|
|
2025
|
-
|
|
2024
|
+
contextConfigId: z$1.ZodNullable<z$1.ZodString>;
|
|
2025
|
+
defaultAgentId: z$1.ZodString;
|
|
2026
2026
|
statusUpdates: z$1.ZodNullable<z$1.ZodType<{
|
|
2027
2027
|
enabled?: boolean | undefined;
|
|
2028
2028
|
numEvents?: number | undefined;
|
|
@@ -2080,14 +2080,13 @@ declare const AgentGraphApiSelectSchema: z$1.ZodObject<{
|
|
|
2080
2080
|
} | undefined;
|
|
2081
2081
|
}[] | undefined;
|
|
2082
2082
|
}>>>;
|
|
2083
|
-
|
|
2083
|
+
graphPrompt: 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;
|
|
2091
2090
|
models: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodType<{
|
|
2092
2091
|
base?: {
|
|
2093
2092
|
model?: string | undefined;
|
|
@@ -2150,7 +2149,8 @@ declare const AgentGraphApiInsertSchema: z$1.ZodObject<{
|
|
|
2150
2149
|
}, {
|
|
2151
2150
|
transferCountIs?: number;
|
|
2152
2151
|
}>>>>;
|
|
2153
|
-
|
|
2152
|
+
contextConfigId: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodString>>;
|
|
2153
|
+
defaultAgentId: 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,16 +2208,15 @@ declare const AgentGraphApiInsertSchema: z$1.ZodObject<{
|
|
|
2208
2208
|
} | undefined;
|
|
2209
2209
|
}[] | undefined;
|
|
2210
2210
|
}>>>>;
|
|
2211
|
-
|
|
2211
|
+
graphPrompt: 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
|
-
id: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodString>>;
|
|
2216
2215
|
name: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodString>>;
|
|
2216
|
+
id: 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>>;
|
|
2221
2220
|
models: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodOptional<z$1.ZodNullable<z$1.ZodType<{
|
|
2222
2221
|
base?: {
|
|
2223
2222
|
model?: string | undefined;
|
|
@@ -2280,7 +2279,8 @@ declare const AgentGraphApiUpdateSchema: z$1.ZodObject<{
|
|
|
2280
2279
|
}, {
|
|
2281
2280
|
transferCountIs?: number;
|
|
2282
2281
|
}>>>>>>;
|
|
2283
|
-
|
|
2282
|
+
contextConfigId: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodOptional<z$1.ZodNullable<z$1.ZodString>>>>;
|
|
2283
|
+
defaultAgentId: z$1.ZodOptional<z$1.ZodOptional<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
|
+
graphPrompt: 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>>>;
|
|
2547
2548
|
id: z$1.ZodString;
|
|
2548
2549
|
createdAt: z$1.ZodString;
|
|
2549
2550
|
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>>>>;
|
|
2556
2557
|
id: z$1.ZodString;
|
|
2557
2558
|
createdAt: z$1.ZodOptional<z$1.ZodString>;
|
|
2558
2559
|
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>>>>>>;
|
|
2566
2567
|
id: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodString>>;
|
|
2567
2568
|
createdAt: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodOptional<z$1.ZodString>>>;
|
|
2568
2569
|
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>>>;
|
|
3371
3372
|
id: z$1.ZodString;
|
|
3372
3373
|
createdAt: z$1.ZodString;
|
|
3373
3374
|
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>>>>;
|
|
3381
3382
|
id: z$1.ZodString;
|
|
3382
3383
|
createdAt: z$1.ZodOptional<z$1.ZodString>;
|
|
3383
3384
|
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>>>>>>;
|
|
3392
3393
|
id: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodString>>;
|
|
3393
3394
|
createdAt: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodOptional<z$1.ZodString>>>;
|
|
3394
3395
|
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>>>;
|
|
3835
3836
|
id: z$1.ZodString;
|
|
3836
3837
|
createdAt: z$1.ZodString;
|
|
3837
3838
|
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>>>>;
|
|
3855
3856
|
id: z$1.ZodString;
|
|
3856
3857
|
createdAt: z$1.ZodOptional<z$1.ZodString>;
|
|
3857
3858
|
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>>>>>>;
|
|
3875
3876
|
id: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodString>>;
|
|
3876
3877
|
createdAt: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodOptional<z$1.ZodString>>>;
|
|
3877
3878
|
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>>;
|
|
4409
4408
|
createdAt: z$1.ZodString;
|
|
4410
4409
|
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>>;
|
|
4422
4421
|
createdAt: z$1.ZodOptional<z$1.ZodString>;
|
|
4423
4422
|
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>>>>;
|
|
4435
4434
|
createdAt: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodOptional<z$1.ZodString>>>;
|
|
4436
4435
|
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;
|
|
4613
4614
|
tenantId: z$1.ZodString;
|
|
4614
4615
|
projectId: z$1.ZodString;
|
|
4615
4616
|
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
|
-
id: z$1.ZodString;
|
|
4638
4637
|
name: z$1.ZodString;
|
|
4638
|
+
id: 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
|
-
id: z$1.ZodString;
|
|
4646
4645
|
name: z$1.ZodString;
|
|
4646
|
+
id: 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
|
-
id: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodString>>;
|
|
4654
4653
|
name: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodString>>;
|
|
4654
|
+
id: 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
|
-
id: z$1.ZodString;
|
|
5124
5123
|
name: z$1.ZodString;
|
|
5124
|
+
id: 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
|
-
id: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodString>>;
|
|
5143
5142
|
name: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodString>>;
|
|
5143
|
+
id: 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,40 +5350,39 @@ declare const ExternalAgentUpdateSchema: z$1.ZodObject<{
|
|
|
5350
5350
|
in: {};
|
|
5351
5351
|
}>;
|
|
5352
5352
|
declare const ExternalAgentApiSelectSchema: z$1.ZodObject<{
|
|
5353
|
-
id: z$1.ZodString;
|
|
5354
5353
|
name: z$1.ZodString;
|
|
5354
|
+
headers: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodRecord<z$1.ZodString, z$1.ZodString>>>;
|
|
5355
|
+
id: z$1.ZodString;
|
|
5355
5356
|
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>>;
|
|
5359
5360
|
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
|
-
id: z$1.ZodString;
|
|
5364
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
|
+
id: z$1.ZodString;
|
|
5365
5366
|
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>>;
|
|
5369
5370
|
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
|
-
id: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodString>>;
|
|
5374
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
|
+
id: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodString>>;
|
|
5375
5376
|
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>>>>;
|
|
5379
5380
|
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
|
-
id: z$1.ZodString;
|
|
5384
5383
|
name: z$1.ZodString;
|
|
5384
|
+
id: z$1.ZodString;
|
|
5385
5385
|
description: z$1.ZodString;
|
|
5386
|
-
prompt: z$1.ZodString;
|
|
5387
5386
|
createdAt: z$1.ZodString;
|
|
5388
5387
|
updatedAt: z$1.ZodString;
|
|
5389
5388
|
models: z$1.ZodNullable<z$1.ZodType<{
|
|
@@ -5448,17 +5447,18 @@ declare const AllAgentSchema: z$1.ZodDiscriminatedUnion<[z$1.ZodObject<{
|
|
|
5448
5447
|
}, {
|
|
5449
5448
|
stepCountIs?: number;
|
|
5450
5449
|
}>>>;
|
|
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
|
-
id: z$1.ZodString;
|
|
5455
5454
|
name: z$1.ZodString;
|
|
5455
|
+
headers: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodRecord<z$1.ZodString, z$1.ZodString>>>;
|
|
5456
|
+
id: z$1.ZodString;
|
|
5456
5457
|
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>>;
|
|
5460
5461
|
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>>;
|
|
5692
5693
|
graphId: z$1.ZodOptional<z$1.ZodString>;
|
|
5693
5694
|
lastUsedAt: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodNullable<z$1.ZodString>>>;
|
|
5694
5695
|
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;
|
|
5702
5704
|
graphId: z$1.ZodString;
|
|
5703
5705
|
publicId: z$1.ZodString;
|
|
5704
5706
|
keyPrefix: z$1.ZodString;
|
|
5705
5707
|
lastUsedAt: z$1.ZodNullable<z$1.ZodString>;
|
|
5706
5708
|
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;
|
|
5717
5719
|
graphId: z$1.ZodString;
|
|
5718
5720
|
publicId: z$1.ZodString;
|
|
5719
5721
|
keyPrefix: z$1.ZodString;
|
|
5720
5722
|
lastUsedAt: z$1.ZodNullable<z$1.ZodString>;
|
|
5721
5723
|
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
|
-
graphId: z$1.ZodString;
|
|
5733
|
-
expiresAt: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodString>>;
|
|
5734
5732
|
createdAt: z$1.ZodOptional<z$1.ZodString>;
|
|
5735
5733
|
updatedAt: z$1.ZodOptional<z$1.ZodString>;
|
|
5734
|
+
graphId: z$1.ZodString;
|
|
5735
|
+
expiresAt: z$1.ZodOptional<z$1.ZodNullable<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>>;
|
|
5741
5742
|
graphId: z$1.ZodOptional<z$1.ZodString>;
|
|
5742
5743
|
lastUsedAt: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodNullable<z$1.ZodString>>>;
|
|
5743
5744
|
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;
|
|
5849
5848
|
name: z$1.ZodString;
|
|
5850
5849
|
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,8 +5919,13 @@ declare const ToolUpdateSchema: z$1.ZodObject<{
|
|
|
5919
5919
|
in: {};
|
|
5920
5920
|
}>;
|
|
5921
5921
|
declare const ToolApiSelectSchema: z$1.ZodObject<{
|
|
5922
|
-
id: z$1.ZodString;
|
|
5923
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
|
+
id: z$1.ZodString;
|
|
5925
|
+
createdAt: z$1.ZodString;
|
|
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>>>;
|
|
5924
5929
|
config: z$1.ZodType<{
|
|
5925
5930
|
type: "mcp";
|
|
5926
5931
|
mcp: ToolMcpConfig;
|
|
@@ -5935,11 +5940,6 @@ declare const ToolApiSelectSchema: z$1.ZodObject<{
|
|
|
5935
5940
|
mcp: ToolMcpConfig;
|
|
5936
5941
|
}>>;
|
|
5937
5942
|
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,8 +5947,13 @@ 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
|
-
id: z$1.ZodString;
|
|
5951
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
|
+
id: z$1.ZodString;
|
|
5953
|
+
createdAt: z$1.ZodOptional<z$1.ZodString>;
|
|
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>>>>;
|
|
5952
5957
|
config: z$1.ZodType<{
|
|
5953
5958
|
type: "mcp";
|
|
5954
5959
|
mcp: ToolMcpConfig;
|
|
@@ -5963,11 +5968,6 @@ declare const ToolApiInsertSchema: z$1.ZodObject<{
|
|
|
5963
5968
|
mcp: ToolMcpConfig;
|
|
5964
5969
|
}>>;
|
|
5965
5970
|
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,8 +5975,13 @@ 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
|
-
id: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodString>>;
|
|
5979
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
|
+
id: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodString>>;
|
|
5981
|
+
createdAt: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodOptional<z$1.ZodString>>>;
|
|
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>>>>>>;
|
|
5980
5985
|
config: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodType<{
|
|
5981
5986
|
type: "mcp";
|
|
5982
5987
|
mcp: ToolMcpConfig;
|
|
@@ -5991,11 +5996,6 @@ declare const ToolApiUpdateSchema: z$1.ZodObject<{
|
|
|
5991
5996
|
mcp: ToolMcpConfig;
|
|
5992
5997
|
}>>>>;
|
|
5993
5998
|
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;
|
|
6068
6069
|
tenantId: z$1.ZodString;
|
|
6069
6070
|
projectId: z$1.ZodString;
|
|
6070
6071
|
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>;
|
|
6080
6081
|
tenantId: z$1.ZodOptional<z$1.ZodString>;
|
|
6081
6082
|
projectId: z$1.ZodOptional<z$1.ZodString>;
|
|
6082
6083
|
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
|
-
id: z$1.ZodString;
|
|
6093
6092
|
name: z$1.ZodString;
|
|
6093
|
+
id: z$1.ZodString;
|
|
6094
6094
|
description: z$1.ZodString;
|
|
6095
|
-
createdAt: z$1.ZodString;
|
|
6096
|
-
updatedAt: z$1.ZodString;
|
|
6097
6095
|
requestContextSchema: z$1.ZodOptional<z$1.ZodUnknown>;
|
|
6098
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
|
+
createdAt: z$1.ZodString;
|
|
6098
|
+
updatedAt: z$1.ZodString;
|
|
6099
6099
|
}, z$1.core.$strip>;
|
|
6100
6100
|
declare const ContextConfigApiInsertSchema: z$1.ZodObject<{
|
|
6101
|
-
id: z$1.ZodString;
|
|
6102
6101
|
name: z$1.ZodString;
|
|
6102
|
+
id: 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
|
-
id: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodString>>;
|
|
6109
6108
|
name: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodString>>;
|
|
6109
|
+
id: 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;
|
|
6968
6967
|
type: z$1.ZodString;
|
|
6969
6968
|
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;
|
|
6970
6971
|
description: z$1.ZodNullable<z$1.ZodString>;
|
|
6971
6972
|
createdAt: z$1.ZodString;
|
|
6972
6973
|
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;
|
|
6985
6984
|
type: z$1.ZodOptional<z$1.ZodString>;
|
|
6986
6985
|
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;
|
|
6987
6988
|
description: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodString>>;
|
|
6988
6989
|
createdAt: z$1.ZodOptional<z$1.ZodString>;
|
|
6989
6990
|
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>>;
|
|
7002
7001
|
type: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodOptional<z$1.ZodString>>>;
|
|
7003
7002
|
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>>;
|
|
7004
7005
|
description: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodOptional<z$1.ZodNullable<z$1.ZodString>>>>;
|
|
7005
7006
|
createdAt: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodOptional<z$1.ZodString>>>;
|
|
7006
7007
|
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,10 +7039,9 @@ 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
|
-
id: z$1.ZodString;
|
|
7043
7042
|
name: z$1.ZodString;
|
|
7043
|
+
id: z$1.ZodString;
|
|
7044
7044
|
description: z$1.ZodString;
|
|
7045
|
-
prompt: z$1.ZodString;
|
|
7046
7045
|
createdAt: z$1.ZodOptional<z$1.ZodString>;
|
|
7047
7046
|
updatedAt: z$1.ZodOptional<z$1.ZodString>;
|
|
7048
7047
|
models: z$1.ZodOptional<z$1.ZodObject<{
|
|
@@ -7068,6 +7067,7 @@ declare const FullGraphAgentInsertSchema: z$1.ZodObject<{
|
|
|
7068
7067
|
}, {
|
|
7069
7068
|
stepCountIs?: number;
|
|
7070
7069
|
}>>>>;
|
|
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,14 +7080,13 @@ 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
|
-
defaultAgentId: z$1.ZodString;
|
|
7084
7083
|
contextConfigId: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodString>>;
|
|
7084
|
+
defaultAgentId: 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
|
-
id: z$1.ZodString;
|
|
7088
7087
|
name: z$1.ZodString;
|
|
7088
|
+
id: z$1.ZodString;
|
|
7089
7089
|
description: z$1.ZodString;
|
|
7090
|
-
prompt: z$1.ZodString;
|
|
7091
7090
|
createdAt: z$1.ZodOptional<z$1.ZodString>;
|
|
7092
7091
|
updatedAt: z$1.ZodOptional<z$1.ZodString>;
|
|
7093
7092
|
models: z$1.ZodOptional<z$1.ZodObject<{
|
|
@@ -7113,6 +7112,7 @@ declare const FullGraphDefinitionSchema: z$1.ZodObject<{
|
|
|
7113
7112
|
}, {
|
|
7114
7113
|
stepCountIs?: number;
|
|
7115
7114
|
}>>>>;
|
|
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,18 +7120,23 @@ 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
|
-
id: z$1.ZodString;
|
|
7124
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
|
+
id: z$1.ZodString;
|
|
7125
7126
|
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>>;
|
|
7129
7130
|
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
|
-
id: z$1.ZodString;
|
|
7134
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
|
+
id: z$1.ZodString;
|
|
7136
|
+
createdAt: z$1.ZodOptional<z$1.ZodString>;
|
|
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>>>>;
|
|
7135
7140
|
config: z$1.ZodType<{
|
|
7136
7141
|
type: "mcp";
|
|
7137
7142
|
mcp: ToolMcpConfig;
|
|
@@ -7146,11 +7151,6 @@ declare const FullGraphDefinitionSchema: z$1.ZodObject<{
|
|
|
7146
7151
|
mcp: ToolMcpConfig;
|
|
7147
7152
|
}>>;
|
|
7148
7153
|
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
|
-
id: z$1.ZodString;
|
|
7172
7171
|
name: z$1.ZodString;
|
|
7172
|
+
id: 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
|
-
id: z$1.ZodString;
|
|
7190
7189
|
name: z$1.ZodString;
|
|
7190
|
+
id: 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;
|
|
7454
7455
|
tenantId: z$1.ZodString;
|
|
7455
7456
|
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>;
|
|
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<{
|
|
@@ -7531,8 +7531,8 @@ declare const ProjectUpdateSchema: z$1.ZodObject<{
|
|
|
7531
7531
|
in: {};
|
|
7532
7532
|
}>;
|
|
7533
7533
|
declare const ProjectApiSelectSchema: z$1.ZodObject<{
|
|
7534
|
-
id: z$1.ZodString;
|
|
7535
7534
|
name: z$1.ZodString;
|
|
7535
|
+
id: 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
|
-
id: z$1.ZodString;
|
|
7627
7626
|
name: z$1.ZodString;
|
|
7627
|
+
id: 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
|
-
id: z$1.ZodOptional<z$1.ZodString>;
|
|
7666
7665
|
name: z$1.ZodOptional<z$1.ZodString>;
|
|
7666
|
+
id: 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<{
|