@inkeep/agents-core 0.8.7 → 0.9.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/{chunk-AX77SEE3.js → chunk-JXAL2ALG.js} +1 -0
- package/dist/{chunk-GPGFF2K4.js → chunk-YVGNJIQZ.js} +1 -1
- package/dist/client-exports.cjs +1 -0
- package/dist/client-exports.d.cts +8 -7
- package/dist/client-exports.d.ts +8 -7
- package/dist/client-exports.js +2 -2
- package/dist/db/schema.d.cts +2 -2
- package/dist/db/schema.d.ts +2 -2
- package/dist/index.cjs +154 -38
- package/dist/index.d.cts +177 -176
- package/dist/index.d.ts +177 -176
- package/dist/index.js +158 -43
- package/dist/{schema-BsLudkuV.d.cts → schema-B0z-X5Hq.d.cts} +1 -1
- package/dist/{schema-CjWNQuEl.d.ts → schema-BQoMyAN6.d.ts} +1 -1
- package/dist/types/index.d.cts +2 -2
- package/dist/types/index.d.ts +2 -2
- package/dist/{utility-DP6lt8z3.d.cts → utility-8RXSemmL.d.cts} +115 -110
- package/dist/{utility-DP6lt8z3.d.ts → utility-8RXSemmL.d.ts} +115 -110
- package/dist/validation/index.cjs +1 -0
- package/dist/validation/index.d.cts +2 -2
- package/dist/validation/index.d.ts +2 -2
- package/dist/validation/index.js +2 -2
- package/package.json +1 -1
|
@@ -767,6 +767,10 @@ 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>>>;
|
|
770
774
|
models: z.ZodNullable<z.ZodType<{
|
|
771
775
|
base?: {
|
|
772
776
|
model?: string | undefined;
|
|
@@ -829,15 +833,15 @@ declare const AgentApiSelectSchema: z.ZodObject<{
|
|
|
829
833
|
}, {
|
|
830
834
|
stepCountIs?: number | undefined;
|
|
831
835
|
}>>>;
|
|
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>>>>;
|
|
841
845
|
models: z.ZodOptional<z.ZodObject<{
|
|
842
846
|
base: z.ZodOptional<z.ZodObject<{
|
|
843
847
|
model: z.ZodOptional<z.ZodString>;
|
|
@@ -861,15 +865,15 @@ declare const AgentApiInsertSchema: z.ZodObject<{
|
|
|
861
865
|
}, {
|
|
862
866
|
stepCountIs?: number | undefined;
|
|
863
867
|
}>>>>;
|
|
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>>>>>>;
|
|
873
877
|
models: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodObject<{
|
|
874
878
|
base: z.ZodOptional<z.ZodObject<{
|
|
875
879
|
model: z.ZodOptional<z.ZodString>;
|
|
@@ -893,10 +897,6 @@ declare const AgentApiUpdateSchema: z.ZodObject<{
|
|
|
893
897
|
}, {
|
|
894
898
|
stepCountIs?: number | undefined;
|
|
895
899
|
}>>>>>>;
|
|
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;
|
|
1178
1179
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
1179
1180
|
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,6 +1762,9 @@ 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>;
|
|
1765
1768
|
models: z.ZodNullable<z.ZodType<{
|
|
1766
1769
|
base?: {
|
|
1767
1770
|
model?: string | undefined;
|
|
@@ -1824,9 +1827,6 @@ declare const AgentGraphApiSelectSchema: z.ZodObject<{
|
|
|
1824
1827
|
}, {
|
|
1825
1828
|
transferCountIs?: number | undefined;
|
|
1826
1829
|
}>>>;
|
|
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,6 +1890,9 @@ 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>>;
|
|
1893
1896
|
models: z.ZodOptional<z.ZodNullable<z.ZodType<{
|
|
1894
1897
|
base?: {
|
|
1895
1898
|
model?: string | undefined;
|
|
@@ -1952,9 +1955,6 @@ declare const AgentGraphApiInsertSchema: z.ZodObject<{
|
|
|
1952
1955
|
}, {
|
|
1953
1956
|
transferCountIs?: number | undefined;
|
|
1954
1957
|
}>>>>;
|
|
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,6 +2020,9 @@ 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>>>>;
|
|
2023
2026
|
models: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<{
|
|
2024
2027
|
base?: {
|
|
2025
2028
|
model?: string | undefined;
|
|
@@ -2082,9 +2085,6 @@ declare const AgentGraphApiUpdateSchema: z.ZodObject<{
|
|
|
2082
2085
|
}, {
|
|
2083
2086
|
transferCountIs?: number | undefined;
|
|
2084
2087
|
}>>>>>>;
|
|
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
|
-
contextId: z.ZodString;
|
|
2356
|
-
status: z.ZodString;
|
|
2357
2355
|
metadata: z.ZodNullable<z.ZodType<TaskMetadataConfig, TaskMetadataConfig, z.core.$ZodTypeInternals<TaskMetadataConfig, TaskMetadataConfig>>>;
|
|
2356
|
+
status: z.ZodString;
|
|
2357
|
+
contextId: z.ZodString;
|
|
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;
|
|
2364
2366
|
conversationId: z.ZodOptional<z.ZodString>;
|
|
2365
2367
|
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>>;
|
|
2374
2376
|
conversationId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
2375
2377
|
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>;
|
|
3098
3099
|
metadata: z.ZodNullable<z.ZodType<ConversationMetadata, ConversationMetadata, z.core.$ZodTypeInternals<ConversationMetadata, ConversationMetadata>>>;
|
|
3099
3100
|
userId: z.ZodNullable<z.ZodString>;
|
|
3100
3101
|
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>>;
|
|
3109
3110
|
metadata: z.ZodOptional<z.ZodNullable<z.ZodType<ConversationMetadata, ConversationMetadata, z.core.$ZodTypeInternals<ConversationMetadata, ConversationMetadata>>>>;
|
|
3110
3111
|
userId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
3111
3112
|
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>>>>;
|
|
3120
3121
|
metadata: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<ConversationMetadata, ConversationMetadata, z.core.$ZodTypeInternals<ConversationMetadata, ConversationMetadata>>>>>>;
|
|
3121
3122
|
userId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
3122
3123
|
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
|
-
conversationId: z.ZodString;
|
|
3563
3562
|
metadata: z.ZodNullable<z.ZodType<MessageMetadata, MessageMetadata, z.core.$ZodTypeInternals<MessageMetadata, MessageMetadata>>>;
|
|
3564
|
-
agentId: z.ZodNullable<z.ZodString>;
|
|
3565
3563
|
role: z.ZodString;
|
|
3564
|
+
content: z.ZodType<MessageContent, MessageContent, z.core.$ZodTypeInternals<MessageContent, MessageContent>>;
|
|
3565
|
+
conversationId: z.ZodString;
|
|
3566
|
+
agentId: z.ZodNullable<z.ZodString>;
|
|
3566
3567
|
fromAgentId: z.ZodNullable<z.ZodString>;
|
|
3567
3568
|
toAgentId: z.ZodNullable<z.ZodString>;
|
|
3568
3569
|
fromExternalAgentId: z.ZodNullable<z.ZodString>;
|
|
3569
3570
|
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
|
-
conversationId: z.ZodString;
|
|
3583
3582
|
metadata: z.ZodOptional<z.ZodNullable<z.ZodType<MessageMetadata, MessageMetadata, z.core.$ZodTypeInternals<MessageMetadata, MessageMetadata>>>>;
|
|
3584
|
-
agentId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
3585
3583
|
role: z.ZodString;
|
|
3584
|
+
content: z.ZodType<MessageContent, MessageContent, z.core.$ZodTypeInternals<MessageContent, MessageContent>>;
|
|
3585
|
+
conversationId: z.ZodString;
|
|
3586
|
+
agentId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
3586
3587
|
fromAgentId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
3587
3588
|
toAgentId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
3588
3589
|
fromExternalAgentId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
3589
3590
|
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
|
-
conversationId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
3603
3602
|
metadata: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<MessageMetadata, MessageMetadata, z.core.$ZodTypeInternals<MessageMetadata, MessageMetadata>>>>>>;
|
|
3604
|
-
agentId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
3605
3603
|
role: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
3604
|
+
content: z.ZodOptional<z.ZodOptional<z.ZodType<MessageContent, MessageContent, z.core.$ZodTypeInternals<MessageContent, MessageContent>>>>;
|
|
3605
|
+
conversationId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
3606
|
+
agentId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
3606
3607
|
fromAgentId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
3607
3608
|
toAgentId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
3608
3609
|
fromExternalAgentId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
3609
3610
|
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;
|
|
4338
4339
|
id: z.ZodString;
|
|
4339
4340
|
name: z.ZodString;
|
|
4340
4341
|
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,36 +5143,40 @@ 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>>;
|
|
5146
5147
|
createdAt: z.ZodString;
|
|
5147
5148
|
updatedAt: z.ZodString;
|
|
5148
5149
|
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>>;
|
|
5156
5157
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
5157
5158
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
5158
5159
|
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>>>>;
|
|
5166
5167
|
createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
5167
5168
|
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
5168
5169
|
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>>>;
|
|
5176
5180
|
models: z.ZodNullable<z.ZodType<{
|
|
5177
5181
|
base?: {
|
|
5178
5182
|
model?: string | undefined;
|
|
@@ -5235,19 +5239,15 @@ declare const AllAgentSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
5235
5239
|
}, {
|
|
5236
5240
|
stepCountIs?: number | undefined;
|
|
5237
5241
|
}>>>;
|
|
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>>;
|
|
5247
5248
|
createdAt: z.ZodString;
|
|
5248
5249
|
updatedAt: z.ZodString;
|
|
5249
5250
|
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>>;
|
|
5504
5503
|
graphId: z.ZodOptional<z.ZodString>;
|
|
5505
5504
|
lastUsedAt: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
5506
5505
|
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;
|
|
5516
5514
|
graphId: z.ZodString;
|
|
5517
5515
|
publicId: z.ZodString;
|
|
5518
5516
|
keyPrefix: z.ZodString;
|
|
5519
5517
|
lastUsedAt: z.ZodNullable<z.ZodString>;
|
|
5520
5518
|
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;
|
|
5532
5530
|
graphId: z.ZodString;
|
|
5533
5531
|
publicId: z.ZodString;
|
|
5534
5532
|
keyPrefix: z.ZodString;
|
|
5535
5533
|
lastUsedAt: z.ZodNullable<z.ZodString>;
|
|
5536
5534
|
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
|
-
createdAt: z.ZodOptional<z.ZodString>;
|
|
5547
|
-
updatedAt: z.ZodOptional<z.ZodString>;
|
|
5548
5546
|
graphId: z.ZodString;
|
|
5549
5547
|
expiresAt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
5548
|
+
createdAt: z.ZodOptional<z.ZodString>;
|
|
5549
|
+
updatedAt: z.ZodOptional<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>>;
|
|
5557
5556
|
graphId: z.ZodOptional<z.ZodString>;
|
|
5558
5557
|
lastUsedAt: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
5559
5558
|
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
|
-
imageUrl: z.ZodOptional<z.ZodString>;
|
|
5918
5917
|
capabilities: z.ZodOptional<z.ZodNullable<z.ZodType<ToolServerCapabilities, ToolServerCapabilities, z.core.$ZodTypeInternals<ToolServerCapabilities, ToolServerCapabilities>>>>;
|
|
5918
|
+
imageUrl: z.ZodOptional<z.ZodString>;
|
|
5919
5919
|
lastError: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
5920
5920
|
availableTools: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
5921
5921
|
name: z.ZodString;
|
|
@@ -5989,10 +5989,6 @@ 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>>>>;
|
|
5996
5992
|
config: z.ZodType<{
|
|
5997
5993
|
type: "mcp";
|
|
5998
5994
|
mcp: ToolMcpConfig;
|
|
@@ -6006,17 +6002,17 @@ declare const ToolApiSelectSchema: z.ZodObject<{
|
|
|
6006
6002
|
type: "mcp";
|
|
6007
6003
|
mcp: ToolMcpConfig;
|
|
6008
6004
|
}>>;
|
|
6009
|
-
|
|
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>>>>;
|
|
6010
6009
|
capabilities: z.ZodNullable<z.ZodType<ToolServerCapabilities, ToolServerCapabilities, z.core.$ZodTypeInternals<ToolServerCapabilities, ToolServerCapabilities>>>;
|
|
6010
|
+
imageUrl: z.ZodNullable<z.ZodString>;
|
|
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>>>>>;
|
|
6020
6016
|
config: z.ZodType<{
|
|
6021
6017
|
type: "mcp";
|
|
6022
6018
|
mcp: ToolMcpConfig;
|
|
@@ -6030,17 +6026,17 @@ declare const ToolApiInsertSchema: z.ZodObject<{
|
|
|
6030
6026
|
type: "mcp";
|
|
6031
6027
|
mcp: ToolMcpConfig;
|
|
6032
6028
|
}>>;
|
|
6033
|
-
|
|
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>>>>>;
|
|
6034
6033
|
capabilities: z.ZodOptional<z.ZodNullable<z.ZodType<ToolServerCapabilities, ToolServerCapabilities, z.core.$ZodTypeInternals<ToolServerCapabilities, ToolServerCapabilities>>>>;
|
|
6034
|
+
imageUrl: z.ZodOptional<z.ZodString>;
|
|
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>>>>>>>;
|
|
6044
6040
|
config: z.ZodOptional<z.ZodOptional<z.ZodType<{
|
|
6045
6041
|
type: "mcp";
|
|
6046
6042
|
mcp: ToolMcpConfig;
|
|
@@ -6054,8 +6050,12 @@ declare const ToolApiUpdateSchema: z.ZodObject<{
|
|
|
6054
6050
|
type: "mcp";
|
|
6055
6051
|
mcp: ToolMcpConfig;
|
|
6056
6052
|
}>>>>;
|
|
6057
|
-
|
|
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>>>>>>>;
|
|
6058
6057
|
capabilities: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<ToolServerCapabilities, ToolServerCapabilities, z.core.$ZodTypeInternals<ToolServerCapabilities, ToolServerCapabilities>>>>>>;
|
|
6058
|
+
imageUrl: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
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;
|
|
6127
6128
|
id: z.ZodString;
|
|
6128
6129
|
name: z.ZodString;
|
|
6129
6130
|
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>;
|
|
6139
6140
|
id: z.ZodOptional<z.ZodString>;
|
|
6140
6141
|
name: z.ZodOptional<z.ZodString>;
|
|
6141
6142
|
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;
|
|
6400
6399
|
toolId: z.ZodString;
|
|
6401
6400
|
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;
|
|
6409
6408
|
toolId: z.ZodString;
|
|
6410
6409
|
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>>;
|
|
6418
6417
|
toolId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
6419
6418
|
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;
|
|
7134
7135
|
name: z.ZodNullable<z.ZodString>;
|
|
7135
7136
|
description: z.ZodNullable<z.ZodString>;
|
|
7136
|
-
type: z.ZodString;
|
|
7137
7137
|
createdAt: z.ZodString;
|
|
7138
7138
|
updatedAt: z.ZodString;
|
|
7139
|
-
contextId: z.ZodString;
|
|
7140
7139
|
metadata: z.ZodNullable<z.ZodType<drizzle_zod.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod.Json, unknown>>>;
|
|
7140
|
+
contextId: z.ZodString;
|
|
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>;
|
|
7152
7153
|
name: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
7153
7154
|
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
|
-
contextId: z.ZodString;
|
|
7158
7157
|
metadata: z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod.Json, unknown>>>>;
|
|
7158
|
+
contextId: z.ZodString;
|
|
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>>>;
|
|
7170
7171
|
name: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
7171
7172
|
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
|
-
contextId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
7176
7175
|
metadata: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod.Json, unknown>>>>>>;
|
|
7176
|
+
contextId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
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>>>>;
|
|
@@ -7208,6 +7208,7 @@ declare const StatusUpdateSchema: z.ZodObject<{
|
|
|
7208
7208
|
}, z.core.$strip>>>;
|
|
7209
7209
|
}, z.core.$strip>;
|
|
7210
7210
|
declare const CanUseItemSchema: z.ZodObject<{
|
|
7211
|
+
agentToolRelationId: z.ZodOptional<z.ZodString>;
|
|
7211
7212
|
toolId: z.ZodString;
|
|
7212
7213
|
toolSelection: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodString>>>;
|
|
7213
7214
|
headers: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodString>>>;
|
|
@@ -7216,6 +7217,10 @@ declare const FullGraphAgentInsertSchema: z.ZodObject<{
|
|
|
7216
7217
|
id: z.ZodString;
|
|
7217
7218
|
name: z.ZodString;
|
|
7218
7219
|
description: z.ZodString;
|
|
7220
|
+
prompt: z.ZodString;
|
|
7221
|
+
createdAt: z.ZodOptional<z.ZodString>;
|
|
7222
|
+
updatedAt: z.ZodOptional<z.ZodString>;
|
|
7223
|
+
conversationHistoryConfig: z.ZodOptional<z.ZodNullable<z.ZodType<ConversationHistoryConfig, ConversationHistoryConfig, z.core.$ZodTypeInternals<ConversationHistoryConfig, ConversationHistoryConfig>>>>;
|
|
7219
7224
|
models: z.ZodOptional<z.ZodObject<{
|
|
7220
7225
|
base: z.ZodOptional<z.ZodObject<{
|
|
7221
7226
|
model: z.ZodOptional<z.ZodString>;
|
|
@@ -7239,12 +7244,9 @@ declare const FullGraphAgentInsertSchema: z.ZodObject<{
|
|
|
7239
7244
|
}, {
|
|
7240
7245
|
stepCountIs?: number | undefined;
|
|
7241
7246
|
}>>>>;
|
|
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
7247
|
type: z.ZodLiteral<"internal">;
|
|
7247
7248
|
canUse: z.ZodArray<z.ZodObject<{
|
|
7249
|
+
agentToolRelationId: z.ZodOptional<z.ZodString>;
|
|
7248
7250
|
toolId: z.ZodString;
|
|
7249
7251
|
toolSelection: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodString>>>;
|
|
7250
7252
|
headers: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodString>>>;
|
|
@@ -7266,6 +7268,10 @@ declare const FullGraphDefinitionSchema: z.ZodObject<{
|
|
|
7266
7268
|
id: z.ZodString;
|
|
7267
7269
|
name: z.ZodString;
|
|
7268
7270
|
description: z.ZodString;
|
|
7271
|
+
prompt: z.ZodString;
|
|
7272
|
+
createdAt: z.ZodOptional<z.ZodString>;
|
|
7273
|
+
updatedAt: z.ZodOptional<z.ZodString>;
|
|
7274
|
+
conversationHistoryConfig: z.ZodOptional<z.ZodNullable<z.ZodType<ConversationHistoryConfig, ConversationHistoryConfig, z.core.$ZodTypeInternals<ConversationHistoryConfig, ConversationHistoryConfig>>>>;
|
|
7269
7275
|
models: z.ZodOptional<z.ZodObject<{
|
|
7270
7276
|
base: z.ZodOptional<z.ZodObject<{
|
|
7271
7277
|
model: z.ZodOptional<z.ZodString>;
|
|
@@ -7289,12 +7295,9 @@ declare const FullGraphDefinitionSchema: z.ZodObject<{
|
|
|
7289
7295
|
}, {
|
|
7290
7296
|
stepCountIs?: number | undefined;
|
|
7291
7297
|
}>>>>;
|
|
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
7298
|
type: z.ZodLiteral<"internal">;
|
|
7297
7299
|
canUse: z.ZodArray<z.ZodObject<{
|
|
7300
|
+
agentToolRelationId: z.ZodOptional<z.ZodString>;
|
|
7298
7301
|
toolId: z.ZodString;
|
|
7299
7302
|
toolSelection: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodString>>>;
|
|
7300
7303
|
headers: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodString>>>;
|
|
@@ -7307,10 +7310,10 @@ declare const FullGraphDefinitionSchema: z.ZodObject<{
|
|
|
7307
7310
|
id: z.ZodString;
|
|
7308
7311
|
name: z.ZodString;
|
|
7309
7312
|
description: z.ZodString;
|
|
7313
|
+
credentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
7310
7314
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
7311
7315
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
7312
7316
|
baseUrl: z.ZodString;
|
|
7313
|
-
credentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
7314
7317
|
headers: z.ZodOptional<z.ZodNullable<z.ZodType<Record<string, string>, Record<string, string>, z.core.$ZodTypeInternals<Record<string, string>, Record<string, string>>>>>;
|
|
7315
7318
|
}, z.core.$strip>]>>;
|
|
7316
7319
|
contextConfig: z.ZodOptional<z.ZodObject<{
|
|
@@ -7423,6 +7426,10 @@ declare const GraphWithinContextOfProjectSchema: z.ZodObject<{
|
|
|
7423
7426
|
id: z.ZodString;
|
|
7424
7427
|
name: z.ZodString;
|
|
7425
7428
|
description: z.ZodString;
|
|
7429
|
+
prompt: z.ZodString;
|
|
7430
|
+
createdAt: z.ZodOptional<z.ZodString>;
|
|
7431
|
+
updatedAt: z.ZodOptional<z.ZodString>;
|
|
7432
|
+
conversationHistoryConfig: z.ZodOptional<z.ZodNullable<z.ZodType<ConversationHistoryConfig, ConversationHistoryConfig, z.core.$ZodTypeInternals<ConversationHistoryConfig, ConversationHistoryConfig>>>>;
|
|
7426
7433
|
models: z.ZodOptional<z.ZodObject<{
|
|
7427
7434
|
base: z.ZodOptional<z.ZodObject<{
|
|
7428
7435
|
model: z.ZodOptional<z.ZodString>;
|
|
@@ -7446,12 +7453,9 @@ declare const GraphWithinContextOfProjectSchema: z.ZodObject<{
|
|
|
7446
7453
|
}, {
|
|
7447
7454
|
stepCountIs?: number | undefined;
|
|
7448
7455
|
}>>>>;
|
|
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
7456
|
type: z.ZodLiteral<"internal">;
|
|
7454
7457
|
canUse: z.ZodArray<z.ZodObject<{
|
|
7458
|
+
agentToolRelationId: z.ZodOptional<z.ZodString>;
|
|
7455
7459
|
toolId: z.ZodString;
|
|
7456
7460
|
toolSelection: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodString>>>;
|
|
7457
7461
|
headers: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodString>>>;
|
|
@@ -7464,10 +7468,10 @@ declare const GraphWithinContextOfProjectSchema: z.ZodObject<{
|
|
|
7464
7468
|
id: z.ZodString;
|
|
7465
7469
|
name: z.ZodString;
|
|
7466
7470
|
description: z.ZodString;
|
|
7471
|
+
credentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
7467
7472
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
7468
7473
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
7469
7474
|
baseUrl: z.ZodString;
|
|
7470
|
-
credentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
7471
7475
|
headers: z.ZodOptional<z.ZodNullable<z.ZodType<Record<string, string>, Record<string, string>, z.core.$ZodTypeInternals<Record<string, string>, Record<string, string>>>>>;
|
|
7472
7476
|
type: z.ZodLiteral<"external">;
|
|
7473
7477
|
}, z.core.$strip>], "type">>;
|
|
@@ -7764,6 +7768,8 @@ declare const ProjectApiSelectSchema: z.ZodObject<{
|
|
|
7764
7768
|
id: z.ZodString;
|
|
7765
7769
|
name: z.ZodString;
|
|
7766
7770
|
description: z.ZodString;
|
|
7771
|
+
createdAt: z.ZodString;
|
|
7772
|
+
updatedAt: z.ZodString;
|
|
7767
7773
|
models: z.ZodNullable<z.ZodType<{
|
|
7768
7774
|
base: {
|
|
7769
7775
|
model?: string | undefined;
|
|
@@ -7830,8 +7836,6 @@ declare const ProjectApiSelectSchema: z.ZodObject<{
|
|
|
7830
7836
|
transferCountIs?: number | undefined;
|
|
7831
7837
|
stepCountIs?: number | undefined;
|
|
7832
7838
|
}>>>;
|
|
7833
|
-
createdAt: z.ZodString;
|
|
7834
|
-
updatedAt: z.ZodString;
|
|
7835
7839
|
}, {
|
|
7836
7840
|
out: {};
|
|
7837
7841
|
in: {};
|
|
@@ -7979,6 +7983,10 @@ declare const FullProjectDefinitionSchema: z.ZodObject<{
|
|
|
7979
7983
|
id: z.ZodString;
|
|
7980
7984
|
name: z.ZodString;
|
|
7981
7985
|
description: z.ZodString;
|
|
7986
|
+
prompt: z.ZodString;
|
|
7987
|
+
createdAt: z.ZodOptional<z.ZodString>;
|
|
7988
|
+
updatedAt: z.ZodOptional<z.ZodString>;
|
|
7989
|
+
conversationHistoryConfig: z.ZodOptional<z.ZodNullable<z.ZodType<ConversationHistoryConfig, ConversationHistoryConfig, z.core.$ZodTypeInternals<ConversationHistoryConfig, ConversationHistoryConfig>>>>;
|
|
7982
7990
|
models: z.ZodOptional<z.ZodObject<{
|
|
7983
7991
|
base: z.ZodOptional<z.ZodObject<{
|
|
7984
7992
|
model: z.ZodOptional<z.ZodString>;
|
|
@@ -8002,12 +8010,9 @@ declare const FullProjectDefinitionSchema: z.ZodObject<{
|
|
|
8002
8010
|
}, {
|
|
8003
8011
|
stepCountIs?: number | undefined;
|
|
8004
8012
|
}>>>>;
|
|
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
8013
|
type: z.ZodLiteral<"internal">;
|
|
8010
8014
|
canUse: z.ZodArray<z.ZodObject<{
|
|
8015
|
+
agentToolRelationId: z.ZodOptional<z.ZodString>;
|
|
8011
8016
|
toolId: z.ZodString;
|
|
8012
8017
|
toolSelection: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodString>>>;
|
|
8013
8018
|
headers: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodString>>>;
|
|
@@ -8020,10 +8025,10 @@ declare const FullProjectDefinitionSchema: z.ZodObject<{
|
|
|
8020
8025
|
id: z.ZodString;
|
|
8021
8026
|
name: z.ZodString;
|
|
8022
8027
|
description: z.ZodString;
|
|
8028
|
+
credentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
8023
8029
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
8024
8030
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
8025
8031
|
baseUrl: z.ZodString;
|
|
8026
|
-
credentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
8027
8032
|
headers: z.ZodOptional<z.ZodNullable<z.ZodType<Record<string, string>, Record<string, string>, z.core.$ZodTypeInternals<Record<string, string>, Record<string, string>>>>>;
|
|
8028
8033
|
type: z.ZodLiteral<"external">;
|
|
8029
8034
|
}, z.core.$strip>], "type">>;
|
|
@@ -8049,10 +8054,6 @@ declare const FullProjectDefinitionSchema: z.ZodObject<{
|
|
|
8049
8054
|
tools: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
8050
8055
|
id: z.ZodString;
|
|
8051
8056
|
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>>>>>;
|
|
8056
8057
|
config: z.ZodType<{
|
|
8057
8058
|
type: "mcp";
|
|
8058
8059
|
mcp: ToolMcpConfig;
|
|
@@ -8066,8 +8067,12 @@ declare const FullProjectDefinitionSchema: z.ZodObject<{
|
|
|
8066
8067
|
type: "mcp";
|
|
8067
8068
|
mcp: ToolMcpConfig;
|
|
8068
8069
|
}>>;
|
|
8069
|
-
|
|
8070
|
+
credentialReferenceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
8071
|
+
createdAt: z.ZodOptional<z.ZodString>;
|
|
8072
|
+
updatedAt: z.ZodOptional<z.ZodString>;
|
|
8073
|
+
headers: z.ZodOptional<z.ZodNullable<z.ZodType<Record<string, string>, Record<string, string>, z.core.$ZodTypeInternals<Record<string, string>, Record<string, string>>>>>;
|
|
8070
8074
|
capabilities: z.ZodOptional<z.ZodNullable<z.ZodType<ToolServerCapabilities, ToolServerCapabilities, z.core.$ZodTypeInternals<ToolServerCapabilities, ToolServerCapabilities>>>>;
|
|
8075
|
+
imageUrl: z.ZodOptional<z.ZodString>;
|
|
8071
8076
|
lastError: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
8072
8077
|
}, z.core.$strip>>;
|
|
8073
8078
|
dataComponents: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|