@inkeep/agents-core 0.8.5 → 0.8.7
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 +7 -7
- package/dist/client-exports.d.ts +7 -7
- package/dist/db/schema.d.cts +2 -2
- package/dist/db/schema.d.ts +2 -2
- package/dist/index.cjs +4 -2
- package/dist/index.d.cts +176 -176
- package/dist/index.d.ts +176 -176
- package/dist/index.js +4 -2
- package/dist/{schema-CLlwzACy.d.ts → schema-BsLudkuV.d.cts} +1 -1
- package/dist/{schema-CfuN6Yh-.d.cts → schema-CjWNQuEl.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 +1 -1
- package/dist/{utility-DwuJfFDC.d.cts → utility-DP6lt8z3.d.cts} +110 -110
- package/dist/{utility-DwuJfFDC.d.ts → utility-DP6lt8z3.d.ts} +110 -110
|
@@ -767,10 +767,6 @@ declare const AgentApiSelectSchema: z.ZodObject<{
|
|
|
767
767
|
id: z.ZodString;
|
|
768
768
|
name: z.ZodString;
|
|
769
769
|
description: z.ZodString;
|
|
770
|
-
prompt: z.ZodString;
|
|
771
|
-
createdAt: z.ZodString;
|
|
772
|
-
updatedAt: z.ZodString;
|
|
773
|
-
conversationHistoryConfig: z.ZodNullable<z.ZodType<ConversationHistoryConfig, ConversationHistoryConfig, z.core.$ZodTypeInternals<ConversationHistoryConfig, ConversationHistoryConfig>>>;
|
|
774
770
|
models: z.ZodNullable<z.ZodType<{
|
|
775
771
|
base?: {
|
|
776
772
|
model?: string | undefined;
|
|
@@ -833,15 +829,15 @@ declare const AgentApiSelectSchema: z.ZodObject<{
|
|
|
833
829
|
}, {
|
|
834
830
|
stepCountIs?: number | undefined;
|
|
835
831
|
}>>>;
|
|
832
|
+
createdAt: z.ZodString;
|
|
833
|
+
updatedAt: z.ZodString;
|
|
834
|
+
prompt: z.ZodString;
|
|
835
|
+
conversationHistoryConfig: z.ZodNullable<z.ZodType<ConversationHistoryConfig, ConversationHistoryConfig, z.core.$ZodTypeInternals<ConversationHistoryConfig, ConversationHistoryConfig>>>;
|
|
836
836
|
}, z.core.$strip>;
|
|
837
837
|
declare const AgentApiInsertSchema: z.ZodObject<{
|
|
838
838
|
id: z.ZodString;
|
|
839
839
|
name: z.ZodString;
|
|
840
840
|
description: z.ZodString;
|
|
841
|
-
prompt: z.ZodString;
|
|
842
|
-
createdAt: z.ZodOptional<z.ZodString>;
|
|
843
|
-
updatedAt: z.ZodOptional<z.ZodString>;
|
|
844
|
-
conversationHistoryConfig: z.ZodOptional<z.ZodNullable<z.ZodType<ConversationHistoryConfig, ConversationHistoryConfig, z.core.$ZodTypeInternals<ConversationHistoryConfig, ConversationHistoryConfig>>>>;
|
|
845
841
|
models: z.ZodOptional<z.ZodObject<{
|
|
846
842
|
base: z.ZodOptional<z.ZodObject<{
|
|
847
843
|
model: z.ZodOptional<z.ZodString>;
|
|
@@ -865,15 +861,15 @@ declare const AgentApiInsertSchema: z.ZodObject<{
|
|
|
865
861
|
}, {
|
|
866
862
|
stepCountIs?: number | undefined;
|
|
867
863
|
}>>>>;
|
|
864
|
+
createdAt: z.ZodOptional<z.ZodString>;
|
|
865
|
+
updatedAt: z.ZodOptional<z.ZodString>;
|
|
866
|
+
prompt: z.ZodString;
|
|
867
|
+
conversationHistoryConfig: z.ZodOptional<z.ZodNullable<z.ZodType<ConversationHistoryConfig, ConversationHistoryConfig, z.core.$ZodTypeInternals<ConversationHistoryConfig, ConversationHistoryConfig>>>>;
|
|
868
868
|
}, z.core.$strip>;
|
|
869
869
|
declare const AgentApiUpdateSchema: z.ZodObject<{
|
|
870
870
|
id: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
871
871
|
name: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
872
872
|
description: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
873
|
-
prompt: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
874
|
-
createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
875
|
-
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
876
|
-
conversationHistoryConfig: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<ConversationHistoryConfig, ConversationHistoryConfig, z.core.$ZodTypeInternals<ConversationHistoryConfig, ConversationHistoryConfig>>>>>>;
|
|
877
873
|
models: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodObject<{
|
|
878
874
|
base: z.ZodOptional<z.ZodObject<{
|
|
879
875
|
model: z.ZodOptional<z.ZodString>;
|
|
@@ -897,6 +893,10 @@ declare const AgentApiUpdateSchema: z.ZodObject<{
|
|
|
897
893
|
}, {
|
|
898
894
|
stepCountIs?: number | undefined;
|
|
899
895
|
}>>>>>>;
|
|
896
|
+
createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
897
|
+
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
898
|
+
prompt: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
899
|
+
conversationHistoryConfig: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<ConversationHistoryConfig, ConversationHistoryConfig, z.core.$ZodTypeInternals<ConversationHistoryConfig, ConversationHistoryConfig>>>>>>;
|
|
900
900
|
}, z.core.$strip>;
|
|
901
901
|
declare const AgentRelationSelectSchema: drizzle_zod.BuildSchema<"select", {
|
|
902
902
|
tenantId: drizzle_orm_sqlite_core.SQLiteColumn<{
|
|
@@ -1175,9 +1175,9 @@ declare const ExternalAgentRelationInsertSchema: z.ZodObject<{
|
|
|
1175
1175
|
}>;
|
|
1176
1176
|
declare const ExternalAgentRelationApiInsertSchema: z.ZodObject<{
|
|
1177
1177
|
id: z.ZodString;
|
|
1178
|
-
graphId: z.ZodString;
|
|
1179
1178
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
1180
1179
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
1180
|
+
graphId: z.ZodString;
|
|
1181
1181
|
sourceAgentId: z.ZodString;
|
|
1182
1182
|
targetAgentId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
1183
1183
|
externalAgentId: z.ZodString;
|
|
@@ -1762,9 +1762,6 @@ declare const AgentGraphApiSelectSchema: z.ZodObject<{
|
|
|
1762
1762
|
id: z.ZodString;
|
|
1763
1763
|
name: z.ZodString;
|
|
1764
1764
|
description: z.ZodNullable<z.ZodString>;
|
|
1765
|
-
createdAt: z.ZodString;
|
|
1766
|
-
updatedAt: z.ZodString;
|
|
1767
|
-
defaultAgentId: z.ZodNullable<z.ZodString>;
|
|
1768
1765
|
models: z.ZodNullable<z.ZodType<{
|
|
1769
1766
|
base?: {
|
|
1770
1767
|
model?: string | undefined;
|
|
@@ -1827,6 +1824,9 @@ declare const AgentGraphApiSelectSchema: z.ZodObject<{
|
|
|
1827
1824
|
}, {
|
|
1828
1825
|
transferCountIs?: number | undefined;
|
|
1829
1826
|
}>>>;
|
|
1827
|
+
createdAt: z.ZodString;
|
|
1828
|
+
updatedAt: z.ZodString;
|
|
1829
|
+
defaultAgentId: z.ZodNullable<z.ZodString>;
|
|
1830
1830
|
contextConfigId: z.ZodNullable<z.ZodString>;
|
|
1831
1831
|
statusUpdates: z.ZodNullable<z.ZodType<{
|
|
1832
1832
|
enabled?: boolean | undefined;
|
|
@@ -1890,9 +1890,6 @@ declare const AgentGraphApiSelectSchema: z.ZodObject<{
|
|
|
1890
1890
|
declare const AgentGraphApiInsertSchema: z.ZodObject<{
|
|
1891
1891
|
name: z.ZodString;
|
|
1892
1892
|
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
1893
|
-
createdAt: z.ZodOptional<z.ZodString>;
|
|
1894
|
-
updatedAt: z.ZodOptional<z.ZodString>;
|
|
1895
|
-
defaultAgentId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
1896
1893
|
models: z.ZodOptional<z.ZodNullable<z.ZodType<{
|
|
1897
1894
|
base?: {
|
|
1898
1895
|
model?: string | undefined;
|
|
@@ -1955,6 +1952,9 @@ declare const AgentGraphApiInsertSchema: z.ZodObject<{
|
|
|
1955
1952
|
}, {
|
|
1956
1953
|
transferCountIs?: number | undefined;
|
|
1957
1954
|
}>>>>;
|
|
1955
|
+
createdAt: z.ZodOptional<z.ZodString>;
|
|
1956
|
+
updatedAt: z.ZodOptional<z.ZodString>;
|
|
1957
|
+
defaultAgentId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
1958
1958
|
contextConfigId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
1959
1959
|
statusUpdates: z.ZodOptional<z.ZodNullable<z.ZodType<{
|
|
1960
1960
|
enabled?: boolean | undefined;
|
|
@@ -2020,9 +2020,6 @@ declare const AgentGraphApiUpdateSchema: z.ZodObject<{
|
|
|
2020
2020
|
id: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
2021
2021
|
name: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
2022
2022
|
description: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
2023
|
-
createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
2024
|
-
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
2025
|
-
defaultAgentId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
2026
2023
|
models: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<{
|
|
2027
2024
|
base?: {
|
|
2028
2025
|
model?: string | undefined;
|
|
@@ -2085,6 +2082,9 @@ declare const AgentGraphApiUpdateSchema: z.ZodObject<{
|
|
|
2085
2082
|
}, {
|
|
2086
2083
|
transferCountIs?: number | undefined;
|
|
2087
2084
|
}>>>>>>;
|
|
2085
|
+
createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
2086
|
+
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
2087
|
+
defaultAgentId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
2088
2088
|
contextConfigId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
2089
2089
|
statusUpdates: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<{
|
|
2090
2090
|
enabled?: boolean | undefined;
|
|
@@ -2352,29 +2352,29 @@ declare const TaskApiSelectSchema: z.ZodObject<{
|
|
|
2352
2352
|
id: z.ZodString;
|
|
2353
2353
|
createdAt: z.ZodString;
|
|
2354
2354
|
updatedAt: z.ZodString;
|
|
2355
|
-
metadata: z.ZodNullable<z.ZodType<TaskMetadataConfig, TaskMetadataConfig, z.core.$ZodTypeInternals<TaskMetadataConfig, TaskMetadataConfig>>>;
|
|
2356
|
-
status: z.ZodString;
|
|
2357
2355
|
contextId: z.ZodString;
|
|
2356
|
+
status: z.ZodString;
|
|
2357
|
+
metadata: z.ZodNullable<z.ZodType<TaskMetadataConfig, TaskMetadataConfig, z.core.$ZodTypeInternals<TaskMetadataConfig, TaskMetadataConfig>>>;
|
|
2358
2358
|
agentId: z.ZodString;
|
|
2359
2359
|
}, z.core.$strip>;
|
|
2360
2360
|
declare const TaskApiInsertSchema: z.ZodObject<{
|
|
2361
2361
|
id: z.ZodString;
|
|
2362
2362
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
2363
2363
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
2364
|
-
metadata: z.ZodOptional<z.ZodNullable<z.ZodType<TaskMetadataConfig, TaskMetadataConfig, z.core.$ZodTypeInternals<TaskMetadataConfig, TaskMetadataConfig>>>>;
|
|
2365
|
-
status: z.ZodString;
|
|
2366
2364
|
conversationId: z.ZodOptional<z.ZodString>;
|
|
2367
2365
|
contextId: z.ZodString;
|
|
2366
|
+
status: z.ZodString;
|
|
2367
|
+
metadata: z.ZodOptional<z.ZodNullable<z.ZodType<TaskMetadataConfig, TaskMetadataConfig, z.core.$ZodTypeInternals<TaskMetadataConfig, TaskMetadataConfig>>>>;
|
|
2368
2368
|
agentId: z.ZodString;
|
|
2369
2369
|
}, z.core.$strip>;
|
|
2370
2370
|
declare const TaskApiUpdateSchema: z.ZodObject<{
|
|
2371
2371
|
id: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
2372
2372
|
createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
2373
2373
|
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
2374
|
-
metadata: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<TaskMetadataConfig, TaskMetadataConfig, z.core.$ZodTypeInternals<TaskMetadataConfig, TaskMetadataConfig>>>>>>;
|
|
2375
|
-
status: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
2376
2374
|
conversationId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
2377
2375
|
contextId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
2376
|
+
status: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
2377
|
+
metadata: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<TaskMetadataConfig, TaskMetadataConfig, z.core.$ZodTypeInternals<TaskMetadataConfig, TaskMetadataConfig>>>>>>;
|
|
2378
2378
|
agentId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
2379
2379
|
}, z.core.$strip>;
|
|
2380
2380
|
declare const TaskRelationSelectSchema: drizzle_zod.BuildSchema<"select", {
|
|
@@ -3095,10 +3095,10 @@ declare const ConversationApiSelectSchema: z.ZodObject<{
|
|
|
3095
3095
|
id: z.ZodString;
|
|
3096
3096
|
createdAt: z.ZodString;
|
|
3097
3097
|
updatedAt: z.ZodString;
|
|
3098
|
-
title: z.ZodNullable<z.ZodString>;
|
|
3099
3098
|
metadata: z.ZodNullable<z.ZodType<ConversationMetadata, ConversationMetadata, z.core.$ZodTypeInternals<ConversationMetadata, ConversationMetadata>>>;
|
|
3100
3099
|
userId: z.ZodNullable<z.ZodString>;
|
|
3101
3100
|
activeAgentId: z.ZodString;
|
|
3101
|
+
title: z.ZodNullable<z.ZodString>;
|
|
3102
3102
|
lastContextResolution: z.ZodNullable<z.ZodString>;
|
|
3103
3103
|
}, z.core.$strip>;
|
|
3104
3104
|
declare const ConversationApiInsertSchema: z.ZodObject<{
|
|
@@ -3106,10 +3106,10 @@ declare const ConversationApiInsertSchema: z.ZodObject<{
|
|
|
3106
3106
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
3107
3107
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
3108
3108
|
contextConfigId: z.ZodOptional<z.ZodString>;
|
|
3109
|
-
title: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
3110
3109
|
metadata: z.ZodOptional<z.ZodNullable<z.ZodType<ConversationMetadata, ConversationMetadata, z.core.$ZodTypeInternals<ConversationMetadata, ConversationMetadata>>>>;
|
|
3111
3110
|
userId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
3112
3111
|
activeAgentId: z.ZodString;
|
|
3112
|
+
title: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
3113
3113
|
lastContextResolution: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
3114
3114
|
}, z.core.$strip>;
|
|
3115
3115
|
declare const ConversationApiUpdateSchema: z.ZodObject<{
|
|
@@ -3117,10 +3117,10 @@ declare const ConversationApiUpdateSchema: z.ZodObject<{
|
|
|
3117
3117
|
createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
3118
3118
|
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
3119
3119
|
contextConfigId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
3120
|
-
title: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
3121
3120
|
metadata: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<ConversationMetadata, ConversationMetadata, z.core.$ZodTypeInternals<ConversationMetadata, ConversationMetadata>>>>>>;
|
|
3122
3121
|
userId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
3123
3122
|
activeAgentId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
3123
|
+
title: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
3124
3124
|
lastContextResolution: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
3125
3125
|
}, z.core.$strip>;
|
|
3126
3126
|
declare const MessageSelectSchema: drizzle_zod.BuildSchema<"select", {
|
|
@@ -3559,15 +3559,15 @@ declare const MessageApiSelectSchema: z.ZodObject<{
|
|
|
3559
3559
|
id: z.ZodString;
|
|
3560
3560
|
createdAt: z.ZodString;
|
|
3561
3561
|
updatedAt: z.ZodString;
|
|
3562
|
-
metadata: z.ZodNullable<z.ZodType<MessageMetadata, MessageMetadata, z.core.$ZodTypeInternals<MessageMetadata, MessageMetadata>>>;
|
|
3563
|
-
role: z.ZodString;
|
|
3564
|
-
content: z.ZodType<MessageContent, MessageContent, z.core.$ZodTypeInternals<MessageContent, MessageContent>>;
|
|
3565
3562
|
conversationId: z.ZodString;
|
|
3563
|
+
metadata: z.ZodNullable<z.ZodType<MessageMetadata, MessageMetadata, z.core.$ZodTypeInternals<MessageMetadata, MessageMetadata>>>;
|
|
3566
3564
|
agentId: z.ZodNullable<z.ZodString>;
|
|
3565
|
+
role: z.ZodString;
|
|
3567
3566
|
fromAgentId: z.ZodNullable<z.ZodString>;
|
|
3568
3567
|
toAgentId: z.ZodNullable<z.ZodString>;
|
|
3569
3568
|
fromExternalAgentId: z.ZodNullable<z.ZodString>;
|
|
3570
3569
|
toExternalAgentId: z.ZodNullable<z.ZodString>;
|
|
3570
|
+
content: z.ZodType<MessageContent, MessageContent, z.core.$ZodTypeInternals<MessageContent, MessageContent>>;
|
|
3571
3571
|
visibility: z.ZodString;
|
|
3572
3572
|
messageType: z.ZodString;
|
|
3573
3573
|
taskId: z.ZodNullable<z.ZodString>;
|
|
@@ -3579,15 +3579,15 @@ declare const MessageApiInsertSchema: z.ZodObject<{
|
|
|
3579
3579
|
id: z.ZodString;
|
|
3580
3580
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
3581
3581
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
3582
|
-
metadata: z.ZodOptional<z.ZodNullable<z.ZodType<MessageMetadata, MessageMetadata, z.core.$ZodTypeInternals<MessageMetadata, MessageMetadata>>>>;
|
|
3583
|
-
role: z.ZodString;
|
|
3584
|
-
content: z.ZodType<MessageContent, MessageContent, z.core.$ZodTypeInternals<MessageContent, MessageContent>>;
|
|
3585
3582
|
conversationId: z.ZodString;
|
|
3583
|
+
metadata: z.ZodOptional<z.ZodNullable<z.ZodType<MessageMetadata, MessageMetadata, z.core.$ZodTypeInternals<MessageMetadata, MessageMetadata>>>>;
|
|
3586
3584
|
agentId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
3585
|
+
role: z.ZodString;
|
|
3587
3586
|
fromAgentId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
3588
3587
|
toAgentId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
3589
3588
|
fromExternalAgentId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
3590
3589
|
toExternalAgentId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
3590
|
+
content: z.ZodType<MessageContent, MessageContent, z.core.$ZodTypeInternals<MessageContent, MessageContent>>;
|
|
3591
3591
|
visibility: z.ZodOptional<z.ZodString>;
|
|
3592
3592
|
messageType: z.ZodOptional<z.ZodString>;
|
|
3593
3593
|
taskId: z.ZodOptional<z.ZodString>;
|
|
@@ -3599,15 +3599,15 @@ declare const MessageApiUpdateSchema: z.ZodObject<{
|
|
|
3599
3599
|
id: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
3600
3600
|
createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
3601
3601
|
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
3602
|
-
metadata: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<MessageMetadata, MessageMetadata, z.core.$ZodTypeInternals<MessageMetadata, MessageMetadata>>>>>>;
|
|
3603
|
-
role: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
3604
|
-
content: z.ZodOptional<z.ZodOptional<z.ZodType<MessageContent, MessageContent, z.core.$ZodTypeInternals<MessageContent, MessageContent>>>>;
|
|
3605
3602
|
conversationId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
3603
|
+
metadata: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<MessageMetadata, MessageMetadata, z.core.$ZodTypeInternals<MessageMetadata, MessageMetadata>>>>>>;
|
|
3606
3604
|
agentId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
3605
|
+
role: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
3607
3606
|
fromAgentId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
3608
3607
|
toAgentId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
3609
3608
|
fromExternalAgentId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
3610
3609
|
toExternalAgentId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
3610
|
+
content: z.ZodOptional<z.ZodOptional<z.ZodType<MessageContent, MessageContent, z.core.$ZodTypeInternals<MessageContent, MessageContent>>>>;
|
|
3611
3611
|
visibility: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
3612
3612
|
messageType: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
3613
3613
|
taskId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
@@ -4335,10 +4335,10 @@ declare const DataComponentInsertSchema: z.ZodObject<{
|
|
|
4335
4335
|
}>;
|
|
4336
4336
|
declare const DataComponentBaseSchema: z.ZodObject<{
|
|
4337
4337
|
tenantId: z.ZodString;
|
|
4338
|
-
projectId: z.ZodString;
|
|
4339
4338
|
id: z.ZodString;
|
|
4340
4339
|
name: z.ZodString;
|
|
4341
4340
|
description: z.ZodString;
|
|
4341
|
+
projectId: z.ZodString;
|
|
4342
4342
|
props: z.ZodOptional<z.ZodNullable<z.ZodType<Record<string, unknown>, Record<string, unknown>, z.core.$ZodTypeInternals<Record<string, unknown>, Record<string, unknown>>>>>;
|
|
4343
4343
|
}, {
|
|
4344
4344
|
out: {};
|
|
@@ -5143,40 +5143,36 @@ declare const ExternalAgentApiSelectSchema: z.ZodObject<{
|
|
|
5143
5143
|
id: z.ZodString;
|
|
5144
5144
|
name: z.ZodString;
|
|
5145
5145
|
description: z.ZodString;
|
|
5146
|
-
credentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
5147
5146
|
createdAt: z.ZodString;
|
|
5148
5147
|
updatedAt: z.ZodString;
|
|
5149
5148
|
baseUrl: z.ZodString;
|
|
5149
|
+
credentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
5150
5150
|
headers: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodString>>>;
|
|
5151
5151
|
}, z.core.$strip>;
|
|
5152
5152
|
declare const ExternalAgentApiInsertSchema: z.ZodObject<{
|
|
5153
5153
|
id: z.ZodString;
|
|
5154
5154
|
name: z.ZodString;
|
|
5155
5155
|
description: z.ZodString;
|
|
5156
|
-
credentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
5157
5156
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
5158
5157
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
5159
5158
|
baseUrl: z.ZodString;
|
|
5159
|
+
credentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
5160
5160
|
headers: z.ZodOptional<z.ZodNullable<z.ZodType<Record<string, string>, Record<string, string>, z.core.$ZodTypeInternals<Record<string, string>, Record<string, string>>>>>;
|
|
5161
5161
|
}, z.core.$strip>;
|
|
5162
5162
|
declare const ExternalAgentApiUpdateSchema: z.ZodObject<{
|
|
5163
5163
|
id: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
5164
5164
|
name: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
5165
5165
|
description: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
5166
|
-
credentialReferenceId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
5167
5166
|
createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
5168
5167
|
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
5169
5168
|
baseUrl: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
5169
|
+
credentialReferenceId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
5170
5170
|
headers: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<Record<string, string>, Record<string, string>, z.core.$ZodTypeInternals<Record<string, string>, Record<string, string>>>>>>>;
|
|
5171
5171
|
}, z.core.$strip>;
|
|
5172
5172
|
declare const AllAgentSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
5173
5173
|
id: z.ZodString;
|
|
5174
5174
|
name: z.ZodString;
|
|
5175
5175
|
description: z.ZodString;
|
|
5176
|
-
prompt: z.ZodString;
|
|
5177
|
-
createdAt: z.ZodString;
|
|
5178
|
-
updatedAt: z.ZodString;
|
|
5179
|
-
conversationHistoryConfig: z.ZodNullable<z.ZodType<ConversationHistoryConfig, ConversationHistoryConfig, z.core.$ZodTypeInternals<ConversationHistoryConfig, ConversationHistoryConfig>>>;
|
|
5180
5176
|
models: z.ZodNullable<z.ZodType<{
|
|
5181
5177
|
base?: {
|
|
5182
5178
|
model?: string | undefined;
|
|
@@ -5239,15 +5235,19 @@ declare const AllAgentSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
5239
5235
|
}, {
|
|
5240
5236
|
stepCountIs?: number | undefined;
|
|
5241
5237
|
}>>>;
|
|
5238
|
+
createdAt: z.ZodString;
|
|
5239
|
+
updatedAt: z.ZodString;
|
|
5240
|
+
prompt: z.ZodString;
|
|
5241
|
+
conversationHistoryConfig: z.ZodNullable<z.ZodType<ConversationHistoryConfig, ConversationHistoryConfig, z.core.$ZodTypeInternals<ConversationHistoryConfig, ConversationHistoryConfig>>>;
|
|
5242
5242
|
type: z.ZodLiteral<"internal">;
|
|
5243
5243
|
}, z.core.$strip>, z.ZodObject<{
|
|
5244
5244
|
id: z.ZodString;
|
|
5245
5245
|
name: z.ZodString;
|
|
5246
5246
|
description: z.ZodString;
|
|
5247
|
-
credentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
5248
5247
|
createdAt: z.ZodString;
|
|
5249
5248
|
updatedAt: z.ZodString;
|
|
5250
5249
|
baseUrl: z.ZodString;
|
|
5250
|
+
credentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
5251
5251
|
headers: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodString>>>;
|
|
5252
5252
|
type: z.ZodLiteral<"external">;
|
|
5253
5253
|
}, z.core.$strip>], "type">;
|
|
@@ -5500,10 +5500,10 @@ declare const ApiKeyInsertSchema: z.ZodObject<{
|
|
|
5500
5500
|
}>;
|
|
5501
5501
|
declare const ApiKeyUpdateSchema: z.ZodObject<{
|
|
5502
5502
|
name: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
5503
|
+
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
5503
5504
|
graphId: z.ZodOptional<z.ZodString>;
|
|
5504
5505
|
lastUsedAt: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
5505
5506
|
expiresAt: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
5506
|
-
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
5507
5507
|
}, {
|
|
5508
5508
|
out: {};
|
|
5509
5509
|
in: {};
|
|
@@ -5511,13 +5511,13 @@ declare const ApiKeyUpdateSchema: z.ZodObject<{
|
|
|
5511
5511
|
declare const ApiKeyApiSelectSchema: z.ZodObject<{
|
|
5512
5512
|
id: z.ZodString;
|
|
5513
5513
|
name: z.ZodNullable<z.ZodString>;
|
|
5514
|
+
createdAt: z.ZodString;
|
|
5515
|
+
updatedAt: z.ZodString;
|
|
5514
5516
|
graphId: z.ZodString;
|
|
5515
5517
|
publicId: z.ZodString;
|
|
5516
5518
|
keyPrefix: z.ZodString;
|
|
5517
5519
|
lastUsedAt: z.ZodNullable<z.ZodString>;
|
|
5518
5520
|
expiresAt: z.ZodNullable<z.ZodString>;
|
|
5519
|
-
createdAt: z.ZodString;
|
|
5520
|
-
updatedAt: z.ZodString;
|
|
5521
5521
|
}, {
|
|
5522
5522
|
out: {};
|
|
5523
5523
|
in: {};
|
|
@@ -5527,13 +5527,13 @@ declare const ApiKeyApiCreationResponseSchema: z.ZodObject<{
|
|
|
5527
5527
|
apiKey: z.ZodObject<{
|
|
5528
5528
|
id: z.ZodString;
|
|
5529
5529
|
name: z.ZodNullable<z.ZodString>;
|
|
5530
|
+
createdAt: z.ZodString;
|
|
5531
|
+
updatedAt: z.ZodString;
|
|
5530
5532
|
graphId: z.ZodString;
|
|
5531
5533
|
publicId: z.ZodString;
|
|
5532
5534
|
keyPrefix: z.ZodString;
|
|
5533
5535
|
lastUsedAt: z.ZodNullable<z.ZodString>;
|
|
5534
5536
|
expiresAt: z.ZodNullable<z.ZodString>;
|
|
5535
|
-
createdAt: z.ZodString;
|
|
5536
|
-
updatedAt: z.ZodString;
|
|
5537
5537
|
}, {
|
|
5538
5538
|
out: {};
|
|
5539
5539
|
in: {};
|
|
@@ -5543,20 +5543,20 @@ declare const ApiKeyApiCreationResponseSchema: z.ZodObject<{
|
|
|
5543
5543
|
}, z.core.$strip>;
|
|
5544
5544
|
declare const ApiKeyApiInsertSchema: z.ZodObject<{
|
|
5545
5545
|
name: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
5546
|
-
graphId: z.ZodString;
|
|
5547
|
-
expiresAt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
5548
5546
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
5549
5547
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
5548
|
+
graphId: z.ZodString;
|
|
5549
|
+
expiresAt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
5550
5550
|
}, {
|
|
5551
5551
|
out: {};
|
|
5552
5552
|
in: {};
|
|
5553
5553
|
}>;
|
|
5554
5554
|
declare const ApiKeyApiUpdateSchema: z.ZodObject<{
|
|
5555
5555
|
name: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
5556
|
+
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
5556
5557
|
graphId: z.ZodOptional<z.ZodString>;
|
|
5557
5558
|
lastUsedAt: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
5558
5559
|
expiresAt: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
5559
|
-
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
5560
5560
|
}, {
|
|
5561
5561
|
out: {};
|
|
5562
5562
|
in: {};
|
|
@@ -5914,8 +5914,8 @@ declare const MCPToolConfigSchema: z.ZodObject<{
|
|
|
5914
5914
|
id: z.ZodString;
|
|
5915
5915
|
name: z.ZodString;
|
|
5916
5916
|
headers: z.ZodOptional<z.ZodNullable<z.ZodType<Record<string, string>, Record<string, string>, z.core.$ZodTypeInternals<Record<string, string>, Record<string, string>>>>>;
|
|
5917
|
-
capabilities: z.ZodOptional<z.ZodNullable<z.ZodType<ToolServerCapabilities, ToolServerCapabilities, z.core.$ZodTypeInternals<ToolServerCapabilities, ToolServerCapabilities>>>>;
|
|
5918
5917
|
imageUrl: z.ZodOptional<z.ZodString>;
|
|
5918
|
+
capabilities: z.ZodOptional<z.ZodNullable<z.ZodType<ToolServerCapabilities, ToolServerCapabilities, z.core.$ZodTypeInternals<ToolServerCapabilities, ToolServerCapabilities>>>>;
|
|
5919
5919
|
lastError: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
5920
5920
|
availableTools: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
5921
5921
|
name: z.ZodString;
|
|
@@ -5989,6 +5989,10 @@ declare const ToolUpdateSchema: z.ZodObject<{
|
|
|
5989
5989
|
declare const ToolApiSelectSchema: z.ZodObject<{
|
|
5990
5990
|
id: z.ZodString;
|
|
5991
5991
|
name: z.ZodString;
|
|
5992
|
+
createdAt: z.ZodString;
|
|
5993
|
+
updatedAt: z.ZodString;
|
|
5994
|
+
credentialReferenceId: z.ZodNullable<z.ZodString>;
|
|
5995
|
+
headers: z.ZodNullable<z.ZodType<Record<string, string>, Record<string, string>, z.core.$ZodTypeInternals<Record<string, string>, Record<string, string>>>>;
|
|
5992
5996
|
config: z.ZodType<{
|
|
5993
5997
|
type: "mcp";
|
|
5994
5998
|
mcp: ToolMcpConfig;
|
|
@@ -6002,17 +6006,17 @@ declare const ToolApiSelectSchema: z.ZodObject<{
|
|
|
6002
6006
|
type: "mcp";
|
|
6003
6007
|
mcp: ToolMcpConfig;
|
|
6004
6008
|
}>>;
|
|
6005
|
-
credentialReferenceId: z.ZodNullable<z.ZodString>;
|
|
6006
|
-
createdAt: z.ZodString;
|
|
6007
|
-
updatedAt: z.ZodString;
|
|
6008
|
-
headers: z.ZodNullable<z.ZodType<Record<string, string>, Record<string, string>, z.core.$ZodTypeInternals<Record<string, string>, Record<string, string>>>>;
|
|
6009
|
-
capabilities: z.ZodNullable<z.ZodType<ToolServerCapabilities, ToolServerCapabilities, z.core.$ZodTypeInternals<ToolServerCapabilities, ToolServerCapabilities>>>;
|
|
6010
6009
|
imageUrl: z.ZodNullable<z.ZodString>;
|
|
6010
|
+
capabilities: z.ZodNullable<z.ZodType<ToolServerCapabilities, ToolServerCapabilities, z.core.$ZodTypeInternals<ToolServerCapabilities, ToolServerCapabilities>>>;
|
|
6011
6011
|
lastError: z.ZodNullable<z.ZodString>;
|
|
6012
6012
|
}, z.core.$strip>;
|
|
6013
6013
|
declare const ToolApiInsertSchema: z.ZodObject<{
|
|
6014
6014
|
id: z.ZodString;
|
|
6015
6015
|
name: z.ZodString;
|
|
6016
|
+
createdAt: z.ZodOptional<z.ZodString>;
|
|
6017
|
+
updatedAt: z.ZodOptional<z.ZodString>;
|
|
6018
|
+
credentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
6019
|
+
headers: z.ZodOptional<z.ZodNullable<z.ZodType<Record<string, string>, Record<string, string>, z.core.$ZodTypeInternals<Record<string, string>, Record<string, string>>>>>;
|
|
6016
6020
|
config: z.ZodType<{
|
|
6017
6021
|
type: "mcp";
|
|
6018
6022
|
mcp: ToolMcpConfig;
|
|
@@ -6026,17 +6030,17 @@ declare const ToolApiInsertSchema: z.ZodObject<{
|
|
|
6026
6030
|
type: "mcp";
|
|
6027
6031
|
mcp: ToolMcpConfig;
|
|
6028
6032
|
}>>;
|
|
6029
|
-
credentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
6030
|
-
createdAt: z.ZodOptional<z.ZodString>;
|
|
6031
|
-
updatedAt: z.ZodOptional<z.ZodString>;
|
|
6032
|
-
headers: z.ZodOptional<z.ZodNullable<z.ZodType<Record<string, string>, Record<string, string>, z.core.$ZodTypeInternals<Record<string, string>, Record<string, string>>>>>;
|
|
6033
|
-
capabilities: z.ZodOptional<z.ZodNullable<z.ZodType<ToolServerCapabilities, ToolServerCapabilities, z.core.$ZodTypeInternals<ToolServerCapabilities, ToolServerCapabilities>>>>;
|
|
6034
6033
|
imageUrl: z.ZodOptional<z.ZodString>;
|
|
6034
|
+
capabilities: z.ZodOptional<z.ZodNullable<z.ZodType<ToolServerCapabilities, ToolServerCapabilities, z.core.$ZodTypeInternals<ToolServerCapabilities, ToolServerCapabilities>>>>;
|
|
6035
6035
|
lastError: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
6036
6036
|
}, z.core.$strip>;
|
|
6037
6037
|
declare const ToolApiUpdateSchema: z.ZodObject<{
|
|
6038
6038
|
id: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
6039
6039
|
name: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
6040
|
+
createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
6041
|
+
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
6042
|
+
credentialReferenceId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
6043
|
+
headers: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<Record<string, string>, Record<string, string>, z.core.$ZodTypeInternals<Record<string, string>, Record<string, string>>>>>>>;
|
|
6040
6044
|
config: z.ZodOptional<z.ZodOptional<z.ZodType<{
|
|
6041
6045
|
type: "mcp";
|
|
6042
6046
|
mcp: ToolMcpConfig;
|
|
@@ -6050,12 +6054,8 @@ declare const ToolApiUpdateSchema: z.ZodObject<{
|
|
|
6050
6054
|
type: "mcp";
|
|
6051
6055
|
mcp: ToolMcpConfig;
|
|
6052
6056
|
}>>>>;
|
|
6053
|
-
credentialReferenceId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
6054
|
-
createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
6055
|
-
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
6056
|
-
headers: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<Record<string, string>, Record<string, string>, z.core.$ZodTypeInternals<Record<string, string>, Record<string, string>>>>>>>;
|
|
6057
|
-
capabilities: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<ToolServerCapabilities, ToolServerCapabilities, z.core.$ZodTypeInternals<ToolServerCapabilities, ToolServerCapabilities>>>>>>;
|
|
6058
6057
|
imageUrl: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
6058
|
+
capabilities: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<ToolServerCapabilities, ToolServerCapabilities, z.core.$ZodTypeInternals<ToolServerCapabilities, ToolServerCapabilities>>>>>>;
|
|
6059
6059
|
lastError: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
6060
6060
|
}, z.core.$strip>;
|
|
6061
6061
|
declare const FetchConfigSchema: z.ZodObject<{
|
|
@@ -6124,10 +6124,10 @@ declare const ContextConfigSelectSchema: z.ZodObject<{
|
|
|
6124
6124
|
}>;
|
|
6125
6125
|
declare const ContextConfigInsertSchema: z.ZodObject<{
|
|
6126
6126
|
tenantId: z.ZodString;
|
|
6127
|
-
projectId: z.ZodString;
|
|
6128
6127
|
id: z.ZodString;
|
|
6129
6128
|
name: z.ZodString;
|
|
6130
6129
|
description: z.ZodString;
|
|
6130
|
+
projectId: z.ZodString;
|
|
6131
6131
|
requestContextSchema: z.ZodOptional<z.ZodUnknown>;
|
|
6132
6132
|
contextVariables: z.ZodOptional<z.ZodNullable<z.ZodType<Record<string, ContextFetchDefinition>, Record<string, ContextFetchDefinition>, z.core.$ZodTypeInternals<Record<string, ContextFetchDefinition>, Record<string, ContextFetchDefinition>>>>>;
|
|
6133
6133
|
}, {
|
|
@@ -6136,10 +6136,10 @@ declare const ContextConfigInsertSchema: z.ZodObject<{
|
|
|
6136
6136
|
}>;
|
|
6137
6137
|
declare const ContextConfigUpdateSchema: z.ZodObject<{
|
|
6138
6138
|
tenantId: z.ZodOptional<z.ZodString>;
|
|
6139
|
-
projectId: z.ZodOptional<z.ZodString>;
|
|
6140
6139
|
id: z.ZodOptional<z.ZodString>;
|
|
6141
6140
|
name: z.ZodOptional<z.ZodString>;
|
|
6142
6141
|
description: z.ZodOptional<z.ZodString>;
|
|
6142
|
+
projectId: z.ZodOptional<z.ZodString>;
|
|
6143
6143
|
requestContextSchema: z.ZodOptional<z.ZodOptional<z.ZodUnknown>>;
|
|
6144
6144
|
contextVariables: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<Record<string, ContextFetchDefinition>, Record<string, ContextFetchDefinition>, z.core.$ZodTypeInternals<Record<string, ContextFetchDefinition>, Record<string, ContextFetchDefinition>>>>>>;
|
|
6145
6145
|
}, {
|
|
@@ -6396,27 +6396,27 @@ declare const AgentToolRelationApiSelectSchema: z.ZodObject<{
|
|
|
6396
6396
|
createdAt: z.ZodString;
|
|
6397
6397
|
updatedAt: z.ZodString;
|
|
6398
6398
|
headers: z.ZodNullable<z.ZodType<drizzle_zod.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod.Json, unknown>>>;
|
|
6399
|
+
agentId: z.ZodString;
|
|
6399
6400
|
toolId: z.ZodString;
|
|
6400
6401
|
selectedTools: z.ZodNullable<z.ZodType<drizzle_zod.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod.Json, unknown>>>;
|
|
6401
|
-
agentId: z.ZodString;
|
|
6402
6402
|
}, z.core.$strip>;
|
|
6403
6403
|
declare const AgentToolRelationApiInsertSchema: z.ZodObject<{
|
|
6404
6404
|
id: z.ZodString;
|
|
6405
6405
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
6406
6406
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
6407
6407
|
headers: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodString>>>;
|
|
6408
|
+
agentId: z.ZodString;
|
|
6408
6409
|
toolId: z.ZodString;
|
|
6409
6410
|
selectedTools: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodString>>>;
|
|
6410
|
-
agentId: z.ZodString;
|
|
6411
6411
|
}, z.core.$strip>;
|
|
6412
6412
|
declare const AgentToolRelationApiUpdateSchema: z.ZodObject<{
|
|
6413
6413
|
id: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
6414
6414
|
createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
6415
6415
|
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
6416
6416
|
headers: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodString>>>>>;
|
|
6417
|
+
agentId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
6417
6418
|
toolId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
6418
6419
|
selectedTools: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodString>>>>>;
|
|
6419
|
-
agentId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
6420
6420
|
}, z.core.$strip>;
|
|
6421
6421
|
declare const LedgerArtifactSelectSchema: drizzle_zod.BuildSchema<"select", {
|
|
6422
6422
|
tenantId: drizzle_orm_sqlite_core.SQLiteColumn<{
|
|
@@ -7131,13 +7131,13 @@ declare const LedgerArtifactUpdateSchema: z.ZodObject<{
|
|
|
7131
7131
|
}>;
|
|
7132
7132
|
declare const LedgerArtifactApiSelectSchema: z.ZodObject<{
|
|
7133
7133
|
id: z.ZodString;
|
|
7134
|
-
type: z.ZodString;
|
|
7135
7134
|
name: z.ZodNullable<z.ZodString>;
|
|
7136
7135
|
description: z.ZodNullable<z.ZodString>;
|
|
7136
|
+
type: z.ZodString;
|
|
7137
7137
|
createdAt: z.ZodString;
|
|
7138
7138
|
updatedAt: z.ZodString;
|
|
7139
|
-
metadata: z.ZodNullable<z.ZodType<drizzle_zod.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod.Json, unknown>>>;
|
|
7140
7139
|
contextId: z.ZodString;
|
|
7140
|
+
metadata: z.ZodNullable<z.ZodType<drizzle_zod.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod.Json, unknown>>>;
|
|
7141
7141
|
visibility: z.ZodNullable<z.ZodString>;
|
|
7142
7142
|
taskId: z.ZodString;
|
|
7143
7143
|
toolCallId: z.ZodNullable<z.ZodString>;
|
|
@@ -7149,13 +7149,13 @@ declare const LedgerArtifactApiSelectSchema: z.ZodObject<{
|
|
|
7149
7149
|
}, z.core.$strip>;
|
|
7150
7150
|
declare const LedgerArtifactApiInsertSchema: z.ZodObject<{
|
|
7151
7151
|
id: z.ZodString;
|
|
7152
|
-
type: z.ZodOptional<z.ZodString>;
|
|
7153
7152
|
name: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
7154
7153
|
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
7154
|
+
type: z.ZodOptional<z.ZodString>;
|
|
7155
7155
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
7156
7156
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
7157
|
-
metadata: z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod.Json, unknown>>>>;
|
|
7158
7157
|
contextId: z.ZodString;
|
|
7158
|
+
metadata: z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod.Json, unknown>>>>;
|
|
7159
7159
|
visibility: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
7160
7160
|
taskId: z.ZodString;
|
|
7161
7161
|
toolCallId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
@@ -7167,13 +7167,13 @@ declare const LedgerArtifactApiInsertSchema: z.ZodObject<{
|
|
|
7167
7167
|
}, z.core.$strip>;
|
|
7168
7168
|
declare const LedgerArtifactApiUpdateSchema: z.ZodObject<{
|
|
7169
7169
|
id: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
7170
|
-
type: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
7171
7170
|
name: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
7172
7171
|
description: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
7172
|
+
type: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
7173
7173
|
createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
7174
7174
|
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
7175
|
-
metadata: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod.Json, unknown>>>>>>;
|
|
7176
7175
|
contextId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
7176
|
+
metadata: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod.Json, unknown>>>>>>;
|
|
7177
7177
|
visibility: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
7178
7178
|
taskId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
7179
7179
|
toolCallId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
@@ -7216,10 +7216,6 @@ declare const FullGraphAgentInsertSchema: z.ZodObject<{
|
|
|
7216
7216
|
id: z.ZodString;
|
|
7217
7217
|
name: z.ZodString;
|
|
7218
7218
|
description: z.ZodString;
|
|
7219
|
-
prompt: z.ZodString;
|
|
7220
|
-
createdAt: z.ZodOptional<z.ZodString>;
|
|
7221
|
-
updatedAt: z.ZodOptional<z.ZodString>;
|
|
7222
|
-
conversationHistoryConfig: z.ZodOptional<z.ZodNullable<z.ZodType<ConversationHistoryConfig, ConversationHistoryConfig, z.core.$ZodTypeInternals<ConversationHistoryConfig, ConversationHistoryConfig>>>>;
|
|
7223
7219
|
models: z.ZodOptional<z.ZodObject<{
|
|
7224
7220
|
base: z.ZodOptional<z.ZodObject<{
|
|
7225
7221
|
model: z.ZodOptional<z.ZodString>;
|
|
@@ -7243,6 +7239,10 @@ declare const FullGraphAgentInsertSchema: z.ZodObject<{
|
|
|
7243
7239
|
}, {
|
|
7244
7240
|
stepCountIs?: number | undefined;
|
|
7245
7241
|
}>>>>;
|
|
7242
|
+
createdAt: z.ZodOptional<z.ZodString>;
|
|
7243
|
+
updatedAt: z.ZodOptional<z.ZodString>;
|
|
7244
|
+
prompt: z.ZodString;
|
|
7245
|
+
conversationHistoryConfig: z.ZodOptional<z.ZodNullable<z.ZodType<ConversationHistoryConfig, ConversationHistoryConfig, z.core.$ZodTypeInternals<ConversationHistoryConfig, ConversationHistoryConfig>>>>;
|
|
7246
7246
|
type: z.ZodLiteral<"internal">;
|
|
7247
7247
|
canUse: z.ZodArray<z.ZodObject<{
|
|
7248
7248
|
toolId: z.ZodString;
|
|
@@ -7266,10 +7266,6 @@ declare const FullGraphDefinitionSchema: z.ZodObject<{
|
|
|
7266
7266
|
id: z.ZodString;
|
|
7267
7267
|
name: z.ZodString;
|
|
7268
7268
|
description: z.ZodString;
|
|
7269
|
-
prompt: z.ZodString;
|
|
7270
|
-
createdAt: z.ZodOptional<z.ZodString>;
|
|
7271
|
-
updatedAt: z.ZodOptional<z.ZodString>;
|
|
7272
|
-
conversationHistoryConfig: z.ZodOptional<z.ZodNullable<z.ZodType<ConversationHistoryConfig, ConversationHistoryConfig, z.core.$ZodTypeInternals<ConversationHistoryConfig, ConversationHistoryConfig>>>>;
|
|
7273
7269
|
models: z.ZodOptional<z.ZodObject<{
|
|
7274
7270
|
base: z.ZodOptional<z.ZodObject<{
|
|
7275
7271
|
model: z.ZodOptional<z.ZodString>;
|
|
@@ -7293,6 +7289,10 @@ declare const FullGraphDefinitionSchema: z.ZodObject<{
|
|
|
7293
7289
|
}, {
|
|
7294
7290
|
stepCountIs?: number | undefined;
|
|
7295
7291
|
}>>>>;
|
|
7292
|
+
createdAt: z.ZodOptional<z.ZodString>;
|
|
7293
|
+
updatedAt: z.ZodOptional<z.ZodString>;
|
|
7294
|
+
prompt: z.ZodString;
|
|
7295
|
+
conversationHistoryConfig: z.ZodOptional<z.ZodNullable<z.ZodType<ConversationHistoryConfig, ConversationHistoryConfig, z.core.$ZodTypeInternals<ConversationHistoryConfig, ConversationHistoryConfig>>>>;
|
|
7296
7296
|
type: z.ZodLiteral<"internal">;
|
|
7297
7297
|
canUse: z.ZodArray<z.ZodObject<{
|
|
7298
7298
|
toolId: z.ZodString;
|
|
@@ -7307,10 +7307,10 @@ declare const FullGraphDefinitionSchema: z.ZodObject<{
|
|
|
7307
7307
|
id: z.ZodString;
|
|
7308
7308
|
name: z.ZodString;
|
|
7309
7309
|
description: z.ZodString;
|
|
7310
|
-
credentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
7311
7310
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
7312
7311
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
7313
7312
|
baseUrl: z.ZodString;
|
|
7313
|
+
credentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
7314
7314
|
headers: z.ZodOptional<z.ZodNullable<z.ZodType<Record<string, string>, Record<string, string>, z.core.$ZodTypeInternals<Record<string, string>, Record<string, string>>>>>;
|
|
7315
7315
|
}, z.core.$strip>]>>;
|
|
7316
7316
|
contextConfig: z.ZodOptional<z.ZodObject<{
|
|
@@ -7423,10 +7423,6 @@ declare const GraphWithinContextOfProjectSchema: z.ZodObject<{
|
|
|
7423
7423
|
id: z.ZodString;
|
|
7424
7424
|
name: z.ZodString;
|
|
7425
7425
|
description: z.ZodString;
|
|
7426
|
-
prompt: z.ZodString;
|
|
7427
|
-
createdAt: z.ZodOptional<z.ZodString>;
|
|
7428
|
-
updatedAt: z.ZodOptional<z.ZodString>;
|
|
7429
|
-
conversationHistoryConfig: z.ZodOptional<z.ZodNullable<z.ZodType<ConversationHistoryConfig, ConversationHistoryConfig, z.core.$ZodTypeInternals<ConversationHistoryConfig, ConversationHistoryConfig>>>>;
|
|
7430
7426
|
models: z.ZodOptional<z.ZodObject<{
|
|
7431
7427
|
base: z.ZodOptional<z.ZodObject<{
|
|
7432
7428
|
model: z.ZodOptional<z.ZodString>;
|
|
@@ -7450,6 +7446,10 @@ declare const GraphWithinContextOfProjectSchema: z.ZodObject<{
|
|
|
7450
7446
|
}, {
|
|
7451
7447
|
stepCountIs?: number | undefined;
|
|
7452
7448
|
}>>>>;
|
|
7449
|
+
createdAt: z.ZodOptional<z.ZodString>;
|
|
7450
|
+
updatedAt: z.ZodOptional<z.ZodString>;
|
|
7451
|
+
prompt: z.ZodString;
|
|
7452
|
+
conversationHistoryConfig: z.ZodOptional<z.ZodNullable<z.ZodType<ConversationHistoryConfig, ConversationHistoryConfig, z.core.$ZodTypeInternals<ConversationHistoryConfig, ConversationHistoryConfig>>>>;
|
|
7453
7453
|
type: z.ZodLiteral<"internal">;
|
|
7454
7454
|
canUse: z.ZodArray<z.ZodObject<{
|
|
7455
7455
|
toolId: z.ZodString;
|
|
@@ -7464,10 +7464,10 @@ declare const GraphWithinContextOfProjectSchema: z.ZodObject<{
|
|
|
7464
7464
|
id: z.ZodString;
|
|
7465
7465
|
name: z.ZodString;
|
|
7466
7466
|
description: z.ZodString;
|
|
7467
|
-
credentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
7468
7467
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
7469
7468
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
7470
7469
|
baseUrl: z.ZodString;
|
|
7470
|
+
credentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
7471
7471
|
headers: z.ZodOptional<z.ZodNullable<z.ZodType<Record<string, string>, Record<string, string>, z.core.$ZodTypeInternals<Record<string, string>, Record<string, string>>>>>;
|
|
7472
7472
|
type: z.ZodLiteral<"external">;
|
|
7473
7473
|
}, z.core.$strip>], "type">>;
|
|
@@ -7764,8 +7764,6 @@ declare const ProjectApiSelectSchema: z.ZodObject<{
|
|
|
7764
7764
|
id: z.ZodString;
|
|
7765
7765
|
name: z.ZodString;
|
|
7766
7766
|
description: z.ZodString;
|
|
7767
|
-
createdAt: z.ZodString;
|
|
7768
|
-
updatedAt: z.ZodString;
|
|
7769
7767
|
models: z.ZodNullable<z.ZodType<{
|
|
7770
7768
|
base: {
|
|
7771
7769
|
model?: string | undefined;
|
|
@@ -7832,6 +7830,8 @@ declare const ProjectApiSelectSchema: z.ZodObject<{
|
|
|
7832
7830
|
transferCountIs?: number | undefined;
|
|
7833
7831
|
stepCountIs?: number | undefined;
|
|
7834
7832
|
}>>>;
|
|
7833
|
+
createdAt: z.ZodString;
|
|
7834
|
+
updatedAt: z.ZodString;
|
|
7835
7835
|
}, {
|
|
7836
7836
|
out: {};
|
|
7837
7837
|
in: {};
|
|
@@ -7979,10 +7979,6 @@ declare const FullProjectDefinitionSchema: z.ZodObject<{
|
|
|
7979
7979
|
id: z.ZodString;
|
|
7980
7980
|
name: z.ZodString;
|
|
7981
7981
|
description: z.ZodString;
|
|
7982
|
-
prompt: z.ZodString;
|
|
7983
|
-
createdAt: z.ZodOptional<z.ZodString>;
|
|
7984
|
-
updatedAt: z.ZodOptional<z.ZodString>;
|
|
7985
|
-
conversationHistoryConfig: z.ZodOptional<z.ZodNullable<z.ZodType<ConversationHistoryConfig, ConversationHistoryConfig, z.core.$ZodTypeInternals<ConversationHistoryConfig, ConversationHistoryConfig>>>>;
|
|
7986
7982
|
models: z.ZodOptional<z.ZodObject<{
|
|
7987
7983
|
base: z.ZodOptional<z.ZodObject<{
|
|
7988
7984
|
model: z.ZodOptional<z.ZodString>;
|
|
@@ -8006,6 +8002,10 @@ declare const FullProjectDefinitionSchema: z.ZodObject<{
|
|
|
8006
8002
|
}, {
|
|
8007
8003
|
stepCountIs?: number | undefined;
|
|
8008
8004
|
}>>>>;
|
|
8005
|
+
createdAt: z.ZodOptional<z.ZodString>;
|
|
8006
|
+
updatedAt: z.ZodOptional<z.ZodString>;
|
|
8007
|
+
prompt: z.ZodString;
|
|
8008
|
+
conversationHistoryConfig: z.ZodOptional<z.ZodNullable<z.ZodType<ConversationHistoryConfig, ConversationHistoryConfig, z.core.$ZodTypeInternals<ConversationHistoryConfig, ConversationHistoryConfig>>>>;
|
|
8009
8009
|
type: z.ZodLiteral<"internal">;
|
|
8010
8010
|
canUse: z.ZodArray<z.ZodObject<{
|
|
8011
8011
|
toolId: z.ZodString;
|
|
@@ -8020,10 +8020,10 @@ declare const FullProjectDefinitionSchema: z.ZodObject<{
|
|
|
8020
8020
|
id: z.ZodString;
|
|
8021
8021
|
name: z.ZodString;
|
|
8022
8022
|
description: z.ZodString;
|
|
8023
|
-
credentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
8024
8023
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
8025
8024
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
8026
8025
|
baseUrl: z.ZodString;
|
|
8026
|
+
credentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
8027
8027
|
headers: z.ZodOptional<z.ZodNullable<z.ZodType<Record<string, string>, Record<string, string>, z.core.$ZodTypeInternals<Record<string, string>, Record<string, string>>>>>;
|
|
8028
8028
|
type: z.ZodLiteral<"external">;
|
|
8029
8029
|
}, z.core.$strip>], "type">>;
|
|
@@ -8049,6 +8049,10 @@ declare const FullProjectDefinitionSchema: z.ZodObject<{
|
|
|
8049
8049
|
tools: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
8050
8050
|
id: z.ZodString;
|
|
8051
8051
|
name: z.ZodString;
|
|
8052
|
+
createdAt: z.ZodOptional<z.ZodString>;
|
|
8053
|
+
updatedAt: z.ZodOptional<z.ZodString>;
|
|
8054
|
+
credentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
8055
|
+
headers: z.ZodOptional<z.ZodNullable<z.ZodType<Record<string, string>, Record<string, string>, z.core.$ZodTypeInternals<Record<string, string>, Record<string, string>>>>>;
|
|
8052
8056
|
config: z.ZodType<{
|
|
8053
8057
|
type: "mcp";
|
|
8054
8058
|
mcp: ToolMcpConfig;
|
|
@@ -8062,12 +8066,8 @@ declare const FullProjectDefinitionSchema: z.ZodObject<{
|
|
|
8062
8066
|
type: "mcp";
|
|
8063
8067
|
mcp: ToolMcpConfig;
|
|
8064
8068
|
}>>;
|
|
8065
|
-
credentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
8066
|
-
createdAt: z.ZodOptional<z.ZodString>;
|
|
8067
|
-
updatedAt: z.ZodOptional<z.ZodString>;
|
|
8068
|
-
headers: z.ZodOptional<z.ZodNullable<z.ZodType<Record<string, string>, Record<string, string>, z.core.$ZodTypeInternals<Record<string, string>, Record<string, string>>>>>;
|
|
8069
|
-
capabilities: z.ZodOptional<z.ZodNullable<z.ZodType<ToolServerCapabilities, ToolServerCapabilities, z.core.$ZodTypeInternals<ToolServerCapabilities, ToolServerCapabilities>>>>;
|
|
8070
8069
|
imageUrl: z.ZodOptional<z.ZodString>;
|
|
8070
|
+
capabilities: z.ZodOptional<z.ZodNullable<z.ZodType<ToolServerCapabilities, ToolServerCapabilities, z.core.$ZodTypeInternals<ToolServerCapabilities, ToolServerCapabilities>>>>;
|
|
8071
8071
|
lastError: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
8072
8072
|
}, z.core.$strip>>;
|
|
8073
8073
|
dataComponents: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|