@inkeep/agents-core 0.0.0-dev-20260124042902 → 0.0.0-dev-20260125001234
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/auth/auth-schema.d.ts +104 -104
- package/dist/auth/auth.d.ts +53 -53
- package/dist/auth/permissions.d.ts +13 -13
- package/dist/data-access/index.d.ts +2 -2
- package/dist/data-access/index.js +2 -2
- package/dist/data-access/manage/tools.d.ts +7 -1
- package/dist/data-access/manage/tools.js +24 -7
- package/dist/data-access/runtime/conversations.d.ts +7 -7
- package/dist/data-access/runtime/messages.d.ts +6 -6
- package/dist/data-access/runtime/tasks.d.ts +3 -3
- package/dist/db/runtime/runtime-schema.d.ts +181 -181
- package/dist/index.d.ts +3 -3
- package/dist/index.js +3 -3
- package/dist/utils/index.d.ts +2 -2
- package/dist/utils/index.js +2 -2
- package/dist/utils/third-party-mcp-servers/composio-client.d.ts +13 -1
- package/dist/utils/third-party-mcp-servers/composio-client.js +24 -6
- package/dist/utils/third-party-mcp-servers/index.d.ts +2 -2
- package/dist/utils/third-party-mcp-servers/index.js +2 -2
- package/dist/validation/dolt-schemas.d.ts +1 -1
- package/dist/validation/schemas.d.ts +53 -53
- package/package.json +1 -1
|
@@ -5046,7 +5046,7 @@ declare const TaskSelectSchema: drizzle_zod19.BuildSchema<"select", {
|
|
|
5046
5046
|
dataType: "json";
|
|
5047
5047
|
columnType: "PgJsonb";
|
|
5048
5048
|
data: {
|
|
5049
|
-
type: "
|
|
5049
|
+
type: "commit" | "tag" | "branch";
|
|
5050
5050
|
name: string;
|
|
5051
5051
|
hash: string;
|
|
5052
5052
|
};
|
|
@@ -5062,7 +5062,7 @@ declare const TaskSelectSchema: drizzle_zod19.BuildSchema<"select", {
|
|
|
5062
5062
|
generated: undefined;
|
|
5063
5063
|
}, {}, {
|
|
5064
5064
|
$type: {
|
|
5065
|
-
type: "
|
|
5065
|
+
type: "commit" | "tag" | "branch";
|
|
5066
5066
|
name: string;
|
|
5067
5067
|
hash: string;
|
|
5068
5068
|
};
|
|
@@ -5260,7 +5260,7 @@ declare const TaskSelectSchema: drizzle_zod19.BuildSchema<"select", {
|
|
|
5260
5260
|
dataType: "json";
|
|
5261
5261
|
columnType: "PgJsonb";
|
|
5262
5262
|
data: {
|
|
5263
|
-
type: "
|
|
5263
|
+
type: "commit" | "tag" | "branch";
|
|
5264
5264
|
name: string;
|
|
5265
5265
|
hash: string;
|
|
5266
5266
|
};
|
|
@@ -5276,7 +5276,7 @@ declare const TaskSelectSchema: drizzle_zod19.BuildSchema<"select", {
|
|
|
5276
5276
|
generated: undefined;
|
|
5277
5277
|
}, {}, {
|
|
5278
5278
|
$type: {
|
|
5279
|
-
type: "
|
|
5279
|
+
type: "commit" | "tag" | "branch";
|
|
5280
5280
|
name: string;
|
|
5281
5281
|
hash: string;
|
|
5282
5282
|
};
|
|
@@ -5429,8 +5429,8 @@ declare const TaskInsertSchema: z.ZodObject<{
|
|
|
5429
5429
|
conversationId: z.ZodOptional<z.ZodString>;
|
|
5430
5430
|
ref: z.ZodObject<{
|
|
5431
5431
|
type: z.ZodEnum<{
|
|
5432
|
-
tag: "tag";
|
|
5433
5432
|
commit: "commit";
|
|
5433
|
+
tag: "tag";
|
|
5434
5434
|
branch: "branch";
|
|
5435
5435
|
}>;
|
|
5436
5436
|
name: z.ZodString;
|
|
@@ -5454,8 +5454,8 @@ declare const TaskUpdateSchema: z.ZodObject<{
|
|
|
5454
5454
|
conversationId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
5455
5455
|
ref: z.ZodOptional<z.ZodObject<{
|
|
5456
5456
|
type: z.ZodEnum<{
|
|
5457
|
-
tag: "tag";
|
|
5458
5457
|
commit: "commit";
|
|
5458
|
+
tag: "tag";
|
|
5459
5459
|
branch: "branch";
|
|
5460
5460
|
}>;
|
|
5461
5461
|
name: z.ZodString;
|
|
@@ -5470,19 +5470,19 @@ declare const TaskApiSelectSchema: z.ZodObject<OmitProjectScope<{
|
|
|
5470
5470
|
updatedAt: z.ZodString;
|
|
5471
5471
|
contextId: z.ZodString;
|
|
5472
5472
|
ref: z.ZodNullable<z.ZodType<{
|
|
5473
|
-
type: "
|
|
5473
|
+
type: "commit" | "tag" | "branch";
|
|
5474
5474
|
name: string;
|
|
5475
5475
|
hash: string;
|
|
5476
5476
|
}, {
|
|
5477
|
-
type: "
|
|
5477
|
+
type: "commit" | "tag" | "branch";
|
|
5478
5478
|
name: string;
|
|
5479
5479
|
hash: string;
|
|
5480
5480
|
}, z.core.$ZodTypeInternals<{
|
|
5481
|
-
type: "
|
|
5481
|
+
type: "commit" | "tag" | "branch";
|
|
5482
5482
|
name: string;
|
|
5483
5483
|
hash: string;
|
|
5484
5484
|
}, {
|
|
5485
|
-
type: "
|
|
5485
|
+
type: "commit" | "tag" | "branch";
|
|
5486
5486
|
name: string;
|
|
5487
5487
|
hash: string;
|
|
5488
5488
|
}>>>;
|
|
@@ -5508,8 +5508,8 @@ declare const TaskApiInsertSchema: z.ZodObject<OmitProjectScope<{
|
|
|
5508
5508
|
conversationId: z.ZodOptional<z.ZodString>;
|
|
5509
5509
|
ref: z.ZodObject<{
|
|
5510
5510
|
type: z.ZodEnum<{
|
|
5511
|
-
tag: "tag";
|
|
5512
5511
|
commit: "commit";
|
|
5512
|
+
tag: "tag";
|
|
5513
5513
|
branch: "branch";
|
|
5514
5514
|
}>;
|
|
5515
5515
|
name: z.ZodString;
|
|
@@ -5524,17 +5524,17 @@ declare const TaskApiUpdateSchema: z.ZodObject<{
|
|
|
5524
5524
|
metadata: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<TaskMetadataConfig, TaskMetadataConfig, z.core.$ZodTypeInternals<TaskMetadataConfig, TaskMetadataConfig>>>>>>;
|
|
5525
5525
|
ref: z.ZodOptional<z.ZodOptional<z.ZodObject<{
|
|
5526
5526
|
type: z.ZodEnum<{
|
|
5527
|
-
tag: "tag";
|
|
5528
5527
|
commit: "commit";
|
|
5528
|
+
tag: "tag";
|
|
5529
5529
|
branch: "branch";
|
|
5530
5530
|
}>;
|
|
5531
5531
|
name: z.ZodString;
|
|
5532
5532
|
hash: z.ZodString;
|
|
5533
5533
|
}, z.core.$strip>>>;
|
|
5534
5534
|
status: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
5535
|
-
contextId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
5536
5535
|
subAgentId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
5537
5536
|
conversationId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
5537
|
+
contextId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
5538
5538
|
}, z.core.$strip>;
|
|
5539
5539
|
declare const TaskRelationSelectSchema: drizzle_zod19.BuildSchema<"select", {
|
|
5540
5540
|
createdAt: drizzle_orm_pg_core127.PgColumn<{
|
|
@@ -6579,7 +6579,7 @@ declare const ConversationSelectSchema: drizzle_zod19.BuildSchema<"select", {
|
|
|
6579
6579
|
dataType: "json";
|
|
6580
6580
|
columnType: "PgJsonb";
|
|
6581
6581
|
data: {
|
|
6582
|
-
type: "
|
|
6582
|
+
type: "commit" | "tag" | "branch";
|
|
6583
6583
|
name: string;
|
|
6584
6584
|
hash: string;
|
|
6585
6585
|
};
|
|
@@ -6595,7 +6595,7 @@ declare const ConversationSelectSchema: drizzle_zod19.BuildSchema<"select", {
|
|
|
6595
6595
|
generated: undefined;
|
|
6596
6596
|
}, {}, {
|
|
6597
6597
|
$type: {
|
|
6598
|
-
type: "
|
|
6598
|
+
type: "commit" | "tag" | "branch";
|
|
6599
6599
|
name: string;
|
|
6600
6600
|
hash: string;
|
|
6601
6601
|
};
|
|
@@ -6808,7 +6808,7 @@ declare const ConversationSelectSchema: drizzle_zod19.BuildSchema<"select", {
|
|
|
6808
6808
|
dataType: "json";
|
|
6809
6809
|
columnType: "PgJsonb";
|
|
6810
6810
|
data: {
|
|
6811
|
-
type: "
|
|
6811
|
+
type: "commit" | "tag" | "branch";
|
|
6812
6812
|
name: string;
|
|
6813
6813
|
hash: string;
|
|
6814
6814
|
};
|
|
@@ -6824,7 +6824,7 @@ declare const ConversationSelectSchema: drizzle_zod19.BuildSchema<"select", {
|
|
|
6824
6824
|
generated: undefined;
|
|
6825
6825
|
}, {}, {
|
|
6826
6826
|
$type: {
|
|
6827
|
-
type: "
|
|
6827
|
+
type: "commit" | "tag" | "branch";
|
|
6828
6828
|
name: string;
|
|
6829
6829
|
hash: string;
|
|
6830
6830
|
};
|
|
@@ -6955,8 +6955,8 @@ declare const ConversationInsertSchema: z.ZodObject<{
|
|
|
6955
6955
|
contextConfigId: z.ZodOptional<z.ZodString>;
|
|
6956
6956
|
ref: z.ZodObject<{
|
|
6957
6957
|
type: z.ZodEnum<{
|
|
6958
|
-
tag: "tag";
|
|
6959
6958
|
commit: "commit";
|
|
6959
|
+
tag: "tag";
|
|
6960
6960
|
branch: "branch";
|
|
6961
6961
|
}>;
|
|
6962
6962
|
name: z.ZodString;
|
|
@@ -6981,8 +6981,8 @@ declare const ConversationUpdateSchema: z.ZodObject<{
|
|
|
6981
6981
|
contextConfigId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
6982
6982
|
ref: z.ZodOptional<z.ZodObject<{
|
|
6983
6983
|
type: z.ZodEnum<{
|
|
6984
|
-
tag: "tag";
|
|
6985
6984
|
commit: "commit";
|
|
6985
|
+
tag: "tag";
|
|
6986
6986
|
branch: "branch";
|
|
6987
6987
|
}>;
|
|
6988
6988
|
name: z.ZodString;
|
|
@@ -6999,19 +6999,19 @@ declare const ConversationApiSelectSchema: z.ZodObject<OmitProjectScope<{
|
|
|
6999
6999
|
agentId: z.ZodNullable<z.ZodString>;
|
|
7000
7000
|
activeSubAgentId: z.ZodString;
|
|
7001
7001
|
ref: z.ZodNullable<z.ZodType<{
|
|
7002
|
-
type: "
|
|
7002
|
+
type: "commit" | "tag" | "branch";
|
|
7003
7003
|
name: string;
|
|
7004
7004
|
hash: string;
|
|
7005
7005
|
}, {
|
|
7006
|
-
type: "
|
|
7006
|
+
type: "commit" | "tag" | "branch";
|
|
7007
7007
|
name: string;
|
|
7008
7008
|
hash: string;
|
|
7009
7009
|
}, z.core.$ZodTypeInternals<{
|
|
7010
|
-
type: "
|
|
7010
|
+
type: "commit" | "tag" | "branch";
|
|
7011
7011
|
name: string;
|
|
7012
7012
|
hash: string;
|
|
7013
7013
|
}, {
|
|
7014
|
-
type: "
|
|
7014
|
+
type: "commit" | "tag" | "branch";
|
|
7015
7015
|
name: string;
|
|
7016
7016
|
hash: string;
|
|
7017
7017
|
}>>>;
|
|
@@ -7037,8 +7037,8 @@ declare const ConversationApiInsertSchema: z.ZodObject<OmitProjectScope<{
|
|
|
7037
7037
|
contextConfigId: z.ZodOptional<z.ZodString>;
|
|
7038
7038
|
ref: z.ZodObject<{
|
|
7039
7039
|
type: z.ZodEnum<{
|
|
7040
|
-
tag: "tag";
|
|
7041
7040
|
commit: "commit";
|
|
7041
|
+
tag: "tag";
|
|
7042
7042
|
branch: "branch";
|
|
7043
7043
|
}>;
|
|
7044
7044
|
name: z.ZodString;
|
|
@@ -7056,8 +7056,8 @@ declare const ConversationApiUpdateSchema: z.ZodObject<{
|
|
|
7056
7056
|
contextConfigId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
7057
7057
|
ref: z.ZodOptional<z.ZodOptional<z.ZodObject<{
|
|
7058
7058
|
type: z.ZodEnum<{
|
|
7059
|
-
tag: "tag";
|
|
7060
7059
|
commit: "commit";
|
|
7060
|
+
tag: "tag";
|
|
7061
7061
|
branch: "branch";
|
|
7062
7062
|
}>;
|
|
7063
7063
|
name: z.ZodString;
|
|
@@ -7964,16 +7964,16 @@ declare const MessageApiUpdateSchema: z.ZodObject<{
|
|
|
7964
7964
|
metadata: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<MessageMetadata, MessageMetadata, z.core.$ZodTypeInternals<MessageMetadata, MessageMetadata>>>>>>;
|
|
7965
7965
|
content: z.ZodOptional<z.ZodOptional<z.ZodType<MessageContent, MessageContent, z.core.$ZodTypeInternals<MessageContent, MessageContent>>>>;
|
|
7966
7966
|
role: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
7967
|
-
taskId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
7968
|
-
visibility: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
7969
7967
|
fromSubAgentId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
7970
7968
|
toSubAgentId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
7971
7969
|
fromExternalAgentId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
7972
7970
|
toExternalAgentId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
7971
|
+
taskId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
7973
7972
|
a2aTaskId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
7974
7973
|
conversationId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
7975
7974
|
fromTeamAgentId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
7976
7975
|
toTeamAgentId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
7976
|
+
visibility: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
7977
7977
|
messageType: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
7978
7978
|
parentMessageId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
7979
7979
|
a2aSessionId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
@@ -8076,7 +8076,7 @@ declare const ContextCacheSelectSchema: drizzle_zod19.BuildSchema<"select", {
|
|
|
8076
8076
|
dataType: "json";
|
|
8077
8077
|
columnType: "PgJsonb";
|
|
8078
8078
|
data: {
|
|
8079
|
-
type: "
|
|
8079
|
+
type: "commit" | "tag" | "branch";
|
|
8080
8080
|
name: string;
|
|
8081
8081
|
hash: string;
|
|
8082
8082
|
};
|
|
@@ -8092,7 +8092,7 @@ declare const ContextCacheSelectSchema: drizzle_zod19.BuildSchema<"select", {
|
|
|
8092
8092
|
generated: undefined;
|
|
8093
8093
|
}, {}, {
|
|
8094
8094
|
$type: {
|
|
8095
|
-
type: "
|
|
8095
|
+
type: "commit" | "tag" | "branch";
|
|
8096
8096
|
name: string;
|
|
8097
8097
|
hash: string;
|
|
8098
8098
|
};
|
|
@@ -8326,7 +8326,7 @@ declare const ContextCacheSelectSchema: drizzle_zod19.BuildSchema<"select", {
|
|
|
8326
8326
|
dataType: "json";
|
|
8327
8327
|
columnType: "PgJsonb";
|
|
8328
8328
|
data: {
|
|
8329
|
-
type: "
|
|
8329
|
+
type: "commit" | "tag" | "branch";
|
|
8330
8330
|
name: string;
|
|
8331
8331
|
hash: string;
|
|
8332
8332
|
};
|
|
@@ -8342,7 +8342,7 @@ declare const ContextCacheSelectSchema: drizzle_zod19.BuildSchema<"select", {
|
|
|
8342
8342
|
generated: undefined;
|
|
8343
8343
|
}, {}, {
|
|
8344
8344
|
$type: {
|
|
8345
|
-
type: "
|
|
8345
|
+
type: "commit" | "tag" | "branch";
|
|
8346
8346
|
name: string;
|
|
8347
8347
|
hash: string;
|
|
8348
8348
|
};
|
|
@@ -8494,8 +8494,8 @@ declare const ContextCacheInsertSchema: z.ZodObject<{
|
|
|
8494
8494
|
id: z.ZodString;
|
|
8495
8495
|
ref: z.ZodObject<{
|
|
8496
8496
|
type: z.ZodEnum<{
|
|
8497
|
-
tag: "tag";
|
|
8498
8497
|
commit: "commit";
|
|
8498
|
+
tag: "tag";
|
|
8499
8499
|
branch: "branch";
|
|
8500
8500
|
}>;
|
|
8501
8501
|
name: z.ZodString;
|
|
@@ -8520,8 +8520,8 @@ declare const ContextCacheUpdateSchema: z.ZodObject<{
|
|
|
8520
8520
|
id: z.ZodOptional<z.ZodString>;
|
|
8521
8521
|
ref: z.ZodOptional<z.ZodObject<{
|
|
8522
8522
|
type: z.ZodEnum<{
|
|
8523
|
-
tag: "tag";
|
|
8524
8523
|
commit: "commit";
|
|
8524
|
+
tag: "tag";
|
|
8525
8525
|
branch: "branch";
|
|
8526
8526
|
}>;
|
|
8527
8527
|
name: z.ZodString;
|
|
@@ -8538,19 +8538,19 @@ declare const ContextCacheApiSelectSchema: z.ZodObject<OmitProjectScope<{
|
|
|
8538
8538
|
contextConfigId: z.ZodString;
|
|
8539
8539
|
contextVariableKey: z.ZodString;
|
|
8540
8540
|
ref: z.ZodNullable<z.ZodType<{
|
|
8541
|
-
type: "
|
|
8541
|
+
type: "commit" | "tag" | "branch";
|
|
8542
8542
|
name: string;
|
|
8543
8543
|
hash: string;
|
|
8544
8544
|
}, {
|
|
8545
|
-
type: "
|
|
8545
|
+
type: "commit" | "tag" | "branch";
|
|
8546
8546
|
name: string;
|
|
8547
8547
|
hash: string;
|
|
8548
8548
|
}, z.core.$ZodTypeInternals<{
|
|
8549
|
-
type: "
|
|
8549
|
+
type: "commit" | "tag" | "branch";
|
|
8550
8550
|
name: string;
|
|
8551
8551
|
hash: string;
|
|
8552
8552
|
}, {
|
|
8553
|
-
type: "
|
|
8553
|
+
type: "commit" | "tag" | "branch";
|
|
8554
8554
|
name: string;
|
|
8555
8555
|
hash: string;
|
|
8556
8556
|
}>>>;
|
|
@@ -8577,8 +8577,8 @@ declare const ContextCacheApiInsertSchema: z.ZodObject<OmitProjectScope<{
|
|
|
8577
8577
|
id: z.ZodString;
|
|
8578
8578
|
ref: z.ZodObject<{
|
|
8579
8579
|
type: z.ZodEnum<{
|
|
8580
|
-
tag: "tag";
|
|
8581
8580
|
commit: "commit";
|
|
8581
|
+
tag: "tag";
|
|
8582
8582
|
branch: "branch";
|
|
8583
8583
|
}>;
|
|
8584
8584
|
name: z.ZodString;
|
|
@@ -8593,8 +8593,8 @@ declare const ContextCacheApiUpdateSchema: z.ZodObject<{
|
|
|
8593
8593
|
contextConfigId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
8594
8594
|
ref: z.ZodOptional<z.ZodOptional<z.ZodObject<{
|
|
8595
8595
|
type: z.ZodEnum<{
|
|
8596
|
-
tag: "tag";
|
|
8597
8596
|
commit: "commit";
|
|
8597
|
+
tag: "tag";
|
|
8598
8598
|
branch: "branch";
|
|
8599
8599
|
}>;
|
|
8600
8600
|
name: z.ZodString;
|
|
@@ -13372,8 +13372,8 @@ declare const DatasetItemApiUpdateSchema: z.ZodObject<{
|
|
|
13372
13372
|
}>>>>>>;
|
|
13373
13373
|
}, z.core.$strip>;
|
|
13374
13374
|
declare const DatasetRunItemSchema: z.ZodObject<{
|
|
13375
|
-
id: z.ZodOptional<z.ZodString>;
|
|
13376
13375
|
input: z.ZodOptional<z.ZodType<DatasetItemInput, DatasetItemInput, z.core.$ZodTypeInternals<DatasetItemInput, DatasetItemInput>>>;
|
|
13376
|
+
id: z.ZodOptional<z.ZodString>;
|
|
13377
13377
|
expectedOutput: z.ZodOptional<z.ZodNullable<z.ZodType<DatasetItemExpectedOutput, DatasetItemExpectedOutput, z.core.$ZodTypeInternals<DatasetItemExpectedOutput, DatasetItemExpectedOutput>>>>;
|
|
13378
13378
|
simulationAgent: z.ZodOptional<z.ZodNullable<z.ZodType<{
|
|
13379
13379
|
prompt: string;
|
|
@@ -13421,8 +13421,8 @@ declare const DatasetRunItemSchema: z.ZodObject<{
|
|
|
13421
13421
|
declare const TriggerDatasetRunSchema: z.ZodObject<{
|
|
13422
13422
|
datasetRunId: z.ZodString;
|
|
13423
13423
|
items: z.ZodArray<z.ZodObject<{
|
|
13424
|
-
id: z.ZodOptional<z.ZodString>;
|
|
13425
13424
|
input: z.ZodOptional<z.ZodType<DatasetItemInput, DatasetItemInput, z.core.$ZodTypeInternals<DatasetItemInput, DatasetItemInput>>>;
|
|
13425
|
+
id: z.ZodOptional<z.ZodString>;
|
|
13426
13426
|
expectedOutput: z.ZodOptional<z.ZodNullable<z.ZodType<DatasetItemExpectedOutput, DatasetItemExpectedOutput, z.core.$ZodTypeInternals<DatasetItemExpectedOutput, DatasetItemExpectedOutput>>>>;
|
|
13427
13427
|
simulationAgent: z.ZodOptional<z.ZodNullable<z.ZodType<{
|
|
13428
13428
|
prompt: string;
|
|
@@ -21889,7 +21889,7 @@ declare const LedgerArtifactInsertSchema: drizzle_zod19.BuildSchema<"insert", {
|
|
|
21889
21889
|
}, {}, {
|
|
21890
21890
|
length: 256;
|
|
21891
21891
|
}>;
|
|
21892
|
-
}, "
|
|
21892
|
+
}, "type" | "tenantId" | "projectId" | "id" | "name" | "description" | "createdAt" | "updatedAt" | "metadata" | "taskId" | "contextId" | "visibility" | "toolCallId" | "parts" | "summary" | "mime" | "allowedAgents" | "derivedFrom">, undefined>, undefined>;
|
|
21893
21893
|
declare const LedgerArtifactUpdateSchema: z.ZodObject<{
|
|
21894
21894
|
createdAt: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
21895
21895
|
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
@@ -21954,20 +21954,20 @@ declare const LedgerArtifactApiInsertSchema: z.ZodObject<OmitProjectScope<{
|
|
|
21954
21954
|
id: z.ZodString;
|
|
21955
21955
|
}>, z.core.$strip>;
|
|
21956
21956
|
declare const LedgerArtifactApiUpdateSchema: z.ZodObject<{
|
|
21957
|
-
id: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
21958
21957
|
type: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
21958
|
+
id: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
21959
21959
|
name: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
21960
21960
|
description: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
21961
21961
|
createdAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
21962
21962
|
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
21963
21963
|
metadata: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>>>>;
|
|
21964
21964
|
taskId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
21965
|
-
toolCallId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
21966
21965
|
contextId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
21966
|
+
visibility: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
21967
|
+
toolCallId: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
21967
21968
|
parts: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>>>>;
|
|
21968
21969
|
summary: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
21969
21970
|
mime: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>>>>;
|
|
21970
|
-
visibility: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
21971
21971
|
allowedAgents: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodType<drizzle_zod19.Json, unknown, z.core.$ZodTypeInternals<drizzle_zod19.Json, unknown>>>>>>;
|
|
21972
21972
|
derivedFrom: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>>;
|
|
21973
21973
|
}, z.core.$strip>;
|
|
@@ -26267,19 +26267,19 @@ declare const ConversationResponse: z.ZodObject<{
|
|
|
26267
26267
|
agentId: z.ZodNullable<z.ZodString>;
|
|
26268
26268
|
activeSubAgentId: z.ZodString;
|
|
26269
26269
|
ref: z.ZodNullable<z.ZodType<{
|
|
26270
|
-
type: "
|
|
26270
|
+
type: "commit" | "tag" | "branch";
|
|
26271
26271
|
name: string;
|
|
26272
26272
|
hash: string;
|
|
26273
26273
|
}, {
|
|
26274
|
-
type: "
|
|
26274
|
+
type: "commit" | "tag" | "branch";
|
|
26275
26275
|
name: string;
|
|
26276
26276
|
hash: string;
|
|
26277
26277
|
}, z.core.$ZodTypeInternals<{
|
|
26278
|
-
type: "
|
|
26278
|
+
type: "commit" | "tag" | "branch";
|
|
26279
26279
|
name: string;
|
|
26280
26280
|
hash: string;
|
|
26281
26281
|
}, {
|
|
26282
|
-
type: "
|
|
26282
|
+
type: "commit" | "tag" | "branch";
|
|
26283
26283
|
name: string;
|
|
26284
26284
|
hash: string;
|
|
26285
26285
|
}>>>;
|
|
@@ -27473,19 +27473,19 @@ declare const ConversationListResponse: z.ZodObject<{
|
|
|
27473
27473
|
agentId: z.ZodNullable<z.ZodString>;
|
|
27474
27474
|
activeSubAgentId: z.ZodString;
|
|
27475
27475
|
ref: z.ZodNullable<z.ZodType<{
|
|
27476
|
-
type: "
|
|
27476
|
+
type: "commit" | "tag" | "branch";
|
|
27477
27477
|
name: string;
|
|
27478
27478
|
hash: string;
|
|
27479
27479
|
}, {
|
|
27480
|
-
type: "
|
|
27480
|
+
type: "commit" | "tag" | "branch";
|
|
27481
27481
|
name: string;
|
|
27482
27482
|
hash: string;
|
|
27483
27483
|
}, z.core.$ZodTypeInternals<{
|
|
27484
|
-
type: "
|
|
27484
|
+
type: "commit" | "tag" | "branch";
|
|
27485
27485
|
name: string;
|
|
27486
27486
|
hash: string;
|
|
27487
27487
|
}, {
|
|
27488
|
-
type: "
|
|
27488
|
+
type: "commit" | "tag" | "branch";
|
|
27489
27489
|
name: string;
|
|
27490
27490
|
hash: string;
|
|
27491
27491
|
}>>>;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@inkeep/agents-core",
|
|
3
|
-
"version": "0.0.0-dev-
|
|
3
|
+
"version": "0.0.0-dev-20260125001234",
|
|
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",
|