@inkeep/agents-core 0.34.1 → 0.35.1
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-UMFCT6A6.js → chunk-DYGTCLJO.js} +1 -1
- package/dist/{chunk-4VUM4EJL.js → chunk-J5AHY6M2.js} +1 -1
- package/dist/{chunk-E6R6PML7.js → chunk-SIAA4J6H.js} +1 -3
- package/dist/{chunk-YECQCT5N.js → chunk-W3L4M7FO.js} +6 -8
- package/dist/{chunk-EKV6C5GS.js → chunk-YZ5ZBVHJ.js} +104 -5
- package/dist/client-exports.cjs +92 -1
- package/dist/client-exports.d.cts +2 -2
- package/dist/client-exports.d.ts +2 -2
- package/dist/client-exports.js +2 -2
- package/dist/db/schema.cjs +100 -1
- package/dist/db/schema.d.cts +2 -2
- package/dist/db/schema.d.ts +2 -2
- package/dist/db/schema.js +1 -1
- package/dist/index.cjs +1541 -1317
- package/dist/index.d.cts +223 -13
- package/dist/index.d.ts +223 -13
- package/dist/index.js +589 -478
- package/dist/{schema-CaEvIRdT.d.cts → schema-BWd551GM.d.ts} +1105 -3
- package/dist/{schema-DvYv9PQ1.d.ts → schema-D4WR42em.d.cts} +1105 -3
- package/dist/types/index.d.cts +2 -2
- package/dist/types/index.d.ts +2 -2
- package/dist/utils/schema-conversion.cjs +6 -10
- package/dist/utils/schema-conversion.js +1 -1
- package/dist/validation/index.cjs +92 -1
- package/dist/validation/index.d.cts +2 -2
- package/dist/validation/index.d.ts +2 -2
- package/dist/validation/index.js +2 -2
- package/drizzle/0001_fair_malice.sql +115 -0
- package/drizzle/meta/0001_snapshot.json +3520 -0
- package/drizzle/meta/_journal.json +8 -1
- package/package.json +3 -1
- package/dist/{utility-htaewQEL.d.cts → utility-DbltUp2Q.d.cts} +15 -15
- package/dist/{utility-htaewQEL.d.ts → utility-DbltUp2Q.d.ts} +15 -15
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@inkeep/agents-core",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.35.1",
|
|
4
4
|
"description": "Agents Core contains the database schema, types, and validation schemas for Inkeep Agent Framework, along with core components.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"license": "SEE LICENSE IN LICENSE.md",
|
|
@@ -41,6 +41,7 @@
|
|
|
41
41
|
"clean-package": "./clean-package.config.json",
|
|
42
42
|
"dependencies": {
|
|
43
43
|
"@electric-sql/pglite": "^0.3.13",
|
|
44
|
+
"@better-auth/sso": "^1.3.34",
|
|
44
45
|
"@hono/node-server": "^1.14.3",
|
|
45
46
|
"@hono/zod-openapi": "^1.0.2",
|
|
46
47
|
"@modelcontextprotocol/sdk": "^1.17.2",
|
|
@@ -58,6 +59,7 @@
|
|
|
58
59
|
"ai": "5.0.11",
|
|
59
60
|
"ajv": "^8.17.1",
|
|
60
61
|
"ajv-formats": "^3.0.1",
|
|
62
|
+
"better-auth": "^1.3.34",
|
|
61
63
|
"dotenv": "^17.2.1",
|
|
62
64
|
"dotenv-expand": "^12.0.3",
|
|
63
65
|
"drizzle-orm": "^0.44.4",
|
|
@@ -3245,8 +3245,8 @@ declare const TaskApiSelectSchema: z.ZodObject<{
|
|
|
3245
3245
|
agentId: z.ZodString;
|
|
3246
3246
|
createdAt: z.ZodString;
|
|
3247
3247
|
updatedAt: z.ZodString;
|
|
3248
|
-
status: z.ZodString;
|
|
3249
3248
|
metadata: z.ZodNullable<z.ZodType<TaskMetadataConfig, TaskMetadataConfig, z.core.$ZodTypeInternals<TaskMetadataConfig, TaskMetadataConfig>>>;
|
|
3249
|
+
status: z.ZodString;
|
|
3250
3250
|
contextId: z.ZodString;
|
|
3251
3251
|
subAgentId: z.ZodString;
|
|
3252
3252
|
}, z.core.$strip>;
|
|
@@ -3255,8 +3255,8 @@ declare const TaskApiInsertSchema: z.ZodObject<{
|
|
|
3255
3255
|
agentId: z.ZodString;
|
|
3256
3256
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
3257
3257
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
3258
|
-
status: z.ZodString;
|
|
3259
3258
|
metadata: z.ZodOptional<z.ZodNullable<z.ZodType<TaskMetadataConfig, TaskMetadataConfig, z.core.$ZodTypeInternals<TaskMetadataConfig, TaskMetadataConfig>>>>;
|
|
3259
|
+
status: z.ZodString;
|
|
3260
3260
|
conversationId: z.ZodOptional<z.ZodString>;
|
|
3261
3261
|
contextId: z.ZodString;
|
|
3262
3262
|
subAgentId: z.ZodString;
|
|
@@ -3266,8 +3266,8 @@ declare const TaskApiUpdateSchema: z.ZodObject<{
|
|
|
3266
3266
|
agentId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
3267
3267
|
createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
3268
3268
|
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
3269
|
-
status: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
3270
3269
|
metadata: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<TaskMetadataConfig, TaskMetadataConfig, z.core.$ZodTypeInternals<TaskMetadataConfig, TaskMetadataConfig>>>>>>;
|
|
3270
|
+
status: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
3271
3271
|
conversationId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
3272
3272
|
contextId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
3273
3273
|
subAgentId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
@@ -4581,8 +4581,8 @@ declare const ConversationApiInsertSchema: z.ZodObject<{
|
|
|
4581
4581
|
title: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
4582
4582
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
4583
4583
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
4584
|
-
contextConfigId: z.ZodOptional<z.ZodString>;
|
|
4585
4584
|
metadata: z.ZodOptional<z.ZodNullable<z.ZodType<ConversationMetadata, ConversationMetadata, z.core.$ZodTypeInternals<ConversationMetadata, ConversationMetadata>>>>;
|
|
4585
|
+
contextConfigId: z.ZodOptional<z.ZodString>;
|
|
4586
4586
|
userId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
4587
4587
|
activeSubAgentId: z.ZodString;
|
|
4588
4588
|
lastContextResolution: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
@@ -4592,8 +4592,8 @@ declare const ConversationApiUpdateSchema: z.ZodObject<{
|
|
|
4592
4592
|
title: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
4593
4593
|
createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
4594
4594
|
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
4595
|
-
contextConfigId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
4596
4595
|
metadata: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<ConversationMetadata, ConversationMetadata, z.core.$ZodTypeInternals<ConversationMetadata, ConversationMetadata>>>>>>;
|
|
4596
|
+
contextConfigId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
4597
4597
|
userId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
4598
4598
|
activeSubAgentId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
4599
4599
|
lastContextResolution: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
@@ -5447,10 +5447,10 @@ declare const MessageApiSelectSchema: z.ZodObject<{
|
|
|
5447
5447
|
id: z.ZodString;
|
|
5448
5448
|
createdAt: z.ZodString;
|
|
5449
5449
|
updatedAt: z.ZodString;
|
|
5450
|
-
content: z.ZodType<MessageContent, MessageContent, z.core.$ZodTypeInternals<MessageContent, MessageContent>>;
|
|
5451
5450
|
metadata: z.ZodNullable<z.ZodType<MessageMetadata, MessageMetadata, z.core.$ZodTypeInternals<MessageMetadata, MessageMetadata>>>;
|
|
5452
|
-
|
|
5451
|
+
content: z.ZodType<MessageContent, MessageContent, z.core.$ZodTypeInternals<MessageContent, MessageContent>>;
|
|
5453
5452
|
role: z.ZodString;
|
|
5453
|
+
conversationId: z.ZodString;
|
|
5454
5454
|
fromSubAgentId: z.ZodNullable<z.ZodString>;
|
|
5455
5455
|
toSubAgentId: z.ZodNullable<z.ZodString>;
|
|
5456
5456
|
fromExternalAgentId: z.ZodNullable<z.ZodString>;
|
|
@@ -5468,10 +5468,10 @@ declare const MessageApiInsertSchema: z.ZodObject<{
|
|
|
5468
5468
|
id: z.ZodString;
|
|
5469
5469
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
5470
5470
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
5471
|
-
content: z.ZodType<MessageContent, MessageContent, z.core.$ZodTypeInternals<MessageContent, MessageContent>>;
|
|
5472
5471
|
metadata: z.ZodOptional<z.ZodNullable<z.ZodType<MessageMetadata, MessageMetadata, z.core.$ZodTypeInternals<MessageMetadata, MessageMetadata>>>>;
|
|
5473
|
-
|
|
5472
|
+
content: z.ZodType<MessageContent, MessageContent, z.core.$ZodTypeInternals<MessageContent, MessageContent>>;
|
|
5474
5473
|
role: z.ZodString;
|
|
5474
|
+
conversationId: z.ZodString;
|
|
5475
5475
|
fromSubAgentId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
5476
5476
|
toSubAgentId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
5477
5477
|
fromExternalAgentId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
@@ -5489,10 +5489,10 @@ declare const MessageApiUpdateSchema: z.ZodObject<{
|
|
|
5489
5489
|
id: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
5490
5490
|
createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
5491
5491
|
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
5492
|
-
content: z.ZodOptional<z.ZodOptional<z.ZodType<MessageContent, MessageContent, z.core.$ZodTypeInternals<MessageContent, MessageContent>>>>;
|
|
5493
5492
|
metadata: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<MessageMetadata, MessageMetadata, z.core.$ZodTypeInternals<MessageMetadata, MessageMetadata>>>>>>;
|
|
5494
|
-
|
|
5493
|
+
content: z.ZodOptional<z.ZodOptional<z.ZodType<MessageContent, MessageContent, z.core.$ZodTypeInternals<MessageContent, MessageContent>>>>;
|
|
5495
5494
|
role: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
5495
|
+
conversationId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
5496
5496
|
fromSubAgentId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
5497
5497
|
toSubAgentId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
5498
5498
|
fromExternalAgentId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
@@ -14870,10 +14870,10 @@ declare const MessageResponse: z.ZodObject<{
|
|
|
14870
14870
|
id: z.ZodString;
|
|
14871
14871
|
createdAt: z.ZodString;
|
|
14872
14872
|
updatedAt: z.ZodString;
|
|
14873
|
-
content: z.ZodType<MessageContent, MessageContent, z.core.$ZodTypeInternals<MessageContent, MessageContent>>;
|
|
14874
14873
|
metadata: z.ZodNullable<z.ZodType<MessageMetadata, MessageMetadata, z.core.$ZodTypeInternals<MessageMetadata, MessageMetadata>>>;
|
|
14875
|
-
|
|
14874
|
+
content: z.ZodType<MessageContent, MessageContent, z.core.$ZodTypeInternals<MessageContent, MessageContent>>;
|
|
14876
14875
|
role: z.ZodString;
|
|
14876
|
+
conversationId: z.ZodString;
|
|
14877
14877
|
fromSubAgentId: z.ZodNullable<z.ZodString>;
|
|
14878
14878
|
toSubAgentId: z.ZodNullable<z.ZodString>;
|
|
14879
14879
|
fromExternalAgentId: z.ZodNullable<z.ZodString>;
|
|
@@ -15885,10 +15885,10 @@ declare const MessageListResponse: z.ZodObject<{
|
|
|
15885
15885
|
id: z.ZodString;
|
|
15886
15886
|
createdAt: z.ZodString;
|
|
15887
15887
|
updatedAt: z.ZodString;
|
|
15888
|
-
content: z.ZodType<MessageContent, MessageContent, z.core.$ZodTypeInternals<MessageContent, MessageContent>>;
|
|
15889
15888
|
metadata: z.ZodNullable<z.ZodType<MessageMetadata, MessageMetadata, z.core.$ZodTypeInternals<MessageMetadata, MessageMetadata>>>;
|
|
15890
|
-
|
|
15889
|
+
content: z.ZodType<MessageContent, MessageContent, z.core.$ZodTypeInternals<MessageContent, MessageContent>>;
|
|
15891
15890
|
role: z.ZodString;
|
|
15891
|
+
conversationId: z.ZodString;
|
|
15892
15892
|
fromSubAgentId: z.ZodNullable<z.ZodString>;
|
|
15893
15893
|
toSubAgentId: z.ZodNullable<z.ZodString>;
|
|
15894
15894
|
fromExternalAgentId: z.ZodNullable<z.ZodString>;
|
|
@@ -3245,8 +3245,8 @@ declare const TaskApiSelectSchema: z.ZodObject<{
|
|
|
3245
3245
|
agentId: z.ZodString;
|
|
3246
3246
|
createdAt: z.ZodString;
|
|
3247
3247
|
updatedAt: z.ZodString;
|
|
3248
|
-
status: z.ZodString;
|
|
3249
3248
|
metadata: z.ZodNullable<z.ZodType<TaskMetadataConfig, TaskMetadataConfig, z.core.$ZodTypeInternals<TaskMetadataConfig, TaskMetadataConfig>>>;
|
|
3249
|
+
status: z.ZodString;
|
|
3250
3250
|
contextId: z.ZodString;
|
|
3251
3251
|
subAgentId: z.ZodString;
|
|
3252
3252
|
}, z.core.$strip>;
|
|
@@ -3255,8 +3255,8 @@ declare const TaskApiInsertSchema: z.ZodObject<{
|
|
|
3255
3255
|
agentId: z.ZodString;
|
|
3256
3256
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
3257
3257
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
3258
|
-
status: z.ZodString;
|
|
3259
3258
|
metadata: z.ZodOptional<z.ZodNullable<z.ZodType<TaskMetadataConfig, TaskMetadataConfig, z.core.$ZodTypeInternals<TaskMetadataConfig, TaskMetadataConfig>>>>;
|
|
3259
|
+
status: z.ZodString;
|
|
3260
3260
|
conversationId: z.ZodOptional<z.ZodString>;
|
|
3261
3261
|
contextId: z.ZodString;
|
|
3262
3262
|
subAgentId: z.ZodString;
|
|
@@ -3266,8 +3266,8 @@ declare const TaskApiUpdateSchema: z.ZodObject<{
|
|
|
3266
3266
|
agentId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
3267
3267
|
createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
3268
3268
|
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
3269
|
-
status: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
3270
3269
|
metadata: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<TaskMetadataConfig, TaskMetadataConfig, z.core.$ZodTypeInternals<TaskMetadataConfig, TaskMetadataConfig>>>>>>;
|
|
3270
|
+
status: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
3271
3271
|
conversationId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
3272
3272
|
contextId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
3273
3273
|
subAgentId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
@@ -4581,8 +4581,8 @@ declare const ConversationApiInsertSchema: z.ZodObject<{
|
|
|
4581
4581
|
title: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
4582
4582
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
4583
4583
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
4584
|
-
contextConfigId: z.ZodOptional<z.ZodString>;
|
|
4585
4584
|
metadata: z.ZodOptional<z.ZodNullable<z.ZodType<ConversationMetadata, ConversationMetadata, z.core.$ZodTypeInternals<ConversationMetadata, ConversationMetadata>>>>;
|
|
4585
|
+
contextConfigId: z.ZodOptional<z.ZodString>;
|
|
4586
4586
|
userId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
4587
4587
|
activeSubAgentId: z.ZodString;
|
|
4588
4588
|
lastContextResolution: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
@@ -4592,8 +4592,8 @@ declare const ConversationApiUpdateSchema: z.ZodObject<{
|
|
|
4592
4592
|
title: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
4593
4593
|
createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
4594
4594
|
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
4595
|
-
contextConfigId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
4596
4595
|
metadata: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<ConversationMetadata, ConversationMetadata, z.core.$ZodTypeInternals<ConversationMetadata, ConversationMetadata>>>>>>;
|
|
4596
|
+
contextConfigId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
4597
4597
|
userId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
4598
4598
|
activeSubAgentId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
4599
4599
|
lastContextResolution: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
@@ -5447,10 +5447,10 @@ declare const MessageApiSelectSchema: z.ZodObject<{
|
|
|
5447
5447
|
id: z.ZodString;
|
|
5448
5448
|
createdAt: z.ZodString;
|
|
5449
5449
|
updatedAt: z.ZodString;
|
|
5450
|
-
content: z.ZodType<MessageContent, MessageContent, z.core.$ZodTypeInternals<MessageContent, MessageContent>>;
|
|
5451
5450
|
metadata: z.ZodNullable<z.ZodType<MessageMetadata, MessageMetadata, z.core.$ZodTypeInternals<MessageMetadata, MessageMetadata>>>;
|
|
5452
|
-
|
|
5451
|
+
content: z.ZodType<MessageContent, MessageContent, z.core.$ZodTypeInternals<MessageContent, MessageContent>>;
|
|
5453
5452
|
role: z.ZodString;
|
|
5453
|
+
conversationId: z.ZodString;
|
|
5454
5454
|
fromSubAgentId: z.ZodNullable<z.ZodString>;
|
|
5455
5455
|
toSubAgentId: z.ZodNullable<z.ZodString>;
|
|
5456
5456
|
fromExternalAgentId: z.ZodNullable<z.ZodString>;
|
|
@@ -5468,10 +5468,10 @@ declare const MessageApiInsertSchema: z.ZodObject<{
|
|
|
5468
5468
|
id: z.ZodString;
|
|
5469
5469
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
5470
5470
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
5471
|
-
content: z.ZodType<MessageContent, MessageContent, z.core.$ZodTypeInternals<MessageContent, MessageContent>>;
|
|
5472
5471
|
metadata: z.ZodOptional<z.ZodNullable<z.ZodType<MessageMetadata, MessageMetadata, z.core.$ZodTypeInternals<MessageMetadata, MessageMetadata>>>>;
|
|
5473
|
-
|
|
5472
|
+
content: z.ZodType<MessageContent, MessageContent, z.core.$ZodTypeInternals<MessageContent, MessageContent>>;
|
|
5474
5473
|
role: z.ZodString;
|
|
5474
|
+
conversationId: z.ZodString;
|
|
5475
5475
|
fromSubAgentId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
5476
5476
|
toSubAgentId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
5477
5477
|
fromExternalAgentId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
@@ -5489,10 +5489,10 @@ declare const MessageApiUpdateSchema: z.ZodObject<{
|
|
|
5489
5489
|
id: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
5490
5490
|
createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
5491
5491
|
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
5492
|
-
content: z.ZodOptional<z.ZodOptional<z.ZodType<MessageContent, MessageContent, z.core.$ZodTypeInternals<MessageContent, MessageContent>>>>;
|
|
5493
5492
|
metadata: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<MessageMetadata, MessageMetadata, z.core.$ZodTypeInternals<MessageMetadata, MessageMetadata>>>>>>;
|
|
5494
|
-
|
|
5493
|
+
content: z.ZodOptional<z.ZodOptional<z.ZodType<MessageContent, MessageContent, z.core.$ZodTypeInternals<MessageContent, MessageContent>>>>;
|
|
5495
5494
|
role: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
5495
|
+
conversationId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
5496
5496
|
fromSubAgentId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
5497
5497
|
toSubAgentId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
5498
5498
|
fromExternalAgentId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
@@ -14870,10 +14870,10 @@ declare const MessageResponse: z.ZodObject<{
|
|
|
14870
14870
|
id: z.ZodString;
|
|
14871
14871
|
createdAt: z.ZodString;
|
|
14872
14872
|
updatedAt: z.ZodString;
|
|
14873
|
-
content: z.ZodType<MessageContent, MessageContent, z.core.$ZodTypeInternals<MessageContent, MessageContent>>;
|
|
14874
14873
|
metadata: z.ZodNullable<z.ZodType<MessageMetadata, MessageMetadata, z.core.$ZodTypeInternals<MessageMetadata, MessageMetadata>>>;
|
|
14875
|
-
|
|
14874
|
+
content: z.ZodType<MessageContent, MessageContent, z.core.$ZodTypeInternals<MessageContent, MessageContent>>;
|
|
14876
14875
|
role: z.ZodString;
|
|
14876
|
+
conversationId: z.ZodString;
|
|
14877
14877
|
fromSubAgentId: z.ZodNullable<z.ZodString>;
|
|
14878
14878
|
toSubAgentId: z.ZodNullable<z.ZodString>;
|
|
14879
14879
|
fromExternalAgentId: z.ZodNullable<z.ZodString>;
|
|
@@ -15885,10 +15885,10 @@ declare const MessageListResponse: z.ZodObject<{
|
|
|
15885
15885
|
id: z.ZodString;
|
|
15886
15886
|
createdAt: z.ZodString;
|
|
15887
15887
|
updatedAt: z.ZodString;
|
|
15888
|
-
content: z.ZodType<MessageContent, MessageContent, z.core.$ZodTypeInternals<MessageContent, MessageContent>>;
|
|
15889
15888
|
metadata: z.ZodNullable<z.ZodType<MessageMetadata, MessageMetadata, z.core.$ZodTypeInternals<MessageMetadata, MessageMetadata>>>;
|
|
15890
|
-
|
|
15889
|
+
content: z.ZodType<MessageContent, MessageContent, z.core.$ZodTypeInternals<MessageContent, MessageContent>>;
|
|
15891
15890
|
role: z.ZodString;
|
|
15891
|
+
conversationId: z.ZodString;
|
|
15892
15892
|
fromSubAgentId: z.ZodNullable<z.ZodString>;
|
|
15893
15893
|
toSubAgentId: z.ZodNullable<z.ZodString>;
|
|
15894
15894
|
fromExternalAgentId: z.ZodNullable<z.ZodString>;
|